/*================================================================
The MAIN stylesheet for the website.

Define SITE-WIDE styles:
  - General Typography
  - Header Content
  - Sidebar Content
  - Forms
  - Tables
  - Footer
  - Sitewide Custom Definitions
  
================================================================*/

@import url("base.css");
@import url("layout.css");
@import url("nav.css");
@import url("forms.css");



/* GENERAL TYPOGRAPHY (Standard HTML tags)
----------------------------------------------------------------*/
html, body{
	font-family:Arial, Helvetica, sans-serif;
	color: black;
	font-size:12px;
}

h1{
	color:#FF7D31;
	margin: 0 0 6px 0;
	padding: 3px 0;
	font-size:175%;
}

h2{
	color: #666666;
	margin: 0 0 6px 0;
	font-size: 150%;
}

.box h2{
	color:#003;
	font-size:120%;
	text-align:center;
	border-bottom:#003 2px solid;
}

h3{
	color: #006;
	margin: 0 0 6px 0;
	font-size: 125%;
}

h4{
	color: #000;
	margin: 0 0 6px 0;
	font-size: 110%;
}

h5{
	color: #000;
	margin: 0 0 6px 0;
	font-size: 100%;
}

p{
	margin: 0 0 6px 0;
}

a:link, a:visited{
	color:#006;
}

a:hover{
	text-decoration:none;
}


/* HEADER CONTENT
----------------------------------------------------------------*/



/* SIDEBAR CONTENT
----------------------------------------------------------------*/



/* TABLES
----------------------------------------------------------------*/
table{
	clear: both;
	width:100%;
}

th{
	text-align:left;
	background:#E5EAFC;
	border-top:#006 1px solid;
	border-bottom:#006 3px solid;
}

td, th{
	padding:3px;
	vertical-align:top;
}

.altRow{
	background:#E5EAFC;
}

.centerTable th, .centerTable td{
	text-align:center;
}

.centerTable .left{
	text-align:left;
}

td.price, th.price{
	text-align:right;
}

th.date, td.date{
	width:90px;
}

/* FOOTER CONTENT
----------------------------------------------------------------*/
#Footer p{
	
}


/* SITE-WIDE CUSTOM STYLES (Your own id's and classes)
----------------------------------------------------------------*/

.errors{
	border:1px solid #FF9900;
	color:#FF9900;
	background:#FFFFCC;
	padding:3px;
	margin:3px 0;
	font-weight:bold;
}

.alert{
	border:1px solid #FF9900;
	color:#FF9900;
	background:#FFFFCC;
	padding:3px;
	margin:3px 0;
	font-weight:bold;
}

.success{
	border:1px solid #00CC00;
	color:#006600;
	background:#99FFCC;
	padding:3px;
	margin:3px 0;
	font-weight:bold;
}

hr{
	border:none;
	border-top: dashed 1px #006;
	height:0px;
}

.center{
	text-align:center;
}

.left{
	text-align:left;
}

.right{
	text-align:right;
}

.floatRight{
	float:right;
	display:block;
	margin:0 0 15px 15px;
}

.floatLeft{
	float:left;
	display:block;
	margin:0 15px 15px 0;
}

a.printPage{
	padding-left:23px;
	float:right;
	background:url(../images/print.gif) no-repeat top left;
	font-weight:bold;
	text-decoration:none;
}

a.button:link, a.button:hover, a.button:visited, a.button:active{
	background:#006;
	padding:1px 3px;
	font-weight:bold;
	text-decoration:none;
	color:#fff;
	white-space:nowrap;
}

