/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Tabs
	#Forms
        #Menu + Logo
	#Misc 
        #Sidebar
        #Footer
*/


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */

/* Basic Gridding for Content */
.half, .third, .quarter {
    float: left;
    margin-right: 4%;
    position: relative;
	}
.half {
    width: 48%;
	}
.third {
    width: 30.66%;
	}
.quarter {
    width: 22%;
	}
.first {clear:left;}
.last {
    clear: right;
    margin-right: 0 !important;
	}

/* Basic Image Settings for Content */

.image {
	display:block;
	width:auto;
	max-width:100%;
	margin-bottom:20px;
	}
.image-right, .image-left, .image-center, .image { 
	border-radius:3px;
	box-shadow: 0 2px 4px rgba(0,0,0,.5);
	}
.image-right {
	float:right;
	margin: 0 0 20px 20px;
	}
.image-left {
	float: left;
	margin: 0 20px 20px 0;
	}
.image-center {
	display:block;
	margin: 0 auto 20px;
	}
.no-shadow {box-shadow:none;}

/* Basic Text Alignment for Content */
.text-right {
	text-align:right;
	}	
.text-center {
	text-align:center;
	}

/* Basic Alignment Settings for Content */
.right { float:right; margin: 0 0 20px 20px;}
.left { float:left; margin: 0 20px 20px 0;}
.center {display:block margin: 0 auto 20px;}

.alignleft, .aligncenter, .alignright {	
	width:auto;
	max-width:100%;
	}
.alignleft 	{float:left; margin: 0 20px 20px 0;}
.aligncenter 	{display:block; margin: 0 auto 20px;}
.alignright 	{float:right; margin: 0 0 20px 20px;}

.clearboth {clear:both;}


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		font-family: 'Kaushan Script', Helvetica, Arial, Sans-serif;
		color: rgb(130,35,15);
		font-weight: normal; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit;}
	h4, h5, h6 {}
	h1 { font-size: 46px; line-height: 50px; margin-bottom: 14px;}
	h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
	h3 { font-size: 28px; line-height: 34px; margin-bottom: 10px; }
	h4 { font-size: 21px; line-height: 30px; margin-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,.3); box-shadow: 0 1px 0 rgba(255,255,255,.1);}
	h5 { font-size: 17px; line-height: 24px; margin-bottom: 5px;}
	h6 { font-size: 14px; line-height: 21px; margin-bottom: 5px;}
	.subheader { color: #777; }

	p { margin: 0 0 20px 0; }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; }

	em { font-style: italic; }
	strong { font-weight: bold; }
	small { font-size: 80%; }

/*	Blockquotes  */

blockquote {
	clear:both;

	padding: 20px;
	margin-bottom: 20px;
	background: rgba(255,255,255,.8);
	color: rgb(40,40,40);
	box-shadow: 0px 1px 1px rgba(0,0,0,0.5);
	border-top: 10px solid rgb(135,35,15);
	}

blockquote:before,
blockquote:after {
	position: absolute;
	font-size: 70px;
	top: 0px;
	color: #242526;
	text-shadow: 0 1px 1px rgba(255,255,255,0.1);
	}

blockquote .quote {
	border-bottom:1px solid rgba(0,0,0,.3);
	box-shadow: 0 1px 0 rgba(255,255,255,.1);
	padding-bottom: 5px;
	}
blockquote .quote p:before{
	content: '\275d ';
	padding-right:5px;
	}

blockquote .quote p:after{
	right: 0px;
	content: '\275e';
	}
blockquote p {
	font-family: Cambria, Georgia, serif;
	font-style: italic;
	font-size: 16px;
	line-height: 1.15;
	text-align: center;
	margin: 0 0 20px 0;

	text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
	}

blockquote .source {
	margin:0; 
	padding:0;
	display:block;

	color: rgb(120,120,120);
	font-size: 14px;
	text-align:right;
	}
blockquote.right, blockquote.left {
	width: 35%;
}
blockquote.right {float:right;	margin: 0 0 20px 20px;}
blockquote.left {float:left; margin: 0 20px 20px 0;}

hr { 

	border-width: 1px 0 0; 
	border-top: 1px solid rgba(0,0,0,.3);
	box-shadow: 0 1px 0 rgba(255,255,255,.1);
	clear: both; 
	margin: 10px 0 20px; 
	height: 0; }

/* #Links
================================================== */
a { color: rgb(135,35,15); text-decoration: underline; outline: 0; width:auto; max-width:100%; }
a:visited {color: rgb(155,55,35);}
a:hover, a:focus { color: #000; }
.title a {text-decoration: none;}
p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
ul, ol { margin-bottom: 20px; }
ul { list-style: disc inside; }
ol { list-style: decimal; }
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }
ul ul, ul ol,
ol ol, ol ul { margin: 0 0 0 30px; font-size: 90%;  }
ul ul li, ul ol li,
ol ol li, ol ul li { margin-bottom: 6px; }
li { line-height: 18px; margin-bottom: 12px; }
ul.large li { line-height: 21px; }
li p { line-height: 21px; }

/* #Images
================================================== */

img.scale-with-grid {
	max-width: 100%;
	height: auto; }


