/* Calendar Main Div Style */
.mainDiv_
{
	position: absolute;
	border:5px solid #555555;
	z-index: 500;
	width:100%;
	background-color:rgba(0, 0, 0, 0.5);
}

/* Calendar Main Table Style */
.calendarTable_
{
	width: 500px;
	background-color: #ffffff;
}

/* Calendar Title Row Style */
.titleRow_
{
	font-family: verdana; 
	font-weight: bold; 
	font-size: 34pt; 
	color: #585858; 
	background-color: #ffffff;

}

/* Calendar Year Row Style */
.yearHeadingRow_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt; 
	color: #ffffff; 
	background-color: #ffcc00;

}

/* Calendar Month Row Style */
.monthHeadingRow_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size:  16pt; 
	color: #000000; 
	background-color: #ffcc00;
}

/* Calendar Week Days Cells Style */
.daysHeadingCell_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt; 
	width: 50px; 
	height: 32px;	
	color: #ffffff; 
	background-color: #444444;
}

/* Calendar Blank Cells Style */
.blankCell_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt; 
	width: 32px; 
	height: 64px;
	color: #000000; 
	background-color: #ffffff;
}

/* Calendar Disabled Cells Style for Expiry */
.disabledCell_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt; 
	width: 20px;
	height: 14px;		
	color: #C2C2C2; 
	background-color: #EEEEEE;
}

/* Calendar Normal Cells Style */
.normalDateCell_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt;
	text-align: center;
	width: 32px; 
	height: 64px;
	color: #000000; 
	background-color: #FFFFFF;
}

/* Calendar Current Date Cell Style */
.todayDateCell_
{
	font-family: verdana; 
	font-size: 16pt; 
	text-align: center;
	width: 32px; 
	height: 32px;
	color: #000000; 
	background-color: #CCFFCC;
}

/* Calendar Sunday Cells Style */
.sundayDateCell_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt; 
	text-align: center;
	width: 32px; 
	height: 64px;
	color: #000000; 
	background-color: #FFCCCC;
}

/* Date Cells Style On Mouse Over */
.dateOver_
{
	font-family: verdana; 
	font-size: 16pt; 
	text-align: center;
	width: 32px; 
	height: 64px;
	cursor: pointer;
	color: #000000; 
	background-color: #CCFFCC;
}

/* Calendar Months Cells Style */
.monthCell_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt; 
	text-align: center;
	width: 64px; 
	height:64px;
	color: #000000; 
	background-color: #FFFFFF;
}

/* Months Cells Style On Mouse Over */
.monthOver_
{
	font-family: verdana;  
	font-size: 16pt; 
	text-align: center;
	width: 64px; 
	height:64px;
	cursor: pointer;
	color: #000000; 
	background-color: #CCFFCC;
}

/* Calendar Years Cells Style */
.yearCell_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 16pt; 
	text-align: center;
	width: 32px; 
	height: 32px;
	color: #000000; 
	background-color: #FFFFFF;
}

/* Years Cells Style On Mouse Over */
.yearOver_
{
	font-family: verdana; 
	font-size: 16pt; 
	text-align: center;
	width: 32px; 
	height: 32px;
	cursor: pointer;
	color: #000000; 
	background-color: #CCFFCC;
}

/* Calendar Links Style */
A.linksCalendar_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 24pt; 
	color: #000000; 
	text-decoration: none;
}

A.linksCalendar_:hover
{
	color: #ffffff;
}

/* Calendar Close & Clear Button Style */
A.linksButton_
{
	font-family: verdana; 
	font-weight: normal; 
	font-size: 20pt; 
	color: #ffffff; 
	text-decoration: none;
	text-align: center;
	background-color: #444444;
	display:block;
	border:none;
  border-radius:3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
	height:40px;
}


