
/* default 0 paddings */
html,
body,
form {
	padding: 0px ;
	margin: 0px ;
}

/* general font sizing */

body {
	font: inherit;
	line-height: inherit;
	color: inherit;
}

body,
input,
select,
textarea,
button {
	font-family: 'Open Sans', verdana, arial, helvetica, sans-serif ;
		line-height: 1.25; /* should never change */
	color: black;
}

p,
.par,
.spaced {
	margin: 12px 0px; /* top and bottom padding should match font-size */
}

p,
.par,
blockquote,
ul,
ol,
menu,
.lh {
	line-height: 1.5; /* set general line height if different than standard (no units is multiplied by font size) */
}

/*
button {
	line-height: inherit;
}
*/

.inline {
	display: inline;
}

/* set anchor styles */
a,
a:link {
	color: #14808a;
}

a:active {
	color: #666666;
}

a:hover {
	color: #666666;
}

/* default table properties */
table {
	border-collapse: collapse ;
}

tr {
	vertical-align: baseline;
}

/* default image properties */
img {
	;
	border-collapse: separate; /* for ie9 */
}

/* hr styles */
hr {
	margin: 6px 0px;
	padding: 0px;
	border: none;
	border-top: solid 1px #000;
	border-bottom: solid 1px #fff;
	opacity: 0.4;
}

input,
textarea {
	box-sizing: border-box;
}

.shopify-buy__cart-item {
	overflow: unset !important;
}
/* set heading styles - always set top and bottom margins */

h1,h2,h3,h4,h5,h6 {
	margin: 12px 0px;
}

h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child, .content > *:first-child {
	/*margin-top: 0px;*/
}

h1,h2,h3,h4,h5,h6,.inline_h1,.inline_h2,.inline_h3,.inline_h4,.inline_h5,.inline_h6 {
	line-height: 1;
	font-family: Lora;
}

h1,																							
.inline_h1 {
	font-size: 2em;
	font-weight: bold;
	color: #14808a;
}

h2,
.inline_h2 {
	font-size: 1.8em;
	font-weight: bold;
		color: #000000;
}

h3,
.inline_h3 {
	font-size: 1.15em;
	font-weight: bold;
	letter-spacing: 0px;
		color: #666666;
}

h4,
.inline_h4 {
	font-size: 1.4em;
	font-weight: normal;
	letter-spacing: 0px;
	color: #88717b;
}

h5,
.inline_h5,
.inline_h {
	font-size: 1.2em;
	font-weight: normal;
	letter-spacing: 0px;
	color: #482534;
}

h6,
.inline_h6 {
	font-size: 1em;
	font-weight: normal;
	letter-spacing: 0px;
	color: #88717b;
}

/*	template styles	*/

img {
	max-width: 100%;
}

html {
	/*min-width: 980px;  non-responsive only */*/
}

body {
	background-color: #dcf7f7;
	padding-top: 0px;
}

.body {
	margin: 0px;
	padding: 0px;
	position: relative;
}

.social-icons {
	padding-bottom: 15px ;
}
.social-icons a:hover {
	text-decoration: none !important ;
}
.social-icons img {
	max-width: 40px ;
	border-radius: 5px ;
}

.content {
	word-break: break-word ;
}

.content_width {
	box-sizing: border-box;
	max-width: 1400px;
	margin: auto;
	padding: 0px 10px;
}

.flex_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 800px) {
	.flex_header {
		display: block;
		text-align: center;
	}
	body {
		padding-top: 58px;
	}
	.content_width {
		padding: 0 ;
	}
}


.banner_holder {
		background-image: url(/images/header-bg.webp) ;
	background-position: center center ;
	background-size: cover;
	padding: .5rem ;
}

.banner_holder img {
	border: 0px !important;
	width: 100% ;
	max-width: 220px ;
}



.nav_holder {
	background: #14808a;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 2;
}

.content_bg {
	background: #ffffff;
}

.content_padding {
	padding: 2rem 3rem ;
}

@media (max-width: 700px) {
	.content_padding {
		padding: 3%;
	}
}

/* footer */

.foot_holder {
	background: #dcf7f7;																																																																																		
	padding-top: 0px;
	padding-bottom: 0px;
	overflow: auto;
	font-size: 1em;
	color: #000000;
	text-align: center;
}

/* nav styles */

.sf-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sf-menu li {
	flex: auto;
}

.sf-menu li ul {
	width: 200px;
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
	border-collapse: separate;
}

a.button_a,
a.button_a:link,
a.button_a:active,
a.button_a:visited {
	/*display: block ;*/
	color: #fff ;
	text-decoration: none ;
	font-size: 1.1rem ;
	text-align: center ;
	padding: 5px 10px;
	padding: .6em ;
		font-family: Lora;
	font-weight: bold;
	text-transform: uppercase;
}
a.button_a:hover {
	background-color: #0e5960;
}

/* nav sub */

a.button_b,
a.button_b:link,
a.button_b:active,
a.button_b:visited {
	font-size: 17px ;
	font-weight: 700 ;
	text-align: center ;
	text-decoration: none ;
	color: #fff ;
	font-family: Lora;
	background: #14808a ;
	padding: 5px 10px ;
	text-transform: capitalize ;
}
a.button_b:hover {
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) , rgba(255, 255, 255, 0.3) );
}

@media (max-width: 800px) {
	.sf-menu {
		display: block;
	}

	.sf-menu ul {
		position: static !important;
		width: auto !important;
	}

	.sf-menu li {
		/*float: none !important;*/
		display: block !important;
	}

	.sf-menu li ul li a {
		/*width: auto !important; */
	}

	a.button_b {
		font-size: 16px !important;
		text-align: center;
		font-weight: bold !important;
	}
}

/* footer styles */

.foot_holder,
.foot_holder a:link,
.foot_holder a:active,
.foot_holder a:visited {
	color: #000000 ;
	text-decoration: none ;
}
.foot_holder a:hover {
	text-decoration: underline ;
}

/* link_white */

a.link_white,
a.link_white:link,
a.link_white:active,
a.link_white:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_white:hover {
	text-decoration: underline ;
}

/* other styles */

/* nav */

.nav {
	margin: 0px;
	padding: 0px;
	overflow: visible;
	list-style: none;
	list-style-image: none;
	clear: both;
}

.nav li {
	display: block; /* inline-block for HTML < 5 */
}


.nav li a {
	display: block ;
}

.nav li {
	width: 100%; 
	margin: 0px;
	padding: 0px;
	position: relative;
}

/* sub nav */
.nav li ul {
	display: none;
	margin: 0px ;
	padding: 0px ;
	position: absolute;
	list-style: none;
	list-style-image: none;
}
.nav_horizontal li ul.button_sub_left {
	left: 0;
	top: 100%;
}
.nav_vertical li ul {
	left: 100%;
	top: 0;
}
.nav_horizontal li ul.button_sub_right {
	left: default !important; 
	right: 0;
	top: 100%;
}

.nav li:hover > ul {
	display: block;
	z-index: 3000;
}
.nav li ul li a {
	display: block;
}

/* sub-sub nav */
.nav li ul li ul {
	display: none;
}
.nav li ul li:hover ul {
	left: 100%;
	top: 0;
}

/* misc standard styles */

.footnote {
	font-style: italic;
	font-size: .8em;
}

.gb {
	font-weight: bold;
	color: #666666;
}

.google_info_win {
	font-size: 12px ;
	margin-top: 10px ;
	line-height: 1.5 ;
}

a.inverted {
	text-decoration: none;
}
a.inverted:hover {
	text-decoration: underline;
}

.float,
img.img_float,
p.img_float img {
	clear: right;
	float: right;
	border: solid 1px #14808a;
	margin: 12px 0px 12px 15px;
}

.float_left,
img.img_float_left,
p.img_float_left img {
	clear: left;
	float: left;
	border: solid 1px #14808a;
	margin: 12px 15px 12px 0px;
}



