﻿/*This is the ma9in content container of the page.  In other words, <body>*/
#content{
margin:0 15%;
border:1px solid silver;
padding:10px;
}

/*This was supposed to be a separate class for the seal, but it got moved into side_nav
#mich{
width:122px;
height:500px;
border:1px solid;
float:left;
}
*/

/*This is the top logo.  We might include a more robust top_nav class if it is required*/
#top{
background-color:#003366;
height:120px;
border:1px solid;
margin:0 0 0 125px;
}

/*This is the side navigation pane.  Everything works, but it should be fixed to look better*/
#side_nav{
float:left;
width:122px;
border:1px solid;
}

/*This is a special format for the side menu links, without bullet points, simulating a table*/
#side_menu{
font-size:15;
list-style-type:none;
margin:0;
padding:0;
}

/*This is where all the main content goes.  Everything else in the webpages is static.  We should use php for this, after I figure out how to make it work*/
#main{
border:1px solid;
margin:0 0 0 125px;

}

body{
background-color:#003366;
color:#CC9900;
}
a:link{color:#CCAA22;}
a:visited{color:#CC8811;}


/*This is the centered class for images.  Apparently text-align doesn't work on img, so we make it a block-level and set margins*/
img.centered{
display:block;
margin:0 auto;
text-align:center;
}

address{
text-align:center;
}