/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* =============================================================================
   HTML5 element display
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio[controls], canvas, video { display: inline-block;}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html { font-size: 100%; overflow-y: scroll; -webkit-overflow-scrolling: touch; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

body { margin: 0; }

body, button, input, select, textarea { font-family: "museo-sans", sans-serif;}

p { font-family: "museo-sans", sans-serif; line-height:140%; }

h1 {
	margin-bottom:.87em;
}

.pagetitle {
	margin-bottom:0.5em;
}

h1, h2, h3 { font-family: "museo-sans", sans-serif; color:#1EB38E; font-weight:normal; line-height:130%;}

h4, h5 { font-family: "museo-sans", sans-serif; }

h4 { line-height:1.5; }

/* 
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */


/* =============================================================================
   Links
   ========================================================================== */

a { color:#005fff }
a:visited { color:#005fff }
a:focus { outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: 0; color:#50a2ff; text-decoration:none; }


/* =============================================================================
   Typography
   ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 0; font-style:italic; color:#23B368; text-align:center; }

dfn { font-style: italic; }

hr { display: block; height: 1px; width:350px; border: 0; border-top:1px solid #5b6130; margin: 20px 0; padding: 0; }

h3, h4, h5 { color:#1EB38E; }

.leftcolumn hr, aside hr {
	width:auto;
	height:1px;
	border:none;
	background-color:#ddd;
}

ins { background: #333; color: #ccc; text-decoration: none; }

mark { background: #333; color: #ccc; font-style: italic; font-weight: bold; }

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; margin: 0; padding: 0; }


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img { border: 0; -ms-interpolation-mode: bicubic; }

/*
 * Correct overflow displayed oddly in IE9 
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

figure { margin: 0; }


/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */

legend { border: 0; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */

button, input { line-height: normal; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }

/*
 * Consistent box sizing and appearance
 */

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }

/* 
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ 
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea { overflow: auto; vertical-align: top; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }


/* =============================================================================
   Primary styles
   Author: 
   ========================================================================== */


/* Horizontal Menu */

/* ==============
    DEFAULT: Menu
   ============== */

.newmenu {
	margin-top:0;
}

.newmenu {
    margin: 0;
    padding: 0;
    width:100%;
    position:relative;
}

.newmenu li {
	display:inline-block;
	margin-right: 10px;
	position:relative;
	height: 28px;
	background:none;
	padding-top: 12px;
	padding-left: 4px;
	float: left;
}

.newmenu .level-2 {
	display:none;
}

.newmenu a {
    display: inline-block;
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
	height:26px;
    color: white;
}

.newmenu a:hover, .newmenu a.current {
	color:#BAD4B6;
}

/* submenu items */

.newmenulist ul.drop {display:none;}
.newmenulist li:hover ul.drop {display:block; position:absolute; top:36px; left:0; background:#207258; width:220px; padding:0 0 8px 0; margin:0; height:auto;}
.newmenulist ul.drop a { display:block; text-decoration: none; padding:6px 12px; margin:0; text-align:left; line-height:140%; height:auto;}
.newmenulist .drop a:link, .newmenulist .drop a:visited, .newmenulist .drop a:hover, .newmenulist .drop a:active { color:#FFF; }
.newmenulist .drop a:hover {
	color:#C5E0AD;
}
.newmenulist ul.drop a:hover {
	background:#19644D;
}
.newmenulist ul.drop, .newmenu ul.drop li, .newmenu ul.drop ul { list-style: none; margin: 0; padding: 0;}
.newmenulist ul.drop { position: relative; z-index: 500; float: left; }
.newmenulist ul.drop li { display:block; padding: 0; height:auto; text-align:left;}
.newmenulist ul.drop li:hover { position: relative; z-index: 599; cursor: default; }

/* third menu items */

.mainmenu li:hover .drop2 {
	display:none;
	position:absolute;
	top:0;
	left:220px;
	width:200px;
}

/* show third menus for:
	education -> workshops,
	events -> ongoing events,
	events -> past events,
	about-> membership
*/

.newmenulist ul.drop li:hover .drop2.page2097,
.newmenulist ul.drop li:hover .drop2.page2072,
.newmenulist ul.drop li:hover .drop2.page2065,
.newmenulist ul.drop li:hover .drop2.page1814 {
	display:block;
}

.mainmenu li:hover .drop2 li a {
	background: #19644D;
}

.mainmenu li:hover .drop2 li:hover a {
	background: #115842;
}



/* ==================
   Initializr Theme
   ================== */


body{
	background:#fff;
	background-size:cover;
	color:#231F20;
}

.meta-section {
	width:100%;
	/*background:rgb(67, 168, 48);*/
	/*background:rgb(99, 156, 61);*/
	/*background:rgb(81, 175, 85);*/
	/* background:rgb(89, 172, 93);*/
	/*background:#43A375;*/
	background:#1D6951;
	clear:both;
}

.meta-section.slider {
	/*background:rgb(0, 107, 81);*/
	/*background:rgb(29, 136, 72);*/
	/*background:rgb(16, 90, 46);*/
	/* background:rgb(0, 56, 22); */
	background:#042C1F;
}

.slider .wrapper {
	background:transparent;
	width:100%;
}

.meta-section.footer {
	/*background:rgb(0, 107, 56);*/
	/*background:rgb(16, 90, 46);*/
	/*background:rgb(0, 56, 22);*/
	background:#187E5D;
	clear:both;
}

.meta-section.dark {
	/* background:rgb(137, 211, 88);*/
	/* background:rgb(81, 175, 85); */
	background: #298869;
	/*overflow:hidden;*/
}

.wrapper {
	background:#fff;
	width:100%;
	margin:0 auto;
	display:block;
}

.footer .wrapper {
	width:96%;
	padding-top:10px;
	padding-bottom:10px;
}

.transparent {
	background:transparent;
}

.mainheader {
	background:white;
	display:block;
	overflow:hidden;
	position:relative;
	padding:20px 0 30px 0;
}

.logolink {
	display:block;
	padding:0 0 0 0;
	float:none;
	width:90%;
	margin:0 auto;
}

.logolink img {
	height:auto;
	max-width:100%;
}

.tagline {
	display:block;
	font-weight:normal;
	margin:0 auto;
	font-size:14px;
	line-height:140%;
	position:static;
	letter-spacing:2px;
	color:rgb(161, 209, 185);
	text-align: center;
}

.tagline span {
	display:none;
	text-indent:-99999px;
}

.mainmenu {
	display:block;
	width:100%;
	background:url('images/logo-as-bg3.png') no-repeat 780px -50px;
}

nav li:hover a {
	-ms-transition:color 200ms linear;
	-o-transition:color 200ms linear;
	-webkit-transition:color 200ms linear;
	-moz-transition:color 200ms linear;
	transition:color 200ms linear;
}

nav a:link, nav a:visited, nav a:hover, nav a:active {
	text-decoration:none;
	color:#fff;
	text-transform:uppercase;
	letter-spacing:2px;
	font-size:12px;
	padding:10px;
	display:block;
}
nav a:hover {
	/*color:#08734f;*/
	/*color:#B5FDB2;*/
	/*color:#BDF1BA;*/
	color:#BAD4B6;
}

.mainmenu ul li {
	display:inline-block;
	margin:0;
}
.mainmenu ul li ul {
	display:none;
}
.mainmenu ul ul li {
	display:none;
}
.mainmenu ul li:nth-child(even) {}

.mainmenu li:hover {
	/*background:#1EB38E;*/
	position:relative;
}

.mainmenu li:hover ul {
	display: block;
	position: absolute;
	margin: 0;
	padding: 0; }
.mainmenu li:hover li {
	float: none; }
.mainmenu li:hover li a {
	background-color: #207258;
	border-bottom: 1px solid #478D77;
	color: #000; 
	text-transform:none;
	letter-spacing:1px;
	font-size:14px;
	}
.mainmenu li li a:hover {
	background-color: #8db3ff; }

.showandtell {
	/* width:960px;
	height:374px; */
	display:block;
	overflow:hidden;
	min-height:150px;
	max-height: 500px;
}

#tell {
	/* width:960px;
	height:180px; */
	width:100%;
	display:block;
	float:left;
	overflow:hidden;
}

.message {
	/* width:960px;
	height:374px; */
	width:100%;
	height:auto;
	display:block;
	background:transparent;
	padding:0;
	margin:0;
	position:relative;
}

.message .slide-headline {
	display:inline;
	font-size:14px;
	/*color:#3fb159;*/
	/* color:#60AF72;*/
	color:#31b186;
	margin-right:.4em;
}

.message .body {
	color:white;
	margin:0 0 .3em 0;
	padding:0;
	font-size:14px;
	line-height:1.2;
	display:inline;
}


.message .title {
	text-align:center;
	margin-top:3em;
	font-weight:normal;
	font-size:1.4rem;
}
	
.text {
	position:absolute;
	height:auto;
	z-index:9;
	width:96%;
	margin-bottom:-200px;
	bottom:0;
	left:0;
	padding:2%;
	background-color:rgba(10,10,10,.7);
	background-color:rgba(10,10,10,.65);
	opacity:0;
	transition-delay: 3.5s, 1s;
	transition-property: all;
	transition-timing-function: ease-in-out;
}

.message:first-child .text {
	opacity:1;
	margin-bottom:0;
}

#show {
	width:100%;
	/* height:374px; */
	display:block;
	float:right;
	overflow:hidden;
	background:#231F20;
}

.image {
	/* 
	width:564px;
	height:374px;
	*/
	width:100%;
	height:200px;
	display:block;
	background-size: cover;
	background-position: center center;
}

.image img {
	width:100%;
	height:auto;
}
	
.leftcolumn {
	display:block;
	vertical-align:top;
	padding:20px 4% 0 4%;
	width:92%;
	background: transparent repeat-y top left;
}

.leftcolumn iframe {
	width:100%;
}

body.calendar {
	margin-bottom:0;
}

.inner .leftcolumn {
	padding-bottom:0;
	padding-right:4%;
	padding-left: 4%;
	width:92%;
	padding-top:20px;
	overflow: hidden;
}

.row {
	margin-bottom:20px;
}

.section-header {
	display:block;
	margin:0 0 0.6em 0;
	padding:0;
	font-weight:normal;
	font-size:28px;
	line-height:1.2;
	font-family:"museo-sans", sans-serif;
}

.main-section {
	/*line-height:140%;*/
}

.link-column {
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-right:0;
	overflow:hidden;
	margin-bottom:10px;
}

.link-column img {
	margin-bottom:0;
	max-width:100%;
	height:auto;
}

.link-column h1 {
	font-weight:normal;
	font-size:18px;
	margin:0 0 .3em 0;
	/*color:rgb(0, 190, 69);*/
	color:rgb(35, 179, 104);
}

.link-column p {
	margin:0 0 .5em 0;
	line-height:140%;
}

.link-column > a {
	display:block;
	float:left;
	width:30%;
	margin-right:4%;
}
			
		
	
.footer .wrapper .transparent {
	padding:2%;
}		
		
.sidebar {
	padding-top:60px;
	padding-bottom:20px;
	padding-right:4%;
	padding-left:4%;
	width:92%;
	display:block;
}

.inner .sidebar {
	padding-top:0;
	
}

.sidebar h2 {
	margin:0; padding:0;
	font-weight:normal;
}

.calendar {
	display:block;
	width:100%;
	/*border:1px solid #ddd;*/
	padding:0;
	margin-bottom:1em;
	margin-right:0;
	/*background-color:rgb(212, 230, 217);*/
	/*background-color:#DAEBD7;*/
	/* background-color:#EFF7F2; */
}
	
.widget h2 {
	font-weight:bold;
	font-size:18px;
	border-bottom:1px solid #ddd;
	margin-bottom:0;
}

.widget > h2 {
	padding-bottom:.2em;
}

.widget a:link, .widget a:visited, .widget a:hover, .widget a:active {
	text-decoration:none;
}
.widget a:hover {
	text-decoration:underline;
}

.widget.randomgallery {
	border-bottom:1px solid #ddd;
}

.randomgallery > div {
	display:block;
	float:none;
	width:100%;
	margin-bottom:15px;
}

.affiliates {
	border-bottom:1px solid #ddd;
}
		
.sidebar-calendar {
	padding:12px 0 0 0;
	margin:0;
	list-style:none;
}

.sidebar-calendar li {
	border-bottom:1px solid #ddd;
	margin-bottom:12px;
	clear:both;
	display:block;
	overflow:hidden;
	padding:0 0 10px 0;
}

.event-image {
	float:left;
	margin-right:10px;
	display:block;
	width:64px;
}

.event-text {
	float:left;
	display:block;
	width:210px;
}

.event-text h1 {
	margin: 0 0 .1em 0;
	font-size:18px;
	line-height:1.3;
}

.event-text a:link, .event-text a:visited, .event-text a:hover, .event-text a:active {
	text-decoration:none;
}

.event-text a:hover {
	text-decoration:none;
}

.event-text h2 {
	font-size:14px;
	font-weight:300;
	margin-bottom:0;
	border-bottom:none;
	line-height:1.4;
}

.noimg .event-text {
	float:none;
	display:block;
	width:100%;
}

.widget {
	margin-bottom:40px;
}
		
.callout-text, .content-bullets, .content-after {
	line-height: 140%;
}
	
.sitefooter {
	padding:25px 0;
	background:transparent;
}

.sitefooter .column {
	width:80%;
	display:block;
	margin:0 auto 20px auto;
}
	
.column.four {}

.column.four:after {clear:both;}

.miniwrap {
	width:212px;
	margin:0 auto;
}

.column.four p a img {
	display:block;
	float:left;
	margin-right:8px;
}
	
.column h1 {
	font-size:18px;
	font-weight:normal;
	margin:0 0 .3em 0;
	color:#FFFFFF;
}


.search, .facebook, .twitter {
	display:block;
}

#CDSWIDEXC {
	margin-top:0!important; /* Tripadvisor */
	margin-left:0!important;
	width:210px!important;
	padding:3px 0 9px;
}

.sitefooter a:link, .sitefooter a:visited, .sitefooter a:hover, .sitefooter a:active {
	color:#c6e2d7;
}

.footer-search {
	width:180px;
	border:none;
	padding:3px 3px;
	font-size:13px;
	color:#555;
	background:#DAEBD7;
	margin:5px 0;
}

footer .search {
	/*background:rgb(163, 213, 163);*/
	background:#105741;
	margin-bottom:20px;
	padding:10px 0 8px 10px;
}

	.search h1 {
		color:#c4c4c4;
	}

.contact-info {
	margin:0;
}

	.sitefooter p {
		margin:0 0 0 0;
		line-height:160%;
		font-size:.9rem;
		color:#F4FCF2;
	}
	
	.sitefooter h1 {
		font-size:14px;
		font-family:"museo-sans", sans-serif;
		text-transform:uppercase;
		letter-spacing:2px;
		/*color:rgb(0, 82, 23);*/
		color:rgb(97, 158, 124);
		line-height:140%;
	}

.facebook {
	background:#D8D9DB;
	min-height:200px;
	padding:10px;
	width:190px;
	margin-left:-20px;
}

	.facebook h1 {
		color:#999;
	}

.twitter {
	background:rgb(77, 163, 77);
	min-height:200px;
	width:190px;
	padding:10px;
}

	.twitter h1 {
		color:rgb(153, 201, 151);
	}


.copyright {
	margin:0; 
	/*color:rgb(124, 168, 125);*/
	/* color:rgb(107, 128, 107);*/
	color:#B2C4AE;
	font-family:"museo-sans", sans-serif;
	font-size:13px;
	text-transform: uppercase;
	letter-spacing:2px;
	text-align:right;
}

#editpage:link, #editpage:visited, #editpage:hover, #editpage:active {
	text-decoration:none;
}

#editpage:hover {
	background:#63AA61;
}

#editpage {
	position:fixed;
	top:0;
	left:0;
	padding:5px 6px;
	color:white;
	background:#94D192;
	text-transform:uppercase;
	font-size:12px;
}

.breadcrumbs {
	padding:12px 0 12px 10px;
	color:#82A795;
	font-size:14px;
}

	.breadcrumbs a:link, .breadcrumbs a:visited, .breadcrumbs a:hover, .breadcrumbs a:active {
		text-decoration:none;
		color:#3A866E;
		font-size:14px;
	}
	
.article-image {
	margin-bottom:10px;
}

.article-image.fullwidth {
	margin-bottom:30px;
}

.article-image img {
	width:100%;
}

.main-section .caption {
	margin-top:6px;
	font-size:13px;
}

 .main-section p { 	margin:0 0 1em 0; }  .main-section ul { 	list-style: outside disc; 	margin-left: 1em; 	padding:0; }  .main-section ul li { 	position: relative; 	/*left: 1em; 	padding-right: 1em; */}​  .main-section .flex-viewport .slides li { 	position:static; 	padding-right:0!important; 	left:0!important; 	margin-bottom:0; }

.main-section ul.slides {
	list-style:none;
	margin-left:0!important;
}

ul li {
	line-height:1.4;
	margin-bottom:.6em;
}

.blogitem {
	border-bottom:1px solid #ddd;
	padding:2em 0;
	display:block;
}

.blogitem.first {
	border-top:2px solid #ddd;
	margin-top:30px;
}

.blogitem h1 {
	margin-bottom:.1em;
}

.main-section .blogitem h2 {
	text-transform: none;
}

h1 a:link, h1 a:visited, h1 a:active {
	text-decoration:none;
}

h1 a:hover {
	text-decoration: underline;
}

.blogitem:first-child {
	border-top:1px solid #ddd;
}

.blogitem:last-child {
	border-bottom:none;
}

.main-imagery {
	float:left;
	margin-right:20px;
	margin-bottom:6px;
}

.blogitem-text {
	float:left;
	width:400px;
	max-width: 100%;
}

.leftcolumn img {
	max-width: 100%;
	height:auto;
}

.main-section h2 {
	font-size:16px;
	text-transform:uppercase;
	line-height:1.5;
	
}
.main-section .flex-caption {
	font-size:14px;
}
.event-details h2 {
	border-bottom:1px solid #ddd;
	padding-bottom:.3em;
	margin-top:2em;
}

.event-details h2:first-child {
	margin-top:1.3em;
}


.align_left {
	float:none;
}

.align_right {
	float:none;
}

.align_center {
	clear:both;
	margin:0 auto;
}



.address-info {
	margin-top:.5em;
	margin-bottom:.5em;
}

.phone-info {
	margin-top:.5em;
}

.phone {
	/* font-weight:bold; */
}

.sponsorship {
	background:#F2F6FC;
	padding:20px;
	margin:1.5em 0;
}
	
.meta-section.crumbs {
	/*background:rgb(212, 230, 217);*/
	/*background:#DAEBD7;*/
	background:#D7EBDE;
}

	.wrapper.crumbs {
		background:transparent;
	}

strong {
	/* color:rgb(94, 138, 179); */
	color:rgb(112, 129, 145);
}

section a:link, section a:visited, section a:hover, section a:active {
	
	color:rgb(94, 138, 179);
}

a strong {
	font-weight:normal;
}

.ctan-links {
	background:rgb(247, 247, 247);
	padding:0 10px;
	margin-top:40px;
	clear:both;
}

.ctan-links p {
	margin:1em 0;
}

.next {
	float:right;
	max-width:45%;
	font-size:14px;
}

.prev {
	float:left;
	max-width:45%;
	font-size:14px;
}

.excerpt-image {
	float:left;
	margin-right:20px;
	margin-bottom:0;
	margin-top:5px;
	
	width:33%;
}

.excerpt-image img {
	max-width:100%;
	height:auto;
}

.article-image.float {
	max-width:35%;
	float:left;
	margin-right:30px;
	margin-bottom:8px;
}

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

.main-section .children {
	border-top:2px solid #ddd;
	padding-top:0;
	margin-top:40px;
}

.main-section .children ul {
	margin:auto 0;
}

.main-section .children li {
	position:static;
	overflow:hidden;
}

.main-section .excerpt-title {
	text-transform: none;
	margin-bottom:0;
	font-size:20px;
	font-weight:bold;
}

.child-excerpt .body {
	line-height:1.4;
} 

table td {
	font-size:14px;
	line-height:1.3;
	padding:2px 0;
	vertical-align: top;
}

table tr td:first-child {
	padding-right:10px;
}

.main-section .excerpt-title a:link, .main-section .excerpt-title a:visited, .main-section .excerpt-title a:hover, .main-section .excerpt-title a:active {
	text-decoration: none;
} 

.child-excerpt {
	padding:10px 0 10px 0;
	border-bottom:1px solid #ddd;
}



.Highlight_Sunny {background-color:#fff2af}

.Highlight_Dewdrop {background-color:#DAF3C3}

.Highlight_Aqua {background-color:#9cefff}

.Color_Purple { color:rgb(165, 82, 255); }

.Color_Pink { color:rgb(255, 0, 173); }

.Color_Red { color:rgb(255, 0, 0); }

.Color_Orange { color:rgb(255, 133, 0); }

.Color_Green { color:rgb(0, 168, 0); }

.Default {background-color:transparent; color:inherit; }



/**
* Flexslider
**/

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

 
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; margin-left:0!important; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden; position:relative;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}


/* FlexSlider Default Theme
*********************************/
.flexslider {margin: 0 0 30px; background: transparent; border: none; position: relative;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}

.carousel li {margin-right: 5px}


/* Direction Nav */
.flex-direction-nav {*height: 0; display:none;}
.flex-direction-nav a {width: 41px; height: 41px; margin: -120px 0 0; display: block; background: url(images/bg_direction_nav3.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.flex-direction-nav .flex-next {background-position: 100% 0; right: -36px; }
.flex-direction-nav .flex-prev {left: -36px;}
.flexslider:hover .flex-next {opacity: 0.8; right: 5px;}
.flexslider:hover .flex-prev {opacity: 0.8; left: 5px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .6; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {opacity: 1; left: 0;}
  .flex-direction-nav .flex-next {opacity: 1; right: 0;}
}

/* Caption style */
 .flex-caption {
	color: #ccc; 
	font-size: 18px;
	text-align:center;
	margin:0;
	height:auto;
	padding:10px 0;
	position:absolute;
	bottom:0;
	width:100%;
	background:rgba(10,10,10,.6);
}

/* Masonry */
#masonry-container {
	margin:1em 0 40px 0;
	background:#000000;
}
.item { width: 155px; float:left; 
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	
}
.item:hover {
	/*-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	-o-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);*/
}
.item img {display:block;}


.contact-info p strong {
	color:rgb(142, 193, 146);
}

.meta-section .wrapper.transparent .sitefooter {
	overflow: hidden;
}

.search.header {
	display:none;
}


/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }






/* Slicknav */

/*
    Mobile Menu Core Style
*/

.slicknav_btn { position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; }
.slicknav_menu  .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
.slicknav_menu .slicknav_icon { float: left; margin: 0.188em 0 0 0.438em; }
.slicknav_menu .slicknav_no-text { margin: 0 }
.slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em }
.slicknav_nav { clear: both }
.slicknav_nav ul,
.slicknav_nav li { display: block }
.slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.4em; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_row { display: block; }
.slicknav_nav a { display: block }
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a { display: inline }
.slicknav_brand { float:left }
.slicknav_menu:before,
.slicknav_menu:after { content: " "; display: table; }
.slicknav_menu:after { clear: both }
/* IE6/7 support */
.slicknav_menu { *zoom: 1 }

/* 
    User Default Style
    Change the following styles to modify the appearance of the menu.
*/

.slicknav_menu {
    font-size:16px;
    box-sizing:border-box;
}
.slicknav_menu * {
  box-sizing:border-box;
}
/* Button */
.slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration:none;
    text-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;  
    background-color: #298869;
}
/* Button Text */
.slicknav_menu  .slicknav_menutxt {
    color: #FFF;
    font-weight: normal;
    text-shadow: 0 1px 1px #666;
    font-family: "museo-sans", sans-serif;
}
/* Button Lines */
.slicknav_menu .slicknav_icon-bar {
  background-color: #f5f5f5;
}
.slicknav_menu {
    background:#298869;
    padding:5px;
}
.slicknav_nav {
    color:#fff;
    margin:0;
    padding:0;
    font-size:0.955em;
}
.slicknav_nav, .slicknav_nav ul {
    list-style: none;
    overflow:hidden;
}
.slicknav_nav ul {
    padding:0;
    margin:0 0 0 20px;
}
.slicknav_nav .slicknav_row {
    padding:5px 10px;
    margin:2px 5px;
}
.slicknav_nav a{
    padding:5px 10px;
    margin:2px 5px;
    text-decoration:none;
    color:#fff;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    padding:0;
    margin:0;
}
.slicknav_nav .slicknav_row:hover {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background:#87b79b;
    color:#fff;
}
.slicknav_nav a:hover{
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    /*  background:#ccc; */
    color:#fff;
}
.slicknav_nav .slicknav_txtnode {
    margin-left:15px;   
}
.slicknav_brand {
	color:#fff;
	font-size: 18px;
	line-height:30px;
	padding:7px 12px;
	height:44px;
}


/* End Slicknav */




/* Menu Styles. */

.slicknav_menu {
	display:none;
}

#menu_holder {
	display:none;
}

@media screen and (max-width: 767px) {
	/* #menu is the original menu */
	#desktop_menu {
		display:none;
	}
	
	.mainmenu {
		display:none;
	}
	
	.slicknav_menu {
		display:block;
	}
	
    #menu_holder {
		display:block;
		overflow:hidden;
		padding:0;
		margin:0;
	}
}









