
table.jCalendar {
	background: #fff;
    border-collapse: separate;
    border-spacing: 2px;
    width:auto!important;
    padding: 25px 25px 10px 25px;
}


.jCalendar td {
    position: relative;
    font-size: 18px;
}

table.jCalendar th {
	color: #FFF;
	padding: 3px 5px;
    font-size: 18px;
}

    table.jCalendar th[title="Lundi"]:before {
        content: "Lu";
        color: #858f8f;
	    padding: 3px 5px 3px 10px;
    }

    table.jCalendar th[title="Mardi"]:before {
        content: "Ma";
        color: #858f8f;
	    padding: 3px 5px 3px 10px;
    }
    
    table.jCalendar th[title="Mercredi"]:before {
        content: "Me";
        color: #858f8f;
	    padding: 3px 5px 3px 10px;
    }

    table.jCalendar th[title="Jeudi"]:before {
        content: "Je";
        color: #858f8f;
	    padding: 3px 5px 3px 10px;
    }

    table.jCalendar th[title="Vendredi"]:before {
        content: "Ve";
        color: #858f8f;
	    padding: 3px 5px 3px 10px;
    }

    table.jCalendar th[title="Samedi"]:before {
        content: "Sa";
        color: #858f8f;
	    padding: 3px 5px 3px 10px;
    }

    table.jCalendar th[title="Dimanche"]:before {
        content: "Di";
        color: #858f8f;
	    padding: 3px 5px 3px 10px;
    }


table.jCalendar td {
	color: #333;
	padding: 10px 5px;
	text-align: center;
}
table.jCalendar td.other-month {
	color: #333;
}
table.jCalendar td.today {
	color: #f05b6f;
    font-family: "sourcesanspro-bold", helvetica, arial, sans-serif;
}
table.jCalendar td.selected {
	color: #4ebaca;
}

table.jCalendar td.selected:before {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -16px 0 0 -16px;
    border: 1px solid #4ebaca;
    border-radius: 50%;
    content: '';
}

table.jCalendar td.selected.dp-hover {
    color: #4ebaca;
}
table.jCalendar td.dp-hover,
table.jCalendar tr.activeWeekHover td {
	background: #fff;
	color: #000;
}
table.jCalendar tr.selectedWeek td {
	background: #f66;
	color: #fff;
}
table.jCalendar td.disabled, table.jCalendar td.disabled.dp-hover {
	color: #333;
}
table.jCalendar td.unselectable,
table.jCalendar td.unselectable:hover,
table.jCalendar td.unselectable.dp-hover {
	background: #bbb;
	color: #888;
}

/* For the popup */

/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */

a.dp-choose-date {
	display:-moz-inline-box;
	display:inline-block;
	width:21px;
	height:21px;
	background:url(../images/calendar.png) center center no-repeat;
	text-indent:-5000px;
	outline:none;
	/*float:right;*/
	padding-right:3px;
}
	
div.dp-popup {
	position: relative;
	background: #fff;
	font-size: 18px;
	font-family: "sourcesanspro-regular", helvetica, arial, sans-serif;
    border: 1px solid #d4d8d8;
	padding: 2px;
	line-height: 1.2em;
    border-radius:5px;
}

    div.dp-popup span {
        text-align: center;
        margin: 0 auto;
        display: block;
        margin: 20px auto 0 auto;
    }

div#dp-popup {
	position: absolute;
	z-index: 199;
    margin: 45px 0 0 0;
}
div.dp-popup h2 {
    font-size: 18px;
    text-align: center;
    margin: 15px 0 0 0;
    padding: 0;
    color: #333;
    font-family: "sourcesanspro-regular", helvetica, arial, sans-serif;
}
a#dp-close {
	font-size: 11px;
	padding: 4px 0;
	text-align: center;
	display: block;
}
a#dp-close:hover {
	text-decoration: underline;
}
div.dp-popup a {
	color: #FFF;
	text-decoration: none;
    display: block;
    text-indent: -9999px;
    padding: 15px 5px;
}

.dp-nav-prev-year, .dp-nav-next-year {
    display: none;
}

.dp-nav-prev-month {
    background: url(../images/calendrier_prec.gif) center center no-repeat;
    width: 30px;
    height: 30px;
}

.dp-nav-next-month {
    background: url(../images/calendrier_suiv.gif) center center no-repeat;
    width: 30px;
    height: 30px;
}

div.dp-popup div.dp-nav-prev {
	position: absolute;
	top: 2px;
	left: 4px;
	width: 100px;
}
div.dp-popup div.dp-nav-prev a {
	float: left;
}
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
	cursor: pointer;
}
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
	cursor: default;
}
div.dp-popup div.dp-nav-next {
	position: absolute;
	top: 2px;
	right: 4px;
	width: 100px;
}
div.dp-popup div.dp-nav-next a {
	float: right;
}
div.dp-popup a.disabled {
	cursor: default;
	color: #aaa;
    opacity: 0.5
}
div.dp-popup td {
	cursor: pointer;
}
div.dp-popup td.disabled {
	cursor: default;
    background: #f4f2f2;
}
