/*  
 *   Copyright 2012 OSBI Ltd
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */

/**
 * @fileOverview Olap User Inteface (UI) Default Styles
 * @author Prashant Raju and Mark Cahill
 * @version 2.0.0
*/

@font-face {
    font-family: "CallunaSans";
    src: url('../../../fonts/CallunaSansRegular.eot');
    src: url('../../../fonts/CallunaSansRegular.eot?#iefix') format('embedded-opentype'),
        url('../../../fonts/CallunaSansRegular.woff') format('woff'),
        url('../../../fonts/CallunaSansRegular.ttf') format('truetype');
}

/** Globals */

html, body {
    background: #FFF;
    height: 100%;
    width: 100%;
    min-width: 1052px;
    min-height: 600px;
    overflow: auto;
    text-align: left;
}
body {
    /*overflow: auto;*/
}
.clear {
    clear: both;
}
.hide {
    display: none;
}
.calign {
    text-align: center;
}
.lalign {
    text-align: left;
}
.ralign {
    text-align: right;
}
.used {
    font-weight: bold;
}
.sprite, .ui-dialog-titlebar-close/*, .ui-dialog-titlebar-close:hover, .dialog_icon*/ {
    background-image: url(../../../images/sprite.png);
    background-repeat: no-repeat;
}

/** Header */
#header {
    background: #F0F0F0;
    /* border-bottom: 3px solid #F0F0F0;*/
}

.refresh_cubes {
    background: url('../../../images/src/arrow_refresh.png') no-repeat;
    border: 1px solid transparent;
    display: block;
    height: 26px;
    padding: 4px;
    width: 26px;
}
.refresh_cubes_nav {
    float:right;
    margin-top:-25px;
    margin-right:8px;
}
.refresh_cubes_nav a.button {
    display: block;
    height: 12px;
    padding: 3px;
    width: 12px;
}
.refresh_cubes_nav a.button:hover {
    border: 1px solid #CCC;
}

/** Toolbar */
#toolbar {
    height: 60px;
    position: relative;
    background-color: #74b400;
    background-image: none;
    border-bottom: none;
    margin: 0px;
}

#toolbar ul {
    position: absolute;
    top: 35px;
    left: 170px;
    list-style-type: none;
    font-family: CallunaSans;
}
#toolbar ul li a {
    width: auto;
    text-transform: uppercase;
    font-size: 13px;
}
#toolbar ul li {
    display: inline-block;
    border-left: 1px solid #fff;
    margin-right: 10px;
    padding-left: 10px;
}
#toolbar ul li a:link, #toolbar ul li a:visited {
    display: inline;
    color: #fff;
    text-decoration: none;
    border: none;
}
#toolbar ul li.back-monitor a:link, #toolbar ul li.back-monitor a:visited {
    color: #3c5d00;
}
#toolbar ul li a:hover {
    text-decoration: underline;
}
#header .tabs .pager {
    display: none;
}

/** Logo */
#logo {
    margin: 0px;
}
#logo span {
    display: block;
    position: absolute;
    top: 25px;
    left: 0px;
    background-position: -1275px 1px;
    width: 166px;
    height: 28px;
    margin: -2px 10px 0 0;
    text-indent: -9999px;
}


/** Tabs */

.tabs {
    background: #74b400;
    min-height: 28px;
    padding-top: 3px;
    text-align: left;
    overflow: hidden;
}
.tabs a.pager {
    display: none;
    background-position: -1919px -86px;
    background-color: #DDD;
    border: 1px solid #BBB;
    float: right;
    font-size: 120%;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    text-decoration: none;
}
.pager_contents {
    position: absolute;
    top: 75px;
    right: 5px;
    width: 200px;
    height: 300px;
    overflow: visible;
    background-color: #EEE;
    border: 1px solid #BBB;
}
.pager_contents a {
    color: #666;
    text-decoration: none;
}
.tabs ul {
    margin: 0;
    margin-left: 10px;
    padding: 0 0 0 10px;
}
.tabs ul li {
    display: inline-block;
    list-style: none;
    padding-right: 4px;
    background: #548200;
    color: #f5f5f5;
    border-left: 1px solid #649c00;
    border-top: 1px solid #649c00;
    border-right: 1px solid #649c00;
    margin:1px 5px -1px 0;
    padding: 4px 0px 6px 0px;
    text-decoration: none;
    /*  border-radius: 2px 2px 0 0;
      -moz-border-radius: 2px 2px 0 0;
      -webkit-border-radius: 2px 2px 0 0;*/
}
.tabs ul li.selected {
    background: #fbfbfb;
    color: #000;
    border-left: 1px solid #cdea98;
    border-top: 1px solid #cdea98;
    border-right: 1px solid #cdea98;
    /*  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F0F0F0));
      background: -moz-linear-gradient(top, #FFFFFF 0%, #F0F0F0 100%);*/
    border-bottom: 1px solid #F0F0F0 !important;
    font-weight: bold;
}
.tabs ul li:hover {
    border-left: 1px solid #BBB;
    border-top: 1px solid #BBB;
    border-right: 1px solid #BBB;
}
.tabs ul li a {
    color: #f5f5f5;
    cursor: pointer;
    padding: 5px 2px 5px 10px;
    text-decoration: none;
    /*text-shadow: 1px 1px 0 #FFFFFF;*/
}
.tabs ul li.selected a {
    color: #222;
}
/*.tabs ul li a:hover{
    color: #222;
}*/
.tabs ul li.newtab {
    font-size: 15px;
    padding-top: 2px;
}
.tabs ul li span.close_tab {
    -moz-background-origin: 0px 2px;
    background-position: -624px -96px;
    display: inline-block;
    height: 18px;
    text-indent: -9999px;
    width: 20px;

}
.tabs ul li span.close_tab:hover {
    background-position: -690px -96px;
    cursor: pointer !important;
    display: inline-block;
    height: 18px;
    width: 20px;
    -moz-background-origin: 0px 2px;
}

/** Sidebar */

.sidebar {
    position: relative;
    float: left;
    overflow: auto;
    width: 250px;
    padding-left: 10px;
    border-top: 1px solid #fff;
}
.sidebar h3 {
    background: #fbfbfb;
    /* background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F0F0F0));
     background: -moz-linear-gradient(top, #FFFFFF 0%, #F0F0F0 100%);*/
    /*border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;*/
    /*font-size: 13px;*/
    font-size: 13px;
    line-height: 22px;
    font-weight: bold;
    font-family: CallunaSans;
    text-transform: uppercase;
    margin: 0;
    margin-top: 10px;
    padding: 4px 10px 6px;
}
.sidebar h3.measures {
    line-height: 1.6em;
}
.sidebar h3.dimension {
    line-height: 2.6em;
}
.sidebar h3.top {
    border-top: none !important;
    margin: 0;
    padding-top: 5px;
    line-height: 1.6em;
}
.sidebar .sidebar_inner {
    padding: 0 10px 10px;
}
.sidebar .sidebar_inner select {
    border: 1px solid #CCC;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 100.01%;
    margin: 0;
    padding: 2px;
    width: 100%;
}
.sidebar .sidebar_inner ul {
    margin: 0;
}
.sidebar .ps-scrollbar-x {
    display: none;
}

/** Sidebar Separator */

