/******************************* DMST Styles *******************************************/

#dmst_content{
 font-size: 9pt; 
 line-height: 11.5pt; 
 font-family: Verdana, Helvetica, "Courier New", Courier, Monaco; 


}

#dmst_content h1{
 color: #d2691e; 
 font-weight: bold; 
 font-size: 14pt; 
 line-height: 13pt; 
 font-family: Helvetica, Arial, Verdana, "Courier New", Courier, Monaco;
 margin:0;
 padding:0;
 margin: 15px 0px;
}

#dmst_content h2{
 color: #B6101A; 
 font-weight:bold; 
 font-size: 12pt; 
 line-height: 13pt; 
 font-family: Helvetica, Arial, Verdana, "Courier New", Courier, Monaco; 
 margin:0;
 padding:0;
}

#dmst_content ul li{
 margin-bottom:12px;
}

/****************************** LEFT NAVIGATION STYLES  *******************************/

a.leftnav:link, a.leftnav:active, a.leftnav:visited {
	color: #b2082f; 
	font-style: normal; 
	font-weight: bold; 
	font-size: 12px; 
	font-family: Helvetica, Verdana, Arial; 
	text-decoration: none

}

a.leftnav:hover{
	text-decoration: underline;
}

#leftnav {margin-top:15px;}

/*Subnavigation links*/
a.sublink:link, a.sublink:active, a.sublink:visited {
	 color: #6b4427; 
	 font-style: normal; 
	 font-weight: bold; 
	 font-size: 11px; 
	 font-family: Helvetica, Verdana, arial, "Courier New", Courier, Monaco; 
	 text-decoration: none; 

}

a.sublink:hover{
	text-decoration: underline;
}

/****************************** TEMPLATE FOR STYLING LINKS  *******************************/
/*
Create the custom link class by replacing the "class_name" with the class name, add properites for this class and apply this class to the < a href >
*/

a.class_name:link, a.class_name:active, a.class_name:visited { 
	properties go here
}

a.class_name:hover{
	properties go here
}


/****************************** GLOBAL LINKS (   *******************************/

a:link{ 
	
	}
a:active{ 
	
	}
a:hover{
	
	}
a:visited{
	
	}

/**************************************************************************/


#media {
font-family:Verdana, Arial, Helvetica, sans-serif; size:10px; color:#333333;
}
#media ul, #media li {
margin:0;
padding:0;
list-style-type:none;
font-size:10px;
}

#media ul {
margin-left:3px;

}


#media li {
padding:2px 0;

}

#media a {
color:#d2691e;
font-weight:bold;
text-decoration:none;
display:block;
padding:1px;

}

#media a:hover{
background-color:#d2691e;
color:#fff;
}


/********************************************************   HORIZONTAL DROP DOWN MENU STYLES *********************/


@charset "UTF-8";


/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* Describes the Parent links */

 ul li a.MenuItem {
/*text-transform:uppercase;*/
 }


/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
}



/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
/*	width: 8em;*/
	float: left;
	display:inline;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 8.2em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: /*-5%*/0 0 0 100%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #fff;
	background-color:#fef0d4;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
/* Menu items are a gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
/*	padding: 5px 6px;*/
	color: #b5111b;
	text-decoration: none;
/*	font-weight:bold;
	background-color:#fff;*/
	

}

ul.MenuBarHorizontal ul li a
{
	display: block;
	cursor: pointer;
	padding: 4px 6px;
	color: #b5111b;
	text-decoration: none;
	font-size:11px;
	background-color:#fef0d4;
	border-bottom:1px solid #fff;
}


