@import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic);

/* CSS Document */

/* css reset */

body, h1, h2, h3, h4, h5, h6, div {
	margin: 0;
	padding: 0;
}


/* elements */

body {
	/* background-color: green;
	background-image: url(../images/background.jpg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-attachment: fixed; */
	
	background: green url(../images/background.jpg) fixed;
	background-size: cover;
	
	/* font-family: 'Noto Sans', sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 21px; */
	
	font: normal normal 16px/30px 'Noto Sans', sans-serif;
	}
	
h2 {
 font-size: 30px;
 color: rgb(51,51,51);
 }

iframe {
    background: white;
    border: 1px solid gray;
}

#ad {
    width: 300px;
    height: 250px;
}

a:link, a:visited {
	color: rgb(250,174,32);
}

a:hover {
	color: orange;
	}
	
a:active {
	color: blue;
	}

table {
	border: 2px solid pink;
	}
	
td { 
	background-color: yellow;
	}


/* classes */

.navbar {
	background-color: green;
	padding: 10px;
}

.navbar a:link {
	color: white;
	}

.carphoto {
	border: 1px solid gray;
	padding: 5px;
	background-color: white;
}

.highlight {
	background-color: rgb(0,255,0);
	color: gray;
	}

.poster {
	width: 25%;
	float: right;
	margin: 15px 0 15px 25px; /* trbl */
}

/* #ids */

#container {
	width: 1000px;
	margin: 0 auto; /* CSS centering = left-right auto determined, top bottom 0 */
	background-color: transparent;
}

#header {
	padding: 20px;
	}

#nav {
	background-color: rgb(227,168,20);
	/* padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px; */
	
	padding: 10px 20px 10px 20px; /* top right bottom left = TRBL */
	padding: 10px 20px 10px; /* top left-right bottom = TLRB */
	padding: 10px 20px; /* Top-Bottom Left-Right = TBLR */
	
	border-top: 1px solid black;
	border-bottom: 2px solid gray;
	color: white;
	font-size: 24px;
	}
	
#nav a:link, #nav a:visited {
	color: black;
	text-decoration: none;
	}
	
#nav a:hover {
	color: yellow;
	text-decoration: underline;
}

#nav a:active {
	color: green;
	}
	
#article {
	padding: 20px;
	background-color: rgb(255,255,255); /* ie 8 */
	background-color: rgba(255,255,255,0.7);
	}
	
#article a:link {
				 color: rgb(94,45,7);
				 }
				 
#article a:active {
				 color: rgb(94,45,7);
				 }
	
#article a:visited {
				 color: rgb(250,174,32);
				 } 
	
#section {
	width: 66%;
	float: left;
	}
	
#aside {
	width: 30%;
	float: right;
	background-color: green;
	border: 1px solid white;
	}
	
#aside h2 {
	font-size: 24px;
	border-bottom: 1px dotted white;
	margin-bottom: 10px;
	color: white;
	}

#aside fieldset {
    border: 1px solid gray;
    background-color: rgb(255,255,204);
    margin-bottom: 5px;
}

#aside legend {
    background-color: orange;
    color: white;
    padding: 0 10px; /* top-bottom left-right */
}

#aside input, #aside textarea {
    font-size: 18px;
    padding: 5px;
    color: gray;
    border-radius: 5px;
    border: 1px solid orange;
    background: #f0f9ff; /* Old browsers */
background: -moz-linear-gradient(top,  #f0f9ff 0%, #cbebff 47%, #a1dbff 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f9ff), color-stop(47%,#cbebff), color-stop(100%,#a1dbff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* IE10+ */
background: linear-gradient(to bottom,  #f0f9ff 0%,#cbebff 47%,#a1dbff 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f9ff', endColorstr='#a1dbff',GradientType=0 ); /* IE6-9 */
}

#aside textarea {
    width: 95%;
    height: 250px;
}

#aside input[type=text] {
    margin: 0;
    width: 95%;
}

#aside input[type=text]:focus {
    background: white;
    border: 2px solid green;
}

#aside label {
    font-size: 12px;
    line-height: 16px;
    color: rgb(50,50,50);
}

#aside p {
    margin: 0;
}

#aside h3 {
    font-size: 18px;
    color: rgb(50,50,50);
}

#aside input[type=submit] {
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 25px;
    margin-left: 15px;
    background: #feccb1; /* Old browsers */
background: -moz-linear-gradient(top,  #feccb1 0%, #f17432 50%, #ea5507 51%, #fb955e 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#feccb1), color-stop(50%,#f17432), color-stop(51%,#ea5507), color-stop(100%,#fb955e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #feccb1 0%,#f17432 50%,#ea5507 51%,#fb955e 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #feccb1 0%,#f17432 50%,#ea5507 51%,#fb955e 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #feccb1 0%,#f17432 50%,#ea5507 51%,#fb955e 100%); /* IE10+ */
background: linear-gradient(to bottom,  #feccb1 0%,#f17432 50%,#ea5507 51%,#fb955e 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feccb1', endColorstr='#fb955e',GradientType=0 ); /* IE6-9 */
}

#aside input[type=submit]:hover {
    color: rgb(255,255,204);
    background: #959595; /* Old browsers */
background: -moz-linear-gradient(top,  #959595 0%, #0d0d0d 46%, #010101 50%, #0a0a0a 53%, #4e4e4e 76%, #383838 87%, #1b1b1b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#959595), color-stop(46%,#0d0d0d), color-stop(50%,#010101), color-stop(53%,#0a0a0a), color-stop(76%,#4e4e4e), color-stop(87%,#383838), color-stop(100%,#1b1b1b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #959595 0%,#0d0d0d 46%,#010101 50%,#0a0a0a 53%,#4e4e4e 76%,#383838 87%,#1b1b1b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #959595 0%,#0d0d0d 46%,#010101 50%,#0a0a0a 53%,#4e4e4e 76%,#383838 87%,#1b1b1b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #959595 0%,#0d0d0d 46%,#010101 50%,#0a0a0a 53%,#4e4e4e 76%,#383838 87%,#1b1b1b 100%); /* IE10+ */
background: linear-gradient(to bottom,  #959595 0%,#0d0d0d 46%,#010101 50%,#0a0a0a 53%,#4e4e4e 76%,#383838 87%,#1b1b1b 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#959595', endColorstr='#1b1b1b',GradientType=0 ); /* IE6-9 */

}

#aside input[type=submit]:active {
    background: blue;
    color: white;
}

#footer {
	clear: both; /* fills in background between nav and footer */
	padding: 20px;
	background: rgb(94,45,7);
	color: white;
	}

#footer link, a:visited {
	color: white;
	}	





