/* HORIZONTAL FREESTYLE MENU LAYOUT */

#hmenu {
     margin: 0px 0px 0px 180px;	
     font-family: "Trebuchet MS", verdana, arial;
}

#hmenu a {
     color: #858585;
}

/* All <ul> tags in the menu including the first level */
.hmenulist, .hmenulist  ul {
 margin: 0px;
 padding: 0px;
 list-style: none;
 letter-spacing: -0.025px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.hmenulist ul {
 display: none;
 position: absolute;
 top: 12px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 z-index: 800;
}

/* Second and third etc. level submenus - position across from parent instead */
.hmenulist ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.hmenulist li {
 float: left;
 display: block;
 position: relative;
}

.hmenulist li.main {
 width: 106px;
 text-align: center;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.hmenulist ul li {
 float: none;
 clear: both; 
 margin: 0;
}
.hmenulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.hmenulist a {
 display: block;
 text-decoration: none;
 color: #231f20;
}

.hmenulist li.main a.head {
 line-height: 50px;      
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.hmenulist a:hover, .hmenulist a.highlighted:hover, .hmenulist a:focus {
 color: #231f20;
}	
.hmenulist a.highlighted {
 color: #231f20;
}	

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .hmenulist a#xyz {
      background-image: url(out.gif);
    }
    .hmenulist a#xyz:hover, .hmenulist a.highlighted#xyz, .hmenulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.hmenulist a .subind {
 display: none;
}
.hmenulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.hmenulist a {
 float: left;
}
.hmenulist ul a {
 float: none;
}
/* \*/
.hmenulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .hmenulist ul li {
 float: left;
 width: 1%;
}

* html .hmenulist ul li {
 float: left;
 height: 1%;
}
* html .hmenulist ul a {
 height: 1%;
}
/* End Hacks */

.hmenulist .second p {
margin: 0px;
}

.hmenulist .head, .hmenulist .main2 {
background-color: transparent;
margin: 0px;
}

.hmenulist .second {
margin: 38px 0px 0px -7px;
width: 124px;
}

.hmenulist .second a {
display: block;
width: 124px;
height: 20px;
text-align: center;
background-color: #FFF;
font-size: 10px;
font-weight: bold;
position: relative;
z-index: 100;
}
.hmenulist .second a:hover {
}

.hmenulist .second div {
     position: absolute; 
     width: 10px; 
     height: 20px;
     background-color: #FFF;
     filter:alpha(opacity=50);
     -moz-opacity:0.5;
     -khtml-opacity: 0.5;
     opacity: 0.5;
}

.hmenulist .second div.left {
     margin-left: -10px;
}
.hmenulist .second div.right {
     margin-left: 124px;
}
.hmenulist .second div.left_first {
     height: 10px;
     margin-top: 10px;
     margin-left: -10px;
     z-index: 5;
}
.hmenulist .second div.right_first {
     height: 10px;
     margin-top: 10px;
     margin-left: 124px;
     z-index: 5;
}
.hmenulist .second div.bottom {
     height: 10px;
     width: 144px;
     margin-left: -10px;
} 