body{
    font-size: 14px;
    font-family: Arial, Tahoma;
}
.auto-ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently, supported by Chrome and Opera */
}
.hide{
    display: none;
}
.sc-is-loading{ /*section is loading so invisible.*/
    visibility: hidden;
}
.invisible{
    visibility: hidden;
}
[data-trans]{
    visibility: hidden; /*hide when not translated*/
}
.help-tips{
    display: none;
}

input[type=text], input[type=password], input[type=number], select {
    width: 100%;
    margin: 0;
    padding: 0 4px;
    height: 28px;
    line-height: 28px;
    border: 1px solid gray;
    box-sizing: border-box;
    font-size: 14px;
    background-color: white;
}
select{
    padding: 0;
}
input[disabled]{
    background: lightgray;
    color: gray;
}
input.disabled{
    background: lightgray;
    color: gray;
    pointer-events: none;
}
input[readonly],
textarea[readonly]{
    pointer-events: none;
}
textarea{
    width: 100%;
    margin:0;
    padding: 2px 4px;
    min-height: 28px;
    max-height: 200px;
    border: 1px solid gray;
    box-sizing: border-box;
    font-size: 14px;
    vertical-align: top;
}

*[normal-authority], *[admin-authority], 
*[only-normal-authority], *[only-viewer-authority] {
    display: none!important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: darkgray;
}
::-moz-placeholder { /* Firefox 19+ */
    color: darkgray;
}
:-ms-input-placeholder { /* IE 10+ */
    color: darkgray;
}
:-moz-placeholder { /* Firefox 18- */
    color: darkgray;
}

a{ color: unset;}
.btn{
    cursor: pointer;
    border-radius: 3px;
    text-align: center;
    -webkit-appearance: none;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    font-size: 14px;
    display: inline-block;
    color: blueviolet;
    border: 1px solid blueviolet;
    margin-right: 3px;
}
.btn .ico16{
    margin-right: 4px;
}
.ico16{
    font-size: 16px;
    line-height: inherit;
    display: inline-block;
    vertical-align: top;
    color: inherit;
}

.clear-after::after{ /*used to clear float*/
    content: '';
    clear: both;
    display: block;
}

.not-implemented{
    opacity: 0.7;
    text-decoration: line-through;
}
.stretch-page{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.uppercase{
    text-transform: uppercase;
}
.page-style{
    height: 100%;
}
#pageDialogWrapper .page-style{
    height: 100%;
    padding: 6px 10px;
    box-sizing: border-box;
}
.page-tip-label{
    text-align: right;color: lightgray;line-height: 20px;font-size: 11px;margin-right: 12px;
    cursor: pointer;
    float: right;
}