    /* This file defines formatting for the pagination used in the TALK library portal. It defines what the page number
 	links should look like and what behavior should occur when they are hovered over (or not hovered over) */


    /* Format links for page numbers */
    .pagination a {   
        font-size:18px;   
        color: #ffffff;   
        float: left;   
        padding: 8px 16px;   
        text-decoration: none;   
        border:1px solid #ffffff;  
	border-radius: 5px;
    }   
    /* Links will turn a different color when hovered over */
    .pagination a.active {   
            background-color: #E65C22;   
    }   
    /* Links will return to original color when not hovered over */
    .pagination a:hover:not(.active) {   
        background-color: #014576;   
    }   
