/*------------------------------CSS RESET------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126 
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

em {
    font-style: italic;
}
strong {
    font-weight: bold;
}


/*------------------------------TOP-LEVEL STYLE DEFAULTS------------------------------*/

body {
    margin: 0;
    padding: 0;
    font-family: "Lucida Grande", "Lucida Sans", "Verdana", sans-serif;
    min-width: 56em;
    -webkit-text-size-adjust: 100%;
}


/* sets the default gutters and limits for content stretch */
.outer_wrap {
    width: 90%;
    min-width: 56em;
    max-width: 87.5em;
    margin: 0 auto;
    padding: 0;
}

/* sets the default gutters minimum */
.inner_wrap {
    padding: 0 20px;
    position: relative;
}


/* ----------- Styles for flex pages ----------- */

.columns_wrapper {
    position: relative;
    margin: 0 0 20px -30px;     /* changed from 20px top margin */
    overflow: hidden;
}

.interior_row_wrapper {
    float: left;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.interior_row_wrapper.fp_top_margin {
    margin-top: 20px;
}

    .column {
        float: left;
    }
    
        .column_content {
            margin-left: 30px;
            background-color: #FFF;
        }
        
        .column_content.fp_top_margin {
            margin-top: 20px;
        }
        
    .column_25 {
        width: 25%;
        min-height: 1px;
    }

    .column_33 {
        width: 33.33333%;
        min-height: 1px;
    }

    .column_50 {
        width: 50%;
        min-height: 1px;
    }

    .column_66 {
        width: 66.66666%;
        min-height: 1px;
    }

    .column_75 {
        width: 75%;
        min-height: 1px;
    }

    .column_100 {
        width: 100%;
        min-height: 1px;
    }

/* ----------- End styles for flex pages ----------- */



img {
    border: 0px none;
}

a {
    text-decoration: none;
    border-bottom: 1px solid;
}

a > img {
    vertical-align: top;
}

a:not(a img) {
    border-bottom: 0 none;
}

    a:hover {
        border-bottom: 0px none;
    }

/*  #main a[href^="http://"], 
    #main a[href^="https://"] {
        background: url("../../images/common/external-link-icon.png") no-repeat scroll right center transparent;
        padding-right: 14px;
    }
    
    #main a.no_linkout[href^="http://"], 
    #main a.no_linkout[href^="https://"] {
        background: none;
        padding-right: 0;
    }*/
    
    #main a[name] {
        border-bottom: 0px none;
        height: 0;
    }
    
    #sb-nav a {
        border-bottom: 0px none;
    }


    /* Default paragraph and heading styles */

    p {
        margin: 1em 0;
        font-size: 0.9em;
        line-height: 1.2;
    }

    p.intro {
        margin-top: 0;
        font-size: 0.9em;
    }

    p.blurb {
        margin-top: 0;
        font-size: 0.9em;
    }

    p.more_link {
        margin-top: 1em;
        padding: 0;
    }

        .more_link a {
            display: block;
            font-size: 0.9em;
            font-weight: bold;
            margin: 0;
            padding: 0.4em 20% 0.4em 10px;
            border: 0 none !important;
        }

        .more_link a:hover,
        .more_link a:focus {
            border: 0 none;
        }


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 1em 0 0.15em 0;
        padding: 0;
        font-weight: bold;
        line-height: 1.4;
    }

    h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p,
    h1 + ul, h2 + ul, h3 + ul, h4 + ul, h5 + ul, h6 + ul,
    h1 + ol, h2 + ol, h3 + ol, h4 + ol, h5 + ol, h6 + ol,
    h1 + dl, h2 + dl, h3 + dl, h4 + dl, h5 + dl, h6 + dl,
    h1 + h4, h2 + h4, h3 + h4, h4 + h5, h5 + h6 {
        margin-top: 0.5em;
    }

    h1 {
        font-size: 1.25em;
    }

    h2 {
        font-size: 1.25em;
    }

    h3 {
        font-size: 1.35em;
    }

    h4 {
        font-size: 1.1em;
    }

    h5 {
        font-size: 1em;
    }

    h6 {
        font-size: 0.9em;
    }


    /* Default list styles */

    ul,
    ol {
        margin-top: 0.5em;
    }

    ul {
        margin: 1em 0 1em 3em;
        list-style-type: disc;
    }

    ol {
        margin: 1em 0 1em 3.5em;
        list-style-type: decimal;
    }

        ul li,
        ol li {
            margin: 0.4em 0;
            font-size: 0.9em;
        }

            ul ul,
            ol ol,
            ul ol,
            ol ul {
                margin-top: 0.375em;
                margin-bottom: 0.6em;
            }

            ul ul {
                margin-left: 2.5em;
            }

            ol ul {
                margin-left: 2em;
            }

            ol ol,
            ul ol {
                margin-top: 0;
                margin-left: 3em;
            }

            li li {
                margin: 0.2em 0;
                font-size: 0.9em;
            }

            li li li {
                margin: 0.2em 0;
                font-size: 100%;
            }

    /* STYLES FOR DEFINITION LISTS */

    dt {
        font-weight: bold;
        font-style: italic;
    }

    dd {
        margin: 0.6em 0;
        font-size: 0.8em;
    }

        dd ul {
            font-size: 1em;
        }

        dd p {
            font-size: 1em;
        }

    /* Default subscript and superscript styles */

    sup {
        font-size: 0.6em;
        vertical-align: super;
    }

    sub {
        font-size: 0.6em;
        vertical-align: sub;
    }


