/*============================================================================
Project Name Screen Stylesheet

version:	1.0
date:		today
author:		Ian Obermiller
email:		ian320@gmail.com
website		domain.com
colors:		#fcfcfc off-white
=============================================================================*/
/*=============================================================================
==	Standard
=============================================================================*/
/*--------------------------------------------------------
--	Standard - Neutralize/Fix styling
--------------------------------------------------------*/
/* Neutralize styling: 
   Elements we want to clean out entirely: */
html, body, form, fieldset {
	margin: 0;
	padding: 0;
	font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
}

/* Neutralize styling: 
   Elements with a vertical margin: */
h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	margin: 0 0 1em 0;
	padding: 0;
}

/* Apply left margin:
   Only to the few elements that need it: */
li, dd, blockquote {
	margin-left: 2em;
}

/* Miscellaneous conveniences: */
form label {
	cursor: pointer;
}
fieldset {
	border: none;
}
input, select, textarea {
	font-size: 100%;
	font-family: inherit;
}

/*--------------------------------------------------------
--	Standard
--------------------------------------------------------*/
.clear {clear:both;}
	br.clear {line-height:1px;height:0;}
.right {float:right;}
.left {float:left;}

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden; 
}
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/*=============================================================================
==	Body & Container
=============================================================================*/
body, html {
	
}
body {
	color:#333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#container {
	background:#fff url(../images/background.png) center top no-repeat;
	margin: 0 auto;
	padding:0 130px 0 130px;
	text-align:center;
	width:740px;
}

/*=============================================================================
==	Header
=============================================================================*/
header
{
	text-align:left;
}
	header a
	{
		display:block;
		width:100%;
		height:200px;
	}
	
/*=============================================================================
==	Content
=============================================================================*/
#content {
	padding-right:100px;
	text-align:left;
}
	#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {
		color:#333;
		margin:0 0 18px 0;
		line-height:18px;
	}
	#content h1 {
		font-size: 24px; 
		line-height: 36px;
	}
	#content h2 { 
		font-size: 24px; 
		line-height: 36px;
	}
	#content h3 { 
		font-size: 18px; 
	}

table
{
	border:solid 1px #ccc;
	border-width:0 0 1px 1px;
	margin-bottom:18px;
}

th
{
	background:#eee;
}

td, th
{
	border:solid 1px #ccc;
	border-width:1px 1px 0 0;
	padding:5px;
}

/*=============================================================================
==	Navigation
=============================================================================*/
nav {
	border:solid 1px rgb(157, 238, 0);
	border-width:0 0 3px 3px;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-radius-bottomleft: 30px;
	border-bottom-left-radius: 30px;
	float:right;
	font-size:1.2em;
	font-weight:bold;
	margin:-40px 0 20px 20px;
	padding-left:20px;
	text-align:left;
	width:100px;
}
	nav ul {
		margin:0;
		padding:0;
		overflow:hidden;
	}
		nav ul li {
			list-style:none;
			margin:0 0 18px 0;
			padding:0;
		}
			nav ul li a, nav ul li span {
				border-bottom:dotted 1px #333;
				color:#333;
				cursor:pointer;
				text-decoration:none;
			}
			nav ul li a:hover {

			}
			nav ul li ul {
				margin-left:1em;
			}
				nav ul li ul {
					
				}
				nav ul li:hover ul {
					
				}
/*=============================================================================
==	Footer
=============================================================================*/
footer {
	background:#fff url(../images/footer.png) center top no-repeat;
	clear:both;
	display:block;
	height:100px;
	margin:0 auto;
	padding-top:20px;
	text-align:center;
}

#countdown
{
	position:absolute;
	top:5px;
	left:0;
	text-align:center;
	width:100%;
}
/*=============================================================================
==	Forms
=============================================================================*/
form ol
{
	list-style:none;
}

form ol li
{
	margin:0 0 10px 0;
}

form ol li.radioContainer label
{
	float:left;
}

legend
{
	font-size: 18px; 
	font-weight: bold;
	line-height:18px;
	padding:0 0 18px 0;
}

label
{
	display:block;
	float:left;
	padding-top:2px;
	width:100px;
}

select, input[type="text"]
{
	padding:2px;
	width:200px;
}

#buttons input
{
	font-size:1.5em;
	height:50px;
	width:150px;
	margin-left:100px;
}

div.post
{
	border-top:solid 1px #999;
	padding-top:1em;
}

div.photo
{
	border:solid 1px #ccc;
	margin:1em auto;
	width:420px;
}
	div.photo img
	{
		border:none;
		margin:10px;
		width:400px;
	}
	div.photo span
	{
		background:#eee;
		border-top:solid 1px #ccc;
		display:block;
		padding:10px;
		text-align:center;
	}

div.small-photo
{
	display:inline-block;
	margin:10px;
	width:270px;
}
	div.small-photo img
	{
		width:250px;
	}