@CHARSET "ISO-8859-1";

/*MENU VERTICAL*/
#accordian {
	margin: 15px auto;
	width: 100%;
}

/*heading styles*/
#accordian h3 {
	font-size: 12px;
	line-height: 34px;
	padding: 0;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background-color: #EEECEC;
	/*background: linear-gradient(#DBDBDB, #002535);*/
	/*margin-botton: 10px;*/
}

/*heading hover effect*/
#accordian h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

#accordian ul ul {
	list-style-type: none;
	padding: 0;
	margin-top: -5px;
}

#accordian ul ul li a {
	color: black;
	text-decoration: none;
	font-size: 11px !Important;
	line-height: 27px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
	background-color: #F7F7F7;
	margin-top: 10px;
}

/*hover effect on links*/
#accordian ul ul li a:hover {
	background-color: #D7EEBD;
	border-left: 5px solid #98BA3F;
}
.activeItem {
	background-image: url("../resources/imagenes/iconos/play-mini.png");
	background-repeat: no-repeat;
	background-position: 150px 7px;
	background-position-x: 150px;
	background-position-y: 7px;
	/* background-color: #D7EEBD !Important; */
}

/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}

#accordian li.active ul {
	display: block;
}

.tutorialMenu {
	padding: 0px 0;
	margin: -10px 1px 12px -20px;
	list-style-type: none;
}

.tutorialMenu h3 {
	margin: 5px 0;
	padding: 0;
}