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

/*style for inputfield*/
.input{solid #CCC;}
/*style for the days in the calendar*/
td{border:1px solid #999;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 #AD0B26;color:#333;font-size:0.7em;font-weight:bolder;}
/*style for not active days (=empty days)*/
.notActive{border:1px solid #EEE}
/*style for the title*/
.title{background:#AD0B26;color:#FFF;border:0px;font-size:0.9em;font-weight:bolder;padding:5px}
/*style for the prev and next buttons*/
.nav{background:#AD0B26;color:#FFF;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}
