/*************************************************
 * Site Name: University Honors & Awards
 * 
 * Description: Media Queries stylesheet
 * Author: IU Communications 
 * Author URI: http://communications.iu.edu
 ************************************************/

/* Global */
@import url("../../_global/css/media-queries/all.css");

/* 480px (480/16) */
@import url("480.css") screen and (min-width: 30.000em);

/* 600px (600/16) */
/*@import url("600.css") screen and (min-width: 37.500em);*/

/* 768px (768/16) */
@import url("768.css") screen and (min-width: 48.000em);

/* 980px (980/16) - 960+20 for FF, IE, Opera d/t rounding */
@import url("960.css") screen and (min-width: 61.250em);

/* 320px (320/16) */
@media screen and (max-width: 20.000em) {
    
    /****************************************
     * Homepage
     ****************************************/
    
    /*** Slideshow & Feature ***/
    
    #home #feature #feature-images li img,
    #home #slideshow li img {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
}

/* 480px (480/16) */
@media screen and (max-width: 30.000em) {
    
    /****************************************
     * UHA Search
     ****************************************/
    
    #content .uha-search select {
        max-width: 238px;   
    }
    
    
    /****************************************
     * UHA Results
     ****************************************/
    
    /*** Table ***/
    
    #content .uha-results th,
    #content .uha-results td {
        display: table-cell;
    }
    #content .uha-results th {
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
    }
    #content .uha-results td {
        border-bottom: 3px solid #fff;
        border-left: 1px dotted #1c1b1a;    
    }
    #content .uha-results td:first-child {
        border-left: none;
    }
    #content .uha-results tr:last-child th,
    #content .uha-results tr:last-child td {
        border-bottom: none;    
    }
    #content .uha-results thead tr:last-child th,
    #content .uha-results thead tr:last-child td {
        border-bottom: 3px solid #fff;  
    }
    #content .uha-results thead th {
        border-right: none;
        border-left: 1px dotted #1c1b1a;
    }
    #content .uha-results thead th:first-child {
        border-left: none;
    }

    
    /****************************************
     * Homepage
     ****************************************/
    
    /*** Slideshow & Feature ***/
    
    #home #feature #feature-images li img,
    #home #slideshow li img {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

}

/* 600px (600/16) */
@media screen and (max-width: 37.500em) {
    
    /****************************************
     * Homepage
     ****************************************/
    
    /*** Slideshow & Feature ***/
    
    #home #feature #feature-images li img,
    #home #slideshow li img {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

}