/* Style sheet for simulating frames using only Cascading Style Sheets */

html {
}

/* use a sans-serif font everywhere (since the body is everything) */
body {
    font-size: 100%;
    font-family: Arial, Helvetica, Geneva, Swiss, sans-serif;
    padding: 0px;
    margin: 0px;
    background-color: #FFF;
}

/* "Mast Head" is the top of the page */
#mastHead {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 16ex;
    z-index: 1;
    border: none;
    background-color: #CCC;
    color: #FF9A00;
    text-align: right;
    border-bottom: 1px solid #000;
}

/* define the padding for an H1 in the mastHead */
#mastHead>h1 {
    padding-right: 1em;
}

/* define the padding for an H1 in the mastHead */
#mastHead>h3 {
    padding-right: 1em;
    color: #000000;
}


/* "Link Index" is the simulation of the left index/browsing frame */
#linkIndex {
    position: fixed;
    left: 0px;
    top: 17ex;
    width: 220px;
    border: none;
    padding: 3px;
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 150px;
}


/* "Contents Box" is the simulation of the main content frame */
#contentsBox{
    position: relative;
    margin-top: 17ex;
    margin-left: 225px;
    padding: 0px 4px;
    border:none;
    border-left: 2px solid orange;
}

/* setup linkIndex to have spiffy, mouse-over links */
#linkIndex>a{
    display: block;
    padding: 1px 0px;
    padding-left: 10px;
    font-weight: bold;
    font-size: 90%;
    border-left: 1px solid #fff;
}

#linkIndex>a,#linkIndex>a:link{
    text-decoration: none;
}

#linkIndex>a:visited{
    color: green;
}

#linkIndex>a:hover{ 
    color: #DD0000;
    background-color: #DDDDDD;
    text-decoration: underline;
    border-right: 15px solid;
    border-left: 1px solid;
}

pre.code{
    margin: 5px 25px;
    border: 2px dashed #ddd;
    padding: 3px 8px;
}

dt{
    margin-top: 1em;
    color: #DD0000;
}

#contentsBox>a,#contentsBox>a:link{
    text-decoration: none;
    font-weight: bold;
    font-size: 90%;
}

#contentsBox tt{ 
    color: navy;
    background-color: #FFDDAA;
    padding: 0px 3px;
}

#foot{
    font-family: monospace;
    color: #2277DD;
}

