/*
* 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
================================================== */

body{
	margin: 0;
	margin-right: auto;
	margin-left: auto;
	padding: 0px 10px;
	width: 940px;
	font-family: 'Open Sans', 'sans-serif';
}

span{
	font-family: 'Open Sans', 'sans-serif';
}

ul{
	-webkit-padding-start: 0px;
}

.header-band{
	border-top: 5px solid black;
}

.header-band h1{
	font-size: 48px;
	color: #000;
	text-align: center;
}

.header-band a{
	text-decoration: none;
}

.nav-band{
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}

.nav-band ul{
	text-align: center;
}

.nav-band ul li, .dp-nav li{
	list-style: none;
	display: inline;
	padding: 0px 10px;
}

.nav-band ul li a, .dp-nav li a{
	text-decoration: none;
	color: #999;
	font-weight: lighter;
	font-size: 13px;
}

.nav-band ul li a:hover, .dp-nav li a:hover{
	text-transform: uppercase;
}

.nav-band ul li a#active{
	text-transform: uppercase;
	color: #333;
}

.dp-nav{
	margin-left: -10px;
	float: right;
}

.content{
	margin-top: 20px;
}

.page-content{
	width: 720px;
	border-right: 1px solid #E9E9E9;
	padding-right: 30px;
	padding-bottom: 30px;
}

.page-content h4{
	text-transform: uppercase;
	color: #666;
}

.page-content p {
	font-size: 13px;
}

.page-content strong{
	color: #666;
}

.content-img{
	text-align: center;
}

.content#one-third ul li, .content#half ul li{
	display: inline-block;
	list-style: none;
	padding: 0px 8px;
}

.content#one-third ul li#first-child, .content#half ul li#first-child{
	padding-left: 0px;
}

.content#one-third ul li#last-child, .content#half ul li#last-child{
	padding-right: 0px;
}

.wrapper{
	position: relative;
    padding: 0;
    display: block;
}

.wrapper#results{
	width: 720px;
}

.wrapper#full{
	width: 940px;
}

.wrapper#one-third{
	width: 300px;
	height: 300px;
}

.wrapper#half{
	width: 460px;
	height: 300px;
}

.text{
    position: absolute;
    color:#fff;
    font-size: 48px;
    font-weight: bold;
    text-transform: lowercase;
    background-color:rgba(0, 0, 0, 0.8);
    padding-bottom: 2px;
	text-align: center;
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.text#results{
	width: 720px;
	height: 280px;
	padding-top: 200px;
}

.text#full{
	width: 940px;
	height: 175px;
	padding-top: 110px;
}

.text#one-third{
	width: 300px;
	height: 180px;
	padding-top: 118px;
}

.text#half{
	width: 460px;
	padding-top: 100px;
	height: 200px;
}

.text:hover {
    opacity:1;
}

img{
	z-index: 1;
}

.footer{
	border-top: 1px solid #ccc;
	text-align: center;
	font-size: 11px;
}

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

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