/* Distributed as part of The Coolest DHTML Calendar
   Author: Mihai Bazon, www.bazon.net/mishoo
   Copyright Dynarch.com 2005, www.dynarch.com
*/

/* The main calendar widget.  DIV containing a table. */

div.calendar { 
  position: relative;
  /* lo puse para los estilos del anglo calendario*/
  /*border:1px solid #999999;*/
  width:154px;
  padding:1px;
  margin:1px;
  /* --------/////-------*/ 
}

.calendar, .calendar table {
  /*border:1px solid #FF6600;*/
  width:154px;
  background-color:#FFFFFF;
  cursor: default;
  /*background: url("../img/calendario/bg_calendario.jpg");*/
  /*background-repeat: repeat-y;*/
  font:bold 11px Arial, Helvetica, sans-serif; 
  color:#FFFFFF; 
  text-transform:uppercase;
}

/*.calendar {
  border-color: #797979;
}*/

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */
  /*background: url("../img/calendario/title-bg.gif") repeat-x 0 100%;*/
  font-weight: bold;
  color:#FFFFFF;
  background-color:#007932;
}

.calendar .nav {
  font-family:Arial, Helvetica, sans-serif;
}

.calendar .nav div {
  /*background: transparent url("../img/calendario/menuarrow.gif") no-repeat 100% 100%;*/
}

.calendar thead tr { 
    /*background: url("../img/calendario/title-bg.gif") repeat-x 0 100%;*/ 
	color:#FFFFFF; 
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  padding: 2px;
  background-color:#1FAB14;
  /*background: url("../img/calendario/title-bg.gif")   repeat-x 0 100%;*/ 
  color:#FFFFFF;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  padding: 2px;
  text-align: center;
  color:#FFFFFF;
  background-color:#79CD72;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color:#FFFFFF;
  font-weight:bold;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  color: #FFFFFF;
  /*background: url("");*/
  background-color:#007932; 
  text-decoration:underline;
  /*border-bottom: 1px solid #797979;*/
  padding: 2px 2px 1px 2px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  color:#FFFFFF;
  background: url("");
  background-color:#007932; 
  padding: 3px 1px 0px 3px;
  /*border-bottom: 1px solid #797979;*/
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  /*background: url("../img/calendario/dark-bg.gif");*/
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  font:bold 11px Arial, Helvetica, sans-serif;
  width:23px;
  color:#007932;
  font-weight:bold;
  text-align:center;
  padding: 1px 2px 1px 2px;
  border-right:1px solid #007932;
  background-image:url("../img/bkg_linkCalendariomes.gif");
  background-repeat:no-repeat;
  background-position:40% 50%;
}
.calendar tbody .day.othermonth {
  /*font-size: 80%;*/
  color:#007932;
}
.calendar tbody .day.othermonth.oweekend {
  color:#007932;
}

.calendar table .wn {
  padding: 1px 2px 1px 2px;
  border-right: 1px solid #797979;
  /*background: url("../img/calendario/dark-bg.gif");*/
}

.calendar tbody .rowhilite td,
.calendar tbody .rowhilite td.wn {
  /*background: url("../img/calendario/dark-bg.gif");*/
}

.calendar tbody td.today { font-weight: bold; /* background: url("../img/calendario/today-bg.gif") no-repeat 70% 50%; */ }

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: url("");
  color:#007932;
  font-weight:bold;
  text-decoration:underline;
  padding: 1px 2px 1px 2px;
  border: 1px solid #bbb;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color:#1FAB14;
  font-weight:bold;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border: 1px solid #797979;
  padding: 1px 2px 1px 1px;
  background: url("../img/calendario/active-bg.gif");
  color: #ffffff;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  /*visibility: hidden;*/
  border-right:1px solid #999999;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background-color:#000099;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  padding: 2px;
  height: 30px;
  background: url("") repeat-x 0 0;
  display:none;
  color: #000;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #afa;
  border: 1px solid #084;
  color: #00FF00;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background-color:#7c7;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #797979;
  background: url("../img/calendario/normal-bg.gif"); color: #000;
  z-index: 100;
  font-size: 90%;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background: url("../img/calendario/hover-bg.gif"); color: #000;
}

.calendar .combo .active {
  background: url("../img/calendario/active-bg.gif"); color: #fff;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #797979;
  padding: 1px 0px;
  text-align: center;
  background: url("../img/calendario/dark-bg.gif");
  height: 20px;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 5px 0px 6px;
  font-weight: bold;
  background: url("../img/calendario/normal-bg.gif"); 
  color: #000;
  height: 20px;
}

