/* Chrome Drop Down Menu - Author: Dynamic Drive (http://www.dynamicdrive.com) */
/* 1944.com lud: 16-Aug-2006 10:44pm */

/* ######### Style for Main Menus ######### */
.chromestyle {
 width: 99.5%;
 font-weight: bold;
 font-size: 75%;
 margin-top: 5px;
 margin-left: 1px;
}
.chromestyle ul {
 border: 1px solid #BBB;
 width: 100%;
 background: url(chromebg1.gif) center center repeat-x;
 padding: 4px 0;
 margin: 0;
 text-align: center;
}
.chromestyle ul li {
 display: inline;
}
.chromestyle ul li a {
 color: #494949;
 padding: 4px 8px;
 margin: 0;
 text-decoration: none;
 border-left: 1px solid #DADADA;
 border-right: 1px solid #DADADA;
}
.chromestyle ul li a.current {
 color: gray;      /* what does this do?? */
}
.chromestyle ul li span#dm {
 background: url(chromebg4-over.gif) center center repeat-x;
}
.chromestyle ul li span#ndm {
 padding: 4px 8px;
 margin: 0;
 text-decoration: none;
 border-left: 1px solid #DADADA;
 border-right: 1px solid #DADADA;
 background: url(chromebg4-over.gif) center center repeat-x;
}
.chromestyle ul li a:hover {
 background: url(chromebg1-over.gif) center center repeat-x;
}
.chromestyle ul li a[rel]:after {   /*HTML to indicate drop down link*/
 /* content: " v"; */
 content: " " url(chromebrndn.gif); /*uncomment this line to use an image instead*/
}


/* ######### Style for Drop Down Menu ######### */
.dropmenudiv {
 position: absolute;
 margin-top: 3px;
 top: 0;
 border-top: 1px solid #BBB;
 border-right: 1px solid #BBB;
 border-left: 1px solid #BBB;
 border-bottom: 0;
 font: normal 75% Verdana, helvetica, sans-serif;
 line-height: 18px;
 z-index: 100;
 background-color: white;
 width: 250px;
 visibility: hidden;
 filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}
.dropmenudiv a {
 width: auto;
 display: block;
 text-indent: 3px;
 border-bottom: 1px solid #BBB;
 padding: 2px 0;
 text-decoration: none;
 font-weight: bold;
 color: black;
}
* html .dropmenudiv a { /*IE only hack*/
 width: 100%;
}
.dropmenudiv a:hover {
 background-color: #F0F0F0;   /* what does this do?? */
}