/* Navigation */



/* style the outer div to give it width */
.menu1 {
width:900px;
font-size: 11px;
}

/* style the outer div to give it width */
* html .menu1 {
width: 900px;
font-size: 11px;
padding-left:-10px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu1 ul {
padding:0;
margin:0;
list-style-type:none;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu1 a, * html .menu1 a:visited {

height: 27px;
width: 120px;
w\idth:120px;
padding-right:0px;
}



/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu1 li {
float:left;
position:relative;
}


/* li menu top */
.navitop {
display:block;
font-size:11px;
text-decoration:none;
color: #434d59;
font-weight: bold;
margin-bottom: 0px;
height:27px;
border:0px solid #fff;
border-width:0px 0px 0 0;
padding-right:37px;
line-height:27px;
}

/* style the links for the top level */
.menu1 a, .menu1 a:visited {

display:block;
font-size:11px;
text-decoration:none;
color: #434d59;
font-weight: bold;
margin-bottom: 0px;
height:27px;
border:0px solid #fff;
border-width:0px 0px 0 0;
padding-left:0px;
padding-right:37px;
line-height:27px;
}



/* a hack so that IE5.5 faulty box model is corrected */
* html li:hover ul, li.over ul{ display: block; }
}

/* style the second level background */
.menu1 ul ul a.drop, .menu1 ul ul a.drop:visited {
background-image: url(../images/bottom.png);
background-repeat: no-repeat;
height: 27px;
width: 120px;

}
/* style the second level hover */
.menu1 ul ul a.drop:hover{
background-image: url(../images/bottom.png);
background-repeat: no-repeat;

height: 27px;
width: 120px;
color:#000000;
}

.menu1 ul ul :hover > a.drop {
background-image: url(../images/bottom.png);
background-repeat: no-repeat;
height: 27px;
width: 120px;
color:#000000;
}

/* style the third level background */
.menu1 ul ul ul a, .menu1 ul ul ul a:visited {
background-image: url(../images/bottom.png);
background-repeat: no-repeat;
height: 27px;
width: 120px;
}

/* style the third level hover */
.menu1 ul ul ul a:hover {
/*background:#f0f0f0;*/
}

.menu1 ul ul ul :hover > a {
/*background:#f0f0f0;*/
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu1 ul ul {
visibility:hidden;
position:absolute;
height:0;

top:27px;
left:0;
width:120px;
}

/* another hack for IE5.5 */
* html .menu1 ul ul {
top:27px;
t\op:27px;
}

/* position the third level flyout menu */
.menu1 ul ul ul{
left:120px;
top:0;
width:120px;
}
/* position the third level flyout menu for a left flyout */
.menu1 ul ul ul.left {
left:-120px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu1 table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu1 ul ul a, .menu1 ul ul a:visited {
background-image: url(../images/bottom.png);
background-repeat: no-repeat;
height: 27px;


width: 120px;
font-size: 10px;
color:#434d59;
line-height:27px;
text-align:center;


}



/* yet another hack for IE5.5 */
* html .menu1 ul ul a{

width:120px;
w\idth:120px;
}

/* style the top level hover */
.menu1 a:hover, .menu1 ul ul a:hover{
color:#000000;
/*background:#f0f0f0;*/
}

.menu1 :hover > a{
color:#000000;
/*background:#f0f0f0;*/
}

.menu1 ul ul :hover > a {
color:#000000;
/*background:#f0f0f0;*/
}

/* make the second level visible when hover on first level list OR link */
.menu1 ul li:hover ul,
.menu1 ul a:hover ul{
visibility:visible;
}

/* make the second level visible when hover on first level list OR link */
.menu1 ul li:hover ul,
.menu1 ul a:hover ul{
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu1 ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu1 ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu1 ul :hover ul :hover ul{

visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu1 ul :hover ul :hover ul :hover ul {
visibility:visible;
}