/* CSS Document */


/*Credits: Web-Kreation */
/*URL: http://web-kreation.com/blog/?p=19 */

/***** Global Settings *****/

* {
  margin: 0;
  padding: 0;
}
 
.texto_menu {
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
}
 
/***** Main Formatting *****/
#menu {
	background: url(../img/img-menu-bg.jpg) repeat-x left top;
	display: block;
	width: 100%;
	margin: 0px auto;
}

/***** Menu Formatting *****/
#menu-links { 
	display: block;
    text-align: center;
    font-size: 120%;
    text-decoration: none;
}

#menu-links ul { 
	width: 900px; /*If your links text is bigger you will have to adjust this value*/
    height: 34px;
	margin: 0 auto;
	padding: 0;
	line-height: 34px; /*same as height. This will center your text verticaly*/
	text-decoration: none;
    background: url(../img/img-menu-bg.jpg) repeat-x left top;
}

/*Left Corner*/
#menu-links ul li.left {
	display: block;
	float: left;
	clear: left;
	width: 20px;
	height: 34px;
    background: url(../img/img-menu-l.jpg) no-repeat left top;
}

/*Right Corner*/
#menu-links ul li.right {
	display: block;
	float: right;
	clear: right;
	width: 20px;
	height: 34px;
    background: url(../img/img-menu-r.jpg) no-repeat right top;
}

#menu-links ul li { 
	width: auto;
	display: inline;
	float: left;
	list-style: none;
	text-align: center;
	text-decoration: none;
}
			
#menu-links ul li a { 
	display: block;
	text-decoration: none;
	text-transform: inherit;
	padding: 0 10px;
	color: #CCCCCC;
}

#menu-links ul li em {
	display: block;
	float: left;
	width: 2px;
	height: 34px;
    background: url(../img/img-menu-sep.jpg) no-repeat left top;
}

/*last separator*/
/*This will add a separator after your last link*/
#menu-links ul li.sep {
	width: 2px;
    background: url(../img/img-menu-sep.jpg) no-repeat left top;
}
		  
#menu-links ul li a:hover, #menu-links ul li a.active { 
	background: transparent url(../img/img-menu-over.jpg) repeat-x center top;
	text-decoration: none;
	Color: white;
}

#menu-links ul li a.active {
	font-weight: bold;
	cursor: default;
}


/******IE hack******/
<!--[if IE]>
<style type="text/css">
p.iepara{ /*Conditional CSS- For IE (inc IE7), create 1em spacing between menu and paragraph that follows*/
padding-top: 1em;
}
</style>
<![endif]-->

