/* style the outer div to give it width */
.artmenu {
width:500px; 
font-size:1.00em;
padding-bottom:40px;
margin-left: 20px;
}
/* remove all the bullets, borders and padding from the default list styling */
.artmenu ul {
padding:0;
margin:0;
list-style-type:none;
}
.artmenu ul ul {
width:110px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown artmenu positon */
.artmenu li {
float:left;
width:120px;
position:relative;
}
/* style the links for the top level */
.artmenu a, .artmenu a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#fff; 
width:109px; 
height:30px; 
border:1px solid #fff; 
border-width:1px 1px 0 0; 
background:#53708B; 
padding-left:10px; 
line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
.artmenu a, .artmenu a:visited {
width:109px;
w\idth:109px;
}

/* style the second level background */
.artmenu ul ul a.drop, .artmenu ul ul a.drop:visited {
 background:#CACED1;
}
/* style the second level hover */
.artmenu ul ul a.drop:hover{
background:#c9ba65;
text-decoration: none;
}
.artmenu ul ul :hover > a.drop {
background:#718BA0;
text-decoration: none;
}
/* style the third level background */
.artmenu ul ul ul a, .artmenu ul ul ul a:visited {
background:#e2dfa8;
text-decoration: none;
}
/* style the third level hover */
.artmenu ul ul ul a:hover {
background:#b2ab9b;
text-decoration: none;
}
.artmenu ul ul ul :hover > a {
background:#b2ab9b;
text-decoration: none;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.artmenu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;
left:0; 
width:111px;
}
/* another hack for IE5.5 */
.artmenu ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout artmenu */
.artmenu ul ul ul{
left:161px; 
top:0;
width:150px;
}
/* position the third level flyout artmenu for a left flyout */
.artmenu ul ul ul.left {
left:-161px;
}

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

/* style the second level links */
.artmenu ul ul a, .artmenu ul ul a:visited {
background:#d4d8bd; 
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:140px
/* yet another hack for IE5.5 */
}
.artmenu ul ul a{
width:150px;
w\idth:140px;
}


/* style the top level hover */
.artmenu a:hover, .artmenu ul ul a:hover{
color:#fff; 
background:#949e7c;
}
.artmenu :hover > a, .artmenu ul ul :hover > a {
color:#fff;
background:#949e7c;
}

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