/*Rounded Corners*/
/*top-left rounded Corners*/
.jqx-rc-tl-custom {
    -moz-border-radius-topleft: 2px;
    -webkit-border-top-left-radius: 2px;
    border-top-left-radius: 2px;
}
/*top-right rounded Corners*/
.jqx-rc-tr-custom {
    -moz-border-radius-topright: 2px;
    -webkit-border-top-right-radius: 2px;
    border-top-right-radius: 2px;
}
/*bottom-left rounded Corners*/
.jqx-rc-bl-custom {
    -moz-border-radius-bottomleft: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
/*bottom-right rounded Corners*/
.jqx-rc-br-custom {
    -moz-border-radius-bottomright: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
/*top rounded Corners*/
.jqx-rc-t-custom {
    -moz-border-radius-topleft: 2px;
    -webkit-border-top-left-radius: 2px;
    border-top-left-radius: 2px;
    -moz-border-radius-topright: 2px;
    -webkit-border-top-right-radius: 2px;
    border-top-right-radius: 2px;
}
/*bottom rounded Corners*/
.jqx-rc-b-custom {
    -moz-border-radius-bottomleft: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
/*right rounded Corners*/
.jqx-rc-r-custom {
    -moz-border-radius-topright: 2px;
    -webkit-border-top-right-radius: 2px;
    border-top-right-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
/*left rounded Corners*/
.jqx-rc-l-custom {
    -moz-border-radius-topleft: 2px;
    -webkit-border-top-left-radius: 2px;
    border-top-left-radius: 2px;
    -moz-border-radius-bottomleft: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
/*all rounded Corners*/
.jqx-rc-all-custom {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.jqx-widget-custom, .jqx-widget-content, .jqx-widget-header, .jqx-input-custom {
    -webkit-transition: box-shadow linear 0.2s;
     -moz-transition: box-shadow linear 0.2s;
       -o-transition: box-shadow linear 0.2s;
          transition: box-shadow linear 0.2s;
}
.jqx-listitem-state-normal-custom, .jqx-listitem-state-hover-custom,.jqx-listitem-state-selected-custom,
.jqx-tabs-title-selected-top-custom, .jqx-tabs-title-selected-bottom-custom{
    -webkit-transition: none;
     -moz-transition: none;
       -o-transition: none;
          transition: none;   
}
.jqx-fill-state-normal-custom {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.75);;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.75);;
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.75);;
}

.jqx-widget-header-custom, .jqx-fill-state-normal-custom {
    text-shadow: 0 1px 0 rgb(240, 240, 240);
    border-color: #b2b2b2;
    border-color: rgba(0, 0, 0, 0.25);
    color: #444;
    background-color: #f0f0f0;
    background-image: linear-gradient(#ededed, #ededed 38%, #dedede);
    background-image: -webkit-linear-gradient(#ededed, #ededed 38%, #dedede);
    background-image: -moz-linear-gradient(#ededed, #ededed 38%, #dedede);
    background-image: -o-linear-gradient(#ededed, #ededed 38%, #dedede);
    -webkit-transition: color 200ms;
}
.jqx-widget-content-custom {
    border-color: #b2b2b2;
    border-color: rgba(0, 0, 0, 0.25);
}
.jqx-fill-state-hover-custom {
    text-shadow: 0 1px 0 rgb(240, 240, 240);
    border-color: #b2b2b2;
    border-color: rgba(0, 0, 0, 0.3);
    color: black;
    background-color: #f0f0f0;
    background-image: linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0);
    background-image: -webkit-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0);
    background-image: -moz-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0);
    background-image: -o-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.95);
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.95);
    -webkit-transition: color 200ms;
}

.jqx-fill-state-pressed-custom {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    text-shadow: none;
    background-color: #f0f0f0;
    background-image: linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
    background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
    background-image: -moz-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
    background-image: -o-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
    -webkit-transition: color 200ms;
}

.jqx-grid-column-menubutton-custom {
    background-color: transparent;
}

.jqx-calendar-row-header-custom, .jqx-calendar-top-left-header-custom {
    background-color: #f0f0f0;
    border: 0px solid #f2f2f2;
}

.jqx-calendar-column-header-custom {
    background-color: #FFF;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #e9e9e9;
}

.jqx-scrollbar-state-normal-custom {
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
}
.jqx-grid-cell-hover-custom {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
.jqx-scrollbar-thumb-state-normal-custom {
    background-color: #f0f0f0;
    background-image: linear-gradient(left, #ededed, #ededed 38%, #dedede);
    background-image: -webkit-linear-gradient(left, #ededed, #ededed 38%, #dedede);
    background-image: -moz-linear-gradient(left, #ededed, #ededed 38%, #dedede);
    background-image: -o-linear-gradient(left, #ededed, #ededed 38%, #dedede);
    background-image: -ms-linear-gradient(left, #ededed, #ededed 38%, #dedede);
}

.jqx-scrollbar-thumb-state-hover-custom {
    background-color: #f0f0f0;
    background-image: linear-gradient(left,#f0f0f0, #f0f0f0 38%, #e0e0e0);
    background-image: -webkit-linear-gradient(left,#f0f0f0, #f0f0f0 38%, #e0e0e0);
    background-image: -moz-linear-gradient(left,#f0f0f0, #f0f0f0 38%, #e0e0e0);
    background-image: -o-linear-gradient(left,#f0f0f0, #f0f0f0 38%, #e0e0e0);
    background-image: -ms-linear-gradient(left,#f0f0f0, #f0f0f0 38%, #e0e0e0);
}
.jqx-splitter-collapse-button-vertical-custom, .jqx-splitter-collapse-button-horizontal-custom {
    background: #b2b2b2;
}
.jqx-scrollbar-thumb-state-pressed-custom, .jqx-progressbar-value-vertical-custom{
    background-color: #f0f0f0;
    background-image: linear-gradient(left, #e7e7e7, #e7e7e7 38%, #d7d7d7);
    background-image: -webkit-linear-gradient(left, #e7e7e7, #e7e7e7 38%, #d7d7d7);
    background-image: -moz-linear-gradient(left, #e7e7e7, #e7e7e7 38%, #d7d7d7);
    background-image: -o-linear-gradient(left, #e7e7e7, #e7e7e7 38%, #d7d7d7);
    background-image: -ms-linear-gradient(left, #e7e7e7, #e7e7e7 38%, #d7d7d7);
}

.jqx-grid-column-sortdescbutton-custom, jqx-grid-column-filterbutton-custom, .jqx-grid-column-sortascbutton-custom {
    background-color: transparent;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #b2b2b2;
}
.jqx-slider-rangebar-custom {
    background: #C3C3C3;
}
.jqx-menu-vertical-custom {
    background: #f5f5f5;
    filter: none;
}

.jqx-checkbox-check-checked-custom {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAcklEQVQY02NgwA/YoJgoEA/Es4DYgJBCJSBeD8SboRinBiYg7kZS2IosyQ/Eakh8LySFq4FYHFlxGRBvBOJYqMRqJMU+yApNkSRAeC0Sux3dfSCTetE0wKyXxOWhMKhTYIr9CAUXyJMzgLgBagBBgDPGAI2LGdNt0T1AAAAAAElFTkSuQmCC');
}

.jqx-combobox-content-custom, .jqx-input-custom {
    border-color: #b2b2b2;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.jqx-combobox-content-custom {
    border-color: #b2b2b2;
    border-color: rgba(0, 0, 0, 0.25);
 }
.jqx-fill-state-focus-custom, .jqx-combobox-content-focus-custom, .jqx-numberinput-focus-custom {
    outline: none;
    border-color: #777777;
}
.jqx-dropdownbutton-popup-custom.jqx-fill-state-focus-custom {
   
}
.jqx-grid-bottomright-custom, .jqx-panel-bottomright-custom, .jqx-listbox-bottomright-custom {
    background-color: #efefef;
}

.jqx-tabs-title-selected-top-custom, .jqx-tabs-selection-tracker-top-custom {
    border-color: #b2b2b2;
    border-bottom: 1px solid #fff;
    text-shadow: 0 1px 0 #f2f2f2;
    filter: none;
    color: #222;
    background: #fff;
}

.jqx-tabs-title-selected-bottom-custom, .jqx-tabs-selection-tracker-bottom-custom {
    border-color: #b2b2b2;
    border-top: 1px solid #fff;
    text-shadow: 0 1px 0 #f2f2f2;
    filter: none;
    color: #222;
    background: #fff;
}

.jqx-popup-custom {
  -webkit-box-shadow: 6px 6px 23px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 6px 6px 23px rgba(0, 0, 0, 0.15);
  box-shadow: 6px 6px 23px rgba(0, 0, 0, 0.15);
}
.jqx-menu-popup-custom>div:first-child{
    padding-bottom: 15px !important;
    padding-right: 15px !important;
}
.jqx-menu-popup-clear-custom>div:first-child{
    padding-bottom: 0px !important;
}
.jqx-window-custom, .jqx-tooltip-custom {
  -webkit-box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);
  -moz-box-shadow:  0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);
  box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);
}
.jqx-docking-custom .jqx-window-custom {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.jqx-docking-panel-custom .jqx-window-custom {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.jqx-radiobutton-custom {
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-repeat: no-repeat;
    background: none;
}
.jqx-radiobutton-custom-custom, .jqx-radiobutton-hover-custom {
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-repeat: no-repeat;
}
.jqx-radiobutton-check-checked-custom {
    filter: none;
    background: #666;
    background-repeat: no-repeat;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.jqx-radiobutton-check-indeterminate-custom {
    filter: none;
    background: #999;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.jqx-radiobutton-check-indeterminate-disabled-custom {
    filter: none;
    background: #999;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.jqx-slider-track-horizontal-custom, .jqx-slider-track-vertical-custom {
    border-color: #b2b2b2;
    background: #f0f0f0;
}
.jqx-slider-button-custom
{
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%; 
}
.jqx-widget-custom
{
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-widget-content-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background: #ffffff;
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-widget-header-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #B2B2B2;
  background-color: #EDEDED;
  background-image: -moz-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: -ms-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: -o-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#EDEDED), to(#DEDEDE));
  background-image: -webkit-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: linear-gradient(top, #EDEDED, #DEDEDE);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-grid-cell-custom, .jqx-widget-custom .jqx-grid-cell-custom
{
  background-color: #ffffff;
  color: #222222;
  text-shadow: none;
}
.jqx-fill-state-normal-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background-color: #ededed;
  background-image: -moz-linear-gradient(top, #ededed, #dedede);
  background-image: -ms-linear-gradient(top, #ededed, #dedede);
  background-image: -o-linear-gradient(top, #ededed, #dedede);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#ededed), to(#dedede));
  background-image: -webkit-linear-gradient(top, #ededed, #dedede);
  background-image: linear-gradient(top, #ededed, #dedede);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-button-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #B2B2B2;
  background-color: #DCDCDC;
  /*background-image: -moz-linear-gradient(top, #EDEDED, #999999);
  background-image: -ms-linear-gradient(top, #EDEDED, #999999);
  background-image: -o-linear-gradient(top, #EDEDED, #999999);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#EDEDED), to(#999999));
  background-image: -webkit-linear-gradient(top, #EDEDED, #999999);
  background-image: linear-gradient(top, #EDEDED, #999999);*/
  background-image: -moz-linear-gradient(top, #c0c0c0, #DCDCDC);
  background-image: -ms-linear-gradient(top, #c0c0c0, #DCDCDC);
  background-image: -o-linear-gradient(top, #c0c0c0, #DCDCDC);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#c0c0c0), to(#DCDCDC));
  background-image: -webkit-linear-gradient(top, #c0c0c0, #DCDCDC);
  background-image: linear-gradient(top, #c0c0c0, #DCDCDC);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-grid-selectionarea-custom
{
  border-color: #b2b2b2;
  background-color: #ededed;
}
.jqx-widget-custom .jqx-grid-cell-sort-custom, .jqx-widget-custom .jqx-grid-cell-filter-custom, .jqx-widget-custom .jqx-grid-cell-pinned-custom, .jqx-grid-cell-sort-custom, .jqx-grid-cell-filter-custom, .jqx-grid-cell-pinned-custom
{
  background-color: #aaaaaa;
  color: #000000;
  text-shadow: none;
}
.jqx-widget-custom .jqx-grid-cell-alt-custom, .jqx-widget-custom .jqx-grid-cell-sort-alt-custom, .jqx-widget-custom .jqx-grid-cell-pinned-alt-custom, .jqx-widget-custom .jqx-grid-cell-filter-alt-custom, .jqx-grid-cell-alt-custom, .jqx-grid-cell-sort-alt-custom, .jqx-grid-cell-filter-alt-custom
{
  background-color: #f9f9f9;
  color: #000000;
  text-shadow: none;
}
.jqx-fill-state-hover-custom, .jqx-widget-custom .jqx-grid-cell-hover-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background-color: #f0f0f0;
  background-image: -moz-linear-gradient(top, #f0f0f0, #e0e0e0);
  background-image: -ms-linear-gradient(top, #f0f0f0, #e0e0e0);
  background-image: -o-linear-gradient(top, #f0f0f0, #e0e0e0);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#f0f0f0), to(#e0e0e0));
  background-image: -webkit-linear-gradient(top, #f0f0f0, #e0e0e0);
  background-image: linear-gradient(top, #f0f0f0, #e0e0e0);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-fill-state-pressed-custom, .jqx-widget-custom .jqx-grid-cell-selected-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: -ms-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: -o-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#e7e7e7), to(#d7d7d7));
  background-image: -webkit-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: linear-gradient(top, #e7e7e7, #d7d7d7);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-switchbutton-label-on-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background-color: #e7e7e7;
  background-image: -moz-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: -ms-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: -o-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#e7e7e7), to(#d7d7d7));
  background-image: -webkit-linear-gradient(top, #e7e7e7, #d7d7d7);
  background-image: linear-gradient(top, #e7e7e7, #d7d7d7);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-tabs-title-selected-top-custom, .jqx-tabs-selection-tracker-top-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  border-bottom: 1px solid #ffffff;
  background-image: none ;
  background-color: #ffffff;
}
.jqx-tabs-title-selected-bottom-custom, .jqx-tabs-selection-tracker-bottom-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  border-top: 1px solid #ffffff;
  background-image: none ;
  background-color: #ffffff;
}
.jqx-splitter-splitbar-hover-custom
{
  background: #f0f0f0;
}
.jqx-splitter-splitbar-vertical-custom, .jqx-splitter-splitbar-horizontal-custom, .jqx-slider-track-horizontal-custom, .jqx-slider-track-vertical-custom
{
  background: #ededed;
}
.jqx-splitter-collapse-button-horizontal-custom, .jqx-splitter-collapse-button-vertical-custom, .jqx-slider-rangebar-custom
{
  background: #e7e7e7;
}
.jqx-scrollbar-state-normal-custom
{
  background-color: #F0F0F0;
  border-color: #F0F0F0;
}
.jqx-grid-bottomright-custom, .jqx-panel-bottomright-custom, .jqx-listbox-bottomright-custom
{
  background-color: #F0F0F0;
}
.jqx-scrollbar-thumb-state-normal-custom
{
  background-color: #EDEDED;
  background-color: #EDEDED;
  background-image: -moz-linear-gradient(left, #EDEDED, #DEDEDE);
  background-image: -ms-linear-gradient(left, #EDEDED, #DEDEDE);
  background-image: -o-linear-gradient(left, #EDEDED, #DEDEDE);
  background-image: -webkit-gradient(linear, left top, right top, from(#EDEDED), to(#DEDEDE));
  background-image: -webkit-linear-gradient(left, #EDEDED, #DEDEDE);
  background-image: linear-gradient(left, #EDEDED, #DEDEDE);
}
.jqx-scrollbar-thumb-state-normal-horizontal-custom
{
  background-color: #EDEDED;
  background-color: #EDEDED;
  background-image: -moz-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: -ms-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: -o-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#EDEDED), to(#DEDEDE));
  background-image: -webkit-linear-gradient(top, #EDEDED, #DEDEDE);
  background-image: linear-gradient(top, #EDEDED, #DEDEDE);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-scrollbar-thumb-state-hover-custom
{
  background-color: #F0F0F0;
  border-color: #F0F0F0;
  background-image: -moz-linear-gradient(left, #F0F0F0, #E0E0E0);
  background-image: -ms-linear-gradient(left, #F0F0F0, #E0E0E0);
  background-image: -o-linear-gradient(left, #F0F0F0, #E0E0E0);
  background-image: -webkit-gradient(linear, left top, right top, from(#F0F0F0), to(#E0E0E0));
  background-image: -webkit-linear-gradient(left, #F0F0F0, #E0E0E0);
  background-image: linear-gradient(left, #F0F0F0, #E0E0E0);
}
.jqx-scrollbar-thumb-state-hover-horizontal-custom
{
  background-color: #F0F0F0;
  border-color: #F0F0F0;
  background-image: -moz-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: -ms-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: -o-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#F0F0F0), to(#E0E0E0));
  background-image: -webkit-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: linear-gradient(top, #F0F0F0, #E0E0E0);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-scrollbar-thumb-state-pressed-custom
{
  background-color: #E7E7E7;
  border-color: #E7E7E7;
  background-image: -moz-linear-gradient(left, #E7E7E7, #D7D7D7);
  background-image: -ms-linear-gradient(left, #E7E7E7, #D7D7D7);
  background-image: -o-linear-gradient(left, #E7E7E7, #D7D7D7);
  background-image: -webkit-gradient(linear, left top, right top, from(#E7E7E7), to(#D7D7D7));
  background-image: -webkit-linear-gradient(left, #E7E7E7, #D7D7D7);
  background-image: linear-gradient(left, #E7E7E7, #D7D7D7);
}
.jqx-scrollbar-thumb-state-pressed-horizontal-custom
{
  background-color: #E7E7E7;
  border-color: #E7E7E7;
  background-image: -moz-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: -ms-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: -o-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#E7E7E7), to(#D7D7D7));
  background-image: -webkit-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: linear-gradient(top, #E7E7E7, #D7D7D7);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-scrollbar-button-state-normal-custom
{
  background-color: #F0F0F0;
  background-image: -moz-linear-gradient(top, #F0F0F0, #F0F0F0);
  background-image: -ms-linear-gradient(top, #F0F0F0, #F0F0F0);
  background-image: -o-linear-gradient(top, #F0F0F0, #F0F0F0);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#F0F0F0), to(#F0F0F0));
  background-image: -webkit-linear-gradient(top, #F0F0F0, #F0F0F0);
  background-image: linear-gradient(top, #F0F0F0, #F0F0F0);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-scrollbar-button-state-hover-custom
{
  background-color: #F0F0F0;
  border-color: #B2B2B2;
  background-image: -moz-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: -ms-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: -o-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#F0F0F0), to(#E0E0E0));
  background-image: -webkit-linear-gradient(top, #F0F0F0, #E0E0E0);
  background-image: linear-gradient(top, #F0F0F0, #E0E0E0);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-scrollbar-button-state-pressed-custom
{
  background-color: #E7E7E7;
  border-color: #B2B2B2;
  background-image: -moz-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: -ms-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: -o-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#E7E7E7), to(#D7D7D7));
  background-image: -webkit-linear-gradient(top, #E7E7E7, #D7D7D7);
  background-image: linear-gradient(top, #E7E7E7, #D7D7D7);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-radiobutton-check-checked-custom
{
  background: #666666;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  margin-top: 2px;
  border-width: 1px;
  border-style: solid;
}
.jqx-rc-tl-custom
{
  -moz-border-radius-topleft: 2px;
  -webkit-border-radius-topleft: 2px;
  border-radius-topleft: 2px;
}
.jqx-rc-tr-custom
{
  -moz-border-radius-topright: 2px;
  -webkit-border-radius-topright: 2px;
  border-radius-topright: 2px;
}
.jqx-rc-bl-custom
{
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-radius-bottomleft: 2px;
  border-radius-bottomleft: 2px;
}
.jqx-rc-br-custom
{
  -moz-border-radius-bottomright: 2px;
  -webkit-border-radius-bottomright: 2px;
  border-radius-bottomright: 2px;
}
.jqx-rc-t-custom
{
  -moz-border-radius-topleft: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-border-radius-topright: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
}
.jqx-rc-b-custom
{
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.jqx-rc-r-custom
{
  -moz-border-radius-topright: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.jqx-rc-l-custom
{
  -moz-border-radius-topleft: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.jqx-radiobutton-default-custom, .jqx-radiobutton-custom, .jqx-radiobutton-check-checked-custom, .jqx-radiobutton-hover-custom, .jqx-radiobutton-check-indeterminate-custom, .jqx-radiobutton-check-indeterminate-disabled-custom, .jqx-slider-button-custom
{
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.jqx-rc-all-custom, .jqx-tooltip-custom, .jqx-tooltip-text-custom, .jqx-tooltip-main-custom
{
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.jqx-grid-column-sortascbutton-custom, .jqx-expander-arrow-bottom-custom, .jqx-window-collapse-button-custom, .jqx-menu-item-arrow-up-custom, .jqx-menu-item-arrow-top-up-custom, .jqx-icon-arrow-up-custom
{
  background-image: url('images/icon-up.png');
}
.jqx-icon-arrow-up-hover-custom
{
  background-image: url('images/icon-up.png');
}
.jqx-menu-item-arrow-up-selected-custom, .jqx-icon-arrow-up-selected-custom.jqx-expander-arrow-expanded-custom
{
  background-image: url('images/icon-up.png');
}
.jqx-grid-column-menubutton-custom, .jqx-grid-column-sortdescbutton-custom, .jqx-expander-arrow-top-custom, .jqx-window-collapse-button-collapsed-custom, .jqx-menu-item-arrow-down-custom, .jqx-menu-item-arrow-down-custom, .jqx-tree-item-arrow-expand-custom, .jqx-icon-arrow-down-custom
{
  background-image: url('images/icon-down.png');
}
.jqx-icon-arrow-down-hover-custom, .jqx-tree-item-arrow-expand-hover-custom
{
  background-image: url('images/icon-down.png');
}
.jqx-menu-item-arrow-down-selected-custom, .jqx-icon-arrow-down-selected-custom
{
  background-image: url('images/icon-down.png');
}
.jqx-tabs-arrow-left-custom, .jqx-menu-item-arrow-top-left-custom, .jqx-icon-arrow-left-custom, .jqx-icon-arrow-down-left-custom
{
  background-image: url('images/icon-left.png');
}
.jqx-icon-arrow-left-hover-custom
{
  background-image: url('images/icon-left.png');
}
.jqx-menu-vertical-custom
{
  background: #ffffff;
}
.jqx-menu-item-arrow-left-selected-custom, .jqx-icon-arrow-left-selected-custom
{
  background-image: url('images/icon-left.png');
}
.jqx-tabs-arrow-right-custom, .jqx-menu-item-arrow-top-right-custom, .jqx-menu-item-arrow-collapse-custom, .jqx-icon-arrow-right-custom
{
  background-image: url('images/icon-right.png');
}
.jqx-icon-arrow-right-hover-custom, .jqx-tree-item-arrow-collapse-hover-custom
{
  background-image: url('images/icon-right.png');
}
.jqx-menu-item-arrow-right-selected-custom, .jqx-icon-arrow-right-selected-custom
{
  background-image: url('images/icon-right.png');
}
.jqx-window-close-button-custom, .jqx-tabs-close-button-custom, .icon-close-custom
{
  background-image: url('images/close.png');
}
.jqx-tabs-close-button-selected-custom
{
  background-image: url('images/close.png');
}
.jqx-tabs-close-button-hover-custom
{
  background-image: url('images/close.png');
}
.jqx-widget-custom .jqx-grid-column-header-custom, .jqx-widget-custom .jqx-grid-cell-custom, .jqx-widget-custom .jqx-grid-group-cell-custom, .jqx-grid-cell-custom
{
  border-color: #b2b2b2;
}
.jqx-checkbox-check-checked-custom
{
  background-image: url('images/check_black.png');
}
.jqx-checkbox-check-indeterminate-custom
{
  background-image: url('images/check_indeterminate_black.png');
}
.jqx-tooltip-custom, .jqx-tooltip-main-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background-color: #ededed;
  background-image: -moz-linear-gradient(top, #ededed, #dedede);
  background-image: -ms-linear-gradient(top, #ededed, #dedede);
  background-image: -o-linear-gradient(top, #ededed, #dedede);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#ededed), to(#dedede));
  background-image: -webkit-linear-gradient(top, #ededed, #dedede);
  background-image: linear-gradient(top, #ededed, #dedede);
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.jqx-combobox-content-custom, .jqx-input-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background-color: #ffffff;
}
.jqx-combobox-input-custom
{
  color: #000000;
  text-shadow: none;
}
.jqx-input-content-custom
{
  color: #000000;
  text-shadow: none;
  background-color: #ffffff;
}
.jqx-fill-state-focus-custom, .jqx-popup-custom .jqx-fill-state-focus-custom
{
  border-color: #777777;
}
.jqx-popup-custom.jqx-listbox-custom, .jqx-popup-custom.jqx-calendar-custom,.jqx-menu-dropdown-custom,  .jqx-popup-custom.jqx-dropdownbutton-popup-custom
{
  color: #000000;
  text-shadow: none;
  border-color: #b2b2b2;
  background-color: #ffffff;
}
.jqx-scrollbar-custom .jqx-icon-arrow-up-custom
{
  background-image: url('images/icon-up.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-left-custom
{
  background-image: url('images/icon-left.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-right-custom
{
  background-image: url('images/icon-right.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-bottom-custom
{
  background-image: url('images/icon-bottom.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-up-hover-custom
{
  background-image: url('images/icon-up.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-left-hover-custom
{
  background-image: url('images/icon-left.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-right-hover-custom
{
  background-image: url('images/icon-right.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-bottom-hover-custom
{
  background-image: url('images/icon-bottom.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-up-selected-custom
{
  background-image: url('images/icon-up.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-left-selected-custom
{
  background-image: url('images/icon-left.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-right-selected-custom
{
  background-image: url('images/icon-right.png');
}
.jqx-scrollbar-custom .jqx-icon-arrow-bottom-selected-custom
{
  background-image: url('images/icon-bottom.png');
}
.jqx-calendar-custom .jqx-icon-arrow-up-custom, .jqx-tabs-header-custom .jqx-icon-arrow-up-custom
{
}
.jqx-calendar-custom .jqx-icon-arrow-left-custom, .jqx-tabs-header-custom .jqx-icon-arrow-left-custom
{
}
.jqx-calendar-custom .jqx-icon-arrow-right-custom, .jqx-tabs-header-custom .jqx-icon-arrow-right-custom
{
}
.jqx-calendar-custom .jqx-icon-arrow-bottom-custom, .jqx-tabs-header-custom .jqx-icon-arrow-bottom-custom
{
}
.jqx-widget-custom .jqx-grid-cell-custom, .jqx-listitem-state-normal-custom, .jqx-menu-item-normal-custom, .jqx-tree-item-normal-custom, .jqx-calendar-cell-custom, .jqx-grid-cell-custom,.jqx-menu-vertical-custom .jqx-menu-item-top-normal-custom, .jqx-input-popup-custom .jqx-fill-state-normal-custom,
{
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-widget-custom .jqx-grid-cell-hover-custom, .jqx-listitem-state-hover-custom, .jqx-menu-item-hover-custom, .jqx-tree-item-hover-custom, .jqx-calendar-cell-hover-custom, .jqx-grid-cell-hover-custom,.jqx-menu-vertical-custom .jqx-menu-item-top-hover-custom, .jqx-input-popup-custom .jqx-fill-state-hover-custom,.jqx-input-button-header-custom, .jqx-input-popup-custom .jqx-fill-state-pressed-custom,.jqx-input-button-header-custom
{
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
.jqx-widget-custom  .jqx-grid-cell-selected-custom, .jqx-listitem-state-selected-custom, .jqx-menu-item-selected-custom, .jqx-tree-item-selected-custom, .jqx-calendar-cell-selected-custom, .jqx-grid-cell-selected-custom,.jqx-menu-vertical-custom .jqx-menu-item-top-selected-custom, .jqx-grid-selectionarea-custom
{
  font-family: 'Ubuntu', Verdana, Helvetica, Arial;
}