/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 480px) {

}

@media only screen and (min-width:630px) {
	.image {
		height:250px;
	}
}

@media only screen and (min-width: 768px) {

/* ====================
    WIDE: CSS3 Effects
   ==================== */

    body {
    }
    
    .logolink {
		display:block;
		width: 594px;
		padding:10px 0;
		float:left;
		margin:0;
	}
	.tagline {
		display:block;
		font-weight:normal;
		margin:0;
		font-size:14px;
		position:absolute;
		top:119px; /* was 116 */
		left:137px; /* was 154 */
		text-align: left;
	}
	.mainmenu {
		width:960px;
		background:url('images/logo-as-bg3.png') no-repeat 780px -50px;
	}
    .mainheader {
	    padding:0;
    }
    article > p > img {
	margin-top:0;
    }
    
    img.align_right {
      float:right;
      margin:20px;
      
    }
    
    img.align_left {
      float:left;
      margin:20px;
      
    }
    
    img.align_center {
      float:none;
      display:block;
      margin-bottom:20px;
      
    }

	.breadcrumbs {
		padding:6px 0 6px 10px;
	}
    
    .leftcolumn {
		display:inline-block;
		vertical-align:top;
		padding:20px 0 20px 10px;
		width:60%;
		background: transparent repeat-y top left;
	}
	
	.inner .leftcolumn {
		padding-bottom:80px;
		padding-right:30px;
		width:60%;
		padding-top:30px;
		padding-left:0;
	}
	
	.link-column {
		width:30%;
		margin-right:3%;
	}
	
	.align_left {
		float:left;
		margin-right:20px;
		margin-bottom:6px;
	}
	
	.align_right {
		float:right;
		margin-left:20px;
		margin-bottom:6px;
	}
	
	.align_center {
		clear:both;
		margin:0 auto;
		margin:1em 0;
	}

	
	.text {
		height:auto;
		width:96%;
		padding:1% 2%;
		margin-bottom:0;
	}
	
	.message .body {
	}
	
	.excerpt-image {
		width:auto;
	}
	
	.row {
		margin-bottom:20px;
	}
	
	.section-header {
		display:block;
		margin:0 0 0.6em 0;
		padding:0;
		font-weight:normal;
		font-size:28px;
		line-height:110%;
		font-family:"museo-sans", sans-serif;
	}
	
	.main-section {
		/*line-height:140%;*/
	}
		
	
	
	.link-column img {
		margin-bottom:.5em;
		width:100%;
		height:auto;
	}
	
	.link-column h1 {
		font-weight:normal;
		font-size:18px;
		margin:.3em 0 .3em 0;
		/*color:rgb(0, 190, 69);*/
		color:rgb(35, 179, 104);
	}
	
	.link-column p {
		margin:0 0 .5em 0;
		line-height:140%;
	}
	
	.link-column .readmore {
		
	}
	
	.link-column > a {
		margin-right:0;
		width:100%;
	}
			
	
	.message {
		/* width:960px;
		height:374px; */
		width:100%;
		height:auto;
		display:block;
		background:transparent;
		padding:0;
		margin:0;
		position:relative;
	}
	
	.message .slide-headline {
		display:inline;
		font-size:16px;
		/*color:#3fb159;*/
		/* color:#60AF72;*/
		color:#31b186;
		margin-right:.4em;
	}
	
	.message .body {
		color:white;
		margin:0 0 .3em 0;
		padding:0;
		font-size:16px;
		line-height:150%;
		display:inline;
	}
	
	
	.message .title {
		text-align:center;
		margin-top:3em;
		font-weight:normal;
		font-size:1.4rem;
	}
	
	.randomgallery > div {
		margin-bottom:0;
		width:auto;
		float:left; 
		width:85px;
		margin-right:10px;
	}

	.sitefooter .column {
		width:210px;
		display:inline-block;
		vertical-align:top;
		margin-right:30px;
	}
	
	.column.four {margin-right:0; width:220px;}
	
	.column.four p a img {
		display:inline;
		float:none;
		margin-right:0;
	}
	
	.miniwrap {
		width:212px;
	}
	
	
			
	.sidebar {
		padding-top:66px;
		padding-bottom:40px;
		padding-left:0;
		padding-right:0;
		width:30%;
		display:inline-block;
		vertical-align:top;
	}
	
	.inner .sidebar {
		padding-top:20px;
		
	}
	
	.leftcolumn iframe {
		width:100%;
	}
	
	.footer .wrapper .transparent {
		padding:10px;
	}
	
	blockquote { margin: 1em 20px; font-style:italic; color:#23B368;}
	
	/* Caption style */
	 .flex-caption {
		height:24px;
	}
	
	.image {
		height:300px;
	}

/* ============
    WIDE: Menu
   ============ */

    .title {
    }

    nav {
    }

/* ============
    WIDE: Main
   ============ */

    .main article {
    }

    .main aside {
    }
}

@media only screen and (min-width:930px) {
	/* hide the mobile menu */
	
	.search.header {
		display:block;
		position:absolute;
		right:0;
		padding:5px 16px;
		border:1px solid #ddd;
		top:-1px;
		cursor:pointer;
		display:block;
	}
	
	.search.header form {
		display:none;
	}
	
	.search.header:hover form {
		display:inline;
	}
	
	.search.header h1 {
		margin:0;
		font-size:14px;
		display:inline;
		color:#999;
	}
	
	.search.header input {
		color:#555;
		background:transparent;
		margin:5px 0;
		border:1px solid #ddd;
		margin-left:6px;
	}
	
}

@media only screen and (min-width: 960px) {

/* ===============
    Maximal Width
   =============== */
   
	.wrapper {
		width:960px;
	}
	.image {
		height:400px;
	}
	
	.leftcolumn {
		padding:20px 0 20px 10px;
		width:650px;
	}
	
	.inner .leftcolumn {
		padding-bottom:80px;
		padding-right:30px;
		width:620px;
		padding-top:30px;
		padding-left:0;
	}
			
	.sidebar {
		padding-top:66px;
		padding-bottom:40px;
		padding-left:0;
		padding-right:0;
		width:286px;
	}
}

@media only screen and (min-width: 1140px) {

/* ===============
    Maximal Width
   =============== */

/*    
   
	.wrapper {
		width:1140px;
	}
	
*/	
	.image {
		height:500px;
	}
	
	.text {
		height:auto;
		width:960px;
		padding:1% 2%;
		left:50%;
		right:auto;
		margin-left:-480px;
	}
	
}


/* =============================================================================
   Print styles.
   Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
 
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}
