/**************************************************************/
/**************************************************************/
/* CSS2.0                                                     */
/* Autor: MARKA                                               */
/* Nombre: calendario.css                                     */
/* Descripci�n: Estilos para el calendario.                   */
/*
	@Autor: David Suarez.
	@Empresa: Marka Informatica S.L.
	@Fecha Creacion: 03/07/2009.
	@Version: 1.0.
*/

/* TAGS */
#calendarDiv{
	border: 1px solid #5A5F69;
	padding: 1px;
	padding-bottom: 20px;
	
	font-family:arial;
	font-size:10px;
	
	width:220px;
	
	position:absolute;
	visibility:hidden;
	background-color: #E2E3E5;
}

#calendarDiv span,#calendarDiv img{
	float: left;
}

#calendarDiv td{
	margin:0px;
	padding:3px;
	
	font-size:10px;
	text-align:right;
	
	cursor:pointer;
}

/* TOP */
#calendarDiv .topBar{
	padding:2px;
	padding-top: 5px;
	
	width:216px;
	height:20px;
	
	background-color: #5A5F69;
}

#calendarDiv .topBar img{
	cursor:pointer;
}

#calendarDiv .leftArrows{
	position: relative;
	left: 2px;
}

#calendarDiv .topTitle{		
	position: relative;
	left: 15px;
	
	padding-top:3px;
	
	color: #ebeff7;
}

#calendarDiv .rightArrows{
	position: absolute;
	left: 160px;
}

/************************************************/
/**********    CONTENT CALENDAR        **********/
/************************************************/
#calendarDiv .activeDay{	/* Active day in the calendar */
	color:#EBEFF7;
	background-color:#5A5F69;
}

#calendarDiv .todaysDate div{
	float:left;
}

#calendarDiv .monthYearActive{
	color: #5A5F69;
	background-color:#AEB2BB;
}

#calendarDiv .weekRow{
	color: #5A5F69;
	background-color:#AEB2BB;
}

#calendarDiv .weekColumn{
	font-weight: bold;
	
	color: #EBEFF7;
	background-color:#AEB2BB;
}

#calendarDiv .dayColumn{
	color: #5A5F69;
	font-weight: bold;
}

/************************************************/
/**********         TOP BAR            **********/
/************************************************/
#calendarDiv .todaysDate{
	position:absolute;
	bottom:1px;
	
	width:216px;
	height:15px;
	line-height:15px;
	
	padding:2px;
	
	text-align:center;
	
	color: #EBEFF7;
	background-color: #AEB2BB;
}

