/* general page structure and layout */
body {
	font:bold 10px Trebuchet MS,arial,helvetica,sans-serif;
	font-size:0.75em;
	color:#666666;
	margin:10px 0 0 0;
	padding:0 0 0 0;
	text-align:center;
	background-color: #420C09;
}

.page_wrap {
position:relative;
width:780px;
margin:0 auto;
padding:0 0 0 0;
text-align:center;
background:#ffffff url("images/header2.jpg") no-repeat;
border-left:1px solid #9EB874;
border-right:1px solid #9EB874;
border-top:1px solid #9EB874;
}

.header_text {
position:relative;
clear:none;
width:770px;
height:22px;
margin:70px 0 20px 0;
padding:0 0 0 0;
background:transparent;
color:#ffffff;
text-align:right;
}

.topnav {
position:relative;
clear:both;
width:780px;
height:21px;
margin:0 0 0 0;
padding:0 0 0 0;
background:#cccccc;
font-size:.8em;
border-top:1px solid #9EB874;
}

.container {
/*	position:relative;*/
	clear:both;
	width:auto;   /* was 760, then 850px  */
	margin:10px 10px 0 10px;
	padding:0 0 0 0;
	color:#000000;
	text-align:left;
	z-index: 1;
}

.container p {
	margin:5px 0 10px 0;
	padding:0 0 0 0;
	color: #666666;
	font-size: small;
	line-height: normal;
}
maincontent {
	padding-right: 20px;
	padding-left: 20px;
}

.container ul {
list-style-type: disc;
}

.box_rightslideshow {
	position:relative;
	float:right;
	clear:both;
	padding:5px;
	color:#000000;
	z-index: 1;
}

.box_right {
position:relative;
float:right;
clear:both;
width:200px;
margin:0 0 5px 10px;
padding:0 10px 0 10px;
background:#CFD9BE;
color:#000000;
font-family:"Times New Roman", Times, serif;
font-size:0.75em;
}

.box_right p {
margin:5px 5px;
}

.box_cnr_top {
background: url("images/cnr_tr.gif") no-repeat top right;
margin:0 -10px 0 -10px;
}

.box_cnr_bottom {
background: url("images/cnr_br.gif") no-repeat top right;
margin:0 -10px 0 -10px;
}

img.cnr {
width:8px;
height:8px;
border:none;
display: block !important;
}

.footer {
	position:relative;
	clear:both;
	width:780px;
	height:30px;
	margin:30px 5px 0 5px;
	padding:4px 5px 4px 10px;
	font-size:0.7em;
	text-align:left;
	border-top:1px solid #9EB874;
	border-bottom:1px solid #9EB874;
	background-repeat: repeat-x;
	background-color: #F2EDDF;
	
}





/* Begin CSS Popout Menu */

/*XXXXXXXXXX Generic page styling rules XXXXXXXXXX*/
		
ul, li { padding: 0; margin: 0; 
list-style: none;
}


/*XXXXXXXXXXXX Primary top nav rules XXXXXXXXXXX*/

.nav {
	position: relative;
	border: 1px solid #888;
	border-width: 1px 0;
	width: 100%;
	background-color: #C5C19B;
	font-size: medium;
	font-family: Georgia, "Times New Roman", Times, serif;
	z-index: 2;
	}

.button {
	width: 130px;
	float: left;
	}

.parent {position: relative;}
/* this parent div does not provide "sticky hovering", but instead fixes a 
strange bug in Op7. When an element serves as a hovered popup "parent" element, 
that element must not also be floated or all heck breaks loose in Opera 7. 
To prevent this, we have floated the top level list items, while nesting 
hoverable parent divs inside that are then hovered to generate the dropdowns. 
Thus the ugly (but interesting) Op7 bug is defeated. */
	
.floatfix {margin-right: -3px;}
/* this fixes the IE 3px bug that is common in this type of float arrangement */ 

/*XXXXXXXXXXXX Primary dropdown/flyout rules XXXXXXXXXXX*/

.dropdown {
	width: 250px;
	position: absolute;
	left: -3000px;
	top: auto;
	text-align: left;
	background-image: url(../pages/images/bgfix.gif);	
	/*background-image: url(../pages/images/navdown_red.gif);
	background-repeat: no-repeat;
	background-position: right;*/
	}
	
.dropdown div {
	width: 220px;
	position: absolute;
	left: -3000px;
	top: 0;
	text-align: left;
	background-image: url(../pages/images/bgfix.gif);
	
	}
	
/* The margins on the UL's replace the div paddings to create "sticky hovering"
zones,  and the margins should "fill" the divs, making the IE BG fix unnecessary.
Unfortunately the BG fix is still needed, altho this method does eliminate
possible box model problems */
	
.dropdown ul { 
  width: 209px; /* tweaked so that dropdowns appear to "line up" with top links */
  margin: 0 30px 30px 30px; /* creates "sticky hovering" zones for dropdowns */
  border: 1px solid #888; 
  border-width: 1px 1px 0; 
  background: #C5C19B;
  } /* borders sides and top of the dropdowns and flyouts; links provide the bottom border */
	
.dropdown div ul {margin: 30px 30px 30px 0;} /* creates "sticky hovering" zones for flyouts */
	
.four .dropdown ul {width: 190px;} /* modifies width for rightmost "visible" dropdown (tweak) */
		
.four .dropdown div ul {margin: 30px 0 30px 30px; position: relative;} /* rule reversal for "visible" right drop flyouts */


/*** THIS CONTROLS WIDTH OF MAIN NAV ITEMS ****/
.nav li {text-align: center;width:170px;}


