@charset "utf-8";


/*
ul.v-menu{
 width:200px;
 position:absolute;
 background-color:#3399CC;
 border:1px solid #000;
 list-style-type:none;
}
ul.v-menu li a{
 width:200px;
}
ul.v-menu ul:hover {
 
}
ul.v-menu-inside{
 display:none;
 width:200px;
 position:absolute;
 left:200px;
 top:0;
 background-color:#FFF;
 border:1px solid #000;
}
#about a:hover + ul{
 display:block;
}
#a-about{
position:absolute;
 width:200px;
 height:20px;
 border:1px solid blue;
}
*/


#menu {
width: 170px; /* set width of menu */
background: #01c2c9;
border-left:3px solid #00b0b6;
font-size:17px;
float:left;
} 
#menu .light-color{
 *font-size:10px;
 color:#01c2c9;
}
#menu a.light-color:hover{
 color:#FFF;
}

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-top:1px solid #2cccd2;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
color: #FFF;
background:#01c2c9;
text-decoration: none;
}

#menu a:hover {
color: #a00;
background: #fff;
}

#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#menu ul ul ul {
position: absolute;
top:0;
left:100%; /* to position them to the right of their containing block */
width:100%; /* width is based on the containing block */
}


div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{
display:block;
opacity: 0.80;
-moz-opacity: 0.80;
filter: alpha(opacity=80);
}



<!--[if IE]>

body {
behavior: url(csshover.htc); /* call hover behaviour file */
font-size: 100%; /* enable IE to resize em fonts */
} 
#menu ul li {
float: left; /* cure IE5.x "whitespace in lists" problem */
width: 100%;
}
#menu ul li a {
height: 1%; /* make links honour display: block; properly */
} 

#menu a, #menu h2 {
font: bold 0.7em/1.4em arial, helvetica, sans-serif; 
/* if required use em's for IE as it won't resize pixels */
} 

<![endif]-->