/* overlay */


.overlay_cont {
	position: relative;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
	border-collapse: separate;
	margin: 10px 0px;
	border: solid 6px #d5d5d5;
	border-radius: 20px;
	background-color: #ffffff;
	padding: 0px 20px;
}

.overlay_cont h2 {
	text-shadow: 2px 2px .1em rgba(0, 0, 0, 0.2);
}

.overlay_close {
	display: block;
	position: absolute ;
	top: -9px;
	right: 14px;
	border: solid 1px #b5b5b5;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	background-color: #dddddd;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) , rgba(0, 0, 0, 0.1) );
	padding: 3px 6px;
	text-decoration: none;
	line-height: 1;
	color: #7f7f7f !important;
	text-shadow: 0px 0px .1em rgba(255, 255, 255, 1);
}

.overlay_close:hover,
.overlay_close:focus {
	background-color: #cacaca;
	border-color: #aaaaaa;
	color: #6a6a6a !important;
}

.proc_win {
	padding: 40px 75px;
	background-color: #eee;
	text-align: center;
}

.proc_win h2 {
	font-size: 26px;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 12px;
}

/* done box */


.done {
	margin-bottom: 12px;
	background-color: #e7f2f3;
	text-align: center;
	color: #14808a;
	border: solid 1px #14808a;
}

.done_standard,
.done_message {
	margin: 6px;
}

.done_message p {
	margin: 6px 0px;
}

.done_message > *:first-child {
	margin-top: 0px;
}
.done_message > *:last-child {
	margin-bottom: 0px;
}

.done_1 {

}
.done_0 {
	font-style: italic;
}

.done_1 .done_standard {
	font-weight: bold;
}

.done_0 .done_standard {
	font-weight: bold;
}

.done_message {

}

/* missing items box */

.missing {
	margin-bottom: 12px;
	background-color: #e7f2f3;
	padding: 6px;
	text-align: center;
	color: #14808a;
	font-size: 1.6em;
	border: solid 1px #14808a;
}

/* jquery */

.ui-datepicker {
	font-family: Verdana,Arial,Sans-Serif;
	font-size: 12px !important;
	font-weight: normal;
	z-index: 4000 !important;
}

img.ui-datepicker-trigger {
	cursor: pointer;
	position: relative;
	left: 0px;
	top: 5px;
}

.ui-autocomplete-loading {
	background: white url('/libraries/images/ui-anim_basic_16x16.gif') right center no-repeat;
}

/* html5 style placeholder */

input.watermark {
	color: #888;
}


.top_search {
	border: 1px solid #e0e0e0 ;
	background: #fff ;
	padding: 5px 10px ;
	padding-left: 10px ;
}

.top_input {
	padding: 0px ;
	margin: 0px ;
	border: 0px ;
	background: #fff ;
	width: 100% ;
	position: relative ;
	color: #999 ;
}

#tooltip.tooltipText {
	border: 1px solid #111;
	background-color: #eee;
	padding: 5px;
	/*
	opacity: 0.85;
	*/
}

/* styled buttons */

.but {
	cursor: pointer;
	text-shadow: 0px 0px 2px rgba(16, 102, 110, 1);
	color: #ffffff !important;
	background-image: linear-gradient(to bottom, rgba(65, 152, 161, 1) , rgba(52, 140, 148, 1) );
	background-color: #37939b;
	border: solid 1px #12737c;
	border-bottom: solid 1px #10666e;
	border-radius: 3px;
	margin: 1px 0px;
	text-align: center;
	white-space: nowrap;
}

button.but {
	padding: 1px 6px ;
}

a.but {
	text-decoration: none;
	display: inline-block;
	padding: 1px 6px;
}

.but:hover {
	background-image: linear-gradient(to bottom, rgba(62, 145, 152, 1) , rgba(50, 133, 140, 1) );
	background-color: #338991;
}

.but:active,
.but:focus {
	background-color: #14808a;
	background-image: none;
}

.but[disabled] {
	border-color: #6f9fa4;
	background-image: none;
	background-color: #81afb3;
	text-shadow: none ;
	cursor: default;
}

/* checkbox buttons */


label.cb_but {
	display: inline-block;
	border: solid 1px #5aa6ad;
	border-radius: 3px;
	padding: 0px 6px;
	line-height: 1.5;

	background-image: linear-gradient(to bottom, rgba(243, 249, 249, 1) , rgba(243, 249, 249, 1) );
	color: #14808a;
}
label.cb_but:hover {
	background-image: linear-gradient(to bottom, rgba(236, 241, 242, 1) , rgba(234, 239, 239, 1) );
}

label.cb_but.cb_but_checked {
	background-image: linear-gradient(to bottom, rgba(70, 155, 163, 1) , rgba(32, 134, 144, 1) );
	color: #ffffff;
	text-shadow: 0px 0px 2px rgba(8, 51, 55, 1);
}

/* tabs */

a.tab,
a.tab:link,
a.tab:visited,
a.tab:active,
a.tab:hover {
	display: inline-block;
	background-image: linear-gradient(to bottom, rgba(20, 128, 138, 1) , rgba(20, 128, 138, 1) );
	padding: 5px 10px;
	border: solid 1px #14808a;
	text-decoration: none;
	color: white;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
	margin: 0px;
}

a.tab:hover {
	background-image: linear-gradient(to bottom, rgba(220, 247, 247, 1) , rgba(220, 247, 247, 1) );
	border: solid 1px #dcf7f7;
}

a.tab.tab_selected {
	background-image: linear-gradient(to bottom, rgba(220, 247, 247, 1) , rgba(220, 247, 247, 1) );
	border: solid 1px #dcf7f7;
}

.tab_cont_cont {
	padding: 10px;
}

/* cmenu */


.cmenu {
	display: inline-block;
	position: relative;
	line-height: 1.25;
	letter-spacing: 0px;
}

.cmenu.cmenu_open {
	z-index: 1000000;
}

.cmenu .cmenu_button {
	display: inline-block;
	margin: 0px;
	padding: 2px 9px;
	border: solid 1px #969593;
	border-radius: 3px;
	background-image: linear-gradient(to bottom, rgba(244, 243, 239, 1) , rgba(234, 233, 230, 1) );
	outline: none;
	cursor: pointer;
	color: #4b4a49;
}

.cmenu .cmenu_button:hover {
	background-image: linear-gradient(to bottom, rgba(236, 235, 232, 1) , rgba(223, 222, 218, 1) );
}

.cmenu_drop {
	display: none;
	position: absolute;
	z-index: -1;
	min-width: 100%;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	border-collapse: separate;
	border: solid 1px #969593;
	background-color: #eae9e5;
	background-image: linear-gradient(to bottom, rgba(244, 243, 239, 1) , rgba(234, 233, 230, 1) 60px);
	padding: 6px;
	color: #14808a;
}

.cmenu_drop .cmenu_content {
	padding: 0px 6px;
	color: #482534;
}

.cmenu.cmenu_open .cmenu_drop {
	display: block;
}

.cmenu.cmenu_open .cmenu_button {
}

.cmenu.cmenu_down.cmenu_open .cmenu_button {
	border-bottom-color: #f3f2ee;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	background-image: linear-gradient(to bottom, rgba(219, 218, 215, 1) , rgba(244, 243, 239, 1) );
}

.cmenu.cmenu_up.cmenu_open .cmenu_button {
	border-top-color: #eae9e5;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	background-image: linear-gradient(to bottom, rgba(234, 233, 230, 1) , rgba(199, 198, 195, 1) );
	background-position: center -1px;
}

