
/* Stylesheet.css */

/* Body text and page background */
body{
    margin: 0;
    padding: 0;
    font-family: 'Book Antigua', Times, Serif;
    font-size: medium;
    color: #00008b;
    background-color: #FFD700;
}

/* Unvisited links */
a:link{
    color: #0000FF; /* blue */
}

/* Visited links */
a:visited{
    color: #228b22; /* green */
}

/* Style for main content column */
#main{
    margin-top: 0;
    margin-bottom: 1em;
    margin-right: 2em;
    margin-left: 12em;
    padding: 2em;
    padding-top: 1em;
    /* margin-left must equal */
    /* total width of left sidebar */
    border: 6px ridge #C0C0C0;
}


/* Style for sidebar column */
/* Typestyle for buttons in Paint Shop Pro: MS Sans Serif, Regular, 14pt */
#sidebar{
    float: left;
    display: inline;
    padding: 0;
    margin: 2em;
    margin-top: 0;
    width: 8em
    /* total width is 10 em */
}


/* Level-1 Headings */
h1{
    font-family: Verdana, Geneva, sans-serif;
    font-size: xx-large;
    color: #00008b;
    text-align: center;
    font-style: italic;
}

/* Level-2 Headings */
h2{
    font-family: 'Monotype Corsiva', Cursive;
    font-size: x-large;
    color: #228b22;
    text-align: left;
}

/* Level-3 Headings */
h3{
    font-family: 'Monotype Corsiva', Cursive;
    font-size: x-large;
    color: #228b22;
    text-align: right;
}


/* Level-4 Headings */
h4{
    font-family: 'Book Antiqua', Times, serif;
    font-size: large;
    color: #00008b;
    text-align: right;
}

/* Level-5 Headings */
h5{
    font-family: 'Book Antiqua', Times, serif;
    font-size: large;
    color: #00008b;
    text-align: left;
}

/* Blockquote with blue background */
blockquote.tip {
    background-color: #99ffff
}


/* Blockquote with pink background */
blockquote.warn {
    background-color: #ff99cc
}

/* Style for header */
#header{
    clear: both;
    width: 100%;
}

/* Style for footer */
#footer{
    clear: both;
    width: 90%;
    
}
