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