.cmenu.cmenu_down .cmenu_drop {
	top: 100%;
	bottom: auto;
	margin-top: -1px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.cmenu.cmenu_down.cmenu_right .cmenu_drop {
	border-top-right-radius: 3px;
}

.cmenu.cmenu_down.cmenu_left .cmenu_drop {
	border-top-left-radius: 3px;
}

.cmenu.cmenu_up .cmenu_drop {
	bottom: 100%;
	top: auto;
	margin-bottom: -1px;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}

.cmenu.cmenu_up.cmenu_right .cmenu_drop {
	border-bottom-right-radius: 3px;
}

.cmenu.cmenu_up.cmenu_left .cmenu_drop {
	border-bottom-left-radius: 3px;
}

.cmenu.cmenu_left .cmenu_drop {
	left: auto;
	right: 0px;
}

.cmenu.cmenu_right .cmenu_drop {
	left: 0px;
	right: auto;
}

a.cmenu_item {
	display: block;
	white-space: nowrap;
	padding: 2px 6px;
	vertical-align: baseline;
	line-height: 1.25;
	text-decoration: none;
	outline: none;
	color: #14808a;
}

a.cmenu_item:hover {
	background-color: #14808a;
	color: #faf9f5;
}

.cmenu hr {
	margin: 4px 0px;
}

.cmenu hr + hr {
	display: none;
}


/* responsive form */

.resp_form {
	max-width: 500px;
	margin: auto;
}

.resp_form input[type=text],
.resp_form input[type=password],
.resp_form input[type=email],
.resp_form textarea {
	width: 100%;
}

/* COMMON STYLES (for site side only, generally doesn't change between sites) */

a img,
a:link img,
a:active img,
a:visited img {
	border: none;
}
a:hover img {
	border-color: #666666;
}

a img.no_border,
a:link img.no_border,
a:active img.no_border,
a:visited img.no_border,
a:hover img.no_border {
	border-width: 0px !important;
}

textarea {
	resize: vertical;
}

input, textarea {
	margin: 2px;
	margin-left: 0px;
	padding: 5px;
	border: 2px solid #cccccc ;
}

input[type="radio"],
input[type="checkbox"] {
}

/* TinyMCE specific rules */


body.mce-content-body {
	background-color: #ffffff;
	background-image: none;
	padding: 15px;
}

body.mce-content-body a {
	color: #14808a !important; /* Should match standard anchors; FF requires a important here for mceContentBody */
}

/*Misc Standard Styles*/

.w100 {
	width: 100%;
}

.vat,
table.vat td,
tr.vat td {
	vertical-align: top;
}

.vabl,
table.vabl td,
tr.vabl td {
	vertical-align: baseline;
}

.vam,
table.vam td,
tr.vam td {
	vertical-align: middle;
}

.tar {
	text-align: right;
}

.important {
	color: #963a16;
}

.required {
	text-align: center;
	color: #963a16;
}

[data-required="1"]:before {
	color: #963a16;
	content : '*';
}

.even_row,
.row_0 {
	background-color: #eeeeee;
}

.odd_row,
.row_1 {
	background-color: #ffffff;
}

.good,
.status1 {
	color: #dcf7f7;
}

.bad,
.status0 {
	color: #963a16;
}

/*
table.form td {
	vertical-align: baseline;
	text-align: left;
}

table.form td.label {
	/*text-align: right; * /
}

div.label {
	margin-top: 12px;
}

div.field {
	margin-bottom: 12px;
}
*/

a.link_purple:link,
a.link_purple:active,
a.link_purple:visited {
	color: #68354B ;
	text-decoration: none ;
}
a.link_purple:hover {
	text-decoration: underline ;
}
a.link_purpleLt:link,
a.link_purpleLt:active,
a.link_purpleLt:visited {
	color: #957181 ;
	text-decoration: none ;
}
a.link_purpleLt:hover {
	text-decoration: underline ;
}
a.link_purpleDk:link,
a.link_purpleDk:active,
a.link_purpleDk:visited {
	color: #482534 ;
	text-decoration: none ;
}
a.link_purpleDk:hover {
	text-decoration: underline ;
}
a.link_teal:link,
a.link_teal:active,
a.link_teal:visited {
	color: #14808A ;
	text-decoration: none ;
}
a.link_teal:hover {
	text-decoration: underline ;
}
a.link_seafoam:link,
a.link_seafoam:active,
a.link_seafoam:visited {
	color: #DCF7F7 ;
	text-decoration: none ;
}
a.link_seafoam:hover {
	text-decoration: underline ;
}
a.link_blue:link,
a.link_blue:active,
a.link_blue:visited {
	color: #2B0BB5 ;
	text-decoration: none ;
}
a.link_blue:hover {
	text-decoration: underline ;
}
a.link_purpleLtLt:link,
a.link_purpleLtLt:active,
a.link_purpleLtLt:visited {
	color: #b59ca6 ;
	text-decoration: none ;
}
a.link_purpleLtLt:hover {
	text-decoration: underline ;
}
a.link_purpleLtDk:link,
a.link_purpleLtDk:active,
a.link_purpleLtDk:visited {
	color: #684f5a ;
	text-decoration: none ;
}
a.link_purpleLtDk:hover {
	text-decoration: underline ;
}
a.link_purpleDkLt:link,
a.link_purpleDkLt:active,
a.link_purpleDkLt:visited {
	color: #7f6671 ;
	text-decoration: none ;
}
a.link_purpleDkLt:hover {
	text-decoration: underline ;
}
a.link_purpleDkDk:link,
a.link_purpleDkDk:active,
a.link_purpleDkDk:visited {
	color: #321924 ;
	text-decoration: none ;
}
a.link_purpleDkDk:hover {
	text-decoration: underline ;
}
a.link_tealLt:link,
a.link_tealLt:active,
a.link_tealLt:visited {
	color: #5aa6ad ;
	text-decoration: none ;
}
a.link_tealLt:hover {
	text-decoration: underline ;
}
a.link_tealDk:link,
a.link_tealDk:active,
a.link_tealDk:visited {
	color: #0e5960 ;
	text-decoration: none ;
}
a.link_tealDk:hover {
	text-decoration: underline ;
}
a.link_seafoamLt:link,
a.link_seafoamLt:active,
a.link_seafoamLt:visited {
	color: #e6f9f9 ;
	text-decoration: none ;
}
a.link_seafoamLt:hover {
	text-decoration: underline ;
}
a.link_seafoamDk:link,
a.link_seafoamDk:active,
a.link_seafoamDk:visited {
	color: #9aacac ;
	text-decoration: none ;
}
a.link_seafoamDk:hover {
	text-decoration: underline ;
}
a.link_blueLt:link,
a.link_blueLt:active,
a.link_blueLt:visited {
	color: #6a54cb ;
	text-decoration: none ;
}
a.link_blueLt:hover {
	text-decoration: underline ;
}
a.link_blueDk:link,
a.link_blueDk:active,
a.link_blueDk:visited {
	color: #1e077e ;
	text-decoration: none ;
}
a.link_blueDk:hover {
	text-decoration: underline ;
}
a.link_1:link,
a.link_1:active,
a.link_1:visited {
	color: #14808a ;
	text-decoration: none ;
}
a.link_1:hover {
	text-decoration: underline ;
}
a.link_2:link,
a.link_2:active,
a.link_2:visited {
	color: #dcf7f7 ;
	text-decoration: none ;
}
a.link_2:hover {
	text-decoration: underline ;
}
a.link_3:link,
a.link_3:active,
a.link_3:visited {
	color: #963a16 ;
	text-decoration: none ;
}
a.link_3:hover {
	text-decoration: underline ;
}
a.link_4:link,
a.link_4:active,
a.link_4:visited {
	color: #cccccc ;
	text-decoration: none ;
}
a.link_4:hover {
	text-decoration: underline ;
}
a.link_5:link,
a.link_5:active,
a.link_5:visited {
	color: #999999 ;
	text-decoration: none ;
}
a.link_5:hover {
	text-decoration: underline ;
}
a.link_6:link,
a.link_6:active,
a.link_6:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_6:hover {
	text-decoration: underline ;
}
a.link_main_1:link,
a.link_main_1:active,
a.link_main_1:visited {
	color: #14808a ;
	text-decoration: none ;
}
a.link_main_1:hover {
	text-decoration: underline ;
}
a.link_main_2:link,
a.link_main_2:active,
a.link_main_2:visited {
	color: #dcf7f7 ;
	text-decoration: none ;
}
a.link_main_2:hover {
	text-decoration: underline ;
}
a.link_main_3:link,
a.link_main_3:active,
a.link_main_3:visited {
	color: #963a16 ;
	text-decoration: none ;
}
a.link_main_3:hover {
	text-decoration: underline ;
}
a.link_main_4:link,
a.link_main_4:active,
a.link_main_4:visited {
	color: #cccccc ;
	text-decoration: none ;
}
a.link_main_4:hover {
	text-decoration: underline ;
}
a.link_main_5:link,
a.link_main_5:active,
a.link_main_5:visited {
	color: #999999 ;
	text-decoration: none ;
}
a.link_main_5:hover {
	text-decoration: underline ;
}
a.link_main_6:link,
a.link_main_6:active,
a.link_main_6:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_main_6:hover {
	text-decoration: underline ;
}
a.link_trim_1:link,
a.link_trim_1:active,
a.link_trim_1:visited {
	color: #cccccc ;
	text-decoration: none ;
}
a.link_trim_1:hover {
	text-decoration: underline ;
}
a.link_trim_2:link,
a.link_trim_2:active,
a.link_trim_2:visited {
	color: #999999 ;
	text-decoration: none ;
}
a.link_trim_2:hover {
	text-decoration: underline ;
}
a.link_trim_3:link,
a.link_trim_3:active,
a.link_trim_3:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_trim_3:hover {
	text-decoration: underline ;
}
a.link_bg:link,
a.link_bg:active,
a.link_bg:visited {
	color: #14808a ;
	text-decoration: none ;
}
a.link_bg:hover {
	text-decoration: underline ;
}
a.link_font:link,
a.link_font:active,
a.link_font:visited {
	color: #482534 ;
	text-decoration: none ;
}
a.link_font:hover {
	text-decoration: underline ;
}
a.link_gb:link,
a.link_gb:active,
a.link_gb:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_gb:hover {
	text-decoration: underline ;
}
a.link_heading:link,
a.link_heading:active,
a.link_heading:visited {
	color: #14808a ;
	text-decoration: none ;
}
a.link_heading:hover {
	text-decoration: underline ;
}
a.link_anchor_1:link,
a.link_anchor_1:active,
a.link_anchor_1:visited {
	color: #14808a ;
	text-decoration: none ;
}
a.link_anchor_1:hover {
	text-decoration: underline ;
}
a.link_anchor_2:link,
a.link_anchor_2:active,
a.link_anchor_2:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_anchor_2:hover {
	text-decoration: underline ;
}
a.link_anchor_3:link,
a.link_anchor_3:active,
a.link_anchor_3:visited {
	color: #666666 ;
	text-decoration: none ;
}
a.link_anchor_3:hover {
	text-decoration: underline ;
}
a.link_nav_1:link,
a.link_nav_1:active,
a.link_nav_1:visited {
	color: #14808a ;
	text-decoration: none ;
}
a.link_nav_1:hover {
	text-decoration: underline ;
}
a.link_nav_2:link,
a.link_nav_2:active,
a.link_nav_2:visited {
	color: #68354b ;
	text-decoration: none ;
}
a.link_nav_2:hover {
	text-decoration: underline ;
}
a.link_content:link,
a.link_content:active,
a.link_content:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_content:hover {
	text-decoration: underline ;
}
a.link_light:link,
a.link_light:active,
a.link_light:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_light:hover {
	text-decoration: underline ;
}
a.link_foot:link,
a.link_foot:active,
a.link_foot:visited {
	color: #000000 ;
	text-decoration: none ;
}
a.link_foot:hover {
	text-decoration: underline ;
}
a.link_even:link,
a.link_even:active,
a.link_even:visited {
	color: #eeeeee ;
	text-decoration: none ;
}
a.link_even:hover {
	text-decoration: underline ;
}
a.link_odd:link,
a.link_odd:active,
a.link_odd:visited {
	color: #ffffff ;
	text-decoration: none ;
}
a.link_odd:hover {
	text-decoration: underline ;
}
a.link_good:link,
a.link_good:active,
a.link_good:visited {
	color: #dcf7f7 ;
	text-decoration: none ;
}
a.link_good:hover {
	text-decoration: underline ;
}
a.link_bad:link,
a.link_bad:active,
a.link_bad:visited {
	color: #963a16 ;
	text-decoration: none ;
}
a.link_bad:hover {
	text-decoration: underline ;
}
a.link_important:link,
a.link_important:active,
a.link_important:visited {
	color: #963a16 ;
	text-decoration: none ;
}
a.link_important:hover {
	text-decoration: underline ;
}

/* glyphicons icons */

.glyphicons.sign_check,
.glyphicons.sign_question,
.glyphicons.sign_exclaimation {
	font-size: 16px;
	font-weight: bold;
	/*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);*/
}

.glyphicons.sign_check {
	color: #71B867;
}

.glyphicons.sign_question {
	color: #CC8800;
}

.glyphicons.sign_exclaimation {
	color: #900;
}

/* general style */

/* fields */

.view_all {
	clear: both;
	text-align: right;
	margin-top: 10px; 
	border-top: dotted 0px #666666;
}

.name {
	font-size: 1.2em ;
	font-weight: bold; 
	letter-spacing: -1px ;
	line-height: 1;
}
.name a {
	text-decoration: none;
}

.date {
	font-style: italic;	
}

.link {
	text-align: right; 
	clear: right; 
	font-size: .9em ;
}

.teaser {
	
}

.icontent {
	
}

.caption {
	font-size: .8em;
}

/* bread crumb */


.bcrumb {
	margin: 12px 0px;
}

.bcrumb a:link,
.bcrumb a:active,
.bcrumb a:visited {
	font-size: 0.9em; 
	text-decoration: none; 
}

.bcrumb a:hover {
	text-decoration: underline; 
}

.filter_bcrumb a:link,
.filter_bcrumb a:active,
.filter_bcrumb a:visited {
	display: inline-block;
	text-decoration: none; 
	font-size: 0.9em; 
}

.filter_bcrumb a:hover {
	text-decoration: underline; 
}

.filter_bcrumb .halflings {
	margin-left: 4px;
	font-size: 12px;
}

/* Edit Me */

a.edit_me {
	opacity: 0.65; 
	display: block;
	position: fixed; 
	bottom: 0px;
	right: 10px; 
	box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.4);
	border-collapse: separate; 
	border-radius: 5px 5px 0px 0px; 
	border: solid 1px #5aa6ad; 
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) , rgba(91, 166, 173, 1) ); 
	padding: 5px 8px; 
	font-family: arial, sans-serif; 
	font-size: 15px; 
	text-decoration: none; 
	color: #14808a; 
}
a.edit_me:hover {
	opacity: 1; 
}

