/*
* 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
==================================================
	#baseline corrections
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Typography (baseline corrections)
================================================== */

	h1 { line-height: 49px; margin-bottom: 14px;}
	h2 { line-height: 42px; margin-bottom: 7px; }
	h3 { line-height: 35px; margin-bottom: 7px; }
	h4 { line-height: 28px; margin-bottom: 7px; }
	h5 { line-height: 21px; }

	p { margin: 0 0 21px 0; }
	p.lead { line-height: 28px; }


/*	Blockquotes  */
	blockquote, blockquote p { line-height: 21px;}
	blockquote { margin: 0 0 21px; padding: 7px 20px 0 19px; }

	hr { margin: 14px 0 28px;}
	
/* #Lists (baseline corrections)
================================================== */
	ul, ol { margin-bottom: 21px; }
	ul ul, ul ol,
	ol ol, ol ul { margin: 7px 0 7px 30px; }
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 7px; }
	li { line-height: 21px; margin-bottom: 14px; }
	
	
	

/* #Site Styles
================================================== */

/* @font-face{ 
	font-family: 'WebSymbolsRegular';
	src: url('../fonts/websymbols/websymbols-regular-webfont.eot');
	src: url('../fonts/websymbols/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
	     url('../fonts/websymbols/websymbols-regular-webfont.woff') format('woff'),
	     url('../fonts/websymbols/websymbols-regular-webfont.ttf') format('truetype'),
	     url('../fonts/websymbols/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg');
	} */



* { 
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box; 
	}

img {
	max-width: 100%;
}

.band {
	background: #CCC;
	/*background: url(../images/##) repeat #CCC;   This could have a background image*/
	padding: 0px 0px 0px 0px;
}

.band.header {
	background: url(../images/headerbg.png) repeat #333;
	padding: 25px auto;

}

.band.navigation {
	background: #333;
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 6);
	-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 6);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 6);

}

.band.footer {
	background: url(../images/stitch_staggered.png) left top repeat-x, #666;
				/* url(../images/#.png) left top repeat-x, We can place a background image here url(../images/#) repeat left 2px,*/
				
	padding: 25px 0 50px 0;			
	color: #e0e0e0; 
}

.band.bottom {
	background: url(../images/stitch_staggered.png) left top repeat-x,
				/* can place a background image here  url(../images/#) repeat,*/
				#333;
	padding: 15px 0 7px 0;
	color: #CCC;
}

/*ie multiple background image fallbacks*/
.ie .band.navigation {
	background: #333;
	/*background: url(../images/##) repeat #333;   This could have a background image*/

}
.ie .band.footer {
	background: #333;
	/*background: url(../images/##) repeat #333;   This could have a background image*/
	
}
.ie .band.bottom {
	background: #333;
	/*background: url(../images/##) repeat #333;   This could have a background image*/
}


/*heading*/
header.main {
	padding: 0px 0;
}

header h1.logo {
	margin: 0px 0 0 0;
	float: left;
}

header h1.logo a {
	width: 960px;
	height: 250px;
	display: block;
	background: url(../images/logo_960.png) no-repeat 0 0;
	font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

.subheader {
	display: none;
	padding: 62px 0px 0px 0px;
	float: right;
}

/*navigation*/
nav.primary ul,
nav.primary ul li {
	margin: 0px;
}

nav.primary select {
	display: none;
	width:  100%;
	height: 28px;
	margin: 21px 0;
}

nav.primary ul li {
	display: inline;
	float: left;
	position: relative;
}

/*navigation font*/
nav.primary ul li a {
	display: inline-block;
	line-height: 50px;
	padding:  0 10px 0 10px;
	color:  #FFF;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 0.05em;
}

nav.primary ul li a:hover {
	background: #333;
	cursor: pointer;
	font-weight: bold;
}

/*sub menu*/
nav.primary ul ul {
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
	top:100%;
	left: 0;
	z-index: 999;
	background: #333;
	height: 0px;
	overflow: hidden;
	width: 300px;
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
	-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 4);
	-moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 4);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 4);
}

nav.primary ul li span {
	display: none;
}

nav.primary ul li:hover ul {
	opacity: 10; 
  	filter: alpha(opacity=100); 
	background: #cc3333;
	height: auto;
	overflow: auto;
}

nav.primary ul ul li {
	float: none;
	display: list-item;
	border-bottom: 1px solid #900;
}

nav.primary ul ul li a {
	display: block;
	line-height: 35px;
	text-transform: none;
}
/* main nav hover */
nav.primary ul li:hover > a {
	background: #900;
}


/*images*/
figure {
	padding: 6px;
	border: 1px solid #ededed;
	background: #fff;
	line-height: 0px;
	font-size: 100%;
}

figcaption {
	font-size: .75em;
	text-align: center;
	padding: 14px 0;
}


/*footer*/
footer a,
footer a:visited {
	color: #FFF;
}

footer a:hover {
	text-decoration: none;
	color: #900;
}

.bottom footer {
	font-size: 12px;
}

div.last-credit {
	text-align: right;
}

footer h3.logo {
	margin: 14px 0 10px;
}

footer h3.logo a {
	width: 185px;
	height: 60px;
	display: block;
	background: url(../images/logosprite.png) no-repeat 0px;
	
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}

footer.main header {
	background: url(../images/diagonal_dark.png) repeat;
	font-size: 14px;
	line-height: 1em;
	margin: 28px 0 0;
}

footer.main h4 {
	font-weight: bold;
	color: #fff;
	font-size: 14px;
	line-height: 1em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: arial, sans-serif;
	/*background: url(../images/#) repeat;*/
	display: inline;
	padding: 0 10px;
	margin: 0 0 0 14px;
}

