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

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */
.testimonial-quote {
    display: none;       
}

.testimonial-quote a {    
    text-decoration: none;
}

.blog-title {
	margin-top: 40px;
	margin-bottom: 10px;
	color: #333;	
	font-size: 20px;
	font-weight: 600;	
}

.blog-date {	
	margin-bottom: 20px;
	color: #333;	
	font-size: 14px;	
}

.blog-title a {    
    text-decoration: none;
}

.blog-tag {
	display: inline-block;
	border-radius: 12px;
	border-width: 1px;
	border-color: #ddd;
	border-style: solid;
	padding: 4px;
	margin: 4px;
	font-size: 12px;
}

.blog-tag-selected {
	display: inline-block;
	border-radius: 12px;
	border-width: 1px;
	border-color: #ddd;
	border-style: solid;
	background: #dc4600;
	color: #ffffff;
	padding: 4px;
	margin: 4px;
	font-size: 12px;
}

cite {
	font-size: 11px;
	font-style:italic;
}

img.centered {
	display: block; 
	margin-left: auto; 
	margin-right: auto;
}

/* logo */
#logo  {
    margin-top: 40px;
	margin-bottom: 20px;    
}
.faq {
	color: #333;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
}
.faq-text {
	padding: 15px 15px 15px 35px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ddd;
}

.banner {
	font-size: 21px; 
	margin-bottom: 15px; 
}

.admin-links {
	font-size: 14px; 
	margin-bottom: 15px; 
}

/* navigation */
.navigation {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;	
	margin-bottom: 20px;
}

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;
}

nav.primary ul li a {
	display: inline-block;
	line-height: 49px;
	padding: 0 30px;	
	text-transform: uppercase;
	text-decoration: none;	
}

nav.primary ul li a.selected {
	background: #dc4600;
	color: #ffffff;
	cursor: pointer;
}

/* sub menu */
nav.primary ul ul {
	opacity: 0;
	filter: alpha(opacity=0);
	
	white-space: nowrap;
	position: absolute;
	z-index: 999;
	background: #efefef;
	
	height: 0px;
	overflow: hidden;
	
	min-width: 100%;
	
	-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 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

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

nav.primary ul li:hover ul {
	opacity: 10;
	filter: alpha(opacity=100);
	
	height: auto;
	overflow: auto;
}
nav.primary ul ul li {
	float: none;
	display: list-item;
	border-bottom: 1px solid #aaa;
}

nav.primary ul ul li a {
	display: block;
	line-height: 35px;
	text-transform: none;
}

nav.primary ul li:hover > a {
	background: #89cede; 
	color: #ffffff;
}

/* #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) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
	
		nav.primary select {
			display: block;
		}
		
		nav.primary ul {
			display: none;
		}
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}


/* #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; }
*/