/* Appearance */ 
ul.slidingmenu {
	font-family: Arial, Helvetica, sans-serif;
}
ul.slidingmenu ul {
	background-color:#003E55;
  	border: 1px solid #000;
}

ul.slidingmenu ul li a {
	font-size:11px;
}
ul.slidingmenu li {
  	text-align: left;
	border-bottom: 1px solid #00141C; /* bottom boarder is required to stop display form jumping arround */
	border-top: 0px;
}
ul.slidingmenu ul li {
  	text-align: left;
	border-bottom: 0px; /* bottom boarder is required to stop display form jumping arround */
	border-top: 0px;
	margin-bottom:1px;
}

ul.slidingmenu a {
	/* If you get an unwanted gap after your a block (IE-Win) try increasing the line height*/
	font-size:11px;
	font-weight:normal;
  	color: #CCCCCC;
	text-decoration: none;
	background-color:#00222F;
	background-repeat:no-repeat;
	background-position:center right;
	border-bottom: 0px; /* bottom boarder is required to stop display form jumping arround */
	border-top: 0px;
}

ul.slidingmenu a:visited, ul.slidingmenu a:active {
  	color: #EEEEEE;
}
ul.slidingmenu a:hover {
  	background: #003E55;
	background-repeat:no-repeat;
	background-position:center right;
  	color: #FFFFFF;
}


/*
li a img {
	float: right;
}
.navHome {
	background:url(../images/nav_home.gif) no-repeat right bottom;
}
.navLogout {
	background:url(../images/nav_logout.gif) no-repeat right bottom;
}
.navArrow {
	background:url(../images/nav_rightarrow.gif) no-repeat right bottom;
}*/
/* layout styles */

/* remove standard HTML list indenting, and display as normal blocks */
ul.slidingmenu,
ul.slidingmenu ul,
ul.slidingmenu li,
ul.slidingmenu a { 
  padding: 0px;
  margin: 0px;
  display: block;
}
ul.slidingmenu ul {
	padding:3px 3px 2px 3px;
}
ul.slidingmenu a { 
  padding: 3px 20px 1px 20px;
}
ul.slidingmenu ul li a { 
  padding: 3px 10px 1px 10px;
}

/* use a fixed width for menu and submenus */
ul.slidingmenu {
  width: 200px;
  margin-bottom: 0px
}
/* make li's into clean, moveable blocks */
ul.slidingmenu li {
  list-style-type: none; 
  position: relative;
}

/* Make list items do what they're supposed to in IE */
ul.slidingmenu a {
  width: 160px;
}

/* make sure any ul inside an li (a submenu) takes up zero normal flow */
ul.slidingmenu ul { 
  position: absolute;  
  top: -2px; /* the height of the top border */
  left: 200px; 
  display: none;
  margin-left: 2px;
  width: 180px;
}
ul.slidingmenu ul a { 
  width: 160px;
}
ul.slidingmenu ul ul { 
  top: -4px; /* the height of the top border */
  margin-left: 1px;
  left: 185px; 
}
