/*  ------------------------------  */
/*  DROPDOWN MENU                   */
/*  ------------------------------  */

#navigation {
	position: relative;
	width: 850px;
	height: 35px;
	margin: 0 auto; 	
	top: 15px;	
	}
	 
#navigation ul.menu {
	list-style-type:none; 
	padding: 6px 0 0;
	margin: 0 0;
}

#navigation ul.menu li {
	height: 30px;
	position:relative;
	padding:0;
	border-right: 1px solid #a52b31;	
	display: -moz-inline-stack;
    display: inline-block;
    min-width: 100px;
	text-align: center;
    *display: inline;
    }

#navigation ul.menu li.current {
	background:#000000;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius-topleft:4px;
	-moz-border-radius-topright:4px;
	-webkit-border-top-left-radius:4px;
	-webkit-border-top-right-radius:4px;
	}
	
#navigation ul.menu li:hover a:hover {
	background: #999;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius-topleft:4px;
	-moz-border-radius-topright:4px;
	-webkit-border-top-left-radius:4px;
	-webkit-border-top-right-radius:4px;
}


#navigation ul.menu li a {
	color: #333;
	text-decoration:none;
	font-size:1.2em;
	font-style:normal;
	font-weight:bold;
	padding: 5px;
	line-height:30px;
	clear: none;
	float: none;
	text-align: center;
}

#navigation a span {
	color: maroon;
}

