/*** ESSENTIAL STYLES ***/
.v-menu, .v-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.v-menu {
	padding: 0 0 0 10px;
	line-height:	1.0;
	width: 150px;
}
.v-menu ul {
	padding: 0 2px 0 2px;
	margin: 0;
	border: 1px solid #ccc;
	width: 150px;
	background-color: #ffffff;
	position:		absolute;
	top:			-999em;
}
.v-menu ul li {
	width:			100%;
}
.v-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.v-menu li {
	display:		block;
	float:			left;
	position:		relative;
	width:			100%;
}
.v-menu a {
	display:		block;
	position:		relative;
	overflow: auto; /*force hasLayout in IE7 */
	padding: 0;
	margin: 0;
	border: 0

}
.v-menu li:hover ul,
.v-menu li.sfHover ul {
	left:			150px;
	right: 0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.v-menu li:hover li ul,
ul.v-menu li.sfHover li ul {
	top:			-999em;
}
ul.v-menu li li:hover ul,
ul.v-menu li li.sfHover ul {
	left:			150px; /* match ul width */
	top:			0;
}
ul.v-menu li li:hover li ul,
ul.v-menu li li.sfHover li ul {
	top:			-999em;
}
ul.v-menu li li li:hover ul,
ul.v-menu li li li.sfHover ul {
	right: 0px;
	left:			150px; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.v-menu {
	margin-bottom: 0;
}

.v-menu a {
	border: none;
	text-decoration: none;
	padding: 2px 5px 2px 15px;
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bolder;
	color: #666666;
	background: url("../images/icon_01.gif") left center no-repeat;
}

.v-menu a,.v-menu a:visited {
	/* visited pseudo selector so IE6 applies text colour*/
	color: #666666;
}

.v-menu li {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0
	
}

.v-menu li li a {
	background: none;
}

.v-menu li li li {
	background: none;
}

.v-menu a:hover  {
	background: url("../images/icon_02.gif") left center no-repeat;
	outline: 0;
}

.v-menu a:focus,.v-menu a:hover,.v-menu a:active {
	outline: 0;
	color: black
}

/*** arrows **/
.v-menu .sf-with-ul {
	min-width: 1px;
	/* trigger IE7 hasLayout so spans position accurately */
	background: url(../images/arrow_r.gif) no-repeat center right;
}

.sf-sub-indicator {
	position: absolute;
	display: block;
	right: .75em;
	top: 1.05em; /* IE6 only */
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url('../images/arrow_r.gif') no-repeat;
	/* 8-bit indexed alpha png. IE6 gets solid image only */
}

a>.sf-sub-indicator { /* give all except IE6 the correct values */
	top: .8em;
	background-position: right center;
	/* use translucent arrow for modern browsers*/
}

/* apply hovers to modern browsers */
a:focus>.sf-sub-indicator,a:hover>.sf-sub-indicator,a:active>.sf-sub-indicator,li:hover>a>.sf-sub-indicator,li.sfHover>a>.sf-sub-indicator
	{
	background-position: -10px -100px;
	/* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.v-menu ul .sf-sub-indicator {
	background-position: right center;
}

.v-menu ul a>.sf-sub-indicator {
	background-position: right center;
}

/* apply hovers to modern browsers */
.v-menu ul a:focus>.sf-sub-indicator,.v-menu ul a:hover>.sf-sub-indicator,.v-menu ul a:active>.sf-sub-indicator,.v-menu ul li:hover>a>.sf-sub-indicator,.v-menu ul li.sfHover>a>.sf-sub-indicator
	{
	background-position: right center;
	/* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background: url('../images/shadow.png') no-repeat bottom right;
	padding: 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}

.sf-shadow ul.sf-shadow-off {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0
}

/**** separadores agregados por jc ****/
.v-menu li.separator {
	margin-bottom: 3px;
	padding-bottom: 3px;
	border-bottom-style: solid;
	border-bottom-color: #A9A9A9;
	border-bottom-width: 1px;
}