.clearer {
    clear: both;
/*  height: 0px;*/
    line-height: 0px;
}

.clear_both {
    clear: both;
}


/* ---------- CSS for revised skip navigation HTML ---------- */
#navskip a, #navskip a:hover, #navskip a:visited {
    position: absolute;
    left: 0px;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#navskip a:active, #navskip a:focus {
    position: absolute;
    width: auto;
    height: auto;
    font-size: .8em;
    color: #002666;
    background: #FFF;
    top: 0; 
    left: .2em;
    overflow: visible;
    z-index: 999;
 } 
 
/*------------------------------PRIMARY CONTENT CONTAINERS------------------------------*/

#header_content,
.nav_content,
#breadcrumbs_content,
#main_content,
#footer_content {
    overflow: hidden;
}


/*------------------------------HEADER------------------------------*/

#header {
    overflow: hidden;
}

    #header_content #ucdavis_logo {
        float: right;
    }

    #header_content #ucdavis_logo a {
        border-bottom: 0px none;
    }

/*------------------------------SITE TITLE AREA------------------------------*/

#site_title {
    position: relative;
    z-index: 10;
}

#title_area_content {
    position: relative;
}

    #site_title #title {
        margin: 0 0 0 -5px;
        padding: 0 0 15px 0;
    }
    
        #site_title #title.logo {
            padding-top: 32px;
        }
    
        #site_title #title.logo h1 {
            margin: 0;
        }
    
        #site_title #title.heading {
            padding-top: 45px;
        }
    
        #site_title #title.heading h1 {
            display: block;
            margin: 0;
            color: #002855;
            font-size: 2.6em;   /* CHANGED FROM 2em ON 3/8/2012 */
            font-weight: normal;        /* ADDED ON 3/8/2012 */
            letter-spacing: -0.03em;    /* ADDED ON 3/8/2012 */
        }
        
        #site_title a {
            border: 0 none;
        }
        
        #site_title a img {
            border: 0 none;
        }
    
    
    
    
    #site_title #title_area_links {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 99;
    }

        #site_title #title_area_links ul {
            list-style-type: none;
            font-size: 100%;
        }

        #site_title #title_area_links ul a {
            font-size: 0.75em;
        }

        #site_title #title_area_links ul {
            position: relative;
            float: right;
            margin: 10px 10px 0 0;
            padding: 0;
        }

        #site_title #title_area_links ul li {
            display: inline;
            font-size: 100%;
        }

        #site_title #title_area_links ul a {
            display: block;
            float: left;
            margin: 0 0 0 1.25em;
            padding: 0;
        }

        #site_title #title_area_links ul li span.here {
            display: block;
            float: left;
            font-size: 0.75em;
            margin: 0.7em 0 0 1.5em;
            padding: 0;
            font-weight: bold;
        }
        
        
    /* Title area search styles */
        #title_area_search_etc {
            bottom: 0;
            margin: 0;
            padding: 0;
            overflow: hidden;
            position: absolute;
            right: 10px;
        }
        #title_area_search_etc #search_terms {
            height: 1px;
            left: 0;
            overflow: hidden;
            position: absolute;
            top: -500px;
            width: 1px;
        }
        #title_area_search_etc #search_header_input {
            background-color: #F0F2F5;
            border: 0px none !important;
            color: #002855;
            height: 28px;
            margin: 0px -5px 0px 0px;
            padding: 0px 8px;
            vertical-align: bottom;
        }
        #title_area_search_etc #search_header_submit {
            background-color: #4D688C;
            border: 0;
            color: #FFFFFF;
            height: 28px;
            padding: 2px 15px 3px;
            text-align: center;
            vertical-align: bottom;
        }
        