.sidebar_separator {
    display: none;
    background: #fff;
    border-top: 1px solid #fff;
    /* border-right: 1px solid #CCC;
     border-left: 1px solid #CCC;
     cursor: pointer;*/
    float: left;
    width: 1px;
    margin-top: 47px;
}
/*.sidebar_separator:hover {
    background: #E0E0E0;
    border-right: 1px solid #CCC;
    border-left: 1px solid #CCC;
    width: 3px;
}*/

ul.dimension_options {
    margin: 10px 17px 0px 0px;
    padding: 0; 
    display: inline;
    float: right;
}

ul.dimension_options li {
    display: inline;
    float: left; 
}

ul.dimension_options li.seperator {
    border-left: 1px solid #D5D5D5;
    margin-left: 5px;
}
ul.dimension_options li a.button {
    display: block;
    height: 16px;
    padding: 8px;
    margin-left: 3px;
}
ul.dimension_options li a.button:hover {
    border: 1px solid #aaa;
    padding: 7px;
}
ul.dimension_options li a.on {
    border: 1px solid #aaa;
    background-color: #E0E0E0;
    padding: 7px !important;
}
ul.dimension_options li a.groups {
    width: 16px;
    background-image:   url('../../../images/src/folder.png');
    background-repeat:  no-repeat;
    background-position: 7px 7px;
}
ul.dimension_options li a.keys, ul.dimension_options li a.texts {
    display: block;
    font-family: CallunaSans;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    line-height: 16px;
}

/** Tree */

#query_info {
    list-style-type: none;
    padding-left: 0;
}



.dimension_tree ul,
.measure_tree ul {
    margin: 0;
    padding: 0;
}
.dimension_tree ul li,
.measure_tree ul li {
    line-height: 19px;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}
.dimension_tree ul li span.collapsed,
.measure_tree ul li span.collapsed {
    background-position: -1540px -95px;
    cursor: pointer;
    padding: 5px 17px;
}
.dimension_tree ul li span.expand,
.measure_tree ul li span.expand {
    background-position: -1406px -95px;
    cursor: pointer;
    padding: 5px 17px;
}
.dimension_tree ul li a,
.measure_tree ul li a {
    color: #222;
    text-decoration: none;
}
.dimension_tree ul li ul li a, .measure_tree ul li ul li a {
    color: #fff;
}
.dimension_tree ul li a.folder_expand,
.measure_tree ul li a.folder_expand {
    background: transparent;
}
.dimension_tree ul li a.folder_collapsed,
.measure_tree ul li a.folder_collapsed {
    background: transparent;
}
.dimension_tree ul li ul,
.measure_tree ul li ul {
    padding: 0px;
    margin: 0;
}
.dimension_tree ul li ul li,
.measure_tree ul li ul li {
    /*   padding: 7px;*/
    margin-bottom: 5px;
    margin-right: 5px;
}
.dimension_tree ul li ul li {
    background-color: #005cb3;    
}
.measure_tree ul li ul li {
    background-color: #74b400;
}
/*.key {
    padding: 0px 0px 3px 20px;
    background: url('../../../images/src/key.png') no-repeat 2px center;    
}
.text {
    background: url('../../../images/src/text.png') no-repeat 2px center;    
}*/
.dimension_tree ul li ul li a, 
.measure_tree ul li ul li a { 
    display: block;
    padding: 7px;
    padding-left: 15px;
}

/*.measure_tree ul li ul li a {
    padding-left: 20px;
    background: url('../../../images/src/bullet_red.png') 0px 0px no-repeat;
}*/
.dimension_tree .hierarchy {
    padding-left: 1px;
}
/*.dimension_tree .hierarchy a {
    cursor: default;
    background: url('../../../images/src/bullet_green.png') 0px 4px no-repeat;
}*/

.measure_tree > div > ul > li > span, .measure_tree > div > ul > li > a {
    display: none;
}

.dimension_tree ul .ui-state-disabled,
.measure_tree ul .ui-state-disabled {
    display: none;
}


/** Tab Panel */

#tab_panel {
    /*border-top: 1px solid #CCC;*/
}

/** Tab Workspace */

.workspace {
    background: #FFFFFF;
}

/** Tab Workspace Inner */

.workspace_inner {
    margin-left: 274px;
}

/** Field List */

.workspace_fields {
    overflow: hidden;
    padding: 20px;
}

.filter_text {
    padding: 10px 0px 10px 0px;    
}

.fields_list {
    margin-bottom: 10px;
    border: 1px solid #bdbdbd;
}

.fields_list_rows {
    margin-bottom: 0px;
}

.fields_list_text {
    min-width: 820px;
    margin-bottom: 10px;
    padding: 5px 5px 5px 5px;
    display: none;
}

.fields_list_header {
    float: left;
    padding: 6px 0px 3px 10px;
    font-family: CallunaSans;
    font-size: 13px;
    line-height: 30px;
    text-transform: uppercase;
    width: 70px;
}
.fields_list_hidden {
    display: none;
}

.fields_list_text .fields_list_header_text {
    float: left;
    font-weight: bold;
    padding: 3px 5px 3px 10px;
    line-height: 28px;
    width: 70px;
}

/*.fields_list .limit {
    cursor: pointer;
}
.fields_list .limit:hover {
    background: #efefef;
    background: linear-gradient(to bottom, #ddd, #efefef);
    background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#efefef));
    background: -moz-linear-gradient(top, #ddd 0%, #efefef 100%);
    
}*/

/*span.dropdown {
    background: url("../../../images/src/context_down.png") no-repeat scroll center center transparent;
    height: 16px;
    width: 14px;
    float: right;
    cursor: pointer;
}*/
span.save {
    background-position: -485px -90px;
    height: 16px;
    padding: 9px 26px 10px 8px;
}

span.clear_axis {
    background: url("../../../images/src/cancel3.png") no-repeat scroll center center transparent;
    cursor: pointer;
    height: 32px;
    opacity: 0.1;
    float: right;
    width: 30px;
    margin-left: -35px;
    z-index: 1;
}
.fields_list:hover span.clear_axis {
    opacity: 0.8;
    -ms-filter: none;
    filter: none;
}

.fields_list .fields_list_body {
    padding:  0;
    margin-right: 37px;
    width: 100%;
    background-color: #fff;
}

.fields_list_text .fields_list_body {
    float: left;
    padding:  0;
    margin-right: 37px;
    width: 85%;
}

.fields_list .fields_list_body .all_measures span {
    margin: 0 5px 0 0;
    line-height: 19px;
    padding: 0 6px 1px 6px;
}
.fields_list .fields_list_body ul {
    height: 33px;
    line-height: 19px;
    list-style: none;
    margin: 0px 0px;
    padding: 3px;
    padding-left: 80px;
}
.fields_list .fields_list_body ul li {
    float: left;
    display: inline;
    list-style-type: none;
    height: 19px;
    line-height: 19px;
    padding: 5px 20px 5px 0px;
    min-width: 70px;
    text-align: center;
    white-space:nowrap;
    margin: 2px 3px;

}
.fields_list .fields_list_body ul li a {
    padding: 8px 0px 8px 10px;
    text-align: left;
}
.fields_list .fields_list_body ul li ul {
    float: right;
    margin-right: -5px;
    margin-left: 0;
    width: auto;
}
.fields_list .fields_list_body ul li ul li {
    margin-top: 0;
    margin-right: 5px;
    min-width: 70px;
}
.fields_list .fields_list_body .all_measures {
    padding: 0 !important;
}

