html, body {
    margin: 0;
    padding: 0;
    border: 0;
    background: black;
    font-family: "Verdana", Arial, Sans-serif;
}

/*Main, Menu are for the splash page */

#main {
    width: 1100px;
    height: 750px;
    border: double #82db46 thick;
    margin: 2em auto;
    padding: 1em;
    background-color: #ee6d0c;
    background-image:url('./images/backdrop-large.png');
    background-repeat:no-repeat;
    background-position:bottom left;
} 

#menu {
    width: 700px;
    height: 400px;
    float: right;
    background-color: #fff;
    margin: 1em;
    margin-bottom: 0em;
    border: solid blue medium;
    padding: 1em;
    text-align: center;
}

.thumbnail {
    display: inline;
    height: 250px;
    width: 160px;
    margin:5px;
    border: 0;
}

/*Wrapper - the outer bundle of interior pages */
#wrapper {
    text-align: left;
    border: double #82db46 thick;
    margin: 0px auto;
    padding: 0px;
    width: 1100px;
    color: white;
}

/*Header - picture at the top */
#header {
    height: 300px;	
    margin-top: -20px;
    background-image:url('./images/smalldrop-2.png');
    background-repeat:no-repeat;
    background-attachment: scroll;
    background-position:top center;
    color: white;
    text-align: right;
    padding-right: 1em;
    
}

/* Link-bar, where the icons go */
#link-bar {
    width: 825px;
    margin: auto;
    padding: 0px;
    text-align: center;
}

/* columns */
#side-a {
    float: left;
    width: 300px;
    padding-left: 1em;
    padding-right: 1em;
}

#side-b {
	float: right;
	width: 300px;
    padding-right: 1em;
}

#side-c {
    float: right;
    width:700px;
    padding-left: 1em;
    padding-right: 1em;
}

#content { 
	float: left;
	width: 35%;
    padding-left: 1em;
    padding-right: 1em;
}

/* Footer, with time info */
#footer {
    clear: both;
    width: 1100px;
    height: 100px;
    background-image:url('./images/org-white.png');
    background-repeat:no-repeat;
    background-attachment: scroll;
    background-position:bottom right;
    text-align: left;
}

.icons {
    height: 100px;
    padding: 1em;
    border: 0;
}

span.title {
    color: DodgerBlue;
    font-size: 110%;
}

span.strong {
    color: orange;
    font-size: 110%;
    font-style: italic;
}

a {
    text-decoration: none;
    font-weight: bold; 
}
a:link {
    color: GreenYellow;
}

a:visited {
    text-decoration: none;
    color: orange;
    font-weight: bold;
}
a:active {
    color: red;
}
a:hover {
    color: Fuschia;
    font-weight: bold;

}