/* GENERAL PAGE STYLE */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* MENU STYLING */
#menu {
    background-color: #333;
    padding: 10px;
    border: 2px solid black; /* REQUIRED border */
}

/* MENU LINKS (5 STATES) */
#menu a:link {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

#menu a:visited {
    color: lightgray;
}

#menu a:hover {
    color: yellow;
    text-decoration: underline;
}

#menu a:active {
    color: red;
}

#menu a:focus {
    outline: 2px solid yellow;
}

/* NEWS CONTAINER */
.news-container {
    margin-top: 20px;
    border: 2px solid black; /* REQUIRED border on div */
    padding: 15px;
}

/* FLOAT IMAGE */
.news-container img {
    float: right;   /* REQUIRED float */
    margin-left: 15px;
    margin-bottom: 10px;
}

/* CONTINUE LINK (DIFFERENT STYLE) */
.continue-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: blue;
    text-decoration: none;
}

.continue-link:hover {
    color: red;
    text-decoration: underline;
}

/* SOURCE TEXT */
.source {
    font-size: 12px;
    color: gray;
}