﻿/*
    Overrides for 100-main to make the page full-width
*/
#pagecontainer {
    width: 100%;
    border: none;
}

#fullcontent {
    margin-left:250px;
    border-left:none;
}

#pagetools {
    margin-bottom: 0px;
    border: none;
}

.sys_govmetric-app {
    border-left: none;
}


/*
    Error page bits
*/
body.error-page {
    background-color: #ebe9e1;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 10pt;
    height: 100%;
    width: 100%;
}

.error-content {
    margin: 100px;
}

    .error-content p {
        margin: 10px 0px;
        text-align: center;
    }



/*
    Navigation and layout elements
*/
#NavContainer {
    background-color: #ebe9e1;
    overflow: auto;
}

#Navbar {
    margin: 0px auto;
}

    #Navbar ul {
        list-style-image: none;
        padding: 10px 0px;
        margin: 0px;
        float: left;
    }

        #Navbar ul li {
            display: inline;
            padding: 0px 8px;
            font-size: 11pt;
        }

        #Navbar ul.right-nav, #Navbar ul.right-nav li {
            float: right;
        }

#MapFrame {
    width: 100%;
    height: 700px;
    border: none;
    border-bottom: 1px solid #ADAD9E;
    padding: 0;
    margin: 0;
}


/*
    Modal dialog bits
*/
#Blackout {
    z-index: 50;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    /* IE 5-7 */
    filter: alpha(opacity=60);
    /* Modern browsers */
    opacity: 0.6;
    display: none;
}

.modal {
    z-index: 51;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 500px;
    min-height: 100px;
    /* negative margins centre div on-screen */
    margin-left: -250px;
    margin-top: -150px;
    background-color: #ebe9e1;
    display: none;
    border: 1px solid #036;
    border-radius: 10px;
    padding: 32px 10px 30px 10px;
    font-size: 10pt;
}

    .modal h3 {
        background-color: #69C;
        position: absolute;
        top: -18px;
        /* negative offsets pop the border out by 1px
           so it lines up with the border of the enclosing div.*/
        left: -1px;
        right: -1px;
        padding: 6px 10px;
        border:1px solid #036;
        border-bottom:none;
        color:#fff;
    }

.modal-close {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #369;
    color: #fff;
    border: 1px solid #036;
    border-radius: 6px;
    margin: 5px;
    padding: 4px;
    text-align: center;
    width: 50px;
    cursor:pointer;
}

/*
    Warning bar: more important stuff than a modal dialog.
    > Currently only used for the IE6 warning.
    > Keep the CSS simple; it needs to render correctly on steam-powered browsers from the 1800s.
*/
.warning-bar {
    position: relative;
    left: 0;
    right: 0;
    background-color: #cc0000;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-size:15px;
    padding:10px;
}



#menudetail div:nth-of-type(2n+3){
    clear:none;
  }

/*
    Stop Current Menu ever appearing - it's not needed for this app.
*/
.MobMenu {
    display:none !important;
}