body {
    /* background: #a09ba1; */
    background: black;
    font:10pt Tahoma, Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 14pt;
}

a {
    color: #ed1c24;
}

#wrapper {
    width: 850px;
    margin-left: auto;
    margin-right: auto;
    /*border: 1px black solid; */
    background: #ed1c24;
    position:relative;
}

/* The little div that's attached to the bottom left with the Michigan Made logo */
#leftbottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 225px;
}

#leftbottom img {
    width: 225px;
    height: 74px;
    border: none;
}

/* The large grey area to the right of the menu - includes header and content area */
#rightside {
    width: 600px;
    padding-left: 20px;
    padding-right: 5px;
    padding-bottom: 2em;
    float: right;
    /* background: #d0cbd1;  */
    background: #ffffff;
    min-height: 460px;
    _height: 460px; /* dumb IE6 doesn't support min-height */
    position:relative;
}
/* Work around dumb IE6 3px bug.  See http://www.positioniseverything.net/explorer/threepxtest.html */
* html #rightside { margin-left: -3px; }



/* Menu buttons are the width of the red menu area, but jogged to the right to overlap rightside div */
img.menubutton {
    width: 225px;
    height: 31px;
    position: relative;
    left: 15px;
    border: none;
}

img#headerlogo {
    width: 580px;
    height: 154px;
    border: none;
}

/* Short div attached to bottom of content area to display contact info */
#rightbottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 605px;
    padding-left: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 8pt;
    margin-bottom: 0.25em;
}

/* The main menu on the left side of the site is the top-level ul */
ul.menu {
    margin: 0;
    padding: 0;
    text-indent: 0;
    list-style-type: none;
}

/* Each main menu button is an li */
ul.menu li {
    position: relative;
    width: 225px;
    height: 31px;
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
}

/* Each main menu li can contain another popout menu ul - positioned absolutely in relation to
   the main menu li and hidden to start */
ul.menu ul.popoutmenu {
    display: none;
    margin: 0;
    padding: 0;
    text-indent: 0.5em;
    position: absolute;
    left: 240px;
    top: 3px;
    width: 300px;
    background: #ed1c24;
    opacity: 0.9;
    filter: alpha(opacity=90); /* for the benefit of IE */
    border: 1px black solid;
    border-bottom: none; /* bottom border is courtesy of last li */
    color: white;
    font-weight: bold;
    list-style-type: none;
}
/* Each entry in the popout menu is an li */
ul.menu ul.popoutmenu li {
    border-bottom: 1px black solid;
    width: 300px;
    height: auto;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    margin: 0;
}
ul.menu ul.popoutmenu li a {
    color: white;
    text-decoration: none;
}

/* Some pages use floating links in boxes */
div.fatbutton {
    border: 1px #aa2222 solid;
    background: #ffdddd;
    padding: 5px;
    margin: 10px;
    float: left;
    width: 100px;
    text-align: center;
}