/* Menu items that have mouse over or focus  */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #b5111b;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;

}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(/imgs/arrow_red_dropdown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(/imgs/arrow_red_dropdown_o.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
.top_menu {
}






.class           { color: black; font-style: normal; font-weight: normal; font-size: 9pt; line-height: 11.5pt; font-family: Verdana, Helvetica, "Courier New", Courier, Monaco; text-decoration: none }
.classitalicsmall             { color: black; font-style: italic; font-weight: normal; font-size: 8pt; line-height: 10.5pt; font-family: Verdana, Helvetica, "Courier New", Courier, Monaco }
.header       { color: #d2691e; font-style: normal; font-weight: bold; font-size: 14pt; line-height: 18pt; font-family: Helvetica, Arial, Verdana, "Courier New", Courier, Monaco, FontName, FontName; text-decoration: none }
.redheader       { color: #9C1931; font-style: normal; font-weight: bold; font-size: 14pt; line-height: 13pt; font-family: Helvetica, Arial, Verdana, "Courier New", Courier, Monaco, FontName, FontName; text-decoration: none }
.blueheader   { color: #B2082F; font-style: normal; font-weight: bold; font-size: 12pt; line-height: 13pt; font-family: Helvetica, Arial, Verdana, "Courier New", Courier, Monaco, FontName, FontName; text-decoration: none }
.blueheader2   { color: #267878; font-style: normal; font-weight: bold; font-size: 10pt; line-height: 13pt; font-family: Helvetica, Arial, Verdana, "Courier New", Courier, Monaco, FontName, FontName; text-decoration: none }
.homeheader  { color: #d2691e; font-style: normal; font-weight: bold; font-size: 11pt; line-height: 13pt; font-family: Helvetica, Arial, Verdana, "Courier New", Courier, Monaco, FontName, FontName; text-decoration: none }
.classred { color: #b5121b; font-style: normal; font-weight: normal; font-size: 10pt; line-height: 11.5pt; font-family: Helvetica, Verdana, "Courier New", Courier, Monaco; text-decoration: none }
.class2  { color: black; font-style: normal; font-weight: bold; font-size: 12pt; line-height: 11.5pt; font-family: Helvetica, Verdana, "Courier New", Courier, Monaco; text-decoration: none }
.classheader     { color: #d2691e; font-style: normal; font-weight: bolder; font-size: 12pt; line-height: 19px; font-family: Helvetica, Verdana, "Courier New", Courier, Monaco; text-decoration: none }
.classlink     { color: #786c59; font-style: normal; font-weight: normal; font-size: 10pt; font-family: Helvetica, Verdana, "Courier New", Courier, Monaco, FontName; text-decoration: underline }
.classlinkitalic      { color: #786c59; font-style: italic; font-weight: normal; font-size: 10pt; font-family: Helvetica, Verdana, "Courier New", Courier, Monaco, FontName; text-decoration: underline }
.link     { color: #b2082f; font-style: normal; font-weight: bold; font-size: 10pt; font-family: Helvetica, Verdana, arial, "Courier New", Courier, Monaco; text-decoration: none }
.homered  { color: #b2082f; font-style: normal; font-weight: bold; font-size: 12pt; font-family: Helvetica, Verdana, arial, "Courier New", Courier, Monaco; text-decoration: none }
/*.sublink { color: #6b4427; font-style: normal; font-weight: bold; font-size: 9pt; font-family: Helvetica, Verdana, arial, "Courier New", Courier, Monaco; text-decoration: none } */
.homeserif  { color: #6b4427; font-style: normal; font-weight: bold; font-size: 15pt; line-height: 15pt; font-family: "Times New Roman", "Courier New", Courier, arial, Verdana, Monaco; text-decoration: none }

.lhnbottom   { color: #937952; font-style: normal; font-weight: normal; font-size: 9pt; font-family: Helvetica, Verdana, "Courier New", Courier, Monaco, FontName; text-decoration: none }
.topnav    { color: white; font-style: normal; font-weight: normal; font-size: 10pt; font-family: Helvetica, "Courier New", Courier, Monaco; text-decoration: none }
.copyright      { color: #a39269; font-style: normal; font-weight: normal; font-size: 8pt; font-family: Verdana, "Courier New", Courier, Monaco; text-decoration: none }
.copyright2 { color: #fff; font-style: normal; font-weight: normal; font-size: 8pt; font-family: Verdana, "Courier New", Courier, Monaco; text-decoration: none }
.form  { font-size: 9px }
.searchresults { color: #b5121b; font-style: normal; font-weight: normal; font-size: 10pt; line-height: 11.5pt; font-family: Helvetica, Verdana, "Courier New", Courier, Monaco; text-decoration: underline }
.classdonate           { color: black; font-style: normal; font-weight: normal; font-size: 8pt; line-height: 9.5pt; font-family: Verdana, Helvetica, "Courier New", Courier, Monaco; text-decoration: none }

a {
cursor:pointer;
}
h3{
	font-size:14px;
	color:#D2691E;
	font-weight:bold;
	margin:0;
	padding:0;
}

h5{
	font-size:12px;
	color:#D2691E;
	font-weight:bold;
	margin:0;
	padding:0;

}
#header_img{
position:relative;}
#fly_in{
	margin:0;
	padding:0;
	position:absolute;
	top:0;
 	left:569px

}

#leftcolumn_fix {
	position:absolute; 
	top:39px; 
	left:0px; 
	background-image:url(/imgs/leftcol_fix.jpg); 
	background-repeat:no-repeat; 
	width:221px; 
	height:1px;
}
#take_action{
	font-size:16px;
	font-weight:normal;
	color:#B31218;
	font-family:Georgia, Times New Roman, Times, serif;
}
#take_action ul{
	list-style-image:url(/imgs/home/arrow_right.jpg);
	margin:5px 0 20px 35px;
	padding:0 0 0 0;

}
#take_action ul li{
	margin:0 0 5px 0;

}
#take_action ul li a, #take_action ul li a:visited{
	color:#B31218;
	text-decoration:none;

}
#take_action ul li a:hover{
	color:#B59C65;
	text-decoration:none;

}
#right_topbox{
	color:#F7EBD1;
	
}
#right_topbox ul{
	margin:0 0 0 35px ;
	padding:0;
	list-style:disk;
	line-height:13px;
}
#right_topbox ul li{
	margin:0 0 5px 0;
	padding:0;
	list-style:disk;
}
#right_topbox ul li a, #right_topbox ul li a:visited{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#F7EBD1;
	text-decoration:none;
}
#right_topbox ul li a:hover{
	color:#51381A;
	text-decoration:underline;
}

#right_btmbox{
	color:#F7EBD1;
}
#right_btmbox ul{
	margin:8px 0 0 35px ;
	padding:0;
	list-style:disk;
	line-height:13px
}
#right_btmbox ul li{
	margin:0 0 5px 0;
	padding:0;}

#right_btmbox ul li a, #right_btmbox ul li a:visited{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#F7EBD1;
	text-decoration:none;
}
#right_btmbox ul li a:hover{
	color:#D8C69E;
	text-decoration:underline;
}


