
	#mainMenu{
		font:"Trebuchet MS";
/*		background-color: #FFF;	*/ /* Background color of main menu */
		font-family: "Trebuchet MS";
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Fonts of main menu items */
		font-size:0.8em;	/* Font size of main menu items */
		border-bottom:1px solid #000000;	/* Bottom border of main menu */
		height:30px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
/*		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; */
	}
	#mainMenu a{

		padding-left:17px;	/* Spaces at the left of main menu items */
		padding-right:17px;	/* Spaces at the right of main menu items */
		font-weight:bold;
		/* Don't change these two options */
		position:absolute;
		bottom:-1px;
		*bottom:-2px;
		line-height:25px;
		text-decoration: none;
		color: #000000;  /* color texto del link */

	}



	#mainMenu a img {
	border:0;
	}


	#submenu{
		font:"Trebuchet MS";
		font-family: "Trebuchet MS";		
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of sub menu items */
		background-color:#CDE8FB; 	/* Background color of sub menu items */
		height:22px;
		width:100%;	/* Don't change this option */
		
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
/* Border options */
		background-image:url(../imgs/menu/tabmenu_left.png);
		background-position:bottom left;
		background-repeat:no-repeat;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	#mainMenu .activeMenuItem img{
		position:absolute;
		bottom:0px;
		*bottom:-1px;
		right:0px;
		*right:-1px;
	}
	/*
	Style attributes of inactive menu items
	*/
	#mainMenu .inactiveMenuItem{		
		color: #FFFFFF;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#submenu a{	
		text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		padding-left:8px;	/* Space at the left of each sub menu item */
		padding-right:8px;	/* Space at the right of each sub menu item */
		color: #000;	/* Text color */
		font-size:0.8em; 
	}
	
	#submenu a:hover{
		color:#0000FF; 	/* Red color when the user moves the mouse over sub menu items */
	}