a.edit_me img {
	border: 0px;
}

@media (max-width: 800px) {
	a.edit_me {
		opacity: 1; 
		position: static;
		border-radius: 0px; 
		border-width; 0px;
		text-align: center; 
	}
}

/* paging links */

div.paging {
	margin: 12px 0px; 
}

div.paging_np {
	
}

div.paging_pages {
	margin-top: 6px; 
}

a.paging, 
a.paging:link, 
a.paging:active, 
a.paging:visited,
a.paging:hover {
	display: inline-block; 
	border: solid 1px #14808a; 
	border-radius: 4px;
	background-color: #1f868f;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, .2) , rgba(20, 128, 138, 0.2) ); 
	padding: 4px 6px; 
	text-align: center;
	text-decoration: none; 
	color: #ffffff;
}

a.paging:hover {
	background-color: #36929a;
}

a.paging[disabled] {
	cursor: default; 
	border: solid 1px #4b969d; 
	background-color: #539ba1; 
	background-image: none;
	color: #98c2c6;
}

a.paging.paging_cur {
	border-width: 2px !important; 
	padding: 3px 5px !important; 
	font-weight: bold; 
	text-decoration: underline; 
}

/* search */

.search .bcrumb {
	margin: 0px;
}

/* GENERAL TABLES */

