/*******************
DatePicker styles
*******************/

/* the div that holds the date picker calendar */
.dpDiv 
{
	border: solid 1px #000000;
	font-size: 1em;
	background-color: #ffffff;
	color: #000000;
	padding: 0px;
	margin: 0px;	
}

/* the table (within the div) that holds the date picker calendar */
.dpTable 
{
	border: solid 1px #000000;
	font-size: 1em;
	background-color: #ffffff;
	color: #000000;
	padding: 0px;
	margin: 0px;	
}

/* a table row that holds date numbers (either blank or 1-31) */
.dpTR 
{

}

/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR
{

}

/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR 
{

}

/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR 
{

}

/* a table cell that holds a date number (either blank or 1-31) */
.dpTD 
{
	border: 1px solid #ece9d8;
}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD 
{
	background-color: #CCCCCC;
	border: 1px solid #AAAAAA;
}

/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover 
{
	background-color: #aca998;
	border: 1px solid #888888;
	cursor: pointer;
	color: red;
}

/* the table cell that holds the name of the month and the year */
.dpTitleTD 
{

}

/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD 
{

}

/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD 
{

}

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD 
{

}

/* additional style information for the text that indicates the month and year */
.dpTitleText {

}

/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight 
{
	font-weight: bold;
	background-color: #0000ff;
	color: #ffffff;
	border: solid 1px #ff0000;	
	padding: 1px;
	margin: 0px;
}

/* the forward/backward buttons at the top */
.dpButton 
{
	border: 0px;
	padding-right: 4px;
	padding-left: 4px;
}


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton 
{
	border: 0px;
	padding-right: 4px;
	padding-left: 4px;
	font-size: 0.8em;
}




div.dtpControl 
{
 clear:right;
}
span.dtpSeparator 
{
    display: block;
    width: 10px;
    padding: 5px 0 0 0;
    text-align: left;
    float: left;
    font-weight: normal;
    font-size: 1.3em;
}
input.dtpDay 
{
    margin-right: 4px !important;
    float: left;
    width: 25px !important;
}
input.dtpMonth 
{
    margin-right: 4px !important;
    float: left;
    width: 25px !important;
}
input.dtpYear
{
    margin-right: 4px !important;
    float: left;
    width: 40px !important;
}
div.dtpButton
{
    width: 40px;
    padding-right: 5px;
    height: 25px;
    float: left;
    margin-right: 4px !important;    
    margin-top: -1px;
}
input.dtpHour 
{
    margin-left: 6px !important;
    margin-right: 4px !important;
    float: left;
    width: 25px !important;
}
input.dtpMinute
{
    float: left;
    width: 25px !important;
    margin-left: 0px;
}
