/* - textonly.css - */
@media all {
body {
    /* Background color */
    background: #ffffae;    
}

#portal-top {
    /* Removes the portal top */
   background: none !important;
}

#portal-logo {
    /* Pushes the site down 2em */
    padding: 2em;
}

#portal-logo a {
    /* Hides the portal home link on the portal banner */
    display: none;
}

#portal-logo h1 {
    /* Hides the portal logo text that would normally appear when there's no image displayed */
    display: none !important;
}

#siteaction-large_text {
    /* Don't need to have this showing up since this CSS will increase the text size automatically */
   visibility: hidden !important;
}

#siteaction-text_only {
    /* Again, redundant to have this show up */
   visibility: hidden !important;
}

div .documentActions img {
    /* Doubling the image sizes of the English / French icons */
    width: 72px !important;
    height: 30px !important;
}

div .documentActions {
    /* Now repositioning them accordingly */
    margin: -6px 10px 0px 0px !important;
}

div .documentActions span {
    /* Ditto here */
    padding: 8px 2px 10px 2px !important;
}

h1.documentFirstHeading {
    /* Increased the size of the Document Header, was smaller than the rest of the text */
    font-size: 26px !important;
}


#portal-siteactions li {
    display: block !important;
    color: blue;
}

#portal-siteactions ul {
    color: blue;
}


#portal-siteactions {
    /* Set up so that it shows up left, list style, contains the text styles, contact information links and etc */
    float: left;
    clear: left;
    background-color: transparent;
    padding: 0px 0px 0px 0px !important;
    white-space: nowrap;
    list-style: none;
    margin-right: 0.5em; !important;
    height: auto !important;
    line-height: auto !important;
    font-size: 14px !important;
}

#portal-siteactions a {
    background-color: transparent !important;
    color: blue !important;
    height: auto !important;
    padding: 0.2em !important;
    margin-right: 0.2em !important;
    text-decoration: none !important;
    text-transform: lowercase !important;
    border: none !important;
}

#portal-siteactions li.selected a {
    background-color: transparent;
    color: blue;
    border: 1px solid blue !important;
}

#portal-siteactions li a:hover {
    background-color: transparent;
    color: blue;
    border: 1px solid blue !important;
}

#portal-searchbox {
    float: left;
    clear: left;
    background-color: transparent;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: left;
    text-transform: lowercase;
    white-space: nowrap;
    z-index: 2;
}

#portal-globalnav {
    /* Same as the global site actions, moves it to the left.  This part contains the links for site content */
    float: left;
    clear: left;
    background-color: transparent;
    padding: 5px 0px 0px 0px !important;
    white-space: nowrap;
    list-style: none;
    margin-right: 0.5em; !important;
    height: auto !important;
    line-height: auto !important;
    font-size: 14px !important;
}

#portal-globalnav li {
    /* This makes the block into a list instead */
    display: block;
}

#portal-globalnav li a {
    /* The normal, unselected tabs. They are all links */
    background-color: transparent !important;
    color: blue !important;
    height: auto !important;
    padding: 0.2em !important;
    margin-right: 0.2em !important;
    text-decoration: none !important;
    text-transform: lowercase !important;
    font-weight: bold;
    border: none !important;
}

#portal-globalnav li a:hover {
    border: 1px solid blue !important;
    color: blue !important;
}

#portal-globalnav li.selected a {
    background-color: transparent;
    color: black !important;
    border: 1px solid black !important;
}

#portal-personaltools li {
    display: block;
}

#portal-personaltools {
   display: none;
}

#visual-portal-wrapper {
    /* Ignores the previous site width and makes it more flexible */
    margin: 0 auto 0 auto !important;
    width: 90% !important;
}

div {
    /* Makes the text size bigger */
    font-size: 20px !important;
}

h1,h2,h3,h4,h5,h6,a,h1 a,h2 a,h3 a {
    /* Makes all the headers blue in color, wasn't automatically done */
    color: blue !important;
}

div #region-content {
    /* Normally this would be white, left it yellow to make it easier to read with the rest of the blue text */
    background: #ffffae !important;
    width: 100% !important;
    margin: 0 auto 0 auto !important;
}

#portal-breadcrumbs,
.contentViews,
.contentActions,
.help,
.legend,
div.portalMessage,
.documentByLine,
#portal-footer,
#portal-colophon,
.visualNoPrint {
    /* Hides all these useless elements */
    display: none !important;
}
}


