html, body, .ie, #outer {
    height:100%; overflow:hidden;
    -webkit-user-select:none;
    -moz-user-select:none;
    -o-user-select:none;
    cursor:default;
}

body.force-noselect * {
    -webkit-user-select:none !important;
    -moz-user-select:none !important;
    -o-user-select:none !important;
    cursor:default !important;
}

/*========== jQuery Layout ==========*/
/*
 * Default Layout Theme
 * Created for jquery.layout
 * Last Updated: 2010-02-10
 * NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars
 */

body {
    font-family:Arial, Helvetica, sans-serif;
    font-size:11px;
}

/*
 *    PANES & CONTENT-DIVs
 */
.ui-layout-pane { /* all 'panes' */
    background:    #FFF;
    border: 0;
    padding:    10px;
    overflow:    auto;
    /* DO NOT add scrolling (or padding) to 'panes' that have a content-div,
       otherwise you may get double-scrollbars - on the pane AND on the content-div
       - use ui-layout-wrapper class if pane has a content-div
       - use ui-layout-container if pane has an inner-layout
    */
    }
    /* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
    .ui-layout-content {
        position:relative; padding:0 10px 10px; overflow:auto;
         /* contain floated or positioned elements */
         /* add scrolling to content-div */
    }
.ui-layout-content .ui-accordion {
    margin:0 -10px; width:auto;
}
/*
 *    UTILITY CLASSES
 *    Must come AFTER pane-class above so will override
 *    These classes are NOT auto-generated and are NOT used by Layout
 */
.layout-child-container,
.layout-content-container {
    padding:    0;
    overflow:    hidden;
}
.layout-child-container {
    border:        0; /* remove border because inner-layout-panes probably have borders */
}
.layout-scroll {
    overflow:    auto;
}
.layout-hide {
    display:    none;
}

/*
 *    RESIZER-BARS
 */
.ui-layout-resizer    { /* all 'resizer-bars' */
    background:        #DDD;
    border:            1px solid #BBB;
    border-width:    0;
    }
    .ui-layout-resizer-drag {        /* REAL resizer while resize in progress */
    }
    .ui-layout-resizer-hover    {    /* affects both open and closed states */
    }
    /* NOTE: It looks best when 'hover' and 'dragging' are set to the same color,
        otherwise color shifts while dragging when bar can't keep up with mouse */
    .ui-layout-resizer-open-hover ,    /* hover-color to 'resize' */
    .ui-layout-resizer-dragging {    /* resizer beging 'dragging' */
        background: #C4E1A4;
    }
    .ui-layout-resizer-dragging {    /* CLONED resizer being dragged */
        border:      1px solid #BBB;
    }
    /* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */
    .ui-layout-resizer-dragging-limit {    /* CLONED resizer at min or max size-limit */
        background: #E1A4A4; /* red */
    }

    .ui-layout-resizer-closed-hover    { /* hover-color to 'slide open' */
        background: #EBD5AA;
    }
    .ui-layout-resizer-sliding {    /* resizer when pane is 'slid open' */
        opacity: .10; /* show only a slight shadow */
        filter:  alpha(opacity=10);
        }
        .ui-layout-resizer-sliding-hover {    /* sliding resizer - hover */
            opacity: 1.00; /* on-hover, show the resizer-bar normally */
            filter:  alpha(opacity=100);
        }
        /* sliding resizer - add 'outside-border' to resizer on-hover
         * this sample illustrates how to target specific panes and states */
        .ui-layout-resizer-north-sliding-hover    { border-bottom-width:    1px; }
        .ui-layout-resizer-south-sliding-hover    { border-top-width:        1px; }
        .ui-layout-resizer-west-sliding-hover    { border-right-width:    1px; }
        .ui-layout-resizer-east-sliding-hover    { border-left-width:    1px; }

/*
 *    TOGGLER-BUTTONS
 */
.ui-layout-toggler {
    border: 1px solid #BBB; /* match pane-border */
    background-color: #BBB;
    }
    .ui-layout-resizer-hover .ui-layout-toggler {
        opacity: .60;
        filter:  alpha(opacity=60);
    }
    .ui-layout-toggler-hover , /* need when NOT resizable */
    .ui-layout-resizer-hover .ui-layout-toggler-hover { /* need specificity when IS resizable */
        background-color: #FC6;
        opacity: 1.00;
        filter:  alpha(opacity=100);
    }
    .ui-layout-toggler-north ,
    .ui-layout-toggler-south {
        border-width: 0 1px; /* left/right borders */
    }
    .ui-layout-toggler-west ,
    .ui-layout-toggler-east {
        border-width: 1px 0; /* top/bottom borders */
    }
    /* hide the toggler-button when the pane is 'slid open' */
    .ui-layout-resizer-sliding  .ui-layout-toggler {
        display: none;
    }
    /*
     *    style the text we put INSIDE the togglers
     */
    .ui-layout-toggler .content {
        color:            #666;
        font-size:        12px;
        font-weight:    bold;
        width:            100%;
        padding-bottom:    0.35ex; /* to 'vertically center' text inside text-span */
    }

/*
 *    PANE-MASKS
 *    these styles are hard-coded on mask elems, but are also
 *    included here as !important to ensure will overrides any generic styles
 */
.ui-layout-mask {
    border:        none !important;
    padding:    0 !important;
    margin:        0 !important;
    overflow:    hidden !important;
    position:    absolute !important;
    opacity:    0 !important;
    filter:        Alpha(Opacity="0") !important;
}
.ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */
    top:        0 !important;
    left:        0 !important;
    width:        100% !important;
    height:        100% !important;
}
div.ui-layout-mask {}        /* standard mask for iframes */
iframe.ui-layout-mask {}    /* extra mask for objects/applets */

