
/*-----Prevents iPhone from resizing in landscape mode -----*/
html {-webkit-text-size-adjust: none; }

/*-----BODY -----*/
body{
	font-size: 16px;
	font-family: 'Freckle Face', cursive;
		
}
#wrapper {
	background-color: #666;
}

/*-----CONTAINER -----*/
#container {
	background-image: url(../images/dark_Tire.png);	
	min-width: 320px;
	max-width: 1140px;
		
}

/*-----HEADER -----*/
header.head {
	background-color: #666;
}
h1 {
	float: left;
	color: rgba(250,250,250,.6);
	font-size: 2em;	
	margin: .5em 2% 0 2%;
	
}
header img {
	float: left;
	max-width: 30%;
	margin: .5em auto;
}

/*-----NAVigation -----*/
nav {
	background-color: #900;
	padding: .5em 0;
	clear: both;
}
nav ul li {
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.34) 0%, rgba(83,83,83,1) 99%, rgba(84,84,84,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.34)), color-stop(99%,rgba(83,83,83,1)), color-stop(100%,rgba(84,84,84,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.34) 0%,rgba(83,83,83,1) 99%,rgba(84,84,84,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(0,0,0,0.34) 0%,rgba(83,83,83,1) 99%,rgba(84,84,84,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(0,0,0,0.34) 0%,rgba(83,83,83,1) 99%,rgba(84,84,84,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(0,0,0,0.34) 0%,rgba(83,83,83,1) 99%,rgba(84,84,84,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57000000', endColorstr='#545454',GradientType=0 ); /* IE6-9 */
	background-color: rgba(83,83,83,.8);
	border: 1px solid #000;
	border-radius: 1em;
	padding: .5em 0;
	margin: .5em 2%;
	box-shadow: 2px 2px 4px rgba(,0,0,0.3);
	-webkit-box-shadow: inset 1px 1px 1px #FFF; 
	-moz-box-shadow: inset 1px 1px 1px #FFF; 
	box-shadow: inset 1px 1px 1px #FFF;	
	list-style: none;
}


nav ul li a {
	display: block;
	text-align: center;
	color: rgba(250,250,250,.5);
	text-decoration: none;
	-webkit-transition: all 0.9s ease;	
	-moz-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

nav ul li a:hover {
	color: rgba(250,250,250,1);		
}
body#gallery li#gallery a, body#carShow li#carShow a {
	color: rgba(250,250,250,1);	
}


/*-----CONTENT -----*/
#content{	}
#content h2 {
	color: rgba(250,250,250,.8);
	font-size: 1.5em;
	padding: .5em 0 .2em 2%;
}
#content h2.border {
	border-bottom: 2px solid #900;
	margin-bottom: .5em;	
}
#content img {
	width: 96%;	
	margin: .5em 2%;
	border: 1px solid #666;
}

p {
	text-align: center;
	color: rgba(250,250,250,.8);
	margin-left: 2%;	
}

/*------ FORM STUFF -------*/
form#conference {
	margin: 1em 2%;
	
}

fieldset {
	background-color: #666;
	border-radius: 1em;
	margin: 2% 0;
	border: #900 solid 1px;
	max-width: 600px;
	
}

legend {
	color: #900;
	margin-left: 5%;
	padding: .5em;
	border: #900 solid 1px;
	background-color: #CCC;
	border-radius: .6em;
}

/*this is the user instructions for each input, name, address, email etc. */
label {
	display:block; /* forces a hard return and allows margin to be assigned*/
	margin: .5em;
	
}

label span {
	display: block;
	font-size: .8em;
	font-family:"Lucida Console", Monaco, monospace;
	color: #fff;
	padding-top: .9em;
	padding-bottom: .2em;
	margin-left: 5%;
}

/*where the user enters their information*/
label input {
		background-color: #CCC;
		color: #000;
		background-image:url(../images/formSprites.png);
		background-position:4px -3px; /*shows the blue play*/
		background-repeat: no-repeat;
		padding:.3em .3em .3em 2em;
		border: solid 1px #b0aaa0;
		border-radius: 1em;
		font-size: .9em;
		width: 90%;
	
		max-width: 500px;
}

/*The input that currently has the focus*/
input:focus {
	box-shadow: 0px 0px 4px #b4ba6c;	
}

/*identifies all required fields*/
input:required {
	background-position: 4px -35px; /*shows the red x*/
}

/*Validation*/
input:focus:invalid {
  background-position: 4px -67px; /*shows the red thumbs down*/
}

/*Valid*/
input:required:valid {
  background-color: #fff;
  background-position: 4px -99px; /*shows the green thumbs up*/
}

.submitBtn {
	display: block;
	border: solid 1px #111;
	border-radius: 7px;
	margin: 2em auto;
	width: 40%;
	font-size: 1em;
	padding: .6em;
	background: #900; /* Old browsers */
	box-shadow: 0 0 10px #666;
	color: rgba(250,250,250,.5);
	-webkit-transition: all 0.9s ease;	
	-moz-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}
.submitBtn.active {
	color: rgba(250,250,250,1);		
}
.submitBtn:hover {
	color: rgba(250,250,250,1);	
	
}


/*-----IMAGES -----*/
article {
	margin: .5em 2%;
	background-color: rgba(250,250,250,.1);	
	border-radius: .5em;
	box-shadow: 0 0 15px #999 inset;	
}
article h2 {
	text-align: center;
	margin: 0 .5em;	
	
}
#content ul.carpics {
	
}
#content ul.carpics li {
	float: left;
	padding: 2%;
	width: 21%;	
}
#content ul.carpics li a img {
	width: 100%;
	border: 1px solid #777;	
}


/*----- SOCIAL LINKS -----*/
#content p.icons a {
	float: right;
	margin-right: 1em;
	opacity: 0.25;	
	border: none;
}
#content p.icons a:hover {
	-webkit-transition: opacity 0.4s ease-in-out; 
	-moz-transition: opacity 0.4s ease-in-out; 
	-o-transition: opacity 0.4s ease-in-out; 
	transition: opacity 0.4s ease-in-out;
	opacity: 0.9;	
}

/*----- FOOTER -----*/
footer {
	clear: both;
	background-color: #666;
	color: rgba(250,250,250,.8);
	padding: .5em 0;
	font-size: 1em;
	text-align: center;
}

/*OTHER STUFF*/
div.keepOpen {clear: both;}
