/* Menu */
.cchdemenu {
width:80px;
position:relative;
left:0px;
top:0px;
float:left;
z-index: 1000;
}

* html .cchdemenu {
}

/* remove all the bullets, borders and padding from the default list styling */
.cchdemenu ul {
font-family:Arial;
float:none !important;
padding:0 15px;
margin:0;
width:80px;
}

/* hack for IE5.5 */
* html .cchdemenu ul {
}

.cchdemenu ul li a, .cchdemenu ul li a:hover, .cchdemenu ul li a:link {
color:#fff;
}

.cchdemenu ul ul li a, .cchdemenu ul ul li a:hover, .cchdemenu ul ul li a:link {
background-color:#377DCB;
}

/* position relative so that you can position the sub levels */
.cchdemenu li {
position:relative;
display:block;
float:none !important;
height:130% !important;
}

/* get rid of the table */
.cchdemenu table {
position:absolute; 
border-collapse:collapse; 
top:-1px; 
left:0; 
z-index:100; 
font-size: 1em;
border:0 !important;
}

.cchdemenu table td{
border:0 !important;
}

/* style the links */
.cchdemenu a, .cchdemenu a:visited{
font-family:Arial;
display:block;
text-decoration:none;
line-height:130%;
padding: 0px 6px !important;
margin: 0 !important;
}

/* hack for IE5.5 */
* html .cchdemenu a, * html .cchdemenu a:visited {
}

/* style the link hover */
* html .cchdemenu a:hover {
}

/* hack for IE5.5 */
* html .cchdemenu li ul a, * html .cchdemenu li ul a:visited {
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.cchdemenu ul ul {
visibility:hidden;
position:absolute;
bottom:16px;
left:0px;
width:160px;
padding:0 !important;
margin:0 !important;
}

.cchdemenu ul li {
background: url("") !important;
}

* html .cchdemenu ul ul {
}

/* make the second level visible when hover on first level list OR link */
.cchdemenu ul :hover ul{
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.cchdemenu ul :hover ul ul{
visibility:hidden;
position:absolute;
bottom:0px;
left:-160px; 
}

* html .cchdemenu ul :hover ul ul{
}

/* keep the fourth level hidden when you hover on second level list OR link */
.cchdemenu ul :hover ul :hover ul ul{
visibility:hidden;
position:absolute;
bottom:0px;
left:-160px; 
}

* html .cchdemenu ul :hover ul :hover ul ul{
}

/* make the third level visible when you hover over second level list OR link */
.cchdemenu ul :hover ul :hover ul{ 
visibility:visible;
}

/* make the fourth level visible when you hover over third level list OR link */
.cchdemenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}