/* --- start of css --- */

/* 
 * ------------------------
 * DATE PICKER OUTER 
 * ------------------------
 */
div.datepicker {
	position: relative;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 210px;
	height: 160px;
	position: absolute;
	cursor: default;
	top: 0;
	left: 0;
	display: none;
}
.datepickerContainer {
	background: #FFCED1;
	position: absolute;
	border:2px solid #FF3399;
}

/* 
 * ------------------------
 * DATE PICKER OUTER BORDER 
 * ------------------------
 */
.datepickerBorderT {
	position: absolute;
	left: 10px;
	top: 0;
	right: 10px;
	height: 10px;

}
.datepickerBorderB {
	position: absolute;
	left: 10px;
	bottom: 0;
	right: 10px;
	height: 10px;

}
.datepickerBorderL {
	position: absolute;
	left: 0;
	bottom: 10px;
	top: 10px;
	width: 10px;
}
.datepickerBorderR {
	position: absolute;
	right: 0;
	bottom: 10px;
	top: 10px;
	width: 10px;

}
.datepickerBorderTL {
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;

}
.datepickerBorderTR {
	position: absolute;
	top: 0;
	right: 0;
	width: 10px;
	height: 10px;

}
.datepickerBorderBL {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 10px;

}
.datepickerBorderBR {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 10px;
	height: 10px;

}

.datepickerHidden {
	display: none;
}



/* 
 * ------------------------
 * DATEPICKER HEADERS & LABELS
 * ------------------------
 */


div.datepicker table td {
	text-align: right;
	padding: 0;
	margin: 0;
}
div.datepicker th {
	text-align: center;
	color: #333;
	font-size: 9px;
	font-weight: bold;
}
div.datepicker .datepickerDoW{
	background: #f5f2e4;
}
div.datepicker tbody th {
	/*text-align: left;*/
}

div.datepicker tbody a {
	display: block;
}

.datepickerMonth{
	text-transform: uppercase;
}

.datepickerWeek a span {
	color: #fff;
	font-weight: bold;
}

.datepickerSpace div {
	width: 20px;
}

table.datepickerViewDays tbody.datepickerMonths,
table.datepickerViewDays tbody.datepickerYears {
	display: none;
}
table.datepickerViewMonths tbody.datepickerDays,
table.datepickerViewMonths tbody.datepickerYears,
table.datepickerViewMonths tr.datepickerDoW {
	display: none;
}
table.datepickerViewYears tbody.datepickerDays,
table.datepickerViewYears tbody.datepickerMonths,
table.datepickerViewYears tr.datepickerDoW {
	display: none;
}

/* 
 * ------------------------
 * DATEPICKER LINKS
 * ------------------------
 */

div.datepicker a {
	color: #FF3399;
	text-decoration: none;
	cursor: pointer;
	outline: none;
	font-weight:bold;
}

.datepickerDays a {
	width: 20px;
	line-height: 16px;
	height: 16px;
	padding-right: 2px;
}
.datepickerYears a,
.datepickerMonths a{
	width: 44px;
	line-height: 36px;
	height: 36px;
	text-align: center;
}

.datepickerMonth a {
	text-align: center;
	height: 20px;
	line-height: 20px;
}
.datepickerGoNext a {
	float: right;
	width: 20px;
}
.datepickerGoPrev a {
	float: left;
	width: 20px;
}

/* 
 * ------------------------
 * DATE PICKER DATE CELLS 
 * ------------------------
 */

tbody.datepickerDays td, tbody.datepickerMonths td, tbody.datepickerYears td{
	border: 1px solid #fff;
}

tbody.datepickerDays td:hover, tbody.datepickerMonths td:hover, tbody.datepickerYears td:hover{
	background: #fff;
	border: 1px solid #996633;
}

/* 
 * ------------------------
 * DATE PICKER SELECTED DATE CELLS 
 * ------------------------
 */

tbody.datepickerDays td.datepickerSelected{
	background: #FF3399;
} 

tbody.datepickerDays td.datepickerSelected a{
	color: #f5f2e4;
}

tbody.datepickerDays td.datepickerSelected a:hover{
	color: #333333;
}


/* 
 * ------------------------
 * DATE PICKER NOT IN MONTH DATE CELLS 
 * ------------------------
 */

td.datepickerNotInMonth a {
	color: #FF3399;
	font-weight: normal;
}

div.datepicker td.datepickerNotInMonth a:hover {
	color: #FF3399;
}

/* 
 * ------------------------
 * DATE PICKER SPECIAL DATE CELLS 
 * ------------------------
 */

td.datepickerSpecial a {
}

/* 
 * ------------------------
 * DATE PICKER DISABLED DATE CELLS 
 * ------------------------
 */

td.datepickerDisabled a,
td.datepickerDisabled.datepickerNotInMonth a{
	color: #333333;
	font-weight: normal;
}
 
tbody.datepickerDays td.datepickerDisabled:hover{
	background: #666666;
	color:#fff;
	border:1px solid #dbc890;
}
td.datepickerDisabled a:hover {
	color: #ccc;
} 