/* general_attachments */

.ga_id .filename {
	font-size: .8em;
}
.list_hor .info_cont {
	padding: 1px 1rem ;
}

/* list main */

ul.list_cont {
	list-style: none;
	padding: 0px;
}

ul.list_cont li.list_item .img_cont {
	display: inline-block;
	box-sizing: border-box;
}

ul.list_cont li.list_item .img_cont img {
	box-sizing: border-box;
	border: 0px;
}

ul.list_cont li.list_item .icon_cont {
	display: inline-block;
	box-sizing: border-box;
}

ul.list_cont li.list_item .icon_cont img {
	box-sizing: border-box;
	border: 0px;
}

/* vertical list */


.list_ver ul.list_cont {
	margin: 6px 0px;
}

.list_ver ul.list_cont li.list_item {
	padding: 6px 0px; 
	border-top: dotted 1px #666666;
	clear: both;
}

.list_ver ul.list_cont li.list_item:first-child {
	border-top: 0px;
}

.list_ver ul.list_cont li.list_item .img_cont {
	display: inline-block;
	vertical-align: top;
	background-image: none !important;
}

/* vertical image left */

.list_ver.list_img_left ul.list_cont li.list_item > * {
	/*flex: auto;*/
}

.list_ver.list_img_left ul.list_cont li.list_item {
	/*
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	*/
}

.list_ver.list_img_left ul.list_cont li.list_item .img_cont {
	/*
	flex: none;
	width: 160px; 
	max-width: 20%;
	*/
	float: left;
	width: 25%;
	text-align: center;
}

.list_ver.list_img_left ul.list_cont li.list_item .img_cont img {
	max-width: 100%;
	max-height: 120px; 
}

.list_ver.list_img_left ul.list_cont li.list_item .info_cont {
	float: right;
	box-sizing: border-box;
	width: 75%;
	padding-left: 6px;
}

/* vertical img float */

.list_ver.list_img_float ul.list_cont li.list_item .img_cont {
	float: right;
	max-width: 25%;
	margin: 0px 0px 6px 6px; 
}

.list_ver.list_img_float ul.list_cont li.list_item .img_cont img {
	max-width: 100%;
	max-height: 120px; 
}

/* horizontal items list */


.list_hor ul.list_cont {
	margin-left: -6px;
	margin-right: -6px;
	font-size: 0;
	text-align: center ;
}

.list_hor ul.list_cont li.list_item {
	box-sizing: border-box;
	text-align: center;
	padding: 0px 6px 18px 6px; 
	padding: 1rem ;
	display: inline-block;
	vertical-align: top;
}

.list_hor ul.list_cont li.list_item {
	font-size: 1rem ;
	/*font-size: 12px;*/
}

.list_hor ul.list_cont li.list_item .img_cont {
	position: relative; 
	width: 100%;
	margin-bottom: 6px; 
	text-align: center; 
	font-size: 0;
	/*border: solid 1px #14808a;*/
	background-color: #ffffff;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.list_hor ul.list_cont li.list_item .img_cont:before {
	content: ' ';
	display: inline-block;
	padding-top: 75%;
}

.list_hor ul.list_cont li.list_item .img_cont img {
	display: none;
}

.list_hor.list_cols_2 ul.list_cont li.list_item {
	width: 100%;
	max-width: 50%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_2 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_2 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_3 ul.list_cont li.list_item {
	width: 100%;
	max-width: 33.333333333333%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_3 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 653.33333333333px) {
	.list_hor.list_cols_3 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_3 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_4 ul.list_cont li.list_item {
	width: 100%;
	max-width: 25%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_4 ul.list_cont li.list_item {
		max-width: 33.333333333333%;
	}
}
@media (max-width: 735px) {
	.list_hor.list_cols_4 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 490px) {
	.list_hor.list_cols_4 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_4 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_5 ul.list_cont li.list_item {
	width: 100%;
	max-width: 20%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_5 ul.list_cont li.list_item {
		max-width: 25%;
	}
}
@media (max-width: 784px) {
	.list_hor.list_cols_5 ul.list_cont li.list_item {
		max-width: 33.333333333333%;
	}
}
@media (max-width: 588px) {
	.list_hor.list_cols_5 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 392px) {
	.list_hor.list_cols_5 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_5 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_6 ul.list_cont li.list_item {
	width: 100%;
	max-width: 16.666666666667%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_6 ul.list_cont li.list_item {
		max-width: 20%;
	}
}
@media (max-width: 816.66666666667px) {
	.list_hor.list_cols_6 ul.list_cont li.list_item {
		max-width: 25%;
	}
}
@media (max-width: 653.33333333333px) {
	.list_hor.list_cols_6 ul.list_cont li.list_item {
		max-width: 33.333333333333%;
	}
}
@media (max-width: 490px) {
	.list_hor.list_cols_6 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 326.66666666667px) {
	.list_hor.list_cols_6 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_6 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_7 ul.list_cont li.list_item {
	width: 100%;
	max-width: 14.285714285714%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_7 ul.list_cont li.list_item {
		max-width: 16.666666666667%;
	}
}
@media (max-width: 840px) {
	.list_hor.list_cols_7 ul.list_cont li.list_item {
		max-width: 20%;
	}
}
@media (max-width: 700px) {
	.list_hor.list_cols_7 ul.list_cont li.list_item {
		max-width: 25%;
	}
}
@media (max-width: 560px) {
	.list_hor.list_cols_7 ul.list_cont li.list_item {
		max-width: 33.333333333333%;
	}
}
@media (max-width: 420px) {
	.list_hor.list_cols_7 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 280px) {
	.list_hor.list_cols_7 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_7 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_8 ul.list_cont li.list_item {
	width: 100%;
	max-width: 12.5%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: 14.285714285714%;
	}
}
@media (max-width: 857.5px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: 16.666666666667%;
	}
}
@media (max-width: 735px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: 20%;
	}
}
@media (max-width: 612.5px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: 25%;
	}
}
@media (max-width: 490px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: 33.333333333333%;
	}
}
@media (max-width: 367.5px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 245px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_8 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_9 ul.list_cont li.list_item {
	width: 100%;
	max-width: 11.111111111111%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 12.5%;
	}
}
@media (max-width: 871.11111111111px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 14.285714285714%;
	}
}
@media (max-width: 762.22222222222px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 16.666666666667%;
	}
}
@media (max-width: 653.33333333333px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 20%;
	}
}
@media (max-width: 544.44444444444px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 25%;
	}
}
@media (max-width: 435.55555555556px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 33.333333333333%;
	}
}
@media (max-width: 326.66666666667px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 217.77777777778px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_9 ul.list_cont li.list_item {
		max-width: none;
	}
}
.list_hor.list_cols_10 ul.list_cont li.list_item {
	width: 100%;
	max-width: 10%;
}

@media (max-width: 980px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 11.111111111111%;
	}
}
@media (max-width: 882px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 12.5%;
	}
}
@media (max-width: 784px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 14.285714285714%;
	}
}
@media (max-width: 686px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 16.666666666667%;
	}
}
@media (max-width: 588px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 20%;
	}
}
@media (max-width: 490px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 25%;
	}
}
@media (max-width: 392px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 33.333333333333%;
	}
}
@media (max-width: 294px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 50%;
	}
}
@media (max-width: 196px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	.list_hor.list_cols_10 ul.list_cont li.list_item {
		max-width: none;
	}
}

