﻿.calendar {
    position: absolute;
    width:300px; 
    cursor:default;
    border-top: 3px solid #ccc;
    border-bottom: 3px solid #ccc;
    padding-top: 6px;
    background-color: white;
    margin-top: 4px;
}

.CalMonth, .CalPrevMonth, .CalNextMonth
{
    height: 30px;
    float: left;
    line-height: 30px;
    background-position:center center;
    background-repeat:no-repeat;
    text-transform: uppercase;
}

.CalMonth
{
    width: 240px;
    text-align:center;
    font-size:18px;
    padding-bottom: 8px;
}

.CalPrevMonth, .CalNextMonth
{
    text-align: center;
    width: 30px;
    color: #333;
    cursor: pointer;
    font-size: 24px;
    padding-bottom: 8px;
}

.CalPrevMonth:hover, .CalNextMonth:hover
{
    color: #008500;
}

.CalDayHeader, .CalWeekHeader, .CalWeekNumberSpacingHeader
{
    float:left;
    width: 38px;
    height: 21px;
    text-align:center;
    color: #666666;
    font-size: 14px;
    border-bottom: solid 1px #cccccc;
    color: #008500;
}

.CalWeekHeader {
    width: 30px;
    margin-right: 4px;
}

.CalSpaceAfterDayHeader
{
    height: 4px;
    font-size: 3px;
}

.CalDayInMonth, .CalNotDayInMonth, .CalSelected, .CalWeekNumber
{
    float: left;
    width: 38px;
    height: 32px;
    line-height: 35px;
    text-align:center;
    font-size: 16px;
    cursor: pointer;
}

.CalDayInMonth
{
    color: #333333;    
}

.CalNotDayInMonth
{
    color: #999999;
}

.CalDayInMonth:hover, .CalNotDayInMonth:hover
{
    color: white;    
    color: #008500;
    font-weight: bold;
    border-radius: 3px;
    box-shadow: #008500 0 0 4px;
}


.CalSelected
{
    color: #1D2F75;
    color: #008500;
    font-weight: bolder;
}

.CalWeekHeader
{
    width: 30px;    
}

.CalWeekNumber
{
    width: 29px;    
    color: #999999;
    border-right: solid 1px #cccccc;
    font-size: 12px;
    margin-right: 4px;
}

.CalWeekNumberSpacingHeader, .CalWeekNumberSpacing
{
    width: 4px;
}

.CalendarRows
{
    clear: left;
}

.CalendarToday
{
    height: 32px;
    line-height: 32px;
    border-top: solid 1px #cccccc;
    padding-left: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.CalendarToday:hover {
    color: #008500;
}