/* Appearance */ 
body {
  font-family: sans-serif;
}

#menuhoriz{ 
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border: 1px solid #333333;
  	border-width: 0px 0px 0px 0px;
}

#menuhoriz a.top_parent   /* attaches down-arrow to all top-parents */
	{
	background-image: url(../images/down_arrow.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuhoriz a.top_parent:hover
	{
	background-image: url(../images/down_arrow_hover.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuhoriz a.parent, #menuhoriz a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
 

ul.slidingmenu, ul.slidingmenu ul {
  
   
}

ul.slidingmenu li {
  text-align: center;
  border-color: #dedede #a19f94 #a19f94 #dedede;
  border-style: solid; border-width: 1px;
  
  
}

ul.slidingmenu a {
  color: #000;
  background: #f3f1e4;
  text-decoration: none;
}

ul.slidingmenu a.subheader {
  background: #f0f1e4;
}

ul.slidingmenu a.subheader:hover {
  background: #545343;
}

ul.slidingmenu a:hover {
  background: #545343;
  color: #FFF;
}

/* 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;
}


/* use a fixed width for menu and submenus */
ul.slidingmenu {
  width: 133px;
  float:left;
  height:20px;
}

ul.slidingmenu ul {
  width: 250px;
  float:left;
}

ul.slidingmenu li ul {
	border-width: 0px 0px 0px 0px;
}

ul.slidingmenu li ul li{
	text-align: left;
	
}

/* make li's intoclean, moveable blocks */
ul.slidingmenu li {
  list-style-type: none; 
  position: relative;
  font-family: "Trebuchet MS", verdana, cursive; font-size: 12px; font-weight: normal;
  text-indent: 5px;
}

/* Make list items do what they're supposed to in IE */
ul.slidingmenu a {
  width: 100%;
  height:100%;
}


/* make sure any ul inside an li (a submenu) takes up zero normal flow */
ul.slidingmenu ul { 
  position: absolute;  
  top: 23px; /* the height of the top border */
  left:0px; 
  display: none;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
