/*================================================================
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");


/* GENERAL TYPOGRAPHY (Standard HTML tags)
----------------------------------------------------------------*/
html, body {
  font-family: verdana, helvetica, sans-serif;
  color: #333333;
  line-height:18px;
}

h1 {
  color: #003399;
  margin: 26px 0 16px 0;
  padding: 3px 0;
  font-size: 20px;
  border-bottom: 1px dotted #666;
}

h2 {
  font-family: arial, verdana, helvetica, sans-serif;
  color: #003399;
  margin: 26px 0 6px 0;
  font-size: 16px;
  font-weight:bold;
}

h3 {
  font-family: arial, verdana, helvetica, sans-serif;
  color: #003399;
  margin: 26px 0 6px 0;
  font-size: 14px;
  font-weight:bold;
  border-bottom:1px dotted #CCCCCC;
}

p {
  margin: 10px 0 6px 0;
  font-size: small;
}

a {
  color: #ff6600;
  text-decoration:underline;
}

a:hover {
  text-decoration:none;
}

li {
  font-size: 11px;
}


/* HEADER CONTENT
----------------------------------------------------------------*/
#header h1 { 
  color: #CCCCCC;
  font-weight:normal;
  margin: 3px 0 0 10px;
  font-size: 11px;
  border-bottom:none;
}

#sitemap {
	width:200px;
	padding:0;
	margin:10px 0 0 0;
	color:#999999;
	float:right;
	font-size:11px;
}
#sitemap a { color:#999999; text-decoration:none; }
#sitemap a:hover { color:#999999; text-decoration:underline; }


/* SIDEBAR CONTENT
----------------------------------------------------------------*/
#sidebar h2 {
  color: #333333;
  margin-top: 0;
  font-size:13px;
}

#sidebar p {
  font-size: 11px;
}

#sidebar h2 {	
	border-bottom:1px dotted #CCCCCC;
}

/* TESTIMONIAL CONTENT
----------------------------------------------------------------*/
#testimonials h3 {
  color: #333333;
  margin-top: 0;
  font-size:13px;
}

#testimonials p {
  font-size: 11px;
  line-height:14px;
}

.testimonialBox {
	background-color: #F8F8F8;
	border-bottom:1px dotted #CCCCCC;
	margin-bottom:10px;
	padding:4px 14px 4px 14px;
}

/* FORMS
----------------------------------------------------------------*/
fieldset {
  border: 1px solid #AAA;
}

fieldset p {
  margin: 4px 0;
}

legend {
  color: #999;
  font-weight: bold;
  font-size: 18px;
}

label {
  float: left;
  width: 160px;
  text-align: right;
  font-size: medium;
  margin-right: 14px;
}

input.text {
  width: 290px;
} 

input.textShort {
  width: 80px;
}

input.submit {
  float: right;
}


/* TABLES
----------------------------------------------------------------*/
table {
  clear: both;
  border-collapse: collapse;
  text-align: left;
}
td {
  padding: 2px 3px;
  font-size: small;
}


/* ORDER BOXES
----------------------------------------------------------------*/
.hdr {
	background-color:#333333;
	margin:2px;
	padding:6px;
	font-size:14px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	text-align:center;
	width:220px;
	color:#FFFFFF;
}





/* FOOTER CONTENT
----------------------------------------------------------------*/
#footer p {
  text-align: right;
  color: #999;
  font-size: 10px;
  line-height:12px;
}

#footer a {
  color: #999;
  text-decoration:none;
}

#footer a:hover {
  color: #999;
  text-decoration:underline;
}


/* SITE-WIDE CUSTOM STYLES (Your own id's and classes)
----------------------------------------------------------------*/
p.error {
  color: red;
}