/* CSS Document */
body{
font-family:Arial, Helvetica, sans-serif;
}

#outer_frame{
	width:216px;
	height:232px;
	background-color:#dae0d5;
	position:absolute;
	top:0px;
	left:0px;
	z-index:10;
}

#month_controls{
	width:216px;
	height:23px;
	background-color:#fff;
	position:absolute;
	top:0px;
	left:0px;
}

#month_controls #leftarrow {
	width:22px;
	float:left;
}

#month_controls #title {
	float:left;
	width:172px;
	text-align:center;
	font-size:14px;
	font-weight:bold;
}

#month_controls #title p {
	margin:0px;
	padding:0px;
}

#month_controls #rightarrow {
	width:22px;
	float:left;
}

#month_heading{
	font-weight:bold;
	font-size:18px;
	text-align:center;
	width:216px;
	height:21px;
	position:absolute;
	top:24px;
	left:0px;
	padding-top:3px;
}

#day_heading{
	width:216px;
	height:22px;
	position:absolute;
	top:44px;
	left:0px;
	margin-left:3px;
	margin-right:3px;
	margin-top:5px;
}

#day_heading .dayblock{
	width:28px;
	height:18px;
	background-color:#fff;
	text-align:center;
	padding-top:3px;
	margin-left:1px;
	margin-right:1px;
	float:left;
	font-size:12px;
	font-weight:bold;
}

#days{
	width:216px;
	height:15px;
	position:absolute;
	top:68px;
	left:0px;
	margin-left:3px;
	margin-right:3px;
	margin-top:5px;
	margin-bottom:5px;
	z-index:50;
}

#days .day{
	width:28px;
	height:19px;
	background-color:#fff;
	text-align:center;
	padding-top:5px;
	margin:1px;
	float:left;
	font-size:12px;
}

#days .selected{
	z-index:50;
	width:28px;
	height:19px;
	background-color:#FECF9C;
	color:#F7941D;
	text-align:center;
	padding-top:5px;
	margin:1px;
	float:left;
	font-size:12px;
}

#days .unavail{
	z-index:50;
	width:28px;
	height:19px;
	background-color:#D1D3D4;
	color:#3B4272;
	text-align:center;
	padding-top:5px;
	margin:1px;
	float:left;
	font-size:12px;
	text-decoration:line-through;
}