/* detail main */

.detail.detail_img_float .img_cont {
	float: right;
	margin: 0px 0px 10px 10px;
	background-color: #eee;
	font-size: 0 ;
}

.detail.detail_img_float .img_cont img {
	max-width: 240px;
	max-height: 240px;
}

/* list main */

.mod ul.list_cont li.list_item .info_cont {
}

.mod .name {
	/*font-size: 1em; /* set .mod font size before adjusting this*/
}

/* vertical list */




/* vertical img left*/

.mod.list_ver.list_img_left ul.list_cont li.list_item .img_cont {
	max-width: 25%;
	max-height: 112.5px; 
}

.mod.list_ver.list_img_left ul.list_cont li.list_item .img_cont img {
	max-height: 112.5px; 
}

/* vertical img float */



/* horizontal items list */


/* BLOGS STYLES */

/* generic */

/* list */

.blg_id.list .author {
	/*font-weight: bold;*/
}

/* detail */

.blg_id.detail .author {
	font-weight: bold;
}

/* module */


/* BLOGS_COMMENTS */

.bc_id.list_ver .comment_submit {
	float: right;
	position: relative;
	width: 320px;
	margin: 0px 0px 10px 10px;
	border: solid 1px #999999;
	background-color: #ffffff;
	padding: 10px;
}

.bc_id.list_ver .comment_submit.submitting {
	opacity: 0.4;
}

.bc_id.list_ver .comment_submit h3 {
	margin-top: 0px;
	margin-bottom: 6px;
}

.bc_id.list_ver .comment_submit .field_cont {
	margin: 6px 0px;
}

.bc_id.list_ver .comment_submit input,
.bc_id.list_ver .comment_submit textarea {
	width: 100%;
}

.bc_id.list_ver .comment_submit .form_submit {
	text-align: right;
}

.bc_id.list_ver .comment_submit .official_cont {
	float: right; 
	white-space: nowrap; 
}

.bc_id.list_ver .comment_submit .official_cont input {
	width: auto;
}

/**/

.bc_id.list_ver ul.list_cont li.list_item {
	border: solid 1px #999999;
	border-width: 1px 0px 0px 0px;
	padding: 10px; 
	background-color: #eeeeee;
	clear: none;
}

.bc_id.list_ver ul.list_cont li.list_item:nth-child(2n) {
	background-color: #ffffff;
}

.bc_id.list_ver ul.list_cont li.list_item .date {
	font-size: .8em; 
}

.bc_id.list_ver ul.list_cont li.list_item .username {
	font-size: .8em;
}

.bc_id.list_ver ul.list_cont li.list_item .official {
	font-weight: bold;
	color: #14808a;
}

.bc_id.list_ver ul.list_cont li.list_item .icontent {
	margin-top: 10px; 
}

/* EVENTS STYLES */

/* generic */


/* list */


/* detail */

table.ev_id.detail.img_add_cont {
	width: 100%; 
}

td.ev_id.detail.img_add_item {
	text-align: center; 
	vertical-align: top; 
	padding: 6px; 
}

table.ev_id.detail.img_add_item {
	width: 100%; 
}

table.ev_id.detail.img_add_item td {
	text-align: center; 
}

/* module */


/* calendar */

.ev_id.list.list_calendar .month {
	margin: 15px 0px; 
	/*
	border: 1px solid #cccccc ;
	padding: 5px ;
	*/
}

.ev_id.list.list_calendar .month_name {
	background-color: #dcf7f7; 
	text-align: center; 
	color: #ffffff;
	font-size: 1.3em;
	letter-spacing: -1px ;
	font-weight: bold;
	font-style: italic;
	padding: 5px;
}

.ev_id.list.list_calendar .month_days {
	width: 100%; 
}

.ev_id.list.list_calendar .month_days td {
	padding: 0px; 
}

.ev_id.list.list_calendar .day_name {
	text-align: center; 
}

.ev_id.list.list_calendar .name {
	display: block;
	font-size: .85em;
	font-weight: normal;
	padding: 4px 5px;
}

.ev_id.list.list_calendar .name.hover {
	background-color: #14808a;
	color: #ffffff !important;
}

.ev_id.list.list_calendar .day {
	font-size: .9em; 
	border: solid 1px #666666; 
	vertical-align: top; 
	height: 100px;
	width: 14.28%;
}

.ev_id.list.list_calendar .day_num {
	float: right; 
	background-color: #eeeeee; 
	width: 15px; 
	text-align: right; 
	border-bottom: solid 1px #666666; 
	border-left: solid 1px #666666; 
	padding: 2px; 
}

.ev_id.list.list_calendar .today {
	background-color: #efefef; 
}

.ev_id.list.list_calendar .name + .name {
	border-top: dotted 1px #666666; 
}

/* GALLERIES STYLES */

/* generic */


/* list */


/* detail */

/* module */


/* GALLERIES_IMAGES */

/* list */

.gi_id.list .name {
	font-size: 1em;
	font-weight: normal;
	letter-spacing: 0px;
}

.gi_id.list .link {
	margin-top: 10px; 
}

/*  MAILING LISTS STYLES */

/* lists */


/* detail */


/* module */

.ml_id.mod .ml_id.subscribe {
	width: auto;	
}

/* subscribe box */

.ml_id.subscribe {
	position: relative;
	width: 300px; 
	margin: 15px auto; 
	padding: 10px; 
	background-color: #cccccc ;
	border: solid 1px #999999 ;
}

.ml_id.subscribe .submitting {
	position: absolute; 
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) , rgba(255, 255, 255, 0.9) ); 
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.ml_id.subscribe .submitting table {
	width: 100%; 
	height: 100%; 
}

.ml_id.subscribe .submitting table td {
	vertical-align: middle; 
	text-align: center; 
}

.ml_id.subscribe .subscribe_required {
	text-align: center;
	font-size: .7em ;
}

.ml_id.subscribe .subscribe_label {
	font-weight: bold;
	color: #666666;
}

.ml_id.subscribe .subscribe_input input {
	width: 100%; 
}

.ml_id.subscribe .subscribe_button {
	padding-top: 5px; 
	text-align: right; 
}

/*  MAILING LISTS BLASTS STYLES */

/* lists */


/* detail */


/* PAGES STYLES */

/* generic */

.pg_id .children_list {
	margin: 12px 0px; 
}

.pg_id .children_item {
	font-weight: bold;
}

/* PRODUCTS STYLES */

/* generic */

.price {
	font-size: .9em; 
	font-style: italic; 
}

/* list */


/* detail */

.prd_id.detail .form_label {
	font-weight: bold; 
	color: #14808a; 
}

/* detail media */

.prd_id.detail .media_cont {
	float: right; 
	width: 300px; 
	margin: 0px 0px 10px 10px; 
}

@media (max-width: 700px) {
	.prd_id.detail .media_cont {
		float: none; 
		width: 100%; 
		margin: 10px 0px; 
	}
}

.prd_id.detail .media_spaced {
	margin: 12px 0px;
}

.prd_id.detail .media_spaced ul {
	list-style: none;
	padding: 0px;
}

.prd_id.detail .img_list_link {
	text-align: center; 
	font-size: 12px;
}

.prd_id.detail .img_list_link a {
	text-decoration: none;
	font-size: .9em;
}

.prd_id.detail .img_list_selected {
	background-color: #14808a;
}

.prd_id.detail .img_list_selected .img_list_link a {
	color: white;
}

/* img */

.prd_id.detail .media_cont .img {
	text-align: center;
	max-width: 100%;
}

.prd_id.detail .media_cont .img img {
	max-width: 100%;
	box-sizing: border-box;
	border: 0px;
}

/* imgs */


.prd_id.detail .media_cont .imgs ul {
	font-size: 0;
	margin: 0px -2px; 
}

