/*  Global style sheet for new CCV Website
    This should be included by all new pages.
 */

body {
    background-color:#5e5e5e;
    font-family: Helvetica, Verdana, Arial, sans-serif;
}
div#content {
    /*  Explicitly set black color even though it's typically the default */
    color: black;
    background-color:white;
    border-color: black;
    border-style: solid;
    border-width: thin;
    padding: .5em;
    min-height: 20em;
}

div#top-text {
    color: #7f7f7f;
    background-color:black;
    border-color: black;
    border-style: solid;
    border-width: thin;
    padding: .1em;
    padding-left: .5em;
    padding-right: .5em;
    font-size: 150%;
    border-bottom-style: none;
}

/*  NOTE: Do NOT style div#header for looks
    It is more intended to be a container to represent all common content not pertaining to a page
    so that pages that want to pretty-print can turn it off easily.
 */
div#header {
}

div#topimagecontainer {
    padding: 0px;
    margin-bottom: 0.75em;
}

#topimage {
    border: medium groove #999999;
}

.invisibleSeparator {
    display: none;
}

div#navbar {
    color:white;
    border-color: black;
    text-align: center;
    background-color:#3563AD;
    border-width: thin;
    border-style: solid;
    border-color: black;
    border-bottom-style: none;

    padding-left: .5em;
    padding-right: .5em;
    /*  Provide some bottom padding so that descenders (e.g. as in 'p' and 'g') don't
        touch our bottom border.  Match the top padding for symmetry.
     */
    padding-top: 1px;
    padding-bottom: 1px;
    margin: 0px;
    font-family: Optima, Arial, Helvetica, sans-serif;
}
div#navbar a {
    color:white;
    /*  Avoid a W3C CSS Validator warning by explicitly overriding background-color
        It complains because we MIGHT be inside div#content which would make us invisible
        to the user having both color and background-color white.  It is true that it's
        possible to structure the document this way.. but very unlikely.
     */
    background-color:#3563AD;
    text-decoration: none;
    padding-left: 0.5em;
    padding-right: 0.5em;
    /*  Top/Bottom padding must match padding of enclosing div so that the background
        color can be changed and fill the entire vertical space.
     */
    padding-top: 1px;
    padding-bottom: 1px;
}
div#navbar a:hover {
    color: yellow;
}

div#sign-in-out {
    text-align: right;
    font-size: 0.75em;
}

div.prettyBox {
    border: thin solid black;
    margin-bottom: 1em;
}

div.prettyBoxTitle {
    border-bottom: thin solid black;
    background-color: #3563AD;
    color: white;
}

/*  This class simply turns off display of the element so that we can add elements
    (e.g. HR) for use solely with non-CSS browsers.
 */
.hiddenIfStyled {
    display: none;
}

/* An Unordered List styled using the arrow that Huey was using */
ul.hueyArrow {
    /*  This sets the padding between the container and the items. I think.
        That is, the arrow image must live _within_ the padding area.
     */
    padding-left: 20px;
    /*  The above works for Safari.. once again for IE.
        In this case we're setting the distance between our container's edge and our border.
     */
    margin-left: 0;
    list-style-image: url('../images/arrow.gif'); /* NOTE: Relative to style/ */
}
ul.hueyArrow li {
    list-style-image: url('../images/arrow.gif');
}
