
/* --- CSS layer aviso moviles y tablets --- */
/* Poner <link rel="stylesheet" type="text/css" href="movalt.css"> justo después de HEAD */


@import url("website-font/open-sans.css");  /* css de fonts con @font-face para MS "Calibri" */

.nomobile {
	width: 880px;
	margin: auto;    /* center */
	padding: 0px 10px 0px 10px;
	border: dashed black;
	border-width: 0px 1px 1px 1px;
	background-color: #ffff90;
	cursor: pointer;
	}

.mobtit	{
	font-family: "Calibri";
	color: #2f2f2f;
	word-spacing: normal;         /* space between the words */
	letter-spacing: -0.024em;     /* +|- default font spacing correction */
	}

.mobtit SUB { color: black; font-weight: normal; }

.mobtex {
	font-family: "Calibri";
	color: #2f2f2f;
	text-align: justify;  
	text-justify: inter-character;
	word-spacing: normal;         /* space between the words */
	letter-spacing: -0.024em;     /* +|- default font spacing correction */
	line-height: 1.24em;
	margin: -10px 0px 10px 0px;
	}

.mobtex .totxo { color: firebrick; font-weight: bold; }


@media screen and (max-device-width: 550px) {    /* Inicio móviles */

.mobtit	{
	font-size: 10px;
	text-indent: 12px;
	}

.mobtex {
	font-size: 9px;
	text-indent: 95px;
	}

	}     /* Fin móviles */


@media screen and (min-device-width: 551px) {    /* Inicio tablets - PC */

.mobtit	{
	font-size: 12px;
	text-indent: 15px;
	}
  
.mobtex {
	font-size: 11px;
	text-indent: 55px;
	}

	}     /* Fin tablets - PC */


/* ------ Suavizado de fuentes a todas las páginas ------ */

BODY {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    -webkit-text-stroke: 1px transparent;
}

/* FIN CSS */