/*footer lists*/
footer.main ul {
	margin: 7px 0px;
}

footer.main li {
	padding: 21px 0px;
	margin: 0;
	background: url(../images/stitch_staggered.png) repeat-x left bottom;
}

footer.main li:last-child {
	background: none;
}


/*
 * jQuery FlexSlider v1.8
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* 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; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {width: 100%; margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-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;}

/*my own flexslider styles*/
.flexslider {
	margin: 5px 0 5px 0;
}

.flex-control-nav {
	width: 100%;
	text-align: left;
}

.flex-control-nav li {
	display: inline;
	margin: 0 5px;
}

.flex-control-nav li a {
	display: inline-block;
	width: 14px;
	height: 14px;
	background: #d5d5d5;
	border: 1px solid#d5d5d5;
	
	cursor: pointer;
	
	font: 0/0 a;
	text-shadow: none;
	color: transparent;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.flex-control-nav li a.active,
.flex-control-nav li a:hover {
	background: #f1f1f1;
}


/*Body*/

hr {
	border: none;
	border-bottom: 1px dashed #e5e5e5;
	margin: 14px 0 28px
}

article .crumbs {
	margin-bottom: 8px;
}

article .meta {
	margin-bottom: 8px;
}


/*sidebar (aside)*/
.sub header {
	background: url(../images/diagonal_pale.png) repeat;
	font-size: 14px;
	line-height: 1em;
	margin: 28px 0;
}

.subscribe header {
	margin-top: 0;
}

.sub header h4 {
	font-weight: bold;
	color: #999999;
	font-size: 14px;
	line-height: 1em;
	text-transform: uppercase;
	background: #FFF;
	/*  You could hav an image behind the letters =  background: url(../images/##) repeat #fff; */
	display: inline;
	padding: 0 10px;
	margin: 0 0 0 14px;
	letter-spacing: 0.1em;
	font-family: Arial, sans-serif;
}

/*forms*/
	/*Glyn Mooney webkit reset 
	http://www.skidoosh.co.uk/html/how-to-reset-the-webkit-html5search-field-style-with-css/
	input[type=search]::-webkit-search-decoration,
	input[type=search]::-webkit-search-cancel-button,
	input[type=search]::-webkit-search-results-button,
	input[type=search]::-webkit-search-results-decoration {
	  display: none;
	}
	
	input[type=search] {
	  -webkit-appearance: textfield;
	}
	
	input[type=search]:focus {
	outline: none;	
	}
	
	input[type="text"],
	input[type="search"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		width: 100%;
	}

	.search input[type=search],
	.subscribe input[type=email] {
		width: 70%;
		float: left;
		margin: 0;
	}
	.search button,
	.subscribe button {
		width: 28%;
		float: right;
		margin: 0;
		padding: 7px 10px;
	} */

/*categories*/
ul.categories {
	margin: 0;
}

ul.categories li {
	border-bottom: 1px dashed #e5e5e5;
	margin: 0;
}

ul.categories li a {
	text-decoration: none;
	line-height: 35px;
	display: block;
}

ul.categories li a:hover,
ul.categories li a:active {
	background: #ffffff;
}

/*icons
.icon {
	font-family: "WebSymbolsRegular";
	font-size: 28px;
	line-height: 1em;
}

.subscribe span {
	width: 30%;
	float: left;
}

.subscribe p {
	width: 70%;
	float: right;
	margin: 0;
	font-family: Georgia, serif;
}

.subscribe em {
	font-size: 21px;
	font-style: normal;
}

.icon.rss {
	color: #ef7908;
}

.icon.twitter {
	color: #39bae6;
}*/

/*flexible embeds*/
.embed {
	position: relative;
	padding: 0;
	padding-bottom: 56.25%; /* 16:9 ratio*/
	height: 56.25%;
	overflow: hidden;
}

.embed iframe,
.embed object,
.embed embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*tabs*/
ul.tabs {
	margin: 0;
}

ul.tabs li {
	position: relative;
	top: 1px;
}

ul.tabs li a.active {
	height: 34px;
	background: url(../images/bg_main.png);
}

.tabs-content li {
	padding: 35px 20px;
	border: 1px solid #ddd;
	border-top: none; 
}

/*sponsors*/
.sponsors a {
	float: left;
	max-width: 46%;
	margin: 2%;
}

.sponsors .maxi {
	display: none;
}



/* #Page Styles
================================================== */

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

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
		
			.header h1.logo a {
			width: 768px;
			height: 250px;
			display: block;
			background: url(../images/logo_768.png) no-repeat 0 0;
			font: 0/0 a;
			text-shadow: none;
			color: transparent;
			}
		}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
	
		article .three.thumbnail {
			display: block;
		}
	
		nav.primary select {
			display: block;
		}
		
		nav.primary ul {
			display: none;
		}
		
		.bottom footer {
			text-align: center;
		}
	
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
			
		.header h1.logo a {
			width: 480px;
			height: 250px;
			display: block;
			background: url(../images/logo_480.png) no-repeat 0 0;
			font: 0/0 a;
			text-shadow: none;
			color: transparent;
			}
		}
	
	

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
		
	.header h1.logo a {
			width: 300px;
			height: 250px;
			display: block;
			background: url(../images/logo_300.png) no-repeat 0 0;
			font: 0/0 a;
			text-shadow: none;
			color: transparent;
			}
	
	.flexslider {
			display:  none;
			}
	
	/*sponsors*/
		.sponsors .mini {
			display:  block;
		}
		
		.sponsors .maxi {
			display: block;
			float: none;
			max-width: 100%;
			margin: 0 0 7px 0;
		}
		
	}
	
	/* Additional large screens 2560+ */
	@media only screen and (min-width: 25600px) {
		
		
	}
/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/
