/*================================================================
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("nav.css");


/* GENERAL TYPOGRAPHY (Standard HTML tags)
----------------------------------------------------------------*/
html, body {
  font-family: arial, helvetica, sans-serif;
  color: #666640;
  font-size: 14px;
}

h1 {
	font-size: 20px;
	color:#141C04;
	font-variant: small-caps;
	font-weight:normal;
}

h2 {
  color: #999;
  margin: 26px 0 6px 0;
  font-size: 18px;

}

h3 {
	font-size: 22px;
	color:#80210E;
	font-variant: small-caps;
	font-weight:normal;
	padding: 10px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear:both;
}

h4 {
	font-size: 22px;
	color:#80210E;
	font-variant: small-caps;
	font-weight:normal;
	padding: 10px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear:both;
	text-align:center;
}

p {
  margin: 10px 5px 0px 0px;
  font-size: 14px;
  text-indent: 20px;
  text-align:justify;
}

a:link, a:visited {
  color: blue;
}

ul {
  margin: 20px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 14px;
  text-indent: 0px;
  text-align:left;
  text-indent: 0px;
  list-style-type: none;
}

li {
  
  margin: 0px 10px 15px 10px;
  padding: 0px 0px 0px 0px;
  text-indent: 0px;
  font-size: 14px;
  text-indent: 0px;
  text-align:left;
  list-style-type: square;
  list-style-position: inside;
}




.subHeader {
	font-size: 17px;
	color:#2B3808;
	font-style: italic;
	font-variant: small-caps;
}

.rightContent {
	font-size: 14px;
	color:#949E52;
	padding: 0px 5px 0px 5px;
}

.rightBarImg {
margin: 0px 0px 5px 17px;

}

.contentImage {
margin: 10px;
}

.specialImage {
margin: 25px;
}

.dottedLine {
margin: 0px 0px 15px 8px;

}

.buttons {
  margin: 0px 8px 0px 8px;
  padding: 0px 0px 0px 0px; 

}


hr {
border: 0;
color: #80210E;
background-color: #80210E;
text-align: center;
}


/* rightBar CONTENT
----------------------------------------------------------------*/
#rightBar h1 {
  color:#80210E;
  margin: 0px 0px 10px 5px;
  padding: 0px 0px 0px 0px; 
  font-weight: normal;
  font-size: 18px;
  font-weight:bold;
  text-align:left;
}

#rightBar a:link, a:visited {
  color: #CFCA4E;
  text-decoration: none;
}




/* 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)
----------------------------------------------------------------*/
p.error {
  color: red;
}


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


