/*The main calendar widget.  DIV containing a table.*/
DIV.calendar {
	position: relative;
}

.calendar, .calendar TABLE {
	border: 1px solid #6EAB24;
	border-radius: 10px;
	font-size: 11px;
	color: #000;
	cursor: default;
	background: #FFFFFF;
	font-family: tahoma, verdana, sans-serif;
}

/*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: #FFFFF;
	color: #78B928;
	font-size: 90%;
	background: #FFFFF /* 	border:1px solid #6EAB24; */
}

.calendar .nav {
	background: #FFFFF url(calendar/menuarrow.gif) no-repeat 100% 100%;
	color: #78B928;
}

.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: #FFFFF;
	color: #57595B;
}

.calendar THEAD .headrow { /*Row <TR> containing navigation buttons*/
	
}

.calendar THEAD .name { /*Cells <TD> containing the day names*/
	/* 	border-bottom: 1px solid #6EAB24; */
	padding: 2px;
	text-align: center;
	color: #000;
}

.calendar THEAD .weekend { /*How a weekend day name shows in header*/
	color: #FC9A30;
	font-weight: bold;
}

.calendar THEAD .hilite {
	/*How do the buttons in header appear when hover*/ -
	-background-color: #A4B4C6;
	color: #000;
	/* 	border-radius: 50%; */
	/* 	border: 1px solid #808080; */
	/* 	padding: 1px; */
}

.calendar THEAD .active { /*Active (pressed) buttons in header*/
	background-color: #E4F1E0;
	padding: 4px;
}

.calendar THEAD .daynames { /*Row <TR> containing the day names*/
	background: #FFFFFF;
}

/*The body part -- contains all the days in month.*/
.calendar TBODY .day { /*Cells <TD> containing month days dates*/
	width: 2em;
	color: #808080;
	text-align: center;
	width: 5px;
	height: 15px;
	padding: 4px;
}

.calendar TBODY .day.othermonth {
	opacity: 0.5;
}

.calendar TBODY .day.othermonth.oweekend {
	color: #FC9A30;
	opacity: 0.5;
}

.calendar TABLE .wn {
	padding: 4px;
	text-align: center;
	background: #FFFFF;
}

.calendar TBODY .rowhilite TD {
	background: #E4F1E0;
}

.calendar TBODY .rowhilite TD.wn {
	background: #FFFFFF;
}

.calendar TBODY TD.hilite { /*Hovered cells <TD>*/
	background: #FFFFFF;
	padding: 3px;
	border-radius: 50%;
	text-align: center;
	border: 1px solid #808080;
	border-radius: 50%;
}

.calendar TBODY TD.active { /*Active (pressed) cells <TD>*/
	background: #FFFFFF;
	padding: 3px;
}

.calendar TBODY TD.selected { /*Cell showing today date*/
	font-weight: normal;
	border: 1px solid #78B928;
	border-radius: 50%;
	padding: 3px;
	background: #78B928;
	font-weight: bold;
	color: white;
}

.calendar TBODY TD.weekend { /*Cells showing weekend days*/
	color: #FFAA0F;
	font-weight: bold;
}

.calendar TBODY TD.today {
	font-weight: bold;
	color: #0E963E;
}

.calendar TBODY .disabled {
	color: #999;
}

.calendar TBODY .emptycell { /*Empty cells (the best is to hide them)*/
	visibility: hidden;
}

.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)*/
	display: none;
	text-align: center;
	background: #808080;
	border-radius: 0px 0px 10px 10px;
	color: #FFFFFF;
}

.calendar TFOOT .ttip { /*Tooltip (status bar) cell <TD>*/
	padding: 2px;
	background: #0D7F65;
	border-radius: 0px 0px 10px 10px color: #FFFFFF;
	display: none;
}

.calendar TFOOT .hilite { /*Hover style for buttons in footer*/
	background: #FFFFFF;
	border: 1px solid #0D7F65;
	color: #000;
	padding: 1px;
}

.calendar TFOOT .active {
	/*Active (pressed) style for buttons in footer*/
	background: #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: 1px solid #808080;
	background: #FFFFFF;
	color: #000;
	font-size: 90%;
	z-index: 100;
}

.calendar .combo .label, .calendar .combo .label-IEfix {
	text-align: center;
	padding: 1px;
}

.calendar .combo .label-IEfix {
	width: 4em;
}

.calendar .combo .hilite {
	background: #E4F1E0;
}

.calendar .combo .active {
	border-top: 1px solid #A4B4C6;
	border-bottom: 1px solid #A4B4C6;
	background: #FFF;
	font-weight: bold;
}

.calendar TD.time .add {
	position: absolute;
	top: 0px;
	right: 0px;
	height: 10px;
    width: 10px;
    font-size: 10px;
	padding: 2px;
	text-align: center;
}

.calendar TD.spacing {
	padding-left: 3px;
}

.calendar TD.time .sub {
	position: absolute;
	bottom: 0px;
	right: 0px;
	height: 10px;
    width: 10px;
    font-size: 10px;
	padding: 2px;
	text-align: center;
}

.calendar TD.time .spinnerContainer {
	position: relative;
	width: 33px;
    height: 25px;
    vertical-align: middle;
}

.calendar TD.time .spinner {
	position: absolute;
	background-color: white;
	top: 0px;
	left: 0px;
	width: 19px;
    height: 25px;
    font-size: 15px;
}

.calendar TD.time .add:hover, .calendar TD.time .sub:hover {
	border: 1px solid #78B928;
	color: white;
	background-color: #78B928;
	border-radius: 50%;
	padding: 1px;
}

.calendar TD.time .hour, .calendar TD.time .minute, .calendar TD.time .ampm
	{
	padding: 5px;
	display: inline-block;
	vertical-align: middle;
}

.calendar TD.time .hour .value, .calendar TD.time .minute .value {
	width: 30px;
}

.calendar TD.time input[type=number]::-webkit-inner-spin-button,
	.calendar TD.time input[type=number]::-webkit-outer-spin-button {
	opacity: 1;
}

.calendar TD.time {
	border-top: 1px solid #78B928;
}

.calendar TD.time .colon {
	display: inline-block;
}
