body {
    margin: 0px 1px 0px 1px;
    font-family: Arial, Helvetica, Sans-Serif;
	text-align: center;
}

ul.padbottom > li, ol.padbottom > li {
    padding-bottom: 8px;
}

.page_contents {
    display: inline-block;
    text-align: left;
}

.multi_column {
    column-rule: 1px solid blue;
    column-width: 500px;
	text-align: left;
}

.logo {
    width: 60px;
    height: 24px;
	vertical-align: bottom;
}

nav {
    background: blue;
	height: 24px;
}

nav ul {
    background: blue;
    padding: 0px;
    margin: 0px;
    list-style: none;
    position: relative;
    display: inline-table;
}
nav ul:after {
    clear: both; 
    display: block;
}

nav ul ul {
    display: none;
}

nav ul li:hover > ul {
    display: block;
}

nav ul li {
    float: left;
}
nav ul li:hover {
    background: darkblue;
}
nav ul li:hover a {
    color: white;
}

nav ul li a {
    display: block; 
    color: white; 
    padding: 5px 5px;
    text-decoration: none;
	height: 14px;
}

nav ul ul {
    background: blue;
    border-radius: 0px; 
    padding: 0;
    position: absolute;
    top: 100%;
	text-align: left;
}   

nav ul ul li {
    float: none;
    position: relative;
}
nav ul ul li a:hover {
    background: darkblue;
}   
