﻿/* CSS Class for the Menu. */
div.menu
{
    padding: 4px 0px 4px 8px;
}
 
/* CSS Class for a Menu Item. */
div.menu ul
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: auto;
    z-index: 1; /* Setting the control to appear on top of level 0 controls for e.g. report viewer. */
}
 
/* CSS Class for the Report Viewer. */
.report
{
    z-index: 0; /* Setting the control to appear below the level 1 controls for e.g. menu items. */
}