/** Draggables, Sortables and Droppables */

.ui-sortable-helper {
    line-height: 18px !important;
    min-width: 70px;
    text-align: center;
}
.ui-draggable-dragging {
    float: left;
    display: inline !important;
    height: 19px !important;
    line-height: 19px !important;
    list-style-type: none !important;
    margin: 0 !important;
    min-width: 70px;
    padding: 5px 20px 5px 0px;
    text-align: center;
    white-space:nowrap;
}
.ui-draggable-dragging a {
    display: block;
    background-image: none !important;
    padding: 0 !important;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
}
body > .ui-draggable-dragging.dimension {
    background: #e5f6ff !important;
    /* background: -webkit-gradient(linear, left top, left bottom, from(#e0e9ef), to(#c2d5e2)) !important;
     background: -moz-linear-gradient(top, #e0e9ef 0%, #c2d5e2 100%) !important;*/
    border: 1px solid #2a6085 !important;
    color: #2a6085 !important;
    text-align: center;
}
body > .ui-draggable-dragging.dimension a {
    color: #2a6085 !important;
}
body > .ui-draggable-dragging.measure {
    background: #c3e882 !important;
    /*background: -webkit-gradient(linear, left top, left bottom, from(#fcf5f5), to(#fad9d9)) !important;
    background: -moz-linear-gradient(top, #fcf5f5 0%, #fad9d9 100%) !important;*/
    border: 1px solid #74b400 !important;
    color: #fff !important;
    text-align: center;
}
body > .ui-draggable-dragging.measure a {
    color: #74b400 !important;
}
.d_dimension {
    background: #005cb3;
    /*background: -webkit-gradient(linear, left top, left bottom, from(#e0e9ef), to(#c2d5e2));
    background: -moz-linear-gradient(top, #e0e9ef 0%, #c2d5e2 100%);*/
    /*border: 1px solid #2a6085;*/
    color: #fff;
    display: inline !important;
    box-shadow: 0 0 2px #DDD;
    padding: 3px;
}
.d_dimension:hover {
    /* background: #C2DAEF;*/
}
.d_dimension span.selections {
    background: transparent url('../../../images/src/filter4.png') no-repeat center center;
    height: 16px;
    width: 14px;
    float: right;
    cursor: pointer;
    margin: 1px 0px 0px 5px;
}
.d_dimension a {
    color: #fff;
    text-decoration: none;
}
.d_measure {
    background: #74b400;
    /* background: -webkit-gradient(linear, left top, left bottom, from(#fcf5f5), to(#fad9d9));
     background: -moz-linear-gradient(top, #fcf5f5 0%, #fad9d9 100%);*/
    /*border: 1px solid #ed9393;*/
    color: #fff;
    display: inline !important;
}
.d_measure:hover {
    /* background: #bdd495;*/
}
.d_measure a {
    color: #fff;
    text-decoration: none;
}

.d_measure, .d_dimension {
    position: relative;
}

.d_measure span.sort,
.d_dimension span.sort {
    height: 16px;
    width: 16px;
    padding: 2px;
    float: right;
    cursor: pointer;
}
.d_measure span.sort.BASC,
.d_measure span.sort.ASC,
.d_dimension span.sort.BASC,
.d_dimension span.sort.ASC {
    background: url("../../../images/src/sort_up.png") no-repeat center transparent;

}

.d_measure span.sort.BDESC,
.d_measure span.sort.DESC,
.d_dimension span.sort.BDESC,
.d_dimension span.sort.DESC {
    background: url("../../../images/src/sort_down.png") no-repeat center transparent;
}

.d_measure span.sort.none,
.d_dimension span.sort.none {
    background: url("../../../images/src/sort_none.png") no-repeat center transparent;
}

.d_measure span.remove,
.d_dimension span.remove {
    background: url("../../../images/src/remove.png") no-repeat center transparent;
    height: 16px;
    width: 16px;
    padding: 2px 3px;
    position: absolute;
    right: 3px;
    cursor: pointer;
}

.empty_placeholder,
.placeholder {
    border: 1px dashed #999;
    color: #999;
    margin: 2px 3px;
    padding: 4px 22px !important;
}
.not-draggable a {
    /*cursor: not-allowed !important;*/
}

/** Table */

.datatable {
    background: #FFF;
}
.datatable .int {
    text-align: right;
}
.datatable .str {
    text-align: left;
}
.datatable tr th {
    background: #FFF;
    border-bottom: 1px solid #CCC;
    border-right: 1px solid #CCC;
    font-weight: bold;
}
.datatable tr td {
    background: #FFF !important;
    border-bottom: 1px solid #CCC;
    border-right: 1px solid #CCC;
}

/** Dialog */
.ui-widget {
    font-family: inherit !important;
    font-size: inherit !important;
}
.ui-widget-header {
    border: 0 !important;
    font-weight: normal !important;
}
.ui-dialog {
    background: #FFF;
    border: 3px solid #EEE;
    min-width: 470px !important;
    min-height: auto !important;
    border: 1px solid #CCC;
}
#password, #username, input.newfolder {
    padding: 4px;
    width: 240px;
}
.ui-dialog-content {
    padding: 0 !important;
}
.ui-dialog-titlebar {
    background: #fff;
    padding: 25px 5px 6px 30px !important;
    border-radius: 0 !important;
}    
.ui-dialog-titlebar .ui-dialog-title {
    float: left;
    font-family: CallunaSans;
    font-size: 13px;
    line-height: 21px;
    margin: 0;
    margin-right: 20px;
    text-transform: uppercase;
}
.ui-dialog-titlebar-close, .ui-dialog-titlebar-close.ui-state-hover {
    background: transparent url(../../../images/sprite.png) no-repeat -624px -97px;
    display: inline-block;
    float: right;
    height: 18px;
    text-indent: -9999px;
    width: 20px;
    padding: 1px;
}

.ui-icon {
    background: none !important;
}

.ui-state-hover {
    border: 0px !important;
}
.ui-dialog-content {
    padding: 10px;
}
.dialog_body {
    padding: 5px;
    overflow: auto !important;
}
.dialog_icon {
    width: 100px;
    height: 100px;
    float: left;
}
.dialog_info .dialog_icon {
    background-position: -910px -87px;
    width: 50px;
}
.dialog_info .dialog_body {
    padding: 10px;
}
.dialog_mdx .dialog_icon {
    background-position: -1075px -87px;
    width: 40px;
}
.dialog_mdx .dialog_body textarea {
    width: 450px;
    height: 400px;
    font-size: 11px;
}
.dialog_save .dialog_icon {
    background-position: -1315px -85px;
    width: 50px;
}
.dialog_delete .dialog_icon {
    background-position: -741px -85px;
    width: 60px;
}
.dialog_delete .dialog_body {
    padding-top: 10px;
}
.dialog_login .dialog_icon {
    background-position: -666px 15px;
}
.dialog_selections {
    min-width: 400px !important;
}
.dialog_selections .dialog_icon {
    display: none;
}
.dialog_selections .dialog_body {
    height: 335px;
}
.dialog_selections .dialog_body .available_selections {
    padding-left: 5px;
    float: left;
}

.dialog_selections .dialog_body .selections_message {
    padding-left: 10px;
    float: left;
    color: #ff0000;
}

.dialog_selections .dialog_body .available_selections select {
    margin-top: -11px;
}

