*{margin: 0; padding: 0;}
body 
{
margin-top: 8px;
text-align: center;
font-family: verdana, helvetica, ariel, sans-serif;
font-size: 1.0em;
background: #312418;  
behavior:url(http://www.gooutandplay.com/css/csshover.htc);
}
  


/* -- Header layout/display styles -- */

#mainheader {
padding-bottom: 3px;
margin: auto;
width: 748px;
text-align: left;
}


div#wrapperwrapper {
background: url(../images/global/shadow_side.gif) repeat-y top center;
}


div#wrapper {
margin: auto;
padding: 0;
width: 760px;
text-align: left;
}


div#contentborder {
background-color: #fff; 
border: 6px solid #fff; 
 
}

#footer {
font-size: .6em;
background: url(../images/global/shadow_bottom.gif) no-repeat top;
color: #eee8e1;
padding-top: 10px;
}


.logo {
margin-left: 5px;
float: left;
display: inline;
}

.headerbanner {
float: right;
}

.emailheader {
float: right;
margin-top: 30px;
padding: 6px 12px 5px 12px;
display: inline;
border: 1px dotted #746956;
}

.emailheader a {
padding-left: 22px;
text-decoration: none;
font-size: .8em;
font-weight: normal;
font-family: Arial, san-serif;
color: #fff;
background: url(../images/global/icon_mail.gif) no-repeat bottom left;
}

.emailheader a:visited {
color: #fff;
}

.clearfloats {
clear: both;
}

/* CSS Document */
/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */



/* the horizontal menu starts here */

/* i removed the float left from the topnav.  if i need to put it back, then try setting the height to a specific pixel or em size */
#topnav {
	width:748px; 	/* makes the div full width */
	float: left; /*makes the div enclose the list */
	font-size:.7em;	/* SET FONT-SIZE HERE */
	line-height: 1.5em;
	background: #9C957B;
	border-bottom: 6px solid #fff;
	color:#fff;
	}
#topnav ul {margin:0 0 0 78px;/* indents ul from edge of container */
	}
#topnav li {
	z-index:100;
	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 */
	 /*sets the background of the menu items */
	border-right: 1px solid #eee8e1;
	}

.border {
	 border-left: 1px solid #eee8e1;/*the first vertical line on the menu */
	}

#topnav li:hover { 
	background-color: #746956; /*sets the background of the menu items */
	}
#topnav a {
	display:block; /*makes list items in drop down highlight and wrapped lines indent correctly */
	padding:0 12px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#fff;	/* sets the type color */
	}
#topnav a:hover {
	color:#fff;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
#topnav 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:13em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-6px; /*aligns the drop exactly under the menu */
	border-top: 6px solid #fff;
	border-right: 6px solid #fff;
	border-bottom: 5px solid #fff;
	border-left: 6px solid #fff;
	}

#topnav ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	padding:0 0 1px;
	border-bottom: 1px solid #eee8e1;
	background: #9C957B;
	}

#topnav ul li ul li:hover {
background: #746956;
}


/* make the drop-down display as the menu is rolled over */
#topnav ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
#topnav ul li:hover ul {display:block; 
} /* shows the drop-down when the menu is hovered */

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

#topnav ul li ul li:hover {background-color: #746956;} /* sets rollover background color of drop down links */

/* second level popouts start here*/
#topnav ul li ul li:hover ul li ul {visibility:hidden;}
#topnav ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* third level popouts start here*/
#topnav ul li ul li ul li:hover ul li ul {visibility:hidden;}
#topnav ul li ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html #topnav ul {
	float:left; /* makes the ul wrap the li's */
	border-left:0; /* adds the rightmost menu vertical line to the ul */
	margin-left:39px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  #topnav ul li ul {
	border-top:6px solid #fff;
	border-left:6px solid #fff; /* 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  #topnav ul li ul li ul { 
  left:9.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:10em;
  }


/* end of hack zone */
/* END OF LIST-BASED MENU */







