/* CSS Document */

/*************** Navigation styles **************/


#Navigation{
height:40px; border:none;
}

/* remove the bullets, padding and margins from the lists */
.menu ul {
list-style-type:none;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;
color: #FFA500;
}


/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px; 
border-right:1px #000000 solid;
z-index:100;}

.menu ul li.last{
      border-right:0px;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
width:112px;
height:39px;
padding: 6px 0px 5px 0px;
margin:0px 0px 0px 0px; 
text-decoration:none;
font-family:Verdana; 
text-transform:capitalize; 
color:#FFA500;
font-weight:590;
font-size:12px;
text-align:center;
line-height:26px;
}

.menu ul li.double-line a {
line-height:13px;
} 

html>body .menu a, .menu :visited { height:28px}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0px;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}


/* style the top level when current or hover */
/*.menu ul li.current a, .menu a:hover, .menu ul li:hover a, .menu ul li a:hover {*/
.menu ul li:hover {
     background-image:url("../images/pressedbutton.png");
      background-repeat:repeat;
      overflow:visible;
      visibility:visible;
}

.menu ul li.current{
     background-image:url("../images/pressedbutton.png");
      background-repeat:repeat;}

.menu ul li.last a{
      border-right:0px;
      background-color : transparent;
      background-image: url("../images/tr.gif"); 
      background-position: top right;
      background-repeat:no-repeat;
}

.menu ul li.first a{
      border-right:0px;
      background-color : transparent;
      background-image: url("../images/tl.gif"); 
      background-position: top left;
      background-repeat:no-repeat;
}

.menu ul ul li a {
   padding: 10px 0px 0px 0px;
   font-size:11px; 
   text-transform:capitalize; 
   line-height:24px;
}
.menu ul ul li.double-line a {
    line-height:12px;
} 
   
/* style all the submenu links */
.menu ul ul li, .menu ul ul a:link, .menu ul ul a:visited  {
   text-decoration:none;
   font-family:Verdana; 
   text-transform:capitalize; 
   font-size:11px; 
   font-weight:normal;
   vertical-align:middle;
   padding:0px 0px 0px 0px;
   z-index:1;

}

a.top-offset {padding-top : 45px;}

/* style the submenu */
.menu ul ul li{
    padding-top:0px;
    border-top-style:solid;
    border-top-color:#000000;
    border-top-width:1px;
    background-color: #3c3c3c;
 /*   background-image:url("../images/shadedbutton.gif");
    background-repeat:repeat;
*/
}
.menu ul ul li.current a{
     color:#DDDDDD;
}
/* style all the submenu links (hover) */
.menu ul ul a:hover ,.menu ul ul li.current{
      color:#DDDDDD;
      text-transform:capitalize; 
      background-image:url("../images/shadedbutton3.png");
      background-repeat:repeat;
}





