@charset "utf-8";
/* CSS Document */

/************************START QUICKLINKS************************************/

#quickLinks { /*CREAMOS EL ESPACIO establecemos las propiedades de la caja donde se encuentran*/
	height: 30px;
	position: absolute;
	right: 70px;
	top: 42px;
	width: 110px;
}
ul#quickLinks, ul#quickLinks li { /*les damos estas propiedades*/
	margin: 0;
	padding: 0;
}
#quickLinks li {
	background: none repeat scroll 0 0 transparent;
	list-style: none outside none;/*elimino los bullets*/
}
ul#quickLinks li.home, ul#quickLinks li.contact, ul#quickLinks li.siteMap {
	position: absolute;
	height: 20px;
}
#quickLinks a {
	display: block;
	height: 22px;
	width: 25px;
}
#quickLinks a span {
	display: none;/*eliminamos el texto que aparece en edicion*/
}
#quickLinks li.home {/*posicion del link "home*/
	left: 7px;
	top: 1px;
}
#quickLinks li.contact {/*posicion del link "contact"*/
	left: 43px;
	top: 1px;
}
#quickLinks li.siteMap {/*posicion del link "siteMap"*/
	left: 79px;
	top: 1px;
}
#quickLinks li.home a {
	background: url(../img/home.gif) no-repeat scroll 50% 50% transparent;
}
#quickLinks li.home a:hover {
	background: url(../img/home.gif) no-repeat scroll 50% 50% #9C6;
}
#quickLinks li.contact a {
	background: url(../img/contacto.gif) no-repeat scroll 50% 50% transparent;
}
#quickLinks li.contact a:hover {
	background: url(../img/contacto.gif) no-repeat scroll 50% 50% #9C6;
}
#quickLinks li.siteMap a {
	background: url(../img/mapa-sitio.gif) no-repeat scroll 50% 50% transparent;
}
#quickLinks li.siteMap a:hover {
	background: url(../img/mapa-sitio.gif) no-repeat scroll 50% 50% #9C6;
}
/************************END QUICKLINKS************************************/