/**
 * DatePicker widget using Prototype and Scriptaculous.
 * (c) 2007 Mathieu Jondet <mathieu@eulerian.com>
 * Eulerian Technologies
 *
 * DatePicker is freely distributable under the same terms as Prototype.
 * v0.9.1
 *
 */
 
.component_calendar {
	text-align: center;
	border: 1px solid #000;
	font-family: Tahoma, Arial, sans-serif;
 	z-index: 150000;
	background-color: #647182;
	width: 180px;
	filter:alpha(opacity=98);
	-moz-opacity: 0.98;
	opacity: 0.98;
}
.component_calendar_footer {
	background-color: #454D5A;	
	font-size: 11px;	
	color: #eee;	
	padding: 3px 0;	
	cursor: pointer;	
}

.component_calendar_header {
	width: 100%;
	border-collapse: collapse;
	font-size: 11px;
	font-weight: bold;
	background-color: #454D5A;
	padding: 5px 0;
	color: #eee;
}

.component_calendar_header td {
	cursor: pointer;
	padding: 4px;
	font-size: 12px;
	text-align: center;
}
.component_calendar_header td.component_calendar_head_name {
	cursor: default;
	width: 100%;
	font-size: 11px;
}

.component_calendar_table {
	font-size: 11px;
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

.component_calendar_table td {
	text-align: center;
	width: 30px;
	height: 20px;
	background-color: #647182;
	color: #eee;	
	cursor: pointer;
}

.component_calendar_table td.wday {
	font-weight: bolder;
	background-color: #647182;
	color: #eee;	
	cursor: default;
}

.component_calendar_table td.outbound {
	background-color: #5D6878;
	color: #ABBFD9;
}

.component_calendar_table td.now {
	background-color: #CA3838;
	color: #fff;
}

.component_calendar_table td.over {
	background-color: #00AEE2;
	color: #eee;	
}
