@charset "utf-8";
/* CSS Document */

/*
===================================================================================================================
Calendar
===================================================================================================================
	Comments:
	------------------------------------------------------------
	=> Calendar: a Javascript class for Mootools that adds accessible and unobtrusive date pickers 
	             to your form elements <http://electricprism.com/aeron/calendar>
	=> Calendar Configurations and Settings

------------------------------------------------------------------------------------------------------
Dashboard Input Button
------------------------------------------------------------------------------------------------------
*/

button.dashboard{
	margin-left: 10px;
	border: 0px;
	padding: 0px;
	width: 23px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: 0 0px;
	cursor: pointer;
}

button.dashboard:hover,
button.dashboard.active{
	background-position: 0 -19px;
}

/*
------------------------------------------------------------------------------------------------------
Dashboard
------------------------------------------------------------------------------------------------------
*/
div.dashboard{
	padding: 0 12px;
	width: 147px;
	height: 175px;
	text-align: center;
}	

div.dashboard *{
	margin: 0px;
	padding: 0px;
}	

div.dashboard div{
	background: none !important;
	cursor: move;
	height: 165px;
	overflow: hidden;
	padding-top: 10px;
	position: relative;
	width: 147px;
}	
	
div.dashboard caption{
	padding-top: 4px;
	width: 100%;
	text-align: center;
	font-weight: bold;
}
	
div.dashboard caption a{
	cursor: pointer;
	display: block;
	height: 11px;
	overflow: hidden;
	position: absolute;
	text-indent: -100px;
	/*top:6px;*/
	width: 11px;
	margin-top:-14px;
}

div.dashboard caption a.prev{
	left: 1px;
	margin-top:3px;;
}

div.dashboard caption a.next{
	right: 1px;
}

div.dashboard caption a:hover{
	background-position: 0 11px;
}
	
div.dashboard caption span{
	position: relative;
	height: 25px;
	text-align: center;
}
	
div.dashboard caption span.month{
	padding-right: 8px;
}
	
div.dashboard caption span.month:after{
	content: ',';
}

div.dashboard table{
	margin: 0 auto;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	width: 147px;
	overflow: hidden;
	cursor: default;
}

div.dashboard td,
div.dashboard th{
	border: 0;
	width: 21px;
	height: 19px;
	text-align: center;
}

div.dashboard td{
	padding-right: 5px;
	width: 16px;
	text-align: right;
}

div.dashboard td.valid{
	cursor: pointer;
	font-weight: bold;
}

div.dashboard td.active{
	cursor: pointer;
	font-weight: bold;
}

div.dashboard td.hover{
	cursor: pointer;
}
