.menu
{
    display: table; /* ignored by IE */
    padding: 0;
    list-style-type: none;
    white-space: nowrap; /* keep text on one line */
    border: 0px solid #06a; /* add a border to show size of menu */
    margin: 0 auto; /* centered menu */ /*margin:0 auto 0 0;  left aligned menu */ /*margin:0 0 0 auto;  right aligned menu */
    height: 30px;
    font-size:10pt;
    font-weight:bold;
}
* html .menu
{
    display: inline-block; /* for IE only */
    width: 1px; /* IE will expand to fit menu width */
    padding: 0 2px; /* fix bug in IE for border spacing */
}  
.menu li
{
    display: table-cell; /* ignored by IE */
}
* html .menu li
{
    display: inline; /* for IE only */ /*background:#33415D;*/
}
.menu a, .menu a:visited
{
	border-right: #1f2635 1px solid;
	padding-right: 16px;
	display: block;
	padding-left: 16px;
	background-image: url(menu_bg.gif);
	padding-bottom: 4px;
	border-left: #5761be 1px solid;
	color: #fff;
	padding-top: 4px;
	background-repeat: repeat-x;
	height: 22px;
	text-decoration: none;
}
* html .menu a, * html .menu a:visited
{
    display: inline-block; /* for IE only */
    margin: 0 -2px; /* to correct an IE border width bug */
}
.menu a:hover
{
    background-image: url(menu_bgo.gif);
    background-repeat: repeat-x;
}

.menu_table
{
    border-left: 0px solid #576178;
    border-right: 0px solid #1f2635;
    border: 0px solid #06a; /* add a border to show size of menu */
    background-image: url(menu_bg.gif);
    background-repeat: repeat-x;
}
#content
{
    height:100%;
    min-height:500px;
    vertical-align:top;
}

