/*STYLE MARK-UP*/
/*general style for every element*/


*{font-family: Arial, Helvetica, sans-serif; font-size: 11px;}



/*style for inputfield*/


/*
.input{border:1px solid #CCC;font-size:0.8em;}
*/

.input {
		border: 1px solid #333333;
		background-color: #000000;
		color: #FFFFFF;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 11px;
		padding-top: 2px;
		padding-left: 2px;
		width: 150px;
		height: 20px;
		}



/*style for the days in the calendar*/

/*
td{border:1px solid #ABC;font-size:0.7em;text-align:center;width:26px}
*/

/*style for the days off the week in the calendar*/
th{font-size:0.8em;font-weight:bolder}
/*style for the container around the calendar*/
.cal_container{background:#FFF;border:2px solid #666;padding:5px}
/*style for the selected date*/
.selectedDate{border:1px solid #999999;color:#333;font-size:0.7em;font-weight:bolder;}
/*style for not active days (=empty days)*/
.notActive{border:1px solid #EFEFEF}
/*style for the title*/
.title{background: #999999;border:0px;font-size:0.9em;font-weight:bolder;padding:5px}
/*style for the prev and next buttons*/
.nav{background:#999999;border:0px;font-size:0.9em;font-weight:bolder;padding:5px}
/*style for today link at the bottom off the calendar*/
.today{border:0px;cursor:pointer;text-decoration:underline}
