/*	
Author: Bradley Culbertson
Date: 10.21.2014
*/

@charset "utf-8";

#banner {
    width: 250px;
    height: 1455px;
    margin-top: -10px;
    background-color: #065306;
    float: left;
}

main {
	margin: 0 auto;
	width: 1200px;
}

body {
  	font-family: Arial, sans-serif;
  	background-color: white;
	margin-top: 50px;
}

header {
	color: #2a2929;
	padding: 5px;
	margin: 5px;
	height: 125px;
    width: 700px;
	border-bottom: 2.5px solid #990066;
    float: left;
}
nav {
    background-color: #ff8830;
    height: 45px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    color: #6c6969;
    text-align: left;
	font-weight:100;
}
nav ul li {
    display: inline-block;
    padding-right: 40px;
}
#banner img {
	padding: 35px;
    text-align: center;
}
header h1 {
	font-family: Arial, sans-serif;
	text-align: right;
	line-height: 1px;
	padding: 2px;
}
h2, h3, h4 {
	color: #676565;
    text-align: right;
}

select	{
	font-family: Verdana, sans-serif;
	font-size: 14px;
}
fieldset {
	padding: 1em;
    margin: 10px;
	background-color: #eae2e2;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    width: 660px;
    float: left;
}

select option:hover {
    color: #aaf2ad;
	background: #005500;
}
input[type=submit], input[type=reset] {
	background-color: #FFFFFF;
	font-weight: bold;
	width: 12em;
	margin: .25em 0 0 1em;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
input[type=radio]	{
    width: 2em;
    padding: 
}
label {
    margin-left: -10px;
}
textarea {
	width: 90%;
	height: 200px;
	margin: 5px;
    border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

input, select {
	width: 210px;
	margin-right: 8px;
}

input, textarea, select {
	padding: .5em .75em;
	box-shadow: inset 0 .2em .3em rgba(0,250,0,.2);
	-webkit-box-shadow: inset 0 .2em .3em rgba(0,250,0,.2);
	-moz-box-shadow: inset 0 .2em .3em rgba(0,250,0,.2);
    border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
input[type=text]:focus, input[type=email]:focus, select:focus, textarea:focus {
	background: #FFFFFF;
	border-color: #04b904;
	outline: none;
	box-shadow: inset 0 .2em .3em rgba(0,0,0,.1);
	-webkit-box-shadow: inset 0 .2em .3em rgba(0,0,0,.1);
	-moz-box-shadow: inset 0 .2em .3em rgba(0,0,0,.1);
    border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
a {
	color: #0b0b0b;
	text-decoration: none;
}
a:hover {
	color: #81d7fc;
	text-decoration: underline;
}
#actions {
      margin-bottom: 50px;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #990066;
    height: 15px;
    width: 100%;
    text-align: center;
    padding: 10px;
}


