/* Red End
// Version: 0.1
// Author: Levi Putna
// Email: levi.putna@ozblog.com.au
*/

BODY {
 font:14px Helvetica, Verdana, Arial, sans-serif;
}

/* remove the indents and bullets from the unordered list and define the width of our menu items. */
ul#menu {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 170px;
	height: 100px;
}


/* we must set the position as relative, because we will need to position the sub-menus absolutely within them. */
ul#menu li {
	position: relative;
}

/* We want each sub-menu to appear to the right of its parent menu item when that item is hovered over. */
li ul {
	position: absolute;
	left: 170px; /* 1px less than the width of the menu items */
	top: 0;
	display: none;
}
	
/* links style. */
ul#menu li a {
	display: block;
	text-decoration: none;
	color: #ffffff;
	background: #600000;
	padding: 3px;
	padding-left: 10px;
	border:1px solid #C85D00;
	border-left: 7px solid #990000;
	border-bottom: 0;
}

ul#menu li a:hover {
  color: #ffffff;
  border-left: 7px solid #cc3300;

}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */



/* the missing border to the bottom of the list. */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 170px;
}

/* make those sub-menus appear when we hover over the menu items. */
li:hover ul {
  display: block;
}

li:hover ul, li.over ul {
	display: block;
}
