/* === DatePicker Styles === */

/* Styling for the input field */
input.DatePicker{
	background: #fff url(images/date.gif) no-repeat top left;
	border: 1px solid #777;
	border-bottom-color: #bbb;
	border-right-color: #bbb;
	cursor: pointer;
	display: block;
	padding: 3px 3px 3px 24px;
	width:70px;
}
input:focus.DatePicker{
	background: #fffce9 url(images/datefocus.gif) no-repeat top left;
}

/* Styling for the calendar that shows up */
.dp_container{
	font-family: Arial, Helvetica, sans-serif;
	position: absolute;
	padding: 0;
	z-index: 500;
/* These 4 will be set by the JS to match the input field */
	height: 0;
	left: 0;
	top: 0;
	width: 0;
}
.dp_cal{
	color: #222;
	background: #ccc;
	background: -moz-linear-gradient(top, rgb(230,230,230), rgb(200,200,200));
	background: -webkit-gradient(linear,left top,left bottom,from(rgb(230,230,230)),to(rgb(200,200,200)));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E6E6E6', endColorstr='#C8C8C8');
	border: 1px solid #aaa;
	border-bottom-color: #777;
	border-right-color: #777;
	width: 210px;
	top: 24px;
	position: absolute;
	box-shadow: #000 1px 1px 3px;
	-webkit-box-shadow: #000 1px 1px 3px;
	-moz-box-shadow: #000 1px 1px 3px;
}
.dp_cal table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
.dp_cal select{
	margin: 2px 3px;
	font-size: 11px;
}
.dp_cal select option{
	padding: 1px 3px;
}
.dp_cal th,
.dp_cal td{
	width: 14.2857%;
}
.dp_cal th{
	background: #999;
	background: -moz-linear-gradient(top, rgb(160,160,160), rgb(140,140,140));
	background: -webkit-gradient(linear,left top,left bottom,from(rgb(160,160,160)),to(rgb(140,140,140)));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#A0A0A0', endColorstr='#8C8C8C');
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	padding: 2px 0;
	text-shadow: #555 1px 1px 0;
}
.dp_cal thead th{
	background: #ccc;
	background: -moz-linear-gradient(top, rgb(230,230,230), rgb(200,200,200));
	background: -webkit-gradient(linear,left top,left bottom,from(rgb(230,230,230)),to(rgb(200,200,200)));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E6E6E6', endColorstr='#C8C8C8');
}
.dp_cal td a{
	display: block;
	font-size: 11px;
	padding: 2px 0;
	text-align: center;
	width: 100%;
	text-shadow: #ddd 1px 1px 0;
	text-decoration:none;
	font-weight:bold;
	color: #222;
}
.dp_cal td a:hover, .dp_cal th.dp_np:hover{
	color: #fff;
	background: #bc2d01;
	text-shadow: #752e0b 1px 1px 0;
}
.dp_cal th.dp_np{cursor:pointer;}
.dp_empty{
	background: #aaa !important;
}
.dp_today{
	background: #bbb;
}
.dp_selected{
	background: #f5f5f5;
}
.dp_hover,
.dp_hover a{
	background: #EF8868;
	color: #000;
	text-shadow: #752e0b 1px 1px 0;
}

input.PricePicker{
	display: block;
	width: 50px;
	padding: 3px;
	border: 1px solid #cccccc;
	font-size: 11px;
	background: #fff url(images/input.gif) no-repeat top left;
	
}

input:focus.PricePicker, textarea:focus.PricePicker{
	background: #fffce9 url(images/inputfocus.gif) no-repeat top left;
}

select.NormalSelect {
	display: block;
	width: 258px;
	padding: 3px;
	border: 1px solid #cccccc;
	font-size: 11px;
	background: #fff url(images/input.gif) no-repeat top left;
}

input.TextPicker, select.TextPicker{
	display: block;
	width: 250px;
	padding: 3px;
	border: 1px solid #cccccc;
	font-size: 12px;
	padding-left:5px;
	background: #fff url(images/input.gif) no-repeat top left;
}
select.TextPicker{
	width: 260px;
}
input.IntegerPicker{
	display: block;
	width: 40px;
	text-align:center;
	padding: 3px;
	border: 1px solid #cccccc;
	font-size: 12px;
	background: #fff url(images/input.gif) no-repeat top left;
}

#dp_cal{
	position: static !important; 
	background: #ddd !important;
	width: 337px;
}

/* must have this for the IE6 select box hiding */
.dp_hide{
	visibility: hidden;
}



.dp_full{
	background: #fff;
}
.dp_half{
	background: #eee;
	cursor: default !important;
}

div#scroll_cal{
	position: relative;
	overflow: hidden;
	width:684px;
}
