/*
	Visual styling for the website.
	Author: Patrick Chenoweth (http://patrickchenoweth.com)
	
	Color Scheme
	- dark blue: #004369
	- light blue: #006C9D
	- green: #96C33E
	- orange: #E48827
	
*/

/* base html elements */
	body {
		background: #004369 url(../img/bg.gif);
		font-family:Verdana, Arial, Helvetica, sans-serif;
	}
	a:link {color:#00c;}
	a:visited {color:#363;}
	a:hover,
	a:active {color:#c90;}
	p { 
		font-size:1.1em; 
		line-height:1.5em; 
		margin:0 0 1em 0; 
		text-align:justify;
		text-indent:2em;
	}
	input[type=text] {
		border:1px solid #999;
		margin:3px 0;
		padding:2px;
		-moz-border-radius:3px;
		-webkit-border-radius:3px;
		border-radius:3px;
	}
	h1, h2, h3, h4, h5 { margin-bottom:5px; }
	address { margin-bottom:0; }
/* end base html elements */

/* container */
	div#container {
		background-color:#004369;
		overflow:hidden;
		-moz-box-shadow:0 0 20px #000;
		-webkit-box-shadow:0 0 20px #000;
		box-shadow:0 0 20px #000;
	}
/* end container */

/* header */
	header#header {
		background:url(../img/header.png) no-repeat;
		height:250px;
		margin:0;
		position:relative;
	}
	header#header h1 {
		text-indent:-99999px;
	}
	header#header #orderNow {
		position:absolute;
		right:-1px;
		top:-1px;
	}
		header#header #orderNow a {
			background:url(../img/orderNow.png) top left no-repeat;
			display:block;
			height:120px;
			text-indent:-999999px;
			width:120px;
		}
		header#header #orderNow a:hover {
			background:url(../img/orderNow.png) bottom left no-repeat;
			display:block;
			height:120px;
			text-indent:-999999px;
			width:120px;
		}
		
		#twitterLink {
			display:block;
			background:url(../img/twitter.png) top left no-repeat;
			bottom:0;
			height:30px;
			position:absolute;
			right:10px;
			text-indent:-99999px;
			width:110px;
		}
/* end header */

/* featured */
	#featured { 
		background:#fff; 
		border-bottom:1px solid #004369;
		height:5em;
		line-height:2em;
		margin-bottom:10px;
		overflow:hidden;
		height:85px;
		
	}
	#featured li {
		display:none;
		list-style-type:none;
		margin:0;
		font-size:16px;
	}
	#featured li a:link,
	#featured li a:visited{
		color:#000;
		display:block;
		text-decoration:none;
	}
	#featured li a:hover,
	#featured li a:active {color:#036;}
/* end featured */

/* main navigation */
	nav#mainNav { overflow:hidden; }
	nav#mainNav ul { 
		list-style-type:none; 
		margin:0; 
		overflow:hidden; 
		padding:0; 
	}
	nav#mainNav li { 
		list-style-type:none; 
		margin:0; 
		padding:0; 
	}
	nav#mainNav a { 
		background:#006C9D url(../img/gloss.png) top repeat-x;
		color:#fff;
		display:block;
		line-height:25px;
		padding-left:5px;
		text-align:left;
		text-decoration:none; 
	}
	nav#mainNav a:hover { 
		background:#E48827 url(../img/glossMore.png) top repeat-x;
		color:#fff;
	}
	nav#mainNav a.current {
		background:#96C33E url(../img/glossMore.png) top repeat-x;
		color:#fff;
	}
/* end main navigation */

/* content wrapper */
	div#contentWrapper {
		background-color:#fff;
		overflow:hidden;
		padding:10px 0;
	}
/* end content wrapper */

/* sidebar */
	aside#sidebar { }
	aside#sidebar h3 {
		margin:10px 0 5px 0;
	}
	aside#sidebar .grid_3 input[type=text] { width:213px; /* 220 - 2 - 6 = 212 */ }
	aside#sidebar label { font-weight:bold;line-height:28px; }
	
	aside#sidebar div#newsUpdates ul,
	aside#sidebar div#newsUpdates li {
		list-style-type:none;
		margin:0 0 10px 0;
	}
/* end sidebar */

/* main content */
	section#mainContent { }
	.continue {	text-align:right; }
	.listTable {
		text-align:center;
		list-style-type:none;
		margin:0 auto;
		overflow:hidden;
		width:480px;
	}
		.listTable li {
			display:block;
			float:left;
			margin:5px;
			width:110px;
		}
		.listTable li img {
			border:1px solid #666;
		}
/* end main content */

/* footer */
	footer#footer {
		color:#eee;
		margin-top:10px;
	}
	footer#footer #copyright {
		clear:both;
		font-size:10px;
		margin-top:10px;
		text-align:center;
	}
	footer#footer #disclaimer {
		font-size:10px;
		font-style:italic;
		text-align:center;
	}
/* end footer */

/* footer navigation */
	nav#footerNav {margin-bottom:10px;}
	nav#footerNav ul {
		margin:0;
		text-align:center;
	}
	nav#footerNav li {
		display:inline;
		list-style-type:none;
		margin:0;
		padding:0 5px;
	}
	nav#footerNav a:link {color:#fff;}
	nav#footerNav a:visited {color:#eee;}
	nav#footerNav a:hover,
	nav#footerNav a:active {color:#fec;}
/* end footer navigation */

/* alignment and floats */
	.alignLeft {text-align:left;}
	.alignRight {text-align:right;}
	.alignCenter {text-align:center;}
	.floatLeft {float:left; margin:0 5px 5px 0;}
	.floatRight {float:right; margin: 0 0 5px 5px;}
/* end alignment and floats */