/*================================================================
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");
@import url("vanilla.css");


/* GENERAL TYPOGRAPHY (Standard HTML tags)
----------------------------------------------------------------*/
html, body {
	font-family: verdana, helvetica, sans-serif;
	color: black;
	font-size: 11px;
}

h1 {
	color:#0864A4;
	margin: 0 0 8px 0;
	padding: 3px 0;
	font-size: 16px;
	border-bottom:1px solid #ccc;
}

.heading {
	color:#0864A4;
	margin: 0 0 8px 0;
	padding: 3px 0;
	font-size: 16px;
	font-weight:bold;
}

h2 {
	margin:0 0 6px 0;
	padding:0 0 3px 0;
	font-size:12px;
	color:#999999;
}

h3{

}

h4{
	color: #000;
	margin: 0 0 6px 0;
	font-size: 16px;
}

p {
	margin: 0 0 6px 0;
}

a:link, a:visited {
	color:#0864A4;
	text-decoration:none;
}

a:hover {
	color:#0864A4;
}


/* HEADER CONTENT
----------------------------------------------------------------*/
#Header h1 {
	margin: 0 20px;
	padding: 20px 0; 
	color: white;
	font-weight: normal;
	font-size: 24px;
	border-bottom:none;
}
#Header h1 em {
	color: yellow;
	font-family: georgia;
	font-weight: bold;
	font-size: 28px;
}

#Logo h1{
	border-bottom:none;
}


/* SIDEBAR CONTENT
----------------------------------------------------------------*/
#Sidebar h2 {
	color: #222;
	margin-top: 0;
}
#Sidebar p {
	font-size: small;
}

/* FORMS
----------------------------------------------------------------*/

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;
}

th{
	font-weight:bold;
}


/* FOOTER CONTENT
----------------------------------------------------------------*/
#Footer p {
	text-align: right;
	color: #555;
	font-size: 13px;
	padding: 10px 20px;
}


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

hr{
	border:none;
	border-top: dashed 1px #ccc;
	height:0px;
}

.center{
	text-align:center;
}

.left{
	text-align:left;
}

.right{
	text-align:right;
}

#Column2 h1{
	margin:0 0 6px 0;
	padding:0 0 3px 0;
	font-size:12px;
	color:#999999;
	border-bottom:#999 solid 1px;
}

.imgright{
	display:block;
	float:right;
	margin:0 0 10px 10px;
	padding-bottom:10px;
	text-align:center;
	font-style:italic;
	width:250px;
}

.imgleft{
	display:block;
	float:left;
	margin:0 10px 10x 0;
	padding-bottom:10px;
	text-align:center;
	font-style:italic;
	width:250px;
}

.imgright img, .imgleft img{
	padding-bottom:10px;
	display:block;
}