.dialog_selections .dialog_body .selections_list {
    display:none;
    width: 100%;
    list-style-type: none; 
    margin: 0;
    padding: 0;
}

.dialog_selections .dialog_body .selections_list .selections_list_selected {
    color: #fff;
    background-color: #0073f6;
}

.dialog_selections .dialog_body .selections_list_wrapper {
    display:none;
    width: 420px;
    height: 230px;
    border: 1px solid #ccc;
    padding: 4px;
    overflow: auto;      
}

.dialog_selections .dialog_body .selection_buttons {
    float: left;
    padding-left: 25px;
    padding-top: 76px;
    text-align: center;
    vertical-align: middle;
}
.dialog_selections .dialog_body .used_selections {
    padding-left: 25px;
    padding-top: 0px;
}
.dialog_selections .dialog_body .updown_buttons {
    float: left;
    padding-left: 25px;
    padding-top: 145px;
    text-align: center;
    vertical-align: middle;
    display: none;
}

.dialog_selections .dialog_body select {
    height: 270px;
    width: 430px;
    font-size: 11px;
    overflow: auto;
}
.dialog_selections .options:before {
    clear:both;
}
.dialog_selections .options {
    float: left;
    width: 350px;
    text-align: left;
}
.dialog_selections .available_selections input[type="text"] {
    width: 150px;
    height: 18px;
    padding: 3px 7px;
    position: absolute;
    top: 18px;
    left: 280px;
    z-index: 0;
}
.dialog_selections .dialog_footer {
    padding-right: 36px;
    padding-bottom: 20px;
}
.dialog_selections .dialog_body .selection_buttons li {
    list-style-type: none;
    height: 26px;
    width: 25px;
    margin-bottom: 5px
}
.dialog_selections .dialog_body .selection_buttons li:nth-child(2) {
    margin-bottom: 15px
}
.dialog_selections .dialog_body .selection_buttons .form_button {
    display: block;
    height: 26px;
    width: 25px;
    border: none;
}
.dialog_selections .dialog_body .selection_buttons .form_button#add_members {
    background: transparent url(../../../images/pager/next.png) no-repeat;
}
.dialog_selections .dialog_body .selection_buttons .form_button#add_all_members {
    background: transparent url(../../../images/pager/add_all.png) no-repeat;
}
.dialog_selections .dialog_body .selection_buttons .form_button#remove_all_members {
    background: transparent url(../../../images/pager/remove_all.png) no-repeat;
}
.dialog_selections .dialog_body .selection_buttons .form_button#remove_members {
    background: transparent url(../../../images/pager/prev.png) no-repeat;
}

.dialog_permissions .dialog_body {
    width: 370px;
    height: 380px;
}
.dialog_permissions .dialog_icon {
    display: none;
}
.dialog_permissions .dialog_icon {
    display: none;
}
.dialog_permissions .select_roles {
    width: 350px;
    height: 130px;
}

.dialog_filter .dialog_icon {
    display: none;
}
.dialog_filter .dialog_body {
    margin: 15px;
    line-height: 30px;
}
.dialog_filter .dialog_body .n {
    width: 40px;
}

.dialog_filter td.col1 {
    width: 240px;
}
.dialog_filter textarea.sortliteral {
    width: 200px;
    height: 40px;
}
.dialog_filter textarea.filter_expression {
    width: 300px;
    height: 60px;
}


.dialog_drillthrough .dialog_icon {
    display: none;
}

.dialog_drillthrough .dialog_body .maxrows {
    width: 60px;
}

.dialog_drillthrough .dialog_body .row_limit {
    text-align: center;
}

.ui-menu {
    list-style:none;
    padding: 2px;
    margin: 0;
    display:block;
    float: left;
}
.ui-menu .ui-menu {
    margin-top: -3px;
}
.ui-menu .ui-menu-item {
    margin:0;
    padding: 0px;
    zoom: 1;
    float: left;
    clear: left;
    width: 100%;
}
.ui-menu .ui-menu-item a {
    text-decoration:none;
}
.ui-menu .ui-menu-item a.description {
    font-size: 8px;
    color: #999;
    padding: 0;
}

.dialog_footer {
    padding: 15px;
    padding-top: 0px;
    text-align: right;
    clear: both;
}
.dialog_footer .form_button {
    margin-left: 5px;
}

/** Workspace Area */

.workspace_area {
    overflow: auto;
}



.workspace_editor {
    overflow: hidden;
    padding-left: 5px; 
}

.mdx_input {
    border: 1px solid #CCCCCC;
    width: 99%;
    margin-top: 4px;
}

.workspace_editor .editor_info {
    color: #999999;
}
.processing {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100 !important;
    background-color: rgba(0,0,0,0.6);
}
.processing_message {    
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    border: 1px solid #aaa;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.processing_message .overlay_buttons {
    text-align: center;
}
.processing_message .overlay_button {
    display: inline-block;
    width: 80px;
    margin: 10px 10px 0px;
    text-align: center;
    padding: 5px;
    border: 1px solid #999;
    background-color: #dedede;
}
.processing_message .overlay_button:link, .processing_message .overlay_button:visited {
    color: #000;
    text-decoration: none;
}
.processing_message .overlay_button:hover {
    color: #dedede;
    background-color: #666;
}
/** Workspace Results */
.workspace_editor, .sidebar, .workspace_toolbar {
    background-color: #fbfbfb;
    -moz-box-shadow: 0 0 5px #e1e1e1;
    -webkit-box-shadow: 0 0 5px #e1e1e1;
    box-shadow: 0 0 5px #e1e1e1;    
}
.workspace_results_container {
    padding-left: 25px;
}

.workspace_results_header {
    margin-top: 5px;
}

.workspace_results_header_title_name {
    padding-top: 10px;
    font-family: CallunaSans;
    font-size: 16px;
    display: none;
    text-transform: uppercase;
}

.workspace_results_header_title_path {
    padding: 0;
    font-family: CallunaSans;
    font-size: 12px;
    display: none;
}

.workspace_results_header_title_curr {
    padding: 0;
    font-family: CallunaSans;
    font-size: 12px;
    text-transform: none;
}

.workspace_results_info {
    float: right;
    color: #ffffff;
    padding-right: 20px;
    overflow: hidden;    
}

.workspace_results_info:hover {
    color: #999999;
}

.workspace_results {
    position: relative;
    overflow: auto;
    margin-right: 10px;
    margin-left: 0px;
    padding-top: 10px;
}
.workspace_results table {
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    margin-bottom: 0;
    table-layout: fixed;
    width: auto;
}
.workspace_results table th {
    border-left: 1px solid #d5d5d5;
    margin-bottom: 0;
    white-space: normal;
}

.workspace_results table th.all_null {
    text-align: center;
    border: none;
}
.workspace_results table th.col {
    border-top: 1px solid #d5d5d5;
    background: #f9f9f9;
    text-align: left;
}
.workspace_results table td.total, .workspace_results table th.total {
    border-left: 1px solid #d5d5d5;
    border-top: 1px solid #d5d5d5;
    background: #ddd;
    white-space: nowrap;
}
.workspace_results table th.col_null {
    background: #f9f9f9;
}
.workspace_results table th.row {
    border-top: 1px solid #d5d5d5;
    background: #f9f9f9;
}

