@charset "utf-8";
/*
 * SimpleMenu - jQuery plugin for creating a simple drop-down menu bar with sub-menus
 *
 * Copyright 2009 Pete Morris
 *
 * Licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Version 0.1 2009-08-24
 *
 */

#menu {
	background-image:url(../images/top.png);
	background-repeat:no-repeat;
	width:100%; 
	height:127px;
}

ul.simplemenu {
	/* styles for the entire menubar go here */
	position: relative;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	z-index:10;
	top:108px;
	left:10px;
	width:500px;
}

ul.simplemenu, ul.simplemenu ul {
	/* this is to suppress the <ul> whitespace; you probably don't want to change this */
	padding: 0; margin: 0;
}

ul.simplemenu li.simplemenu_topitem ul {
	/* styles for the drop-down/pop-out menus */
	border-left: 1px solid #000;
	border-right: 1px solid #a4acb0;
	background: white;
	margin-left: 2px;
	margin-top: 2px;
}

ul.simplemenu li {
	/* styles for all menu items go here */
	white-space: nowrap;
	cursor: pointer;
	padding-right: 40px;
}

ul.simplemenu li.simplemenu_topitem {
	/* styles for the horizontal menu bar items go here */
	padding-right: 8px;
}

ul.simplemenu li.simplemenu_topitem ul li {
	/* styles for the drop-down/pop-out menu items go here */
	border-bottom:#a4acb0 solid 1px;
	padding-bottom: 2px;
	padding-top: 2px;
	background-color:#F0F0F0;
}


ul.simplemenu li a:link, 
ul.simplemenu li a:visited,
ul.simplemenu li a:active,
ul.simplemenu li a:hover {
	/* styles for the menu item links */
	text-decoration:none;
	padding: 7px;
	color:#01192e;
}
ul.simplemenu li a:hover {
	color:#a4acb0;
	background: url('../images/mnu_arrow.png') left no-repeat;
}

ul.simplemenu li.simplemenu_topitem ul li.simplemenu_hassubmenu {
	/* styles for menu items with a sub-menu */
	padding-right: 10px;
}
