﻿/*Chrome element style*/
:-webkit-any(button,
             input[type='button'],
             input[type='submit']),
input[type='checkbox'],
input[type='radio'] {
  -webkit-appearance: none;
  -webkit-user-select: none;
  background-image: -webkit-linear-gradient(#ededed, #ededed 38%, #dedede);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
      inset 0 1px 2px rgba(255, 255, 255, 0.75);
  color: #444;
  /*font: inherit;*/
  margin: 0 1px 0 0;
  text-shadow: 0 1px 0 rgb(240, 240, 240);
}
input[type=text], input[type=password], select
{
  border: 1px solid rgba(0, 0, 0, 0.25);
  outline: none;
  border-radius: 3px;
}

:-webkit-any(button,
             input[type='button'],
             input[type='submit']):not(.custom-appearance):not(.link-button) {
  -webkit-padding-end: 10px;
  -webkit-padding-start: 10px;
}

input[type='checkbox'] {
  bottom: 2px;
  height: 13px;
  position: relative;
  vertical-align: middle;
  width: 13px;
}

input[type='radio'] {
  /* OVERRIDE */
  border-radius: 100%;
  bottom: 3px;
  height: 15px;
  position: relative;
  vertical-align: middle;
  width: 15px;
}


/* Checked ********************************************************************/

input[type='checkbox']:checked::before {
  -webkit-user-select: none;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAcklEQVQY02NgwA/YoJgoEA/Es4DYgJBCJSBeD8SboRinBiYg7kZS2IosyQ/Eakh8LySFq4FYHFlxGRBvBOJYqMRqJMU+yApNkSRAeC0Sux3dfSCTetE0wKyXxOWhMKhTYIr9CAUXyJMzgLgBagBBgDPGAI2LGdNt0T1AAAAAAElFTkSuQmCC');
  background-size: 100% 100%;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}

input[type='radio']:checked::before {
  background-color: #666;
  border-radius: 100%;
  bottom: 3px;
  content: '';
  display: block;
  left: 3px;
  position: absolute;
  right: 3px;
  top: 3px;
}

/* Hover **********************************************************************/

:enabled:hover:-webkit-any(
    input[type='checkbox'],
    input[type='radio'],
    :-webkit-any(
        button,
        input[type='button'],
        input[type='submit']):not(.custom-appearance):not(.link-button)) {
  background-image: -webkit-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0);
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12),
      inset 0 1px 2px rgba(255, 255, 255, 0.95);
  color: black;
}

/* Active *********************************************************************/

:enabled:active:-webkit-any(
    /*select,*/
    input[type='checkbox'],
    input[type='radio'],
    :-webkit-any(
        button,
        input[type='button'],
        input[type='submit']):not(.custom-appearance):not(.link-button)) {
  background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
  box-shadow: none;
  text-shadow: none;
}

/* Disabled *******************************************************************/

