#calendar {
    -moz-user-select: none;
    border: 1px solid #A29E9E;
    border-radius: 6px 6px 6px 6px;
    color: #333333;
    font-family: Arial,sans-serif;
    font-size: 1.1em;
    margin: 10px auto;
    padding: 0.4em;
    width: 100%;
}
#calendar .navigation {
	background-color: #054991;
	border: 1px solid #8A8585;
    border-radius: 6px 6px 6px 6px;
    color: #FFFFFF;
    font-weight: bold;
    padding: 1px;
    position: relative;
}
#calendar .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;
}
#calendar .navigation .prev, #calendar .navigation .next {
    background-image: url(../images/nav.png);
    height: 24px;
    opacity: 0.9;
    position: absolute;
    top: 4px;
    width: 24px;
}
#calendar .navigation .prev {
    background-position: 0 0;
    left: 4px;
}
#calendar .navigation .next {
    background-position: -24px 0;
    right: 4px;
}
#calendar .navigation .prev:hover, #calendar .navigation .next:hover {
    opacity: 1;
}
#calendar table {
    border-collapse: collapse;
    font-size: 0.9em;
    table-layout: fixed;
    width: 100%;
}
#calendar table th {
    border: 0 none;
    font-weight: bold;
    padding: 0.7em 0.3em;
    text-align: center;
}
#calendar table td {
    /*background-color: #EEEEEE;*/
    border: 0 none;
    padding: 1px;
}
#calendar table td a {
    border: 1px solid #a29e9e;
    color: #004276;
    display: block;
    font-weight: normal;
    opacity: 0.7;
	margin: 1.1px;
    padding: 1.3em 0.2em;
    text-align: center;
    text-decoration: none;
}
#calendar table td a:hover {
    background-color: #EAD78C !important;
    border: 1px solid #CDD5DA;
    color: #111111;
}
#calendar table td.current a {
	background: #c5e9b4;
    font-weight: bold;
    opacity: 1;
}
#calendar table td.cur-old a,
#calendar table td.sunday a {
	background: #c6e5ed;
}
#calendar table td.today a {
    background-color: #B1CDA9;
    border: 1px solid #FCD3A1;
    color: #444444;
    font-weight: bold;
    opacity: 1;
}
#calendar table td.old-future a {
    background-color: #FBFAFA;
}
	