/*------------------------------PRIMARY NAVIGATION BAR------------------------------*/

#nav {
    z-index: 2;
    min-width: 100%;
}

.nav_background {
    overflow: hidden;
}

    .nav_content {
        position: relative;
    }

    #nav ul {
        list-style-type: none;
        margin: 0 0 0 14px;
        padding: 0;
    }

        #nav ul li {
            position: relative;
            float: left;
            margin: 0;
            font-size: 0.95em;
        }

            #nav ul li a {
                display: block;
                text-decoration: none;
                padding: 0.8em 10px 0.8em;
                white-space: nowrap;
                border-bottom: 0px none;
            }
            
            #nav ul li li a {
                white-space: normal;
            }



/* CDC: Edited dropdown style 09/2012 */



/*-------------------------------DROPDOWN NAVIGATION------------------------------------------*/

#_nav_dropdown .nav_background, #_nav_dropdown .nav_content { overflow:visible;  }

#nav #_nav_dropdown ul li { float:none; }

    #_nav_dropdown ul { position:relative; }
        #_nav_dropdown ul li { position:relative; bottom:0px; }

    #_nav_dropdown ul ul {margin:0px;position:absolute;display:none;width:12em;margin-top:-3px;margin-left:-1px;padding:3px 8px 8px 0px; ;z-index: 99;background-image:url('img/navtop_arrow_top.png');background-repeat:no-repeat;background-position:1em 3px; }
        #_nav_dropdown ul ul div { box-shadow:0px 1px 3px 0px #777;}
        
        #_nav_dropdown ul ul ul { left:100%;top:0px;padding:5px;background-image:url('img/navtop_arrow_left.png');background-repeat:no-repeat;background-position:left .5em; }
    
        #_nav_dropdown .bar_2 ul ul { background-image:url('img/navbot_arrow_top.png'); }
        #_nav_dropdown .bar_2 ul ul ul { background-image:url('img/navbot_arrow_top.png') }
    
    
    #_nav_dropdown ul li { position:relative; display:inline-block; }
    
        #_nav_dropdown ul li._drop {  }
    
        #_nav_dropdown ul li._drop> a { padding-right:10px;background-repeat:no-repeat;background-image:url('img/droptop_arrow_right.png');background-position:right center;border-right: 5px solid transparent; }
        #_nav_dropdown ul li._drop:hover> a { background-image:url('img/droptop_arrow_down.png'); }
    
        #_nav_dropdown .bar_2 ul li._drop> a { background-image:url('img/dropbot_arrow_right.png'); }
        #_nav_dropdown .bar_2 ul li._drop:hover> a { background-image:url('img/dropbot_arrow_down.png'); }
    
        #_nav_dropdown ul li:hover>* { display:block; }
    
    #_nav_dropdown ul ul li {
        border-left: 0px none;
        margin: 0;
        border-top: 1px solid #99A9BB;
        display:block;
    }
    #_nav_dropdown ul ul li:last-child { border-bottom: none; } 
    
        #nav #_nav_dropdown .bar_2 ul ul li { border-top:solid 1px #B38600;border-left:solid 1px #B38600; }
        #_nav_dropdown .bar_2 ul ul li:last-child { border-bottom:none; }
    
        
        #_nav_dropdown ul ul li a { 
            display:block;
            vertical-align:middle;
            text-align:left;
            padding:10px 10px;
            background-color:#667D9D;
            font:1em Helvetica, Arial, sans-serif;
            text-decoration:none;
            line-height:1.1em;
        }
    
        #_nav_dropdown .bar_2 ul ul li a { background-color:#DFC166; }
        #nav #_nav_dropdown .bar_2 ul ul li a:hover { background-color:#DAAA00; }
    
    
        #_nav_dropdown ul ul li:hover>a {
            border-style:none;
            text-decoration:none;
        }
    
    


