/* CSS MENU */


/********************************************************************
 * MENUES ***********************************************************
 ********************************************************************/
	.contentMenu {
		margin: 0 0 0 7px;
		overflow: visible;
		padding-left: 0px;
		padding-top: 0px;
		text-align: left;
		/*clear: both;*/
		/*position: absolute;
		left: 30px;
		top: 105px;*/
	}


/********************************************************************
 * BOTONES MENU *****************************************************
 ********************************************************************/
	/* div que contiene el enlace */
	.menuItemClass { 
		width: 119px;	
		height: 20px;
		border: 0px #f1f1f1 solid;
		vertical-align: middle;
		text-align: center;
		margin: 0px 2px 0px 0px;
		padding: 8px 0px 0px 0px;
		text-decoration: none;
		font-size: 11px;
		/*float: left;*/
		cursor: hand;
	}

	/* div que contiene el enlace - seleccionado */
	.menuItemClass_marcado {
		background-color: #01A0C7;
		width: 119px;	
		height: 20px;
		vertical-align: middle;
		border: 0px #f9f9f9 solid;
		text-align: center;
		margin: 0px 2px 0px 0px;
		padding: 8px 0px 0px 0px;
		text-decoration: none;
		font-weight: bold;
		color: #ffffff;
		font-size: 11px;
		float: left;
	}
	
	/* div que contiene el enlace - hover */
	.menuItemClass_over {
		background-color: #01A0C7;
		width: 119px;	
		height: 20px;
		vertical-align: middle;
		border: 0px #f9f9f9 solid;
		text-align: center;
		margin: 0px 2px 0px 0px;
		padding: 8px 0px 0px 0px;
		text-decoration: none;
		color: #FFE900;
		font-size: 11px;
		float: left;
	}	
	
	/* div que contiene el enlace - hover  (se juega con el anterior y con éste si queremos diferenciar los que tienen desplegable y los que no) */
	.menuItemClass:hover {
		background-color: #01A0C7;
		color: #FFE900;
	}

	/* enlaces del menu */
	.m:link, .m:visited {
		color: #DFDFDF;
		height: 30px;
		vertical-align: middle;
		text-decoration: none;
		padding: 0px 0px 0px 0px;
		cursor: hand;
	}
	
	/* enlaces del menu - hover */
	.m:hover {
		color: #FFE900;
		background-color: #01A0C7;
	}
	.m:hover .menuItemClass,.m:hover .menuItemClass_marcado {
		color: #FFE900;
		background-color: #01A0C7;
	}


/********************************************************************
 * DESPLEGABLES ( SUBMENUES ) ***************************************
 ********************************************************************/
	/* 
	 * ATENCION: COLOCACIÓN DE LOS SUBMENUES
	 * Esto está en la base de datos en la tabla 'tblMenuCfg'
	 * 
	 * /
	
	/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
	.mtDropdownMenu {
		position: absolute;
		overflow: hidden;
		left: -1000px;
		top: -1000px;
	}

	/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
	.mtDropdownMenu .content {
		position: relative;
		left: 0px;
	}

	/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
	.mtDropdownMenu .items {
		width: 120px;
		position:relative;
		left: 0px; 
		top: 0px;
		border: 1px solid #ACABA6;
		z-index: 2;
		/*width: 310px;*/
		padding: 0px 0px 0px 0px;
	}

	.mtDropdownMenu.top .items {
		/*border-top:none;*/
		text-decoration: none;
	}

	/* each TR.item is one menu item */
	.mtDropdownMenu .item {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		/* color:  #375880;/*#306F62; /*#616674;*/
		color: #004F75;		
		text-decoration: none;
		
		/* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
		border: 0px #000 none;
		cursor: pointer;
		/*padding-top: 5px;*/
	}

	/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
	.mtDropdownMenu .item.hover, .item:hover {
		color: #009CC4;
	}

	/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
	/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
	.mtDropdownMenu .background {
		position:absolute;
		left:0px;
		top:0px;
		z-index:1;
		-moz-opacity: 0.96;
		filter: alpha(opacity=96);
	}

	/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
	.mtDropdownMenu .shadowRight {
		position:absolute;
		z-index:3;
		top:3px; width:2px;
		-moz-opacity: 0.0;
		filter:alpha(opacity=00);
	}

	/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
	.mtDropdownMenu .shadowBottom {
		position:absolute;
		z-index:1;
		left:3px; height:2px;
		-moz-opacity:0.00;
		filter:alpha(opacity=0);
	}

	/* this is either the dingbat that indicates there is a submenu, or a spacer gif in it's place. We give it extra margin to create some space between the text and the dingbat */
	.mtDropdownMenu .item img {
		/*margin-left: 10px;*/
	}

/********************************************************************
 * MENU ACCESIBLE ***************************************************
 ********************************************************************/

	.menuAccesible{
		display: none;
		text-align: left;
		color: #cccccc;
	}
	.menuAccesible a {
		color: #FFFFFF;
	}

	.menuAccesible a:hover {
		color: #FFE900;
		font-weight: bold;
	}