@charset "utf-8";
img {   
border: none;   
}  
body  {
	margin: 0; /* es recomendable ajustar a cero el margen y el relleno del elemento body para lograr la compatibilidad con la configuración predeterminada de los diversos navegadores */
	padding: 0;
	text-align: center; /* esto centra el contenedor en los navegadores IE 5*. El texto se ajusta posteriormente con el valor predeterminado de alineación a la izquierda en el selector #container */
	color: #000000;
	background-color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-left: #c4c9db 1px solid;
	border-top: #c4c9db 1px solid;
	border-right: #565968 1px solid;
	border-bottom: #565968 1px solid;
}
.thrColLiqHdr #container {
	width: 960px; /* los márgenes automáticos (conjuntamente con un ancho) centran la página */
	border: 2px solid #94AABE;
	text-align: left; /* esto anula text-align: center en el elemento body. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFFFF;
	background-image: url(../editables/fondoDivContainer_v3.png);
	background-repeat: repeat-y;
} 
.thrColLiqHdr #header {
	background-color: #FFF;
	height: auto;
	width: 940px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	padding-top: 0;
	padding-bottom: 0;
	border: thin none #066;
	margin-top: 1px;
} 
.thrColLiqHdr #header h1 {
	margin: 0; /* el ajuste en cero del margen del último elemento del div de #header evita la contracción del margen (un espacio inexplicable entre divs). Si el div tiene un borde alrededor, esto no es necesario, ya que también evita la contracción del margen */
	padding: 10px 0; /* el uso de relleno en lugar de margen le permitirá mantener el elemento alejado de los bordes del div */
}

/* Sugerencias para barras laterales:
1. Dado que está trabajando en porcentajes, es conveniente no utilizar relleno lateral en las barras laterales. Se añadirá al ancho en el caso de navegadores que cumplen los estándares, creando un ancho real desconocido. 
2. El espacio entre el lado del div y los elementos que contiene puede crearse colocando un margen izquierdo y derecho en dichos elementos, como se observa en la regla ".thrColLiqHdr #sidebar1 p".
3. Dado que Explorer calcula los anchos después de mostrarse el elemento padre, puede que ocasionalmente encuentre errores inexplicables con columnas basadas en porcentajes. Si necesita resultados más predecibles, puede optar por cambiar a columnas con tamaño en píxeles.
*/
.thrColLiqHdr #sidebar1 {
	float: left; /* este elemento debe preceder en el orden de origen a cualquier elemento que desee situar junto a */
	width: 21%; /* el relleno superior e inferior crea un espacio visual dentro de este div  */
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	margin-left: 10px;
	display: inline;
	background-color: #FFF;
	background-image: url(../editables/fondoDivSideBar1.png);
	background-repeat: repeat-x;
	border: thin none #AAD4FF;
	overflow: hidden;
}
.thrColLiqHdr #sidebar2 {
	float: right; /* este elemento debe preceder en el orden de origen a cualquier elemento que desee situar junto a */
	width: 22%; /* el relleno superior e inferior crea un espacio visual dentro de este div */
	margin-right: 10px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	background-color: #FFF;
	background-image: url(../editables/fondoDivSideBar2.png);
	background-repeat: repeat-x;
	padding-top: 0px;
	border: thin none #CD7AFE;
}
.thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 p, .thrColLiqHdr #sidebar2 h3 {
	margin-left: 10px; /* deben asignarse los márgenes izquierdo y derecho de cada elemento que vaya a colocarse en las columnas laterales */
	margin-right: 10px;
}

/* Sugerencias para mainContent:
1. El espacio entre el mainContent y las barras laterales se crea con los márgenes izquierdo y derecho del div mainContent.
2. para evitar la caída de un elemento flotante con una resolución mínima admitida de 800 x 600, los elementos situados dentro del div mainContent deben tener un tamaño de 300px o inferior (incluidas las imágenes).
3. en el siguiente comentario condicional de Internet Explorer, la propiedad zoom se utiliza para asignar a mainContent "hasLayout." Esto evita diversos problemas específicos de IE.
*/
.thrColLiqHdr #mainContent {
	background-image: url(../editables/fondoDivMain.png);
	background-repeat: repeat-x;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #707B8D;
	margin-top: 0;
	margin-right: 24%;
	margin-bottom: 0;
	margin-left: 23.5%;
	padding-top: 2px;
	padding-right: 7px;
	padding-bottom: 4px;
	padding-left: 7px;
}

.thrColLiqHdr #footer {
	height: 20px;
	width: 950px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0;
	background-image: url(../editables/fondoFooter.png);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #969;
	text-align: center;
} 
.thrColLiqHdr #footer p {
	margin: 0; /* el relleno de este elemento creará espacio, de la misma forma que lo haría el margen, sin el problema de la contracción de márgenes */
	padding-right: 0;
	padding-left: 0;
}

