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

.menucon {width: 850px; margin: 0 auto;}
ul#topnav {
	margin: 0;
	padding: 0;
	float: left;
	width: 850px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 12px;
	font-family:normal Verdana,Arial,Helvetica,sans-serif;
	font-variant:normal;
	font-weight:bold;
	background: url(topnav_stretch.gif) repeat-x;
	z-index:999;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #dcdcdc; /*--Divider for each parent level links--*/
}
ul#topnav li a {
	padding: 10px 27.3px;
	display: block;
	color: #000000;
	text-decoration: none;
}
ul#topnav li:hover { background-color:#333333; background-image:url(topnav_active.gif); background-repeat:repeat-x;}
/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/

ul#topnav li span {
	float: left;
	padding: 8px 0;
	position: absolute; 
	left: 0; top:30px; 
	display: none; /*--Hide by default--*/
	width: 850px;
	background: #000000;   
      -moz-opacity:0.5;           /* Mozilla 1.6 and below   */
	  filter:alpha(opacity=50);  /* Internet Explorer       */
	  opacity:0.5; 				/* newer Mozilla and CSS-3 */
  
	color: #ffffff;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
ul#topnav li:hover span { display: block; z-index: 1;  } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; color:#ffffff; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration: underline;}