.prd_id.detail .media_cont .imgs ul li {
	width: 100%;
	max-width: 20%;
	display: inline-block;
	box-sizing: border-box;
	padding: 2px 2px 4px 2px; 
}

.prd_id.detail .media_cont .imgs ul li .img_cont:before {
	content: '';
	display: inline-block;
	padding-top: 75%;
}

.prd_id.detail .media_cont .imgs ul li .img_cont {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 100%;
}

/* pdfs */


.prd_id.detail .media_cont .pdfs ul {
	font-size: 0;
	margin: 0px -4px; 
}

.prd_id.detail .media_cont .pdfs ul li {
	display: inline-block;
	box-sizing: border-box;
	padding: 0px 4px 8px 4px; 
	text-align: center; 
	width: 25%; /* can be px also */
	vertical-align: top;
}

.prd_id.detail .media_cont .pdfs ul li .icon_cont img {
	border: 0px !important;
	max-width: 100%;
}

.prd_id.detail .media_cont .pdfs ul li .info_cont {
	font-size: 12px;
	word-wrap: break-word;
}

.prd_id.detail .media_cont .pdfs ul li .info_cont .name {
	letter-spacing: 0px;
	font-size: .7em;
	font-weight: normal;
}

/* module */


/* PRODUCTS_CATEGORIES */

/* list */


/* detail */


/* CART STYLES */

/* cart items */

.table {
	display: table ;
	width: 100% ;
	border: 0px ;
}
.table .tr {
	display: table-row ;
}
.table .td {
	display: table-cell ;
	vertical-align: middle ;
	word-break: normal ;
}
.table .td-center {
	text-align: center ;
}
.table .td-right {
	text-align: right ;
}

.table-cart {
	border: 1px solid rgba(0,0,0,0.2) ;
	border-radius: 5px ;
}

.table-cart .tr {
	border: 1px solid rgba(0,0,0,0.2) ;
}

.table-cart .tr-head {
	font-weight: 700 ;	
	background: #14808A ;
	color: #fff ;
}

.table-cart .td {
	width: auto ;
	padding: 8px;
}

.table-cart .td-image {
	width: 100px ;
}

.td-center {
	text-align: center ;
}

.td-right {
	text-align: right ;
}

.mobile-only {
	display: none ;
}

@media (max-width: 980px) {
	.table,
	.table .tr,
	.table .td {
		display: block ;
	}
	.desktop-only {
		display: none !important ;
	}
	.mobile-only {
		display: inline-block !important ;
	}
	.table .td .mobile-only {
		font-weight: 700 ;
		padding-right: 5px ;
	}
	.table-cart .amount_cont,
	.table-cart .item_total_cont,
	.table-cart .quantity_cont,
	.table-cart .remove_cont {
		text-align: left !important ;
	}
	.table-cart {
		border: 0 ;
	}
	.table-cart .tr {
		padding: 10px ;
		margin: 1rem 0 ;
		border-radius: 10px ;
	}
	.table-cart .td-image {
		float: right ;
		width: unset ;
	}
}
@media (max-width: 460px) {
	.table-cart .td-image {
		text-align: center ;
		float: unset ;
	}
}


.checkout-btn {
	display: inline-block ;
	background: #14808A ;
	text-transform: uppercase ;
	text-decoration: none ;
	color: #fff !important;
	font-weight: 700 ;
	padding: 10px 15px ;
}

.checkout-btn:hover {
	text-decoration: underline ;
}

.cart_id.list div.list_cont {
}

@media (max-width: 800px) {
	.cart_id.list div.list_cont {
		overflow: scroll ;
	}
}

.cart_id.list table.list_cont {
	width: 100%;
}

.cart_id.list table.list_cont td {
	vertical-align: baseline;
	padding: 5px;
}

.cart_id.list tr.list_item td {
	border-color: #14808a;
	border-top: solid 1px #14808a;
}

.cart_id.list tr.list_head td {
	background-color: #14808a;
		color: #ffffff;
	font-weight: bold;
}

.cart_id.list tr.list_head td {
	vertical-align: bottom;
}

.cart_id.list .item_num {
	font-size: .7em;
}

.cart_id.list .quantity {
	width: 30px ;
	font-size: .8em;
	text-align: center;
}

@media (max-width: 550px) {
	.cart_id.list .quantity { 
		width: 70px ;
	}
}

tr.cart_id.list .list_item td {
	background: #ffffff;
}

.cart_id.list .img_cont {
	/*padding: 2px !important; */
	vertical-align: top !important;
}

.cart_id.list .img_cont img {
	margin: 2px 0px; /* match input fields */
}

.cart_id.list .name_cont {
	font-size: 1.1em;
}

.cart_id.list .name_cont a {
	text-decoration: none;
}
.cart_id.list .name_cont a:hover {
	text-decoration: underline;
}

.cart_id.list .opt_cont {
	font-size: .8em;
}

.cart_id.list .quantity_cont {
	text-align: center;
	width: 1% ;
	white-space: nowrap;
}

.cart_id.list .remove_cont {
	text-align: center;
	width: 1% ;
	white-space: nowrap;
	font-size: .9em;
}

.cart_id.list .remove_cont a {
	text-decoration: none;
}
.cart_id.list .remove_cont a:hover {
	text-decoration: underline;
}

.cart_id.list .amount_cont {
	text-align: right;
}

.cart_id.list .item_total_cont {
	text-align: right;
}

.cart_id.list .opt_warning {
	color: #963a16;
	font-style: italic;
	font-size: .8em;
}

.cart_id.list .free_shipping_note {
	color: #963a16;
	font-size: .7em;
}

.bad_option {
	font-style: italic;
	font-weight: bold;
	background-image: linear-gradient(to bottom, rgba(150, 58, 22, 0.2) , rgba(150, 58, 22, 0.2) );
}

/* cart totals */

.cart_left {
	float: left;
	box-sizing: border-box;
	width: calc(100% - 580px);
	min-width: 300px;
	padding-right: 12px;
}

.cart_totals {
	box-sizing: border-box;
	float: right;
	width: 580px;
}

@media (max-width: 927px) {
	.cart_left {
		float: none;
		width: auto;
		padding-right: 0px;
	}

	.cart_totals {
		float: none;
		width: auto;
	}
}

.cart_id.list .cart_cont {
	margin: 12px 0px;
	border: 1px solid rgba(0,0,0,0.2) ;
	border-radius: 5px;
	padding: 15px ;
}

.cart_id.list .cart_right {
	text-align: right;
}

.cart_id.list .cart_cont .gb {
	color: #222 ;
}

.cart_id.list .cart_cont h2 {
	margin-top: 0px;
	color: #222;
}

.cart_id.list .total_cont {
	text-align: right;
	font-size: 1.2em;
	color: #222 ;

}

.cart_id.list div.checkout {
	text-align: right;
	margin-top: 9px;
}

button.checkout_button,
a:link.checkout_button,
a:active.checkout_button,
a:visited.checkout_button {
	cursor: pointer;
	display: inline-block;
	border: outset 2px #14808A;
	padding: 9px 15px;
	/*background-color: #68354B;*/
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	background-image: linear-gradient(to bottom, rgba(20, 128, 138, 0.8) , rgba(20, 128, 138, 1) );
}
button:hover.checkout_button,
a:hover.checkout_button {
	background-image: linear-gradient(to bottom, rgba(20, 128, 138, 1) , rgba(20, 128, 138, 1) );
}

/* checkout steps */

.checkout_steps {
	margin-top: 12px;
	margin-bottom: 20px ;
	font-size: 0px;
}

.checkout_steps .checkout_step {
	display: inline-block;
	margin-right: -1px; /* same as checkout_step border width */
	text-decoration: none;
	color: #68354B;
	border: solid 1px #cccccc;
	padding: 3px 12px;
	font-size: 12px;
	background-color: #f8f8f8;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.04) , rgba(0, 0, 0, 0.04) );
}

