@charset "utf-8";
/* CSS Document */

/* =======================TOP NAVIGATION starts here ====================================*/

/* horizontal menu starts here */

#topnav {
	position: absolute;
	top: 250px;
	left: 611px;
	z-index:10;
	width: 239px; 	/* makes the div full width */
	font-family: Arial, Helvetica, sans-serif;
	padding-top:0;
	height: 50px;
	overflow: hidden;
	border: none;

}
#topnav ul {
	margin: 0;/* indents ul from edge of container */
	padding: 0;
	float: right;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-color: #cea74e; /*--orange--*/
}
#topnav li {
	float:left;	/* causes the list to align horizontally instead of stack */
	list-style-type:none; /*sets the background of the menu items */
	height: 50px;
	width: 118px;
	border-left:1px solid #000; /* creates dividing lines between the li elements */
	text-align: center;
	background-color: #d7cfb9;
	background-color: #cea74e; /*--orange--*/
	}

#topnav a {
	display:block; /*makes list items in drop down highlight and wrapped lines indent correctly */
	padding:0; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	font-weight: normal;
	line-height: 50px;
	margin: 0;
	}
#topnav a:hover {
	color:#663333;
	background-color:#f2d6a5;
	margin: 0;
	}

#date{
	font-family: Arial, Helvetica, sans-serif;
	color: #faebd7;
	width: 239px;
	height: 72px;
	background-color: #75302a;
	text-align: center;
	position: absolute;
	top: 300px;
	right: 0;
	z-index: 10;
}
#date p{
	color: #fff;
}
#date p.date{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	padding: 12px 0 0 0;
	margin: 0;
	line-height: 22px;
}
#date p.limited{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 6px 0 0 0;
	margin: 0;
}




/* the horizontal menu ends here */




/* 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: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#topnav ul li ul {
	border-top:1px solid #069;
	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  #topnav ul li ul li ul { 
  left:9.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:10em;
  }
/* and the "be nice to Opera" rule */
html>body #topnav ul li ul li ul {
  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#topnav ul li ul {padding-bottom:200px;}
   body div#topnav ul li ul li ul {padding-bottom:22px;}
   body div#topnav 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 */

/* finally after feeding values to all others, we deal with MAc5 IE */
/* IE5 Mac can't do drop-downs so we need to present the info in a different way*/
/* we present the drop down choices in a row and never show any second-level drops */
 /* this stylesheet is read by IE5 Mac only - hack omits 'url' and leave no space between @import and ("   */

@import("ie51_menu_hack.css"); 


/* =====================END OF TOP NAVIGATION ============================================*/

