/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.hormen{
  background: #4ba142 url(../images/hormen-bck.png) 0 0;
  color: Black;
  font-weight: bold;
}
.hormen ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

/*Top level list items*/
.hormen ul li{
  position: relative;
  display: inline;
  float: left;
}

/*Top level menu link items style*/
.hormen ul li a{
  display: block;
  width: 84px; /*Width of top level menu link items*/
  padding: .5em 5px;
  text-decoration: none;
  text-align: center;
  background: #4ba142 url(../images/hormen-bck.png) 0 0;
  color: White;
  border-right: 1px solid #4ba142;
}

.hormen ul li a:link{
  color: White;
}

.hormen ul li a:visited {
  color: White;
}

.hormen ul li a:hover{
  background: White url(../images/hormen-item2.jpg) repeat-x 0 0;
  color: Black;
}

.hormen ul li.active_hor a {
  background: #4ee43e url(../images/sub-bck.jpg) repeat-y 0 0;
  color: White;
}

/*1st sub level menu*/
.hormen ul li ul {
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
z-index: 1;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.hormen ul li ul li{
display: list-item;
float: none;
border: 1px solid #FFFFFF;
border-width: 0px 0px 1px 1px;
}
.first{
border: 1px solid #4ba142; 
border-width: 1px 1px 0 0;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.hormen ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.hormen ul li ul li a {
display: block;
width: 200px; /*width of sub menu levels*/
text-decoration: none;
padding: .1em;
background: #4ee43e;
color: Black;
font-weight: normal;
text-align: left;
}
.hormen ul li ul li a:link{
background: #4ee43e;
color: Black;
font-weight: normal;
}
.hormen ul li ul li a:visited{
background: #4ee43e;
color: Black;
font-weight: normal;
}
.hormen ul li ul li a:hover{
background: White url(../images/sub-hvr.jpg) repeat-y 0 0;
color: White;
}
.hormen ul li ul li a:active{
background: #4ee43e;
color: White;
}

/*Background image for top level menu list links */
.hormen .mainfoldericon{
}

/*Background image for subsequent level menu list links */
.hormen .subfoldericon {
background: #4ee43e url(../images/subfold.gif) no-repeat right center;
}


* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}