/* The main calendar widget.  DIV containing a table. */

div.calendar {
	position: relative;
	border: 1px solid black;
	font-size: 1.1em;
}

.calendar table {
	color: #000;
	background-color: #135cac;
	border: 9px solid #135cac;
	cursor: default;
	font-family: ,verdana,sans-serif;

}


/* Header part -- contains navigation buttons and day names. */

.button{
	color: gray;
	background-color: #18234e;
}

/* This holds the current "month, year"; pressing it will take you to the current date */
.calendar thead .title {
	font-weight: bold;
	text-align: center;
	background: #000;
	text-transform: uppercase;
	color: #fff;
	padding: 2px;
	border-color: #191919;
}

/* Navigation row */
.calendar thead .headrow .button {
	color: #fff;
	padding-bottom: 2px;
}

/* Navigation buttons */
.calendar .nav {
/*	background: #2f2f2f url(menuarrow.gif) no-repeat 100% 100%; */
}

.calendar thead td
{
	text-align: center;
}
.calendar thead .name {


/* Cells <TD> containing the day names */

  border-bottom: 0px solid #000;
	padding: 5px;
	text-align: center;
	color: #000;
}

.calendar thead .weekend {


/* How a weekend day name shows in header */

  color: #000;
}

.calendar thead .hilite {
	color: #gray;
	
}

.calendar thead .active {
	padding: 2px 0px 0px 2px;
	border-color: #135cac;
}

.calendar thead .daynames {

/* Row <TR> containing the day names */
	background: #eee;
	border-width: 1px;
	border-color: #999;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day {
/* Cells <TD> containing month days dates */
	text-align: center;
	border-width: 1px;
	border-style: solid;
	border-color: #ddd #2c2c2c #063452 #ddd;
}

.calendar tbody .day.othermonth {
	font-size: 70%;
	color: #bbb;
}

.calendar tbody .day.othermonth.oweekend {
	color: #fff;
	background-color: #135cac;
}

.calendar table .wn {
	background: #none;
	color: #18234e;
	visibility: hidden
}

.calendar table .wn {
	background: #none;
	color: #ff81e8;
	visibility: hidden
}

.calendar tbody td {
	width: 2em;
	height: 1.5em;
	padding: 0;
	margin: 0;
}

.calendar tbody td.weekend {


/* Cells showing weekend days */

  color: #fff;
	background-color: #18234e;
}

.calendar tbody .rowhilite td.wn {
	background: #efe;
}

.calendar tbody td.hilite {


/* Hovered cells <TD> */
	color: black;
  background: #ffe;
}

.calendar tbody td.active {


/* Active (pressed) cells <TD> */

  background: #cbccfd;
  color: white;
}


.calendar tbody td.selected {


/* Cell showing today date */

  font-weight: bold;
	background-color: #18234e;
	color: #fff;
}


.calendar tbody td.weekend:hover {


/* Cells showing weekend days */

  color: black;
	background-color: white;
}



.calendar tbody td.today {
	font-weight: bold;
	
}

.calendar tbody .disabled {
	color: #999;
}

.calendar tbody .emptycell {
	


/* Empty cells (the best is to hide them) */

  visibility: hidden;
}

.calendar tbody .emptyrow {

  background: #ffe;

/* Empty row (some months need less than 6 rows) */

  display: none;
  
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot {
}

/* Tooltip (status bar) cell <TD> */
.calendar tfoot .ttip {
	color: #fff;
	background: #fff url(bar.gif) scroll no-repeat;
	border: 0 solid white;
	border-width: 3px 1px;
	height: 21px;
	font-size: 0px;
}

.calendar tfoot .hilite {
	padding: 1px;
}

.calendar tfoot .active {
	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: 1px solid #000;
	background: #fff;
	color: #000;
	font-size: 90%;
}

.calendar .combo {
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	width: 4em;
	cursor: default;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	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: #18234e;
	color: #fff;
}

.calendar .combo .active {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background: #135cac;
	font-weight: bold;
	color: #fff;
}

.calendar td.time {
	border-top: 1px solid #fff;
	padding: 1px 0px;
	text-align: center;
	background-color: #fed;
}

.calendar td.time .hour,

.calendar td.time .minute,

.calendar td.time .ampm {
	padding: 0px 3px 0px 4px;
	border: 1px solid #429967;
	font-weight: bold;
	background-color: #fff;
}

.calendar td.time .ampm {
	text-align: center;
}

.calendar td.time .colon {
	padding: 0px 2px 0px 3px;
	font-weight: bold;
}

.calendar td.time span.hilite {
	border-color: #000;
	background-color: #135cac;
	color: #fff;
}

.calendar td.time span.active {
	border-color: #f00;
	background-color: #000;
}