@charset "utf-8";
/* CSS Document */

/* calendar styles */
#calendar {
    -moz-user-select: none;
    border: 1px solid #EEEEEE;
    border-radius: 6px 6px 6px 6px;
    color: #333333;
    font-family: Arial,sans-serif;
    font-size: 12px;
    margin: 0px auto;
	background-color:#FFF;

    width: 100%;

}
#calendar .navigation {
    background-color: #EEE;
   /* border: 1px solid #E3A1A1;*/
    border-radius: 6px 6px 6px 6px;
    color: #777;
    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;
    margin: 0 2.3em;
    text-align: center;
	line-height:200%
}
#calendar .navigation .prev, #calendar .navigation .next {
    background-image: url(../images/nav.png);
    height: 22px;
    opacity: 0.9;
    position: absolute;
    top: 4px;
    width: 24px;
}
#calendar .navigation .prev {
    background-position: 0 0;
    left: 4px;
	top:1px;
}
#calendar .navigation .next {
    background-position: -24px 0;
    right: 4px;
	top:1px;
}
#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 {
    border: 0 none;
    padding: 1px;
}
#calendar table td a {
    background-color: #EEEEEE;
    border: 1px solid #D8DCDF;
    color: #004276;
    display: block;
    font-weight: normal;
    opacity: 0.7;
    padding: 0.2em;
    text-align: right;
    text-decoration: none;
	min-height:20px;
}
#calendar table td a:hover {
    background-color: #F6F6F6;
    border: 1px solid #CDD5DA;
    color: #111111;
}
#calendar table td.current a {
    font-weight: bold;
	min-height:20px;
    opacity: 1;
}
#calendar table td.today a {
    background-color: #EEE;
    border: 1px solid #DDD;
    color: #444444;
    font-weight: bold;
    opacity: 1;
}


#calendar table td.course a {
    background-color: #FBF8EE;
    border: 1px solid #fca1a1;
    color: #FF000;
    font-weight: bold;
    opacity: 1;
}