.workspace_results table th.row_header {
    border-top: 1px solid #d5d5d5;
    /*border-bottom: 1px solid #d5d5d5;*/
    background: #ddd;
}
.workspace_results table.treetable thead th {
    background: #74b400;
    color: #fff;
    border: none;
    padding-top: 8px;
    padding-bottom: 8px;
}
.workspace_results table th.row_header_null {
    border-left: none;
    border-top: 1px solid #d5d5d5;
    /*border-bottom: 1px solid #d5d5d5;*/
    background: #fbfbfb;
}

.workspace_results table th.row_null {
    background: #f9f9f9;
}
.workspace_results table td.data {
    border-left: 1px solid #d5d5d5;
    border-top: 1px solid #d5d5d5;
    text-align: right;
    white-space: nowrap;
}
.workspace_results table tr:hover {
    background: #edf4fa !important;
}

.workspace_results table td.cellhighlight:hover {
    background: #8dbdd8 !important;
}
.workspace_results table td.cellhighlight {
    cursor: pointer;
}

.workspace_results tbody .headerhighlight:hover {
    background: #8dbdd8 !important;
    color: #fff;
}
/*.workspace_results .headerhighlight {
  cursor: pointer;
}*/

.workspace_results table td.selected {
    background: #c2d5e2 !important;
}

/** Save Dialog */
.error_msg {
    color: #CC0000;
}

/** blockUI */
/*.processing_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.5;
    z-index: 9999;
}
.processing {
    border: 3px solid #EEE;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0 0 10px #EEE;
    -moz-box-shadow: 0 0 10px #EEE;
    -webkit-box-shadow: 0 0 10px #EEE;
    z-index: 10001;
    background-color: #fff;
    position: fixed;
    width: 50%;
    left: 25%;
    top: 48%;
}
.processing_inner {
    border: 1px solid #CCC;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    padding: 10px 5px 10px 10px;
}*/
.processing_image {
    display: inline-block;
    background-image: url('../../../images/src/waiting.gif');
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/** Workspace toolbar. */

.workspace_toolbar {
    position: relative;
    font-weight: bold;
    height: 39px;
    margin: 0 0 12px 0;
    padding: 3px 10px 3px 5px;
    /*nav*/ padding-left: 15px;
    /*text-shadow: 1px 1px 0 #FFFFFF;*/
}
.workspace_toolbar .cube_navigation {
    position: absolute;
    left: 10px;
    width: 250px;
}
.workspace_toolbar .cube_navigation select {
    width: 240px;
    padding: 3px;
    font-size: 11px;
}
a.disabled_toolbar {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity = 30);
    opacity: 0.3 !important;
    cursor: default;
}
.disabled {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity = 30);
    opacity: 0.3 !important;
}
a.disabled_toolbar:hover:not(.on) {
    border: none !important;
    padding: 9px 8px !important;
}
.workspace_toolbar ul {
    margin: 0;
    padding: 0;
    margin-top: 4px;
}
.workspace_toolbar ul li {
    display: inline;
    float: left;
    padding-left: 5px;
    list-style-type: none;
}
.workspace_toolbar ul li.hide {
    display: none;
}
.workspace_toolbar ul li.seperator {
    border-left: 1px solid #D5D5D5;
    margin-left: 5px;
}
.workspace_toolbar a.button {
    display: block;
    height: 16px;
    padding: 8px;
    width: 16px;
}
.workspace_toolbar a.button:hover{
    border: 1px solid #aaa;
    padding: 7px;
}
.workspace_toolbar a.on {
    border: 1px solid #aaa;
    background-color: #E0E0E0;
    padding: 7px !important;
}
.workspace_toolbar .open {
    background-position: -1040px 7px;
}
.workspace_toolbar .open2 {
    background: #7d7d7d url('../../../images/src/new.png') no-repeat 90% 50%;
    display: inline-block;
    margin-right: 8px;
    padding: 6px 10px;
    width: 110px;
    font-family: Arial;
    font-size: 13px;
}
.workspace_toolbar .open2:link, .workspace_toolbar .open2:visited {
    color: #f2f2f2;
    text-decoration: none;
} 
.workspace_toolbar .open2:hover {
    background-color: #000; 
}
.workspace_toolbar .edit_folder {
    background-image: url('../../../images/src/folder_edit.png');
    background-repeat:no-repeat;
    background-position: 7px 7px;
}
.workspace_toolbar .edit_permissions {
    background-image: url('../../../images/src/group_edit.png');
    background-repeat:no-repeat;
    background-position: 7px 7px;
}

.workspace_toolbar .delete {
    background-position: -521px 7px;
}
.workspace_toolbar .save {
    background-position: -485px -90px;
}
.workspace_toolbar .new {
    background-image: url('../../../images/src/page_white.png');
    background-repeat:no-repeat;
    background-position: 7px 7px;
}
.workspace_toolbar .run {
    background-position: -123px -90px;
}
.workspace_toolbar .auto {
    background-position: 7px 7px;
}
.workspace_toolbar .non_empty {
    background-position: -1914px 7px;
}
.workspace_toolbar .group_parents {
    background-image: url('../../../images/src/hide_parents.png');
    background-repeat:no-repeat;
    background-position: 7px 7px;
}
.workspace_toolbar .swap_axis {
    background-position: -551px -90px;
}
.workspace_toolbar .mdx {
    background-position: -1848px 7px;
}

.workspace_toolbar .explain_query {
    background-image: url('../../../images/src/information.png');
    background-repeat:no-repeat;
    background-position: 7px 7px;
}

.workspace_toolbar .export_csv {
    background-position: -455px 7px;
}
.workspace_toolbar .export_xls {
    background-position: -845px 7px;
}

.workspace_toolbar .export_pdf {
    background-position: -387px 7px;
}

.workspace_toolbar .export_png {
    background-position: -750px -93px;
}

.workspace_toolbar .hierarchy {
    background-position: -254px 5px;
}

.workspace_toolbar .totals {
    background-position: -324px 4px;
}

.workspace_toolbar .toggle_fields {
    background-position: -913px 7px;
}
.workspace_toolbar .toggle_sidebar {
    background-position: -1636px -91px;
}
.workspace_toolbar .drillthrough {
    background-position: -781px 7px;
}
.workspace_toolbar .drillthrough_export {
    background-image: url('../../../images/src/export_drillthrough.png');
    background-repeat:no-repeat;
    background-position: 7px 7px;
}
.workspace_toolbar .query_scenario {
    background-image: url('../../../images/src/query_scenario.png');
    background-position: 7px 7px;
}

.workspace_toolbar .switch_to_mdx {
    background-image: url('../../../images/src/switch_to_mdx.png');
    background-position: 7px 7px;
    background-repeat:no-repeat;
}
/*.workspace_toolbar .chart {
    background-image:   url('../../../js/olap/plugins/Chart/chart.png');
    background-repeat:  no-repeat;
    background-position: 7px 7px;
}*/

.workspace_toolbar ul {
    position: relative;

}
.order {
    position: absolute;
    right: 10px;
    color: #5d9100;
}
#order {
    color: #5d9100;
    width: 120px;
    color: #5d9100;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px 2px 5px 2px;
    background: #fff url("../../../images/select-arrow.png") no-repeat 100px center;
}
#order option {
    background-color: #5d9100;
    color: #fff;
    padding: 5px 2px 5px 2px;

}