.nav a {
  display: block;
	color:#660000;
	font-weight: bold;
	text-transform:uppercase;
	font-size: 0.8em;
	text-decoration: none;
	padding: 6px 0 5px; 
	border-right: 1px solid #888;  /* makes the dividers between the top nav links */
	}

.nav a:hover {
color:#660000;
text-decoration:none;
}

.four a {border-right: 0;} /* kills right border on last top link */
	
.nav ul ul a {
  color: #660000;
  border-right: 0; /* negates right border for dropdowns and flyouts */
  border-bottom: 1px solid #888;  /* borders the bottoms of the dropdown and flyout links */
  }

/*** THIS CONTROLS WIDTH OF DROPDOWNS ****/
.dropdown li {
  position: relative; 
  vertical-align: bottom; /* IE5/win bugfix */
  width:210px;
  }

.parent {
	background: url(../pages/images/navdown_red.gif) no-repeat 97% 55%;
	}
			
.parent:hover {
	background-color: #FFFFE8;
} 
/* this hover calls a transparent GIF only to defeat the IE failed hover bug. Any 
background change on hovering div.parent will make IE obey and display the dropdown.
While the call itself will fix the bug, make sure you actually call a real image 
file so that your site error logs will not fill with failed image calls. */
				
.parent:hover div.dropdown {left: -31px;} /* hover rule for dropdowns */ 
/* extra pixel makes dropdowns "line up" with top links */ 

.dropdown li:hover div { /* hover rule for flyouts */
	left: 180px; /* this value controls the amount of flyout "overlap" */
	top: -26px; /* this value controls the amount of flyout vertical offset */
	}
	
.four li:hover div { /* reversed flyout rules for rightmost drop flyouts */
	left: -210px; 
	top: -26px;
	}

.nav div.mini-zone {
	padding: 0;
	width: 15px;
	height: 15px;
	font-size: 1px;
	left: -3000px;
	bottom: -15px;
	top: auto;
	background-image: url(../pages/images/bgfix.gif);
	}

.nav .dropdown li:hover div.mini-zone { /* hover rule for mini-zones */
	left: auto;
	right: 8px;
	top: auto;
	}

.nav .four li:hover div.mini-zone { /* reversed hover rule for rightmost drop mini-zones */
	left: 6px;
	}

.dropdown li:hover {
	background: #235;
	background-color: #FFFFE8;
} /* hover color effect on dropdown links */

.dropdown div li:hover {
	background: #ff7;
	background-color: #FFFFE8;
} /* hover color effect on flyout links */


/*XXXXXXXXXX z-index rules for top nav XXXXXXXXXXX*/

.one {z-index: 10;}
.two {z-index: 20;}
.three {z-index: 30;}
.four {z-index: 40;}
.four:hover {z-index: 20;}
/* this last is a special trick that reverses the stacking order of the rightmost
top link when it or its children are hovered. This, and the previous rules work
together so that when a user is on the top link of any flyout, they can move 
vertically to the top link directly above and not have the sticky hoivering zone
on the flyout get in the way of hovering that top link. */
 

/*XXXXXXXXXXX Special fixes XXXXXXXXXXX*/

/* This is to hide the following from IE/Mac. \*/
* html .button .dropdown li {
height: 1%;
margin-left: -16px;
mar\gin-left: 0;
}
/* */

* html .nav a
 {height: 1%;}

/* The first 2 rules above fix "bullet region" problems in IE5.x/win, 
and the 2nd is to make all links fully clickable. */    

.brclear { /* Use a break with this class to clear float containers */
clear:both;
height:0;
margin:0;
font-size: 1px;
line-height: 0;
}

/*\*/ /*/
.nav .dropdown, .nav .dropdown div {width: 189px;}
.nav .button .dropdown ul {margin: 0px;}
.nav .dropdown, .nav .dropdown div {position: static;}
.nav .dropdown ul {border: 0;}
.mini-zone {display: none;}
/* this rule block "dumbs down" the nav for IEmac */

/* End CSS Popout Menu */








/* links */
a {
color:#660000;
text-decoration:none;
}

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

#box_right a {
color:#000000;
text-decoration:underline;
}

#box_right a:hover {
color:#E39243;
text-decoration:none;
}

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

#footer a:hover {
color:#4F6C1F;
text-decoration:none;
}

/* fonts and colors */
h1 {
font-family:"Times New Roman", Times, serif; 
color:#660000;
font-size:1.5em;
text-transform:capitalize;
margin:0 0 0 0;
padding:0 0 0 0;
}

h2 {
font-family:"Times New Roman", Times, serif; 
color:#697D55;
font-size:1.2em;
text-transform:capitalize;
font-weight:bold;
padding:0 0 0 0;
margin:0;
}

h3 {
font-family:"Times New Roman", Times, serif; 
color:#65764B;
font-size:1.1em;
text-transform:capitalize;
font-weight:bold;
padding:0 0 0 0;
margin:0 0 -8px 0;
}

p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif,;
}

.box_right h3 {
font-size:1.5em;
margin:0 0 .5em 0;
}

.grey {
color:#999999;
}

/* images */
img {
border:none;
}

.right img {
position:relative;
float:right;
padding:0 0 0 0;
margin:5px 2px 2px 5px;
}

.left img {
position:relative;
clear:none;
float:left;
padding:0 0 0 0;
margin:5px 5px 2px 0;
}

/* workarounds and hacks */
.clearfix:after {
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */



.copyright {
	font-size: .6px;
}
