啊啊是的

来源:互联网 发布:单片机的编程器 编辑:程序博客网 时间:2024/04/27 22:55
common.js


/**
*浏览器自适应
* @param n 纵向间距几个20
*/
function winDefault(n){
    var winHeight = $(window).height();
    var bodyContHeight = winHeight-42-n;
    var contTopHeight = $(".contTop").height()+20;
    var contTableHeight = bodyContHeight-contTopHeight;
    $(".contTable").height(contTableHeight);
}
/**
*展示或显示
* @param target1 被点击元素的id
* @param target2 要展开或收缩的元素的id
*/
function showHide(obj,target1,target2){
    var elel = document.getElementById(target1);
    var eleDis = document.getElementById(target1).style.display;
    var ele2 = document.getElementById(target2);
    if(eleDis=="none"){
        obj.className="gjdown";
        elel.style.display="block";
        ele2.className="h3c-icon-arrows_downBlue gjIcon";
    }else{
        obj.className="gjup";
        elel.style.display="none";
        ele2.className="h3c-icon-arrows_upGray gjIcon";
    }   
}


/**
*打开一个窗口
*@param url 路径
*@param title 标题
*@param width 宽度
*@param height 高度
*@param params 值{}
*@param method get或post
*/
var default_left;
var default_top;
function openWindow(url,title,width,height,params,method){
    if(params==null){
        params={};
    }
    if (method==null) {
        method="get";
    }
    $("#win").window({
        href:url,
        title:title,
        width:width,
        height:height,
        closed:false,
        draggable:true,
        resizable:false,
        cache:false,
        modal:true,
        collapsible:false,
        minimizable:false,
        maximizable:false,
        queryParams:params,
        method:method,
        onOpen:function(){
            //窗口的原始left
            default_left=$("#win").panel("options").left;
            //窗口的原始top
            default_top=$("#win").panel("options").top;
        },
        onMove:function(left,top){
            var body_width=document.body.offsetWidth;//body的宽度
            var body_height=document.body.offsetHeight;//body的高度
            var win_width=$("#win").panel("options").width;//窗口的宽度
            var win_height=$("#win").panel("options").height;//窗口的高度
            if(left<1||left>(body_width-win_width)||top<1||top>(body_height-win_height)){//碰撞检测
                $("#win").window('move',{
                    left:default_left,
                    top:default_top
                })
            }
        }
    }).window("center");
}




//添加
function toRight(){
    var rows=$("#alldevlist").datagrid('getSelections');
    if(rows.length==0){
        alert("当前分组下无设备");
    }else{
        $("#selectdevlist").datagrid("loadData",[]);
        for(var i=0;i<rows.length;i++){
            $("#selectdevlist").datagrid("appendRow",rows[i]);
            var index = $("#alldevlist").datagrid("getRowIndex",rows[i]);
            $("#alldevlist").datagrid("deleteRow",index);
            if($("#alldevlist").datagrid("getRows")==0){
                $("#addAll").linkbutton("disable");
                $("#add").linkbutton("disable");
                $("#remove").linkbutton("enable");
                $("#removeAll").linkbutton("enable");
                $("#addAll").addClass("moveBtn-dis");
                $("#add").addClass("moveBtn-dis");
                $("#remove").removeClass("moveBtn-dis");
                $("#removeAll").removeClass("moveBtn-dis");
            }
        }
    }
}
//添加全部
function AlltoRight(){
    //$("#alldevlist").datagrid("loadData",leftData);
    var rows = $("#alldevlist").datagrid('getRows');
    if(rows==""){
        alert("当前分组下无设备!");
    }else{
        var arr=[];
        for(var i=0;i<rows.length;i++){
            arr.push(rows[i]);
        }
        $("#alldevlist").datagrid("loadData",[]);
        $("#selectdevlist").datagrid("loadData",arr);
        $("#addAll").linkbutton("disable");
        $("#add").linkbutton("disable");
        $("#remove").linkbutton("enable");
        $("#removeAll").linkbutton("enable");
        $("#addAll").addClass("moveBtn-dis");
        $("#add").addClass("moveBtn-dis");
        $("#remove").removeClass("moveBtn-dis");
        $("#removeAll").removeClass("moveBtn-dis"); 
        
    }
}
//移除
function toLeft(){
    var rows = $("#selectdevlist").datagrid('getSelections');
    if(rows==""){
        alert("请先选中要移除的设备");
    }else{
        for(var i=rows.length-1;i>=0;i--){
            var index = $("#selectdevlist").datagrid('getRowIndex',rows[i]);
            $("#alldevlist").datagrid("appendRow",rows[i]);
            $("#selectdevlist").datagrid("deleteRow",index);
        }
        if($("#selectdevlist").datagrid("getRows").length==0){
            $("#addAll").linkbutton("enable");
            $("#add").linkbutton("enable");
            $("#remove").linkbutton("disable");
            $("#removeAll").linkbutton("disable");
            $("#addAll").removeClass("moveBtn-dis");
            $("#add").removeClass("moveBtn-dis");
            $("#remove").addClass("moveBtn-dis");
            $("#removeAll").addClass("moveBtn-dis");
        }
    }
}
//全部移除
function AlltoLeft(){


    var rows = $("#selectdevlist").datagrid('getRows');
    if(rows==""){
        alert("当前分组下无设备!");
    }else{
        var arr=[];
        for(var i=0;i<rows.length;i++){
            arr.push(rows[i]);
        }
        $("#selectdevlist").datagrid("loadData",[]);
        $("#alldevlist").datagrid("loadData",arr); 
        $("#addAll").linkbutton("enable");
        $("#add").linkbutton("enable");
        $("#remove").linkbutton("disable");
        $("#removeAll").linkbutton("disable");
        $("#addAll").removeClass("moveBtn-dis");
        $("#add").removeClass("moveBtn-dis");
        $("#remove").addClass("moveBtn-dis");
        $("#removeAll").addClass("moveBtn-dis");
        
    }
    //$("#selectdevlist").datagrid("loadData",[]);
}




/**
*关于多个echarts图在同一个页面的自适应方法
*@target 画布
*/
function resizeChart(target){
    if(window.addEventListener){
        window.addEventListener("resize",function(){
            target.resize();
        },false);
    }else{
        window.attachEvent("onresize",function(){
            target.resize();
        })
    }
}


/**
*分页方法
*/
function pagerFilter(data){
        if (typeof data.length == 'number' && typeof data.splice == 'function'){
            data = {
                total: data.length,
                rows: data
            }
        }
        var dg = $(this);
        var opts = dg.datagrid('options');
        var pager = dg.datagrid('getPager');
        pager.pagination({
            onSelectPage:function(pageNum, pageSize){
                opts.pageNumber = pageNum;
                opts.pageSize = pageSize;
                pager.pagination('refresh',{
                    pageNumber:pageNum,
                    pageSize:pageSize
                });
                dg.datagrid('loadData',data);
            }
        });
        if (!data.originalRows){
            data.originalRows = (data.rows);
        }
        var start = (opts.pageNumber-1)*parseInt(opts.pageSize);
        var end = start + parseInt(opts.pageSize);
        data.rows = (data.originalRows.slice(start, end));
        return data;
    }
/**
* innerText兼容处理
* IE、Safari、Opera和Chrome支持innerText属性。Firefox虽然不支持innerText,但支持作用类似的textContent属性。
* textContent是DOM3级规定的一个属性,而且也得到了safari、opera和Chrome的支持。
* 为了确保跨浏览器兼容,有必要想下面这样通过函数来检测可以使用哪个属性:
*/
function getInnerText(element){
    return (typeof element.textContent=="string")?element.textContent :element.innerText;
}
function setInnerText(element,text){
    if(typeof element.textContent=="string"){
        element.textContent=text;
    }else{
        element.innerText=text;
    }
}
/**
*下一步
*@param step 当前的状态的元素
*@param target 当前显示的内容区
*/
function onNext(step,target){
    $(step).removeClass("stepIconM fwb").addClass("stepIconL");//将当前的状态由进行时步骤改为已进行过步骤
    $(step).next().removeClass("stepIconR").addClass("stepIconM fwb");//将后一个由未进行步骤改为进行时步骤
    $(target).hide();//隐藏当前内容区
    $(target).next().show();//显示后一个内容区
}
/**
*上一步
*@param step 当前的状态的元素
*@param target 当前显示的内容区
*/
function onPrev(step,target){
    $(step).removeClass("stepIconM fwb").addClass("stepIconR");//将当前的由进行时步骤改为未进行步骤
    $(step).prev().removeClass("stepIconL").addClass("stepIconM fwb");//将前一个由已进行过步骤改为进行时步骤
    $(target).hide();//隐藏当前内容区
    $(target).prev().show();//显示前一个内容区
}






common.css


