/* CSS Style Sheet for the Week 4 Homework Assignment */ 
/* David Wysocki */ 
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}
table {
    border: none;
    width: 750px;
    padding: 0;
    margin: auto;

}

h1 {
    color: #0066cc; /* cool blue*/
}

h3 {
    color: #0066cc; /* cool blue*/
    background-color: #eee; /*white*/
    padding: 5px;
    border: 5px;
    max-width: 150px;
}

h5 {
    font-style: italic;
    color: #000000; /*black*/
    font-size: 12px;
}

hr {
    border: none;
    border-top: 1px dotted #000000; /* the border*/
    height: 1px;
}

img {
    float: right;
    border: 1px solid #000000; /*border black 1px*/
    border-right: 3px solid #000000; /* right border thicker (shadow)*/
    border-bottom: 3px solid #000000; /* bottom boarder thick */
    margin: 0px 5px 10px 10px; /*white space around border*/
}

/* hyperlink styles */

a:link {
    color: #0066cc; /* cool blue*/
}

a:visited {
    color: #0066cc; /*cool blue*/
}

a:hover {
    text-decoration: none;
    color: #ff9900; /*yellow??? it looks orange to me */
    font-weight: bold;
}

a:active {
    text-decoration: underline;
    color: #0066cc; /*cool blue*/
}

/* Travel tip */
.travel_tip {
    background-color: #ff9900; /* yellow */
    padding: 5px 5px 5px 5px;
    border: 1px black solid;
    margin: 40px 5px 5px 0px;
}

.quote{
    font-style: italic;
    margin: 10px;
    color: #666666; /*darkgray*/
}

/* creating an ID */

#copyright {
    font-size: 9px;
    font-style: italic;
    text-align: center;
}

/* bulleted list */

ul li {
    list-style-type: square;
    color: #666666;
    list-style-position: inside;
    /*list styles*/
}