.calendar td.time .hour,
.calendar td.time .minute {
  font-family: monospace;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  background: url("../img/calendario/hover-bg.gif"); color: #000;
}

.calendar td.time span.active {
  background: url("../img/calendario/active-bg.gif"); color: #fff;
}
/* ------CSS Calendario General----------- */

* {
padding: 0;
margin: 0;
}

h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	font-weight: normal;
	margin: 0 0 1em 0;
}
img{
margin:0;
padding:0;
}

a, a:link, a:visited, a:active{
	color:#1FAB14;
	text-decoration:none;
}
a:hover{
	color:#1FAB14;
	text-decoration:underline;
}
.clear {
	clear: both;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
#container{
	width:auto;
	min-height: 580px;
	height: auto !important;
	_height:580px;
	height:580px;
	margin-top:12px:
}
.grande {
width:900px;
}
.grande th{
float:left;
}

#barra_titulo{
	width:760px;
	height:29px;
	margin-left:8px;
	margin-right:2px;
}
#img_calendario{
	height:29px;
	width:82px;
	background-image:url(../img/img_calendario.gif);
	background-repeat:no-repeat
}
#fondo_barra_titulo{
	height:29px;
	width:660px;
	background-color:#1FAB14;
}
#mes{
	margin-left:5px;
	color:#fff;
	font:24px  Futura Lt BT, Arial, sans-serif;
	vertical-align:middle;
}
#img_borde_izquierdo{
	height:29px;
	width:6px;
	background-image:url(../img/img_borde_izq.gif);
	background-repeat:no-repeat;
}
#space{
	margin-right:5px;
	width:750px;
	height:30px;
	margin-left:8px;
	margin-right:2px;
}
.division{
	float:left;
	background-image:url(../img/linea_puntos.gif);
	background-repeat:no-repeat;
	width:401px;
	height:1px;
	margin-top:9px;
	margin-left:0px;
}
.antes{
  width: 110px;
  height:23px;
  color:#1FAB14;
  border-spacing: 0;
  border-collapse: collapse;
  border:0px;
}
#barra_calendario{
	width:742px;
	height:21px;
	margin-left:15px;
	display:inline;
}
#img_calborde_der{
	height:21px;
	width:7px;
	background-image:url(../img/img_calborde_der.gif);
	background-repeat:no-repeat;
}
#dias_cal{
	height:21px;
	width:720px;
	background-color:#007932;
}
#img_calborde_izq{
	height:21px;
	width:7px;
	background-image:url(../img/img_calborde_izq.gif);
	background-repeat:no-repeat;
}
.dias{
	/*background-color:#007932;*/
	width:auto;
	height:19px;
	color:#fff;
	border-spacing: 0;
	border-collapse: collapse;
	border:0px;
	text-align:left;
	margin-top:2px;
	margin-left:8px;
	font:13px Verdana, Arial, Helvetica, sans-serif;
}
.celdas{
	clear: both;
  	border-spacing: 0;
  	border-collapse: collapse;
	margin-left: 8px;
	margin-top:5px;
}
.celdas thead th{
background-color:#007932;
color:#FFFFFF;
height:21px;
vertical-align:middle;
padding-left:3px;

}

.celdas tbody td{
/*border:1px solid #05692D;*/
border-right:1px solid #05692D;
	border-bottom:1px solid #05692D;
	border-top:1px solid #05692D;
	border-left: 1px solid #05692D;
}
.celdas tbody .espacio{
height:10px;
}

#pestana{
	width:104px;
	/*_width:104px;*/
	height:15px;
	background-color:#97FF8E;
	margin:0px;
	padding:0px;
}
#pestana_feriado{
	width:104px;
	height:15px;
	margin:0px;
	padding:0px;
}
#fecha{
	width:18px;
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#007932; 
	text-align:left;
	margin-left:3px;
}
#feriado{
	width:18px;
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#666666; 
	text-align:left;
	margin-left:3px;
}
#anglo{
	font:10px Tahoma, Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#007932; 
	text-align:center;
	margin-left:5px;
	margin-top:1px;
}
#carga{
	margin-left:2px;
	min-height: 64px;
	height: auto !important;
	_height:64px;
	text-align:left;
}
.rayas{
	width:104px;
	background-image:url(../img/img_rayas.gif);
	/*background-repeat:repeat-y;*/
}
.dot{
	width:102px;
	background-image:url(../img/img_dot.gif);
	background-repeat:repeat-y;
}
.malla{
	width:102px;
	background-image:url(../img/img_malla.gif);
	background-repeat:repeat-y;
}
.vacas{
	width:102px;
	background-image:url(../img/img_vacas.gif);
	/*background-repeat:repeat-y;*/
}
.circul{
	width:104px;
	background-image:url(../img/img_circul.gif);
	background-repeat:repeat-y;
}
.star{
	width:16px;
	height:16px;
	background-image:url(../img/img_star.gif);
	background-repeat:no-repeat;
}

