/* Clases para toolTip */
.tooltipFondosMutuos
{
	background-color: #eee;
	border: 1px solid #111;
	display: none;
	padding: 5px;
}

.tooltipOperacionesFondosMutuos
{
	background-color: #eee;
	border: 1px solid #111;
	border-radius: 5px;
	display: none;
	padding: 5px;
	position: absolute;
	width: auto;
	/* outline radius for mozilla/firefox only */
	-moz-box-shadow:0 0 10px #000;
	-webkit-box-shadow:0 0 10px #000;
}

.tooltip_FFMM
{
	background-color: #eee;
	border: 1px;
	border-color: #000000;
	color: #fff;
	display: none;
	height: 127px;
	width: 150px;
	padding-right: 2px;
	padding-left: 2px;
	padding-top: 2px;
}

/* Clases para scrollable */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/

.scrollable
{
	/* required settings */
	height: 210px;
	overflow: hidden;
	position: relative;
	width: 512px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items
{
	clear: both;
	height: 210px;
	position: absolute;
	width: 2048px;
}

/* position and dimensions of the navigator */
.navi
{
	height: 15px;
	margin-left: 250px;
	width: 300px;
}


/* items inside navigator */
.navi a
{
	background: url(../../images/wizard/b_icono_navegador.png) 0 0 no-repeat;
	display: block;
	float: left;
	font-size: 1px;
	height: 8px;
	margin: 4px;
	width: 8px;
}

/* mouseover state */
.navi a:hover
{
	background-position: 0 -8px;
	cursor: pointer;
}

/* active state (current page state) */
.navi a.active
{
	background-position: 0 -16px;
}


/* Clases para Noticias */
/************************/
.scrollableNotiV
{
	/* required settings */
	position: relative;
	overflow: hidden; /* vertical scrollables have typically larger height than width but not now */
	height: 385px;
	width: 150px;
}

/* root element for scrollable items */
.scrollableNotiV .itemsNotiV
{
	position: absolute; /* this time we have very large space for the height */
	height: 1000px;
	width: 150px;
}

/************************/
.scrollableNotiH
{
	/* required settings */
	position: relative;
	overflow: hidden; /* vertical scrollables have typically larger height than width but not now */
	height: 510px;
	width: 550px;
}

/* root element for scrollable items */
.scrollableNotiH .itemsNotiH
{
	position: absolute; /* this time we have very large space for the height */
	height: 800px;
	width: 550px;
}


.textoNoti
{
	color: #666666;
	font-family: Arial;
	font-size: 10px;
}

.tituloNoti
{
	color: #c00;
	font-family: Arial;
	font-size: 10px;
}
.tituloNotiV
{
	color: #181DFF;
	font-family: Arial;
	font-size: 10px;
}

.ItemNoti
{
	border-bottom: 1px solid #A3A2A2;
}
/* FIN - Clases para Noticias */	