*{
    margin:0;
    padding:0;
    font-size:14px;
    color:#333;
    font-family:'Microsoft YaHei';
}
a{color: #1F77D8;text-decoration:underline;}
ul{list-style-type: none;}
label{display: inline-block;text-align: right; vertical-align: middle;}
/*************************顶部***************************/
/* 页头 */
.headerTit{
    height:40px;
    line-height:40px;
    font-size:17px;
    color:#25a0fd;
    font-weight: bold;
    margin-left:10px;
    margin-right: 10px;
    border-bottom:2px solid #ddd;
}


/* *********************************内容区********************************** */
.bodyCont{
    padding:0px 10px 0px 10px;
    min-width:900px;
}
.contTop{padding: 15px 5px 10px 5px;}
/*无边框内容区*/
.noBorderCont{
    border:none;
    padding:0;
}


/* 内容区-查询区域 */
.floatLeft{
    display: inline-block;
    width:auto;
    margin-right:20px;
    margin-bottom: 10px;
}
.floatRight{
    display: inline-block;
    width:auto;
    margin-bottom: 10px;
    float: right;
}
/*标准图片*/
.icon{width: 16px; height: 16px; display: inline-block;}
.yellow {background-color: yellow;}
.blue {background-color: blue;}
.gray {background-color: gray;}
.green {background-color: green;}
.F7F8FA{background: #F7F8FA;}


.yzColor{color: #F86B4F;}
.jjColor{color: #FFC501;}
.ybColor{color: #83BE32;}
.zxColor{color: #2DBDEF;}
.gColor{color: #F86B4F;}
.zColor{color: #FFC501;}
.dColor{color: #83BE32;}
.linkColor{color:#297AC5;}
.orangeColor{color: #F19049;}
.redColor{color:red;}
.buleColor{color: #00c;}
.tipColor{color:#808080;}
.color666{color: #666;}
.color999{color: #999;}
/*边框*/
.borderDash{border: 1px dashed #d7d7d7;border-radius: 3px;}
/* 对齐方式 */
.textAL{text-align:left;}
.textAC{text-align:center;}
.textAR{text-align:right;}
.verAT{vertical-align: top;}
.verAM{vertical-align: middle;}
/* 浮动: */
.floatL{float:left;}
.floatR{float:right;}
/*字号大小*/
.f18{font-size: 18px;}
.f17{font-size: 17px;}
.f16{font-size: 16px;}
.f15{font-size: 15px;}
/*字体粗细*/
.fwb{font-weight: bold;}
.fwn{font-weight: normal;}
/*空两格*/
.twoSpaces{text-indent: 2em;}
/* 显示: */
.disB{display:block;}
.disIB{display:inline-block;}
.disN{display:none;}
.wid50{width: 50px;}
.wid60{width: 60px;}
.wid70{width: 70px;}
.wid80{width: 80px;}
.wid84{width: 84px;}
.wid100{width:100px;}
.wid110{width: 110px;}
.wid115{width: 115px;}
.wid120{width: 120px;}
.wid160{width: 160px;}
.wid180{width:180px;}
.wid196{width: 196px;}
.wid200{width: 200px;}
.wid280{width: 280px;}
.wid300{width: 300px;}
.wid400{width: 400px;}
.wid550{width:550px;}


.p10{padding:10px;}
.p15{padding: 15px;}
.p20{padding:20px;}
.pl10{padding-left: 10px;}
.pl20{padding-left: 20px;}
.pl30{padding-left: 30px;}
.pt0{padding-top: 0;}
.pt10{padding-top: 10px;}
.pt15{padding-top: 15px;}
.pt20{padding-top: 20px;}
.pt30{padding-top: 30px;}
.pr10{padding-right: 10px;}
.pr20{padding-right: 20px;}
.pr30{padding-right: 30px;}
.pb0{padding-bottom: 0px;}
.pb10{padding-bottom: 10px;}
.pb20{padding-bottom: 20px;}
.pb30{padding-bottom: 30px;}
.m10{margin: 10px;}
.m20{margin: 20px;}
.ml10{margin-left: 10px;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.ml50{margin-left: 50px;}
.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mr0{margin-right: 0;}
.mr5{margin-right: 5px;}
.mr10{margin-right: 10px;}
.mr20{margin-right: 20px;}
.mr30{margin-right: 30px;}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}


/***********************************底部******************************************/
/* 底部居中按钮 */
.centerBtns{
    padding:20px 0;
    text-align:center;
}
/* 操作按钮 */
.operationBtns{
    margin:5px 0;
}
/*分步骤*/
.stepIconL{width:266px; height:38px;display: inline-block; font-size: 15px; background: url(images/arrow_left.png); line-height: 38px; text-align: center;}
.stepIconM{width:266px; height:38px;display: inline-block; font-size: 15px; background: url(images/arrow_middle.png); line-height: 38px; text-align: center;}
.stepIconR{width:266px; height:38px;display: inline-block; font-size: 15px; background: url(images/arrow_right.png); line-height: 38px; text-align: center;}
/* 输入框,密码,输入域,下拉菜单 */
textarea,input[type="text"],input[type="password"],select{
    height: 28px;
    padding-left:5px;
    border: 1px solid #d7d7d7;
    font-size: 14px;
    color: #000000;
    background-color: #FFFFFF;
}
textarea{
    height:60px;
    margin-bottom: 0px;
}
select{
    height:28px;
}
textarea[disabled], input[type="text"][disabled], input[type="password"][disabled], select[disabled] {
    color: #D7D7D7;
    cursor: default;
}


.whiteBtn{background:#fff;color: #333;border:1px solid #d7d7d7;}
.whiteBtn .l-btn-text{color: #333;}
.whiteBtn:hover .l-btn-text{color: #fff;}
.moveBtn{background: #fff; width: 70px;border:1px solid #46ABF9;}
.moveBtn .l-btn-text{color: #484848;}
.moveBtn:hover .l-btn-text{color: #fff;}
.moveBtn-dis:hover .l-btn-text{color: #484848;}
.self-table tr td{padding: 5px;}
.self_note{color: #666; font-size: 12px;}
.self-table tr td.noteText{color: #000; font-size: 14px; font-weight: bold;padding-right: 20px;}
/*虚线table*/
.tableDashed{border-collapse: collapse;border: 1px dashed #D7D7D7;}
.tableDashed tr td{padding: 6px 10px;border: 1px dashed #d7d7d7;}
.tableSolid{border-collapse: collapse;border: 1px solid #D7D7D7;}
.tableSolid tr th{background: #F0F1F6;}
.tableSolid tr th,.tableSolid tr td{padding: 6px 10px;border: 1px solid #d7d7d7;}
.centerBtn{margin-top: 30px; margin-bottom: 30px; text-align: center;}
.centerBtn1{height: 60px; position: absolute; left: 0; right: 0;bottom: 0;text-align: center;}
.circle01{background: #43ADF9; height: 14px; width: 14px; border-radius: 14px; display: inline-block;}
.circle02{background: #70DFFB; height: 14px; width: 14px; border-radius: 14px; display: inline-block;}
.circleFailed{background: #FE5A51; height: 14px; width: 14px; border-radius: 14px; display: inline-block;}
.circleNormal{background: #8CC808; height: 14px; width: 14px; border-radius: 14px; display: inline-block;}
.circleTest{background: #46ACF6; height: 14px; width: 14px; border-radius: 14px; display: inline-block;}
.circleWarn{background: #FB9502; height: 14px; width: 14px; border-radius: 14px; display: inline-block;}
.circleNoTest{background: #A6A6A6; height: 14px; width: 14px; border-radius: 14px; display: inline-block;}
.disLabel{color:#B0B0B0;}
.textboxBoder{border:1px solid #F19049;}
.icon{display: inline-block;width: 16px; height: 16px;}
.gjIcon{display: inline-block; width: 10px; height: 10px; margin-left: 10px;}
a.gjup{text-decoration: none; color: #9D9E9F;}
a.gjdown{text-decoration: none; color: #25a0fd;}
/* 按钮 */
button, input[type="reset"], input[type="submit"], input[type="button"]{
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    color: #333;
    font-size: 13px;
    margin-right:10px;
    background: #fff;
}
button:hover, input[type="reset"]:hover, input[type="submit"]:hover, input[type="button"]:hover{
    color:#fff;
    border-radius: 4px;
    background: #46ABF9;
}
button[disabled], input[type="reset"][disabled], input[type="submit"][disabled], input[type="button"][disabled]{
    background: #ccc;
    cursor: not-allowed;
}
/* 移除 */
input[type="submit"].btn_clear,button.btn_clear,input[type="button"].btn_clear{
    padding: 2px 3px 2px 19px;
    background: url(images/btnIcons/clear.png) no-repeat 4px 4px,#fff;
}
input[type="submit"].btn_clear:hover,button.btn_clear:hover,input[type="button"].btn_clear:hover{
    color: #fff;
    padding: 2px 3px 2px 19px;
    background: url(images/btnIcons/clear.png) no-repeat 4px 4px,#46ABF9;
}
/*增加*/
input[type="submit"].btn_add,button.btn_add,input[type="button"].btn_add{
    padding: 2px 3px 2px 19px;
    background: url(images/btnIcons/add.png) no-repeat 4px 4px,#fff;
}
input[type="submit"].btn_add:hover,button.btn_add:hover,input[type="button"].btn_add:hover{
    color: #fff;
    padding: 2px 3px 2px 19px;
    background: url(images/btnIcons/add.png) no-repeat 4px 4px,#46ABF9;
}








easyui-h3c.css




.panel {
  overflow: hidden;
  text-align: left;
  margin: 0;
  border: 0;
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.panel-header,
.panel-body {
  /*border-width: 1px;
  border-style: solid;
  border-color: #d7d7d7;*/
  border: 1px solid #d7d7d7;
}
.panel-header {
  padding: 11px;
  position: relative;
}
.panel-title {
  background: url('images/blank.gif') no-repeat;
}
.panel-header-noborder {
  border-width: 0 0 1px 0;
}
.panel-body {
  overflow: auto;
  border-top-width: 0;
  padding: 0;
}
.panel-body-noheader {
  border-top-width: 1px;
}
.panel-body-noborder {
  border-width: 0px;
}
.panel-body-nobottom {
  border-bottom-width: 0;
}
.panel-with-icon {
  padding-left: 18px;
}
.panel-icon,
.panel-tool {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  height: 16px;
  overflow: hidden;
}
.panel-icon {
  left: 5px;
  width: 16px;
}
.panel-tool {
  right: 5px;
  width: auto;
}
.accordion .accordion-header .panel-tool {
  left: 5px;
  width: auto;
}
.panel-tool a {
  display: inline-block;
  width: 16px;
  height: 16px;
  opacity: 0.6;
  filter: alpha(opacity=60);
  margin: 0 0 0 2px;
  vertical-align: top;
}
.panel-tool a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: #eaf2ff;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
}
.panel-loading {
  padding: 11px 0px 10px 30px;
}
.panel-noscroll {
  overflow: hidden;
}
.panel-fit,
.panel-fit body {
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}
.panel-loading {
  background: url('images/loading.gif') no-repeat 10px 10px;
}
.panel-tool-close {
  background: url('images-common/close.png') no-repeat;
}
.panel-tool-min {
  background: url('images/panel_tools.png') no-repeat 0px 0px;
}
.panel-tool-max {
  background: url('images/panel_tools.png') no-repeat 0px -16px;
}
.panel-tool-restore {
  background: url('images/panel_tools.png') no-repeat -16px -16px;
}
.panel-tool-collapse {
  background: url('images/panel_tools.png') no-repeat -32px 0;
}
.panel-tool-expand {
  background: url('images/panel_tools.png') no-repeat -32px -16px;
}
.panel-header,
.panel-body {
  /*border-color: #d7d7d7;*/
}
.panel-header {
  background: #F5F7FA;
  border-bottom-color: #fff;
  /*background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);*/
}
.accordion .panel-header {
  border-bottom-color: #d7d7d7;
  padding: 0 10px;
}
.panel-body {
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
}
.panel-title {
  font-size: 17px;
  font-weight: bold;
  color: #25a0fd;
  height: 17px;
  line-height: 17px;
}
.accordion .panel-title{
  font-size: 16px;
  font-weight: normal;
  color: #333;
  height: 35px;
  line-height: 35px;
  margin-left: 20px;
}
.panel-footer {
  border: 1px solid #95B8E7;
  overflow: hidden;
  background: #F4F4F4;
}
.panel-footer-noborder {
  border-width: 1px 0 0 0;
}
.accordion {
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
}
.accordion .accordion-header {
  border-width: 0 0 1px;
  cursor: pointer;
}
.accordion .accordion-body {
  border-width: 0 0 1px;
}
.accordion-noborder {
  border-width: 0;
}
.accordion-noborder .accordion-header {
  border-width: 0 0 1px;
}
.accordion-noborder .accordion-body {
  border-width: 0 0 1px;
}
.accordion-collapse {
  /*background: url('images/accordion_arrows.png') no-repeat 0 0;*/
  background: url('images/close.png') no-repeat;
}
.accordion-expand {
  /*background: url('images/accordion_arrows.png') no-repeat -16px 0;*/
  background: url('images/open.png') no-repeat;
}
.accordion {
  background: #ffffff;
  border-color: #d7d7d7 #d7d7d7 #fff;
}
.accordion .accordion-header {
  background: #fff;
  /*background: #F5F7FA;*/
  filter: none;
}
.accordion .accordion-header-selected {
  background: #fff;
  /*background: url(images-common/panel_title_bg.png);*/
}
.accordion .accordion-header-selected .panel-title {
  color: #333;
}
.window {
  overflow: hidden;
  padding: 0px;
  border-width: 1px;
  border-style: solid;
}
.window .window-header {
  background: transparent;
  padding: 10px 9px;
}
.window .window-body {
  border-width: 1px;
  border-style: solid;
  border-top-width: 0px;
}
.window .window-body-noheader {
  border-top-width: 1px;
}
.window .panel-body-nobottom {
  border-bottom-width: 0;
}
.window .window-header .panel-icon,
.window .window-header .panel-tool {
  top: 50%;
  margin-top: -11px;
}
.window .window-header .panel-icon {
  left: 10px;
}
.window .window-header .panel-tool {
  right: 10px;
}
.window .window-header .panel-with-icon {
  padding-left: 18px;
}
.window-proxy {
  position: absolute;
  overflow: hidden;
}
.window-proxy-mask {
  position: absolute;
  filter: alpha(opacity=5);
  opacity: 0.05;
}
.window-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=40);
  opacity: 0.40;
  font-size: 1px;
  overflow: hidden;
}
.window,
.window-shadow {
  position: absolute;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.window-shadow {
  background: #ccc;
  -moz-box-shadow: 1px 1px 2px #cccccc;
  -webkit-box-shadow: 1px 1px 2px #cccccc;
  box-shadow: 1px 1px 2px #cccccc;
  filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
}
.window,
.window .window-body {
  border-color: #d7d7d7;
}
.window {
  background: #F4F5F9;
  /*background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
  background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
  background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
  background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 20%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);*/
}
.window-proxy {
  border: 1px dashed #95B8E7;
}
.window-proxy-mask,
.window-mask {
  background: #ccc;
}
.window .panel-footer {
  border: 1px solid #95B8E7;
  position: relative;
  top: -1px;
}
.dialog-content {
  overflow: auto;
}
.dialog-toolbar {
  padding: 2px 5px;
}
.dialog-tool-separator {
  float: left;
  height: 24px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #fff;
  margin: 2px 1px;
}
.dialog-button {
  padding: 5px;
  text-align: center;
}
.dialog-button .l-btn {
  margin-left: 5px;
}
.dialog-toolbar,
.dialog-button {
  background: #F4F4F4;
  border-width: 1px;
  border-style: solid;
}
.dialog-toolbar {
  border-color: #d7d7d7 #d7d7d7 #d7d7d7 #d7d7d7;
}
.dialog-button {
  border-color: #d7d7d7 #d7d7d7 #d7d7d7 #d7d7d7;
}
.l-btn {
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  padding: 1px 4px;
  cursor: pointer;
  outline: none;
  text-align: center;
  vertical-align: middle;
  line-height: normal;
}
.l-btn-plain {
  border-width: 0;
  padding: 1px;
}
.l-btn-left {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.l-btn-text {
  color: #fff;
  display: inline-block;
  vertical-align: top;
  width: auto;
  line-height: 24px;
  font-size: 14px;
  padding: 0;
  margin: 0 4px;
}
.l-btn-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  font-size: 1px;
}
.l-btn span span .l-btn-empty {
  display: inline-block;
  margin: 0;
  width: 16px;
  height: 24px;
  font-size: 1px;
  vertical-align: top;
}
.l-btn span .l-btn-icon-left {
  padding: 0 0 0 20px;
  background-position: left center;
}
.l-btn span .l-btn-icon-right {
  padding: 0 20px 0 0;
  background-position: right center;
}
.l-btn-icon-left .l-btn-text {
  margin: 0 4px 0 24px;
}
.l-btn-icon-left .l-btn-icon {
  left: 4px;
}
.l-btn-icon-right .l-btn-text {
  margin: 0 24px 0 4px;
}
.l-btn-icon-right .l-btn-icon {
  right: 4px;
}
.l-btn-icon-top .l-btn-text {
  margin: 20px 4px 0 4px;
}
.l-btn-icon-top .l-btn-icon {
  top: 4px;
  left: 50%;
  margin: 0 0 0 -8px;
}
.l-btn-icon-bottom .l-btn-text {
  margin: 0 4px 20px 4px;
}
.l-btn-icon-bottom .l-btn-icon {
  top: auto;
  bottom: 4px;
  left: 50%;
  margin: 0 0 0 -8px;
}
.l-btn-left .l-btn-empty {
  margin: 0 4px;
  width: 16px;
}
.l-btn-plain:hover {
  padding: 0;
}
.l-btn-focus {
  outline: #0000FF dotted thin;
}
.l-btn-large .l-btn-text {
  line-height: 40px;
}
.l-btn-large .l-btn-icon {
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-top: -16px;
}
.l-btn-large .l-btn-icon-left .l-btn-text {
  margin-left: 40px;
}
.l-btn-large .l-btn-icon-right .l-btn-text {
  margin-right: 40px;
}
.l-btn-large .l-btn-icon-top .l-btn-text {
  margin-top: 36px;
  line-height: 24px;
  min-width: 32px;
}
.l-btn-large .l-btn-icon-top .l-btn-icon {
  margin: 0 0 0 -16px;
}
.l-btn-large .l-btn-icon-bottom .l-btn-text {
  margin-bottom: 36px;
  line-height: 24px;
  min-width: 32px;
}
.l-btn-large .l-btn-icon-bottom .l-btn-icon {
  margin: 0 0 0 -16px;
}
.l-btn-large .l-btn-left .l-btn-empty {
  margin: 0 4px;
  width: 32px;
}
.l-btn {
  color: #fff;
  background: #46ABF9;
  background-repeat: repeat-x;
  border: 1px solid #46ABF9;
  /*background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0);*/
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
.messager-button .l-btn{
  background: #fff;
  border:1px solid #d7d7d7;
}
.messager-button .l-btn-text{
  color: #333;
}
.messager-button .l-btn:hover{
  color: #fff;
}
.messager-button .l-btn:hover .l-btn-text{
  color: #fff;
}
.l-btn:hover {
  background: #46ABF9;
  color: #fff;
  border: 1px solid #46ABF9;
  filter: none;
}
.l-btn-plain {
  background: transparent;
  border-width: 0;
  filter: none;
}
.l-btn-outline {
  border-width: 1px;
  border-color: #46ABF9;
  padding: 0;
}
.l-btn-plain:hover {
  background: #46ABF9;
  color: #fff;
  border: 1px solid #46ABF9;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.l-btn-disabled,
.l-btn-disabled:hover {
  opacity: 0.5;
  cursor: default;
  background: #bbb !important;
  color: #444;
  /*border:1px solid #a0a0a0;*/
  /*background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0);*/
}
.pagination .l-btn-disabled,
.pagination .l-btn-disabled:hover {
  opacity: 0.5;
  cursor: default;
  background: transparent !important;
  color: #444;
}
.l-btn-disabled .l-btn-text,
.l-btn-disabled .l-btn-icon {
  filter: alpha(opacity=50);
  color:#484848;
}
.l-btn-plain-disabled,
.l-btn-plain-disabled:hover {
  background: transparent;
  filter: alpha(opacity=50);
}
.l-btn-selected,
.l-btn-selected:hover {
  background: #ddd;
  filter: none;
}
.l-btn-plain-selected,
.l-btn-plain-selected:hover {
  background: #ddd;
}
.textbox {
  position: relative;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 28px !important;
}
.textbox .textbox-text {
  font-size: 14px;
  border: 0;
  margin: 0;
  padding: 4px;
  white-space: normal;
  vertical-align: top;
  outline-style: none;
  resize: none;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.textbox textarea.textbox-text {
  white-space: pre-wrap;
}
.textbox .textbox-prompt {
  font-size: 12px;
  color: #aaa;
}
.textbox .textbox-button,
.textbox .textbox-button:hover {
  position: absolute;
  top: 0;
  padding: 0;
  vertical-align: top;
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.textbox-button-right,
.textbox-button-right:hover {
  border-width: 0 0 0 1px;
}
.textbox-button-left,
.textbox-button-left:hover {
  border-width: 0 1px 0 0;
}
.textbox-addon {
  position: absolute;
  top: 0;
}
.textbox-icon {
  display: inline-block;
  width: 18px;
  height: 20px;
  overflow: hidden;
  vertical-align: top;
  background-position: center center;
  cursor: pointer;
  opacity: 0.6;
  filter: alpha(opacity=60);
  text-decoration: none;
  outline-style: none;
}
.textbox-icon-disabled,
.textbox-icon-readonly {
  cursor: default;
}
.textbox-icon:hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.textbox-icon-disabled:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.textbox-focused {
  -moz-box-shadow: 0 0 3px 0 #95B8E7;
  -webkit-box-shadow: 0 0 3px 0 #95B8E7;
  box-shadow: 0 0 3px 0 #95B8E7;
}
.textbox-invalid {
  border-color: #ffa8a8;
  background-color: #fff3f3;
}
.filebox .textbox-value {
  vertical-align: top;
  position: absolute;
  top: 0;
  left: -5000px;
}
.filebox-label {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  left: 0;
  top: 0;
  z-index: 10;
  background: url('images/blank.gif') no-repeat;
}
.l-btn-disabled .filebox-label {
  cursor: default;
}
.combo {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  overflow: hidden;
  vertical-align: middle;
}
.combo .combo-text {
  font-size: 12px;
  border: 0px;
  margin: 0;
  padding: 0px 2px;
  vertical-align: baseline;
}
.combo-arrow {
  width: 18px;
  height: 20px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.combo-arrow-hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.combo-panel {
  overflow: auto;
}
.combo-arrow {
  background: url('images/combo_arrow.png') no-repeat center center;
}
.combo-panel {
  background-color: #ffffff;
}
.combo {
  border-color: #d7d7d7;
  background-color: #fff;
}
.combo-arrow {
  background-color: #E0ECFF;
}
.combo-arrow-hover {
  background-color: #eaf2ff;
}
.combo-arrow:hover {
  background-color: #eaf2ff;
}
.combo .textbox-icon-disabled:hover {
  cursor: default;
}
.textbox-invalid {
  border-color: #ffa8a8;
  background-color: #fff3f3;
}
.combobox-item,
.combobox-group {
  font-size: 12px;
  padding: 3px;
  padding-right: 0px;
}
.combobox-item-disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.combobox-gitem {
  padding-left: 10px;
}
.combobox-group {
  font-weight: bold;
}
.combobox-item-hover {
  background-color: #eaf2ff;
  color: #000000;
}
.combobox-item-selected {
  background-color: #ffe48d;
  color: #000000;
}
.layout {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 0;
}
.layout-panel {
  position: absolute;
  overflow: hidden;
}
.layout-body {
  min-width: 1px;
  min-height: 1px;
}
.layout-panel-east,
.layout-panel-west {
  z-index: 2;
}
.layout-panel-north,
.layout-panel-south {
  z-index: 3;
}
.layout-expand {
  position: absolute;
  padding: 0px;
  font-size: 1px;
  cursor: pointer;
  z-index: 1;
}
.layout-expand .panel-header,
.layout-expand .panel-body {
  background: transparent;
  filter: none;
  overflow: hidden;
}
.layout-expand .panel-header {
  border-bottom-width: 0px;
}
.layout-split-proxy-h,
.layout-split-proxy-v {
  position: absolute;
  font-size: 1px;
  display: none;
  z-index: 5;
}
.layout-split-proxy-h {
  width: 5px;
  cursor: e-resize;
}
.layout-split-proxy-v {
  height: 5px;
  cursor: n-resize;
}
.layout-mask {
  position: absolute;
  background: #fafafa;
  filter: alpha(opacity=10);
  opacity: 0.10;
  z-index: 4;
}
.layout-button-up {
  background: url('images/layout_arrows.png') no-repeat -16px -16px;
}
.layout-button-down {
  background: url('images/layout_arrows.png') no-repeat -16px 0;
}
.layout-button-left {
  background: url('images/layout_arrows.png') no-repeat 0 0;
}
.layout-button-right {
  background: url('images/layout_arrows.png') no-repeat 0 -16px;
}
.layout-split-proxy-h,
.layout-split-proxy-v {
  background-color: #aac5e7;
}
.layout-split-north {
  border-bottom: 5px solid #E6EEF8;
}
.layout-split-south {
  border-top: 5px solid #E6EEF8;
}
.layout-split-east {
  border-left: 10px solid #fff;
}
.layout-split-west {
  border-right: 5px solid #E6EEF8;
}
.layout-expand {
  background-color: #E0ECFF;
}
.layout-expand-over {
  background-color: #E0ECFF;
}
.tabs-container {
  width:100% !important;
  overflow: hidden;
}
.tabs-header {
  border-width: 1px;
  border-style: solid;
  border-bottom-width: 0;
  position: relative;
  padding: 0;
  padding-top: 2px;
  overflow: hidden;
}
.tabs-scroller-left,
.tabs-scroller-right {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 18px;
  font-size: 1px;
  display: none;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
}
.tabs-scroller-left {
  left: 0;
}
.tabs-scroller-right {
  right: 0;
}
.tabs-tool {
  position: absolute;
  bottom: 0;
  padding: 1px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
}
.tabs-header-plain .tabs-tool {
  padding: 0 1px;
}
.tabs-wrap {
  position: relative;
  left: 0;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
.tabs-scrolling {
  margin-left: 18px;
  margin-right: 18px;
}
.tabs-disabled {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.tabs {
  list-style-type: none;
  height: 26px;
  margin: 0px;
  padding: 0px;
  padding-left: 4px;
  width: 50000px;
  border-style: solid;
  border-width: 0 0 1px 0;
}
.tabs li {
  float: left;
  display: inline-block;
  margin: 0 4px -1px 0;
  padding: 0;
  position: relative;
  border: 0;
}
.tabs li a.tabs-inner {
  display: inline-block;
  text-decoration: none;
  margin: 0;
  padding: 0 20px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  white-space: nowrap;
  border-width: 1px;
  border-style: solid;
  -moz-border-radius: 0;
  -webkit-border-radius:0;
  border-radius:0;
}
.tabs li.tabs-selected a.tabs-inner {
  font-weight: bold;
  outline: none;
}
.tabs li.tabs-selected a:hover.tabs-inner {
  cursor: default;
  pointer: default;
}
.tabs li a.tabs-close,
.tabs-p-tool {
  position: absolute;
  font-size: 1px;
  display: block;
  height: 12px;
  padding: 0;
  top: 50%;
  margin-top: -6px;
  overflow: hidden;
}
.tabs li a.tabs-close {
  width: 12px;
  right: 5px;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.tabs-p-tool {
  right: 16px;
}
.tabs-p-tool a {
  display: inline-block;
  font-size: 1px;
  width: 12px;
  height: 12px;
  margin: 0;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.tabs li a:hover.tabs-close,
.tabs-p-tool a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  cursor: hand;
  cursor: pointer;
}
.tabs-with-icon {
  padding-left: 18px;
}
.tabs-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 50%;
  margin-top: -8px;
}
.tabs-title {
  font-size: 14px;
}
.tabs-closable {
  padding-right: 8px;
}
.tabs-panels {
  margin: 0px;
  padding: 0px;
  border-width: 1px;
  border-style: solid;
  border-top-width: 0;
  overflow: hidden;
}
.tabs-header-bottom {
  border-width: 0 1px 1px 1px;
  padding: 0 0 2px 0;
}
.tabs-header-bottom .tabs {
  border-width: 1px 0 0 0;
}
.tabs-header-bottom .tabs li {
  margin: -1px 4px 0 0;
}
.tabs-header-bottom .tabs li a.tabs-inner {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tabs-header-bottom .tabs-tool {
  top: 0;
}
.tabs-header-bottom .tabs-scroller-left,
.tabs-header-bottom .tabs-scroller-right {
  top: 0;
  bottom: auto;
}
.tabs-panels-top {
  border-width: 1px 1px 0 1px;
}
.tabs-header-left {
  float: left;
  border-width: 1px 0 1px 1px;
  padding: 0;
}
.tabs-header-right {
  float: right;
  border-width: 1px 1px 1px 0;
  padding: 0;
}
.tabs-header-left .tabs-wrap,
.tabs-header-right .tabs-wrap {
  height: 100%;
}
.tabs-header-left .tabs {
  height: 100%;
  padding: 4px 0 0 2px;
  border-width: 0 1px 0 0;
}
.tabs-header-right .tabs {
  height: 100%;
  padding: 4px 2px 0 0;
  border-width: 0 0 0 1px;
}
.tabs-header-left .tabs li,
.tabs-header-right .tabs li {
  display: block;
  width: 100%;
  position: relative;
}
.tabs-header-left .tabs li {
  left: auto;
  right: 0;
  margin: 0 -1px 4px 0;
  float: right;
}
.tabs-header-right .tabs li {
  left: 0;
  right: auto;
  margin: 0 0 4px -1px;
  float: left;
}
.tabs-justified li a.tabs-inner {
  padding-left: 0;
  padding-right: 0;
}
.tabs-header-left .tabs li a.tabs-inner {
  display: block;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  -moz-border-radius: 0;
  -webkit-border-radius:0;
  border-radius:0;
}
.tabs-header-right .tabs li a.tabs-inner {
  display: block;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tabs-panels-right {
  float: right;
  border-width: 1px 1px 1px 0;
}
.tabs-panels-left {
  float: left;
  border-width: 1px 0 1px 1px;
}
.tabs-header-noborder,
.tabs-panels-noborder {
  border: 0px;
}
.tabs-header-plain {
  border: 0px;
  background: transparent;
}
.tabs-pill {
  padding-bottom: 3px;
}
.tabs-header-bottom .tabs-pill {
  padding-top: 3px;
  padding-bottom: 0;
}
.tabs-header-left .tabs-pill {
  padding-right: 3px;
}
.tabs-header-right .tabs-pill {
  padding-left: 3px;
}
.tabs-header .tabs-pill li a.tabs-inner {
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.tabs-header-narrow,
.tabs-header-narrow .tabs-narrow {
  padding: 0;
}
.tabs-narrow li,
.tabs-header-bottom .tabs-narrow li {
  margin-left: 0;
  margin-right: -1px;
}
.tabs-narrow li.tabs-last,
.tabs-header-bottom .tabs-narrow li.tabs-last {
  margin-right: 0;
}
.tabs-header-left .tabs-narrow,
.tabs-header-right .tabs-narrow {
  padding-top: 0;
}
.tabs-header-left .tabs-narrow li {
  margin-bottom: -1px;
  margin-right: -1px;
}
.tabs-header-left .tabs-narrow li.tabs-last,
.tabs-header-right .tabs-narrow li.tabs-last {
  margin-bottom: 0;
}
.tabs-header-right .tabs-narrow li {
  margin-bottom: -1px;
  margin-left: -1px;
}
.tabs-scroller-left {
  background: #fff url('images/tabs_icons.png') no-repeat 1px center;
}
.tabs-scroller-right {
  background: #fff url('images/tabs_icons.png') no-repeat -15px center;
}
.tabs li a.tabs-close {
  background: url('images/tabs_icons.png') no-repeat -34px center;
}
.tabs li a.tabs-inner:hover {
  background: #fff;
  color: #333;
  /*font-weight: bold;*/
  /*border-top: 2px solid #2186D4;*/
  filter: none;
}
.tabs li.tabs-selected a.tabs-inner {
  background: #ffffff;
  color: #333;
  font-weight: bold;
  /*background: -webkit-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
  background: -moz-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
  background: -o-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
  background: linear-gradient(to bottom,#EFF5FF 0,#ffffff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=0);*/
}
.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
  /*background: -webkit-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
  background: -moz-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
  background: -o-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
  background: linear-gradient(to bottom,#ffffff 0,#EFF5FF 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=0);*/
}
.tabs-header-left .tabs li.tabs-selected a.tabs-inner {
  /*background: -webkit-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
  background: -moz-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
  background: -o-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
  background: linear-gradient(to right,#EFF5FF 0,#ffffff 100%);
  background-repeat: repeat-y;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=1);*/
}
.tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  /*background: -webkit-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
  background: -moz-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
  background: -o-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
  background: linear-gradient(to right,#ffffff 0,#EFF5FF 100%);
  background-repeat: repeat-y;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=1);*/
}
.tabs li a.tabs-inner {
  color: #333;
  background: #fff;
  /*background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);*/
}
.tabs-header,
.tabs-tool {
  background-color: #fff;
}
.tabs-header-plain {
  background: transparent;
}
.tabs-header,
.tabs-scroller-left,
.tabs-scroller-right,
.tabs-tool,
.tabs,
.tabs-panels,
.tabs li a.tabs-inner,
.tabs li.tabs-selected a.tabs-inner,
.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner,
.tabs-header-left .tabs li.tabs-selected a.tabs-inner,
.tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  border-color: #d7d7d7;
}
.tabs-panels{
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.tabs-p-tool a:hover,
.tabs li a:hover.tabs-close,
.tabs-scroller-over {
  background-color: #eaf2ff;
}
.tabs li.tabs-selected a.tabs-inner {
  border-bottom: 1px solid #ffffff;
  border-top: 2px solid #2186D4;
}
.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
  border-top: 1px solid #ffffff;
}
.tabs-header-left .tabs li.tabs-selected a.tabs-inner {
  border-right: 1px solid #ffffff;
}
.tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  border-left: 1px solid #ffffff;
}
.tabs-header .tabs-pill li.tabs-selected a.tabs-inner {
  background: #fff;
  color: #333;
  filter: none;
  border-color: #d7d7d7;
}
.datagrid .panel-body {
  overflow: hidden;
  position: relative;
}
.datagrid-view {
  position: relative;
  overflow: hidden;
}
.datagrid-view1,
.datagrid-view2 {
  position: absolute;
  overflow: hidden;
  top: 0;
}
.datagrid-view1 {
  left: 0;
}
.datagrid-view2 {
  right: 0;
}
.datagrid-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  filter: alpha(opacity=30);
  display: none;
}
.datagrid-mask-msg {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  padding: 10px 5px 10px 30px;
  width: auto;
  height: 16px;
  border-width: 2px;
  border-style: solid;
  display: none;
}
.datagrid-sort-icon {
  padding: 0;
  display: none;
}
.datagrid-toolbar {
  height: auto;
  padding: 1px 2px;
  border-width: 0 0 1px 0;
  border-style: solid;
}
.datagrid-btn-separator {
  float: left;
  height: 24px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #fff;
  margin: 2px 1px;
}
.datagrid .datagrid-pager {
  display: block;
  margin: 0;
  border-width: 1px 0 0 0;
  border-style: solid;
}
.datagrid .datagrid-pager-top {
  border-width: 0 0 1px 0;
}
.datagrid-header {
  overflow: hidden;
  cursor: default;
  border-width: 0 0 1px 0;
  border-style: solid;
}
.datagrid-header-inner {
  float: left;
  width: 10000px;
}
.datagrid-header-row,
.datagrid-row {
  height: 35px;
}


.datagrid-header td,
.datagrid-body td,
.datagrid-footer td {
  border-width: 0 1px 1px 0;
  border-style: solid;
  margin: 0;
  padding: 0;
}
.datagrid-cell,
.datagrid-cell-group,
.datagrid-header-rownumber,
.datagrid-cell-rownumber {
  margin: 0;
  padding: 0 4px;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  height: 18px;
  line-height: 18px;
  font-size: 14px;
}
.datagrid-header .datagrid-cell {
  height: auto;
}
.datagrid-header .datagrid-cell span {
  font-size: 14px;
}
.datagrid-cell-group {
  text-align: center;
  text-overflow: ellipsis;
}
.datagrid-header-rownumber,
.datagrid-cell-rownumber {
  width: 30px;
  text-align: center;
  margin: 0;
  padding: 0;
}
.datagrid-body {
  margin: 0;
  padding: 0;
  overflow: auto;
  zoom: 1;
}
.datagrid-view1 .datagrid-body-inner {
  padding-bottom: 20px;
}
.datagrid-view1 .datagrid-body {
  overflow: hidden;
}
.datagrid-footer {
  overflow: hidden;
}
.datagrid-footer-inner {
  border-width: 1px 0 0 0;
  border-style: solid;
  width: 10000px;
  float: left;
}
.datagrid-row-editing .datagrid-cell {
  height: auto;
}
.datagrid-header-check,
.datagrid-cell-check {
  padding: 0;
  width: 27px;
  height: 18px;
  font-size: 1px;
  text-align: center;
  overflow: hidden;
}
.datagrid-header-check input,
.datagrid-cell-check input {
  margin: 0;
  padding: 0;
  width: 15px;
  height: 18px;
}
.datagrid-resize-proxy {
  position: absolute;
  width: 1px;
  height: 10000px;
  top: 0;
  cursor: e-resize;
  display: none;
}
.datagrid-body .datagrid-editable {
  margin: 0;
  padding: 0;
}
.datagrid-body .datagrid-editable table {
  width: 100%;
  height: 100%;
}
.datagrid-body .datagrid-editable td {
  border: 0;
  margin: 0;
  padding: 0;
}
.datagrid-view .datagrid-editable-input {
  margin: 0;
  padding: 2px 4px;
  border: 1px solid #95B8E7;
  font-size: 12px;
  outline-style: none;
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.datagrid-sort-desc .datagrid-sort-icon {
  display: inline;
  padding: 0 13px 0 0;
  background: url('images/datagrid_icons.png') no-repeat -16px center;
}
.datagrid-sort-asc .datagrid-sort-icon {
  display: inline;
  padding: 0 13px 0 0;
  background: url('images/datagrid_icons.png') no-repeat 0px center;
}
.datagrid-row-collapse {
  background: url('images/datagrid_icons.png') no-repeat -48px center;
}
.datagrid-row-expand {
  background: url('images/datagrid_icons.png') no-repeat -32px center;
}
.datagrid-mask-msg {
  background: #ffffff url('images/loading.gif') no-repeat scroll 5px center;
}
.datagrid-header,
.datagrid-td-rownumber {
  background: #F0F1F6;
  /*background: -webkit-linear-gradient(top,#F9F9F9 0,#efefef 100%);
  background: -moz-linear-gradient(top,#F9F9F9 0,#efefef 100%);
  background: -o-linear-gradient(top,#F9F9F9 0,#efefef 100%);
  background: linear-gradient(to bottom,#F9F9F9 0,#efefef 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F9F9F9,endColorstr=#efefef,GradientType=0);*/
}
.datagrid-cell-rownumber {
  color: #000000;
}
.datagrid-resize-proxy {
  background: #aac5e7;
}
.datagrid-mask {
  background: #ccc;
}
.datagrid-mask-msg {
  border-color: #95B8E7;
}
.datagrid-toolbar,
.datagrid-pager {
  background: #F4F4F4;
}
.datagrid-header,
.datagrid-toolbar,
.datagrid-pager,
.datagrid-footer-inner {
  border-color: #d7d7d7;
}
.datagrid-header td,
.datagrid-body td,
.datagrid-footer td {
  border-color: #d7d7d7;
}
.datagrid-htable,
.datagrid-btable,
.datagrid-ftable {
  color: #333;
  border-collapse: separate;
}
.datagrid-row-alt {
  background: #F7F8FA;
}
.datagrid-row-over,
.datagrid-header td.datagrid-header-over {
  background: #eaf2ff;
  color: #000000;
  cursor: default;
}
.datagrid-row-selected {
  background: #ffe48d;
  color: #000000;
}
.datagrid-row-editing .textbox,
.datagrid-row-editing .textbox-text {
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.propertygrid .datagrid-view1 .datagrid-body td {
  padding-bottom: 1px;
  border-width: 0 1px 0 0;
}
.propertygrid .datagrid-group {
  height: 21px;
  overflow: hidden;
  border-width: 0 0 1px 0;
  border-style: solid;
}
.propertygrid .datagrid-group span {
  font-weight: bold;
}
.propertygrid .datagrid-view1 .datagrid-body td {
  border-color: #dddddd;
}
.propertygrid .datagrid-view1 .datagrid-group {
  border-color: #E0ECFF;
}
.propertygrid .datagrid-view2 .datagrid-group {
  border-color: #dddddd;
}
.propertygrid .datagrid-group,
.propertygrid .datagrid-view1 .datagrid-body,
.propertygrid .datagrid-view1 .datagrid-row-over,
.propertygrid .datagrid-view1 .datagrid-row-selected {
  background: #E0ECFF;
}
.datalist .datagrid-header {
  border-width: 0;
}
.datalist .datagrid-group,
.m-list .m-list-group {
  height: 25px;
  line-height: 25px;
  font-weight: bold;
  overflow: hidden;
  background-color: #efefef;
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #ccc;
}
.datalist .datagrid-group-expander {
  display: none;
}
.datalist .datagrid-group-title {
  padding: 0 4px;
}
.datalist .datagrid-btable {
  width: 100%;
  table-layout: fixed;
}
.datalist .datagrid-row td {
  border-style: solid;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-width: 0;
}
.datalist-lines .datagrid-row td {
  border-bottom-width: 1px;
}
.datalist .datagrid-cell,
.m-list li {
  width: auto;
  height: auto;
  padding: 2px 4px;
  line-height: 18px;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.datalist-link,
.m-list li>a {
  display: block;
  position: relative;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
  overflow: hidden;
  margin: -2px -4px;
  padding: 2px 4px;
  padding-right: 16px;
  line-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.datalist-link::after,
.m-list li>a::after {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  content: '';
  right: 6px;
  top: 50%;
  margin-top: -4px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.m-list li {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: #ccc;
}
.m-list li>a:hover {
  background: #eaf2ff;
  color: #000000;
}
.m-list .m-list-group {
  padding: 0 4px;
}
.pagination {
  zoom: 1;
}
.pagination table {
  float: left;
  height: 30px;
}
.pagination td {
  border: 0;
}
.pagination-btn-separator {
  float: left;
  height: 24px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #fff;
  margin: 3px 1px;
}
.pagination .pagination-num {
  border-width: 1px;
  border-style: solid;
  margin: 0 2px;
  padding: 2px;
  width: 2em;
  height: auto;
}
.pagination-page-list {
  margin: 0px 6px;
  padding: 1px 2px;
  width: auto;
  height: auto;
  border-width: 1px;
  border-style: solid;
}
.pagination-info {
  float: right;
  margin: 0 6px 0 0;
  padding: 0;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
}
.pagination span {
  font-size: 12px;
}
.pagination-link .l-btn-text {
  width: 24px;
  text-align: center;
  margin: 0;
}
.pagination-first {
  background: url('images/pagination_icons.png') no-repeat 0 center;
}
.pagination-prev {
  background: url('images/pagination_icons.png') no-repeat -16px center;
}
.pagination-next {
  background: url('images/pagination_icons.png') no-repeat -32px center;
}
.pagination-last {
  background: url('images/pagination_icons.png') no-repeat -48px center;
}
.pagination-load {
  background: url('images/pagination_icons.png') no-repeat -64px center;
}
.pagination-loading {
  background: url('images/loading.gif') no-repeat center center;
}
.pagination-page-list,
.pagination .pagination-num {
  border-color: #95B8E7;
}
.calendar {
  border-width: 1px;
  border-style: solid;
  padding: 1px;
  overflow: hidden;
}
.calendar table {
  table-layout: fixed;
  border-collapse: separate;
  font-size: 12px;
  width: 100%;
  height: 100%;
}
.calendar table td,
.calendar table th {
  font-size: 12px;
}
.calendar-noborder {
  border: 0;
}
.calendar-header {
  position: relative;
  height: 22px;
}
.calendar-title {
  text-align: center;
  height: 22px;
}
.calendar-title span {
  position: relative;
  display: inline-block;
  top: 2px;
  padding: 0 3px;
  height: 18px;
  line-height: 18px;
  font-size: 12px;
  cursor: pointer;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.calendar-prevmonth,
.calendar-nextmonth,
.calendar-prevyear,
.calendar-nextyear {
  position: absolute;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  font-size: 1px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.calendar-prevmonth {
  left: 20px;
  background: url('images/calendar_arrows.png') no-repeat -18px -2px;
}
.calendar-nextmonth {
  right: 20px;
  background: url('images/calendar_arrows.png') no-repeat -34px -2px;
}
.calendar-prevyear {
  left: 3px;
  background: url('images/calendar_arrows.png') no-repeat -1px -2px;
}
.calendar-nextyear {
  right: 3px;
  background: url('images/calendar_arrows.png') no-repeat -49px -2px;
}
.calendar-body {
  position: relative;
}
.calendar-body th,
.calendar-body td {
  text-align: center;
}
.calendar-day {
  border: 0;
  padding: 1px;
  cursor: pointer;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.calendar-other-month {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.calendar-disabled {
  opacity: 0.6;
  filter: alpha(opacity=60);
  cursor: default;
}
.calendar-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 150px;
  padding: 5px;
  font-size: 12px;
  display: none;
  overflow: hidden;
}
.calendar-menu-year-inner {
  text-align: center;
  padding-bottom: 5px;
}
.calendar-menu-year {
  width: 40px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  margin: 0;
  padding: 2px;
  font-weight: bold;
  font-size: 12px;
}
.calendar-menu-prev,
.calendar-menu-next {
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: top;
  cursor: pointer;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.calendar-menu-prev {
  margin-right: 10px;
  background: url('images/calendar_arrows.png') no-repeat 2px 2px;
}
.calendar-menu-next {
  margin-left: 10px;
  background: url('images/calendar_arrows.png') no-repeat -45px 2px;
}
.calendar-menu-month {
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.calendar-body th,
.calendar-menu-month {
  color: #4d4d4d;
}
.calendar-day {
  color: #000000;
}
.calendar-sunday {
  color: #CC2222;
}
.calendar-saturday {
  color: #00ee00;
}
.calendar-today {
  color: #0000ff;
}
.calendar-menu-year {
  border-color: #95B8E7;
}
.calendar {
  border-color: #95B8E7;
}
.calendar-header {
  background: #E0ECFF;
}
.calendar-body,
.calendar-menu {
  background: #ffffff;
}
.calendar-body th {
  background: #F4F4F4;
  padding: 2px 0;
}
.calendar-hover,
.calendar-nav-hover,
.calendar-menu-hover {
  background-color: #eaf2ff;
  color: #000000;
}
.calendar-hover {
  border: 1px solid #b7d2ff;
  padding: 0;
}
.calendar-selected {
  background-color: #ffe48d;
  color: #000000;
  border: 1px solid #ffab3f;
  padding: 0;
}
.datebox-calendar-inner {
  height: 180px;
}
.datebox-button {
  height: 18px;
  padding: 2px 5px;
  text-align: center;
}
.datebox-button a {
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.datebox-button a:hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.datebox-current,
.datebox-close {
  float: left;
}
.datebox-close {
  float: right;
}
.datebox .combo-arrow {
  background-image: url('images/datebox_arrow.png');
  background-position: center center;
}
.datebox-button {
  background-color: #F4F4F4;
}
.datebox-button a {
  color: #444;
}
.numberbox {
  border: 1px solid #95B8E7;
  margin: 0;
  padding: 0 2px;
  vertical-align: middle;
}
.textbox {
  padding: 0;
}
.spinner {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  overflow: hidden;
  vertical-align: middle;
}
.spinner .spinner-text {
  font-size: 12px;
  border: 0px;
  margin: 0;
  padding: 0 2px;
  vertical-align: baseline;
}
.spinner-arrow {
  background-color: #E0ECFF;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin: 0;
  padding: 0;
  opacity: 1.0;
  filter: alpha(opacity=100);
  width: 18px;
}
.spinner-arrow-up,
.spinner-arrow-down {
  opacity: 0.6;
  filter: alpha(opacity=60);
  display: block;
  font-size: 1px;
  width: 18px;
  height: 10px;
  width: 100%;
  height: 50%;
  color: #444;
  outline-style: none;
}
.spinner-arrow-hover {
  background-color: #eaf2ff;
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.spinner-arrow-up:hover,
.spinner-arrow-down:hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
  background-color: #eaf2ff;
}
.textbox-icon-disabled .spinner-arrow-up:hover,
.textbox-icon-disabled .spinner-arrow-down:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  background-color: #E0ECFF;
  cursor: default;
}
.spinner .textbox-icon-disabled {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.spinner-arrow-up {
  background: url('images/spinner_arrows.png') no-repeat 1px center;
}
.spinner-arrow-down {
  background: url('images/spinner_arrows.png') no-repeat -15px center;
}
.spinner {
  border-color: #95B8E7;
}
.progressbar {
  border-width: 1px;
  border-style: solid;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  overflow: hidden;
  position: relative;
}
.progressbar-text {
  text-align: center;
  position: absolute;
}
.progressbar-value {
  position: relative;
  overflow: hidden;
  width: 0;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
  background: #46ABF9;
}
.progressbar {
  border-color: #95B8E7;
}
.progressbar-text {
  color: #333;
  font-size: 12px;
  z-index: 2;
}
.progressbar-value .progressbar-text {
  background-color: #46ABF9;
  color: #000000;
}
.searchbox {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  overflow: hidden;
  vertical-align: middle;
}
.searchbox .searchbox-text {
  font-size: 12px;
  border: 0;
  margin: 0;
  padding: 0 2px;
  vertical-align: top;
}
.searchbox .searchbox-prompt {
  font-size: 12px;
  color: #ccc;
}
.searchbox-button {
  width: 18px;
  height: 20px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.searchbox-button-hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.searchbox .l-btn-plain {
  border: 0;
  padding: 0;
  vertical-align: top;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.searchbox .l-btn-plain:hover {
  border: 0;
  padding: 0;
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.searchbox a.m-btn-plain-active {
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.searchbox .m-btn-active {
  border-width: 0 1px 0 0;
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
.searchbox .textbox-button-right {
  border-width: 0 0 0 1px;
}
.searchbox .textbox-button-left {
  border-width: 0 1px 0 0;
}
.searchbox-button {
  background: url('images/searchbox_button.png') no-repeat center center;
}
.searchbox {
  border-color: #95B8E7;
  background-color: #fff;
}
.searchbox .l-btn-plain {
  background: #E0ECFF;
}
.searchbox .l-btn-plain-disabled,
.searchbox .l-btn-plain-disabled:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.textbox-invalid {
  border-color: #F19049;
  background-color: #fff3f3;
}
.slider-disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.slider-h {
  height: 22px;
}
.slider-v {
  width: 22px;
}
.slider-inner {
  position: relative;
  height: 6px;
  top: 7px;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
}
.slider-handle {
  position: absolute;
  display: block;
  outline: none;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  margin-left: -10px;
}
.slider-tip {
  position: absolute;
  display: inline-block;
  line-height: 12px;
  font-size: 12px;
  white-space: nowrap;
  top: -22px;
}
.slider-rule {
  position: relative;
  top: 15px;
}
.slider-rule span {
  position: absolute;
  display: inline-block;
  font-size: 0;
  height: 5px;
  border-width: 0 0 0 1px;
  border-style: solid;
}
.slider-rulelabel {
  position: relative;
  top: 20px;
}
.slider-rulelabel span {
  position: absolute;
  display: inline-block;
  font-size: 12px;
}
.slider-v .slider-inner {
  width: 6px;
  left: 7px;
  top: 0;
  float: left;
}
.slider-v .slider-handle {
  left: 50%;
  margin-top: -10px;
}
.slider-v .slider-tip {
  left: -10px;
  margin-top: -6px;
}
.slider-v .slider-rule {
  float: left;
  top: 0;
  left: 16px;
}
.slider-v .slider-rule span {
  width: 5px;
  height: 'auto';
  border-left: 0;
  border-width: 1px 0 0 0;
  border-style: solid;
}
.slider-v .slider-rulelabel {
  float: left;
  top: 0;
  left: 23px;
}
.slider-handle {
  background: url('images/slider_handle.png') no-repeat;
}
.slider-inner {
  border-color: #95B8E7;
  background: #E0ECFF;
}
.slider-rule span {
  border-color: #95B8E7;
}
.slider-rulelabel span {
  color: #000000;
}
.menu {
  position: absolute;
  margin: 0;
  padding: 2px;
  border-width: 1px;
  border-style: solid;
  overflow: hidden;
}
.menu-inline {
  position: relative;
}
.menu-item {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
}
.menu-text {
  height: 20px;
  line-height: 20px;
  float: left;
  padding-left: 28px;
}
.menu-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 50%;
  margin-top: -8px;
}
.menu-rightarrow {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
.menu-line {
  position: absolute;
  left: 26px;
  top: 0;
  height: 2000px;
  font-size: 1px;
}
.menu-sep {
  margin: 3px 0px 3px 25px;
  font-size: 1px;
}
.menu-noline .menu-line {
  display: none;
}
.menu-noline .menu-sep {
  margin-left: 0;
  margin-right: 0;
}
.menu-active {
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.menu-item-disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
  cursor: default;
}
.menu-text,
.menu-text span {
  font-size: 12px;
}
.menu-shadow {
  position: absolute;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  background: #ccc;
  -moz-box-shadow: 2px 2px 3px #cccccc;
  -webkit-box-shadow: 2px 2px 3px #cccccc;
  box-shadow: 2px 2px 3px #cccccc;
  filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
}
.menu-rightarrow {
  background: url('images/menu_arrows.png') no-repeat -32px center;
}
.menu-line {
  border-left: 1px solid #ccc;
  border-right: 1px solid #fff;
}
.menu-sep {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #fff;
}
.menu {
  background-color: #fafafa;
  border-color: #ddd;
  color: #444;
}
.menu-content {
  background: #ffffff;
}
.menu-item {
  border-color: transparent;
  _border-color: #fafafa;
}
.menu-active {
  border-color: #b7d2ff;
  color: #000000;
  background: #eaf2ff;
}
.menu-active-disabled {
  border-color: transparent;
  background: transparent;
  color: #444;
}
.m-btn-downarrow,
.s-btn-downarrow {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  font-size: 1px;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
.m-btn-active,
.s-btn-active {
  background: #eaf2ff;
  color: #000000;
  border: 1px solid #b7d2ff;
  filter: none;
}
.m-btn-plain-active,
.s-btn-plain-active {
  background: transparent;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.m-btn .l-btn-left .l-btn-text {
  margin-right: 20px;
}
.m-btn .l-btn-icon-right .l-btn-text {
  margin-right: 40px;
}
.m-btn .l-btn-icon-right .l-btn-icon {
  right: 20px;
}
.m-btn .l-btn-icon-top .l-btn-text {
  margin-right: 4px;
  margin-bottom: 14px;
}
.m-btn .l-btn-icon-bottom .l-btn-text {
  margin-right: 4px;
  margin-bottom: 34px;
}
.m-btn .l-btn-icon-bottom .l-btn-icon {
  top: auto;
  bottom: 20px;
}
.m-btn .l-btn-icon-top .m-btn-downarrow,
.m-btn .l-btn-icon-bottom .m-btn-downarrow {
  top: auto;
  bottom: 0px;
  left: 50%;
  margin-left: -8px;
}
.m-btn-line {
  display: inline-block;
  position: absolute;
  font-size: 1px;
  display: none;
}
.m-btn .l-btn-left .m-btn-line {
  right: 0;
  width: 16px;
  height: 500px;
  border-style: solid;
  border-color: #aac5e7;
  border-width: 0 0 0 1px;
}
.m-btn .l-btn-icon-top .m-btn-line,
.m-btn .l-btn-icon-bottom .m-btn-line {
  left: 0;
  bottom: 0;
  width: 500px;
  height: 16px;
  border-width: 1px 0 0 0;
}
.m-btn-large .l-btn-icon-right .l-btn-text {
  margin-right: 56px;
}
.m-btn-large .l-btn-icon-bottom .l-btn-text {
  margin-bottom: 50px;
}
.m-btn-downarrow,
.s-btn-downarrow {
  background: url('images/menu_arrows.png') no-repeat 0 center;
}
.m-btn-plain-active,
.s-btn-plain-active {
  border-color: #b7d2ff;
  background-color: #eaf2ff;
  color: #000000;
}
.s-btn:hover .m-btn-line,
.s-btn-active .m-btn-line,
.s-btn-plain-active .m-btn-line {
  display: inline-block;
}
.l-btn:hover .s-btn-downarrow,
.s-btn-active .s-btn-downarrow,
.s-btn-plain-active .s-btn-downarrow {
  border-style: solid;
  border-color: #aac5e7;
  border-width: 0 0 0 1px;
}
.messager-body {
  padding: 10px;
  overflow: hidden;
}
.messager-button {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.messager-button .l-btn {
  width: 50px;
}
.messager-icon {
  float: left;
  width: 32px;
  height: 32px;
  margin: 0 10px 10px 0;
}
.messager-error {
  background: url('images/messager_icons.png') no-repeat scroll -64px 0;
}
.messager-info {
  background: url('images/messager_icons.png') no-repeat scroll 0 0;
}
.messager-question {
  background: url('images/messager_icons.png') no-repeat scroll -32px 0;
}
.messager-warning {
  background: url('images/messager_icons.png') no-repeat scroll -96px 0;
}
.messager-progress {
  padding: 10px;
}
.messager-p-msg {
  margin-bottom: 5px;
}
.messager-body .messager-input {
  width: 100%;
  padding: 1px 0;
  border: 1px solid #95B8E7;
}
.tree {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.tree li {
  white-space: nowrap;
}
.tree li ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.tree-node {
  height: 18px;
  white-space: nowrap;
  cursor: pointer;
  padding:5px 0;
}
.tree-hit {
  cursor: pointer;
}
.tree-expanded,
.tree-collapsed,
.tree-folder,
.tree-file,
.tree-checkbox,
.tree-indent {
  display: inline-block;
  width: 16px;
  height: 18px;
  vertical-align: top;
  overflow: hidden;
}
.tree-expanded {
  background: url('images/tree_icons.png') no-repeat -18px 0px;
}
.tree-expanded-hover {
  background: url('images/tree_icons.png') no-repeat -50px 0px;
}
.tree-collapsed {
  background: url('images/tree_icons.png') no-repeat 0px 0px;
}
.tree-collapsed-hover {
  background: url('images/tree_icons.png') no-repeat -32px 0px;
}
.tree-lines .tree-expanded,
.tree-lines .tree-root-first .tree-expanded {
  background: url('images/tree_icons.png') no-repeat -144px 0;
}
.tree-lines .tree-collapsed,
.tree-lines .tree-root-first .tree-collapsed {
  background: url('images/tree_icons.png') no-repeat -128px 0;
}
.tree-lines .tree-node-last .tree-expanded,
.tree-lines .tree-root-one .tree-expanded {
  background: url('images/tree_icons.png') no-repeat -80px 0;
}
.tree-lines .tree-node-last .tree-collapsed,
.tree-lines .tree-root-one .tree-collapsed {
  background: url('images/tree_icons.png') no-repeat -64px 0;
}
.tree-line {
  background: url('images/tree_icons.png') no-repeat -176px 0;
}
.tree-join {
  background: url('images/tree_icons.png') no-repeat -192px 0;
}
.tree-joinbottom {
  background: url('images/tree_icons.png') no-repeat -160px 0;
}
.tree-folder {
  background: url('images/tree_icons.png') no-repeat -208px 0;
}
.tree-folder-open {
  background: url('images/tree_icons.png') no-repeat -224px 0;
}
.tree-file {
  background: url('images/tree_icons.png') no-repeat -240px 0;
}
.tree-loading {
  background: url('images/loading.gif') no-repeat center center;
}
.tree-checkbox0 {
  background: url('images/tree_icons.png') no-repeat -208px -18px;
}
.tree-checkbox1 {
  background: url('images/tree_icons.png') no-repeat -224px -18px;
}
.tree-checkbox2 {
  background: url('images/tree_icons.png') no-repeat -240px -18px;
}
.tree-title {
  font-size: 13px;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  padding: 0 2px;
  height: 18px;
  line-height: 18px;
}
.tree-node-proxy {
  font-size: 12px;
  line-height: 20px;
  padding: 0 2px 0 20px;
  border-width: 1px;
  border-style: solid;
  z-index: 9900000;
}
.tree-dnd-icon {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 18px;
  left: 2px;
  top: 50%;
  margin-top: -9px;
}
.tree-dnd-yes {
  background: url('images/tree_icons.png') no-repeat -256px 0;
}
.tree-dnd-no {
  background: url('images/tree_icons.png') no-repeat -256px -18px;
}
.tree-node-top {
  border-top: 1px dotted red;
}
.tree-node-bottom {
  border-bottom: 1px dotted red;
}
.tree-node-append .tree-title {
  border: 1px dotted red;
}
.tree-editor {
  border: 1px solid #ccc;
  font-size: 13px;
  height: 14px !important;
  height: 18px;
  line-height: 14px;
  padding: 1px 2px;
  width: 80px;
  position: absolute;
  top: 0;
}
.tree-node-proxy {
  background-color: #ffffff;
  color: #333;
  border-color: #95B8E7;
}
.tree-node-hover {
  background: #eaf2ff;
  color: #333;
}
.tree-node-selected {
  background: #ffe48d;
  color: #333;
}
.tree-node-hidden {
  display: none;
}
.validatebox-invalid {
  border-color: #ffa8a8;
  background-color: #fff3f3;
  color: #000;
}
.tooltip {
  position: absolute;
  display: none;
  z-index: 9900000;
  outline: none;
  opacity: 1;
  filter: alpha(opacity=100);
  padding: 5px;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.tooltip-content {
  font-size: 12px;
}
.tooltip-arrow-outer,
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border-style: solid;
  border-width: 6px;
  border-color: transparent;
  _border-color: tomato;
  _filter: chroma(color=tomato);
}
.tooltip-right .tooltip-arrow-outer {
  left: 0;
  top: 50%;
  margin: -6px 0 0 -13px;
}
.tooltip-right .tooltip-arrow {
  left: 0;
  top: 50%;
  margin: -6px 0 0 -12px;
}
.tooltip-left .tooltip-arrow-outer {
  right: 0;
  top: 50%;
  margin: -6px -13px 0 0;
}
.tooltip-left .tooltip-arrow {
  right: 0;
  top: 50%;
  margin: -6px -12px 0 0;
}
.tooltip-top .tooltip-arrow-outer {
  bottom: 0;
  left: 50%;
  margin: 0 0 -13px -6px;
}
.tooltip-top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin: 0 0 -12px -6px;
}
.tooltip-bottom .tooltip-arrow-outer {
  top: 0;
  left: 50%;
  margin: -13px 0 0 -6px;
}
.tooltip-bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin: -12px 0 0 -6px;
}
.tooltip {
  background-color: #ffffff;
  border-color: #95B8E7;
  color: #000000;
}
.tooltip-right .tooltip-arrow-outer {
  border-right-color: #95B8E7;
}
.tooltip-right .tooltip-arrow {
  border-right-color: #ffffff;
}
.tooltip-left .tooltip-arrow-outer {
  border-left-color: #95B8E7;
}
.tooltip-left .tooltip-arrow {
  border-left-color: #ffffff;
}
.tooltip-top .tooltip-arrow-outer {
  border-top-color: #95B8E7;
}
.tooltip-top .tooltip-arrow {
  border-top-color: #ffffff;
}
.tooltip-bottom .tooltip-arrow-outer {
  border-bottom-color: #95B8E7;
}
.tooltip-bottom .tooltip-arrow {
  border-bottom-color: #ffffff;
}
.switchbutton {
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: #bbb;
  border: 1px solid #e7e7e7;
  -moz-border-radius: 24px 24px 24px 24px;
  -webkit-border-radius: 24px 24px 24px 24px;
  border-radius: 24px 24px 24px 24px;
}
.switchbutton-inner {
  display: inline-block;
  overflow: hidden;
  position: relative;
  top: -1px;
  left: -1px;
}
.switchbutton-on,
.switchbutton-off,
.switchbutton-handle {
  display: inline-block;
  text-align: center;
  height: 100%;
  float: left;
  font-size: 12px;
  -moz-border-radius: 24px 24px 24px 24px;
  -webkit-border-radius: 24px 24px 24px 24px;
  border-radius: 24px 24px 24px 24px;
}
.switchbutton-on {
  background: #3EACE1;
  color: #fff;


}
.switchbutton-off {
  background-color: #EBEBEB;
  color: #B7B7B7;
}
.switchbutton-on,
.switchbutton-reversed .switchbutton-off {
  -moz-border-radius: 24px 0 0 24px;
  -webkit-border-radius: 24px 0 0 24px;
  border-radius: 24px 0 0 24px;
}
.switchbutton-off,
.switchbutton-reversed .switchbutton-on {
  -moz-border-radius: 0 24px 24px 0;
  -webkit-border-radius: 0 24px 24px 0;
  border-radius: 0 24px 24px 0;
}
.switchbutton-handle {
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #e7e7e7;
  -moz-box-shadow: 0 0 3px 0 #bbb;
  -webkit-box-shadow: 0 0 3px 0 #bbb;
  box-shadow: 0 0 3px 0 #bbb;
}
.switchbutton-value {
  position: absolute;
  top: 0;
  left: -5000px;
}
.switchbutton-disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.switchbutton-disabled,
.switchbutton-readonly {
  cursor: default;
}






icon-h3c.css




/*增加*/
.h3c-icon-add{
background:url('icons-common/add.png') no-repeat center center;
}
.h3c-icon-addOpt{
background:url('icons-common/addOpt.png') no-repeat center center;
}
.h3c-icon-addOpt-hover{
background:url('icons-common/addOpt-hover.png') no-repeat center center;
}


/*查询*/
.h3c-icon-query{
background:url('icons-common/query.png') no-repeat center center;
}
.h3c-icon-queryOpt{
background:url('icons-common/queryOpt.png') no-repeat center center;
}
.h3c-icon-queryOpt-hover{
background:url('icons-common/queryOpt-hover.png') no-repeat center center;
}


/*导出*/
.h3c-icon-export{
background:url('icons-common/export.png') no-repeat center center;
}
.h3c-icon-exportOpt{
background:url('icons-common/exportOpt.png') no-repeat center center;
}
.h3c-icon-exportOpt-hover{
background:url('icons-common/exportOpt-hover.png') no-repeat center center;
}


/*导入*/
.h3c-icon-import{
background:url('icons-common/import.png') no-repeat center center;
}
.h3c-icon-importOpt{
background:url('icons-common/importOpt.png') no-repeat center center;
}
.h3c-icon-importOpt-hover{
background:url('icons-common/importOpt-hover.png') no-repeat center center;
}


/*返回*/
.h3c-icon-return{
background:url('icons-common/return.png') no-repeat center center;
}
.h3c-icon-returnOpt{
background:url('icons-common/returnOpt.png') no-repeat center center;
}
.h3c-icon-returnOpt-hover{
background:url('icons-common/returnOpt-hover.png') no-repeat center center;
}


/*清除*/
.h3c-icon-clear{
background:url('icons-common/clear.png') no-repeat center center;
}
.h3c-icon-clearOpt{
background:url('icons-common/clearOpt.png') no-repeat center center;
}
.h3c-icon-clearOpt-hover{
background:url('icons-common/clearOpt-hover.png') no-repeat center center;
}


/*删除*/
.h3c-icon-delete{
background:url('icons-common/delete.png') no-repeat center center;
}
.h3c-icon-deleteOpt{
background:url('icons-common/deleteOpt.png') no-repeat center center;
}
.h3c-icon-deleteOpt-hover{
background:url('icons-common/deleteOpt-hover.png') no-repeat center center;
}


/*确定*/
.h3c-icon-confirm{
background:url('icons-common/confirm.png') no-repeat center center;
}
.h3c-icon-confirmOpt{
background:url('icons-common/confirmOpt.png') no-repeat center center;
}
.h3c-icon-confirmOpt-hover{
background:url('icons-common/confirmOpt-hover.png') no-repeat center center;
}


/*取消*/
.h3c-icon-cancel{
background:url('icons-common/cancel.png') no-repeat center center;
}
.h3c-icon-cancelOpt{
background:url('icons-common/cancelOpt.png') no-repeat center center;
}
.h3c-icon-cancelOpt-hover{
background:url('icons-common/cancelOpt-hover.png') no-repeat center center;
}


/*批量删除*/
.h3c-icon-removeBatch{
background:url('icons-common/removeBatch.png') no-repeat center center;
}
.h3c-icon-removeBatchOpt{
background:url('icons-common/removeBatchOpt.png') no-repeat center center;
}
.h3c-icon-removeBatchOpt-hover{
background:url('icons-common/removeBatchOpt-hover.png') no-repeat center center;
}


/*测试*/
.h3c-icon-test{
background:url('icons-common/test.png') no-repeat center center;
}
.h3c-icon-testOpt{
background:url('icons-common/testOpt.png') no-repeat center center;
}
.h3c-icon-testOpt-hover{
background:url('icons-common/testOpt-hover.png') no-repeat center center;
}


/*停止*/
.h3c-icon-testStop{
background:url('icons-common/testStop.png') no-repeat center center;
}
.h3c-icon-testStopOpt{
background:url('icons-common/testStopOpt.png') no-repeat center center;
}
.h3c-icon-testStopOpt-hover{
background:url('icons-common/testStopOpt-hover.png') no-repeat center center;
}


/*分配*/
.h3c-icon-allot{
background:url('icons-common/allot.png') no-repeat center center;
}
.h3c-icon-allotOpt{
background:url('icons-common/allotOpt.png') no-repeat center center;
}
.h3c-icon-allotOpt-hover{
background:url('icons-common/allotOpt-hover.png') no-repeat center center;
}


/*刷新*/
.h3c-icon-reload{
background:url('icons-common/reload.png') no-repeat center center;
}
.h3c-icon-reloadOpt{
background:url('icons-common/reloadOpt.png') no-repeat center center;
}
.h3c-icon-reloadOpt-hover{
background:url('icons-common/reloadOpt-hover.png') no-repeat center center;
}


/*重置*/
.h3c-icon-reset{
background:url('icons-common/reset.png') no-repeat center center;
}
.h3c-icon-resetOpt{
background:url('icons-common/resetOpt.png') no-repeat center center;
}
.h3c-icon-resetOpt-hover{
background:url('icons-common/resetOpt-hover.png') no-repeat center center;
}


/*还原*/
.h3c-icon-restore{
background:url('icons-common/restore.png') no-repeat center center;
}
.h3c-icon-restoreOpt{
background:url('icons-common/restoreOpt.png') no-repeat center center;
}
.h3c-icon-restoreOpt-hover{
background:url('icons-common/restoreOpt-hover.png') no-repeat center center;
}


/*选择*/
.h3c-icon-choose{
background:url('icons-common/choose.png') no-repeat center center;
}
.h3c-icon-chooseOpt{
background:url('icons-common/chooseOpt.png') no-repeat center center;
}
.h3c-icon-chooseOpt-hover{
background:url('icons-common/chooseOpt-hover.png') no-repeat center center;
}


/*详情*/
.h3c-icon-detail{
background:url('icons-common/detail.png') no-repeat center center;
}
.h3c-icon-detailOpt{
background:url('icons-common/detailOpt.png') no-repeat center center;
}
.h3c-icon-detailOpt-hover{
background:url('icons-common/detailOpt-hover.png') no-repeat center center;
}


/*详情1*/
.h3c-icon-detail1{
background:url('icons-common/detail1.png') no-repeat center center;
}
.h3c-icon-detail1Opt{
background:url('icons-common/detail1Opt.png') no-repeat center center;
}
.h3c-icon-detail1Opt-hover{
background:url('icons-common/detail1Opt-hover.png') no-repeat center center;
}


/*详情2*/
.h3c-icon-detail2{
background:url('icons-common/detail2.png') no-repeat center center;
}
.h3c-icon-detail2Opt{
background:url('icons-common/detail2Opt.png') no-repeat center center;
}
.h3c-icon-detail2Opt-hover{
background:url('icons-common/detail2Opt-hover.png') no-repeat center center;
}


/*修改*/
.h3c-icon-edit{
background:url('icons-common/edit.png') no-repeat center center;
}
.h3c-icon-editOpt{
background:url('icons-common/editOpt.png') no-repeat center center;
}
.h3c-icon-editOpt-hover{
background:url('icons-common/editOpt-hover.png') no-repeat center center;
}


/*修改1*/
.h3c-icon-edit1{
background:url('icons-common/edit1.png') no-repeat center center;
}
.h3c-icon-edit1Opt{
background:url('icons-common/edit1Opt.png') no-repeat center center;
}
.h3c-icon-edit1Opt-hover{
background:url('icons-common/edit1Opt-hover.png') no-repeat center center;
}


/*修改2*/
.h3c-icon-edit2{
background:url('icons-common/edit2.png') no-repeat center center;
}
.h3c-icon-edit2Opt{
background:url('icons-common/edit2Opt.png') no-repeat center center;
}
.h3c-icon-edit2Opt-hover{
background:url('icons-common/edit2Opt-hover.png') no-repeat center center;
}


/*手动*/
.h3c-icon-manual{
background:url('icons-common/manual.png') no-repeat center center;
}
.h3c-icon-manualOpt{
background:url('icons-common/manualOpt.png') no-repeat center center;
}
.h3c-icon-manualOpt-hover{
background:url('icons-common/manualOpt-hover.png') no-repeat center center;
}


/*自动*/
.h3c-icon-auto{
background:url('icons-common/auto.png') no-repeat center center;
}
.h3c-icon-autoOpt{
background:url('icons-common/autoOpt.png') no-repeat center center;
}
.h3c-icon-autoOpt-hover{
background:url('icons-common/autoOpt-hover.png') no-repeat center center;
}


/*忽略/恢复*/
.h3c-icon-ignore{
background:url('icons-common/ignore.png') no-repeat center center;
}
.h3c-icon-ignoreOpt{
background:url('icons-common/ignoreOpt.png') no-repeat center center;
}
.h3c-icon-ignoreOpt-hover{
background:url('icons-common/ignoreOpt-hover.png') no-repeat center center;
}


/*更新*/
.h3c-icon-upload{
background:url('icons-common/upload.png') no-repeat center center;
}
.h3c-icon-uploadOpt{
background:url('icons-common/uploadOpt.png') no-repeat center center;
}
.h3c-icon-uploadOpt-hover{
background:url('icons-common/uploadOpt-hover.png') no-repeat center center;
}


/*下载*/
.h3c-icon-download{
background:url('icons-common/download.png') no-repeat center center;
}
.h3c-icon-downloadOpt{
background:url('icons-common/downloadOpt.png') no-repeat center center;
}
.h3c-icon-downloadOpt-hover{
background:url('icons-common/downloadOpt-hover.png') no-repeat center center;
}


/*向上(上一步)*/
.h3c-icon-up{
background:url('icons-common/up.png') no-repeat center center;
}
.h3c-icon-upOpt{
background:url('icons-common/upOpt.png') no-repeat center center;
}
.h3c-icon-upOpt-hover{
background:url('icons-common/upOpt-hover.png') no-repeat center center;
}


/*向下(下一步)*/
.h3c-icon-down{
background:url('icons-common/down.png') no-repeat center center;
}
.h3c-icon-downOpt{
background:url('icons-common/downOpt.png') no-repeat center center;
}
.h3c-icon-downOpt-hover{
background:url('icons-common/downOpt-hover.png') no-repeat center center;
}


/*向左(上一步)*/
.h3c-icon-left{
background:url('icons-common/left.png') no-repeat center center;
}
.h3c-icon-leftOpt{
background:url('icons-common/leftOpt.png') no-repeat center center;
}
.h3c-icon-leftOpt-hover{
background:url('icons-common/leftOpt-hover.png') no-repeat center center;
}


/*向右(上一步)*/
.h3c-icon-right{
background:url('icons-common/right.png') no-repeat center center;
}
.h3c-icon-rightOpt{
background:url('icons-common/rightOpt.png') no-repeat center center;
}
.h3c-icon-rightOpt-hover{
background:url('icons-common/rightOpt-hover.png') no-repeat center center;
}


/*对比*/
.h3c-icon-compare{
background:url('icons-common/compare.png') no-repeat center center;
}
.h3c-icon-compareOpt{
background:url('icons-common/compareOpt.png') no-repeat center center;
}
.h3c-icon-compareOpt-hover{
background:url('icons-common/compareOpt-hover.png') no-repeat center center;
}


/*配置*/
.h3c-icon-config{
background:url('icons-common/config.png') no-repeat center center;
}
.h3c-icon-configOpt{
background:url('icons-common/configOpt.png') no-repeat center center;
}
.h3c-icon-configOpt-hover{
background:url('icons-common/configOpt-hover.png') no-repeat center center;
}


/*帮助*/
.h3c-icon-help{
background:url('icons-common/help.png') no-repeat center center;
}
.h3c-icon-helpOpt{
background:url('icons-common/helpOpt.png') no-repeat center center;
}
.h3c-icon-helpOpt-hover{
background:url('icons-common/helpOpt-hover.png') no-repeat center center;
}


/*隐藏更多*/
.h3c-icon-hideMore{
background:url('icons-common/hideMore.png') no-repeat center center;
}
.h3c-icon-hideMoreOpt{
background:url('icons-common/hideMoreOpt.png') no-repeat center center;
}
.h3c-icon-hideMoreOpt-hover{
background:url('icons-common/hideMoreOpt-hover.png') no-repeat center center;
}


/*显示更多*/
.h3c-icon-spreadMore{
background:url('icons-common/spreadMore.png') no-repeat center center;
}
.h3c-icon-spreadMoreOpt{
background:url('icons-common/spreadMoreOpt.png') no-repeat center center;
}
.h3c-icon-spreadMoreOpt-hover{
background:url('icons-common/spreadMoreOpt-hover.png') no-repeat center center;
}


/*日志预览*/
.h3c-icon-log{
background:url('icons-common/log.png') no-repeat center center;
}
.h3c-icon-logOpt{
background:url('icons-common/logOpt.png') no-repeat center center;
}
.h3c-icon-logOpt-hover{
background:url('icons-common/logOpt-hover.png') no-repeat center center;
}


/*排序*/
.h3c-icon-order{
background:url('icons-common/order.png') no-repeat center center;
}
.h3c-icon-orderOpt{
background:url('icons-common/orderOpt.png') no-repeat center center;
}
.h3c-icon-orderOpt-hover{
background:url('icons-common/orderOpt-hover.png') no-repeat center center;
}


/*保存*/
.h3c-icon-save{
background:url('icons-common/save.png') no-repeat center center;
}
.h3c-icon-saveOpt{
background:url('icons-common/saveOpt.png') no-repeat center center;
}
.h3c-icon-saveOpt-hover{
background:url('icons-common/saveOpt-hover.png') no-repeat center center;
}


/*提示*/
.h3c-icon-tip{
background:url('icons-common/tip.png') no-repeat center center;
}
.h3c-icon-tipOpt{
background:url('icons-common/tipOpt.png') no-repeat center center;
}
.h3c-icon-tipOpt-hover{
background:url('icons-common/tipOpt-hover.png') no-repeat center center;
}


/*开始*/
.h3c-icon-begin{
background:url('icons-common/begin.png') no-repeat center center;
}
.h3c-icon-beginOpt{
background:url('icons-common/beginOpt.png') no-repeat center center;
}
.h3c-icon-beginOpt-hover{
background:url('icons-common/beginOpt-hover.png') no-repeat center center;
}


/*停止*/
.h3c-icon-stop{
background:url('icons-common/stop.png') no-repeat center center;
}
.h3c-icon-stopOpt{
background:url('icons-common/stopOpt.png') no-repeat center center;
}
.h3c-icon-stopOpt-hover{
background:url('icons-common/stopOpt-hover.png') no-repeat center center;
}


/*停止1*/
.h3c-icon-stop1{
background:url('icons-common/stop1.png') no-repeat center center;
}
.h3c-icon-stop1Opt{
background:url('icons-common/stop1Opt.png') no-repeat center center;
}
.h3c-icon-stop1Opt-hover{
background:url('icons-common/stop1Opt-hover.png') no-repeat center center;
}


/*复制*/
.h3c-icon-copy{
background:url('icons-common/copy.png') no-repeat center center;
}
.h3c-icon-copyOpt{
background:url('icons-common/copyOpt.png') no-repeat center center;
}
.h3c-icon-copyOpt-hover{
background:url('icons-common/copyOpt-hover.png') no-repeat center center;
}


/*修改密码*/
.h3c-icon-password{
background:url('icons-common/password.png') no-repeat center center;
}
.h3c-icon-passwordOpt{
background:url('icons-common/passwordOpt.png') no-repeat center center;
}
.h3c-icon-passwordOpt-hover{
background:url('icons-common/passwordOpt-hover.png') no-repeat center center;
}


/*全选*/
.h3c-icon-selAll{
background:url('icons-common/selAll.png') no-repeat center center;
}
.h3c-icon-selAllOpt{
background:url('icons-common/selAllOpt.png') no-repeat center center;
}
.h3c-icon-selAllOpt-hover{
background:url('icons-common/selAllOpt-hover.png') no-repeat center center;
}


/*查看视图*/
.h3c-icon-view{
background:url('icons-common/view.png') no-repeat center center;
}
.h3c-icon-viewOpt{
background:url('icons-common/viewOpt.png') no-repeat center center;
}
.h3c-icon-viewOpt-hover{
background:url('icons-common/viewOpt-hover.png') no-repeat center center;
}


/*报告配置*/
.h3c-icon-reportcfg{
background:url('icons-common/reportcfg.png') no-repeat center center;
}
.h3c-icon-reportcfgOpt{
background:url('icons-common/reportcfgOpt.png') no-repeat center center;
}
.h3c-icon-reportcfgOpt-hover{
background:url('icons-common/reportcfgOpt-hover.png') no-repeat center center;
}


/*生成报告*/
.h3c-icon-reportBuild{
background:url('icons-common/reportBuild.png') no-repeat center center;
}
.h3c-icon-reportBuildOpt{
background:url('icons-common/reportBuildOpt.png') no-repeat center center;
}
.h3c-icon-reportBuildOpt-hover{
background:url('icons-common/reportBuildOpt-hover.png') no-repeat center center;
}


/*查看报告*/
.h3c-icon-reportSee{
background:url('icons-common/reportSee.png') no-repeat center center;
}
.h3c-icon-reportSeeOpt{
background:url('icons-common/reportSeeOpt.png') no-repeat center center;
}
.h3c-icon-reportSeeOpt-hover{
background:url('icons-common/reportSeeOpt-hover.png') no-repeat center center;
}


/*时间设置*/
.h3c-icon-timeConfigure{
background:url('icons-common/timeConfigure.png') no-repeat center center;
}
.h3c-icon-timeConfigureOpt{
background:url('icons-common/timeConfigureOpt.png') no-repeat center center;
}
.h3c-icon-timeConfigureOpt-hover{
background:url('icons-common/timeConfigureOpt-hover.png') no-repeat center center;
}


/*邮件通知*/
.h3c-icon-eMail{
background:url('icons-common/eMail.png') no-repeat center center;
}
.h3c-icon-eMailOpt{
background:url('icons-common/eMailOpt.png') no-repeat center center;
}
.h3c-icon-eMailOpt-hover{
background:url('icons-common/eMailOpt-hover.png') no-repeat center center;
}


/*禁用*/
.h3c-icon-prohibit{
background:url('icons-common/prohibit.png') no-repeat center center;
}
.h3c-icon-prohibitOpt{
background:url('icons-common/prohibitOpt.png') no-repeat center center;
}
.h3c-icon-prohibitOpt-hover{
background:url('icons-common/prohibitOpt-hover.png') no-repeat center center;
}


/*启用*/
.h3c-icon-enable{
background:url('icons-common/enable.png') no-repeat center center;
}
.h3c-icon-enableOpt{
background:url('icons-common/enableOpt.png') no-repeat center center;
}
.h3c-icon-enableOpt-hover{
background:url('icons-common/enableOpt-hover.png') no-repeat center center;
}


/*生成容量报告*/
.h3c-icon-SCcapacityreport{
background:url('icons-common/SCcapacityreport.png') no-repeat center center;
}
.h3c-icon-SCcapacityreportOpt{
background:url('icons-common/SCcapacityreportOpt.png') no-repeat center center;
}
.h3c-icon-SCcapacityreportOpt-hover{
background:url('icons-common/SCcapacityreportOpt-hover.png') no-repeat center center;
}


/*处理结果/重新压缩*/
.h3c-icon-cxys{
background:url('icons-common/cxys.png') no-repeat center center;
}
.h3c-icon-cxysOpt{
background:url('icons-common/cxysOpt.png') no-repeat center center;
}
.h3c-icon-cxysOpt-hover{
background:url('icons-common/cxysOpt-hover.png') no-repeat center center;
}


/*批量回收*/
.h3c-icon-column{
background:url('icons-common/column.png') no-repeat center center;
}
.h3c-icon-columnOpt{
background:url('icons-common/columnOpt.png') no-repeat center center;
}
.h3c-icon-columnOpt-hover{
background:url('icons-common/columnOpt-hover.png') no-repeat center center;
}


/*绑定IP*/
.h3c-icon-bindIp{
background:url('icons-common/bindIp.png') no-repeat center center;
}
.h3c-icon-bindIpOpt{
background:url('icons-common/bindIpOpt.png') no-repeat center center;
}
.h3c-icon-bindIpOpt-hover{
background:url('icons-common/bindIpOpt-hover.png') no-repeat center center;
}


/*同步服务器*/
.h3c-icon-sync{
background:url('icons-common/sync.png') no-repeat center center;
}
.h3c-icon-syncOpt{
background:url('icons-common/syncOpt.png') no-repeat center center;
}
.h3c-icon-syncOpt-hover{
background:url('icons-common/syncOpt-hover.png') no-repeat center center;
}


/*更新到本地*/
.h3c-icon-update{
background:url('icons-common/update.png') no-repeat center center;
}
.h3c-icon-updateOpt{
background:url('icons-common/updateOpt.png') no-repeat center center;
}
.h3c-icon-updateOpt-hover{
background:url('icons-common/updateOpt-hover.png') no-repeat center center;
}


/*添加NAT设备(设备信息收集)*/
.h3c-icon-anaPart{
background:url('icons-common/anaPart.png') no-repeat center center;
}
.h3c-icon-anaPartOpt{
background:url('icons-common/anaPartOpt.png') no-repeat center center;
}
.h3c-icon-anaPartOpt-hover{
background:url('icons-common/anaPartOpt-hover.png') no-repeat center center;
}


/*设备型号收集*/
.h3c-icon-anaAll{
background:url('icons-common/anaAll.png') no-repeat center center;
}
.h3c-icon-anaAllOpt{
background:url('icons-common/anaAllOpt.png') no-repeat center center;
}
.h3c-icon-anaAllOpt-hover{
background:url('icons-common/anaAllOpt-hover.png') no-repeat center center;
}


/*采集原始数据*/
.h3c-icon-collectDown{
background:url('icons-common/collectDown.png') no-repeat center center;
}
.h3c-icon-collectDownOpt{
background:url('icons-common/collectDownOpt.png') no-repeat center center;
}
.h3c-icon-collectDownOpt-hover{
background:url('icons-common/collectDownOpt-hover.png') no-repeat center center;
}


/*告警确认*/
.h3c-icon-alarmHandle{
background:url('icons-common/alarmHandle.png') no-repeat center center;
}
.h3c-icon-alarmHandleOpt{
background:url('icons-common/alarmHandleOpt.png') no-repeat center center;
}
.h3c-icon-alarmHandleOpt-hover{
background:url('icons-common/alarmHandleOpt-hover.png') no-repeat center center;
}


/*告警忽略*/
.h3c-icon-alarmIgnore{
background:url('icons-common/alarmIgnore.png') no-repeat center center;
}
.h3c-icon-alarmIgnoreOpt{
background:url('icons-common/alarmIgnoreOpt.png') no-repeat center center;
}
.h3c-icon-alarmIgnoreOpt-hover{
background:url('icons-common/alarmIgnoreOpt-hover.png') no-repeat center center;
}


/*分析上传文件*/
.h3c-icon-anaFile{
background:url('icons-common/anaFile.png') no-repeat center center;
}
.h3c-icon-anaFileOpt{
background:url('icons-common/anaFileOpt.png') no-repeat center center;
}
.h3c-icon-anaFileOpt-hover{
background:url('icons-common/anaFileOpt-hover.png') no-repeat center center;
}


/*JVM内存使用情况*/
.h3c-icon-memoryUse{
background:url('icons-common/memoryUse.png') no-repeat center center;
}
.h3c-icon-memoryUseOpt{
background:url('icons-common/memoryUseOpt.png') no-repeat center center;
}
.h3c-icon-memoryUseOpt-hover{
background:url('icons-common/memoryUseOpt-hover.png') no-repeat center center;
}


/*转移*/
.h3c-icon-move{
background:url('icons-common/move.png') no-repeat center center;
}
.h3c-icon-moveOpt{
background:url('icons-common/moveOpt.png') no-repeat center center;
}
.h3c-icon-moveOpt-hover{
background:url('icons-common/moveOpt-hover.png') no-repeat center center;
}


/*审计*/
.h3c-icon-gateway{
background:url('icons-common/gateway.png') no-repeat center center;
}
.h3c-icon-gatewayOpt{
background:url('icons-common/gatewayOpt.png') no-repeat center center;
}
.h3c-icon-gatewayOpt-hover{
background:url('icons-common/gatewayOpt-hover.png') no-repeat center center;
}


/*流量重置*/
.h3c-icon-stopSynch{
background:url('icons-common/stopSynch.png') no-repeat center center;
}
.h3c-icon-stopSynchOpt{
background:url('icons-common/stopSynchOpt.png') no-repeat center center;
}
.h3c-icon-stopSynchOpt-hover{
background:url('icons-common/stopSynchOpt-hover.png') no-repeat center center;
}


/*连接*/
.h3c-icon-link{
background:url('icons-common/link.png') no-repeat center center;
}
.h3c-icon-linkOpt{
background:url('icons-common/linkOpt.png') no-repeat center center;
}
.h3c-icon-linkOpt-hover{
background:url('icons-common/linkOpt-hover.png') no-repeat center center;
}


/*导出云图*/
.h3c-icon-exportEquitment{
background:url('icons-common/exportEquitment.png') no-repeat center center;
}


/*回收*/
.h3c-icon-recover{
background:url('icons-common/recover.png') no-repeat center center;
}
.h3c-icon-recoverOpt{
background:url('icons-common/recoverOpt.png') no-repeat center center;
}
.h3c-icon-recoverOpt-hover{
background:url('icons-common/recoverOpt-hover.png') no-repeat center center;
}


/*提示信息*/
.h3c-icon-tipMes{
background:url('icons-common/tipMes.png') no-repeat center center;
}


/*高级查询蓝色*/
.h3c-icon-arrows_downBlue{
background:url('icons-common/down_blue.png') no-repeat center center;
}
.h3c-icon-arrows_upBlue{
background:url('icons-common/up_blue.png') no-repeat center center;
}


/*高级查询灰色*/
.h3c-icon-arrows_downGray{
background:url('icons-common/down_gray.png') no-repeat center center;
}
.h3c-icon-arrows_upGray{
background:url('icons-common/up_gray.png') no-repeat center center;
}


/*状态禁用*/
.h3c-icon-disable{
background:url('icons-common/rule_state-critical.png') no-repeat center center;
}
/*状态正常*/
.h3c-icon-state-normal{
background:url('icons-common/state-normal.png') no-repeat center center;
}


/*打开*/
.h3c-icon-open{
background:url('icons-common/open.png') no-repeat center center;
}
/*关闭*/
.h3c-icon-close{
background:url('icons-common/close.png') no-repeat center center;
}
/*注册按钮*/
.h3c-icon-regist{
background:url('icons-common/regist.png') no-repeat center center;
}
/*导出*/
.h3c-icon-exporttOpt{
background:url('icons-common/exporttOpt.png') no-repeat center center;
}






icon.css




.icon-blank{
background:url('icons/blank.gif') no-repeat center center;
}
.icon-add{
background:url('icons/edit_add.png') no-repeat center center;
}
.icon-edit{
background:url('icons/pencil.png') no-repeat center center;
}
.icon-clear{
background:url('icons/clear.png') no-repeat center center;
}
.icon-remove{
background:url('icons/edit_remove.png') no-repeat center center;
}
.icon-save{
background:url('icons/filesave.png') no-repeat center center;
}
.icon-cut{
background:url('icons/cut.png') no-repeat center center;
}
.icon-ok{
background:url('icons/ok.png') no-repeat center center;
}
.icon-no{
background:url('icons/no.png') no-repeat center center;
}
.icon-cancel{
background:url('icons/cancel.png') no-repeat center center;
}
.icon-reload{
background:url('icons/reload.png') no-repeat center center;
}
.icon-search{
background:url('icons/search.png') no-repeat center center;
}
.icon-print{
background:url('icons/print.png') no-repeat center center;
}
.icon-help{
background:url('icons/help.png') no-repeat center center;
}
.icon-undo{
background:url('icons/undo.png') no-repeat center center;
}
.icon-redo{
background:url('icons/redo.png') no-repeat center center;
}
.icon-back{
background:url('icons/back.png') no-repeat center center;
}
.icon-sum{
background:url('icons/sum.png') no-repeat center center;
}
.icon-tip{
background:url('icons/tip.png') no-repeat center center;
}
.icon-filter{
background:url('icons/filter.png') no-repeat center center;
}
.icon-man{
background:url('icons/man.png') no-repeat center center;
}
.icon-lock{
background:url('icons/lock.png') no-repeat center center;
}
.icon-more{
background:url('icons/more.png') no-repeat center center;
}




.icon-mini-add{
background:url('icons/mini_add.png') no-repeat center center;
}
.icon-mini-edit{
background:url('icons/mini_edit.png') no-repeat center center;
}
.icon-mini-refresh{
background:url('icons/mini_refresh.png') no-repeat center center;
}


.icon-large-picture{
background:url('icons/large_picture.png') no-repeat center center;
}
.icon-large-clipart{
background:url('icons/large_clipart.png') no-repeat center center;
}
.icon-large-shapes{
background:url('icons/large_shapes.png') no-repeat center center;
}
.icon-large-smartart{
background:url('icons/large_smartart.png') no-repeat center center;
}
.icon-large-chart{
background:url('icons/large_chart.png') no-repeat center center;
}
原创粉丝点击