﻿body {
    position:inherit !important;
}
div.blnePopup {z-index: 20000 !important;}

/* Restore bullets/numbers for lists authored in rich-text content widgets.
   The global "ol, ul { list-style: none; }" reset (default.css) strips markers
   from every list on the site for nav/widget layout. Authored content lists
   carry no CSS class, while nav/breadcrumb/widget lists always do, so scope the
   restore to unclassed lists inside the main content region. */
#global-main ul:not([class]) {
    list-style: disc;
    margin: 0 0 20px;
    padding-left: 40px;
}
#global-main ol:not([class]) {
    list-style: decimal;
    margin: 0 0 20px;
    padding-left: 40px;
}
#global-main ul:not([class]) ul,
#global-main ol:not([class]) ol,
#global-main ul:not([class]) ol,
#global-main ol:not([class]) ul {
    margin-bottom: 0;
}