/* calendar styles */
#docalendar {
    color: #333333;
    font-family: Arial,sans-serif;
    font-size: 1.1em;
    margin: 10px auto;
    padding: 0;
    width: 100%;
	max-width: 300px;
}
.home #docalendar {
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.1);
}
#docalendar .navigation {
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    font-weight: bold;
    padding: 12px 0;
    position: relative;
}
#docalendar .navigation .title {
    background: none repeat scroll 0 0 transparent;
    border-color: rgba(0, 0, 0, 0);
    color: inherit;
    line-height: 1.8em;
    margin: 0 2.3em;
    text-align: center;
}
#docalendar .navigation .prev, #docalendar .navigation .next {
    background-image: url(../images/nav.png);
    height: 24px;
    opacity: 0.9;
    position: absolute;
    top: 13px;
    width: 24px;
}
#docalendar .navigation .prev {
    background-position: 0 0;
    left: 4px;
}
#docalendar .navigation .next {
    background-position: -24px 0;
    right: 4px;
}
#docalendar .navigation .prev:hover, #docalendar .navigation .next:hover {
    opacity: 1;
}
#docalendar table {
    border-collapse: collapse;
    font-size: 0.9em;
    table-layout: fixed;
    width: 100%;
	background-color: #fff;
}
#docalendar table th {
    border: 0 none;
    font-weight: bold;
    padding: 0.7em 0.3em;
    text-align: center;
}
#docalendar table td {
    border: 0 none;
    padding: 1px;
}
#docalendar table td a {
    background-color: #EEEEEE;
    border: 1px solid #D8DCDF;
    color: #333;
    display: block;
    font-weight: normal;
    opacity: 0.4;
    padding: 0.2em;
    text-align: right;
    text-decoration: none;
}
#docalendar table td a:hover {
    background-color: #F6F6F6;
    border: 1px solid #CDD5DA;
    color: #111111;
}
#docalendar table td.current a {
    font-weight: bold;
    opacity: 1;
}
#docalendar table td.today a {
    background-color: #fff;
    border: 2px solid #aaa;
    color: #444444;
    font-weight: bold;
    opacity: 1;
}
#docalendar table td.event a {
    background-color: #B5B5B5;
    border: 1px solid #B5B5B5;
    color: #000;
    font-weight: bold;
    opacity: 1;
}