/*
 * 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
 *
 */

ul.simplemenu {
	/* styles for the entire menubar go here */
	z-index: 99999;
}

ul.simplemenu tr{
	/* styles for the entire menubar go here */
	padding-bottom: 20px;
}
ul.simplemenu td{
	/* styles for the entire menubar go here */
	padding-right: 20px;
}

ul.simplemenu, ul.simplemenu ul {
	/* this is to suppress the <ul> whitespace; you probably don't want to change this */
	padding: 0; margin: 0;
	z-index: 99999;
}

ul.simplemenu li.simplemenu_topitem ul {
	/* styles for the drop-down/pop-out menus */	
	margin-top: 18px;
	border-bottom: 10px solid #990000;
	border-right: 1px solid #990000;
	border-left: 1px solid #990000;
	-moz-border-radius-bottomright: 10px;
	border-bottom-right-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	z-index: 99999;
}

ul.simplemenu li {
	/* styles for all menu items go here */
	white-space: nowrap;
	cursor: pointer;	
}

ul.simplemenu li.simplemenu_topitem {
	/* styles for the horizontal menu bar items go here */	
}

ul.simplemenu li.simplemenu_topitem ul li {
	/* styles for the drop-down/pop-out menu items go here */	
	background-color: #990000;
	padding: 5px;
	padding-top: 10px;
	font-family: Verdana, Arial, Tahoma;
	font-size: 12px;
	color: #ffffff;
	text-decoration: none;
}

ul.simplemenu li.simplemenu_topitem ul li a{
	font-family: Verdana, Arial, Tahoma;
	font-size: 12px;
	color: #ffffff;
	text-decoration: none;
}

ul.simplemenu li.simplemenu_topitem ul li a:hover{
	font-family: Verdana, Arial, Tahoma;
	font-size: 12px;
	color: #ff9900;
	text-decoration: none;
}

ul.simplemenu li a {
	/* styles for the menu item links */
	background-color: #990000;	
}

ul.simplemenu li.simplemenu_topitem ul li.simplemenu_hassubmenu {
	/* styles for menu items with a sub-menu */
	padding-right: 10px;
}

#menubar ul {
	height: 15px;
	list-style-type: none;
	list-style-position: initial;
	list-style-image: initial; 
}

#menubar .simplemenu_topitem {
	float: left;
	left: 0px;
	list-style-type: none;
	position: relative;
	top: 0px;
}

.simplemenu_topitem ul {
	list-style-type: none;
	list-style-position: initial;
	list-style-image: initial;
	position: absolute;
	top: 15px;
	left: 0px;
	display: none;
}

.simplemenu_topitem li {
	left: 0px;
	position: relative;
	top: 0px;
}

.simplemenu_topitem:hover li {
	
}