/*------estilos resalatar dia-------*/
#fecha_hoy{
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#97FF8E; 
	text-align:center;
	margin-left:3px;
}
#pestana_hoy{
	width:104px;
	height:15px;
	background-color:#0C9B00;
	border-spacing: 0;
	border-collapse: collapse;
	margin:0px;
	padding:0px;
}
#anglo_hoy{
	font:10px Tahoma, Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#97FF8E; 
	text-align:center;
	margin-left:15px;
	vertical-align:middle;
}
#evento{
	margin-top:3px;
	padding:2px;
}
/*---------Colores letras--------------------*/
#evento a.normal{
	font:10px Verdana, Arial, Helvetica, sans-serif;
	color:#000; 
}
#evento a.normal:link{
	color:#000;
}
#evento a.normal:visited{
	color:#000;
}
#evento a.normal:hover{
color:#000;
}
#evento a.normal:active{
color:#000;
}
#evento a.general{
	font:10px Verdana, Arial, Helvetica, sans-serif;
	color:#05692D; 
}
#evento a.general:hover{
color:#05692D;
}
#evento a.preescolar{
	font:10px Verdana, Arial, Helvetica, sans-serif;
	color:#666699; 
}
#evento a.preescolar:link{
	color:#666699; 
}
#evento a.preescolar:visited{
	color:#666699; 
}
#evento a.preescolar:hover{
	color:#666699; 
}
#evento a.preescolar:active{
	color:#666699; 
}
#evento a.primaria{
	font:10px Verdana, Arial, Helvetica, sans-serif;
	color:#ff9900; 
	margin-top:2px;	
}
#evento a.primaria:hover{
color:#ff9900; 
}
#evento a.basico{
	font:10px Verdana, Arial, Helvetica, sans-serif;
	color:#33cc00; 
	margin-top:2px;
}
#evento a.basico:hover{
color:#33cc00; 
}
#evento a.superior{
	font:10px Verdana, Arial, Helvetica, sans-serif;
	color:#726e3b; 
	margin-top:2px;
}
#evento a.superior:hover{
	color:#726e3b; 
}
/*-------------------- css tooltip---------------*/
.contentEvento p{
	font:10px Arial, Helvetica, sans-serif #666666;
}

.dojoTooltip{
	width:175px;
	height:150px;
	background-color:#E7FFE6;
	border:1px solid #1FAB14;
	padding:2px;
	min-height: 150px;
	height: auto !important;
	_height:150px;
}
.claseTitulo{
	font:11px bold Arial, Helvetica, sans-serif;
	color:#1FAB14;
}
a.tip{
	font:9px Arial, Helvetica, sans-serif;
	color:#007932;
}
a.tip:link{
	font:9px Arial, Helvetica, sans-serif;
	color:#007932;
	text-decoration:underline;
}
a.tip:visited{
	color:#007932;
}
a.tip:hover{
	color:#1FAB14;
}
a.tip:action{
	color:#007932;
}
/* 22 de Agosto de 2007 ---- Galerias ---- */
#img_galerias{
	height:29px;
	width:100px;
	background-image:url(../img/img_galerias.gif);
	background-repeat:no-repeat;
}
#lista_galerias{
	font-weight: normal;
	font-size: 12px;
	padding: 10px 10px 10px 85px;
	margin: 5px;
	background-color: #A5DDA1;
	background-image: url(../img/ico_galeria_general.gif);
	background-repeat: no-repeat;
	height:50px;
	background-position: 1% 50%;
	width: 30%;
	text-align:center;
	text-transform: capitalize;
}
#fondo_barra_titulo_Galeria{
	height:29px;
	width:460px;	
	background-color:#1FAB14;
}