/*---------------------------------DOUBLEDOWN NAVIGATION --------------------------------------*/

#_nav_doubledown .nav_background,#_nav_doubledown .nav_content { overflow:visible;  }

#nav #_nav_doubledown ul li { float:none; }


#_nav_doubledown ul li { position:relative;white-space:nowrap;display:-moz-inline-stack;
    display:inline-block;
}

#_nav_doubledown ul ul { display:none; }

/*---------------------------------SLIDEDOWN NAVIGATION (homesite)-----------------------------*/


/*------------------------------MAIN CONTENT------------------------------*/

#main {
    overflow: hidden;
    position: relative;
    z-index: 0;
}



    .social_media p {
        font-size: 0.85em;
        margin: 0;
        padding: 0.8em 10px 0.2em;
    }

    .social_media ul {
        list-style-type: none;
        margin: 0;
        padding: 0.4em 2px 0 2px;
        overflow: hidden;
    }

        .social_media ul li {
            float: left;
            padding: 0;
        }
    
            .social_media ul li a {
                display: block;
                margin: 0;
                padding: 4px;
                border: 0 none;
            }
        
                .social_media ul li a img {
                    border: 0 none;
                    width: 38px;
                }
            

/*------------------------CONTENT BOXES----------------------*/

/* Root content box styles */

    .content_box {
        overflow: hidden;
        padding: 0;
        margin-top: 1em;
        margin-bottom: .75em;
    }

    .column_content *:first-child {
        margin-top: 0;
    }

    .content_box.top_item {
        margin-top: 0;
    }

        .content_box img {
            width: 100%;
            vertical-align: top;
        }
        
        
        
    /* Default content_box and column heading styles */
    
        .content_box h2,
        .content_box h3,
        .content_box h4,
        .content_box h5,
        .content_box h6 {
            margin: 0.6em 10px 0.5em;
            line-height: 140%;
        }
    
        .content_box h4:first-child,
        .content_box h5:first-child,
        .content_box h6:first-child {
            margin-top: 0.6em;
        }
    
        .column h2, .content_box h2 {
            font-size: 1.1em;
        }
    
        .column h3, .content_box h3 {
            font-size: 1.1em;
        }
    
        .column h4, .content_box h4 {
            font-size: 1em;
        }
    
        .column h5, .content_box h5 {
            font-size: 0.9em;
        }
    
        .column h6, .content_box h6 {
            font-size: 0.8em;
        }
    
        .column .content_box h2 {
            font-size: 1em;
        }
    
        .column .content_box h3 {
            font-size: 1em;
        }
    
        .column .content_box h4 {
            font-size: 0.9em;
        }
    
        .column .content_box h5 {
            font-size: 0.8em;
        }
    
        .column .content_box h6 {
            font-size: 0.75em;
        }
    

        .unbordered h2,
        .unbordered h3,
        .unbordered h4,
        .unbordered h5,
        .unbordered h6 {
            margin-right: 0;
            margin-left: 0;
        }
        

        .content_box .headline {
            font-size: 1em;
            margin: 0;
            padding: 0.4em 10px;
        }

        .content_box.unbordered .headline {
            padding: 0;
            margin: 0.4em 0;
        }

        .content_box.unbordered .headline.headline_button {
            margin: 0;
        }

        .content_box .headline_top {
            margin: 0;
            border-top: 0 none;
            font-size: 1em;
            text-transform: uppercase;
            font-weight: normal;
        }

        .content_box .headline_below_image {
            margin: 0;
        }

        .content_box .headline_button {
            padding: 0;
            margin: 0;
        }

        .content_box .headline_button a {
            display: block;
            padding: 0.4em 30px 0.4em 10px;
            background-position: 95% 50%;
            margin: 0;
        }
        
        .content_box p.caption.button {
            font-size: 0.9em;
            font-weight: bold;
            margin: 0;
            padding: 0;
        }

        .content_box p.caption.button a {
            display: block;
            padding: 0.4em 10px;
        }


    /* Default content_box paragraph styles */

        .content_box p,
        .column p {
            padding: 0;
            line-height: 140%;
            font-size: 0.8em;
        }
        
            .content_box li p,
            .column li p {
                font-size: 100%;
            }
        
        .content_box p, .column .content_box p, .content_box.cb_colored p {
            margin: 0.6em 10px;
        }

        .column p, .content_box.unbordered p {
            margin: 0.6em 0;
        }

            .content_box p.attribution,
            .column p.attribution {
                text-align: right;
                font-style: italic;
            }

            .content_box p.caption,
            .column p.caption {
                margin: 0;
                padding: 0.3em 10px 0.45em;
                font-size: 0.7em;
            }

            .content_box p.more_link,
            .column p.more_link {
                clear: both;
                margin: 0.5em 0 0;
                padding: 0;
            }



    /* Default content_box list styles */
        
        .column ul,
        .column ol,
        .content_box ul,
        .content_box ol {
            margin-top: 0.5em;
            line-height: 140%;
        }

        .content_box ul {
            margin-left: 3em;
            margin-right: 10px;
        }

        .content_box ol {
            margin-left: 3.8em;
            margin-right: 10px;
        }
        
        .content_box dl dt {
            margin: 0.6em 10px;
        }
        
            .content_box.unbordered dl dt {
                margin: 0.6em 0;
            }
        
        .content_box dd p {
            font-size: 1em;
        }

        .column .content_box ul {
            margin-left: 1.4em;
        }

        .column .content_box ol {
            margin-left: 3em;
        }

        .column ul, .content_box.unbordered ul {
            margin-left: 1.4em;
            margin-right: 0;
        }

        .column ol, .content_box.unbordered ol {
            margin-left: 2.2em;
            margin-right: 0;
        }

            /* Second-level lists */

            .content_box li,
            .column li {
                line-height: 140%;
                font-size: 0.8em;
            }
            
            .content_box li {
                margin-right: 10px;
            }
            
            .content_box.unbordered li {
                margin-right: 0;
            }
            
                .content_box ul ul,
                .content_box ol ol,
                .content_box ul ol,
                .content_box ol ul,
                .column ul ul,
                .column ol ol,
                .column ul ol,
                .column ol ul {
                    margin-top: 0;
                }

                    .content_box li li,
                    .column li li {
                        line-height: 120%;
                        font-size: 0.9em;
                    }

                        .content_box li li li,
                        .column li li li {
                            font-size: 100%;
                        }

                .content_box ul ul {
                    margin-left: 1.8em;
                }

                .content_box ol ul {
                    margin-left: 1.5em;
                }
                
                .content_box ol ol,
                .content_box ul ol {
                    margin-left: 2.2em;
                }
        
                .column ul ul, .unbordered ul ul {
                    margin-left: 1.4em;
                }

                .column .content_box ul ul {
                    margin-left: 1.4em;
                }

                .column ul ol {
                    margin-left: 2.2em;
                }

                .column .content_box ul ol {
                    margin-left: 2.2em;
                }

                .column ol ol, .unbordered ol ol {
                    margin-left: 2.2em;
                }

                .column .content_box ol ol {
                    margin-left: 2.2em;
                }

                .column ol ul, .unbordered ol ul {
                    margin-left: 1.4em;
                }

                .column .content_box ol ul {
                    margin-left: 1.4em;
                }

        
        .content_box a.image_link,
        .content_box a.image_link:hover,
        .content_box a.image_link:focus {
            border: 0 none;
            background: 0 none;
            padding: 0;
            display: block;
        }


    .unbordered {
        border: 0 none;
    }
    
    .last_item {
        margin-bottom: 0;
    }
    
    
    /* Appendices and overrides for right-column-contained content_boxes */

    #right_column .content_box {
        margin: 0 0 1.5em;
    }

    #right_column .content_box .headline_top {
        padding: 0.4em 10px;
        border-top: 0px none;
        font-size: 0.875em;
        text-transform: none;
    }

    #right_column .content_box .headline_strong {
        padding: 0.4em 10px;
    }

    #right_column .content_box .headline_button {
        padding: 0;
    }

    #right_column .content_box h4, #right_column .content_box h5 {
        margin: 0.5em 0 0.3em;
    }


    #right_column .content_box p {
        margin: 0.3em 0;
        padding: 0;