/** query toolbar */
.query_toolbar_vertical {
    background: #FEFEFE;
    border-left: 1px solid #CCC;
    font-weight: bold;
    height: 732px;
    width: 90px;
    float: right;
    margin: 0 0 3px 0;
    padding: 3px 10px 3px 5px;
    text-shadow: 1px 1px 0 #FFFFFF;
    overflow: auto;
}
.query_toolbar_vertical ul.options li {
    width: 100%;
}

.query_toolbar_horizontal {
    background: #FEFEFE;
    border-left: 1px solid #CCC;
    font-weight: bold;
    height: 32px;
    margin: 0 0 3px 0;
    padding: 3px 10px 3px 5px;
    text-shadow: 1px 1px 0 #FFFFFF;
}

.query_toolbar ul {
    margin: 0;
    padding: 0;
}
.query_toolbar ul li {
    display: inline;
    float: left;
    padding-left: 5px;
}
.query_toolbar ul li.hide {
    display: none;
}
.query_toolbar ul li.label {
    width: 99%;
}

.query_toolbar ul li.seperator {
    border-left: 1px solid #D5D5D5;
    margin-left: 5px;
}
.query_toolbar ul li.seperator_vertical {
    border-top: 1px solid #D5D5D5;
    margin-top: 5px;
    padding-top: 5px;
}
.query_toolbar a {
    display: block;
    height: 16px;
    padding: 8px;
    text-decoration: none;
    color: black;
    font-weight: normal;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.query_toolbar a.label {
    font-weight: bold;
}
.query_toolbar a.button {
    text-align: center;
}
.query_toolbar a.button:hover {
    border: 1px solid #CCC;
    padding: 7px;
    cursor: pointer;
}
.query_toolbar a.on {
    border: 1px solid #CCC;
    background-color: #E0E0E0 !important;
    padding: 7px !important;
}
.workspace_toolbar ul li ul {
    display: none;
    position: absolute;
    z-index: 200;
    top: 27px;
    background-color: #fbfbfb;
    border: 1px solid #ddd;
}
.workspace_toolbar ul li:hover a.on:not(.disabled_toolbar) + ul {
    display: block;
} 
.workspace_toolbar .options.chart {
    display: none;
}
.workspace_toolbar .options li {
    width: 40px;
    padding: 0px;
}
.workspace_toolbar .options li:hover {
    padding: 0px;
}
.workspace_toolbar .options li a {
    width: auto;
}
.workspace_toolbar a.render_chart {
    /*background-image:   url('../../../js/olap/plugins/Chart/chart.png');
    background-repeat:  no-repeat;*/
    background-position: -1962px 6px;
}
workspace_toolbar a.render_chart:hover {
    border: none !important;
    padding: 7px !important;
}
.workspace_toolbar a.render_table {
    background-image: url('../../../images/src/table3.png');
    background-repeat:  no-repeat;
    background-position: 5px 6px;
}

.workspace_toolbar a.spark_line {
    background: url('../../../images/chart/gray/trendline.png') no-repeat 3px 7px;
    height: 32px;
}

.workspace_toolbar a.spark_line:hover,
.workspace_toolbar a.spark_line.on {
    background: url('../../../images/chart/trendline.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.spark_bar {
    background: url('../../../images/chart/gray/trendbars.png') no-repeat 3px 7px;
    height: 32px;
}

.workspace_toolbar a.spark_bar:hover,
.workspace_toolbar a.spark_bar.on {
    background: url('../../../images/chart/trendbars.png') no-repeat 3px 7px;
    height: 32px;
}

.workspace_toolbar a.bar {
    background: url('../../../images/chart/gray/bar.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.stackedBar100 {
    background: url('../../../images/chart/gray/100bar.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.stackedBar {
    background: url('../../../images/chart/gray/stackedbar.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.multiple {
    background: url('../../../images/chart/gray/multiple.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.pie {
    background: url('../../../images/chart/gray/pie.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.line {
    background: url('../../../images/chart/gray/line.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.waterfall {
    background: url('../../../images/chart/gray/waterfall.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.dot {
    background: url('../../../images/chart/gray/dot.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.heatgrid {
    background: url('../../../images/chart/gray/area2.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.area {
    background: url('../../../images/chart/gray/area.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.bar:hover,
.workspace_toolbar a.bar.on {
    background: url('../../../images/chart/bar.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.stackedBar100:hover,
.workspace_toolbar a.stackedBar100.on {
    background: url('../../../images/chart/100bar.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.stackedBar:hover,
.workspace_toolbar a.stackedBar.on {
    background: url('../../../images/chart/stackedbar.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.multiple:hover,
.workspace_toolbar a.multiple.on {
    background: url('../../../images/chart/multiple.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.pie:hover,
.workspace_toolbar a.pie.on {
    background: url('../../../images/chart/pie.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.line:hover,
.workspace_toolbar a.line.on {
    background: url('../../../images/chart/line.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.waterfall:hover,
.workspace_toolbar a.waterfall.on {
    background: url('../../../images/chart/waterfall.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.dot:hover,
.workspace_toolbar a.dot.on {
    background: url('../../../images/chart/dot.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.heatgrid:hover,
.workspace_toolbar a.heatgrid.on {
    background: url('../../../images/chart/area2.png') no-repeat 3px 7px;
    height: 32px;
}
.workspace_toolbar a.area:hover,
.workspace_toolbar a.area.on {
    background: url('../../../images/chart/area.png') no-repeat 3px 7px;
    height: 32px;
}

select {
    padding: 5px;
}

.form_button {
    background: #7b7b7b;
    border: 1px solid #CCCCCC;
    color: #fff !important;
    font-size: 1em;
    height: 18px;
    margin-bottom: 2px;
    padding: 5px 15px;
    text-decoration: none;
    text-align: left;
}
.form_button:hover {
    border: 1px solid #999;
    color: #222222;
}
.form_button[href="#open_query"], .form_button[href="#save"], .form_button[href="#par_open"], .form_button[href="#refresh"],
.form_button[href="#ujfilter"], .form_button[href="#ujcontinue"] {
    background-color: #84cd00;
}

.par_text {
    font-family: CallunaSans;
    font-size: 13px;
    margin-left: 24px;
}


.par_table {
    width: auto;
    font-family: CallunaSans;
    margin-left: 20px;
}

.par_table td {
    text-transform: uppercase;
}

.par_table td:first-child {
    padding-top: 5px;
}

.par_table td input {
    width: 250px;
    padding: 3px;
}


.par_obl_star {
    font-family: CallunaSans;
    font-size: 13px;      
    color: #ff0000;
}

.par_area_message {
    font-family: CallunaSans;
    font-size: 13px;    
    color: #ff0000;
    text-transform:none;
}

#simplemodal-overlay {
    background: #FFFFFF;
    opacity: 0.5 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.bucket_items {
    background: #FCFCFC;
    border: 1px solid #CCC;
    height: 32px;
    margin: 0 0 10px 0;
    padding: 3px 10px 3px 5px;
    text-shadow: 1px 1px 0 #FFFFFF;
}

.bucket_items ul {
    margin: 0;
    padding: 0;
}
.bucket_items ul li {
    display: inline;
    float: left;
    padding-left: 5px;
}
.bucket_items ul li.seperator {
    border-left: 1px solid #D5D5D5;
    margin-left: 5px;
}
.bucket_items a.button {
    text-decoration: none;
    font-weight: bold;
    color:black;
    display: block;
    height: 16px;
    padding: 8px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.bucket_items a.add_bucket {
    background-image: url('../../../js/olap/plugins/Buckets/tag_blue_add.png');
    background-repeat:no-repeat;
    width: 16px;
    background-position: 50% 50%;

}

.bucket_items a.button:hover {
    border: 1px solid #CCC;
    padding: 7px;
}

.bucket_items a.delete {
    text-decoration:none;
    color:black;
}
.bucket_items a.on {
    border: 1px solid #CCC;
    background-color: #E0E0E0;
    padding: 7px !important;
}

.bucket_items .save {
    background-position: -485px -90px;
    width: 16px;
}

.bucket_items .export {
    background-image: url('../../../images/src/export_drillthrough.png');
    background-repeat:no-repeat;
    background-position: 7px 7px;
    width: 16px;
}


/* CCC styles */
.tipsy { pointer-events: none; padding: 5px; font-size: 10px; font-family: Arial,Helvetica,sans-serif; position: absolute; z-index: 100000; }
.tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px; text-align: center; }
.tipsy-inner { border-radius: 3px; -moz-border-radius:3px; -webkit-border-radius:3px; }
.tipsy-arrow { position: absolute; width: 9px; height: 5px; }
.tipsy-n .tipsy-arrow { top: 0; left: 50%; margin-left: -4px; }
.tipsy-nw .tipsy-arrow { top: 0; left: 10px; }
.tipsy-ne .tipsy-arrow { top: 0; right: 10px; }
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -4px; background-position: bottom left; }
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; background-position: bottom left; }
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; background-position: bottom left; }
.tipsy-e .tipsy-arrow { top: 50%; margin-top: -4px; right: 0; width: 5px; height: 9px; background-position: top right; }
.tipsy-w .tipsy-arrow { top: 50%; margin-top: -4px; left: 0; width: 5px; height: 9px; }
#tooltip {
    position: absolute;
    z-index: 3000;
    border: 1px solid #111;
    background-color: #eee;
    padding: 5px;
    opacity: 0.85;
}
#tooltip h3, #tooltip div { margin: 0; }


/* OOCSS - reusable classes */

.open-dialog .ui-dialog-title {
    font-size: 21px;
}

.open-dialog p {
    margin: 10px 25px 0;
}

div.search {
    position: absolute;
    top: 10px;
    left: 140px;
}
input.search_file {
    width:150px;
    margin-left:10px;
    height: 18px;
    padding: 3px 7px;
    position: absolute;
    left: 0px;
    z-index: 0;
    top: 8px;
}
::-webkit-input-placeholder { text-transform: uppercase;}
::-moz-placeholder { text-transform: uppercase; } /* firefox 19+ */
:-ms-input-placeholder { text-transform: uppercase; } /* ie */
input:-moz-placeholder { text-transform: uppercase; }
span.cancel_search {
    background: url("../../../images/src/cancel3.png") no-repeat scroll 0 0 transparent;
    box-shadow: 0 0 10px #EEEEEE;
    -moz-box-shadow: 0 0 2px #EEE;
    -webkit-box-shadow: 0 0 10px #EEE;
    cursor: pointer;
    float: right;
    height: 26px;
    left: 175px;
    margin-top: 5px;
    position: absolute;
    top: 13px;
    width: 25px;
    z-index: 1;
    opacity: 0.7;
    display: none;
}

span.cancel_search:hover {
    opacity: 1;
}

.RepositoryObjects {
    margin: 0;
    padding: 0;
}

.RepositoryObjects .left-column {
    float: left;
    width: 360px;
}

.RepositoryObjects .right-column {
    float: right;
    width: 310px;
}

.RepositoryObjects h3 {
    font-family: CallunaSans;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.RepositoryObjects:after {
    content: "";
    display: block;
    clear: both;
}

.RepositoryObjects li {
    cursor: pointer;
    line-height: 17px;
    list-style-type: none;
    margin: 0;
    padding-bottom: 2px;
    padding-top: 2px;
}
.RepositoryObjects li.query {
    margin-left: 16px;
}
.RepositoryObjects li.query a.selected_query {
    background-color: #84cd00;
    color: #fff;
    padding: 2px;
}

.query_name {
    display: none;
}


.RepositoryObjects li a {
    color: #222;
    text-decoration: none;
}

.RepositoryObjects li a:hover {
    background: #f0f0f0;
}

.RepositoryObjects ul.folder_content {
    margin-top: 5px;
}

.RepositoryObjects .folder_row {
    font-weight: bold;
}

.RepositoryObjects .folder_row.selected {
    background: #f0f0f0;
}

.RepositoryObjects li.selected.query {
    background: #f0f0f0;
}

.RepositoryObjects li.query .icon {
    background-image: url('../../../images/src/monitor-list-item.png');
    padding: 1px 8px 1px;
    margin-right: 10px;
}

.RepositoryObjects li .sprite.folder {
    background-position: -1538px -95px;
    cursor: pointer;
    padding: 5px 17px;
}

.RepositoryObjects li .sprite.folder.collapsed {
    background-position: -1406px -95px;
    cursor: pointer;
    padding: 5px 17px;
}

/* custom */

.dialog_body .RepositoryObjects {
    padding: 0px 22px;
    padding-bottom: 0px;
    margin-top: 0;
    height: 200px;
    overflow: auto;
}

#save_query_form [name="name"] {
    width: 390px;
}


.queries h3 {
    position: relative;
    height: 33px;
    line-height: 33px;
}

.queries .add_folder {
    position: absolute;
    top: 12px;
    right: 10px;
    display: block;
    height: 16px;
    width: 16px;
    background-image: url(../../../images/src/folder_add.png);
}

/* Print styles */

@media print {
    #header, .sidebar, .workspace_fields, .workspace_toolbar { display: none !important; }
}


/* Chart toolbar */
.chart_toolbar {
    background: #F9F9F9;
    border: 1px solid #CCC;
    font-weight: bold;
    height: 38px;
    margin: 0 0 3px 0;
    padding: 3px 10px 3px 5px;
    text-shadow: 1px 1px 0 #FFFFFF;
    overflow: hidden;
    position: fixed;
    left: 3px;
    top: 3px;
    width: 100%;
}
.chart_toolbar ul {
    margin: 0;
    padding: 0;
}
.chart_toolbar ul li {
    display: inline;
    float: left;
    padding-left: 5px;
}
.chart_toolbar ul li.hide {
    display: none;
}
.chart_toolbar ul li.seperator {
    border-left: 1px solid #D5D5D5;
    margin-left: 5px;
}
.chart_toolbar a.button {
    display: block;
    height: 16px;
    padding: 8px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.chart_toolbar a.button:hover {
    border: 1px solid #CCC;
    padding: 7px;
}
.chart_toolbar a.on {
    border: 1px solid #CCC;
    background-color: #E0E0E0;
    padding: 7px !important;
}

.chart_toolbar span.logo a.olap {
    background-position: -1275px 1px;
    float: right;
    width: 166px;
    height: 28px;
    margin: -2px 10px 0 0;
    text-indent: -9999px;
}

.chart_toolbar span.logo a.ccc {
    background: url('../../../images/src/ccc3.png') no-repeat;
    float: right;
    width: 80px;
    height: 28px;
    margin: 0px 10px 0 0;
    text-indent: -9999px;
}

.chartworkspace {
    overflow: hidden;
}

.chartworkspace_inner {
    overflow: auto;
}


/* Treetable */
table.treetable span {
    background-position: center left;
    background-repeat: no-repeat;
}

table.treetable span.indenter {
    margin-right: 3px;
}

table.treetable tr.collapsed span.indenter a {
    background: transparent url(../../../images/treetable/expand.png) no-repeat 0px 3px;
}

table.treetable tr.collapsed span.indenter a:hover {
    background-image: url(../../../images/treetable/expand-hover.png);
}

table.treetable tr.collapsed span.indenter a:active {
    background-image: url(../../../images/treetable/expand-active.png);
}

table.treetable tr span.indenter a:link, table.treetable tr span.indenter a:visited {
    text-decoration: none;
    width: 15px;
    display: inline-block;
    padding-left: 3px;
}

table.treetable tr.expanded span.indenter a {
    background: transparent url(../../../images/treetable/collapse.png) no-repeat 0px 3px;
}

table.treetable tr.expanded span.indenter a:hover {
    background-image:  url(../../../images/treetable/collapse-hover.png);
}

table.treetable tr.expanded span.indenter a:active {
    background-image:  url(../../../images/treetable/collapse-active.png);
}

table.treetable tr.selected {
    background-color: #3875d7;
    color: #fff;
}

table.treetable tr.collapsed.selected span.indenter a {
    background-image: url(../../../images/treetable/expand-light.png);
}

table.treetable tr.expanded.selected span.indenter a {
    background-image: url(../../../images/treetable/collapse-light.png);
}

table.treetable tr.accept {
    background-color: #a3bce4;
    color: #fff
}

table.treetable tr.collapsed.accept td span.indenter a {
    background-image: url(../../../images/treetable/expand-light.png);
}

table.treetable tr.expanded.accept td span.indenter a {
    background-image: url(../../../images/treetable/collapse-light.png);
}
/*//JB*/

.filter_level_header {
    font-family: CallunaSans;
    font-size: 12px;    
    color: #000000;
}

.filter_delete_level {
    text-decoration: none;
    background: url('../../../images/src/tabs_cross_off.png') no-repeat;
}

.filter_delete_level:hover {
    text-decoration: none;
    background: url('../../../images/src/tabs_cross_on_red.png') no-repeat;
}

.filter_item {
    text-decoration: none;
    font-family: CallunaSans;
    font-size: 12px;
    color: #000000;
}

.filter_item:visited {
    text-decoration: none;
    font-family: CallunaSans;
    font-size: 12px;  
    color: #000000;
}

.filter_item:hover {
    text-decoration: none;
    color: #ff0000;
    font-family: CallunaSans;
    font-size: 12px;
}

.parameters_filter {
    text-decoration: none;
    background: url('../../../images/src/filter6.png') no-repeat;
}

.dimension_tree ul li ul li a.dimensions_filter {
    text-decoration: none;
    background: url('../../../images/src/filter5.png') no-repeat;
    float: right;
    margin-top: -23px;
    padding: 0px;
}

.dummyli {
    display: none;
}

.measure_tree_empty {
    font-family: CallunaSans;
    font-size: 12px;  
    color: #000000;    
    display: none;
}

.dimension_tree_empty {
    font-family: CallunaSans;
    font-size: 12px;  
    color: #000000;    
    display: none;
}


/* PAGER */
div.pager {
    padding: 10px 0 10px 0;
    background-color: #D6D2C2;
    font-size: 1em;
    margin-left: 5px;
}

div.pager span {
    padding: 0 5px 0 5px;
}

div.pager input.prev {
    width: auto;
    margin-right: 10px;
}

div.pager input.next {
    width: auto;
    margin-left: 10px;
}

div.pager input {
    font-size: 8px;
    width: 50px;
    border: 1px solid #330000;
    text-align: center;
}

div.pager select, div.pager .pagedisplay {
    position: relative;
    bottom: 8px;
}

div.pager span.prev {
    margin-right: 5px;
}

div.pager span.first, div.pager span.prev, 
div.pager span.next, div.pager span.last {
    width: 25px;
    height: 25px;
    display: inline-block;
    cursor: pointer;
    padding: 0px;
}

div.pager span.first {
    background: transparent url('../../../images/pager/first.png') no-repeat 0px 0px;
}

div.pager span.first:hover {
    background-image: url('../../../images/pager/first-hover.png');
}

div.pager span.first:active {
    background-image: url('../../../images/pager/first-active.png');
}

div.pager span.prev {
    background: transparent url('../../../images/pager/prev.png') no-repeat 0px 0px;
}

div.pager span.prev:hover {
    background-image: url('../../../images/pager/prev-hover.png');
}

div.pager span.prev:active {
    background-image: url('../../../images/pager/prev-active.png');
}

div.pager span.next {
    background: transparent url('../../../images/pager/next.png') no-repeat 0px 0px;
}

div.pager span.next:hover {
    background-image: url('../../../images/pager/next-hover.png');
}

div.pager span.next:active {
    background-image: url('../../../images/pager/next-active.png');
}

div.pager span.last {
    background: transparent url('../../../images/pager/last.png') no-repeat 0px 0px;
}

div.pager span.last:hover {
    background-image: url('../../../images/pager/last-hover.png');
}

div.pager span.last:active {
    background-image: url('../../../images/pager/last-active.png');
}
body div.pager {
    color: #555;
    font-size: 13px;
    line-height: 21px;
    background-color: transparent;
}

#how-to {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100 !important;
    background-color: rgba(0,0,0,0.6);
}
#how-to-content {
    position: relative;
    display: none;
    position: relative;
    width: 1000px;
    height: 756px;
    margin: 50px auto;
    border: 5px solid #fff;
}
#how-to-content a {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
}

.social_link {
    display: block;
    float: left;
    width: 48px;
    height: 48px;
    margin-right: 30px;
    margin-top: 10px;
}

.social_first {
    margin-left: 120px;
}

.social_email {

    background: url('../../../images/social/email-icon.png') no-repeat;
}

.social_facebook {
    background: url('../../../images/social/facebook-icon.png') no-repeat;
}

.social_google {
    background: url('../../../images/social/google-plus-icon.png') no-repeat;
}

.social_twitter {
    background: url('../../../images/social/twitter-icon.png') no-repeat;
}

.social_linkedin {
    background: url('../../../images/social/linkedin-icon.png') no-repeat;
}

.social_close {
    background: url('../../../images/social/close-icon.png') no-repeat;
    background-position: right bottom;
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 30px;
    margin-top: 25px;    
}

.social_headline {
    font-family: CallunaSans;
    font-size: 16px;
    text-transform: uppercase;    
    color: #222;
}

.social_guerylink {
    font-family: CallunaSans;
    font-size: 14px;  
    color: #222;
}

.social_bracket {
    font-family: CallunaSans;
    font-size: 12px; 
    color: #777;
}

.modalContainer {
    position:absolute;
    top: 0;
    left: 0;
    opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */    
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1004;
}

/*****************/
/*   TOOLTIPS    */
/*****************/

.ui-tooltip-default.qtip {
    background-color: #0073de;
    border: none;
    color: #fff;
    max-width: 200px;
    font-size: 1em;
}
.tip-content {
    display: none;
}
.tip-content a:link, .tip-content a:visited {
    color: white;
}
.tip-content a:hover {
    color: #ddd;
}
.qtip-place img {
    position: relative;
    left: 5px;
}


