/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 
/** Resets core set of elements so they appear consistent across browsers. Without this rule, content would appear in different places in different browsers. Resetting these values to 0 allows the elements to be initially rendered identically. */
html, body, div, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
}
body{
	font-family: Optima, Helvetica, Arial, sans-serif;
}
a:link, a:visited, a:hover {
	text-decoration: none;
	color: #0053a0;
}
/* overrides decoration from previous rule for hovered links */
a:hover {
	text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
	padding: 0px;
}
h1{
	font-size: 140%;
	color: #0053a0
;
}
h2{
	font-size: 114%;
	color: #772b2f;
}
h3{
	font-size: 100%;
	color: #0053a0;
}
h4{
	font-size: 100%;
	font-weight: normal;
}
h5{
	font-size: 100%;
}

/***********************************************/
/*Component Divs                               */
/***********************************************/
#siteName{
}

/***********************************************/
/* Layout Divs                                 */
/***********************************************/
#Holder {
	width: auto;
	height: auto;
}
#Header{
	margin: 0;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-left: 10px;
}
#Content{
	position: absolute;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	width: 80%;
	left: 10%;
}
#PageTitle{
	padding-top: 10px;
}
/************* #TopNav styles **************/
#TopNav {
	width: 100%;
	position: absolute;
	background-color: #FFFFFF;
	float: left;
	clear: both;
	list-style-image: none;
	list-style-type: none;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
#TopNav a, #TopNav li, #TopNav li ul {
	width: 140px;
	text-indent: 0px;
}
#TopNav a {
	display: block;
	text-decoration: none;
	font-size: 95%;
	border: 3px outset #EACB94;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 5px;
}
/* this is the parent */
#TopNav li {
	float: left;
	position: relative;
}
#TopNav li a {
	background-color: #006c64;
	color: #FFFFFF;
	font-weight: bold;
	padding-top: .5px;
	padding-right: 1px;
	padding-bottom: .5px;
}
#TopNav li a:hover {
	color: #7a1a00;
	background-color: #F5DDB9;
	border-style: inset;
	float: none;
}
/* this is the child */
#TopNav li ul {
	position: absolute;
	width: 90px;
	left: -999em;
}
#TopNav li:hover ul {
	left: auto;
	color: #ffffff;
	display: block;
	font-size: 85%;
	background-color: #EACB94;
	padding: 1px;
	margin: 1px;
}
#TopNav li:link ul, #TopNav li:visited ul {
	background-color: #F5DDB9;
}
.clear {
	clear: both;
}
/************* #breadcrumb styles ***************/
#BreadCrumb {
	font-size: 85%;
	background-color: #ffffff;
	width:92%;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 2px;
	color: #772b2f;
}
/************** .feature styles ***************/
.feature{
	background-color: #D0DBFB;
	margin-top: 10px;
	padding-top: 20px;	
	padding-right: 7px;
	padding-bottom: 10px;
	padding-left: 8px;
	width: 100%;
}
.feature h2{
	padding-top: 40px;
}
.feature h3{
	padding: 0px 0px 5px 0px;
	text-align: center;
}
.feature h4{
	font-weight: bold;
	padding-top: 12px;
}
.feature_emphasis{
	font-style: italic;
}
/* adjust margins to change separation between the feature image and text flowing around it */
/************* #BottomNav styles **************/
#BottomNav{
	color: #0053a0;
	width: 100%;
	text-align: center;
	background-color: #F5DDB9;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 7px;
}
/* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line
   this will force a horizontal scrollbar if there isn't enough room for all links
   remove rule or change value to 'normal' if you want the links to line-wrap */
#BottomNav a {
	font-size: 90%;
}
#BottomNav link a, #BottomNav visited a {
	color: #772b2f;
}

/************** #Footer styles **************/

#Footer{
	font-size: 72%;
	color: #EACB94;
	text-align: center;
	width: 92%;
	bottom: 100%;
}
	
.clear{
	font-size: 0px;
	height: 0px;
	width: 100%;
	clear: both;
	display: block;
}