<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document - Menu principal del sitio WEB */

#menu {
	width:100%;
	float:right;
}

ul {
	list-style:none;
	float:right;
	padding-left:0px;
	padding-bottom:10px;
	margin:0px;
}
	
ul li {
	float:left;
	padding-left:10px;
	padding-right:10px;
}
	
ul li a {
	text-decoration:none;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:11px;
	text-transform:uppercase;
	color:#000;
}

ul li a:hover {
	color:#06F;
}
	
@media only screen and (max-width: 768px) {
	ul li a {
		color:#FFF;		
	}
	
	ul li a:hover {
		color:#000;
	}
	
	#menu {
		width:100%;
		float:left;
	}
	
	ul li {
		padding-top:5px;
		padding-bottom:5px;
		float:none;
		background-color:#06F;
		border-radius:0px 10px 10px 0px;
		transition:.6s;
		box-shadow:5px 5px 15px #999999;
		margin-bottom:4px;
		width:200px;
	}
	
	ul li:hover {
		width:250px;
	}
	
	ul {
		float:left;
	}
}</pre></body></html>