/*** OPEN MENU ***/#menu{	margin: 0;	padding: 0;	background-color: #CFCFCF;	/*background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#000000), to(#45484d), color-stop(0.1,#45484d));	background-image: -moz-linear-gradient(top, #262626 1%, #444444 10%, #444444 49%);*/	height: 50px;	width: 470px;	display: inline-block;	border: 2px solid #999999;	/*** ROUNDED CORNERS ***/	-moz-border-radius: 8px;	-webkit-border-radius: 8px;	border-radius: 8px;}/*** PARENT ITEM ***/#menu LI.parent{	list-style: none;	line-height: 2.5em;	position: inherit;	z-index: 98;	float: left;	padding: 0px 6px;	margin: 8px 0 0 10px;	cursor: pointer;	/*** ROUNDED CORNERS ***/	-moz-border-radius: 6px;	-webkit-border-radius: 6px;	border-radius: 6px;}#menu LI.parent:hover{	background-color: #AAAAAA;	/*background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#262626), to(#444444), color-stop(0.1,#444444));	background: -moz-linear-gradient(top, #262626 1%, #444444 10%, #444444 49%);*/	color:#000;		/*** ROUNDED CORNERS ***/	-moz-border-radius: 6px;	-webkit-border-radius: 6px;	border-radius: 6px;}#menu LI.parent A{	color: #000;	font-weight: bold;	font-size: 1.25em;	text-decoration: none;	padding-top: 5px;	padding-bottom: 5px;}/*** THE OPENING EVENT, WHEN MOUSE OVERS THE BUTTON ***/#menu LI.parent:hover > ul  {display:block; margin-top:-4px;} /*** THE CONTETN THAT OPENS ***/#menu ul{ 	background: #444; 	font-size:14px;	display:none; 	position:absolute; 	top:100%; 	left: 0; 	padding:3px;	z-index: 90;	text-align:left;	width:200px;		/*** ROUNDED CORNERS ***/	-moz-border-radius-topright: 8px;	-moz-border-radius-bottomright:8px;	-moz-border-radius-bottomleft: 8px;	-webkit-border-top-right-radius: 8px;	-webkit-border-bottom-left-radius: 8px;	-webkit-border-bottom-right-radius: 8px;	border-radius: 0 8px 8px 8px; /* CSS3 */}/*** CONTENT CONTAINER ***/#menu UL LI{display:block; list-style:none; margin-bottom:2px;}#menu UL LI A{	display:block; 	color:#444444;	background:#CFCFCF;  	text-decoration:none; 	padding:0px 10px;				/*** ROUNDED CORNERS ***/	-moz-border-radius: 6px;	-webkit-border-radius: 6px;	border-radius: 6px; /* CSS3 */}#menu UL LI A:hover{	display: block;	color: #fff;	background: #919597;	text-decoration: none;	padding-top: 10px;	padding-bottom: 10px;}