/* HORIZONTAL FREESTYLE MENU LAYOUT */

.menulist a{position:relative;} /* just for IE PNG */


.menulist li ul {
/*  background:url(../images/menu-end.png) no-repeat bottom; */
}

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
 z-index:1000;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 25px; /* I'm using ems rather than px to allow people to zoom their font */
 left: 0px;
 width: 150px;
 margin-top: 0px;
 z-index:1000;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 5px;
 left: 149px;
 z-index:1001;
}
.menulist ul ul li{
 z-index:1001;
}

.menulist ul ul a{
 z-index:1001;
}
/*
 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.
*/
.menulist li {
	float: left;
	position: relative;
	border: none;
	text-align: center;
	z-index:1000;
 }


/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 width: 150px;
 margin: 0;
 padding: 0;
 text-align: left;
 float: none;
 background:url(../images/shading.png) repeat;
 z-index:1000;
}
.msie6 .menulist ul li {
 background:url(../images/shading.gif) repeat;
 background-color: #000;
}

.menulist ul>li:last-child {
/*
 border-bottom: 1px solid #88481A;
*/
}

.menulist .menuFirst {
 height:8px;
 background:url(../images/menu-start.png) no-repeat bottom;
}
.msie6 .menulist .menuFirst {
 background:url(../images/menu-start.gif) no-repeat bottom;
}

.menulist .menuLast {
 height:8px;
 background:url(../images/menu-end.png) no-repeat top;
}
.msie7 .menulist .menuLast {
 margin-top:-8px !important;
 height:8px;
 background:url(../images/menu-end.png) no-repeat top; 
}
.msie6 .menulist .menuLast {
 background:url(../images/menu-end.gif) no-repeat top; 
}

/* Links inside the menu */
.menulist a {
 display: block;
 color: #FFDB9C;
 text-decoration:  none;
 font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size: 10px;
 font-weight: bold;
 margin: 0;
 position:relative;
}

.menulist ul li a {
 height: 20px;
 position: relative;
 padding: 2px 0 2px 6px;
 margin: 0;
 display: block;
 font-weight: normal !important;
 color: #DDD;
 background:none;
 border-left: 1px solid #88481A;
 border-right: 1px solid #88481A;
}

.msie7 .menulist ul li {
 margin: 0 0 -3px 0;
}

.msie7 .menulist ul li ul {
 margin: 0 0 -4px 0;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul li a:hover, .menulist ul li a.highlighted:hover, .menulist ul li a:focus {
 color: #FFF;
 background:url(../images/shading-brown.gif) 0px 1px;
 position:relative;
}

.menulist  a.highlighted {
 color: #FFF !important;
}

/*
 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:
    .menulist a#xyz {
      background-image: url(http://beinart.org/styles/out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(http://beinart.org/styles/over.gif);
    }
*/

/* Only style submenu indicators within submenus. */

.menulist .navItem .subind {
 height: 10px;
 font-size: 10px;
 margin: 0;
}

.menulist .navItem a .subind {
 display:  none;
}
.menulist .navItem ul a .subind {
 display:  block;
 float: right;
 clear: right;
 padding: 0 2px 0 0;
 background-image: none;
}

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


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
 position: relative;
}
* html .menulist ul li a {

}
/* End Hack */

.divider {
 width:95%;
 height:.5em;
 margin:0px auto .5em auto;
 border-bottom:1px solid #888;
}

.langFlag {
	border: none 0;
}