/* the div that holds the date picker calendar */
.dpDiv {
	}


/*
the table (within the div) that holds the date picker calendar 
Bảng chứa lịch
*/
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #505050;
	background-color: #ffeca2;
	border: 1px solid #AAAAAA;
}


/* 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)
Đường viền của bảng chứa những ô ngày (Chứa một ô trắng hoặc số từ 1-31)
*/
.dpTD {
	border: 1px solid #0479bf;
	}


/*
a table cell that holds a highlighted day (usually either today's date or the current date field value) 
Ô chứa ngày hiện hành (Chỉ định dạng được nền hay đường viền ô còn không định dạng được chuỗi text bên trong ô)
*/
.dpDayHighlightTD {
	background-color: #ffcd00;
	border: 1px solid #AAAAAA;
}

/*
additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value)
Ô chứa ngày hiện hành (Chỉ định dạng được chuỗi text bên trong ô còn không định dạng được nền hay đường viền của ô)
*/ 
.dpDayHighlight {
	color: #FFFFFF;
	font-weight: bold;
}

/*
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)
Ô ngày trong bảng sẽ được định dang khi di chuột vào
*/
.dpTDHover {
	background-color: #ffcd00;
	border: 1px solid #888888;
	cursor: pointer;
	color: #FFFFFF;
	}


/* 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.)
Bảng chứa tên những thứ trong tuần (Mon, Tue, Wed...)
*/
.dpDayTD {
	font-family:Tahoma, Arial, "Times New Roman";
	font-size:10px;
	background-color: #d6a40c;
	border: 1px solid #AAAAAA;
	color: white;
	}


/*
additional style information for the text that indicates the month and year
Chuỗi text thể hiện tháng và năm phía trên
*/
.dpTitleText {
	font-size: 12px;
	color: #025e95;
	font-weight: bold;
	}


/*
the forward/backward buttons at the top
Nút di chuyển tiến/lùi bên trên cùng dùng để chỉnh tháng/năm
*/
.dpButton {
	border:#78bae2 1px solid;
	height:18px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#10344a;
	background-color:#FFFFFF;
	text-decoration:none;
}


/*
the "This Month" and "Close" buttons at the bottom
Nút "This Month" và "Close" ở phía dưới dùng để lấy tháng hiện hành và đóng cửa sổ Calendar
*/
.dpTodayButton {
	border:#78bae2 1px solid;
	height:18px;
	font-family:Tahoma, Arial, "Times New Roman";
	font-size:10px;
	color:#10344a;
	background-color:#FFFFFF;
	text-decoration:none;
}