/* Varias clases diversas para su reutilización */
.fltrt { /* esta clase puede utilizarse para que un elemento flote en la parte derecha de la página. El elemento flotante debe preceder al elemento junto al que debe aparecer en la página. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* esta clase puede utilizarse para que un elemento flote en la parte izquierda de la página. El elemento flotante debe preceder al elemento junto al que debe aparecer en la página. */
	float: left;
	margin-right: 8px;
	margin-left: 3px;
}
.clearfloat { /* esta clase debe colocarse en un elemento div o break y debe ser el último elemento antes del cierre de un contenedor que deba incluir completamente a sus elementos flotantes hijos */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
 
/* coloque las reparaciones de css para todas las versiones de IE en este comentario condicional */
/*.thrColLiqHdr #sidebar2, .thrColLiqHdr #sidebar1 { padding-top: 30px; }
.thrColLiqHdr #mainContent { zoom: 1; padding-top: 15px; }
/* la propiedad zoom propia que se indica más arriba proporciona a IE el hasLayout que necesita para evitar diversos errores */
.divNav {
	height: 22px;
	width: 930px;
	margin-top: 3px;
	margin-right: auto;
	margin-bottom: 3px;
	margin-left: auto;
	border: thin solid #666;
	background-color: #8A99AA;
}
.separadorAlto {
	background-image: url(../editables/fondoSeparadorAlto_v2.png);
	background-repeat: repeat-x;
	height: 25px;
	width: 930px;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 9px;
	margin-left: auto;
}
.encabezadoColumna {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFF;
	text-align: center;
	height: auto;
	width: 90%;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	font-weight: bold;
}
.divNoticias {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999;
	padding: 4px;
	height: auto;
	width: 96%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
}
.divGira {
	padding: 2px;
	height: auto;
	width: 80%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #036;
	background-image: url(../editables/fondoDivColumnaEnGira.png);
	background-repeat: repeat-x;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CD7AFE;
	border-right-color: #CD7AFE;
	border-bottom-color: #CD7AFE;
	border-left-color: #CD7AFE;
	overflow: hidden;
}
.encabezadoColumnaMadre {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #039;
	text-align: center;
	height: auto;
	width: 90%;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	font-weight: bold;
}
.divProyecto {
	padding: 2px;
	height: auto;
	width: 80%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #99C;
	background-image: url(../editables/fondoDivColumnaEnProyecto.png);
	background-repeat: repeat-x;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #8080BF;
	border-right-color: #8080BF;
	border-bottom-color: #8080BF;
	border-left-color: #8080BF;
	overflow: hidden;
}
.divAgenda {
	padding: 2px;
	height: auto;
	width: 80%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #99C;
	background-image: url(../editables/fondoDivColumnaAgenda.png);
	background-repeat: repeat-x;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #394060;
	border-right-color: #394060;
	border-bottom-color: #394060;
	border-left-color: #394060;
}
.divNoticias {
	height: auto;
	width: 80%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #036;
	background-image: url(../editables/fondoDivColumnaNoticias.png);
	background-repeat: repeat-x;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D36767;
	border-right-color: #D36767;
	border-bottom-color: #D36767;
	border-left-color: #D36767;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
}
.divDescargas {
	height: auto;
	width: 80%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #036;
	background-image: url(../editables/fondoDivColumnaDescargas.png);
	background-repeat: repeat-x;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CC3366;
	border-right-color: #CC3366;
	border-bottom-color: #CC3366;
	border-left-color: #CC3366;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
	text-align: center;
	overflow: hidden;
}
.vinculosIconos {
	color: #FFF;
	text-decoration: none;
}
.divLogo {
	height: auto;
	width: 90%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	text-align: center;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 2px;
}
.cartelAgendas {
	text-align: center;
	height: auto;
	width: 90%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}
.combos {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #969;
	height: auto;
	width: auto;
}
.tituloObraAgenda {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #966;
	text-align: center;
	height: auto;
	width: 90%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}

.listaAgenda {
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-color: #969;
	border-right-color: #969;
	border-bottom-color: #969;
	border-left-color: #969;
	border-bottom-style: solid;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #969;
}
.listaAgendaPasados {
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
	border-bottom-style: solid;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999;
}
.navegadorNoticias {
	height: auto;
	width: 40%;
	margin-top: 3px;
	padding-top: 1px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
	border: thin none #969;
	margin-right: auto;
	margin-bottom: 3px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #999;
	text-align: center;
}
CON ESA LÍNEA DE CÓDIGO ELIMINAMOS EL MOLESTO MARCO DE LOS VÍNCULOS
a:img{
border: 0
}
a:link {
	text-decoration: none;
	color: #036;
}
a:visited {
	text-decoration: none;
	color: #036;
}
a:hover {
	text-decoration: none;
	color: #036;
}
a:active {
	text-decoration: none;
	color: #036;
}
.cuadroNoticias {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #737999;
	height: auto;
	width: 70%;
	border: thin none #066;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}
.divProducciones {
	padding: 2px;
	height: auto;
	width: 80%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #036;
	background-image: url(../editables/fondoDivProducciones.png);
	background-repeat: repeat-x;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D36767;
	border-right-color: #D36767;
	border-bottom-color: #D36767;
	border-left-color: #D36767;
	overflow: hidden;
}
.contenidoNoticias {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #647A9B;
	height: auto;
	width: 100%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	background-repeat: repeat;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
}
.navegadorProximasAct {
	height: auto;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	text-align: right;
}
.verAgendaPasados {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999;
	text-align: right;
	border: thin none #999;
	width: 100%;
}
.tituloObraAgendaPasados {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999;
	text-align: center;
	height: auto;
	width: 90%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}
.portada {
	background-color: #E3E8EE;
	height: 100%;
	width: 96%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	border: 1px solid #036;
	padding: 5px;
	overflow: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #666;
	background-repeat: repeat;
}
.tituloPortada {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	color: #036;
}
.divPremios {
	height: auto;
	width: 80%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #036;
	background-image: url(../editables/fondoDivPremios.png);
	background-repeat: repeat-x;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CC3366;
	border-right-color: #CC3366;
	border-bottom-color: #CC3366;
	border-left-color: #CC3366;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
	text-align: center;
}
.carteles {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px;
	height: auto;
	width: 96%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	border: thin none #969;
	overflow: auto;
	text-align: center;
}
.marcoCartel {
	font-family: Arial, Helvetica, sans-serif;
	height: auto;
	width: 49%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: thin none #069;
	display: inline;
	text-align: center;
	overflow: hidden;
	float: left;
}
.nombreFuncion {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #036;
	text-align: center;
	padding: 2px;
	height: 25px;
	width: 98%;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: 3px;
	margin-left: auto;
}
.menuProduccion {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999;
	padding: 3px;
	width: 96%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	border: 1px solid #CCC;
	overflow: auto;
}
.cartelDetallesProduccion {
	float: right;
	margin-top: 10px;
	margin-right: 20px;
	margin-bottom: 10px;
}
.contenidosProduccion {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999;
	width: 96%;
	margin-top: 100px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	overflow: auto;
}
.galeriaProduccion {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	height: auto;
	width: 100%;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	text-align: center;
}
.botoneraVideos {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px;
	height: auto;
	width: 98%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	text-align: center;
}
.botonesVideo {
	height: auto;
	width: auto;
	margin-top: 2px;
	margin-right: 1%;
	margin-bottom: 2px;
	margin-left: 1%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #036;
}
.divMuestraPremios {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #7A98B8;
	padding: 2px;
	height: auto;
	width: auto;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-top-color: #036;
	border-right-color: #036;
	border-bottom-color: #036;
	border-left-color: #036;
}
.thrColLiqHdr #container #mainContent #menuProduccion #premios .tablaPremios tr td {
	text-align: center;
}
.muestraSospechosos {
	padding: 2px;
	height: auto;
	width: 98%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	border: thin solid #CCC;
	overflow: auto;
}
.cartelWanted {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #C0A572;
	padding: 1px;
	height: auto;
	width: 22%;
	margin-top: 5px;
	margin-right: 1%;
	margin-bottom: 5px;
	margin-left: 1%;
	text-align: center;
	display: inline;
	float: left;
	overflow: hidden;
}
.tituloSospechoso {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #8F643D;
	text-align: center;
	height: 20px;
	width: 100%;
	margin: 2px;
	padding: 2px;
	display: inline;
}
.muestraSospechososDetalle {
	padding: 2px;
	height: auto;
	width: 98%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	border: thin none #CCC;
	overflow: auto;
}
.tablaFormulario {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #036;
	padding: 2px;
	height: auto;
	width: 90%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
	border: thin dashed #069;
	text-align: left;
}
.camposFormulario {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #069;
}
.mensajeFormulario {
	font-family: Arial, Helvetica, sans-serif;
	color: #969;
	padding: 3px;
	height: auto;
	width: auto;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	border: thin dotted #96C;
}
.marcoCartelDescargas {
	font-family: Arial, Helvetica, sans-serif;
	height: auto;
	width: 49%;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	border: thin none #069;
	display: inline;
	text-align: center;
	overflow: hidden;
	float: left;
}
.nombreFuncionDescargas {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #036;
	text-align: center;
	padding: 2px;
	height: 20px;
	width: 98%;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
}
.imagenEnlace {
	height: 120px;
	width: 33%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	text-align: center;
	display: inline;
	float: left;
	overflow: hidden;
}
.tituloNoticia {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #069;
	text-align: center;
	height: auto;
	width: 90%;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}
.tituloObraCartel {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: right;
	color: #036;
	float: right;
	height: auto;
	width: 100%;
	margin-top: auto;
	margin-right: 20px;
	margin-bottom: auto;
	margin-left: auto;
}
.cartelProduccionDescargas {
	float: right;
	height: auto;
	width: auto;
	margin-top: 10px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #036;
}

