/*달력 관련 스타일*/
#calendarDiv {
	display: block; 
	font-size: 11px;
	z-index: 1000;
	width: 196px;
	color: #000;
	font-family: 돋움;
	position: absolute;
	background-color: #fff;
}

#calendarDivBox {
	width:196px;
	float:left;
	border:1px solid #EFEFEF;
}
#calendarDivBoxCont {
	width:196px;
	float:left;
	border:1px solid red;
}

#calendarDivTop {float:left;width:196px;}

#calendarDivPrev {
	width:16px;
	float:left;
	padding:5px 0 0 5px;
}

#calendarDivTopYear {
	width:46px;
	float:left;
	padding:6px 0 0 0px;
	font-weight:bold;
	text-align:center;
}

#calendarDivTopYearMove {
	width:16px;
	float:left;
	padding:5px 0 0 0;
}

#calendarDivTopMonth {
	width:34px;
	float:left;
	padding:6px 0 0 0px;
	font-weight:bold;
	text-align:center;
}

#calendarDivTopMonthMove {
	width:16px;
	float:left;
	padding:5px 0 0 0;
}

#calendarDivNext {
	width:16px;
	float:left;
	padding:5px 0 0 2px;
}

#calendarDivClose {
	width:16px;
	float:right;
	padding:5px 0 0 0;
}

#calendarDivContent {
	width:196px;
	float:left;
}

#calendarDivBottom {
	width:196px;
	float:left;
	padding:3px 0 3px 0;
	font-weight:bold;
	text-align:center;
	background-color: #F4F4F4;
}

#calendarDivContentWeek{
	width:28px;
	float:left;
	padding:10px 0 5px 0;
	font-weight:bold;
	text-align:center;
}

#calendarDivContentDay{
	width:23px;
	float:left;
	padding:3px 4px 3px 0;
	text-align:right;
}

*html #calendarDivContentDay{
	width:28px;
	float:left;
	padding:3px 10px 3px 0;
	text-align:right;
}

#calendarYearCont{
	width:55px;
	position: absolute;
	border:1px solid #4F4F4F;
	background-color: #FFF;
	z-index: 1000;
	display:none;
}

#calendarMonthCont{
	width:55px;
	position: absolute;
	border:1px solid #4F4F4F;
	background-color: #FFF;
	z-index: 1000;
	display:none;
}

/*달력 관련 스타일*/