/*STYLE MARK-UP*/
.input{
	border-radius: 5px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	outline: 0;
	padding: 5px 5px 5px 5px;
	position: relative;
	-webkit-appearance: none;
	border: 0px;
	border-color: #999;
	border-style: solid;
	background-color: #FFF;
	font-family: 'Lato', "Trebuchet MS", Arial;
	height: 40px;
	width: 210px;
}
/*style for the days in the calendar*/
td{
	border: 0px solid #cdf;
	
	width: 26px;
}
/*style for the days off the week in the calendar*/
th{}
/*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 #FC0;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:#FC0;border:0px;font-size:0.9em;font-weight:bolder;padding:5px}
/*style for the prev and next buttons*/
.nav{background:#FC0;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}
