/* CSS Menu **/
.menu {
	height:357px;
	background: url(../imagenes/fd_menu.png) left top no-repeat;
	padding:12px 0 0 5px;
	margin-bottom: 10px;
}
.menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width:170px; /* Width of Menu Items */
	font-size:12px;
}
.menu ul li {
	position: relative;
	height:22px;
	background: none;
	z-index:100;
	margin:1px;
	list-style-image: none;
	list-style:none;
}
/*Sub level menu items */
.menu ul li ul {
	position: absolute;
	/*width:160px;*/ /*sub menu width*/
	top: 0;
	visibility: hidden;
	background:#286C9A;
overflow: hidden;
}
/* Sub menu links style */
.menu ul li a {
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	text-decoration: none;
	padding-top:2px;
	padding-left: 5px;
	padding-bottom: 5px;
	height:18px;
	background: url(../imagenes/bd_bottom_menu.jpg) left bottom repeat-x;
}
.menu ul li a:hover {
	background: #6295B8;
	text-decoration:none;
}
.menu .submenu { background: #286C9A url(../imagenes/arrow_list.gif) no-repeat center right; }
/* Holly Hack for IE \*/
* html .menu ul li {
	float: left;
	height: 1%;
}
* html .menu ul li a { height: 1%; }
/* End */
/* solo para IE7 */
.menu ul li a { width: 100%; }
