

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

@import url('reset.css');

/***** Redefinición etiquetas *****/
* {
	margin: 0;
	padding: 0;
}

body
{
	background-color: #171695;
	background-image: url(../img/intro.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 68.8%; /* Esto pone el tamaño de fuentes base de la web a 11px */
	margin: 0 auto;
}

	.selector {
		font-size: 1.4em;
	/*	font-weight: bold;*/
		margin: 380px auto 0;
		width: 750px;
	}
		.selector li {
			border-bottom: 1px solid #F5F5F5;
			margin: 0 0 6px 510px;
			padding: 0 0 6px;
			width: 70px;
		}
	
			.selector li.item-spanish {
				background-image: url(../img/flags/es.png);
				background-position: left 30%;
				background-repeat: no-repeat;
				padding: 0 0 6px 20px;
				width: 60px;
			}
			
			.selector li.item-english {
				background-image: url(../img/flags/en.png);
				background-position: left 30%;
				background-repeat: no-repeat;
				padding: 0 0 6px 20px;
				width: 60px;
			}
			
			.selector li.last-item {
				border: none;
			}
			
		.selector a {
			color: #FFFFFF;
			text-decoration: none;
		}

			.selector a:hover {
				color: #F2F2F2;
				text-decoration: underline;
			}
