/* CSS Reset */

/* Elementos que queremos limpiar completamente: */
* { padding: 0; margin: 0; }

/* Ajustes tipográficos */
cite, em, dfn {
	font-style: italic;
}

sup {
	position: relative;
	bottom: 0.3em;
	vertical-align: baseline;
}

sub {
	position: relative;
	bottom: -0.2em;
	vertical-align: baseline;
}

code, kbd, samp, pre, tt, var{
	font-size: 100%;
	font-family: monaco, "Lucida Console", courier, mono-space;
}

del {
	text-decoration: line-through;
}

ins, dfn {
	border-bottom: 1px solid #ccc;
}

small, sup, sub {
	font-size: 85%;
}

abbr, acronym {
	text-transform: uppercase;
	font-size: 85%;
	letter-spacing: .1em;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}

a abbr, a acronym {
	border: none;
	text-decoration: none;
}
sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.8em;
}

h3 {
	font-size: 1.6em;
}

h4 {
	font-size: 1.4em;
}

h5 {
	font-size: 1.2em;
}

h6 {
	font-size: 1em;
}
:focus {
	outline: 0;
}

/* Clases útiles */

.clear {
	clear: both;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.italica{
	font-style: italic;
}
.textsmall{
	font-size: x-small;
}
.bold{
	font-weight: bold;
}
.overflow-hidden{
	overflow: hidden;
}
.justify{
	text-align: justify;
}

/*** LINKS: Recuerda utilizar siempre la regla del LoVe-HAte ***/

a, a:link, a:visited, a:hover, a:active {
	/*
	Si quisieramos eliminar la lÃ­nea de puntos que aparece al pulsar un enlace, aplicarÃ­amos la siguiente propiedad:
	
	outline: 0;
	
	Sin embargo no se recomienda, por temas de accesibilidad para navegaciÃ³n con teclado (lo cual implica temas legales, un tema peliagudo).
	*/
	text-decoration: none;
}

a img {
	border: none;
	text-decoration: none;
}

img {
	border: none;
	text-decoration: none;
	outline: 0;
	/*
	Si aÃ±ades un background aparecerÃ¡ como fondo de la imagen, Ãºtil para imÃ¡genes de carga
	*/
}

/* Formularios */

label, button {
	cursor: pointer;
}

input:focus, select:focus, textarea:focus {
	background-color: #FFF;
}

fieldset {
	border: none;
}
.logeado_line {
	background-color: #cccccc;
	float: left;
	height: 15px;
	width: 1px;
	margin-top: 5px;
}
.logeado_salir {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #609386;
float: right;
height: 22px;
width: auto;
padding-top: 3px;
padding-right: 20px;
padding-left: 20px;
margin-right: 0px;
}
.logeado_salir a {
	color: #609386;
}
.logeado_salir a:hover {
	color: #609386;
	text-decoration: underline;
}
#userlogeado {
	height: 25px;
	width: auto;
	position: relative;
	float: right;
	top: 5px;
	background-color: #C7C7C7;
}
.logeado_perfil {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	float: left;
	height: 22px;
	width: auto;
	padding-right: 30px;
	padding-left: 70px;
	padding-top: 3px;
}
.logeadonombre {
	color: #5F5F5F;
	font-weight: bold;
}