/*
 * 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 */
}

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: 1px solid #000;
	background: #fff;
	padding: 0;
	margin: 16px 0 0;
}

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 */
	clear: left;
	padding: 0 6px 3px;
	margin: 0;
	font: 11px/11px "Helvetica", "Arial", sans-serif;
	border-top: 1px dotted #333;
	width: 180px;
}

ul.simplemenu li.simplemenu_topitem ul li a {
	/* styles for the drop-down/pop-out menu items go here */
	display: block;
	height: 20px;
	width: 200px;
	}
	
ul.simplemenu li.simplemenu_topitem ul li:hover {
	/* styles for the drop-down/pop-out menu items go here */
	background: #333;
	color: #fff;
}	

ul.simplemenu li.simplemenu_topitem ul li a:hover {
	/* styles for the drop-down/pop-out menu items go here */
	}

ul.simplemenu li a {
	/* styles for the menu item links */
}

ul.simplemenu li.simplemenu_topitem ul li.simplemenu_hassubmenu {
	/* styles for menu items with a sub-menu */
	background: url('./arrow_right.gif') center right no-repeat;
	padding-right: 10px;
}

