/**********************/
/*  2. DROP-DOWN MENU */
/**********************/

.dropnav {
   width:754px; 
   height:27px; 
   position:relative; 
   z-index:1000 /*IE6*/;
/*   border-right:1px solid #000; */
   font-family:arial, sans-serif;
}
/* hack to correct IE5.5 faulty box model */
* html .dropnav {
   width:755px; 
   w\idth:754px;
}

/* remove all the bullets, borders and padding from the default list styling */
.dropnav ul {
   padding:0;
   margin:0;
   list-style-type:none;
}
.dropnav ul ul {
   width:119px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropnav li {
   float:left;
   width:119px;
   position:relative;
}
/* style the links for the top level */
.dropnav a, .dropnav a:visited {
   display:block;
   font-size:12px;
   text-decoration:none; 
   color:#ffffff; 
   width:148px; 
   height:27px; 
   border:0px solid #150139; 
   border-width:0px 0px 0px 1px; 
   background:#665e72; 
   padding-left:10px; 
   line-height:26px; 
   font-weight:bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .dropnav a, * html .dropnav a:visited {
   width:115px; 
   w\idth:114px;
}
.dropnav a:hover {
   text-decoration:none; 
}

/* style the second level background */
.dropnav ul ul a.droplevel2, .dropnav ul ul a.droplevel2:visited {
   background:#827c8b url("https://www.imagetrend.com/chsw/imagesupload/arrow_inactive.gif") no-repeat 130px center;
}
/* style the second level hover */
.dropnav ul ul a.droplevel2:hover{
   background:#665e72 url("https://www.imagetrend.com/chsw/imagesupload/arrow_hover.gif") no-repeat 130px center;
}
.dropnav ul ul :hover > a.droplevel2 {
   background:#665e72 url("https://www.imagetrend.com/chsw/imagesupload/arrow_hover.gif") no-repeat 130px center;
}
/* style the third level background */
.dropnav ul ul ul a, .dropnav ul ul ul a:visited {
   background:#827c8b;
}
/* style the third level hover */
.dropnav ul ul ul a:hover {
   background:#665e72;
   color:#ffffff;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.dropnav ul ul {
   visibility:hidden;
   position:absolute;
   height:0;
   top:27px;
   left:0; 
   width:149px;
   border-top:1px solid #150139;
}

/* another hack for IE5.5 */
* html .dropnav ul ul {
   top:27px;
   t\op:27px;
}

/* position the third level flyout menu */
.dropnav ul ul ul{
   left:149px; 
   top:-1px; 
   width:149px;
}

/* position the third level flyout menu for a left flyout */
.dropnav ul ul ul.left {
   left:-149px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.dropnav table {
   position:absolute; 
   top:0; 
   left:0; 
   border-collapse:collapse;;
}

/* style the second level links */
.dropnav ul ul a, .dropnav ul ul a:visited {
   background:#827c8b; 
   color:#ffffff; 
   height:auto; 
   line-height:1em; 
   padding:5px 10px; 
   width:128px;
   border-width:0 1px 1px 1px;
}
/* yet another hack for IE5.5 */
* html .dropnav ul ul a, * html .dropnav ul ul a:visited {
   width:129px;
   w\idth:128px;
}

/* style the top level hover */
.dropnav a:hover{
   color:#150139; 
   background:#827c8b;
}
.dropnav ul ul a:hover{
   color:#ffffff; 
   background:#665e72;
}
.dropnav :hover > a{
   color:#150139; 
   background:#827c8b;
}
.dropnav ul ul :hover > a {
   color:#ffffff; 
   background:#665e72;
}

/* make the second level visible when hover on first level list OR link */
.dropnav ul li:hover ul, .dropnav ul a:hover ul{
   visibility:visible;  
}

/* keep the third level hidden when you hover on first level list OR link */
.dropnav ul :hover ul ul{
   visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.dropnav ul :hover ul :hover ul{ 
   visibility: visible; 
}



