@charset "UTF-8";
/** 
 * Screen Styles 
 * 
 * Primary screen styles for Aerostanrew
 * 
 * @project   Aerostanrew
 * @version   1.0
 * @package   assets 
 * @author    Paul Upton
 * @copyright 2010 Paul Upton
 */ 

/* @group Reset */
/**
 * Reset based on Eric Meyer's "Resetting Again"
 *
 * @section reset
 * @see     http://meyerweb.com/eric/thoughts/2008/01/15/resetting-again/
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	line-height:1;
}
ul, ol, ul li, ol li { list-style:none outside; }
/* @end */
 
 
/* @group Wrap */
/**
 * Defines styles for the main content areas (header, footer, content area, aside)
 *
 * @section wrap
 */

body {
	background:#00384C url(../images/bg_html.png) no-repeat left top;
	color:#a9c9d5;
	min-width:990px;
	font-family:Arial, Helvetica, sans-serif;
	text-align:center;
	font-size:12px;
}

a { color:inherit;text-decoration:inherit; }

div#container {
	width:600px;
	margin:0 auto;
	text-align:left;
}

div#header {
	float:left;
	width:600px;
	margin:30px auto;
	text-align:left;
	height:160px;
	background:#FFFFFF;
}

div#navigation {
	float:left;
	width:600px;
	margin:0 auto;
	text-align:left;
	border:1px solid #145774;
	height:80px;
}

div#navigation #nav { 
	float:left;
	font-size:12px;
}

div#navigation #nav li {
	display:block;
	float:left; 
	font:bold 1.1em Arial, Helvetica, sans-serif; 
}

div#navigation #nav li.current { 
	background:#023d53 url(../images/bg_nav_on.png) no-repeat left bottom;
	color:#fff;
}

div#navigation #nav li.current a {
	color:#fff;
	text-shadow: #001d2b 0px 1px 2px
}

div#navigation #nav li.current span { 
	display:block;
	background:transparent url(../images/bg_nav_on.png) no-repeat right bottom;
	margin-left:2px;
}

div#navigation #nav li a { 
	display:block;
	height:80px;
	line-height:80px;
	padding:0 15.5px;
	outline:none;
}

div#navigation #nav li.current a, div#navigation #nav li.current a:hover { 
	background:transparent url(../images/hover_nav_green.png) no-repeat center bottom;
	padding:0 14px 0 12px; 
}

div#navigation #nav li a:hover { 
	background:transparent url(../images/hover_nav.png) no-repeat center bottom;
	color:#fff; 
}

div#content {
	float:left;
	width:600px;
	margin:0 auto;
	text-align:left;
	background:#FFF;
	border-right:2px solid #fff;
	padding:10px 0 0 0;
	margin-bottom:50px;
}

div#content a:link {
	color: #0000FF;
	text-decoration: none;
}

div#content a:visited {
	text-decoration: none;
}

div#content a:hover {
	text-decoration: underline;
}

div#content a:active {
	text-decoration: none;
}

div#content p{
	color:#000;
	font-size:13px;
	line-height:120%;
	margin-bottom:12px;
}

div#content p.none{
	color:#000;
	font-size:13px;
	margin-bottom:0px;
}

div#content #textarea {
	float:left;
	width:580px;
	margin:0 10px 10px 10px;
}

div#content #textarea-bottom {
	float:left;
	width:580px;
	margin:0 10px 10px 10px;
}

div#content #image {
	width:180px;
	float:left;
}

div#content #text {
	width:390px;
	float:right;
}

div#footer {
	float:left;
	width:100%;
	background:#012736;
	height: 110px;
}

div#footer #holder {
	width:600px;
	margin: 0 auto;
}

div#footer #address {
	width:600px;
	float:right;
	line-height:3.0em;
}

div#footer #address a{
	color:#fff;
}

div#footer #address a:hover{
	text-decoration:underline;
}

/***** Slideshow *****/
div#header #slideshow {
    position:relative;
	width:600px;
    height:160px;
}

div#header #slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
}

div#header #slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

div#header #slideshow IMG.last-active {
    z-index:9;
}