﻿/* environmentstylesheet.css */

/* Page header style */
#header{
    margin: 0px;
    padding: 0px;
    height: 100px;
    width: 100%;
    text-align: center;
    background-color: #A68759;
    border-bottom: thin solid #366336;
}

/* Page footer style */
#footer{
    margin: 0px;
    padding: 0px;
    height: 55px;
    width: 100%;
    font-family: Papyrus, Tahoma Small Cap, Sans-Serif;
    text-align: center;
    font-size: 12px;
    color: #523914;
    background-color: #A68759;
    border-top: thin solid #366336;
    clear: both;
}

/* Body text and page background */
body{
    margin: 0px;
    padding: 0px;
    font-family: Tahoma, Arial, Sans-Serif;
    font-size: medium;
    color: #47371F;
    background-color: #809966;
}

/* Unvisited links (no underline) */
a:link{
    color: #FFE099; /* dark green 006633 088834 */
    text-decoration: none;
    font-weight: bold;
}

/* Visited links (no underline) */
a:visited{
    color: #FFFF66; /* sunny yellow */
    text-decoration: none;
    font-weight: bold;
}

/* Hover links (red underlined) */
a:hover{
    color: #FFB200; /* golden-orange */
    text-decoration: underline;
    font-weight: bold;
}

/* Active links (green underlined) */
a:active{
    color: #476600; /* pine green */
    text-decoration: underline;
    font-weight: bold;
}

/* Add some margin space to main content */
#main{
    padding-left: 20px;
    padding-right: 10px;
}

/* Style for sidebar column */
#sidebar{
    float: left;
    display: inline;
    padding: 0;
    margin: 1em;
    width: 12em;
    background-color: #A68759;
    font-family: Tahoma, Arial, Sans-Serif;  /* Total width is 14em */
}

/* Float image to left of paragraph */
img.floatLeft{
    float: left;
    margin-right: 10px;
}

/* Float image to right of paragraph */
img.floatRight{
    float: right;
    margin-left: 10px;
}

/* Center image between margins */
img.center{
    text-align: center;
    margin-left: 200px;
    margin-top:10px;
    margin-bottom: 10;
}

/* Center image between margins */
div.center{
    width: 100%;
    text-align: center;
    margin: 5px;
}


/* Paragraphs styled as tips */
p.tip{
    background-color: #ACD095;
    margin-left: 220px;
    margin-right: 100px;
    padding: 5px;
    border: solid thin #167A58;
    font-style: italic;
    font-size: small;
}

/* Paragraphs styled as italics */
p.italics{
    background-color: #809966;
    font-style: italic;
    font-size: small;
    margin-left: 230px;
}
