@charset "utf-8";
/* CSS Document */

/* ------------------ root style -------------------- */
.hmenu {
   min-width:10%;
   max-width:88%; 
   height:30px; 
   position:relative; 
   z-index:100;
   font-family:tahoma;
}

/* hack to correct IE5.5 faulty box model */
* html .hmenu {width:809px; w\idth:800px;}

/* remove all the bullets, borders and padding from the default list styling */
.hmenu ul {
   padding:0;
   margin:0;
   list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.hmenu li {
   float:left;
   position:relative;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.hmenu table {
   position:absolute; 
   top:0; 
   left:0; 
   border-collapse:collapse;
}

/* ------------------ top level style -------------------- */

/* style the links for the top level */
.hmenu a, .hmenu a:visited {
   display:block;
   font-size:11px;
   text-decoration:none; 
   margin-left:10px;
   margin-right:10px;
   
   color:#fff; 
   width:100%; 
   height:31px; 

   line-height:29px; 
   font-weight:bold;
   text-align:center;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .hmenu a, * html .hmenu a:visited {
   width:100px; 
   w\idth:98px;
	font-size:10px;
	margin-left:5px;
   margin-right:5px;
}

/* style the top level hover */
.hmenu a:hover, .hmenu ul a:hover{
   text-decoration:none;
   color:#113c4d;

   background-position:left 50px;
   
}
.hmenu :hover > a, .hmenu ul :hover > a {
   text-decoration:none;
   color:#113c4d;
   
   background-position:left 50px;
}


/* ------------------ second level style -------------------- */

/* style the second level background */
.hmenu ul ul a, .hmenu ul ul a:visited {
   background:#dddddd;
	font-weight:normal;
	color:#000000;
}
.hmenu ul ul a.drop, .hmenu ul ul a.drop:visited {
   background:#dddddd;
	font-weight:normal;
	color:#000000;
}
/* style the second level hover */
.hmenu ul ul a:hover{
   background:#c9dee0 ;
	font-weight:normal;
	color:#000000;
}
.hmenu ul ul :hover > a {
   background:#c9dee0 ;
	font-weight:normal;
	color:#000000;
}
.hmenu ul ul a.drop:hover{
   background:#c9dee0 ;
	font-weight:normal;
	color:#000000;
}
.hmenu ul ul :hover > a.drop {
   background:#c9dee0 ;
	font-weight:normal;
	color:#000000;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.hmenu ul ul {
   visibility:hidden;
   position:absolute;
   height:0;
   top:31px;
   left:0; 
   width:149px;
   background-color:#dddddd;
}
/* another hack for IE5.5 */
* html .hmenu ul ul {
   top:31px;
   t\op:31px;
}

/* style the second level links */
.hmenu ul ul a {
   background:#dddddd; 
   color:#000; 
   height:auto; 
   line-height:1em; 
   padding:5px 10px; 
   width:128px;
   border:solid 1px #FFFFFF;
   border-width:1px 1px 1px 1px;
}
.hmenu ul ul a:visited {
   color:#000; 
   height:auto; 
   line-height:1em; 
   padding:5px 10px; 
   width:128px;
   border:solid 1px #FFFFFF;
   border-width:1px 1px 1px 1px;
}
/* yet another hack for IE5.5 */
* html .hmenu ul ul a, * html .hmenu ul ul a:visited {
   width:150px;
   w\idth:128px;
}

/* ------------------ third level style -------------------- */

/* position the third level flyout menu */
.hmenu ul ul ul{
   left:151px; 
   top:-1px; 
   width:149px;
}

/* position the third level flyout menu for a left flyout */
.hmenu ul ul ul.left {
   left:-149px;
}

/* style the third level background */
.hmenu ul ul ul a, .hmenu ul ul ul a:visited {
   background:#dddddd;
	font-weight:normal;
	color:#000000;
}
/* style the third level hover */
.hmenu ul ul ul a:hover {
   background:#c9dee0;
	font-weight:normal;
	color:#000000;
}

/* ------------------ effects style -------------------- */

/* make the second level visible when hover on first level list OR link */
.hmenu ul li:hover ul,
.hmenu ul a:hover ul{
	visibility:visible; 
}

/* keep the third level hidden when you hover on first level list OR link */

.hmenu ul :hover ul ul{
   visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.hmenu ul :hover ul :hover ul{ 
   visibility:visible;
}                      