@charset "utf-8";
/* CSS Document */

form {
	padding: 0px;
	margin: 0px;
}

td {
	font-size: 12px;
}

.textbox {
	border: solid 1px #803145;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px;
	width: 200px;
}

.botton {
	border: solid 1px #803145;
	background-color: #cdb153;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px;
	color: #834044;
}

.date_textbox {
	border: solid 1px #803145;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px;
	width: 75px;
}

.date_left {
	padding-right: 4px;
}

table {
	padding: 0px;
	margin: 0px;
}

.t_left {
	width: 150px;
	font-size: 12px;
	padding-right: 4px;
	padding-bottom: 3px;
}

.t_right {
	padding-bottom: 3px;
}

.t_left_padding {
	padding-left: 10px;
}

.error {
	font-family: Arial, Tahoma;
	color: #A91E13;
	font-size: 12px;
	font-weight: bold;
}

.error_text {
	color: #990000;
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 8px;
}

.confirm_msg {
	padding-top: 7px;
	padding-bottom: 8px;
}

/* Date Picker CSS */

/* the div that holds the date picker calendar */
.dpDiv {
}

/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: center;
	text-valign: top;
	color: #ffffff;
	background-color: #ffffff;
	border: 0px solid #803145;
	width: 146px;	
}

/* 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 {
	font-weight: bold;
}

/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
}

.dpTD {
	border: 0px solid #ece9d8;
	color: #A86B2E;
	height: 20px;
}

/* 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: #e8e2bf;
	border: 0px solid #888888;
	cursor: pointer;
	color: #666666;
}

.dpTDdisable {
	border: 0px solid #ece9d8;
	background-color: #ffffff;
	color: #cccccc;
	height: 20px;
}

/* the table cell that holds the name of the month and the year */
.dpTitleTD {
}

/* 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: 0px solid #AAAAAA;
	color: #666666;
	font-weight: none;
}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #e8e2bf;
	border: 0px solid #AAAAAA;
	cursor: pointer;
	color: #666666;
}

/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 11px;
	color: #A86B2E;
	font-weight: none;
}

/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	color: #A86B2E;
	font-weight: none;
}