/* layout styles */

/* remove standard HTML list indenting, and display as normal blocks */
ul.slidingmenu,
ul.slidingmenu ul,
ul.slidingmenu li,
ul.slidingmenu a 
{ 
	padding: 0;
	margin: 0;
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
}

/* use a fixed width for menu and submenus */
ul.slidingmenu,
ul.slidingmenu ul 
{
	width: 199px;
	font-size: 0.01px;
}

/* make li's into clean, moveable blocks */
ul.slidingmenu li 
{
	list-style-type: none; 
	position: relative;
	margin-bottom: 3px;
	width: 199px;
	/*font-size: 15px;*/
}

/* Rollover effects -- Firefox et al. */
ul.slidingmenu li
{
	background-image: url(img/main_off.gif);
	background-repeat: repeat-y;
}
ul.slidingmenu li.top
{
	background-image: url(img/main_off_top.gif);
	background-repeat: no-repeat;
}
ul.slidingmenu li.bottom
{
	background-image: url(img/main_off_bottom.gif);
	background-repeat: no-repeat;
}
ul.slidingmenu li a
{
	color: #fff;
}
ul.slidingmenu li:HOVER
{
	background-image: url(img/main_on.gif);
	background-repeat: repeat-y;
}
ul.slidingmenu li:HOVER a
{
	color: #fff;
}
ul.slidingmenu li:HOVER li a
{
	color: #fff;
}
ul.slidingmenu li li:HOVER a
{
	color: #fff;
}


/* Make list items do what they're supposed to in IE */
ul.slidingmenu a 
{
	width: 168px;
	height: 100%;
	padding: 4px 8px 4px 31px;
	text-decoration: none;
}

/* make sure any ul inside an li (a submenu) takes up zero normal flow */
ul.slidingmenu ul 
{ 
	position: absolute;  
	top: 0px;  /*the height of the top border */
	left: 203px; 
	display: none;
	z-index: 10;
}