.ui-layout-pane-north ,
.ui-layout-pane-south {
    overflow: hidden;
}

/* remove padding & scrolling from panes that are 'containers' for nested layouts */
.ui-layout-container {
    padding:0; overflow:hidden; border:0;
}
.ui-layout-wrapper {
    padding:0; overflow:hidden;
}

.ui-layout-resizer-north {
    display:none;
}
.ui-content-overlay {
    display:none; position:absolute; z-index:100; left:0; top:0; right:0; bottom:0; background:#fff; opacity:0.7; filter:alpha(opacity=70);
}
.ui-content-overlay div {
    position:absolute; z-index:1; left:50%; top:50%; margin:-25px 0 0 -25px; width:50px; height:50px; background:url(../images/common/ajax_loader.gif) 50% 50% no-repeat;
}
.ui-layout-pane.loading .ui-content-overlay {
    display:block;
}
/*========== BLOCKS ==========*/
.block-wrapper, block-main, .block-right, .block-left {
    display:block;
    }
.block-wrapper {
    width:100%; height:auto; min-height:9px;
    }

.col2right-block, .col2left-block {
    height:auto; min-height:9px;
    }
.col2left-block .block-wrapper {
    float:right; margin-left:-33%;
    }
.col2left-block .block-main {
    margin-left:33%;
    }
.col2left-block .block-left {
    float:right; width:32.9%;
    }
.col2right-block .block-wrapper {
    float:left; margin-right:-256px;
    }
.col2right-block .block-main {
    margin-right:266px;
    }
.col2right-block .block-right {
    float:left; width:256px;
    }

/*========== Ritm Admin Styles ==========*/
#main-hdr {
    overflow: visible;
    z-index: 5 !important;
    background: #114070;
}

#main-hdr .hdr-content {
    padding: 0;
    overflow: visible;
    min-width: 660px;
    height: 34px;
    font-size: 13px;
    color: #fff;
}

.ui-layout-header {
    background: #b2cbe4;
}
.ui-layout-header .hdr-content {
    position:relative; z-index:1; padding:5px 0 5px 5px; height:24px; font-weight:bold;
}
.ui-layout-pane.active {
    background: #f2f6fa;
}
.ui-layout-pane.active .ui-layout-header {
    background: #c7d9eb;
}
.ui-layout-header .search {
    position:absolute; left:3px; top:6px; right:30px; z-index:1; padding:0; background:#fff; border:1px solid #D2DCF2;
}
.ui-layout-header td.search-wrap {
    width:100%;
}
.ui-layout-header td .search {
    position:relative; top:1px; left:0;
}
.ui-layout-header .btn-icon {
    position:absolute; right:5px; top:5px; z-index:1;
}
.ui-layout-header td .btn-icon {
    position:static;
}
.ui-layout-header .links {
    text-align:right; font-weight:normal; line-height:25px;
}
.ui-layout-header .links a {
    padding:0 5px;
}
/*#main-hdr .search {
    float:left; margin:0 15px 0 0; width:390px;
}*/

#main-menu {
    float:left;
}
#main-hdr .dropdown-menu {
    position:relative; float:right; padding-right:35px; color:#fff;
}
#main-hdr .dropdown-menu .bubble-block {
    position:absolute; z-index:950; right:9px; bottom:0; height:auto; min-height:10px;
}
#main-hdr .dropdown-menu .trigger {
    display: block;
    text-align: center;
    height: 23px;
    width: 27px;
    font-size: 12px;
    color: #fff;
}
#main-hdr .dropdown-menu .menu-label {
    padding-right: 6px;
    font-size: 13px;
    line-height: 34px;
    border-right: 1px #fff solid
}

#main-hdr .top-menu .trigger.active {
    width:23px; height:21px; padding-top:6px; text-indent:-1px; background:#fff; color: #000; border-width:2px 2px 0 2px; border-color:#999; border-style:solid;
}
.lang-menu .lang-icon {
    display: inline-block;
    margin: 0 3px 0 0;
    padding: 0;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    line-height: 18px;
    font-size: 12px;
    background-position: 0 0;
    background-repeat: no-repeat;
}
.lang-menu [data-lang="ru_RU"] .lang-icon {
    background-image: url(../images/common/icon_lang_ru.png);
}
.lang-menu [data-lang="en_US"] .lang-icon {
    background-image: url(../images/common/icon_lang_en.png);
}
.lang-menu [data-lang="it_IT"] .lang-icon {
    background-image: url(../images/common/icon_lang_it.png);
}
.lang-menu [data-lang="de_DE"] .lang-icon {
    background-image: url(../images/common/icon_lang_de.png);
}

#main-menu {
    margin: 0 20px 0 0;
}

#main-menu ul {
    margin: 0;
    padding: 0;
}

#main-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 34px;
}

#main-menu a {
    padding: 0 15px;
    color: #fff;
    text-decoration: none;
}

#main-menu a:hover, #main-menu .current a {
    text-decoration: underline;
}

#filters-mode-block {
    display: inline-block;
    margin: 6px 0 0;
    padding: 3px 8px; /*padding-top:7px;*/
    font-size: 13px; /*line-height: 30px;*/
}

.filter-mode #filters-mode-block {
    background: #1A65AF;
    border-radius: 5px;
}
#filters-mode-block input {
    margin:0 5px 0 0;
    vertical-align: middle;
}
#filters-mode-block:hover label {
    text-shadow:0 0 10px #D2DCF2; cursor:pointer;
    -webkit-transition:text-shadow 0.5s ease;
    transition:text-shadow 0.5s ease;
}
#main-hdr .mode-ind {
    display:none; position:absolute; bottom:0; left:50%; z-index:1; width:60px; height:12px; background:#f00;
}
.filter-mode #main-hdr .mode-ind {
    /*display:block;*/
}