/* CSS Document*/

/*Define the body element's*/
body{
   
}


/*This section is for headers*/
h1{
   text-align:center;
   font-size: xx-Large;
}

h2{
   margin-left: 5px;
   font-size: 1.5em;
}

h3{
   text-align: center;
}



/*This section is for links*/
a:link
{font-weight:normal; color:White
}
a:visited
{font-weight:normal; color:Green;
}
a:hover
{color: Blue;
}




/*This section is for a paragraph section*/
p {
   font-size:18px;
   margin-left: 5px;
}


/*This section is for list attributes*/
dt {
   font-size: 20;
}

dd {
   font-size: 17;
}




/*This section is for the image's black border.*/
/*img {
    border-color: #000000; border:thick; border-style:ridge; float: right;
}*/
/*This section is for figure captions*/
figcaption {text-align:center}



/*This section is for table style*/
tbody {
   background-color: white;
}

td{
   border: 1px solid black;

}
th {
    border: thick;
    border-style:ridge;
    background-color: #18453B;
    color: white;
    font-size: large;
    
}


/*This section is for page layout*/
<style>

#header { 
    text-align: center;
    height: 50px;
    background-color: white;
}

#nav {
    background-color: black;
    color: white;   
    width: 205px;
    float: left;
    vertical-align: top;
    height: 126%;

}

#news {
   background-color: #18453B;
   color: white;
   width: 200px;
   float: right;
   height: 275%;
}

#content {
    margin-left: 210px;
    margin-top: 10px;
    margin-right: 15px;
    background-color: #AFAFAF;
    vertical-align: top;
    min-height: 100%;
    width: 79.5%;
       
}

#footer {
   background-color: white;
   color: black;
   clear: both;
   text-align: center;
}


</style>

#aside {
}