/*  Homepage  */
.home3-pics {
	
	padding:0;
	height:135px; 
	padding:0 10px
}

.home3-pics p {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:11px;
	line-height:18px;
}
#home_newsletter {
	border: 1px solid #edd29c;
	padding: 8px;
	width:155px;
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	margin-bottom:10px;
}

#home_newsletter a {color:#2b1e06; font-size:11px;}
#home_newsletter a:hover{text-decoration:none;}

#home_newsletter #head {
	color: #b5111b;
	padding-bottom: 10px;
}

#home_newsletter .home_newsletter_button {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	background: #fde2ad;
	border: 1px solid #c5aa72;
	cursor:pointer;
	display:inline;
}

#home_newsletter .home_newsletter_button:hover {background:#c5aa72 ;
	border: 1px solid #fde2ad;}
	
.home_newsletter_link {}

.search-top { background-color:#dcd0b6; color:#51381a; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; border:1px solid #dcd0b6;height:19px;width:146px;}
.search-top-button { width:19px; height:19px; background-color:dcd0b6; border:1px solid #dcd0b6; margin-left:1px; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px;color:#51381a;padding-bottom:4px; }

#soh {
	width: 747px;
	background-image: url(/imgs/soh_bg.jpg);
	background-repeat: repeat-y;
	margin-left:7px;
	
}

#soh #soh-right {
	float: left;
	width: 18px;
	background-image: url(/imgs/soh-right.jpg);
	background-repeat:no-repeat;
	height:276px;
	/*min-height: 276px;*/
}
#soh #sof-left {
	float: left;
	width: 728px;
	background: url(/imgs/soh-left.jpg) no-repeat;
	min-height: 276px;
}
#soh #soh-footer {
	background: url(/imgs/sof-footer.jpg) no-repeat;
	height: 34px;
	width: 747px;
}
#soh #left-col {
	float: left;
	width: 354px;
	padding-top:75px;
	padding-left:20px;
	
}
#soh #right-col {
	float: left;
	width: 354px;
	padding-top:75px;
	
}
#left-col-text, #right-col-text {float:left; width:215px; font-family:Georgia, "Times New Roman", Times, serif; font-size:11px; color:#000; line-height:16px;}

#left-col-text a, #right-col-text a {color:#b5121b; text-decoration:none;}
#left-col-text a:hover, #right-col-text a:hover {text-decoration:underline;}



#left-col-text h2, #right-col-text h2{ color:#3b250d; font-family:Georgia, "Times New Roman", Times, serif; font-size:20px;padding:0;margin:0;padding:3px 0}


#left-col-img, #right-col-img  {float:left;margin-right:10px;}

#newhome-footer {padding:20px 0; background-color:#b5121b; height:25px}
#newhome-footer, #newhome-footer a { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; font-weight:bold; color:#fff; text-decoration:none;}

#newhome-footer a:hover {text-decoration:underline;}
/*************************************forms*******************************************/
#form h1{
	color:#D2691E;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;

}
#form p{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000;}
/*************************************************************************************/