﻿body {
background-color: lightblue;
font: medium Arial, Geneva, sans-serif;
margin: 0px;
}

header.top {
background-color: black;
margin: 10px;
padding-top: 20px;
height: 150px;
}

#main {
background-color: white;
color: black;
padding: 15px;
margin: 0px 10px 10px 10px;
width: 600px;
float: left;
}

aside {
background-color: white;
color: black;
padding: 15px;
margin: 0px 10px 0px 650px;
}

/*A number of different classes need to be set up to accommodate the different text in all the files*/

p.location {
font-size: 107%;
font-weight: bold;
}

p.hours {
font-size: 105%;
font-weight: bold;
}

.year {
font-weight: bold;
font-size: 110%;
}

.data {
font-style: italic;
font-size: 105%;
line-height: 1.4em;
}

#boloney h1{
color: mediumseagreen;
}

#purpose {
font-weight: bold;
font-size: 120%;
color: #444444;
}

#apart {
font-weight: bold;
font-size: 110%;
}

/*Footer needs to include "clear:left;" for this jello layout.*/

footer {
color: white;
text-align: center;
padding: 15px;
margin: 10px;
font-size: 90%;
clear: left;
}

h1, h2 {
font-weight: bold;
color: navy;
}

h1 {
font-size: 200%;
font-style: italic;
}

h2 {
font-size: 160%;
line-height: 1.3em;
}

li {
list-style-type: square;
}

/*In order to ensure that the left and right margins are the same, the margins need to be set to "auto"*/

#allcontent{
width: 900px;
padding-top: 5px;
padding-bottom: 5px;
background-color: black;
margin-left: auto;
margin-right: auto;
}

table {
margin-left: 0px;
margin-right: 0px;
color: navy;
border: thin solid navy;
border-collapse: collapse;
text-align: center;
}

td, th {
border: thin solid navy;
padding: 4px;
}

th {
background-color: lightblue;
}

caption {
font-size: 120%;
font-style: italic;
padding-top: 10px;
padding-bottom: 8px;
font-weight: bold;
border-top: 2px solid navy;
}

a:link {
color: navy;
}

a:visited {
color: green;
}

a:hover {
color: yellow;
background: purple;
}

/*The navigation CSS needs to appear last on the file.*/

nav {
background-color: blue;
margin: 10px 10px 0px 10px;
padding-bottom: 10px;
padding-top: 10px;
}

nav ul {
margin: 0px;
list-style-type: none;
padding: 5px;
}


nav ul li {
display: inline;
padding: 5px 5px 5px 15px;
}

nav ul li a:link, nav ul li a:visited {
color: white;
border-bottom: none;
font-weight: bold;
}

nav ul li.selected {
background-color: gold;
}



























