/*  font-size: 80%;*/
    }

    #right_column .content_box.cb_colored p {
        margin: 0.3em 10px;
    }

    #right_column .content_box p.caption {
        margin: 0;
        padding: 0.3em 10px 0.45em;
        font-size: 0.8em;
    }
    
    #right_column .content_box p.more_link {
        margin: 0;
    }


    #right_column .content_box .right img,
    #right_column .content_box .left img {
        margin-top: 0.5em;
    }
    


    /* Style exceptions for feed content_boxes */

    .content_box.feed p {
        margin-top: 0;
        font-weight: normal;
    }

    .content_box.feed p.more_link {
        margin-bottom: 0;
    }

    .content_box.feed ul, .content_box ul.feed {
        list-style-type: none;
        margin-top: 0;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

        .content_box.feed ul li, .content_box ul.feed li {
            margin: 0.4em 10px;
            overflow: hidden;
        }
        
        .content_box.feed.unbordered ul li, .content_box.unbordered ul.feed li, #right_column .content_box.feed ul li {
            margin-right: 0;
            margin-left: 0;
        }
        
            .content_box.feed ul li.featured {
                margin: 0 0 0.8em;
            }
        
            .content_box.feed ul li h3 {
                margin-top: 0.2em;
                margin-bottom: 0.3em;
            }
            
            .content_box.feed ul li.featured h3 {
                margin: 0.5em 10px 0.3em;
                line-height: 130%;
                font-size: 1.2em;
            }
        
            .content_box.feed.unbordered ul li.featured h3, #right_column .content_box.feed ul li.featured h3 {
                margin: 0.5em 0 0.3em;
            }
        
            .content_box.feed ul li p {
                margin-right: 0;
                margin-left: 0;
                padding: 0;
                font-weight: normal;
                font-size: 0.9em;
            }
            
            .content_box.feed ul li.featured p {
                margin-left: 10px;
                margin-right: 10px;
                font-size: 1em;
            }
        
            .content_box.feed.unbordered ul li.featured p, #right_column .content_box.feed ul li.featured p {
                margin-left: 0;
                margin-right: 0;
            }
        
            .content_box.feed ul li p.date {
                margin-bottom: 0.2em;
                margin-top: 0.7em;
                font-weight: bold;
                font-size: 0.9em;
            }
            
            .content_box.feed ul li.featured p.date {
                margin-top: 0.8em;
                margin-bottom: 0.2em;
            }
                    
            .content_box.feed ul li.featured p.date + h3 {
                margin-top: 0.2em;
            }
        
        .content_box.feed .thumb {
            float: right;
            margin: 0 0 0.8em 0.8em;
            padding: 0;
            border: 0 none;
            width: 40%;
            max-width: 100px;
        }
        

    .widest {
        width: 100%;
    }

    /* added max-width to all of these */
    .extra_wide {
        width: 420px;
        max-width: 50%;
    }

    .wide {
        width: 360px;
        max-width: 40%;
    }

    .medium_wide {
        width: 300px;
        max-width: 40%;
    }

    .medium {
        width: 260px;
        max-width: 40%;
    }

    .medium_narrow, .middling {
        width: 160px;
        max-width: 40%;
    }

    .narrow_plus {
        width: 120px;
    }

    .narrow {
        width: 100px;
        max-width: 40%;
    }

    .right {
        float: right;
        clear: right;
        margin: 1em 0 1em 1em;
    }

    .left {
        float: left;
        clear: left;
        margin: 0 1em 1em 0;
    }

    .column .content_box .right, #right_column .content_box .right {
        margin-left: 0.6em;
    }

    .column .content_box .left, #right_column .content_box .left {
        margin-right: 0.6em;
    }


    /* to set width to auto when you want to float an img within a box and have it display at true size */
    .native_width {
        width: auto;
    }


    .content_box ul.featured_links {
        list-style-type: none;
        margin: 0;
        padding: 0.5em 0 0 0;
    }

    .content_box ul.featured_links + p.more_link {
        margin-top: 1.6em;
    }

        .content_box ul.featured_links li {
            margin: 0;
            padding: 0;
        }
        
            .content_box ul.featured_links li a {
                display: block;
                color: #002855;
                background: #FFF url('https://cmsresources.ucdavis.edu/cms_v2/images/common/arrow_small_right_002666.gif') scroll no-repeat 95% 50%;
                font-size: 1.1em;
                font-weight: normal;
                margin: 0;
                padding: 0.55em 18% 0.55em 10px;
                text-transform: uppercase;
                border-bottom: 1px solid #B2B2B2;
            }

                .content_box ul.featured_links li a:hover,
                .content_box ul.featured_links li a:focus {
                    background: #B2BECC url('https://cmsresources.ucdavis.edu/cms_v2/images/common/arrow_small_right_002666.gif') scroll no-repeat 95% 50%;
                    border-bottom: 1px solid #B2BECC;
                }


    /* *** Multimedia styles *** */

    .mm_box {
        overflow: hidden;
    }

    .mm_activate {
        position: relative;
    }

        .mm_activate a,
        .mm_activate a:hover,
        .mm_activate a:focus,
        .mm_activate a:visited:hover {
            border-bottom: 0px none;
        }
        
        #main_section .mm_activate a,
        #main_section .mm_activate a:hover,
        #main_section .mm_activate a:focus,
        #main_section .mm_activate a:visited:hover {
            border-bottom: 0px none;
        }

    /* Change path for play button below */
    .play_button {
        background: url("../../images/common/video_play_button.png") no-repeat scroll 0 0 transparent;
        display: block;
        height: 48px;
        bottom: 20px;
        left: 42px;
        margin-left: -24px;
        margin-top: -24px;
        position: absolute;
        text-align: left;
        width: 48px;
        opacity: 1.0;
    }
    
        .content_box .mm_activate a:hover .play_button,
        .content_box .mm_activate a:focus .play_button {
            opacity: 0.7;
        }

    /* Change path for play button below */
    .slideshow_pb {
        background: url("../../images/common/slideshow_play_button-med.png") no-repeat scroll 0 0 transparent;
        display: block;
        height: 65px;
        bottom: 20px;
        left: 42px;
        margin-left: -24px;
        margin-top: -24px;
        position: absolute;
        text-align: left;
        width: 71px;
        opacity: 1.0;
    }

    @media screen and (min-width: 1100px) {

        .slideshow_pb {
            background: url("../../images/common/slideshow_play_button-lrg.png") no-repeat scroll 0 0 transparent;
            height: 84px;
            bottom: 20px;
            left: 42px;
            margin-left: -24px;
            margin-top: -24px;
            width: 92px;
        }

    }

    /* For when slideshow_pb is in smaller column */
    .column_25 .slideshow_pb,
    .column_50 .column_50 .slideshow_pb {
        background: url("../../images/common/slideshow_play_button.png") no-repeat scroll 0 0 transparent;
        height: 45px;
        width: 65px;
    }
    
        a:hover .slideshow_pb,
        a:focus .slideshow_pb {
            opacity: 0.7;
        }


    .mm_info {
        font-weight: bold;
        font-size: 0.7em;
        margin-bottom: 0.5em;
    }

    .mm_credit {
        font-size: 0.7em;
    }


/*------------------------------FOOTER------------------------------*/

#footer {
    overflow: hidden;
    text-align: center;
    clear: both;
}

    #footer #footer_links {
        overflow: hidden;
        font-size: 0.8em;
        margin: 0 auto;
        padding: 1em 0;
    }

        #footer #footer_links ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            font-size: 100%;
        }

            #footer #footer_links ul li {
                display: inline-block;
                margin: 0;
                padding: 0 1.25em 0.5em;
            }

    #footer #standard_footer {
        margin: 0;
        padding: 1em 0 0 0;
    }

        #footer #standard_footer p {
            font-size: 0.7em;
            margin: 1em 0;
        }
        
        
    /* Override styles for landing pages */
    
    #main .mm_wrapper {
        position: relative;
        height: 0;
        overflow: hidden;
    }
    
    #main .mm_wrapper iframe, 
    #main .mm_wrapper object, 
    #main .mm_wrapper embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .fancybox-wrap a {
        border-bottom: 0 none;
    }
    