/* #Buttons
================================================== */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: rgb(135,35,15); /* Old browsers */
	border: 1px solid rgb(115,15,0);
	border-top: 1px solid rgb(155,55,35);
	box-shadow: 0 2px 1px rgba(0,0,0,.2);

	border-radius: 3px;
	color: rgb(255,255,255);
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 0 1px rgba(0,0,0, .5);
	cursor: pointer;
	margin-bottom: 20px;
	line-height: normal;
	padding: 8px 10px;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; 
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	-ms-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	}

	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {
		color: rgb(255,255,255);
		background: rgb(155,55,35); /* Old browsers */

		border: 1px solid rgb(135,35,15);
		border-top: 1px solid rgb(175,75,55);
		box-shadow: 0 2px 4px rgba(0,0,0,.5);
		}

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
		border: 1px solid rgb(35,0,0);
		background: rgb(75,0,0); /* Old browsers */
		box-shadow: 0 0px 4px rgba(0,0,0,.2);
	}

	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}
a.button {color:white;}
p .button { margin-bottom: 0;
}

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

	form {
		margin-bottom: 20px; }
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 6px 4px;
		outline: none;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #777;
		margin: 0;
		width:auto;
		max-width: 100%;
		display: block;
		margin-bottom: 10px;
		background: #fff;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		}
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 1px 2px rgba(0,0,0,.3);
		-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.3);
		box-shadow:  0 1px 2px rgba(0,0,0,.3); }
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  }
	legend {		
		font-size:18px;
		margin-bottom:10px;
	}
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }

/* #Menu System
================================================== */

#mainmenu {
	position:relative;
	display:block;
	z-index:110;
	margin-bottom:20px;
	}
/*///// Top Level Links */
/*////////////////////////////////////////////*/

#mainmenu ul a, #mainmenu .sectionheader {
	background: rgb(135,35,15); /* Old browsers */
	border: 1px solid rgb(115,15,0);
	border-top: 1px solid rgb(155,55,35);
	box-shadow: 0 2px 1px rgba(0,0,0,.2);

	margin-right:1px;

	color: rgb(255,255,255);
	font-family: 'Bree Serif', Helvetica, Arial, Sans-serif;
	text-transform: uppercase;
	font-size:11px;
	font-weight: normal;
	line-height:16px;

	padding: 5px 10px;


	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

	-webkit-transition: .15s all linear;
	-moz-transition: .15s all linear;
	-o-transition: .15s all linear;
	-ms-transition: .15s all linear;
	transition: .15s all linear;
	}
#mainmenu .sectionheader {
	color:rgb(150,190,60);
	cursor:default;
	text-align:center;
	}
#mainmenu ul li {
	}

#mainmenu ul a:hover, #mainmenu .sectionheader:hover {
		color: rgb(255,255,255);
		background: rgb(155,55,35); /* Old browsers */

		border: 1px solid rgb(135,35,15);
		border-top: 1px solid rgb(175,75,55);
		box-shadow: 0 2px 4px rgba(0,0,0,.5);
	}
#mainmenu ul a:active, #mainmenu .sectionheader:active {
		border: 1px solid rgb(35,0,0);
		background: rgb(75,0,0); /* Old browsers */
		box-shadow: 0 0px 4px rgba(0,0,0,.2);
	}	

/*///// Differentiating Second Level Links */
/*////////////////////////////////////////////*/

#mainmenu ul ul{
	z-index:10;
	font-size:12px;
	font-weight:normal;
	margin:0;
	margin-top:3px;
	width:100%;

	}
#mainmenu ul ul li{
	width: 100px;
	margin-bottom: 0;
	}
#mainmenu ul ul li a{
	margin-bottom: 0px;

	}	


#mainmenu ul ul a {
	width:100px;
	display:block;
	border: 1px solid rgba(0,0,0,0);
	background: rgb(0,75,95);
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.3);
	box-shadow: 0 2px 2px rgba(0,0,0,.3);

	}

#mainmenu ul ul a {

	}

#mainmenu ul ul a:last-child {
	border-bottom:none;
	}

/* ****************Layout*************** */

#mainmenu  ul {
	float:right;
	padding:0;
	margin:0;
	}

#mainmenu li {
	opacity: 1!important;
	float: left;
	list-style-type: none;
        position:relative; 

        margin-left:0px;
	}

#mainmenu > ul > li:last-child a {
	}

#mainmenu > ul > li:first-child a {
	}

#mainmenu a {
	text-decoration: none;
	font-size:1em;
        cursor:pointer;
	display:block;
	text-align:center;
	padding:3px;
	}

/* ****************Secondary*************** */

#mainmenu ul ul {
	left: 0px;
	top:24px;
	display: none;

	position: absolute;
	}

#mainmenu ul li:hover ul {
	display:block;
	}

#mainmenu li li {
	}

/* **************** Tertiary*************** */

#mainmenu ul li:hover ul ul {
	display:none;
	}

#mainmenu ul ul li:hover ul {
	display:block;
	position:absolute;
	left:120px;
	top:0px;
	}

/* ************** Quaternary *************** */
#mainmenu ul ul li:hover ul ul {
	display:none;
	}

#mainmenu ul ul ul li:hover ul {
	display:block;
	position:absolute;
	left:120px;
	top:0px;
	}

/* ************** Quinary *************** */

#mainmenu ul ul ul li:hover ul ul{
	display:none;
	}

#mainmenu ul ul ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:120px;
	top:0px;
	}

/* ******** Marking Menu Parents ********** */
		
#mainmenu .sectionheader > a:first-child {
	/* Section Headers don't show that they can be clicked on */
	cursor:default!important;
	}

.depth1 > a:before {
	/* Section Headers on the first level of the menu don't display +'s next to their link */
	display:none;
	}
