/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.hmenutext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
    font-weight: bold;
	color: #00093E;
}

#horizontalmenu {
  float: left;
  width: 100%;
  background-color: #53885E;
  text-align: center;
  clear: both;
}

.suckertreemenu ul{
margin: 0px;
padding: 0px;
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #53885E; /*overall menu background color*/
width: 16%; /*Width of top level menu link items*/
z-index: 10;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: 100%; /*Width of top level menu link items*/
padding: 5px 2px;
/*border-right: 1px solid #667350;*/
text-decoration: none;
color: #00093E;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0px;
position: absolute;
top: 0px; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
list-style-type: none;
border-top: 1px solid #00093E;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: block;
float: none;
width: 100%;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0px;
list-style-type: none;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
width: 160px; /*width of sub menu levels*/
color: #00093E;
text-decoration: none;
padding: 5px 2px;
border: 1px solid #00093E;
border-top: none;
display: inline-block;
}

.suckertreemenu ul li a:hover{
background-color: #00093E;
color: #46889A;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: #53885E url('img/arrow-down.gif') no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #53885E url('img/arrow-right.gif') no-repeat center right;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */

/*
.BorderImageLeftVert {	 
background-image: url(http://wyeth.hmdnsgroup.com/~homemade/img/leftside.jpg);
background-repeat: repeat-y;
}

.BorderImageRightVert {	 
background-image: url(http://wyeth.hmdnsgroup.com/~homemade/img/rightside.jpg);
background-repeat: repeat-y;
}
*/