﻿#calendar
{
    width: 900px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

    /* ------------ SIDEBAR MENU --------------------- */

    #calendar ul, #calendar table
    {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    #calendar .season-events
    {
        margin-top: 40px;
        float: left;
        width: 328px;
    }

        #calendar .season-events li
        {
            cursor: pointer;
            padding-left: 54px;
            font-weight: bold;
            font-size: 18px;
            color: #454545;
            line-height: 32px;
        }

            #calendar .season-events li.calendar-list-selected
            {
                position: relative;
                color: #009DA4;
            }

                #calendar .season-events li.calendar-list-selected span.calendar-list-selected-icon
                {
                    position: absolute;
                    left: 0;
                    top: 9px;
                    width: 44px;
                    height: 12px;
                    background-color: #009FA3;
                }

    /* --------------- CONTENT --------------------- */

    #calendar .calendar-content
    {
        float: right;
        width: 523px;
        margin-bottom: 50px;
    }

        #calendar .calendar-content h1
        {
            font-weight: normal;
            color: #01A0A4;
        }

        #calendar .calendar-content hr
        {
            border-color: #BFBFBF;
            border-style: solid;
            border-width: 1px;
        }

/* --------------- CALENDAR --------------------- */

#event-calendar .calendarTable
{
    background-color: #D2D2D2;
    color: #333;
    border: none;
    width: 524px;
    height: 280px;
    margin-bottom: 30px;
}

    #event-calendar .calendarTable td
    {
        text-align: center;
        padding: 2px 4px 2px 4px;
    }

        #event-calendar .calendarTable td.monthHead
        {
            border: none;
            background-color: #000;
            height: 98px;
            color: #fff;
            margin: 0;
            font-size: 20px;
        }

            #event-calendar .calendarTable td.monthHead h2
            {
                display: inline;
                line-height: 50px;
                cursor: pointer;
            }

        #event-calendar .calendarTable td.weekDay
        {
            padding: 0;
            margin: 0;
            font-weight: bold;
        }

        #event-calendar .calendarTable td.monthDay,
        #event-calendar .calendarTable td.eventDay
        {
            width: 50px;
            height: 40px;
            font-size: 15px;
        }

        #event-calendar .calendarTable td.eventDay
        {
            cursor: pointer;
        }

            #event-calendar .calendarTable td.eventDay span
            {
                line-height: 39px;
                border-radius: 50%;
                background-color: #009FA3;
                width: 39px;
                height: 39px;
                display: block;
                text-align: center;
                margin: 0 auto;
                vertical-align: middle;
            }

/*-----------CALENDAR HEADER---------------------------------*/

#event-calendar div.calendar-header
{
    width: 524px;
    height: 100px;
    background-color: #000;
    position: relative;
    margin-top: 10px;
}

    #event-calendar div.calendar-header h2
    {
        width: 300px;
        cursor: pointer;
        text-align: center;
        color: #38D2D2;
        line-height: 110px;
        font-size: 20px;
        margin: 0 auto;
        font-weight: normal;
    }

#event-calendar span.next-month,
#event-calendar span.prev-month
{
    position: absolute;
    top: 23px;
    cursor: pointer;
}

#event-calendar span.prev-month
{
    left: 15px;
    border-right: 15px solid #009EA2;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
}

#event-calendar span.next-month
{
    border-left: 15px solid #009EA2;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    right: 15px;
}


/*-----------WEEKDAYS------------------------------------------------------------*/


#event-calendar ul.weekdays-list
{
    width: 524px;
    margin: 0 auto;
    background-color: #D2D2D2;
}


    #event-calendar ul.weekdays-list li
    {
        font-size: 16px;
        display: inline-block;
        text-align: center;
        width: 66px;
        height: 29px;
        line-height: 29px;
        margin-right: 10px;
        border-bottom: 1px solid #009FA5;
    }

        #event-calendar ul.weekdays-list li:last-child
        {
            margin-right: 0;
            width: 67px;
        }

/* ---------------------EVENT LIST ITEMS------------------------------------------------------*/


#calendar-events ul.ul-events li
{
    width: 523px;
    height: 100px;
    cursor: pointer;
    position: relative;
}

#calendar-events h1
{
    border-bottom: 1px solid #BFBFBF;
    padding-bottom: 20px;
    margin: 0;
}

#calendar-events ul.ul-events li span.event-list-item-day,
#calendar-events ul.ul-events li span.event-list-item-month,
#calendar-events ul.ul-events li h3.event-list-item-title,
#calendar-events ul.ul-events li p.event-list-item-text
{
    position: absolute;
}

#calendar-events ul.ul-events li span.event-list-item-day
{
    color: #000;
    top: 20px;
    left: 5px;
    line-height: 39px;
    border-radius: 50%;
    background-color: #009FA3;
    width: 39px;
    height: 39px;
    display: block;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
}

#calendar-events ul.ul-events li span.event-list-item-month
{
    left: 12px;
    top: 65px;
    text-align: center;
    font-size: 16px;
}

#calendar-events ul.ul-events li h3.event-list-item-title
{
    left: 60px;
    top: 9px;
    font-weight: bold;
    font-size: 16px;
    color: #010101;
}

    #calendar-events ul.ul-events li h3.event-list-item-title span.event-list-item-time
    {
        color: #029FA4;
        padding-left: 5px;
    }

#calendar-events ul.ul-events li p.event-list-item-text
{
    left: 60px;
    top: 46px;
    font-size: 15px;
}

/* EVENT SINGLE ITEM*/


#calendar-events div.event
{
    width: 523px;
    cursor: pointer;
}

    #calendar-events div.event div.event-header-container
    {
 
        display: block;
        height: 70px;
 
    }

    #calendar-events div.event h1.event-title
    {
        display: block;
        border-bottom: 1px solid #BFBFBF;
        margin-bottom: 20px;
    }

    #calendar-events div.event span.event-day
    {
        float: left;
        line-height: 39px;
        border-radius: 50%;
        background-color: #009FA3;
        width: 39px;
        height: 39px;
        text-align: center;
        vertical-align: middle;
        font-weight: bold;
    }

    #calendar-events div.event span.event-month
    {
       float: left;
       font-size: 19px;
       padding:10px;
    }

    #calendar-events div.event span.event-time
    {
        float: left;
        color: #000000;
        font-size: 16px;
       padding-top: 11px;
    }

    #calendar-events div.event p.event-text
    {
        font-size: 15px;
    }
