/*
** menu.css 
** CSS - handles the main menu style
** Author: Steve TANGUE
** Date: 22.12.08
** Last edited: 
*/



/* menu bg */
div#menu_bg {
	width:100%; height:35px;
	padding:0;	
	margin:0;
}

/* menu */
div#menu {
	width:950px; height:35px;
	position:relative;	
	/*background-image:url(../img/menu_bg.jpg);*/
	/*background-color:#000;*/
	background-position:top;
	background-repeat:repeat-x;
	margin: 0 auto;
}
div#menu li {
	width:auto;	
	float:left;
}
div#menu li a {
	width:auto; height: 35px;
	float:left;
	font-size: 11px;
	/*color: #ffffff;*/
	text-decoration:none;
	margin: 0 auto 0 1px;
}
div#menu li a:hover, div#menu li a.selected {
	height:35px;
	/*background-color:#333;*/
}
div#menu li span {
	width:auto; height:16px;
	float:left;
	text-align:center;
	cursor:pointer;
	padding:11px 21px 12px 22px;
}
div#menu li span.menu_separator {
	width:1px;	height:35px;
	float:left;
	/*background-image:url(../img/menu_separator.jpg);*/
	border-right: 1px solid #555;
	background-repeat:no-repeat;
	padding:0;
	margin:0;
}

a#login {
	width:auto;	height:35px;
	position:relative;
	/*background-image:url(../img/menu_bg_login.jpg);*/
	/*background-color:#444;*/
	background-position:top;
	background-repeat:repeat-x;
	padding: 0 3px;
	margin:0 auto;
}
a#login:hover {
	text-decoration:normal;
	/*color:#eeeeee;*/
}

/* end of file */

