﻿/*ESTILOS ACORDEON*/

.arrowlistmenu{
	width: 276px; /*width of accordion menu*/
	float:left;
	margin-top:20px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	background-image:url("../imagenes/1.gif");
	background-repeat:no-repeat;
	margin-bottom:0px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	cursor: pointer;
	height:36px;
	font:10pt Arial;
	color: #305c7f;
	text-align:left;
	width: 240px;
	margin-left:36px;
}
.arrowlistmenu .menuheader a
{
	background-repeat:no-repeat;
	font:11pt Arial;
	color: #305c7f;
	height:29px;
	display: block;
	text-decoration:none;
	vertical-align:middle;
	padding-top:7px;
	text-transform:uppercase;
	text-align:left;
	width: 235px;
	padding-left:5px;
}
.arrowlistmenu .menuheader a:hover
{
	background-repeat:no-repeat;
	color: #305c7f;
	height:29px;
	text-align:left;
	width: 235px;
	padding-left: 5px;
	vertical-align:middle;
	padding-top:7px;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	height:36px;
	color: #ffffff;
	text-align:left;
	width: 276px;
	margin-left:36px;
	background-image:url("../imagenes/2.gif");
	background-repeat:no-repeat;
}
.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type:none;
	margin: 0;
	padding: 0;
	margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}
.arrowlistmenu ul li{
	padding-bottom: 2px; /*bottom spacing between menu items*/
	text-align:left;
	width:233px;
	float:left;
	margin-left:18px;
}
.arrowlistmenu ul li a
{
	font:9pt Arial;
	color: #ffffff;
	display: block;
	padding: 2px 0 0 7px;
	text-decoration: none;
	text-align:left;
	background-color:Gray;
	margin-left:18px;
	width:233px;
	float:left;
}
.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background-color:Gray;
	color: #ffffff;
	text-align:left;
	width:233px;
	font-weight:bold;
	margin-left:18px;
	float:left;
	padding: 2px 0 0 7px;
}
