/* CSS Document */
/****** DROP DOWN MENU STYLER *****/
#menu_tech {
	width:100px;
	height:17px;
	float:right;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-decoration:none;
	color:#FFFFFF;
	margin-top:3px;
	padding-top:2px;
} 

#menu_tech ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu_tech a, #menu_tech h2 {
display: block;
border-style: none;
margin: 0;
}
#menu ul ul li {
 padding: 2px 3px;
}

#menu_tech h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu_tech a {
color: #FFFFFF;
background: #a3ac88;
text-decoration: none;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}

#menu_tech a:hover {
color: #FFFFFF;
background: #cbd6af;
}



/**position the menus**/

#menu_tech li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#menu_tech 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 */
}



/** reveal and hide **/

div#menu_tech ul ul,
div#menu_tech ul ul ul,
div#menu_tech ul ul li:hover ul ul
{display: none;}

div#menu_tech ul li:hover ul,
div#menu_tech ul ul li:hover ul,
div#menu_tech ul ul ul li:hover ul
{display: block;}





/***** END MENU STYLER *****/
