
/* CSS For Calendar Page */


/* Styling for the Event listings */
    #calendar > h2 {
        color: #4c8b2b !important;
        font-size: 1.5em !important;
        font-weight: normal !important; }
            @media (min-width: 768px) {
                #calendar > h2 {
                    font-size: 2em !important;
                }
        }
    
/* Adds border between events and pager */                
    div.field.field-name-body.field-type-text-with-summary.field-label-hidden > div > div > div > div.view-content {
        border-bottom: 2px solid #4c8b2b;
        }

/* Styling pager */
    .pagination > li > a, .pagination > li > span {
        border: none !important;
        color: #d5502d !important;
        background: none !important;
        }
 
 /* Hover color for pager links */   
    .pagination > li > a:hover {
        color: #4c8b2b !important;
        }

/* Removes the ... between the pages and the next / previous buttons */    
    li.pager-ellipsis.disabled > span {
        display: none !important;
        }

/* Aligns pager to the left */    
    .view-display-id-page_view_filterable > .text-center {
        text-align: left !important;
        }
    
/* Fixes margin on More Link */
    .calendarEventTime {
        margin: 0 0 5px 0 !important;
        padding: 0;
        line-height: 1.6;
        }
        
        
