 /**
 This stylesheet is part of the java script calendar and date picker
  **/
#calender {
	width: 200px;
	font-family: verdana, arial;
	font-size: 7pt;
	text-align:center;
	}

#calenderTable {
	position: absolute;
	z-index: 10;
	top: 0px;
	left: 50px;
	width: 260px;
	border-style: outset;
	border-width: 2px;
	border-color: black;
	background-color: #EEE;
	display: none;
	}

#calenderTableHead TR {
	background-color: #eee;
	}

#calenderTableDays TR {
	background-color: #B40404;
	color: #ffff99;
	font-family: verdana, arial;
	font-size: 7pt;
    text-align:center;
	}
#calenderTableDays td {
    width:30px;
	}

.normalDay {
	border: 1px dotted black;
	cursor: pointer;
	}

.hlDay {
	border: 1px black;
	background-color: #585858;
	color: #E6E6E6;
	cursor: pointer;
	}

.toDay {
	border: 1px solid #E70;
	background-color: #FD8;
	color: #E70;
	font-weight: bold;
	cursor: pointer;
	}

.choosenDay {
	border: 1px #000000;
	background-color: #585858;
	color: #E6E6E6;
	font-weight: bold;
	cursor: pointer;
	}