@charset "UTF-8";
/* CSS Document for project1
Author: Andrew Addens
Course: ITWP 1050
File: styles.css */

table { /*Table Styles */
    border: medium;
    border-style: solid;
    border-color: #336699;
    background-color: #ff9900;
}

img { /*Image Styles*/
    border-color: black;
    border-style: double;
}

li {
    padding-top: 0;
    padding-right: 15px;    
    padding-bottom: 0;
    padding-left: 0;
}

.funfacts { /*Fun Facts Class */
    font-family: Arial, Helvetica, sans-serif;
    background-color: #336699;
    padding: 8px;
    color:white;
    text-align: center;
}

.logos { /* Logo Class */
    border: none;
}

#content { /* Content ID */
    background-color: #336699;
    padding: 5px;
    color: white;
    width:auto;
}

#wiki { /* Wiki ID */
    color:lightgray;
    font-style: italic;
}

a { /* Hyper Styles*/
    text-decoration: underline;
    color: black;
    font-size: 90%;
}

a:link { 
    color:black;
    text-decoration: none;
}

a:visited{ 
    color: #336699;
    text-decoration: none;
}

a:hover { 
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    font-size: 100%;
}

a:active {
    color: #ff9900;
    text-decoration: underline;
    font-weight: bold;
}

