@import url('http://fonts.googleapis.com/css?family=Metrophobic|Wendy+One|Alef');


@charset "UTF-8";
html, body {
	background-color:#009344;
background-repeat:no-repeat;
	font-family: 'Metrophobic';
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Wendy One';
	margin-top: 0; padding-right: 15px; padding-left: 15px;
	
	}
.sky {  #F0FAFA; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: -moz-linear-gradient(top, #9CCDE9 0%, #F0FAFA 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9CCDE9), color-stop(100%,#F0FAFA)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #9CCDE9 0%,#F0FAFA 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #9CCDE9 0%,#F0FAFA 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #9CCDE9 0%,#F0FAFA 100%); /* IE10+ */
background: linear-gradient(to bottom, #9CCDE9 0%,#F0FAFA 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9CCDE9', endColorstr='#F0FAFA',GradientType=0 ); /* IE6-8 */
margin-top: 0; margin-left: 0; width:100%; height:650px;position:absolute;}


.content {
	margin: 0;
	padding: 0;
	-webkit-transition: all 2s ease-in 1s;
	-moz-transition: all 2s ease-in 1s;
	-ms-transition: all 2s ease-in 1s;
	-o-transition: all 2s ease-in 1s;
	transition: all 2s ease-in 1s;
}

p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
#wrapper {
	width:970px; top:0;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    min-height: 100%;
	height:100%;
	z-index:2000; position:relative;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
	-webkit-transition: height 1s ease-in-out 1s;
	-moz-transition: height 1s ease-in-out 1s;
	-ms-transition: height 1s ease-in-out 1s;
	-o-transition: height 1s ease-in-out 1s;
	transition: height 1s ease-in-out 1s;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.header {width:100%; margin-bottom: 50px; padding-top:15px;}
.logo {width: auto; float:left; margin-right:20px;}
.menu {width:auto; float: right; margin-top:10px;}
.footer {width: 100%; bottom: 10px; left:0; padding-top:50px; text-align:center; position: relative; font-size:10px;}

.content-main { background-color:#FFF; width:600px; padding:20px; float:left; -webkit-transition: all 2s ease-in 1s;
	-moz-transition: all 2s ease-in 1s;
	-ms-transition: all 2s ease-in 1s;
	-o-transition: all 2s ease-in 1s;
	transition: all 2s ease-in 1s;
	border-radius: 8px; -moz-border-radius:8px; -webkit-border-radius: 8px; -o-border-radius: 8px; box-shadow:#333 5px 5px 5px;}


blockquote p { margin-bottom: 10px; font-style: italic; }
blockquote cite { font-style: normal; display: block; text-align: right; text-transform: uppercase; font-size: 10px; font-weight: bold; letter-spacing: 1px; font-family: Arial, Helvetica, sans-serif; }

/*
 |	Setting the width for the blockquotes is required
 |	to accurately adjust it's contianer
*/

blockquote {
	width: 300px; /* required */
	margin: 0 auto; float:right;
	}
	
/*
 |	The #quote_wrap div is created
 |	by Quovolver to wrap the quotes
*/

#quote_wrap { width: 300px;
	background: #FFFFC7 url(http://sandbox.sebnitu.com/jquery/quovolver/demo/images/quote-mark.png) no-repeat 20px 20px; margin-top: 0px; padding: 20px; border: 1px solid #edffaf; float:right; border-radius: 8px; -moz-border-radius:8px; -webkit-border-radius: 8px; -o-border-radius: 8px;
	}
.clear {clear:both;}

#character {float:left; text-align:center; padding:20px; font-family: 'Wendy One'; font-size:100%;}

#lightbox {
			position:fixed; /* keeps the lightbox window in the current viewport */
			top:0; 
			left:0; 
			width:100%; 
			height:100%; 
			background:url(../images/overlay.png) repeat; 
			text-align:center;
			z-index: 3000;
		}
		#lightbox p {
			text-align:right; 
			color:#fff; 
			margin-right:20px; 
			font-size:12px; 
		}
		#lightbox img {
			box-shadow:0 0 25px #111;
			-webkit-box-shadow:0 0 25px #111;
			-moz-box-shadow:0 0 25px #111;
			max-width:940px;
		}


<!-- Javascript Tabbed Panels -->
.etabs { margin: 0; padding: 0; }
    .tab { display: inline-block; zoom:1; *display:inline; background: #eee; border: solid 1px #999; border-bottom: none; -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; }
    .tab a { font-size: 14px; line-height: 2em; display: block; padding: 0 10px; outline: none; }
    .tab a:hover { text-decoration: underline; }
    .tab.active { background: #fff; padding-top: 6px; position: relative; top: 1px; border-color: #666; }
    .tab a.active { font-weight: bold; }
    .tab-container .panel-container { background: #fff; border: solid #666 1px; padding: 10px; -moz-border-radius: 0 4px 4px 4px; -webkit-border-radius: 0 4px 4px 4px; }
    .panel-container { margin-bottom: 10px; }
	
	.clouds {background-image:url(../images/clouds.png); width:100%; height:560px; background-repeat: repeat-x; margin-top: 0; margin-left: 0; position: absolute;}