@charset "utf-8";
/* CSS Document */

form .date_input_text{
	width:200px;
}

form #date_input_button{
	width:99px;
}


/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #505050;
	background-color: #f7f7f7;
	border: 10px solid #f7f7f7;
	}


/* 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: 4px solid #f7f7f7;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #ddecf5;
	border: 4px solid #ddecf5;
	}


/* 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: #e6eff4;
	border: 4px solid #e6eff4;
	cursor: pointer;
	color:#796d58;
	}


/* 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 {
	border-bottom: 4px solid #796d58;
	color:#796d58;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
        font-family: trebuchet MS;
	font-size: 13px;
	color: 4f4025;
	font-weight: bold;
	}


/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	color: #4f4025;
	
	}


/* the forward/backward buttons at the top */
.dpButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #9ecb49;
	background: #f7f7f7;
	font-weight: bold;
	padding: 0px;
	border:1px solid #f7f7f7;
	}


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	background: #ddecf5;
	font-weight: bold;
	border:3px solid #ddecf5;
        float: left;
	}
	
	#date_input_button{
		float:left;
		 width:110px;
		 clear:none;
		 font-size:12px;
		 margin-left:5px;
	}