:disabled:-webkit-any(
    button,
    input[type='button'],
    input[type='submit']):not(.custom-appearance):not(.link-button) {
  background-image: -webkit-linear-gradient(#f1f1f1, #f1f1f1 38%, #e6e6e6);
  border-color: rgba(80, 80, 80, 0.2);
  box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
      inset 0 1px 2px rgba(255, 255, 255, 0.75);
  color: #aaa;
}

input:disabled:-webkit-any([type='checkbox'],
                           [type='radio']) {
  opacity: .75;
}

input:disabled:-webkit-any([type='password'],
                           [type='search'],
                           [type='text'],
                           [type='url'],
                           :not([type])) {
  color: #999;
}

/* Focus **********************************************************************/

:enabled:focus:-webkit-any(
    input[type='checkbox'],
    input[type='password'],
    input[type='radio'],
    input[type='search'],
    input[type='text'],
    input[type='url'],
    input:not([type]),
    :-webkit-any(
         button,
         input[type='button'],
         input[type='submit']):not(.custom-appearance):not(.link-button)) {
  /* OVERRIDE */
  -webkit-transition: border-color 200ms;
  /*border-color: rgb(77, 144, 254);
  outline: none;
  border:1px solid gray;*/
}

:-webkit-any(.checkbox, .radio) label {
  /* Don't expand horizontally: <http://crbug.com/112091>. */
  display: -webkit-inline-box;
  padding-bottom: 7px;
  padding-top: 7px;
}

:-webkit-any(.checkbox, .radio) label input ~ span {
  -webkit-margin-start: 0.6em;
  /* Make sure long spans wrap at the same horizontal position they start. */
  display: block;
}

:-webkit-any(.checkbox, .radio) label:hover {
  color: black;
}

label > input:disabled:-webkit-any([type='checkbox'], [type='radio']) ~ span {
  color: #999;
}
/*--------------------------------------------------------------------------*/

body
{
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}
input
{
    padding: 1px 0px;
    margin: 0px;
}
input[type=text], input[type=password]
{
    padding: 2px 0px 2px 2px;
    margin: 0px;
}
input[type="checkbox"]
{
    margin: 3px 0.5px; /* !important;*/
}
input[type="button"]
{
    padding: 2px 9px/* !important*/;
}
input[type="radio"]:disabled + label, input[type="checkbox"]:disabled + label  
{
    color:rgb(179, 179, 179);
}
input, textarea
{
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
input:focus, textarea:focus
{
    outline: none;
}
.noselect
{
    -moz-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none; /*-moz-user-select: -moz-none;*/
    -khtml-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.UserProfile, .UserProfile:link
{
    color: #626262;
}
.UserProfile:hover
{
    text-decoration: underline; /*color: Blue;*/
}
div.crop
{
    width: 100%;
    height: 25px;
    overflow: hidden;
    z-index: 1;
}

div.crop div
{
    float: left;
    width: auto;
}

div.crop:after
{
    content: '\2026';
    position: relative;
    z-index: 2;
    background: white;
    margin-left: -16px;
}
div.crop div:after
{
    content: '\2026';
    position: relative;
    z-index: 3;
    background: white;
    color: white;
}

a
{
    text-decoration: none;
}
#pageInfoString
{
    padding-left: 0px;
    text-align: left;
    height: 41px;
    vertical-align: middle;
    display: table-cell;
    color: Gray;
    font-family: Comic Sans MS;
    font-size: 18px;
    line-height: 13px;
}
#header
{
    overflow: hidden;
}
#header, #thead
{
    height: 82px;
}
#labelLogin
{
    font-weight: bold;
    font-family: Comic Sans MS;
    font-size: 18px;
    color: Gray; /*white-space:nowrap;*/
}
.menu
{
    display: block;
    position: absolute;
    vertical-align: bottom;
    top: 0;
    width: 200px;
    padding: 2px;
    background-color: #99e;
    cursor: pointer;
    z-index: 999;
}
.menu_login
{
    /*padding-top: 10px;*/
    text-align: left;
    height: 45px;
    width: 100%;
    vertical-align: middle;
}
.menu_btns
{
    /*width: 450px;*/
    text-align: right;
    padding-top: 8px;
    white-space: nowrap;
}
.menu_btns a
{
    border: 0;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}
.menu_btns img
{
    border: 0;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.9;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -o-transform: scale(.9);
    -webkit-transition-duration: .1s;
    -moz-transition-duration: .1s;
    -o-transition-duration: .1s;
    margin: 0px;
    padding: 0px;
}
.menu_btns img:hover
{
    /*background-color: #FAE7D4;#f93;*/
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    box-shadow: 0px 0px 10px gray;
    -webkit-box-shadow: 0px 0px 10px gray;
    -moz-box-shadow: 0px 0px 10px gray;
    opacity: 1;
}
.topImgs img
{
    cursor: pointer;
    padding-left: 10px;
}
.topImgs img:hover
{
    background-color: Silver;
}
#w_Reg #btn_cancel, #w_Reg #btn_sendreg, #w_ForgotPassword #btn_fg_cancel, #w_ForgotPassword #btn_fg_send
{
    cursor: pointer;
}
.toolLogin
{
    color: Gray;
    text-decoration: none;
    padding-left: 5px;
}
.toolLogin:hover
{
    color: Maroon;
    text-decoration: underline;
    padding-left: 5px;
}
#login_main
{
    width: 500px;
    height: 195px;
    vertical-align: middle;
    position: absolute;
}
.login_title
{
    padding-left: 100px;
    font-family: Tahoma;
    font-size: x-large;
}
.login_line
{
    width: 335px;
    margin-left: 100px;
}
#page_block
{
    left: 0px;
    top: 83px;
    width: 3000px;
    height: 2000px;
    display: none;
    position: absolute;
    opacity: 0.3;
    z-index: 999;
    background-color: Black;
}
.white
{
    background-color: White !important;
    opacity: 1 !important;
}
#page_disable
{
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    /*opacity: 0;*/
    z-index: 9997;
    background: rgba(0,0,0,0.05);
}
#div_progress
{
    position: absolute;
    z-index: 9998;
    display: none;
    text-align: center;
    width: 200px;
    height:200px;
    /*width: 200px;
    height: 120px;
    border: 1px dashed Silver;
    background-color: White;*/
    border-radius:4px;
    opacity: 1;
}

#login_main
{
    background-color: White;
    position: absolute;
    z-index: 9998;
    text-align: left;
    width: 500px;
    height: 200px; /*vertical-align: middle;*/
    background: url(_images/login.png) no-repeat; /*position: absolute;             text-align: left;*/
}

#w_Reg
{
    background-color: White;
    position: absolute;
    z-index: 9998;
    text-align: left;
    width: 500px;
    height: 278px; /*vertical-align: middle;*/
    background: url(_images/registry.png) no-repeat; /*position: absolute;             text-align: left;*/
}

#w_ForgotPassword
{
    background-color: White;
    position: absolute;
    z-index: 9998;
    text-align: left;
    width: 500px;
    height: 200px;
    background: url(_images/login.png) no-repeat;
}

.login_title
{
    padding-left: 100px;
    font-family: Tahoma;
    font-size: x-large;
}
.login_line
{
    width: 335px;
    margin-left: 100px;
}
.login_table
{
    margin-top: 10px;
    width: 100%;
    height: 40px;
}
.login_table .td_label
{
    width: 91px;
}
.login_table #lblLogin, .login_table #lblPassword
{
    width: 10px;
    height: 15px;
}
.login_table #editLogin, .login_table #editPassword
{
    width: 99%;
    height: 20px;
    font-size: 14px;
}
.login_label
{
    width: 100%;
    height: 30px;
    font-family: Arial;
    text-align: right;
    vertical-align: middle;
    font-weight: normal;
    font-size: 14px;
    color: Black;
}
.login_edit
{
    width: 230px; /*    height: 20px;*/
    font-family: Arial;
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    color: Black;
}
#div_btn
{
    width: 433px;
    height: 50px;
    text-align: right;
    margin-top: 5px;
}
#div_btn img
{
    cursor: pointer;
}
.xp
{
    background-attachment: inherit !important;
    background-color: #FFFFFF;
    background-image: url(_images/form.gif);
    background-position: left top;
    background-repeat: repeat-x;
    border: 1px solid #CCCCCC;
}

.login_exit
{
    border: 1px solid #E69B22;
    background-color: White;
    cursor: pointer;
    margin-right: 10px !important;
    padding: 1px 6px !important;
}
.login_exit:hover
{
    background-color: silver;
}

#alerts
{
    top: 86px;
    left: 1%;
    width: 98%;
    z-index: 1000;
    position: absolute;
    background-color: transparent;
}
#alerts .alert
{
    float: none;
    clear: both;
    min-width: 40%;
    max-width: 100%;
    background-color: #ddd;
    margin: 5px;
    /*border: solid 1px black;
    border-radius:5px;
    box-shadow: 2px 2px 15px gray;*/
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;    
}

#alerts .body
{
    padding: 4px;
}
#alerts .alert a
{
    text-decoration: none;
    color: #5F0318;
    font-weight:bold;
    font-size:18px
}
#alerts .alert a:hover
{
    text-decoration:underline;
}
#alerts select, #alerts input[type=button]
{
    border: solid 1px silver;
    cursor: pointer;
    padding: 2px;
}
#alerts input[type=button] 
{
    margin-left:10px;
    width:50px;    
}
#alerts .alert.popover .body { margin:0px; padding:0px; }
#alerts .alert.popover
{
    position: relative;
    min-width: 290;
    padding: 1px;
    text-align: left;
    white-space: normal;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

#alerts .alert.popover .popover-content {
    padding: 9px 14px;
}
#alerts .alert.popover.right .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0;
}
#alerts .alert.popover .arrow {
    border-width: 11px;
}
#alerts .alert.popover .arrow, #alerts .alert.popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
#alerts .alert.popover.right .arrow:after {
    bottom: -10px;
    left: 1px;
    border-right-color: #ffffff;
    border-left-width: 0;
}
#alerts .alert.popover .arrow:after {
    border-width: 10px;
    content: "";
}
#alerts .alert.popover .arrow, #alerts .alert.popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
#alerts .alert.popover .popover-title {
    display:block;
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
#alerts .alert.popover .close 
{
    position: absolute;
    top: 7px;
    right: 11px;
    line-height: 20px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);    
}
#alerts .alert.popover .close:hover, #alerts .alert.popover .close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
    filter: alpha(opacity=40);
}
.lver
{
    cursor: pointer;
    padding: 2px;
}
#frameHelp
{
    border: none;
    width: 885px;
    height: 620px;
}
#top_menu_right
{
    width: 60px;
    background: url(/_images/top_menu_right.png) no-repeat;
    position: relative;
}
#mainmenu, #top_menu_1
{
    background: url(/_images/top_menu_midle.png) repeat-x;
}
#top_menu_left
{
    width: 40px;
    min-width: 40px;
    background: url(/_images/top_menu_left.png) no-repeat;
}
/***********************************************************************/
body {
    scrollbar-color: silver rgba(250,250,250,0.3);
    scrollbar-width: thin;
}
.scroll::-webkit-scrollbar
{
    width: 16px;
    height: 16px;
}
.scroll::-webkit-scrollbar-button
{
    width: 0;
    height: 0;
}
.scroll::-webkit-scrollbar-button:start:decrement, .scroll::-webkit-scrollbar-button:end:increment
{
    display: block;
}
.scroll::-webkit-scrollbar-button:vertical:start:increment, .scroll::-webkit-scrollbar-button:vertical:end:decrement
{
    display: none;
}
.scroll::-webkit-scrollbar-track:vertical, .scroll::-webkit-scrollbar-track:horizontal, .scroll::-webkit-scrollbar-thumb:vertical, .scroll::-webkit-scrollbar-thumb:horizontal, .gbsbis .scroll::-webkit-scrollbar-track:vertical, .gbsbis .scroll::-webkit-scrollbar-track:horizontal, .gbsbis .scroll::-webkit-scrollbar-thumb:vertical, .gbsbis .scroll::-webkit-scrollbar-thumb:horizontal
{
    border-style: solid;
    border-color: transparent;
}
.scroll::-webkit-scrollbar-track:vertical
{
    border-right-width: 0;
    border-left-width: 5px;
    background-color: #fff;
    background-clip: padding-box;
}
.scroll::-webkit-scrollbar-track:horizontal
{
    border-top-width: 5px;
    border-bottom-width: 0;
    background-color: #fff;
    background-clip: padding-box;
}
.scroll::-webkit-scrollbar-thumb
{
    padding-top: 100px;
    min-height: 28px;
    background-color: rgba(0,0,0,.2);
    background-clip: padding-box;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
}
.scroll::-webkit-scrollbar-thumb:hover
{
    background-color: rgba(0,0,0,.4);
    box-shadow: inset 1px 1px 1px rgba(0,0,0,.25);
}
.scroll::-webkit-scrollbar-thumb:active
{
    background-color: rgba(0,0,0,.5);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,.35);
}
.scroll::-webkit-scrollbar-thumb:vertical
{
    border-width: 0;
    border-left-width: 5px;
}
.scroll::-webkit-scrollbar-thumb:horizontal
{
    border-width: 0;
    border-top-width: 5px;
}
.gbsbis .scroll::-webkit-scrollbar-track:vertical
{
    border-right-width: 1px;
    border-left-width: 6px;
}
.gbsbis .scroll::-webkit-scrollbar-track:horizontal
{
    border-top: 6px;
    border-bottom: 1px;
}
.gbsbis .scroll::-webkit-scrollbar-thumb:vertical
{
    border-width: 0;
    border-right-width: 1px;
    border-left-width: 6px;
}
.gbsbis .scroll::-webkit-scrollbar-thumb:horizontal
{
    border-width: 0;
    border-top: 6px;
    border-bottom: 1px;
}
.scroll::-webkit-scrollbar-track:hover
{
    background-color: rgba(0,0,0,.05);
    box-shadow: inset 1px 0 0 rgba(0,0,0,.1);
}
.scroll::-webkit-scrollbar-track:active
{
    background-color: rgba(0,0,0,.05);
    box-shadow: inset 1px 0 0 rgba(0,0,0,.14),inset -1px -1px 0 rgba(0,0,0,.07);
}
.ajax-load
{
    background-image: url(/_images/loading.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
}
.ajax-load1
{
    background-image: url(/_images/bigrotation.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
}

.widget-chat {
    right: 3px;
    bottom: 5px;
    position: absolute; 
    cursor: pointer;
    transition: all 0.3s ease-out;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border:1px solid white;
    padding:4px;
}

.widget-chat:hover,
.widget-chat:focus,
.widget-chat:active,
.widget-chat.active {
  background: #fff;
  color: #000;
  transition: all 0.5s ease-in;
}