
/*                The main menu                */
/* The menu that's shown underneath the banner */
/* Has rounded top-corners and links in it     */
#Menu {
	height:           25px;
	
	margin-top:       0px;
	
	position:         relative;
	top:              6px;
	
	font:              12px "Arial";
	}

#Menu ul {
	list-style-type: none;
	margin:          0px;
	padding:         0px;
	margin:          auto;
	}

#Menu li {
	float:            left;
	
	height:           15px;
	width:            80px;
	
	text-align:       center;
	
	padding-top:      4px;
	margin-right:     2px;
	margin-left:      2px;
	
		/*skugga*/
	-moz-box-shadow: 0 0 10px #000;
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	
			/*runda hörn*/
	-moz-border-radius: 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0; 
	
	background-image:  url('Images/DefaultTheme/MenuTab.png');
	}

#Menu li:hover {
	background-image:  url('Images/DefaultTheme/MenuTabHover.png');
	}

#Menu li a {
	display:         block;
	
	height:          15px;
	width:           80px;
	
	color:            #FFFFFF;
	text-decoration: none;
	}

/* The box in which the "You are logged in as XXX" message is displayed, */
/* and where the log out button is located. */
/* It is displayed to the right of the menu links */
#Menu #LoggedIn {
	float:            right;
	
	font-size:        10px;
	
	height:           13px;
	
	padding:          2px;
	margin:           2px;
	}
