/* ------------------------------- *\
            $Contents
           Print Styles
    Created: August 12, 2013
    Updated: August 26, 2013
\* ------------------------------- */
/*
    $Contents...................Table of Contents
    $Defaults...................Set some defaults
    $Hide Elements..............Hide unneeded elements
    $Readability................Format for readability
    $Links......................Format Links
    $Images.....................Format Images
*/





/* ------------------------------- *\
            $Defaults 
\* ------------------------------- */
/* Set default width, margin, float, and background.
   This prevents elements from extending beyond the edge of the printed page, and prevents unnecessary background images from printing */

body {
    width: 100%;
    margin: 0;
    float: none;
    background: #fff url(none);
}

#wrapper {
    padding: 0 20px;
}

#header {
    position: relative;
    width: 100%;
    height: 59px;
    border-bottom: 1px solid #c6c6c6;
    background: #fff;
    margin-bottom: 20px;
}

    #header a img {
        position: relative;
        left: 0;
        top: 12px;
        margin-right: 7px;
    }

.title-bar {
    height: 59px;
    position: relative;
}

.wordmark {
    position: relative;
    top: -3px;
}

#breadcrumb {
    position: absolute;
    top: 33px;
    left: 50px;
}

    #breadcrumb a {
        text-decoration: none;
        color: #000;
    }

p.last-updated {
    margin: 40px 0 0 0;
    text-align: right;
    font-style: italic;
}

.footer-ut {
    border-top: 1px solid #393939;
    height: 33px;
    position: relative;
    top: 6px;
    clear: both;
}

    .footer-ut p {
        margin: 5px 0 0 0;
        color: #303030;
        font-size: 14px;
    }



/* ------------------------------- *\
            $Hide Elements
\* ------------------------------- */
/* Remove any elements not needed in print.
   This would include navigation, ads, sidebars, etc. */
#topnav, #navbar, #nav, #navigation, #sidebar, .ad, .noprint, .awesome-bar, .quick-menu, #site-nav, #skipNavigationLink, #sectionNav, .page-tools, #rate-feedback, .footer-column, .profiles-nav, object {
    display: none;
}

/* Additions August 15, 2013 - Chris*/

.show-hide li {
    padding-bottom: 10px;
}

 /* Display the show hide content when printing */
.show-hide-content {
    display: block !important;
}

 /* Display the tab panes content when printing */
.tab-pane {
    display: block;
}



/* ------------------------------- *\
            $Readability 
\* ------------------------------- */
/* Set body font face, size, and color. 
   Consider using a serif font for readability. */
.main {
    font-family: Cambria, Georgia, Serif;
}

h1 {
    font-size: 28px;
}

ul li {
    background: url("/assets/themes/default/images/list-tri-orange.png") no-repeat left 7px;
    padding-left: 12px;
    list-style: none;
}

ul ul li {
    background-image: url("/assets/themes/default/images/list-tri-green.png");
}

table {
    width: auto;
}

th, td {
    padding-right: 12px;
}



/* ------------------------------- *\
            $Links 
\* ------------------------------- */
/* Make hyperlinks more usable. 
   Ensure links are underlined, and consider appending
   the URL to the end of the link for usability. */

.main a:link:after, .main a:visited:after,
.secondary a:link:after, .secondary a:visited:after {
    content: " (" attr(href) ") ";
}

.main a[href^="/"]:after,
.secondary a[href^="/"]:after {
    content: " (http://www.mccombs.utexas.edu" attr(href) ") ";
}

.main a[href^="#"]:after {
    content: "";
}

.secondary {
    float: right;
    width: 200px;
    border: 1px dotted #000;
    padding: 10px;
    margin: 0 0 20px 20px;
    background: #fff;
    font-size: 90%;
}

ul.tab-nav {
    display: none;
}

.tab-pane {
    border-top: 1px dotted #000;
    clear: both;
    padding: 20px 0;
}



/* ------------------------------- *\
            $Images 
\* ------------------------------- */
.img-right {
    float: right;
    margin: 6px 0 10px 20px;
    border: 4px double #aa9c8f;
    -moz-box-shadow: 0 2px 5px #aa9c8f;
    -webkit-box-shadow: 0 2px 5px #aa9c8f;
    box-shadow: 0 2px 5px #aa9c8f;
}

.img-left {
    float: left;
    margin: 6px 20px 10px 0;
    border: 4px double #aa9c8f;
    -moz-box-shadow: 0 2px 5px #aa9c8f;
    -webkit-box-shadow: 0 2px 5px #aa9c8f;
    box-shadow: 0 2px 5px #aa9c8f;
}

.img-border {
    margin: 0 0 20px 0;
    border: 4px double #aa9c8f;
    -moz-box-shadow: 0 2px 5px #aa9c8f;
    -webkit-box-shadow: 0 2px 5px #aa9c8f;
    box-shadow: 0 2px 5px #aa9c8f;
}

.img-left-noBorder {
    float: left;
    margin: 6px 20px 0 0;
}

.img-right-noBorder {
    float: right;
    margin: 6px 0 0 20px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}