.checkout_steps .checkout_step.checkout_on {
	background-color: #68354B;
	color: #f8f8f8;
}

/* checkout totaler styles */

table.totaler_products {
	width: 100%;
	margin: 10px 0px;
}

table.totaler_products td {
	padding: 6px 9px;
	vertical-align: baseline;
}

table.totaler_products tr.totaler_products_head td {
	color: #666666;
	font-weight: bold ;
	border-bottom: solid 1px #999999 ;
}

table.totaler_products tr.totaler_products_body td {
	border-bottom: solid 1px #cccccc ;
}

table.totaler_products tr.totaler_products_body td a {
	text-decoration: none;
}
table.totaler_products tr.totaler_products_body td a:hover {
	text-decoration: underline;
}

table.totaler_products td.totaler_products_tight {
	 white-space: nowrap;
	 padding-left: 15px;
}

.totaler_state_note {
	font-size: .8em;
	text-align: right;
}

table.totaler_totals {
	margin: 15px 0px 15px auto;
}

table.totaler_totals td {
	text-align: right;
}

table.totaler_totals td:first-child {
	color: #666666 ;
	text-align: left;
	padding-right: 10px;
	font-weight: bold;
	white-space: nowrap;
}

table.totaler_totals .total td {
	color: #666666;
	border-top: solid 1px #999999;
	font-size: 1.3em;
	font-weight: bold;
}

/* BLOGS STYLES */

/* generic */


/* list */


/* detail */


/* module */


/* USERS STYLES */

/* generic */

.user_button a:link,
.user_button a:active,
.user_button a:visited {
	display: inline-block; 
	color: #fff ;
	padding: 5px 10px ;
	text-decoration: none ;
	font-size: 1.2em ;
	font-weight: bold ;
	text-align: center ;
	letter-spacing: -1px ;
	background: #14808a ;
}
.user_button a:hover {
	background: #0e5960 ;
}

/* signup/profile */

.user_login_signup_left {
	float: left; 
	box-sizing: border-box; 
	width: 50%; 
	padding-right: 15px; 
}

.user_login_signup_right {
	float: right; 
	box-sizing: border-box; 
	width: 50%; 
	padding-left: 15px; 
	border-left: solid 1px #cccccc; 
}

@media (max-width: 600px) {
	.user_login_signup_left,
	.user_login_signup_right {
		float: none; 
		width: auto;
		padding: 0px;
		border: 0px;
	}
	
	.user_login_signup_right {
		border-top: solid 1px #cccccc;
	}
}

/*
.user_form {
	text-align: left;
	margin: auto;
}

.user_form td {
	padding-right: 6px; 
}
*/

/* orders */

.users_order {
	border: solid 1px #14808a;
	width: 100%; 
}

.users_order td {
	border-bottom: dotted 1px #14808a;
	padding: 3px 5px; 
}

.users_order .users_order_head td {
	background-color: #14808a;
	color: white; 
	font-weight: bold; 
	vertical-align: bottom;
}

.users_order .users_order_row td {
	vertical-align: baseline;
}

.users_order_tight {
	width: 1%; 
	white-space: nowrap; 
}

/* item lists */

.user_list {
	width: 100%;
}

.user_list td {
	padding: 2px 5px 2px 10px; 
}

.user_list td.user_actions {
	width: .5%;
	white-space: nowrap;
}

.user_list .user_list_head {
	vertical-align: bottom; 
}

.user_list .user_list_head td {
	border-bottom: solid 1px #cccccc;
}

.user_list .user_list_row td {
	border-bottom: dotted 1px #cccccc;
}

.user_list .user_list_row:hover td {
	background-color: #eeeeee;
}

.user_list td:first-child {
	padding-left: 5px;
}
/* for both SITE and CMS (generally doesn't change between sites) */

/* server test check */

img.server_beta {
	position: fixed; 
	top: 0px; 
	right: 0px; 
	z-index: 4500; 
	cursor: help; 
}

div.server_beta {
	display: none;
	border-bottom: solid 1px #96938D;
	background-color: #B3AFA8;
	padding: 5px 12px;
	font-family: arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #666;
	cursor: help;
	text-align: center; 
}

@media (max-width: 600px) {
	img.server_beta {
		display: none;
	}
	
	div.server_beta {
		display: block;
	}
}

/* print styles */

.print_only {
	display: none !important; 
}

@media print {
	
	.print_only {
		display: block !important;
	}
	
	.no_print {
		display: none !important; 
	}
	
	.container {
		width: 100% !important;
		margin: 0px !important;
		padding: 0px !important;
	}
	
	.content {
		margin: 0px !important;
		padding: 0px !important; 
		float: none !important;
	}
	
}

.events_bg {
	background-color: #dcf7f7 ;
	padding: 1em;
	margin: 0 -15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.events_btn {
	color: #14808a ;
	text-decoration: none;
	font-weight: bold;
	padding: 15px 25px;
	border: 2px solid #14808a ;
	text-transform: uppercase;
	display: inline-block;
	background: transparent;
}

.events_btn:hover {
	background-color: #14808a ;
	color: white;
}

.top_social {
	background-color: #14808a ;
}

.top_links {
	font-family: Lora;
	font-weight: bold;
	margin-bottom: 1em;
}

.social_icons {
	text-align: right;
	padding: 5px 0;
}

.social_icons div {
	display: inline-block ;
}

.social_icons a {
	margin-left: 1em;
}

.privacy_policy-cont {
	word-break: break-word ;
}

@media (max-width: 700px) {
	.events_bg {
		margin: 0 -3%;
	}
}

@media (max-width: 800px) {
	.social_icons {
		text-align: center;
	}
	
	.social_icons a {
		margin-left: 0 ;
	}
	.social_icons div {
		width: 24px ;
		margin: 0 0.7em ;
	}
	.responsive_nav_menu a {
		padding: 0 ;
	}
	.events_bg {
		display: block;
	}

	.search_form {
		padding-bottom: 1em;
	}
}

.search_btn {
	color: white;
	background-color: #14808a ;
	border: none;
	padding: 5px 15px;
	font-weight: bold;
	font-size: .9em;
	display: inline-block;
}

.search_btn:hover {
	background-color: #0e5960 ;
}

.responsive_nav_menu {
	display: block ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	right: 0 ;
	z-index: 1000 ;
}

.responsive_nav_menu a {
	display: block ;
	color: white ;
	background: #14808a;
	text-decoration: none ;
	font-size: 48px ;
	line-height: 48px ;
	text-align: center ;
	padding: 5px ;
}

.nav_holder {
	text-transform: uppercase;
  	display: none ;
	position: fixed ;
	top: 58px ;
	left: 0 ;
	right: 0 ;
	bottom: 0 ;
  	overflow-y: auto ;
	z-index: 2 ;
}

hr {
	background-image: url(/images/hr.png) ;
	background-position: center center ;
	background-repeat: repeat-x ;
	height: 48px ;
	border: 0 ;
	padding: 0 ;
	margin: 3rem auto ;
	opacity: .25 ;
}

h1,
.bcrumb {
	text-align: center ;
}

input[type=text],
select,
textarea {
	border: 1px solid #ccc ;
	padding: .5em .75em ;
}

.a_but {
	display: inline-block ;
	font-size: 1rem ;
	padding: .35em .75em ;
	background: #999 ;
	color: white !important ;
	text-decoration: none ;
}
.a_but:hover {
	background: #14808a ;
}

@media (min-width: 800px) {
	.responsive_nav_menu {
		display: none ;
	}

 	.nav_holder {
    	position: relative ;
    	top: 0 ;
    	display: block ;
	    overflow-y: visible;
	}
	.flex {
		display: flex ;	
		align-items: top ;	
		justify-content: space-between ;
	}
	.flex-50 > div {
		width: 50% ;
	}
	.mobile_hr {
		display: none ;
	}
}

