/** estilos_para_fuentes_tipograficas.css **/

/** catálogo de propiedades **/

/** alineación de textos **/

body, .align_center {

text-align: center;

}

.align_left {

text-align: left;

}

.align_right {

text-align: right;

}

.align_justify {

text-align: justify;

}

/** eliminar espacios en blanco **/

.no_wrap {

white-space: nowrap;

}

/** sangrías, identación y espaciado **/

.sangria_1m {

text-indent: 1em;

}

.letter_spacing_1 {

letter-spacing: 1px;

}

/** Reglas de fuentes **/

@font-face {

font-family: "font_01";
src: url(/estatico/DejaVuSans.ttf);

}

/** fuentes tipográficas **/

.font_01_n_4m {

font: normal 4em "font_01", sans-serif;

}

.font_01_n_3m {

font: normal 3em "font_01", sans-serif;

}

.font_01_n_2m {

font: normal 2em "font_01", sans-serif;

}

.font_01_n_1-5m {

font: normal 1.5em "font_01", sans-serif;

}

.font_01_bldr_1-5m {

font: bolder 1.5em "font_01", sans-serif;

}

.font_01_n_1-5m_1-7m {

font: normal 1.5em / 1.7em "font_01", sans-serif;

}

.font_01_n_1m {

font: normal 1em "font_01", sans-serif;

}

.font_01_n_1m_1-3m {

font: normal 1em / 1.3em "font_01", sans-serif;

}

.font_01_n_1m_1-5m {

font: normal 1em / 1.5em "font_01", sans-serif;

}

.font_01_n_1-2m_1-5m {

font: normal 1.2em / 1.5em "font_01", sans-serif;

}

.font_01_n_-7m {

font: normal 0.7em "font_01", sans-serif;

}

/** propiedades de fuente **/

.bolder {

font-weight: bolder;

}

/** formatos de hipervínculo **/

a, a:visited, a:active,
.text_decoration_none a, .text_decoration_none a:visited,
.text_decoration_none a:hover, .text_decoration_none a:active {

text-decoration: none;

}

a:hover, .ficha a, .ficha a:visited, .ficha a:active {

text-decoration: underline;

}

/** acrónimo y cursores **/

acronym, .cursor_help {

cursor: help;

}

acronym {

border: none;

}

/** paleta de color **/

.azul_marino {

color: #004080;

}

.azul_anil, acronym, a, a:visited, a:active {

color: #0080ff;

}

.cian {

color: #9cf;

}

.red, a:hover {

color: #f00;

}

.pink {

color: #ff9999;

}

.white {

color: white;

}

.white_stroke {

text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;

}