/* ******** Main Layout ********** */

body {
	font-family: verdana, arial, sans-serif;
	font-size:90%;
	line-height: 150%;
	text-align: center;
	background-color: #CCC;
	behavior:url(htc/csshover.htc);
	}

/* Apply to all */
* {
	margin:0;
	padding:0;
	} 
	
div#container {
	width: 750px;
	margin: 0 auto;
	text-align: left;
	border-top: 1px solid #000;
	border-right: 3px solid #000;
	border-bottom: 3px solid #000;
	border-left: 1px solid #000;
	background: #FFF url(assets/page-background.jpg) no-repeat bottom right;
	}
	
/* ****** Site Masthead ******* */

div#masthead {
	width: auto;
	height: 114px;
	background: transparent url(assets/masthead.png) 0% 100% no-repeat;
	}
	
div#masthead h1 {
	padding: 45px;
	color: #FFF;
	font-size: 140%;
	margin-left: 30px;
	font-family: Times, sans-serif;
	}
	
div#masthead h1 span {
	color: #EC7519;
	}

/* *********** Main Navigation ************ */

div#mainnav {
	width:100%; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	border-top:1px solid #815B2A;	/* draws line on top edge of div */
	border-bottom:1px solid #815B2A;	 /* draws line on bottom edge of div */
	font-size:.8em;	/* SET FONT-SIZE HERE */
	line-height: 130%; /*Set line height for menus */
	background-color:#EC7519; /* colors the div */
	/*margin-top:20px; TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	}
div#mainnav ul {margin:0 0 0 30px;/* indents ul from edge of container */
	}
div#mainnav li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#FCE8D2; /*sets the background of the menu items */
	border-right:1px solid #815B2A; /* creates dividing lines between the li elements */
	}
div#mainnav li:first-child {
	border-left:1px solid #815B2A; /*the first vertical line on the menu */
	}
div#mainnav li:hover { 
	background-color:#EDE2CE; /*sets the background of the menu items */
	}
div#mainnav a {
	display:block; /*makes list items in drop down highlight and wrapped lines indent correctly */
	padding:0 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#815B2A;	/* sets the type color */
	}
div#mainnav a:hover {
	color:#EC7519;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#mainnav ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:12em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	}
div#mainnav ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #815B2A; /*  three sides of each drop-down item */
	border-bottom:1px solid #815B2A;
	border-right:1px solid #815B2A;
	padding:0 0 1px;
	}
div#mainnav ul li ul li:first-child {
	border-top:1px solid #815B2A; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#mainnav ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#mainnav ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#mainnav ul li ul li ul  {
	visibility:hidden; /* same effect as display:none in this situation */
	top:-1px;
	left:10em;
	}
div#mainnav ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* another level of pop-outs */
div#mainnav ul li ul li:hover ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#mainnav ul li ul li ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* THE HACK ZONE - */

/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#mainnav ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#mainnav ul li ul {
	border-top:1px solid #815B2A;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  div#mainnav ul li ul li ul { 
  left:9.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:10em;
  }
/* and the "be nice to Opera" rule */
html>body div#mainnav ul li ul li ul {
  top:-1px;
  left:10em;
  }

/* an Opera-only hack to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least it works */
	@media all and (min-width: 0px){
   body div#mainnav ul li ul {padding-bottom:70px;}
   body div#mainnav ul li ul li ul {padding-bottom:22px;}
   body div#mainnav ul li ul li ul li ul li:hover {visibility:visible;} /* same effect as display:block in this situation */

   }
/*end Opera hack */
/* end of hack zone */
/* END OF LIST-BASED MENU */
/* *********** Main Content *************** */

h2 {
	margin: 2em 2em 0.25em 0em;
	font-size: 1.2em;
	font-weight: bold;
	color: #EC7519;
	}

h3 {
	margin: 1.5em 2em 0.5em 0em;
	font-size: 0.9em;
	font-weight: bold;
	color: #815B2A;
	}
	
h4 {
	margin: 1em 2em 0.25em 0em;
	font-size: 0.9em;
	font-weight: bold;
	color: #EC7519;
	}
	
h5 {
	margin: 1em 2em 0.25em 0em;
	font-size: 0.8em;
	font-weight: bold;
	color: #EC7519;
	}
	
h6 {
	font-size: 0.7em;
	font-weight: bold;
	color: #EC7519;
	}
	
p {
	margin: 1em 2em 0.25em 0;
	/*padding-left: 2em;*/
	font-size: 0.8em;
	}

div#content {
	background: #815B24 url(assets/background.jpg) no-repeat bottom right;
	}
	
div#content img {
	margin-top: 50px;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	}
	
div#content h2 {
	margin-top: 3em;
	margin-left: 4em;
	font-size: 1.2em;
	color: #EC7519;
	}

div#content p.white {
	padding: 3em 0 3em 4.8em;
	font-size: 1em;
	font-weight: bold;
	color: #FFF;
	}
	
div#content p.orange {
	padding: 3em 0 3em 4.8em;
	font-size: 1em;
	font-weight: bold;
	color: #EC7519;
	}
	
div#maincontent {
	margin: 4em 2em 1em 3em;
	line-height: 130%;
	}
	
div#maincontent p.l1 {
	margin: 2em 2em 0.25em 0em;
	font-size: 0.9em;
	/*font-weight: bold;*/
	color: #815B2A;
	}
	
div#maincontent p.l2 {
	margin: 1em 2em 0.25em 2em;
	padding-left: 2em;
	font-size: 0.8em;
	}

div#maincontent ul {
	list-style-type: square;
	padding-left: 7em;
	font-size: 0.8em;
	}
	
div#maincontent ul.l1 {
	margin: 2em 2em 1em -3em;
	font-size: 0.9em;
	line-height:150%;
	color: #815B2A;
	}
	
div#maincontent ol {
	padding-left: 5em;
	padding-right: 2em;
	font-size: 0.8em;
	}

div#maincontent ul.l2, div#maincontent ol.l2 {
	margin: 1em 2em 1em 4em;
	padding-left: 2em;
	font-size: 0.8em;
	}
	
table {
	line-height: 100%;
	}
	
td {
	width: 186px;
	vertical-align: top;
	padding-bottom: 0.75em;
	}

table span.name {
	font-size: 0.7em;
	font-weight: bold;
	color: #EC7519;
	}
	
table span.title {
	font-size: 0.6em;
	color: #000;
	}
	
table span.org {
	font-size: 0.7em;
	color: #815B2A;
	}
	
table span.orgname {
	font-size: 0.9em;
	font-weight: bold;
	color: #815B2A;
	}
	
table span.linkurl {
	font-size: 0.75em;
	color: #EC7519;
	text-decoration: none;
	}
	
a:link, a:visited, a:hover, a:active {
	color: #EC7519;
	text-decoration: none;
	}
	
div#photoborder {
	margin: 4px;
	border: 0;
	}
	
div#photoborder img {
	margin: -3px;
	border: 0;
	}
	
/*div#contactimage {
	background: #fff url(assets/hall.jpg) no-repeat top left;
	margin: 0;
	padding: 0;
	}*/
	
div.links {
	float: left;
	margin: 0 2em 0.5em 1em;
	text-align: center;
	}
	
div.links a img{
	border: 0;
	}

strong {
	color: #815B2A;
	}
	
/* *********** Page Footer **************** */

#footer { 
	clear: both;
	padding: 5px;
	font-size: 80%;
	line-height: 120%; 
	text-align: right; 
	color: #815B2A;
	border-top: 1px solid #815B2A;
	}
	
div.counter {
	margin: 0;
	padding: 5px;
	float: left;
	}	