﻿/*  CSS STYLES FOR CalendarControl.js  */
#CalendarControlIFrame {
	display: none;
	left: 0px;
	position: absolute;
	top: 0px;
	height: 250px;
	width: 250px;
	z-index: 99;
}

#CalendarControl {
  position:absolute;
  background-color: #316611;  /* Green */
  margin:0;
  padding:0;
  display:none;
  z-index: 100;
}

#CalendarControl table {
  font-family: arial, verdana, helvetica, sans-serif;
  font-size: 8pt;
  border-left: 1px solid #000080;  /* Blue */ 
  border-right: 1px solid #000080;  /* Blue */
  border-bottom: 1px solid #000080;  /* Blue */
  border-top: 1px solid #000080;  /* Blue */
  border-collapse : collapse;
  padding :0px 0px 0px 0px;
}

#CalendarControl th {
  text-align : center;
  font-weight: normal;
  color: #F5F5F5 ;
}

#CalendarControl th a {
  font-weight: normal;
  text-decoration: none;
  color: #F5F5F5 ;
  padding: 0px;
}

#CalendarControl td {
  text-align: center;
}

#CalendarControl .header {
  background-color: #316611;  /* Green */
  font-weight: normal;
  text-decoration: none;
  color: #F5F5F5 ;  
}

#CalendarControl .weekday {
  background-color: #F5F5F5 ; 
  color: #000080; /* Blue */
}

#CalendarControl .weekend {
  background-color: #000080; /* Blue */
  color: #F5F5F5 ; 
}

#CalendarControl .current {
  border: 1px solid #84A040;  /* Green */
  background-color: #84A040;  /* Green */
  color: #F5F5F5 ;  
}

#CalendarControl .weekday,
#CalendarControl .weekend,
#CalendarControl .current {
  display: block;
  text-decoration: none;
  border: 1px solid #000080; /* Blue */
  padding: 1px;
  width: 2em;
}

#CalendarControl .weekday:hover,
#CalendarControl .weekend:hover,
#CalendarControl .current:hover {
  color: #F5F5F5 ;
  background-color: #84A040;  /* Green */
  border: 1px solid #F5F5F5 ;
}

#CalendarControl .previous {
  text-align: left;
}

#CalendarControl .next {
  text-align: right;
}

#CalendarControl .previous,
#CalendarControl .next {
  padding: 1px 3px 1px 3px;
  font-size: 1.4em;
}

#CalendarControl .previous a,
#CalendarControl .next a {
  color: #F5F5F5 ;
  text-decoration: none;
  font-weight: bold;
}

#CalendarControl .title {
  text-align: center;
  font-weight: bold;
  color: #F5F5F5 ;  
}

#CalendarControl .empty {
  background-color:  #316611;  
  /* 
  background-color: White; 
  border: 1px solid #000080; 
*/ 
}

