/*Main container*/
.dxssControlSys {
	width: 1000px;
	height: 500px;
	min-height: 300px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-ms-user-select: none;
	-ms-touch-action: pinch-zoom;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: white;
}
.dxssControlSys .dxKBSW {
	width: 0px;
	height: 0px;
}
.dxss-md,
.dxss-sctb,
.dxss-tb,
.dxss-cctb {
	border-style: hidden!important;
}

/* DX Spreadsheet Main Div */
.dxss-md {
	position: relative;
	z-index: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* DX Spreadsheet Grid Row */
.dxss-gr {
	position: absolute;
	z-index: 1;
	left: 0;
	width: 100%;
	height: 0;
	border-top: 1px solid #d4d4d4;
}

/* DX Spreadsheet Single Cell Text Box */
.dxss-sctb {
	position: absolute;
	z-index: 4;
}

/* DX Spreadsheet Complex Cell Text Box */
.dxss-cctb {
	position: absolute;
	z-index: 4;
	overflow:hidden;
}

/* DX Spreadsheet Text Box Wrapper */
.dxss-tw {
    position: absolute;
}

/* DX Spreadsheet Text Box Background only */
.dxss-tbg {
	position: absolute;
	z-index: 3;
}

/* DX Spreadsheet Drawing Box */
.dxss-db {
	position: absolute;
	z-index: 9; /* To be above the selection and edition*/
	cursor: move;
}

/* DX Spreadsheet Text Box content*/
.dxss-tb {
	z-index: 5;
	white-space: nowrap;
}
/* DS Spreadsheet Merged Cells */
.dxss-mc {
	position: absolute;
	z-index: 2;
	background-color: white;
}
.dxss-cctb .dxss-tb {
	/*background-color: white;*/
}

/* DX Spreadsheet Dynamic Selection Element */
.dxss-cdse {
	position: absolute;
	z-index: 7;
	border: 2px solid;
}
.dxss-cdse.highlighted {
    border-style: dashed;
}
.dxss-cdse.marker {
    z-index: 8;
}
.dxss-cdse.marker.nw, .dxss-cdse.marker.se {
    cursor: nwse-resize;
}
.dxss-cdse.marker.ne, .dxss-cdse.marker.sw {
    cursor: nesw-resize;
}
.dxss-cdse.color0 {
    border-color: #5F8CED;
}
.dxss-cdse.color1 {
    border-color: #EB5E60;
}
.dxss-cdse.color2 {
    border-color: #8D61C2;
}
.dxss-cdse.color3 {
    border-color: #2D9639;
}
.dxss-cdse.color4 {
    border-color: #BF4C91;
}
.dxss-cdse.color5 {
    border-color: #E38222;
}
.dxss-cdse.color6 {
    border-color: #377F9E;
}

/* DX Spreadsheet Cell Active Selected Element */
.dxss-case {
	position: absolute;
	z-index: 2;
}
/* DX Spreadsheet Cell Range Selected Element */
.dxss-crse {
	position: absolute;
	z-index: 7;
	background-color: #2291FF;
	opacity: .25;
	filter: alpha(opacity=25);
}
/* DX Spreadsheet Top Range Border Element */
.dxss-trbe {
	position: absolute;
	z-index: 7;
	border-top: 2px solid #7493C0;
}
/* DX Spreadsheet Right Range Border Element */
.dxss-rrbe {
	position: absolute;
	z-index: 7;
	border-right: 2px solid #7493C0;
}
/* DX Spreadsheet Touch Selection Element */
.dxss-tse {
	position: absolute;
	width: 15px;
	height: 15px;
	z-index: 8;
	border-radius: 50%;
	border: 2px solid #7493C0;
	background: white;
}

/* DX Spreadsheet Bottom Range Border Element */
.dxss-brbe {
	position: absolute;
	z-index: 7;
	border-bottom: 2px solid #7493C0;
}
/* DX Spreadsheet Left Range Border Element */
.dxss-lrbe {
	position: absolute;
	z-index: 7;
	border-left: 2px solid #7493C0;
}
/* DX Spreadsheet Cell Selected border */
.dxss-csb {
	position: absolute;
	z-index: 8;
	border: 2px solid #7493C0;
}
/* DX Spreadsheet Drawing Box Selected border */
.dxss-dbse {
	position: absolute;
	z-index: 10; /* To be above the dxss-db */
	border: 1px solid #5A93D3;
    cursor: move;
}

/* DX Spreadsheet Cell Editor Element */
.dxss-cee {
	position: absolute;		   /*the same -dxss-cfe */
	border: 2px solid #7493C0; /*the same -dxss-cfe */
	z-index: 1000;
    resize: none;
    height: 1em;
    outline: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.dxss-dbse .corner {
    border: 1px solid #989898;
    position: absolute;
    width: 9px!important;
    height: 9px;
    background-color: #F2FAFB;
    z-index: 9;
    margin-top: -6px;
    margin-left: -6px;
    border-radius: 5px;
}
.dxss-dbse .cornerTouch 
{
	border: 1px solid #989898;
    position: absolute;
	width: 15px!important;
	height: 15px;
	margin-top: -9px;
    margin-left: -9px;
    border-radius: 50%;
}
.corner.ne,
.corner.e,
.corner.se {
	margin-left: -5px;
}
.cornerTouch.ne,
.cornerTouch.e,
.cornerTouch.se {
	margin-left: -8px;
}
.corner.sw,
.corner.s,
.corner.se {
	margin-top: -5px;
}
.cornerTouch.sw,
.cornerTouch.s,
.cornerTouch.se {
	margin-top: -8px;
}

.corner.n,
.corner.e,
.corner.s,
.corner.w {
	border-radius: 3px
}

.corner.nw {
    left: 0;
    top: 0;
    cursor:nw-resize;
}
.corner.ne {
    left: 100%;
    top: 0;
    cursor:ne-resize;
}
.corner.se {
    left: 100%;
    top: 100%;
    cursor:se-resize;
}
.corner.sw {
    left: 0;
    top: 100%;
    cursor:sw-resize;
}

.corner.n {
    left: 50%;
    top:0;
    cursor:n-resize;
}
.corner.e {
    left: 100%;
    top:50%;
    cursor:e-resize;
}
.corner.s {
    left: 50%;
    top:100%;
    cursor:s-resize;
}
.corner.w {
    left: 0;
    top:50%;
    cursor:w-resize;
}

.dxss-colHeader,
.dxss-rowHeader,
.dxss-grid
{
    position: absolute;
	z-index: 1;
    overflow: hidden;
    width: 0;
    height: 0;
	border-right: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
}
.dxss-colHeader .dxss-htd,
.dxss-rowHeader .dxss-htd {
	cursor: pointer;
}
.dxss-colHeader.resizing .dxss-htd,
.dxss-colHeader.resizing .dxss-v
{
	cursor: w-resize;
}
.dxss-rowHeader.resizing .dxss-htd,
.dxss-rowHeader.resizing .dxss-h  
{
	cursor: n-resize;
}
.dxss-colHeader
{
    border-bottom: 1px solid #d4d4d4;
	border-left: 1px solid #d4d4d4;
}
.dxss-rowHeader
{
    border-right: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
}
.dxss-fc
{
    width: 1000000px;
    clear: both;
}
.dxss-ts,
.dxss-bs
{
    width: 1px;
    height: 50000px;
}
.dxss-ls,
.dxss-rs
{
    height: 1px;
    width: 50000px;
}
.dxss-ls,
.dxss-rs,
.dxss-tc
{
    float: left;
}
.dxss-bs
{
    clear: both;
}
.dxss-tc
{
    position: relative;
}

.dxss-sc
{
    position: absolute;
    overflow: scroll;
    width: 0;
    height: 0;
}

.dxss-gt
{
    float: left;
    position: relative;
}
.dxss-ht
{
    position: relative;
}
.dxss-fc .dxss-ht
{
    float: left;
}
.dxss-htd
{
    position: absolute;
    text-align: center;
    overflow: hidden;
}

.dxss-rowHeader .dxss-tc
{
    width: 100%;
    float: none;
}
.dxss-rowHeader .dxss-ht
{
    width: 100%;
}
.dxss-rowHeader .dxss-htd
{
    left: 0;
    width: 100%;
}
.dxss-colHeader .dxss-htd
{
    top: 0;
    height: 100%;
}
/* Vertical extended area*/
.dxss-vea
{
	width: 1px;
	display: block;
}
/* Horizontal extended area*/
.dxss-hea
{
	height: 1px;
	display: inline;
}

/* Grid Lines */
.dxss-gl
{
    width: 100%;
    height: 100%;
}
.dxss-gl .dxss-v,
.dxss-gl .dxss-h
{
    position: absolute;
    z-index: 1;
    border-style: solid;
    border-color: #d4d4d4;
    border-width: 0;
}
.dxss-gl .dxss-v
{
    top: 0;
	width: 0;
	height: 100%;
    border-left-width: 1px;
}
.dxss-gl .dxss-h
{
    left: 0;
	width: 100%;
	height: 0;
    border-top-width: 1px;
}
.dxss-ht .dxss-h.db
{
	height: 3px;
	border-bottom-width: 1px;
	margin-top: -2px;
}
.dxss-ht .dxss-v.db
{
	width: 3px;
	border-right-width: 1px;
	margin-left: -2px;
}

.dxss-hideGridLines .dxss-grid .dxss-gl .dxss-h,
.dxss-hideGridLines .dxss-grid .dxss-gl .dxss-v 
{
	border: none;
}

/* Resizing */
.dxss-hrg,
.dxss-vrg
{
    position: absolute;
    background: #7493C0;
    z-index: 2;
}
.dxss-hrg
{
    left: 0!important;
}
.dxss-vrg
{
    top: 0!important;
}
.dxss-tre 
{
	position: absolute;
	width: 20px;
	height: 20px;
}
.dxss-h .dxss-tre
{
	top: -11px;
	-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
.dxss-v .dxss-tre
{
	left: -11px;
}

.dxss-rmc,
.dxss-rmcv,
.dxss-rmch
{
    position: absolute;
}
.dxss-rowHeader .dxss-rmc,
.dxss-rmch
{
    width: 100%;
}
.dxss-colHeader .dxss-rmc,
.dxss-rmcv
{
    height: 100%;
}
.dxss-rmch
{
    left: 0;
}
.dxss-rmcv
{
    top: 0;
}

.dxr-itemDisabled img
{
	opacity: .35;
	filter: alpha(opacity=35);
}

.dxss-wrap 
{
	-moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
	white-space: pre-wrap;
}

/* DX Spreadsheet Borders */

.dxss-bt-t,
.dxss-bt-h,
.dxss-bt-d,
.dxss-bt-da,
.dxss-bt-ddd,
.dxss-bt-ddd,
.dxss-bt-m,
.dxss-bt-md,
.dxss-bt-mdd,
.dxss-bt-mddd,
.dxss-bt-sdd,
.dxss-bt-dbl,
.dxss-bt-tk {
	position: absolute;
	z-index: 6;
	border-color: black;
	border-width: 1px;
	border-left-style: solid;
	border-top-style: solid;
}

.dxss-bt-m,
.dxss-bt-md,
.dxss-bt-mdd,
.dxss-bt-mddd,
.dxss-bt-sdd {
	border-width: 2px;
}
.dxss-bt-dbl,
.dxss-bt-tk {
	border-width: 3px;
}

.dxss-bt-da,
.dxss-bt-md,
.dxss-bt-mdd,
.dxss-bt-sdd {
	border-left-style: dashed;
	border-top-style: dashed;
}
.dxss-bt-d,
.DashDotDot,
.dxss-bt-mddd {
	border-left-style: dotted;
	border-top-style: dotted;
}
.dxss-bt-dbl {
	border-left-style: double;
	border-top-style: double;
}

.dxss-v.dxss-bt-t,
.dxss-v.dxss-bt-h,
.dxss-v.dxss-bt-d,
.dxss-v.dxss-bt-da,
.dxss-v.dxss-bt-ddd,
.dxss-v.dxss-bt-ddd,
.dxss-v.dxss-bt-m,
.dxss-v.dxss-bt-md,
.dxss-v.dxss-bt-mdd,
.dxss-v.dxss-bt-mddd,
.dxss-v.dxss-bt-sdd,
.dxss-v.dxss-bt-dbl,
.dxss-v.dxss-bt-tk {
	border-top-style: none;
}

.dxss-h.dxss-bt-t,
.dxss-h.dxss-bt-h,
.dxss-h.dxss-bt-d,
.dxss-h.dxss-bt-da,
.dxss-h.dxss-bt-ddd,
.dxss-h.dxss-bt-ddd,
.dxss-h.dxss-bt-m,
.dxss-h.dxss-bt-md,
.dxss-h.dxss-bt-mdd,
.dxss-h.dxss-bt-mddd,
.dxss-h.dxss-bt-sdd,
.dxss-h.dxss-bt-dbl,
.dxss-h.dxss-bt-tk {
	border-left-style: none;
}
.dxss-supportFrame
{
	top: -100px;
	left: -100px;
	overflow: hidden;
	position: absolute;
	border-style: none;
}
.dxss-hlh
{
	background-color: #e1e1e1;
}
.dxssControlSys .dxm-disabled .dxm-pImage
{
	opacity: 0.2;
}
/*Tab sample strip control*/
.dxssControlSys .dxtc-bottom .dxss-tcer 
{
	display: none;
}
/*Dialogs Style*/
.dxssDlgFindAndReplaceForm  .dxssDlgContentCell,
.dxssDlgChartChangeHorizontalAxisTitleForm .dxssDlgContentCell,
.dxssDlgChartChangeVerticalAxisTitleForm .dxssDlgContentCell,
.dxssDlgChartChangeTitleForm .dxssDlgContentCell,
.dxssDlgModifyChartLayoutForm .dxssDlgContentCell,
.dxssDlgChartSelectData .dxssDlgContentCell,
.dxssDlgChangeChartType .dxssDlgContentCell,
.dxssDlgUnhideSheetForm .dxssDlgContentCell,
.dxssDlgDefaultColumnWidthForm .dxssDlgContentCell,
.dxssDlgColumnWidthForm .dxssDlgContentCell,
.dxssDlgRowHeightForm .dxssDlgContentCell,
.dxssDlgSaveFileAsForm .dxssDlgContentCell,
.dxssDlgOpenFileForm .dxssDlgContentCell,
.dxssDlgInsertImageForm .dxssDlgContentCell,
.dxssDlgInsertLinkForm .dxssDlgContentCell,
.dxssDlgRenameSheetForm .dxssDlgContentCell
{
	padding: 11px;
	text-align: right;
}
.dxssDlgChangeChartType .dxssDlgContentCell
{
	padding: 11px;
	text-align: left;
}
.dxssDlgFooterBtn
{
    width: 80px;
    margin-left: 8px;
}
.dxssDlgRenameSheetForm
{
    text-align:center;
    width: 400px;
    height: 90px;
}
.dxssDlgDefaultColumnWidthForm,
.dxssDlgColumnWidthForm,
.dxssDlgRowHeightForm
{
	width: 250px;
	height: 90px;
	text-align: center;
}
.dxssDlgChartChangeTitleForm,
.dxssDlgChartChangeHorizontalAxisTitleForm,
.dxssDlgChartChangeVerticalAxisTitleForm
{
	width: 450px;
	height: 90px;
	text-align: center;
}
.dxssDlgUnhideSheetForm
{
	width: 400px;
	height: 120px;
	text-align: center;
}
.dxssDlgChartSelectData
{
	width: 600px;
	height: 90px;
	text-align: center;
}
.dxssDlgFindAndReplaceForm  .dxssDlgInputCell,
.dxssDlgModifyChartStyleForm .dxssDlgInputCell,
.dxssDlgChartChangeHorizontalAxisTitleForm .dxssDlgInputCell,
.dxssDlgChartChangeVerticalAxisTitleForm .dxssDlgInputCell,
.dxssDlgChartChangeTitleForm .dxssDlgInputCell,
.dxssDlgModifyChartLayoutForm .dxssDlgInputCell,
.dxssDlgChartSelectData .dxssDlgInputCell,
.dxssDlgChangeChartType .dxssDlgInputCell,
.dxssDlgUnhideSheetForm .dxssDlgInputCell,
.dxssDlgDefaultColumnWidthForm .dxssDlgInputCell,
.dxssDlgDColumnWidthForm .dxssDlgInputCell,
.dxssDlgRowHeightForm .dxssDlgInputCell,
.dxssDlgSaveFileAsForm .dxssDlgInputCell,
.dxssDlgOpenFileForm .dxssDlgInputCell,
.dxssDlgInsertImageForm .dxssDlgInputCell,
.dxssDlgInsertLinkForm .dxssDlgInputCell,
.dxssDlgRenameSheetForm .dxssDlgInputCell 
{
	width: 100%;	
	vertical-align: middle;
}
.dxssDlgFindAndReplaceForm  .dxssDlgCaptionCell,
.dxssDlgModifyChartStyleForm .dxssDlgCaptionCell,
.dxssDlgChartChangeHorizontalAxisTitleForm .dxssDlgCaptionCell,
.dxssDlgChartChangeVerticalAxisTitleForm .dxssDlgCaptionCell,
.dxssDlgChartChangeTitleForm .dxssDlgCaptionCell,
.dxssDlgModifyChartLayoutForm .dxssDlgCaptionCell,
.dxssDlgChartSelectData .dxssDlgCaptionCell,
.dxssDlgChangeChartType .dxssDlgCaptionCell,
.dxssDlgUnhideSheetForm .dxssDlgCaptionCell,
.dxssDlgDefaultColumnWidthForm .dxssDlgCaptionCell,
.dxssDlgColumnWidthForm .dxssDlgCaptionCell,
.dxssDlgRowHeightForm .dxssDlgCaptionCell,
.dxssDlgSaveFileAsForm .dxssDlgCaptionCell,
.dxssDlgOpenFileForm .dxssDlgCaptionCell,
.dxssDlgInsertImageForm .dxssDlgCaptionCell,
.dxssDlgInsertLinkForm .dxssDlgCaptionCell,
.dxssDlgRenameSheetForm .dxssDlgCaptionCell
{
    padding-right: 9px;
    padding-top: 3px;
    vertical-align: top;
    white-space: nowrap;
}
.dxssDlgSaveFileAsForm .dxssDlgTypeRadionButtonListCell,
.dxssDlgInsertLinkForm .dxssDlgTypeRadionButtonListCell,
.dxssDlgOpenFileForm .dxssDlgTypeRadionButtonListCell,
.dxssDlgInsertImageForm .dxssDlgTypeRadionButtonListCell
{
	padding-bottom: 12px;
}
.dxssDlgSaveFileAsForm .dxssDlgSeparatorCell
{
	height: 7px;
}
.dxssDlgFindAndReplaceForm .dxssDlgSeparatorCell,
.dxssDlgInsertLinkForm .dxssDlgSeparatorCell
{
	height: 12px;
}
.dxssDlgInsertLinkForm .dxssRoundPanelContent .dxssDlgDisplayPropertiesCell 
{
    padding-bottom: 12px;
	text-align: left;
}
.dxssDlgInsertLinkForm .dxssRoundPanelContent .dxssDlgDisplayPropertiesCell .dxeBase
{
	font-weight: 700;
}
.dxssDlgInsertImageForm .dxssDlgImagePreview
{
    padding: 10px 0px;
    padding-top: 5px;
}
.dxssDlgSaveFileAsForm .dxssDlgFromTheWeb,
.dxssDlgOpenFileForm .dxssDlgFromTheWeb,
.dxssDlgInsertImageForm .dxssDlgFromTheWeb,
.dxssDlgInsertImageForm .dxssDlgFromLocal,
.dxssDlgSaveFileAsForm .dxssDlgSaveToLocal,
.dxssDlgOpenFileForm .dxssDlgFromLocal
{
    width: 100%;
	text-align: left;
}
.dxssDlgInsertImageForm .dxssDlgImagePreviewCell
{
    text-align: center;
    width: 100%;
    height: 170px;
}
.dxssDlgModifyChartLayoutForm .dxssModifyChartLayoutContenPanel
{
    width: 390px;
    text-align: left;
}
.dxssDlgModifyChartStyleForm .dxssModifyChartStyleContenPanel
{
	width: 525px;
	height: 275px;
	overflow: scroll;
    text-align: left;
	background-color: white;
}
.dxssDlgModifyChartStyleForm .dxssModifyChartStyleContenPanel .dxss-chartsbtn
{
	width: 113px;
	height: 67px;
}
.dxssDlgFindAndReplaceForm  .dxssDlgCaptionIndent,
.dxssDlgModifyChartStyleForm .dxssDlgCaptionIndent,
.dxssDlgChartChangeHorizontalAxisTitleForm .dxssDlgCaptionIndent,
.dxssDlgChartChangeVerticalAxisTitleForm .dxssDlgCaptionIndent,
.dxssDlgChartChangeTitleForm .dxssDlgCaptionIndent,
.dxssDlgModifyChartLayoutForm .dxssDlgCaptionIndent,
.dxssDlgChartSelectData .dxssDlgCaptionIndent,
.dxssDlgChangeChartType .dxssDlgCaptionIndent,
.dxssDlgUnhideSheetForm .dxssDlgCaptionIndent,
.dxssDlgSaveFileAsForm .dxssDlgCaptionIndent,
.dxssDlgOpenFileForm .dxssDlgCaptionIndent,
.dxssDlgInsertLinkForm .dxssDlgCaptionIndent,
.dxssDlgInsertImageForm .dxssDlgCaptionIndent
{
	overflow: hidden;
	height: 5px;
}
.dxssDlgFindAndReplaceForm  .dxssDlgFooter,
.dxssDlgModifyChartStyleForm .dxssDlgFooter,
.dxssDlgChartChangeHorizontalAxisTitleForm .dxssDlgFooter,
.dxssDlgChartChangeVerticalAxisTitleForm .dxssDlgFooter,
.dxssDlgChartChangeTitleForm .dxssDlgFooter,
.dxssDlgModifyChartLayoutForm .dxssDlgFooter,
.dxssDlgChartSelectData .dxssDlgFooter,
.dxssDlgChangeChartType .dxssDlgFooter,
.dxssDlgSaveFileAsForm .dxssDlgFooter,
.dxssDlgOpenFileForm .dxssDlgFooter,
.dxssDlgInsertImageForm .dxssDlgFooter,
.dxssDlgInsertLinkForm .dxssDlgFooter,
.dxssDlgRenameSheetForm .dxssDlgFooter
{
	text-align: right;
	height: 27px;
	padding: 10px 10px 11px 100px;
}
.dxssDlgUnhideSheetForm .dxssDlgFooter,
.dxssDlgDefaultColumnWidthForm .dxssDlgFooter,
.dxssDlgColumnWidthForm .dxssDlgFooter,
.dxssDlgRowHeightForm .dxssDlgFooter
{
	text-align: right;
	height: 27px;
	padding: 10px 10px 11px 50px;
}
.dxssDlgChartChangeHorizontalAxisTitleForm .dxssRoundPanelContent,
.dxssDlgChartChangeTitleForm .dxssRoundPanelContent,
.dxssDlgChartChangeVerticalAxisTitleForm .dxssRoundPanelContent,
.dxssDlgChartSelectData .dxssRoundPanelContent,
.dxssDlgColumnWidthForm .dxssRoundPanelContent,
.dxssDlgDefaultColumnWidthForm .dxssRoundPanelContent,
.dxssDlgInsertLinkForm .dxssRoundPanelContent,
.dxssDlgInsertImageForm .dxssRoundPanelContent,
.dxssDlgRenameSheetForm .dxssRoundPanelContent,
.dxssDlgRowHeightForm .dxssRoundPanelContent,
.dxssDlgUnhideSheetForm .dxssRoundPanelContent
{
	padding-top: 12px;
	padding-bottom: 12px;
	width: 100%;
}
/*When TextBox have error frame padding-bottom must set to 0*/
.dxssDlgDefaultColumnWidthForm .dxssDlgContentCell .dxssRoundPanelContent,
.dxssDlgChartSelectData .dxssDlgContentCell .dxssRoundPanelContent,
.dxssDlgColumnWidthForm .dxssDlgContentCell .dxssRoundPanelContent,
.dxssDlgRenameSheetForm .dxssDlgContentCell .dxssRoundPanelContent,
.dxssDlgRowHeightForm  .dxssDlgContentCell .dxssRoundPanelContent
{
	padding-bottom: 0px;
}
.dxssControl .dxssDlgFindAndReplaceForm .dxtcLite,
.dxssControl .dxssDlgChangeChartType .dxtcLite
{
	padding-bottom: 0px;
	background-color: transparent;
}
.dxssDlgPageControl
{
	width: 480px;
	height: 260px;
}
.dxss-chartsbtn
{
	padding: 3px;
	margin: 5px;
}
.dxss-chartPresetContainer
{
    width: 100%;
    display: none;
}
.dxssDlgFindAndReplaceForm .dxssDlgComboCell
{
	width: 200px;
	vertical-align: middle;
	padding-right: 30px;
}
.dxssDlgFindAndReplaceForm .dxssDlgSearchArea
{
	text-align: left;
}

.dxssModifyChartStyleContenPanel .dxbButtonSys
{
	background: none;
	border: 1px solid transparent;
	box-shadow: none;
}
.dxssModifyChartStyleContenPanel .dxbButtonSys
{
	padding: 0;
}
.dxssModifyChartStyleContenPanel .dxbButtonSys div.dxb
{
	padding: 0;
}
.dxssControl_Youthful 
{
	border-style: solid;
	border-width: 1px;
	border-color: white;
	font: 12px Tahoma, Geneva, sans-serif;
}
.dxssControl_Youthful .dxrControl_Youthful .dxr-tabContent 
{
	border-left-style: none;
	border-right-style: none;
}
.dxssControl_Youthful .dxss-gl .dxss-v,
.dxssControl_Youthful .dxss-gl .dxss-h 
{
	border-color: #D3E4A6;
}
.dxssControl_Youthful .dxss-rowHeader 
{	
	border-right: 1px solid #D3E4A6;
	border-top: 1px solid #D3E4A6;
}
.dxssControl_Youthful .dxss-colHeader 
{
	border-bottom: 1px solid #D3E4A6;
	border-left: 1px solid #D3E4A6;
}
.dxssControl_Youthful .dxss-crse 
{
	background-color: #ffaf4d;
	opacity: 0.20;
}
.dxssControl_Youthful .dxss-trbe 
{
	border-top-color: #ffaf4d;
}
.dxssControl_Youthful .dxss-rrbe 
{
	border-right-color: #ffaf4d;
}
.dxssControl_Youthful .dxss-brbe 
{
	border-bottom-color: #ffaf4d;
}
.dxssControl_Youthful .dxss-lrbe 
{
	border-left-color: #ffaf4d;
}
.dxssControl_Youthful .dxtcLite_Youthful.dxtc-bottom .dxtc-stripContainer .dxtc-leftIndent
{
	width: 8px;
}
.dxssControl_Youthful .dxss-hrg,
.dxssControl_Youthful .dxss-vrg 
{
	background-color: #ffaf4d;
}
.dxssControl_Youthful .dxss-md {
	border-left: 1px solid #D3E4A6 !important;
	border-right: 1px solid #D3E4A6 !important;
	border-bottom: 1px solid #D3E4A6 !important;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.dxssControl_Youthful .dxss-tse
{
	border-color: #ffaf4d;
}
.dxssControl_Youthful .dxss-tre
{
	background: url('/DXR.axd?r=0_5429-SP_nc');
}
/* Loading panel */
.dxssLoadingDiv_Youthful
{
    background: white;
    opacity: 0.85 !important;
    filter: alpha(opacity=85);
}
.dxssLoadingPanel_Youthful
{
	font: 12px Tahoma, Geneva, sans-serif;
	color: #303030;
	border: 1px solid #9BC424;
	background-color: White;
}
.dxssLoadingPanel_Youthful td.dx
{
    white-space: nowrap;
    text-align: center;
    padding: 12px;
}
.dxssLoadingPanel_Youthful .dxlp-loadingImage
{
	background-image: url('/DXR.axd?r=0_5452-SP_nc');
	height: 7px;
	width: 72px;
}
/* --------------Dialogs----------------- */
.dxpcLite_Youthful .dxssDlgFooter
{
	background-color: #9CC525;
	border-top: 1px white solid;
}
.dxpcLite_Youthful .dxssDlgInsertImageForm .dxssDlgImagePreviewCell
{
    color: #878787;
    border: dashed 1px White;
}
.dxssControl_Youthful .dxrpControl_Youthful .dxrpcontent
{
	padding: 14px !important;
}

.dxssModifyChartStyleContenPanel .dxbButtonHover_Youthful
{
	color: #000000;
	background-color: #F8FCF1;
	border: 1px Solid #AFC185;
}
.dxssModifyChartStyleContenPanel .dxbButtonChecked_Youthful
{
	color: #FFFFFF;
	background: #F4921B none;
	border: 1px Solid #F4921B;
}
.dxssModifyChartStyleContenPanel .dxbButtonPressed_Youthful
{
	color: #000000;
	background-color: #CCD7B1;
	border: 1px Solid #AFC185;
}
.dxIcon_actions_add_16x16,
.dxIcon_actions_add_16x16_disabled,
.dxIcon_actions_addfile_16x16,
.dxIcon_actions_addfile_16x16_disabled,
.dxIcon_reports_addfooter_16x16,
.dxIcon_reports_addfooter_16x16_disabled,
.dxIcon_reports_addgroupfooter_16x16,
.dxIcon_reports_addgroupfooter_16x16_disabled,
.dxIcon_reports_addgroupheader_16x16,
.dxIcon_reports_addgroupheader_16x16_disabled,
.dxIcon_reports_addheader_16x16,
.dxIcon_reports_addheader_16x16_disabled,
.dxIcon_actions_additem_16x16,
.dxIcon_actions_additem_16x16_disabled,
.dxIcon_data_addnewdatasource_16x16,
.dxIcon_data_addnewdatasource_16x16_disabled,
.dxIcon_format_aligncenter_16x16,
.dxIcon_format_aligncenter_16x16_disabled,
.dxIcon_alignment_alignhorizontalbottom_16x16,
.dxIcon_alignment_alignhorizontalbottom_16x16_disabled,
.dxIcon_alignment_alignhorizontalbottom2_16x16,
.dxIcon_alignment_alignhorizontalbottom2_16x16_disabled,
.dxIcon_alignment_alignhorizontalcenter_16x16,
.dxIcon_alignment_alignhorizontalcenter_16x16_disabled,
.dxIcon_alignment_alignhorizontalcenter2_16x16,
.dxIcon_alignment_alignhorizontalcenter2_16x16_disabled,
.dxIcon_alignment_alignhorizontaltop_16x16,
.dxIcon_alignment_alignhorizontaltop_16x16_disabled,
.dxIcon_alignment_alignhorizontaltop2_16x16,
.dxIcon_alignment_alignhorizontaltop2_16x16_disabled,
.dxIcon_format_alignjustify_16x16,
.dxIcon_format_alignjustify_16x16_disabled,
.dxIcon_format_alignleft_16x16,
.dxIcon_format_alignleft_16x16_disabled,
.dxIcon_format_alignright_16x16,
.dxIcon_format_alignright_16x16_disabled,
.dxIcon_alignment_alignverticalcenter_16x16,
.dxIcon_alignment_alignverticalcenter_16x16_disabled,
.dxIcon_alignment_alignverticalcenter2_16x16,
.dxIcon_alignment_alignverticalcenter2_16x16_disabled,
.dxIcon_alignment_alignverticalleft_16x16,
.dxIcon_alignment_alignverticalleft_16x16_disabled,
.dxIcon_alignment_alignverticalleft2_16x16,
.dxIcon_alignment_alignverticalleft2_16x16_disabled,
.dxIcon_alignment_alignverticalright_16x16,
.dxIcon_alignment_alignverticalright_16x16_disabled,
.dxIcon_alignment_alignverticalright2_16x16,
.dxIcon_alignment_alignverticalright2_16x16_disabled,
.dxIcon_mail_announcement_16x16,
.dxIcon_mail_announcement_16x16_disabled,
.dxIcon_actions_apply_16x16,
.dxIcon_actions_apply_16x16_disabled,
.dxIcon_chart_area_16x16,
.dxIcon_chart_area_16x16_disabled,
.dxIcon_support_article_16x16,
.dxIcon_support_article_16x16_disabled,
.dxIcon_people_assignto_16x16,
.dxIcon_people_assignto_16x16_disabled,
.dxIcon_people_assigntome_16x16,
.dxIcon_people_assigntome_16x16_disabled,
.dxIcon_mail_attach_16x16,
.dxIcon_mail_attach_16x16_disabled,
.dxIcon_mail_attachment_16x16,
.dxIcon_mail_attachment_16x16_disabled,
.dxIcon_navigation_backward_16x16,
.dxIcon_navigation_backward_16x16_disabled,
.dxIcon_chart_bar_16x16,
.dxIcon_chart_bar_16x16_disabled,
.dxIcon_content_barcode_16x16,
.dxIcon_content_barcode_16x16_disabled,
.dxIcon_arrange_behindtext_16x16,
.dxIcon_arrange_behindtext_16x16_disabled,
.dxIcon_format_bold_16x16,
.dxIcon_format_bold_16x16_disabled,
.dxIcon_support_breakingchange_16x16,
.dxIcon_support_breakingchange_16x16_disabled,
.dxIcon_arrange_bringforward_16x16,
.dxIcon_arrange_bringforward_16x16_disabled,
.dxIcon_arrange_bringtofront_16x16,
.dxIcon_arrange_bringtofront_16x16_disabled,
.dxIcon_arrange_bringtofrontoftext_16x16,
.dxIcon_arrange_bringtofrontoftext_16x16_disabled,
.dxIcon_chart_bubble_16x16,
.dxIcon_chart_bubble_16x16_disabled,
.dxIcon_programming_bugreport_16x16,
.dxIcon_programming_bugreport_16x16_disabled,
.dxIcon_programming_build_16x16,
.dxIcon_programming_build_16x16_disabled,
.dxIcon_scheduling_calendar_16x16,
.dxIcon_scheduling_calendar_16x16_disabled,
.dxIcon_actions_cancel_16x16,
.dxIcon_actions_cancel_16x16_disabled,
.dxIcon_grid_cards_16x16,
.dxIcon_grid_cards_16x16_disabled,
.dxIcon_scheduling_cellsautoheight_16x16,
.dxIcon_scheduling_cellsautoheight_16x16_disabled,
.dxIcon_format_changefontstyle_16x16,
.dxIcon_format_changefontstyle_16x16_disabled,
.dxIcon_chart_chart_16x16,
.dxIcon_chart_chart_16x16_disabled,
.dxIcon_chart_chartsrotate_16x16,
.dxIcon_chart_chartsrotate_16x16_disabled,
.dxIcon_chart_chartsshowlegend_16x16,
.dxIcon_chart_chartsshowlegend_16x16_disabled,
.dxIcon_chart_chartyaxissettings_16x16,
.dxIcon_chart_chartyaxissettings_16x16_disabled,
.dxIcon_content_checkbox_16x16,
.dxIcon_content_checkbox_16x16_disabled,
.dxIcon_actions_clear_16x16,
.dxIcon_actions_clear_16x16_disabled,
.dxIcon_filter_clearfilter_16x16,
.dxIcon_filter_clearfilter_16x16_disabled,
.dxIcon_actions_clearformatting_16x16,
.dxIcon_actions_clearformatting_16x16_disabled,
.dxIcon_actions_clip_16x16,
.dxIcon_actions_clip_16x16_disabled,
.dxIcon_actions_close_16x16,
.dxIcon_actions_close_16x16_disabled,
.dxIcon_miscellaneous_colors_16x16,
.dxIcon_miscellaneous_colors_16x16_disabled,
.dxIcon_format_columns_16x16,
.dxIcon_format_columns_16x16_disabled,
.dxIcon_miscellaneous_comment_16x16,
.dxIcon_miscellaneous_comment_16x16_disabled,
.dxIcon_mail_contact_16x16,
.dxIcon_mail_contact_16x16_disabled,
.dxIcon_miscellaneous_content_16x16,
.dxIcon_miscellaneous_content_16x16_disabled,
.dxIcon_alignment_contentarrangeincolums_16x16,
.dxIcon_alignment_contentarrangeincolums_16x16_disabled,
.dxIcon_alignment_contentarrangeinrows_16x16,
.dxIcon_alignment_contentarrangeinrows_16x16_disabled,
.dxIcon_alignment_contentautoarrange_16x16,
.dxIcon_alignment_contentautoarrange_16x16_disabled,
.dxIcon_actions_convert_16x16,
.dxIcon_actions_convert_16x16_disabled,
.dxIcon_reports_converttoparagraphs_16x16,
.dxIcon_reports_converttoparagraphs_16x16_disabled,
.dxIcon_edit_copy_16x16,
.dxIcon_edit_copy_16x16_disabled,
.dxIcon_miscellaneous_country_16x16,
.dxIcon_miscellaneous_country_16x16_disabled,
.dxIcon_filter_crossdatasourcefiltering_16x16,
.dxIcon_filter_crossdatasourcefiltering_16x16_disabled,
.dxIcon_programming_csharp_16x16,
.dxIcon_programming_csharp_16x16_disabled,
.dxIcon_miscellaneous_currency_16x16,
.dxIcon_miscellaneous_currency_16x16_disabled,
.dxIcon_people_customer_16x16,
.dxIcon_people_customer_16x16_disabled,
.dxIcon_edit_customization_16x16,
.dxIcon_edit_customization_16x16_disabled,
.dxIcon_grid_customizegrid_16x16,
.dxIcon_grid_customizegrid_16x16_disabled,
.dxIcon_edit_cut_16x16,
.dxIcon_edit_cut_16x16_disabled,
.dxIcon_data_database_16x16,
.dxIcon_data_database_16x16_disabled,
.dxIcon_scheduling_dayview_16x16,
.dxIcon_scheduling_dayview_16x16_disabled,
.dxIcon_edit_delete_16x16,
.dxIcon_edit_delete_16x16_disabled,
.dxIcon_data_deletedatasource_16x16,
.dxIcon_data_deletedatasource_16x16_disabled,
.dxIcon_reports_deletefooter_16x16,
.dxIcon_reports_deletefooter_16x16_disabled,
.dxIcon_reports_deletegroupfooter_16x16,
.dxIcon_reports_deletegroupfooter_16x16_disabled,
.dxIcon_reports_deletegroupheader_16x16,
.dxIcon_reports_deletegroupheader_16x16_disabled,
.dxIcon_reports_deleteheader_16x16,
.dxIcon_reports_deleteheader_16x16_disabled,
.dxIcon_actions_deletelist_16x16,
.dxIcon_actions_deletelist_16x16_disabled,
.dxIcon_actions_deletelist2_16x16,
.dxIcon_actions_deletelist2_16x16_disabled,
.dxIcon_miscellaneous_design_16x16,
.dxIcon_miscellaneous_design_16x16_disabled,
.dxIcon_navigation_documentmap_16x16,
.dxIcon_navigation_documentmap_16x16_disabled,
.dxIcon_arrows_doublefirst_16x16,
.dxIcon_arrows_doublefirst_16x16_disabled,
.dxIcon_arrows_doublelast_16x16,
.dxIcon_arrows_doublelast_16x16_disabled,
.dxIcon_arrows_doublenext_16x16,
.dxIcon_arrows_doublenext_16x16_disabled,
.dxIcon_arrows_doubleprev_16x16,
.dxIcon_arrows_doubleprev_16x16_disabled,
.dxIcon_actions_download_16x16,
.dxIcon_actions_download_16x16_disabled,
.dxIcon_chart_drilldown_16x16,
.dxIcon_chart_drilldown_16x16_disabled,
.dxIcon_chart_drilldownonarguments_chart_16x16,
.dxIcon_chart_drilldownonarguments_chart_16x16_disabled,
.dxIcon_chart_drilldownonarguments_pie_16x16,
.dxIcon_chart_drilldownonarguments_pie_16x16_disabled,
.dxIcon_chart_drilldownonseries_chart_16x16,
.dxIcon_chart_drilldownonseries_chart_16x16_disabled,
.dxIcon_chart_drilldownonseries_pie_16x16,
.dxIcon_chart_drilldownonseries_pie_16x16_disabled,
.dxIcon_edit_edit_16x16,
.dxIcon_edit_edit_16x16_disabled,
.dxIcon_mail_editcontact_16x16,
.dxIcon_mail_editcontact_16x16_disabled,
.dxIcon_data_editdatasource_16x16,
.dxIcon_data_editdatasource_16x16_disabled,
.dxIcon_mail_editfeed_16x16,
.dxIcon_mail_editfeed_16x16_disabled,
.dxIcon_reports_editpagehf_16x16,
.dxIcon_reports_editpagehf_16x16_disabled,
.dxIcon_tasks_edittask_16x16,
.dxIcon_tasks_edittask_16x16_disabled,
.dxIcon_arrange_editwrappoints_16x16,
.dxIcon_arrange_editwrappoints_16x16_disabled,
.dxIcon_mail_emailtemplate_16x16,
.dxIcon_mail_emailtemplate_16x16_disabled,
.dxIcon_people_employee_16x16,
.dxIcon_people_employee_16x16_disabled,
.dxIcon_reports_emptyparagraphseparator_16x16,
.dxIcon_reports_emptyparagraphseparator_16x16_disabled,
.dxIcon_reports_emptytablerowseparator_16x16,
.dxIcon_reports_emptytablerowseparator_16x16_disabled,
.dxIcon_support_example_16x16,
.dxIcon_support_example_16x16_disabled,
.dxIcon_export_export_16x16,
.dxIcon_export_export_16x16_disabled,
.dxIcon_export_exportfile_16x16,
.dxIcon_export_exportfile_16x16_disabled,
.dxIcon_export_exporttocsv_16x16,
.dxIcon_export_exporttocsv_16x16_disabled,
.dxIcon_export_exporttodoc_16x16,
.dxIcon_export_exporttodoc_16x16_disabled,
.dxIcon_export_exporttodocx_16x16,
.dxIcon_export_exporttodocx_16x16_disabled,
.dxIcon_export_exporttoepub_16x16,
.dxIcon_export_exporttoepub_16x16_disabled,
.dxIcon_export_exporttohtml_16x16,
.dxIcon_export_exporttohtml_16x16_disabled,
.dxIcon_export_exporttoimg_16x16,
.dxIcon_export_exporttoimg_16x16_disabled,
.dxIcon_export_exporttomht_16x16,
.dxIcon_export_exporttomht_16x16_disabled,
.dxIcon_export_exporttoodt_16x16,
.dxIcon_export_exporttoodt_16x16_disabled,
.dxIcon_export_exporttopdf_16x16,
.dxIcon_export_exporttopdf_16x16_disabled,
.dxIcon_export_exporttortf_16x16,
.dxIcon_export_exporttortf_16x16_disabled,
.dxIcon_export_exporttotxt_16x16,
.dxIcon_export_exporttotxt_16x16_disabled,
.dxIcon_export_exporttoxls_16x16,
.dxIcon_export_exporttoxls_16x16_disabled,
.dxIcon_export_exporttoxlsx_16x16,
.dxIcon_export_exporttoxlsx_16x16_disabled,
.dxIcon_export_exporttoxml_16x16,
.dxIcon_export_exporttoxml_16x16_disabled,
.dxIcon_export_exporttoxps_16x16,
.dxIcon_export_exporttoxps_16x16_disabled,
.dxIcon_support_feature_16x16,
.dxIcon_support_feature_16x16_disabled,
.dxIcon_mail_feeds_16x16,
.dxIcon_mail_feeds_16x16_disabled,
.dxIcon_format_fillbackground_16x16,
.dxIcon_format_fillbackground_16x16_disabled,
.dxIcon_filter_filter_16x16,
.dxIcon_filter_filter_16x16_disabled,
.dxIcon_filter_filterbyargument_chart_16x16,
.dxIcon_filter_filterbyargument_chart_16x16_disabled,
.dxIcon_filter_filterbyargument_pie_16x16,
.dxIcon_filter_filterbyargument_pie_16x16_disabled,
.dxIcon_filter_filterbyseries_chart_16x16,
.dxIcon_filter_filterbyseries_chart_16x16_disabled,
.dxIcon_filter_filterbyseries_pie_16x16,
.dxIcon_filter_filterbyseries_pie_16x16_disabled,
.dxIcon_find_find_16x16,
.dxIcon_find_find_16x16_disabled,
.dxIcon_find_findbyid_16x16,
.dxIcon_find_findbyid_16x16_disabled,
.dxIcon_find_findcustomers_16x16,
.dxIcon_find_findcustomers_16x16_disabled,
.dxIcon_arrows_first_16x16,
.dxIcon_arrows_first_16x16_disabled,
.dxIcon_miscellaneous_folderpanel_16x16,
.dxIcon_miscellaneous_folderpanel_16x16_disabled,
.dxIcon_format_fontsize_16x16,
.dxIcon_format_fontsize_16x16_disabled,
.dxIcon_format_fontsizedecrease_16x16,
.dxIcon_format_fontsizedecrease_16x16_disabled,
.dxIcon_format_fontsizeincrease_16x16,
.dxIcon_format_fontsizeincrease_16x16_disabled,
.dxIcon_programming_forcetesting_16x16,
.dxIcon_programming_forcetesting_16x16_disabled,
.dxIcon_navigation_forward_16x16,
.dxIcon_navigation_forward_16x16_disabled,
.dxIcon_chart_fullstackedarea_16x16,
.dxIcon_chart_fullstackedarea_16x16_disabled,
.dxIcon_chart_fullstackedbar_16x16,
.dxIcon_chart_fullstackedbar_16x16_disabled,
.dxIcon_chart_fullstackedline_16x16,
.dxIcon_chart_fullstackedline_16x16_disabled,
.dxIcon_chart_fullstackedsplinearea_16x16,
.dxIcon_chart_fullstackedsplinearea_16x16_disabled,
.dxIcon_gauges_gaugestylefullcircular_16x16,
.dxIcon_gauges_gaugestylefullcircular_16x16_disabled,
.dxIcon_gauges_gaugestylehalfcircular_16x16,
.dxIcon_gauges_gaugestylehalfcircular_16x16_disabled,
.dxIcon_gauges_gaugestyleleftquartercircular_16x16,
.dxIcon_gauges_gaugestyleleftquartercircular_16x16_disabled,
.dxIcon_gauges_gaugestylelinearhorizontal_16x16,
.dxIcon_gauges_gaugestylelinearhorizontal_16x16_disabled,
.dxIcon_gauges_gaugestylelinearvertical_16x16,
.dxIcon_gauges_gaugestylelinearvertical_16x16_disabled,
.dxIcon_gauges_gaugestylerightquartercircular_16x16,
.dxIcon_gauges_gaugestylerightquartercircular_16x16_disabled,
.dxIcon_gauges_gaugestylethreeforthcircular_16x16,
.dxIcon_gauges_gaugestylethreeforthcircular_16x16_disabled,
.dxIcon_grid_grid_16x16,
.dxIcon_grid_grid_16x16_disabled,
.dxIcon_actions_group_16x16,
.dxIcon_actions_group_16x16_disabled,
.dxIcon_reports_groupfieldcollection_16x16,
.dxIcon_reports_groupfieldcollection_16x16_disabled,
.dxIcon_reports_groupfooter_16x16,
.dxIcon_reports_groupfooter_16x16_disabled,
.dxIcon_reports_groupheader_16x16,
.dxIcon_reports_groupheader_16x16_disabled,
.dxIcon_format_hiddentext_16x16,
.dxIcon_format_hiddentext_16x16_disabled,
.dxIcon_actions_hide_16x16,
.dxIcon_actions_hide_16x16_disabled,
.dxIcon_miscellaneous_highlightactiveelements_16x16,
.dxIcon_miscellaneous_highlightactiveelements_16x16_disabled,
.dxIcon_format_highlightfield_16x16,
.dxIcon_format_highlightfield_16x16_disabled,
.dxIcon_chart_highlowclose_16x16,
.dxIcon_chart_highlowclose_16x16_disabled,
.dxIcon_history_historyitem_16x16,
.dxIcon_history_historyitem_16x16_disabled,
.dxIcon_navigation_home_16x16,
.dxIcon_navigation_home_16x16_disabled,
.dxIcon_programming_ide_16x16,
.dxIcon_programming_ide_16x16_disabled,
.dxIcon_filter_ignoremasterfilter_16x16,
.dxIcon_filter_ignoremasterfilter_16x16_disabled,
.dxIcon_content_image_16x16,
.dxIcon_content_image_16x16_disabled,
.dxIcon_actions_importimage_16x16,
.dxIcon_actions_importimage_16x16_disabled,
.dxIcon_format_indentdecrease_16x16,
.dxIcon_format_indentdecrease_16x16_disabled,
.dxIcon_format_indentincrease_16x16,
.dxIcon_format_indentincrease_16x16_disabled,
.dxIcon_support_index_16x16,
.dxIcon_support_index_16x16_disabled,
.dxIcon_support_info_16x16,
.dxIcon_support_info_16x16_disabled,
.dxIcon_arrange_infrontoftext_16x16,
.dxIcon_arrange_infrontoftext_16x16_disabled,
.dxIcon_arrange_inlinewithtext_16x16,
.dxIcon_arrange_inlinewithtext_16x16_disabled,
.dxIcon_actions_insert_16x16,
.dxIcon_actions_insert_16x16_disabled,
.dxIcon_reports_insertfooter_16x16,
.dxIcon_reports_insertfooter_16x16_disabled,
.dxIcon_reports_insertheader_16x16,
.dxIcon_reports_insertheader_16x16_disabled,
.dxIcon_pages_insertpagebreak_16x16,
.dxIcon_pages_insertpagebreak_16x16_disabled,
.dxIcon_filter_insertrangefilter_16x16,
.dxIcon_filter_insertrangefilter_16x16_disabled,
.dxIcon_support_issue_16x16,
.dxIcon_support_issue_16x16_disabled,
.dxIcon_format_italic_16x16,
.dxIcon_format_italic_16x16_disabled,
.dxIcon_support_knowledgebasearticle_16x16,
.dxIcon_support_knowledgebasearticle_16x16_disabled,
.dxIcon_chart_kpi_16x16,
.dxIcon_chart_kpi_16x16_disabled,
.dxIcon_miscellaneous_language_16x16,
.dxIcon_miscellaneous_language_16x16_disabled,
.dxIcon_arrows_last_16x16,
.dxIcon_arrows_last_16x16_disabled,
.dxIcon_chart_line_16x16,
.dxIcon_chart_line_16x16_disabled,
.dxIcon_format_listbullets_16x16,
.dxIcon_format_listbullets_16x16_disabled,
.dxIcon_format_listmultilevel_16x16,
.dxIcon_format_listmultilevel_16x16_disabled,
.dxIcon_format_listnumbers_16x16,
.dxIcon_format_listnumbers_16x16_disabled,
.dxIcon_actions_loadfrom_16x16,
.dxIcon_actions_loadfrom_16x16_disabled,
.dxIcon_setup_loadpagesetup_16x16,
.dxIcon_setup_loadpagesetup_16x16_disabled,
.dxIcon_mail_mail_16x16,
.dxIcon_mail_mail_16x16_disabled,
.dxIcon_filter_masterfilter_16x16,
.dxIcon_filter_masterfilter_16x16_disabled,
.dxIcon_actions_merge_16x16,
.dxIcon_actions_merge_16x16_disabled,
.dxIcon_scheduling_monthview_16x16,
.dxIcon_scheduling_monthview_16x16_disabled,
.dxIcon_arrange_morelayoutoptions_16x16,
.dxIcon_arrange_morelayoutoptions_16x16_disabled,
.dxIcon_arrows_movedown_16x16,
.dxIcon_arrows_movedown_16x16_disabled,
.dxIcon_arrows_moveup_16x16,
.dxIcon_arrows_moveup_16x16_disabled,
.dxIcon_pages_multiplepages_16x16,
.dxIcon_pages_multiplepages_16x16_disabled,
.dxIcon_navigation_navigationbar_16x16,
.dxIcon_navigation_navigationbar_16x16_disabled,
.dxIcon_actions_new_16x16,
.dxIcon_actions_new_16x16_disabled,
.dxIcon_mail_newcontact_16x16,
.dxIcon_mail_newcontact_16x16_disabled,
.dxIcon_mail_newfeed_16x16,
.dxIcon_mail_newfeed_16x16_disabled,
.dxIcon_mail_newmail_16x16,
.dxIcon_mail_newmail_16x16_disabled,
.dxIcon_tasks_newtask_16x16,
.dxIcon_tasks_newtask_16x16_disabled,
.dxIcon_navigation_next_16x16,
.dxIcon_navigation_next_16x16_disabled,
.dxIcon_arrows_next_16x16,
.dxIcon_arrows_next_16x16_disabled,
.dxIcon_reports_none_16x16,
.dxIcon_reports_none_16x16_disabled,
.dxIcon_content_notes_16x16,
.dxIcon_content_notes_16x16_disabled,
.dxIcon_actions_open_16x16,
.dxIcon_actions_open_16x16_disabled,
.dxIcon_chart_openhighlowclosecandlestick_16x16,
.dxIcon_chart_openhighlowclosecandlestick_16x16_disabled,
.dxIcon_chart_openhighlowclosestock_16x16,
.dxIcon_chart_openhighlowclosestock_16x16_disabled,
.dxIcon_programming_operatingsyste_16x16,
.dxIcon_programming_operatingsyste_16x16_disabled,
.dxIcon_support_packageproduct_16x16,
.dxIcon_support_packageproduct_16x16_disabled,
.dxIcon_pages_pagemargins_16x16,
.dxIcon_pages_pagemargins_16x16_disabled,
.dxIcon_pages_pageorientation_16x16,
.dxIcon_pages_pageorientation_16x16_disabled,
.dxIcon_setup_pagesetup_16x16,
.dxIcon_setup_pagesetup_16x16_disabled,
.dxIcon_miscellaneous_palette_16x16,
.dxIcon_miscellaneous_palette_16x16_disabled,
.dxIcon_pages_papersize_16x16,
.dxIcon_pages_papersize_16x16_disabled,
.dxIcon_reports_parameters_16x16,
.dxIcon_reports_parameters_16x16_disabled,
.dxIcon_edit_paste_16x16,
.dxIcon_edit_paste_16x16_disabled,
.dxIcon_format_pictureshapefillcolor_16x16,
.dxIcon_format_pictureshapefillcolor_16x16_disabled,
.dxIcon_format_pictureshapeoutlinecolor_16x16,
.dxIcon_format_pictureshapeoutlinecolor_16x16_disabled,
.dxIcon_chart_pie_16x16,
.dxIcon_chart_pie_16x16_disabled,
.dxIcon_chart_pielabelsdatalabels_16x16,
.dxIcon_chart_pielabelsdatalabels_16x16_disabled,
.dxIcon_chart_pielabelstooltips_16x16,
.dxIcon_chart_pielabelstooltips_16x16_disabled,
.dxIcon_chart_piestyledonut_16x16,
.dxIcon_chart_piestyledonut_16x16_disabled,
.dxIcon_chart_piestylepie_16x16,
.dxIcon_chart_piestylepie_16x16_disabled,
.dxIcon_grid_pivot_16x16,
.dxIcon_grid_pivot_16x16_disabled,
.dxIcon_chart_point_16x16,
.dxIcon_chart_point_16x16_disabled,
.dxIcon_arrows_prev_16x16,
.dxIcon_arrows_prev_16x16_disabled,
.dxIcon_print_preview_16x16,
.dxIcon_print_preview_16x16_disabled,
.dxIcon_chart_previewchart_16x16,
.dxIcon_chart_previewchart_16x16_disabled,
.dxIcon_navigation_previous_16x16,
.dxIcon_navigation_previous_16x16_disabled,
.dxIcon_print_print_16x16,
.dxIcon_print_print_16x16_disabled,
.dxIcon_print_printdialog_16x16,
.dxIcon_print_printdialog_16x16_disabled,
.dxIcon_print_printviapdf_16x16,
.dxIcon_print_printviapdf_16x16_disabled,
.dxIcon_support_product_16x16,
.dxIcon_support_product_16x16_disabled,
.dxIcon_programming_programminglanguage_16x16,
.dxIcon_programming_programminglanguage_16x16_disabled,
.dxIcon_programming_project_16x16,
.dxIcon_programming_project_16x16_disabled,
.dxIcon_programming_projectdirectory_16x16,
.dxIcon_programming_projectdirectory_16x16_disabled,
.dxIcon_programming_projectfile_16x16,
.dxIcon_programming_projectfile_16x16_disabled,
.dxIcon_setup_properties_16x16,
.dxIcon_setup_properties_16x16_disabled,
.dxIcon_people_publicfix_16x16,
.dxIcon_people_publicfix_16x16_disabled,
.dxIcon_miscellaneous_publish_16x16,
.dxIcon_miscellaneous_publish_16x16_disabled,
.dxIcon_support_question_16x16,
.dxIcon_support_question_16x16_disabled,
.dxIcon_chart_rangearea_16x16,
.dxIcon_chart_rangearea_16x16_disabled,
.dxIcon_chart_rangebar_16x16,
.dxIcon_chart_rangebar_16x16_disabled,
.dxIcon_actions_reading_16x16,
.dxIcon_actions_reading_16x16_disabled,
.dxIcon_scheduling_recurrence_16x16,
.dxIcon_scheduling_recurrence_16x16_disabled,
.dxIcon_history_redo_16x16,
.dxIcon_history_redo_16x16_disabled,
.dxIcon_actions_refresh_16x16,
.dxIcon_actions_refresh_16x16_disabled,
.dxIcon_actions_refresh2_16x16,
.dxIcon_actions_refresh2_16x16_disabled,
.dxIcon_actions_remove_16x16,
.dxIcon_actions_remove_16x16_disabled,
.dxIcon_actions_removeitem_16x16,
.dxIcon_actions_removeitem_16x16_disabled,
.dxIcon_format_replace_16x16,
.dxIcon_format_replace_16x16_disabled,
.dxIcon_reports_report_16x16,
.dxIcon_reports_report_16x16_disabled,
.dxIcon_actions_reset_16x16,
.dxIcon_actions_reset_16x16_disabled,
.dxIcon_people_role_16x16,
.dxIcon_people_role_16x16_disabled,
.dxIcon_save_save_16x16,
.dxIcon_save_save_16x16_disabled,
.dxIcon_save_saveall_16x16,
.dxIcon_save_saveall_16x16_disabled,
.dxIcon_save_saveandclose_16x16,
.dxIcon_save_saveandclose_16x16_disabled,
.dxIcon_save_saveandnew_16x16,
.dxIcon_save_saveandnew_16x16_disabled,
.dxIcon_save_saveas_16x16,
.dxIcon_save_saveas_16x16_disabled,
.dxIcon_save_savedialog_16x16,
.dxIcon_save_savedialog_16x16_disabled,
.dxIcon_setup_savepagesetup_16x16,
.dxIcon_setup_savepagesetup_16x16_disabled,
.dxIcon_save_saveto_16x16,
.dxIcon_save_saveto_16x16_disabled,
.dxIcon_programming_scripts_16x16,
.dxIcon_programming_scripts_16x16_disabled,
.dxIcon_actions_selectall_16x16,
.dxIcon_actions_selectall_16x16_disabled,
.dxIcon_mail_send_16x16,
.dxIcon_mail_send_16x16_disabled,
.dxIcon_arrange_sendbackward_16x16,
.dxIcon_arrange_sendbackward_16x16_disabled,
.dxIcon_arrange_sendbehindtext_16x16,
.dxIcon_arrange_sendbehindtext_16x16_disabled,
.dxIcon_mail_sendcsv_16x16,
.dxIcon_mail_sendcsv_16x16_disabled,
.dxIcon_mail_sendimg_16x16,
.dxIcon_mail_sendimg_16x16_disabled,
.dxIcon_mail_sendmht_16x16,
.dxIcon_mail_sendmht_16x16_disabled,
.dxIcon_mail_sendpdf_16x16,
.dxIcon_mail_sendpdf_16x16_disabled,
.dxIcon_mail_sendrtf_16x16,
.dxIcon_mail_sendrtf_16x16_disabled,
.dxIcon_arrange_sendtoback_16x16,
.dxIcon_arrange_sendtoback_16x16_disabled,
.dxIcon_mail_sendtxt_16x16,
.dxIcon_mail_sendtxt_16x16_disabled,
.dxIcon_mail_sendxls_16x16,
.dxIcon_mail_sendxls_16x16_disabled,
.dxIcon_mail_sendxlsx_16x16,
.dxIcon_mail_sendxlsx_16x16_disabled,
.dxIcon_reports_separator_16x16,
.dxIcon_reports_separator_16x16_disabled,
.dxIcon_actions_show_16x16,
.dxIcon_actions_show_16x16_disabled,
.dxIcon_format_showhidden_16x16,
.dxIcon_format_showhidden_16x16_disabled,
.dxIcon_programming_showtestreport_16x16,
.dxIcon_programming_showtestreport_16x16_disabled,
.dxIcon_scheduling_showworktimeonly_16x16,
.dxIcon_scheduling_showworktimeonly_16x16_disabled,
.dxIcon_chart_sidebysiderangebar_16x16,
.dxIcon_chart_sidebysiderangebar_16x16_disabled,
.dxIcon_scheduling_snaptocells_16x16,
.dxIcon_scheduling_snaptocells_16x16_disabled,
.dxIcon_programming_solution_16x16,
.dxIcon_programming_solution_16x16_disabled,
.dxIcon_data_sortasc_16x16,
.dxIcon_data_sortasc_16x16_disabled,
.dxIcon_data_sortdesc_16x16,
.dxIcon_data_sortdesc_16x16_disabled,
.dxIcon_format_spellcheckasyoutype_16x16,
.dxIcon_format_spellcheckasyoutype_16x16_disabled,
.dxIcon_chart_spline_16x16,
.dxIcon_chart_spline_16x16_disabled,
.dxIcon_chart_splinearea_16x16,
.dxIcon_chart_splinearea_16x16_disabled,
.dxIcon_scheduling_splitappointment_16x16,
.dxIcon_scheduling_splitappointment_16x16_disabled,
.dxIcon_arrange_sqare_16x16,
.dxIcon_arrange_sqare_16x16_disabled,
.dxIcon_actions_squeeze_16x16,
.dxIcon_actions_squeeze_16x16_disabled,
.dxIcon_chart_stackedarea_16x16,
.dxIcon_chart_stackedarea_16x16_disabled,
.dxIcon_chart_stackedbar_16x16,
.dxIcon_chart_stackedbar_16x16_disabled,
.dxIcon_chart_stackedline_16x16,
.dxIcon_chart_stackedline_16x16_disabled,
.dxIcon_chart_stackedsplinearea_16x16,
.dxIcon_chart_stackedsplinearea_16x16_disabled,
.dxIcon_tasks_status_16x16,
.dxIcon_tasks_status_16x16_disabled,
.dxIcon_chart_steparea_16x16,
.dxIcon_chart_steparea_16x16_disabled,
.dxIcon_chart_stepline_16x16,
.dxIcon_chart_stepline_16x16_disabled,
.dxIcon_actions_stretch_16x16,
.dxIcon_actions_stretch_16x16_disabled,
.dxIcon_format_strikeout_16x16,
.dxIcon_format_strikeout_16x16_disabled,
.dxIcon_format_strikeoutdouble_16x16,
.dxIcon_format_strikeoutdouble_16x16_disabled,
.dxIcon_format_subscript_16x16,
.dxIcon_format_subscript_16x16_disabled,
.dxIcon_support_suggestion_16x16,
.dxIcon_support_suggestion_16x16_disabled,
.dxIcon_data_summary_16x16,
.dxIcon_data_summary_16x16_disabled,
.dxIcon_format_superscript_16x16,
.dxIcon_format_superscript_16x16_disabled,
.dxIcon_scheduling_switchtimescalesto_16x16,
.dxIcon_scheduling_switchtimescalesto_16x16_disabled,
.dxIcon_programming_tag_16x16,
.dxIcon_programming_tag_16x16_disabled,
.dxIcon_tasks_task_16x16,
.dxIcon_tasks_task_16x16_disabled,
.dxIcon_people_team_16x16,
.dxIcon_people_team_16x16_disabled,
.dxIcon_programming_technology_16x16,
.dxIcon_programming_technology_16x16_disabled,
.dxIcon_support_template_16x16,
.dxIcon_support_template_16x16_disabled,
.dxIcon_content_textbox_16x16,
.dxIcon_content_textbox_16x16_disabled,
.dxIcon_arrange_through_16x16,
.dxIcon_arrange_through_16x16_disabled,
.dxIcon_arrange_tight_16x16,
.dxIcon_arrange_tight_16x16_disabled,
.dxIcon_scheduling_time_16x16,
.dxIcon_scheduling_time_16x16_disabled,
.dxIcon_scheduling_timelineview_16x16,
.dxIcon_scheduling_timelineview_16x16_disabled,
.dxIcon_scheduling_today_16x16,
.dxIcon_scheduling_today_16x16_disabled,
.dxIcon_arrange_topandbuttom_16x16,
.dxIcon_arrange_topandbuttom_16x16_disabled,
.dxIcon_format_underline_16x16,
.dxIcon_format_underline_16x16_disabled,
.dxIcon_format_underlinedouble_16x16,
.dxIcon_format_underlinedouble_16x16_disabled,
.dxIcon_format_underlineword_16x16,
.dxIcon_format_underlineword_16x16_disabled,
.dxIcon_history_undo_16x16,
.dxIcon_history_undo_16x16_disabled,
.dxIcon_navigation_up_16x16,
.dxIcon_navigation_up_16x16_disabled,
.dxIcon_people_usergroup_16x16,
.dxIcon_people_usergroup_16x16_disabled,
.dxIcon_programming_vb_16x16,
.dxIcon_programming_vb_16x16_disabled,
.dxIcon_support_version_16x16,
.dxIcon_support_version_16x16_disabled,
.dxIcon_miscellaneous_video_16x16,
.dxIcon_miscellaneous_video_16x16_disabled,
.dxIcon_miscellaneous_viewonweb_16x16,
.dxIcon_miscellaneous_viewonweb_16x16_disabled,
.dxIcon_content_watermark_16x16,
.dxIcon_content_watermark_16x16_disabled,
.dxIcon_scheduling_weekend_16x16,
.dxIcon_scheduling_weekend_16x16_disabled,
.dxIcon_scheduling_weekview_16x16,
.dxIcon_scheduling_weekview_16x16_disabled,
.dxIcon_miscellaneous_windows_16x16,
.dxIcon_miscellaneous_windows_16x16_disabled,
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16,
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16_disabled,
.dxIcon_arrange_withtextwrapping_bottomleft_16x16,
.dxIcon_arrange_withtextwrapping_bottomleft_16x16_disabled,
.dxIcon_arrange_withtextwrapping_bottomright_16x16,
.dxIcon_arrange_withtextwrapping_bottomright_16x16_disabled,
.dxIcon_arrange_withtextwrapping_centercenter_16x16,
.dxIcon_arrange_withtextwrapping_centercenter_16x16_disabled,
.dxIcon_arrange_withtextwrapping_centerleft_16x16,
.dxIcon_arrange_withtextwrapping_centerleft_16x16_disabled,
.dxIcon_arrange_withtextwrapping_centerright_16x16,
.dxIcon_arrange_withtextwrapping_centerright_16x16_disabled,
.dxIcon_arrange_withtextwrapping_topcenter_16x16,
.dxIcon_arrange_withtextwrapping_topcenter_16x16_disabled,
.dxIcon_arrange_withtextwrapping_topleft_16x16,
.dxIcon_arrange_withtextwrapping_topleft_16x16_disabled,
.dxIcon_arrange_withtextwrapping_topright_16x16,
.dxIcon_arrange_withtextwrapping_topright_16x16_disabled,
.dxIcon_miscellaneous_wizard_16x16,
.dxIcon_miscellaneous_wizard_16x16_disabled,
.dxIcon_scheduling_workweekview_16x16,
.dxIcon_scheduling_workweekview_16x16_disabled,
.dxIcon_arrange_wraptext_16x16,
.dxIcon_arrange_wraptext_16x16_disabled,
.dxIcon_zoom_zoom_16x16,
.dxIcon_zoom_zoom_16x16_disabled,
.dxIcon_zoom_zoom100_16x16,
.dxIcon_zoom_zoom100_16x16_disabled,
.dxIcon_zoom_zoom2_16x16,
.dxIcon_zoom_zoom2_16x16_disabled,
.dxIcon_zoom_zoomin_16x16,
.dxIcon_zoom_zoomin_16x16_disabled,
.dxIcon_zoom_zoomout_16x16,
.dxIcon_zoom_zoomout_16x16_disabled
{
    background-image: url('/DXR.axd?r=0_5511-SP_nc');
    background-repeat: no-repeat;
    background-color: transparent;
}
.dxIcon_actions_add_16x16
{
    background-position: -119px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_add_16x16_disabled
{
    background-position: -119px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_addfile_16x16
{
    background-position: 0px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_addfile_16x16_disabled
{
    background-position: 0px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addfooter_16x16
{
    background-position: -51px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addfooter_16x16_disabled
{
    background-position: -51px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addgroupfooter_16x16
{
    background-position: -255px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addgroupfooter_16x16_disabled
{
    background-position: -255px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addgroupheader_16x16
{
    background-position: -153px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addgroupheader_16x16_disabled
{
    background-position: -153px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addheader_16x16
{
    background-position: -153px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_addheader_16x16_disabled
{
    background-position: -153px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_additem_16x16
{
    background-position: -136px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_additem_16x16_disabled
{
    background-position: -136px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_addnewdatasource_16x16
{
    background-position: -102px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_addnewdatasource_16x16_disabled
{
    background-position: -102px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_aligncenter_16x16
{
    background-position: -255px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_aligncenter_16x16_disabled
{
    background-position: -255px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalbottom_16x16
{
    background-position: -255px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalbottom_16x16_disabled
{
    background-position: -255px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalbottom2_16x16
{
    background-position: -51px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalbottom2_16x16_disabled
{
    background-position: -51px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalcenter_16x16
{
    background-position: -153px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalcenter_16x16_disabled
{
    background-position: -153px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalcenter2_16x16
{
    background-position: -153px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalcenter2_16x16_disabled
{
    background-position: -153px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontaltop_16x16
{
    background-position: -289px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontaltop_16x16_disabled
{
    background-position: -289px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontaltop2_16x16
{
    background-position: -34px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontaltop2_16x16_disabled
{
    background-position: -34px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignjustify_16x16
{
    background-position: -221px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignjustify_16x16_disabled
{
    background-position: -221px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignleft_16x16
{
    background-position: -17px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignleft_16x16_disabled
{
    background-position: -17px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignright_16x16
{
    background-position: -306px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignright_16x16_disabled
{
    background-position: -306px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalcenter_16x16
{
    background-position: -238px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalcenter_16x16_disabled
{
    background-position: -238px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalcenter2_16x16
{
    background-position: -68px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalcenter2_16x16_disabled
{
    background-position: -68px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalleft_16x16
{
    background-position: -272px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalleft_16x16_disabled
{
    background-position: -272px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalleft2_16x16
{
    background-position: -289px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalleft2_16x16_disabled
{
    background-position: -289px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalright_16x16
{
    background-position: -238px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalright_16x16_disabled
{
    background-position: -238px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalright2_16x16
{
    background-position: -289px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalright2_16x16_disabled
{
    background-position: -289px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_announcement_16x16
{
    background-position: -85px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_announcement_16x16_disabled
{
    background-position: -85px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_apply_16x16
{
    background-position: -102px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_apply_16x16_disabled
{
    background-position: -102px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_area_16x16
{
    background-position: -102px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_area_16x16_disabled
{
    background-position: -102px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_article_16x16
{
    background-position: -119px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_article_16x16_disabled
{
    background-position: -119px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_assignto_16x16
{
    background-position: -34px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_assignto_16x16_disabled
{
    background-position: -34px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_assigntome_16x16
{
    background-position: -34px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_assigntome_16x16_disabled
{
    background-position: -34px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attach_16x16
{
    background-position: -187px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attach_16x16_disabled
{
    background-position: -187px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attachment_16x16
{
    background-position: -85px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attachment_16x16_disabled
{
    background-position: -85px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_backward_16x16
{
    background-position: -221px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_backward_16x16_disabled
{
    background-position: -221px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_bar_16x16
{
    background-position: -85px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_bar_16x16_disabled
{
    background-position: -85px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_barcode_16x16
{
    background-position: -34px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_barcode_16x16_disabled
{
    background-position: -34px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_behindtext_16x16
{
    background-position: -17px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_behindtext_16x16_disabled
{
    background-position: -17px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_bold_16x16
{
    background-position: -255px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_bold_16x16_disabled
{
    background-position: -255px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_breakingchange_16x16
{
    background-position: -204px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_breakingchange_16x16_disabled
{
    background-position: -204px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringforward_16x16
{
    background-position: -187px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringforward_16x16_disabled
{
    background-position: -187px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofront_16x16
{
    background-position: 0px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofront_16x16_disabled
{
    background-position: 0px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofrontoftext_16x16
{
    background-position: -204px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofrontoftext_16x16_disabled
{
    background-position: -204px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_bubble_16x16
{
    background-position: -102px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_bubble_16x16_disabled
{
    background-position: -102px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_bugreport_16x16
{
    background-position: -238px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_bugreport_16x16_disabled
{
    background-position: -238px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_build_16x16
{
    background-position: -272px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_build_16x16_disabled
{
    background-position: -272px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_calendar_16x16
{
    background-position: -306px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_calendar_16x16_disabled
{
    background-position: -306px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_cancel_16x16
{
    background-position: -85px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_cancel_16x16_disabled
{
    background-position: -85px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_cards_16x16
{
    background-position: -119px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_cards_16x16_disabled
{
    background-position: -119px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_cellsautoheight_16x16
{
    background-position: -34px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_cellsautoheight_16x16_disabled
{
    background-position: -34px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_changefontstyle_16x16
{
    background-position: -17px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_changefontstyle_16x16_disabled
{
    background-position: -17px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chart_16x16
{
    background-position: -136px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chart_16x16_disabled
{
    background-position: -136px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chartsrotate_16x16
{
    background-position: -255px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chartsrotate_16x16_disabled
{
    background-position: -255px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chartsshowlegend_16x16
{
    background-position: -68px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chartsshowlegend_16x16_disabled
{
    background-position: -68px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chartyaxissettings_16x16
{
    background-position: -51px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chartyaxissettings_16x16_disabled
{
    background-position: -51px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_checkbox_16x16
{
    background-position: -221px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_checkbox_16x16_disabled
{
    background-position: -221px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clear_16x16
{
    background-position: -272px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clear_16x16_disabled
{
    background-position: -272px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_clearfilter_16x16
{
    background-position: -34px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_clearfilter_16x16_disabled
{
    background-position: -34px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clearformatting_16x16
{
    background-position: -17px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clearformatting_16x16_disabled
{
    background-position: -17px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clip_16x16
{
    background-position: -136px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clip_16x16_disabled
{
    background-position: -136px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_close_16x16
{
    background-position: -187px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_close_16x16_disabled
{
    background-position: -187px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_colors_16x16
{
    background-position: -204px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_colors_16x16_disabled
{
    background-position: -204px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_columns_16x16
{
    background-position: -238px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_columns_16x16_disabled
{
    background-position: -238px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_comment_16x16
{
    background-position: -221px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_comment_16x16_disabled
{
    background-position: -221px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_contact_16x16
{
    background-position: -272px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_contact_16x16_disabled
{
    background-position: -272px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_content_16x16
{
    background-position: -68px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_content_16x16_disabled
{
    background-position: -68px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_contentarrangeincolums_16x16
{
    background-position: -17px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_contentarrangeincolums_16x16_disabled
{
    background-position: -17px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_contentarrangeinrows_16x16
{
    background-position: -306px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_contentarrangeinrows_16x16_disabled
{
    background-position: -306px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_contentautoarrange_16x16
{
    background-position: 0px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_contentautoarrange_16x16_disabled
{
    background-position: 0px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_convert_16x16
{
    background-position: -204px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_convert_16x16_disabled
{
    background-position: -204px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_converttoparagraphs_16x16
{
    background-position: -17px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_converttoparagraphs_16x16_disabled
{
    background-position: -17px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_copy_16x16
{
    background-position: -17px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_copy_16x16_disabled
{
    background-position: -17px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_country_16x16
{
    background-position: -153px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_country_16x16_disabled
{
    background-position: -153px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_crossdatasourcefiltering_16x16
{
    background-position: -221px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_crossdatasourcefiltering_16x16_disabled
{
    background-position: -221px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_csharp_16x16
{
    background-position: -68px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_csharp_16x16_disabled
{
    background-position: -68px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_currency_16x16
{
    background-position: -221px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_currency_16x16_disabled
{
    background-position: -221px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_customer_16x16
{
    background-position: -85px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_customer_16x16_disabled
{
    background-position: -85px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_customization_16x16
{
    background-position: -136px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_customization_16x16_disabled
{
    background-position: -136px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_customizegrid_16x16
{
    background-position: -238px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_customizegrid_16x16_disabled
{
    background-position: -238px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_cut_16x16
{
    background-position: -51px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_cut_16x16_disabled
{
    background-position: -51px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_database_16x16
{
    background-position: -187px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_database_16x16_disabled
{
    background-position: -187px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_dayview_16x16
{
    background-position: -255px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_dayview_16x16_disabled
{
    background-position: -255px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_delete_16x16
{
    background-position: -119px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_delete_16x16_disabled
{
    background-position: -119px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_deletedatasource_16x16
{
    background-position: -221px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_deletedatasource_16x16_disabled
{
    background-position: -221px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deletefooter_16x16
{
    background-position: -51px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deletefooter_16x16_disabled
{
    background-position: -51px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deletegroupfooter_16x16
{
    background-position: -102px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deletegroupfooter_16x16_disabled
{
    background-position: -102px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deletegroupheader_16x16
{
    background-position: -85px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deletegroupheader_16x16_disabled
{
    background-position: -85px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deleteheader_16x16
{
    background-position: -272px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_deleteheader_16x16_disabled
{
    background-position: -272px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_deletelist_16x16
{
    background-position: -204px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_deletelist_16x16_disabled
{
    background-position: -204px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_deletelist2_16x16
{
    background-position: -68px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_deletelist2_16x16_disabled
{
    background-position: -68px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_design_16x16
{
    background-position: -34px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_design_16x16_disabled
{
    background-position: -34px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_documentmap_16x16
{
    background-position: -102px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_documentmap_16x16_disabled
{
    background-position: -102px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublefirst_16x16
{
    background-position: -255px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublefirst_16x16_disabled
{
    background-position: -255px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublelast_16x16
{
    background-position: -119px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublelast_16x16_disabled
{
    background-position: -119px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublenext_16x16
{
    background-position: -221px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublenext_16x16_disabled
{
    background-position: -221px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doubleprev_16x16
{
    background-position: -238px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doubleprev_16x16_disabled
{
    background-position: -238px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_download_16x16
{
    background-position: -153px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_download_16x16_disabled
{
    background-position: -153px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldown_16x16
{
    background-position: -289px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldown_16x16_disabled
{
    background-position: -289px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonarguments_chart_16x16
{
    background-position: -85px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonarguments_chart_16x16_disabled
{
    background-position: -85px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonarguments_pie_16x16
{
    background-position: 0px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonarguments_pie_16x16_disabled
{
    background-position: 0px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonseries_chart_16x16
{
    background-position: -170px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonseries_chart_16x16_disabled
{
    background-position: -170px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonseries_pie_16x16
{
    background-position: -102px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_drilldownonseries_pie_16x16_disabled
{
    background-position: -102px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_edit_16x16
{
    background-position: -289px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_edit_16x16_disabled
{
    background-position: -289px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_editcontact_16x16
{
    background-position: 0px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_editcontact_16x16_disabled
{
    background-position: 0px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_editdatasource_16x16
{
    background-position: -68px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_editdatasource_16x16_disabled
{
    background-position: -68px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_editfeed_16x16
{
    background-position: -238px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_editfeed_16x16_disabled
{
    background-position: -238px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_editpagehf_16x16
{
    background-position: -289px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_editpagehf_16x16_disabled
{
    background-position: -289px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_edittask_16x16
{
    background-position: -102px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_edittask_16x16_disabled
{
    background-position: -102px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_editwrappoints_16x16
{
    background-position: -136px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_editwrappoints_16x16_disabled
{
    background-position: -136px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_emailtemplate_16x16
{
    background-position: -68px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_emailtemplate_16x16_disabled
{
    background-position: -68px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_employee_16x16
{
    background-position: -170px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_employee_16x16_disabled
{
    background-position: -170px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_emptyparagraphseparator_16x16
{
    background-position: -119px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_emptyparagraphseparator_16x16_disabled
{
    background-position: -119px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_emptytablerowseparator_16x16
{
    background-position: 0px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_emptytablerowseparator_16x16_disabled
{
    background-position: 0px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_example_16x16
{
    background-position: -170px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_example_16x16_disabled
{
    background-position: -170px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_export_16x16
{
    background-position: -51px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_export_16x16_disabled
{
    background-position: -51px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exportfile_16x16
{
    background-position: -119px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exportfile_16x16_disabled
{
    background-position: -119px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttocsv_16x16
{
    background-position: -153px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttocsv_16x16_disabled
{
    background-position: -153px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodoc_16x16
{
    background-position: -272px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodoc_16x16_disabled
{
    background-position: -272px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodocx_16x16
{
    background-position: 0px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodocx_16x16_disabled
{
    background-position: 0px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoepub_16x16
{
    background-position: -119px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoepub_16x16_disabled
{
    background-position: -119px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttohtml_16x16
{
    background-position: 0px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttohtml_16x16_disabled
{
    background-position: 0px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoimg_16x16
{
    background-position: -102px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoimg_16x16_disabled
{
    background-position: -102px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttomht_16x16
{
    background-position: -85px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttomht_16x16_disabled
{
    background-position: -85px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoodt_16x16
{
    background-position: -136px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoodt_16x16_disabled
{
    background-position: -136px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttopdf_16x16
{
    background-position: -221px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttopdf_16x16_disabled
{
    background-position: -221px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttortf_16x16
{
    background-position: -102px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttortf_16x16_disabled
{
    background-position: -102px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttotxt_16x16
{
    background-position: -51px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttotxt_16x16_disabled
{
    background-position: -51px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxls_16x16
{
    background-position: -119px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxls_16x16_disabled
{
    background-position: -119px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxlsx_16x16
{
    background-position: -289px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxlsx_16x16_disabled
{
    background-position: -289px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxml_16x16
{
    background-position: -255px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxml_16x16_disabled
{
    background-position: -255px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxps_16x16
{
    background-position: -187px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxps_16x16_disabled
{
    background-position: -187px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_feature_16x16
{
    background-position: -204px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_feature_16x16_disabled
{
    background-position: -204px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_feeds_16x16
{
    background-position: 0px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_feeds_16x16_disabled
{
    background-position: 0px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fillbackground_16x16
{
    background-position: -170px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fillbackground_16x16_disabled
{
    background-position: -170px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filter_16x16
{
    background-position: -102px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filter_16x16_disabled
{
    background-position: -102px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyargument_chart_16x16
{
    background-position: -102px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyargument_chart_16x16_disabled
{
    background-position: -102px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyargument_pie_16x16
{
    background-position: -136px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyargument_pie_16x16_disabled
{
    background-position: -136px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyseries_chart_16x16
{
    background-position: -51px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyseries_chart_16x16_disabled
{
    background-position: -51px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyseries_pie_16x16
{
    background-position: -68px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filterbyseries_pie_16x16_disabled
{
    background-position: -68px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_find_16x16
{
    background-position: -34px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_find_16x16_disabled
{
    background-position: -34px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_findbyid_16x16
{
    background-position: -85px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_findbyid_16x16_disabled
{
    background-position: -85px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_findcustomers_16x16
{
    background-position: 0px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_findcustomers_16x16_disabled
{
    background-position: 0px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_first_16x16
{
    background-position: -119px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_first_16x16_disabled
{
    background-position: -119px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_folderpanel_16x16
{
    background-position: -272px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_folderpanel_16x16_disabled
{
    background-position: -272px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsize_16x16
{
    background-position: -51px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsize_16x16_disabled
{
    background-position: -51px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizedecrease_16x16
{
    background-position: -204px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizedecrease_16x16_disabled
{
    background-position: -204px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizeincrease_16x16
{
    background-position: -272px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizeincrease_16x16_disabled
{
    background-position: -272px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_forcetesting_16x16
{
    background-position: -51px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_forcetesting_16x16_disabled
{
    background-position: -51px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_forward_16x16
{
    background-position: -170px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_forward_16x16_disabled
{
    background-position: -170px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedarea_16x16
{
    background-position: -153px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedarea_16x16_disabled
{
    background-position: -153px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedbar_16x16
{
    background-position: -34px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedbar_16x16_disabled
{
    background-position: -34px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedline_16x16
{
    background-position: -238px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedline_16x16_disabled
{
    background-position: -238px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedsplinearea_16x16
{
    background-position: -68px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_fullstackedsplinearea_16x16_disabled
{
    background-position: -68px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylefullcircular_16x16
{
    background-position: -119px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylefullcircular_16x16_disabled
{
    background-position: -119px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylehalfcircular_16x16
{
    background-position: -68px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylehalfcircular_16x16_disabled
{
    background-position: -68px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestyleleftquartercircular_16x16
{
    background-position: -255px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestyleleftquartercircular_16x16_disabled
{
    background-position: -255px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylelinearhorizontal_16x16
{
    background-position: -102px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylelinearhorizontal_16x16_disabled
{
    background-position: -102px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylelinearvertical_16x16
{
    background-position: -306px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylelinearvertical_16x16_disabled
{
    background-position: -306px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylerightquartercircular_16x16
{
    background-position: -34px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylerightquartercircular_16x16_disabled
{
    background-position: -34px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylethreeforthcircular_16x16
{
    background-position: -272px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_gauges_gaugestylethreeforthcircular_16x16_disabled
{
    background-position: -272px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_grid_16x16
{
    background-position: -34px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_grid_16x16_disabled
{
    background-position: -34px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_group_16x16
{
    background-position: -153px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_group_16x16_disabled
{
    background-position: -153px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_groupfieldcollection_16x16
{
    background-position: -306px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_groupfieldcollection_16x16_disabled
{
    background-position: -306px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_groupfooter_16x16
{
    background-position: -170px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_groupfooter_16x16_disabled
{
    background-position: -170px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_groupheader_16x16
{
    background-position: -119px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_groupheader_16x16_disabled
{
    background-position: -119px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_hiddentext_16x16
{
    background-position: -102px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_hiddentext_16x16_disabled
{
    background-position: -102px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_hide_16x16
{
    background-position: -153px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_hide_16x16_disabled
{
    background-position: -153px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_highlightactiveelements_16x16
{
    background-position: -17px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_highlightactiveelements_16x16_disabled
{
    background-position: -17px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_highlightfield_16x16
{
    background-position: 0px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_highlightfield_16x16_disabled
{
    background-position: 0px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_highlowclose_16x16
{
    background-position: -102px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_highlowclose_16x16_disabled
{
    background-position: -102px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_historyitem_16x16
{
    background-position: -85px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_historyitem_16x16_disabled
{
    background-position: -85px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_home_16x16
{
    background-position: -272px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_home_16x16_disabled
{
    background-position: -272px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_ide_16x16
{
    background-position: -255px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_ide_16x16_disabled
{
    background-position: -255px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_ignoremasterfilter_16x16
{
    background-position: -238px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_ignoremasterfilter_16x16_disabled
{
    background-position: -238px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_image_16x16
{
    background-position: -51px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_image_16x16_disabled
{
    background-position: -51px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_importimage_16x16
{
    background-position: -187px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_importimage_16x16_disabled
{
    background-position: -187px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentdecrease_16x16
{
    background-position: -136px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentdecrease_16x16_disabled
{
    background-position: -136px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentincrease_16x16
{
    background-position: -306px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentincrease_16x16_disabled
{
    background-position: -306px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_index_16x16
{
    background-position: -170px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_index_16x16_disabled
{
    background-position: -170px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_info_16x16
{
    background-position: -221px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_info_16x16_disabled
{
    background-position: -221px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_infrontoftext_16x16
{
    background-position: -68px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_infrontoftext_16x16_disabled
{
    background-position: -68px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_inlinewithtext_16x16
{
    background-position: -170px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_inlinewithtext_16x16_disabled
{
    background-position: -170px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_insert_16x16
{
    background-position: -306px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_insert_16x16_disabled
{
    background-position: -306px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_insertfooter_16x16
{
    background-position: -306px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_insertfooter_16x16_disabled
{
    background-position: -306px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_insertheader_16x16
{
    background-position: -238px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_insertheader_16x16_disabled
{
    background-position: -238px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_insertpagebreak_16x16
{
    background-position: -34px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_insertpagebreak_16x16_disabled
{
    background-position: -34px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_insertrangefilter_16x16
{
    background-position: -34px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_insertrangefilter_16x16_disabled
{
    background-position: -34px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_issue_16x16
{
    background-position: -17px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_issue_16x16_disabled
{
    background-position: -17px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_italic_16x16
{
    background-position: -272px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_italic_16x16_disabled
{
    background-position: -272px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_knowledgebasearticle_16x16
{
    background-position: -34px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_knowledgebasearticle_16x16_disabled
{
    background-position: -34px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_kpi_16x16
{
    background-position: -272px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_kpi_16x16_disabled
{
    background-position: -272px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_language_16x16
{
    background-position: -153px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_language_16x16_disabled
{
    background-position: -153px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_last_16x16
{
    background-position: -153px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_last_16x16_disabled
{
    background-position: -153px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_line_16x16
{
    background-position: -289px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_line_16x16_disabled
{
    background-position: -289px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listbullets_16x16
{
    background-position: 0px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listbullets_16x16_disabled
{
    background-position: 0px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listmultilevel_16x16
{
    background-position: -136px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listmultilevel_16x16_disabled
{
    background-position: -136px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listnumbers_16x16
{
    background-position: -289px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listnumbers_16x16_disabled
{
    background-position: -289px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_loadfrom_16x16
{
    background-position: -255px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_loadfrom_16x16_disabled
{
    background-position: -255px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_loadpagesetup_16x16
{
    background-position: -119px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_loadpagesetup_16x16_disabled
{
    background-position: -119px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_mail_16x16
{
    background-position: -272px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_mail_16x16_disabled
{
    background-position: -272px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_masterfilter_16x16
{
    background-position: -255px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_masterfilter_16x16_disabled
{
    background-position: -255px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_merge_16x16
{
    background-position: -289px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_merge_16x16_disabled
{
    background-position: -289px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_monthview_16x16
{
    background-position: -187px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_monthview_16x16_disabled
{
    background-position: -187px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_morelayoutoptions_16x16
{
    background-position: -153px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_morelayoutoptions_16x16_disabled
{
    background-position: -153px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_movedown_16x16
{
    background-position: -255px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_movedown_16x16_disabled
{
    background-position: -255px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_moveup_16x16
{
    background-position: -187px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_moveup_16x16_disabled
{
    background-position: -187px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_multiplepages_16x16
{
    background-position: -17px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_multiplepages_16x16_disabled
{
    background-position: -17px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_navigationbar_16x16
{
    background-position: -34px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_navigationbar_16x16_disabled
{
    background-position: -34px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_new_16x16
{
    background-position: -68px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_new_16x16_disabled
{
    background-position: -68px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_newcontact_16x16
{
    background-position: -34px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_newcontact_16x16_disabled
{
    background-position: -34px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_newfeed_16x16
{
    background-position: -255px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_newfeed_16x16_disabled
{
    background-position: -255px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_newmail_16x16
{
    background-position: -136px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_newmail_16x16_disabled
{
    background-position: -136px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_newtask_16x16
{
    background-position: -187px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_newtask_16x16_disabled
{
    background-position: -187px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_next_16x16
{
    background-position: -51px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_next_16x16_disabled
{
    background-position: -51px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_next_16x16
{
    background-position: -102px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_next_16x16_disabled
{
    background-position: -102px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_none_16x16
{
    background-position: -153px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_none_16x16_disabled
{
    background-position: -153px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_notes_16x16
{
    background-position: -136px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_notes_16x16_disabled
{
    background-position: -136px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_open_16x16
{
    background-position: -51px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_open_16x16_disabled
{
    background-position: -51px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_openhighlowclosecandlestick_16x16
{
    background-position: -136px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_openhighlowclosecandlestick_16x16_disabled
{
    background-position: -136px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_openhighlowclosestock_16x16
{
    background-position: -306px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_openhighlowclosestock_16x16_disabled
{
    background-position: -306px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_operatingsyste_16x16
{
    background-position: -136px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_operatingsyste_16x16_disabled
{
    background-position: -136px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_packageproduct_16x16
{
    background-position: 0px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_packageproduct_16x16_disabled
{
    background-position: 0px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_pagemargins_16x16
{
    background-position: -85px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_pagemargins_16x16_disabled
{
    background-position: -85px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_pageorientation_16x16
{
    background-position: -102px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_pageorientation_16x16_disabled
{
    background-position: -102px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_pagesetup_16x16
{
    background-position: -170px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_pagesetup_16x16_disabled
{
    background-position: -170px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_palette_16x16
{
    background-position: -170px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_palette_16x16_disabled
{
    background-position: -170px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_papersize_16x16
{
    background-position: -238px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_pages_papersize_16x16_disabled
{
    background-position: -238px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_parameters_16x16
{
    background-position: -187px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_parameters_16x16_disabled
{
    background-position: -187px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_paste_16x16
{
    background-position: -68px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_paste_16x16_disabled
{
    background-position: -68px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_pictureshapefillcolor_16x16
{
    background-position: -255px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_pictureshapefillcolor_16x16_disabled
{
    background-position: -255px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_pictureshapeoutlinecolor_16x16
{
    background-position: -119px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_pictureshapeoutlinecolor_16x16_disabled
{
    background-position: -119px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pie_16x16
{
    background-position: -306px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pie_16x16_disabled
{
    background-position: -306px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pielabelsdatalabels_16x16
{
    background-position: -272px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pielabelsdatalabels_16x16_disabled
{
    background-position: -272px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pielabelstooltips_16x16
{
    background-position: -221px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pielabelstooltips_16x16_disabled
{
    background-position: -221px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_piestyledonut_16x16
{
    background-position: -289px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_piestyledonut_16x16_disabled
{
    background-position: -289px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_piestylepie_16x16
{
    background-position: -119px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_piestylepie_16x16_disabled
{
    background-position: -119px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_pivot_16x16
{
    background-position: -255px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_pivot_16x16_disabled
{
    background-position: -255px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_point_16x16
{
    background-position: -170px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_point_16x16_disabled
{
    background-position: -170px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_prev_16x16
{
    background-position: -187px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_prev_16x16_disabled
{
    background-position: -187px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_preview_16x16
{
    background-position: -187px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_preview_16x16_disabled
{
    background-position: -187px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_previewchart_16x16
{
    background-position: -238px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_previewchart_16x16_disabled
{
    background-position: -238px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_previous_16x16
{
    background-position: -170px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_previous_16x16_disabled
{
    background-position: -170px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_print_16x16
{
    background-position: -272px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_print_16x16_disabled
{
    background-position: -272px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_printdialog_16x16
{
    background-position: -17px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_printdialog_16x16_disabled
{
    background-position: -17px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_printviapdf_16x16
{
    background-position: -170px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_printviapdf_16x16_disabled
{
    background-position: -170px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_product_16x16
{
    background-position: -153px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_product_16x16_disabled
{
    background-position: -153px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_programminglanguage_16x16
{
    background-position: -136px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_programminglanguage_16x16_disabled
{
    background-position: -136px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_project_16x16
{
    background-position: -221px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_project_16x16_disabled
{
    background-position: -221px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_projectdirectory_16x16
{
    background-position: -255px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_projectdirectory_16x16_disabled
{
    background-position: -255px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_projectfile_16x16
{
    background-position: -136px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_projectfile_16x16_disabled
{
    background-position: -136px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_properties_16x16
{
    background-position: -187px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_properties_16x16_disabled
{
    background-position: -187px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_publicfix_16x16
{
    background-position: -68px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_publicfix_16x16_disabled
{
    background-position: -68px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_publish_16x16
{
    background-position: -170px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_publish_16x16_disabled
{
    background-position: -170px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_question_16x16
{
    background-position: -204px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_question_16x16_disabled
{
    background-position: -204px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_rangearea_16x16
{
    background-position: -68px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_rangearea_16x16_disabled
{
    background-position: -68px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_rangebar_16x16
{
    background-position: -204px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_rangebar_16x16_disabled
{
    background-position: -204px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_reading_16x16
{
    background-position: -51px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_reading_16x16_disabled
{
    background-position: -51px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_recurrence_16x16
{
    background-position: -289px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_recurrence_16x16_disabled
{
    background-position: -289px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_redo_16x16
{
    background-position: -187px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_redo_16x16_disabled
{
    background-position: -187px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_refresh_16x16
{
    background-position: -187px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_refresh_16x16_disabled
{
    background-position: -187px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_refresh2_16x16
{
    background-position: -221px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_refresh2_16x16_disabled
{
    background-position: -221px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_remove_16x16
{
    background-position: -85px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_remove_16x16_disabled
{
    background-position: -85px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_removeitem_16x16
{
    background-position: -204px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_removeitem_16x16_disabled
{
    background-position: -204px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_replace_16x16
{
    background-position: -306px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_replace_16x16_disabled
{
    background-position: -306px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_report_16x16
{
    background-position: -204px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_report_16x16_disabled
{
    background-position: -204px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_reset_16x16
{
    background-position: -221px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_reset_16x16_disabled
{
    background-position: -221px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_role_16x16
{
    background-position: -187px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_role_16x16_disabled
{
    background-position: -187px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_save_16x16
{
    background-position: -238px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_save_16x16_disabled
{
    background-position: -238px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveall_16x16
{
    background-position: -204px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveall_16x16_disabled
{
    background-position: -204px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandclose_16x16
{
    background-position: -68px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandclose_16x16_disabled
{
    background-position: -68px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandnew_16x16
{
    background-position: -51px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandnew_16x16_disabled
{
    background-position: -51px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveas_16x16
{
    background-position: -17px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveas_16x16_disabled
{
    background-position: -17px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_savedialog_16x16
{
    background-position: -289px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_savedialog_16x16_disabled
{
    background-position: -289px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_savepagesetup_16x16
{
    background-position: -170px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_setup_savepagesetup_16x16_disabled
{
    background-position: -170px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveto_16x16
{
    background-position: -272px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveto_16x16_disabled
{
    background-position: -272px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_scripts_16x16
{
    background-position: 0px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_scripts_16x16_disabled
{
    background-position: 0px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_selectall_16x16
{
    background-position: -153px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_selectall_16x16_disabled
{
    background-position: -153px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_send_16x16
{
    background-position: -221px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_send_16x16_disabled
{
    background-position: -221px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbackward_16x16
{
    background-position: -17px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbackward_16x16_disabled
{
    background-position: -17px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbehindtext_16x16
{
    background-position: -221px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbehindtext_16x16_disabled
{
    background-position: -221px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendcsv_16x16
{
    background-position: -204px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendcsv_16x16_disabled
{
    background-position: -204px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendimg_16x16
{
    background-position: -85px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendimg_16x16_disabled
{
    background-position: -85px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendmht_16x16
{
    background-position: -170px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendmht_16x16_disabled
{
    background-position: -170px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendpdf_16x16
{
    background-position: -306px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendpdf_16x16_disabled
{
    background-position: -306px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendrtf_16x16
{
    background-position: -238px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendrtf_16x16_disabled
{
    background-position: -238px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendtoback_16x16
{
    background-position: -187px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendtoback_16x16_disabled
{
    background-position: -187px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendtxt_16x16
{
    background-position: -34px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendtxt_16x16_disabled
{
    background-position: -34px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxls_16x16
{
    background-position: -136px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxls_16x16_disabled
{
    background-position: -136px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxlsx_16x16
{
    background-position: -34px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxlsx_16x16_disabled
{
    background-position: -34px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_separator_16x16
{
    background-position: -34px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_reports_separator_16x16_disabled
{
    background-position: -34px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_show_16x16
{
    background-position: -306px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_show_16x16_disabled
{
    background-position: -306px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_showhidden_16x16
{
    background-position: -68px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_showhidden_16x16_disabled
{
    background-position: -68px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_showtestreport_16x16
{
    background-position: -136px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_showtestreport_16x16_disabled
{
    background-position: -136px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_showworktimeonly_16x16
{
    background-position: -221px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_showworktimeonly_16x16_disabled
{
    background-position: -221px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_sidebysiderangebar_16x16
{
    background-position: -289px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_sidebysiderangebar_16x16_disabled
{
    background-position: -289px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_snaptocells_16x16
{
    background-position: -119px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_snaptocells_16x16_disabled
{
    background-position: -119px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_solution_16x16
{
    background-position: -204px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_solution_16x16_disabled
{
    background-position: -204px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortasc_16x16
{
    background-position: -204px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortasc_16x16_disabled
{
    background-position: -204px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortdesc_16x16
{
    background-position: -289px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortdesc_16x16_disabled
{
    background-position: -289px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_spellcheckasyoutype_16x16
{
    background-position: -272px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_spellcheckasyoutype_16x16_disabled
{
    background-position: -272px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_spline_16x16
{
    background-position: -136px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_spline_16x16_disabled
{
    background-position: -136px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_splinearea_16x16
{
    background-position: -272px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_splinearea_16x16_disabled
{
    background-position: -272px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_splitappointment_16x16
{
    background-position: -85px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_splitappointment_16x16_disabled
{
    background-position: -85px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sqare_16x16
{
    background-position: 0px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sqare_16x16_disabled
{
    background-position: 0px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_squeeze_16x16
{
    background-position: -306px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_squeeze_16x16_disabled
{
    background-position: -306px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedarea_16x16
{
    background-position: -153px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedarea_16x16_disabled
{
    background-position: -153px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedbar_16x16
{
    background-position: -238px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedbar_16x16_disabled
{
    background-position: -238px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedline_16x16
{
    background-position: -238px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedline_16x16_disabled
{
    background-position: -238px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedsplinearea_16x16
{
    background-position: -102px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stackedsplinearea_16x16_disabled
{
    background-position: -102px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_status_16x16
{
    background-position: -306px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_status_16x16_disabled
{
    background-position: -306px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_steparea_16x16
{
    background-position: -17px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_steparea_16x16_disabled
{
    background-position: -17px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stepline_16x16
{
    background-position: -272px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_stepline_16x16_disabled
{
    background-position: -272px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_stretch_16x16
{
    background-position: -221px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_stretch_16x16_disabled
{
    background-position: -221px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeout_16x16
{
    background-position: -306px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeout_16x16_disabled
{
    background-position: -306px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeoutdouble_16x16
{
    background-position: -204px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeoutdouble_16x16_disabled
{
    background-position: -204px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_subscript_16x16
{
    background-position: -238px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_subscript_16x16_disabled
{
    background-position: -238px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_suggestion_16x16
{
    background-position: -136px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_suggestion_16x16_disabled
{
    background-position: -136px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_summary_16x16
{
    background-position: -17px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_summary_16x16_disabled
{
    background-position: -17px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_superscript_16x16
{
    background-position: -306px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_superscript_16x16_disabled
{
    background-position: -306px -578px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_switchtimescalesto_16x16
{
    background-position: -255px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_switchtimescalesto_16x16_disabled
{
    background-position: -255px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_tag_16x16
{
    background-position: -289px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_tag_16x16_disabled
{
    background-position: -289px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_task_16x16
{
    background-position: -17px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_tasks_task_16x16_disabled
{
    background-position: -17px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_team_16x16
{
    background-position: -51px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_team_16x16_disabled
{
    background-position: -51px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_technology_16x16
{
    background-position: -170px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_technology_16x16_disabled
{
    background-position: -170px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_template_16x16
{
    background-position: -17px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_template_16x16_disabled
{
    background-position: -17px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_textbox_16x16
{
    background-position: -153px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_textbox_16x16_disabled
{
    background-position: -153px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_through_16x16
{
    background-position: -306px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_through_16x16_disabled
{
    background-position: -306px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_tight_16x16
{
    background-position: -85px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_tight_16x16_disabled
{
    background-position: -85px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_time_16x16
{
    background-position: -204px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_time_16x16_disabled
{
    background-position: -204px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_timelineview_16x16
{
    background-position: -17px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_timelineview_16x16_disabled
{
    background-position: -17px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_today_16x16
{
    background-position: -204px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_today_16x16_disabled
{
    background-position: -204px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_topandbuttom_16x16
{
    background-position: -238px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_topandbuttom_16x16_disabled
{
    background-position: -238px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underline_16x16
{
    background-position: 0px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underline_16x16_disabled
{
    background-position: 0px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlinedouble_16x16
{
    background-position: -306px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlinedouble_16x16_disabled
{
    background-position: -306px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlineword_16x16
{
    background-position: 0px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlineword_16x16_disabled
{
    background-position: 0px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_undo_16x16
{
    background-position: -102px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_undo_16x16_disabled
{
    background-position: -102px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_up_16x16
{
    background-position: -170px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_up_16x16_disabled
{
    background-position: -170px -629px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_usergroup_16x16
{
    background-position: -51px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_people_usergroup_16x16_disabled
{
    background-position: -51px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_vb_16x16
{
    background-position: -153px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_programming_vb_16x16_disabled
{
    background-position: -153px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_version_16x16
{
    background-position: -119px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_support_version_16x16_disabled
{
    background-position: -119px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_video_16x16
{
    background-position: -68px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_video_16x16_disabled
{
    background-position: -68px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_viewonweb_16x16
{
    background-position: -85px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_viewonweb_16x16_disabled
{
    background-position: -85px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_watermark_16x16
{
    background-position: -170px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_content_watermark_16x16_disabled
{
    background-position: -170px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_weekend_16x16
{
    background-position: -238px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_weekend_16x16_disabled
{
    background-position: -238px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_weekview_16x16
{
    background-position: 0px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_weekview_16x16_disabled
{
    background-position: 0px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_windows_16x16
{
    background-position: -187px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_windows_16x16_disabled
{
    background-position: -187px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16
{
    background-position: -51px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16_disabled
{
    background-position: -51px -595px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomleft_16x16
{
    background-position: -289px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomleft_16x16_disabled
{
    background-position: -289px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomright_16x16
{
    background-position: -85px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomright_16x16_disabled
{
    background-position: -85px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centercenter_16x16
{
    background-position: -119px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centercenter_16x16_disabled
{
    background-position: -119px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerleft_16x16
{
    background-position: -289px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerleft_16x16_disabled
{
    background-position: -289px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerright_16x16
{
    background-position: -85px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerright_16x16_disabled
{
    background-position: -85px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topcenter_16x16
{
    background-position: -51px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topcenter_16x16_disabled
{
    background-position: -51px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topleft_16x16
{
    background-position: -85px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topleft_16x16_disabled
{
    background-position: -85px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topright_16x16
{
    background-position: -68px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topright_16x16_disabled
{
    background-position: -68px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_wizard_16x16
{
    background-position: -119px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_wizard_16x16_disabled
{
    background-position: -119px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_workweekview_16x16
{
    background-position: -17px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_workweekview_16x16_disabled
{
    background-position: -17px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_wraptext_16x16
{
    background-position: -204px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_wraptext_16x16_disabled
{
    background-position: -204px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom_16x16
{
    background-position: -221px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom_16x16_disabled
{
    background-position: -221px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom100_16x16
{
    background-position: -255px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom100_16x16_disabled
{
    background-position: -255px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom2_16x16
{
    background-position: -289px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom2_16x16_disabled
{
    background-position: -289px -612px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomin_16x16
{
    background-position: -187px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomin_16x16_disabled
{
    background-position: -187px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomout_16x16
{
    background-position: 0px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomout_16x16_disabled
{
    background-position: 0px -561px;
    width: 16px;
    height: 16px;
}

.dxIcon_actions_add_16x16gray,
.dxIcon_actions_add_16x16gray_disabled,
.dxIcon_actions_additem_16x16gray,
.dxIcon_actions_additem_16x16gray_disabled,
.dxIcon_data_addnewdatasource_16x16gray,
.dxIcon_data_addnewdatasource_16x16gray_disabled,
.dxIcon_other_addtext_16x16gray,
.dxIcon_other_addtext_16x16gray_disabled,
.dxIcon_format_aligncenter_16x16gray,
.dxIcon_format_aligncenter_16x16gray_disabled,
.dxIcon_alignment_alignhorizontalbottom_16x16gray,
.dxIcon_alignment_alignhorizontalbottom_16x16gray_disabled,
.dxIcon_alignment_alignhorizontalcenter_16x16gray,
.dxIcon_alignment_alignhorizontalcenter_16x16gray_disabled,
.dxIcon_alignment_alignhorizontaltop_16x16gray,
.dxIcon_alignment_alignhorizontaltop_16x16gray_disabled,
.dxIcon_format_alignjustify_16x16gray,
.dxIcon_format_alignjustify_16x16gray_disabled,
.dxIcon_format_alignleft_16x16gray,
.dxIcon_format_alignleft_16x16gray_disabled,
.dxIcon_other_alignment_centerbottom_16x16gray,
.dxIcon_other_alignment_centerbottom_16x16gray_disabled,
.dxIcon_other_alignment_centercenter_16x16gray,
.dxIcon_other_alignment_centercenter_16x16gray_disabled,
.dxIcon_other_alignment_centertop_16x16gray,
.dxIcon_other_alignment_centertop_16x16gray_disabled,
.dxIcon_other_alignment_leftbuttom_16x16gray,
.dxIcon_other_alignment_leftbuttom_16x16gray_disabled,
.dxIcon_other_alignment_leftcenter_16x16gray,
.dxIcon_other_alignment_leftcenter_16x16gray_disabled,
.dxIcon_other_alignment_lefttop_16x16gray,
.dxIcon_other_alignment_lefttop_16x16gray_disabled,
.dxIcon_other_alignment_rightbottom_16x16gray,
.dxIcon_other_alignment_rightbottom_16x16gray_disabled,
.dxIcon_other_alignment_rightcenter_16x16gray,
.dxIcon_other_alignment_rightcenter_16x16gray_disabled,
.dxIcon_other_alignment_righttop_16x16gray,
.dxIcon_other_alignment_righttop_16x16gray_disabled,
.dxIcon_format_alignright_16x16gray,
.dxIcon_format_alignright_16x16gray_disabled,
.dxIcon_alignment_alignverticalcenter_16x16gray,
.dxIcon_alignment_alignverticalcenter_16x16gray_disabled,
.dxIcon_alignment_alignverticalleft_16x16gray,
.dxIcon_alignment_alignverticalleft_16x16gray_disabled,
.dxIcon_alignment_alignverticalright_16x16gray,
.dxIcon_alignment_alignverticalright_16x16gray_disabled,
.dxIcon_other_all_borders_16x16gray,
.dxIcon_other_all_borders_16x16gray_disabled,
.dxIcon_actions_apply_16x16gray,
.dxIcon_actions_apply_16x16gray_disabled,
.dxIcon_mail_attach_16x16gray,
.dxIcon_mail_attach_16x16gray_disabled,
.dxIcon_mail_attachmentobject_16x16gray,
.dxIcon_mail_attachmentobject_16x16gray_disabled,
.dxIcon_other_autofit_16x16gray,
.dxIcon_other_autofit_16x16gray_disabled,
.dxIcon_other_autofit_window_16x16gray,
.dxIcon_other_autofit_window_16x16gray_disabled,
.dxIcon_navigation_backward_16x16gray,
.dxIcon_navigation_backward_16x16gray_disabled,
.dxIcon_arrange_behindtext_16x16gray,
.dxIcon_arrange_behindtext_16x16gray_disabled,
.dxIcon_format_bold_16x16gray,
.dxIcon_format_bold_16x16gray_disabled,
.dxIcon_other_bookmark_16x16gray,
.dxIcon_other_bookmark_16x16gray_disabled,
.dxIcon_other_bottom_border_16x16gray,
.dxIcon_other_bottom_border_16x16gray_disabled,
.dxIcon_other_breaks_column_16x16gray,
.dxIcon_other_breaks_column_16x16gray_disabled,
.dxIcon_other_breaks_continuous_16x16gray,
.dxIcon_other_breaks_continuous_16x16gray_disabled,
.dxIcon_other_breaks_evenpage_16x16gray,
.dxIcon_other_breaks_evenpage_16x16gray_disabled,
.dxIcon_other_breaks_nextpage_16x16gray,
.dxIcon_other_breaks_nextpage_16x16gray_disabled,
.dxIcon_other_breaks_oddpage_16x16gray,
.dxIcon_other_breaks_oddpage_16x16gray_disabled,
.dxIcon_arrange_bringforward_16x16gray,
.dxIcon_arrange_bringforward_16x16gray_disabled,
.dxIcon_arrange_bringtofront_16x16gray,
.dxIcon_arrange_bringtofront_16x16gray_disabled,
.dxIcon_arrange_bringtofrontoftext_16x16gray,
.dxIcon_arrange_bringtofrontoftext_16x16gray_disabled,
.dxIcon_actions_cancel_16x16gray,
.dxIcon_actions_cancel_16x16gray_disabled,
.dxIcon_scheduling_cellsautoheight_16x16gray,
.dxIcon_scheduling_cellsautoheight_16x16gray_disabled,
.dxIcon_format_changetextcase_16x16gray,
.dxIcon_format_changetextcase_16x16gray_disabled,
.dxIcon_chart_chart_16x16gray,
.dxIcon_chart_chart_16x16gray_disabled,
.dxIcon_actions_clear_16x16gray,
.dxIcon_actions_clear_16x16gray_disabled,
.dxIcon_actions_clearformatting_16x16gray,
.dxIcon_actions_clearformatting_16x16gray_disabled,
.dxIcon_actions_close_16x16gray,
.dxIcon_actions_close_16x16gray_disabled,
.dxIcon_format_columns_16x16gray,
.dxIcon_format_columns_16x16gray_disabled,
.dxIcon_other_columnsleft_16x16gray,
.dxIcon_other_columnsleft_16x16gray_disabled,
.dxIcon_other_columnsone_16x16gray,
.dxIcon_other_columnsone_16x16gray_disabled,
.dxIcon_other_columnsright_16x16gray,
.dxIcon_other_columnsright_16x16gray_disabled,
.dxIcon_other_columnsthree_16x16gray,
.dxIcon_other_columnsthree_16x16gray_disabled,
.dxIcon_other_columnstwo_16x16gray,
.dxIcon_other_columnstwo_16x16gray_disabled,
.dxIcon_scheduling_compressweekend_16x16gray,
.dxIcon_scheduling_compressweekend_16x16gray_disabled,
.dxIcon_help_content_16x16gray,
.dxIcon_help_content_16x16gray_disabled,
.dxIcon_edit_copy_16x16gray,
.dxIcon_edit_copy_16x16gray_disabled,
.dxIcon_miscellaneous_cube_16x16gray,
.dxIcon_miscellaneous_cube_16x16gray_disabled,
.dxIcon_miscellaneous_currency_16x16gray,
.dxIcon_miscellaneous_currency_16x16gray_disabled,
.dxIcon_edit_customization_16x16gray,
.dxIcon_edit_customization_16x16gray_disabled,
.dxIcon_grid_customizegrid_16x16gray,
.dxIcon_grid_customizegrid_16x16gray_disabled,
.dxIcon_other_customizemergefield_16x16gray,
.dxIcon_other_customizemergefield_16x16gray_disabled,
.dxIcon_edit_cut_16x16gray,
.dxIcon_edit_cut_16x16gray_disabled,
.dxIcon_scheduling_dayview_16x16gray,
.dxIcon_scheduling_dayview_16x16gray_disabled,
.dxIcon_edit_delete_16x16gray,
.dxIcon_edit_delete_16x16gray_disabled,
.dxIcon_actions_delete_16x16gray,
.dxIcon_actions_delete_16x16gray_disabled,
.dxIcon_other_delete_hyperlink_16x16gray,
.dxIcon_other_delete_hyperlink_16x16gray_disabled,
.dxIcon_other_deletecells_16x16gray,
.dxIcon_other_deletecells_16x16gray_disabled,
.dxIcon_other_deletecolumn_16x16gray,
.dxIcon_other_deletecolumn_16x16gray_disabled,
.dxIcon_data_deletedatasource_16x16gray,
.dxIcon_data_deletedatasource_16x16gray_disabled,
.dxIcon_actions_deleteitem_16x16gray,
.dxIcon_actions_deleteitem_16x16gray_disabled,
.dxIcon_other_deleterows_16x16gray,
.dxIcon_other_deleterows_16x16gray_disabled,
.dxIcon_other_deletetable_16x16gray,
.dxIcon_other_deletetable_16x16gray_disabled,
.dxIcon_other_diagonal_down_border_16x16gray,
.dxIcon_other_diagonal_down_border_16x16gray_disabled,
.dxIcon_other_diagonal_up_border_16x16gray,
.dxIcon_other_diagonal_up_border_16x16gray_disabled,
.dxIcon_other_differentfirstpage_16x16gray,
.dxIcon_other_differentfirstpage_16x16gray_disabled,
.dxIcon_page_documentmap_16x16gray,
.dxIcon_page_documentmap_16x16gray_disabled,
.dxIcon_arrows_doublefirst_16x16gray,
.dxIcon_arrows_doublefirst_16x16gray_disabled,
.dxIcon_arrows_doublelast_16x16gray,
.dxIcon_arrows_doublelast_16x16gray_disabled,
.dxIcon_arrows_doublenext_16x16gray,
.dxIcon_arrows_doublenext_16x16gray_disabled,
.dxIcon_arrows_doubleprev_16x16gray,
.dxIcon_arrows_doubleprev_16x16gray_disabled,
.dxIcon_edit_edit_16x16gray,
.dxIcon_edit_edit_16x16gray_disabled,
.dxIcon_data_editdatasource_16x16gray,
.dxIcon_data_editdatasource_16x16gray_disabled,
.dxIcon_page_editpagehf_16x16gray,
.dxIcon_page_editpagehf_16x16gray_disabled,
.dxIcon_arrange_editwrappoints_16x16gray,
.dxIcon_arrange_editwrappoints_16x16gray_disabled,
.dxIcon_other_emptyshoppingcart_16x16gray,
.dxIcon_other_emptyshoppingcart_16x16gray_disabled,
.dxIcon_export_exportfile_16x16gray,
.dxIcon_export_exportfile_16x16gray_disabled,
.dxIcon_export_exporttocsv_16x16gray,
.dxIcon_export_exporttocsv_16x16gray_disabled,
.dxIcon_export_exporttodoc_16x16gray,
.dxIcon_export_exporttodoc_16x16gray_disabled,
.dxIcon_export_exporttodocx_16x16gray,
.dxIcon_export_exporttodocx_16x16gray_disabled,
.dxIcon_export_exporttoepub_16x16gray,
.dxIcon_export_exporttoepub_16x16gray_disabled,
.dxIcon_export_exporttohtml_16x16gray,
.dxIcon_export_exporttohtml_16x16gray_disabled,
.dxIcon_export_exporttoimg_16x16gray,
.dxIcon_export_exporttoimg_16x16gray_disabled,
.dxIcon_export_exporttomht_16x16gray,
.dxIcon_export_exporttomht_16x16gray_disabled,
.dxIcon_export_exporttoodt_16x16gray,
.dxIcon_export_exporttoodt_16x16gray_disabled,
.dxIcon_export_exporttopdf_16x16gray,
.dxIcon_export_exporttopdf_16x16gray_disabled,
.dxIcon_export_exporttortf_16x16gray,
.dxIcon_export_exporttortf_16x16gray_disabled,
.dxIcon_export_exporttotxt_16x16gray,
.dxIcon_export_exporttotxt_16x16gray_disabled,
.dxIcon_export_exporttoxls_16x16gray,
.dxIcon_export_exporttoxls_16x16gray_disabled,
.dxIcon_export_exporttoxlsx_16x16gray,
.dxIcon_export_exporttoxlsx_16x16gray_disabled,
.dxIcon_export_exporttoxml_16x16gray,
.dxIcon_export_exporttoxml_16x16gray_disabled,
.dxIcon_export_exporttoxps_16x16gray,
.dxIcon_export_exporttoxps_16x16gray_disabled,
.dxIcon_edit_fillbackground_16x16gray,
.dxIcon_edit_fillbackground_16x16gray_disabled,
.dxIcon_filter_filter_16x16gray,
.dxIcon_filter_filter_16x16gray_disabled,
.dxIcon_find_find_16x16gray,
.dxIcon_find_find_16x16gray_disabled,
.dxIcon_arrows_first_16x16gray,
.dxIcon_arrows_first_16x16gray_disabled,
.dxIcon_other_fixed_column_width_16x16gray,
.dxIcon_other_fixed_column_width_16x16gray_disabled,
.dxIcon_format_font_16x16gray,
.dxIcon_format_font_16x16gray_disabled,
.dxIcon_format_fontcolor_16x16gray,
.dxIcon_format_fontcolor_16x16gray_disabled,
.dxIcon_format_fontsize_16x16gray,
.dxIcon_format_fontsize_16x16gray_disabled,
.dxIcon_format_fontsizedecrease_16x16gray,
.dxIcon_format_fontsizedecrease_16x16gray_disabled,
.dxIcon_format_fontsizeincrease_16x16gray,
.dxIcon_format_fontsizeincrease_16x16gray_disabled,
.dxIcon_navigation_forward_16x16gray,
.dxIcon_navigation_forward_16x16gray_disabled,
.dxIcon_other_fullshoppingcart_16x16gray,
.dxIcon_other_fullshoppingcart_16x16gray_disabled,
.dxIcon_format_highlight_16x16gray,
.dxIcon_format_highlight_16x16gray_disabled,
.dxIcon_navigation_home_16x16gray,
.dxIcon_navigation_home_16x16gray_disabled,
.dxIcon_other_hyperlink_16x16gray,
.dxIcon_other_hyperlink_16x16gray_disabled,
.dxIcon_format_indentdecrease_16x16gray,
.dxIcon_format_indentdecrease_16x16gray_disabled,
.dxIcon_format_indentincrease_16x16gray,
.dxIcon_format_indentincrease_16x16gray_disabled,
.dxIcon_help_index_16x16gray,
.dxIcon_help_index_16x16gray_disabled,
.dxIcon_help_info_16x16gray,
.dxIcon_help_info_16x16gray_disabled,
.dxIcon_arrange_infrontoftext_16x16gray,
.dxIcon_arrange_infrontoftext_16x16gray_disabled,
.dxIcon_arrange_inlinewithtext_16x16gray,
.dxIcon_arrange_inlinewithtext_16x16gray_disabled,
.dxIcon_edit_insertimage_16x16gray,
.dxIcon_edit_insertimage_16x16gray_disabled,
.dxIcon_page_insertpagebreaks_16x16gray,
.dxIcon_page_insertpagebreaks_16x16gray_disabled,
.dxIcon_other_inside_borders_16x16gray,
.dxIcon_other_inside_borders_16x16gray_disabled,
.dxIcon_other_inside_horizontal_border_16x16gray,
.dxIcon_other_inside_horizontal_border_16x16gray_disabled,
.dxIcon_other_inside_vertical_border_16x16gray,
.dxIcon_other_inside_vertical_border_16x16gray_disabled,
.dxIcon_format_italic_16x16gray,
.dxIcon_format_italic_16x16gray_disabled,
.dxIcon_scheduling_label_16x16gray,
.dxIcon_scheduling_label_16x16gray_disabled,
.dxIcon_arrows_last_16x16gray,
.dxIcon_arrows_last_16x16gray_disabled,
.dxIcon_other_left_border_16x16gray,
.dxIcon_other_left_border_16x16gray_disabled,
.dxIcon_other_linespacing_16x16gray,
.dxIcon_other_linespacing_16x16gray_disabled,
.dxIcon_other_linespacing2_16x16gray,
.dxIcon_other_linespacing2_16x16gray_disabled,
.dxIcon_format_listbullets_16x16gray,
.dxIcon_format_listbullets_16x16gray_disabled,
.dxIcon_format_listmultilevel_16x16gray,
.dxIcon_format_listmultilevel_16x16gray_disabled,
.dxIcon_format_listnumbers_16x16gray,
.dxIcon_format_listnumbers_16x16gray_disabled,
.dxIcon_other_marginsmoderate_16x16gray,
.dxIcon_other_marginsmoderate_16x16gray_disabled,
.dxIcon_other_marginsnarrow_16x16gray,
.dxIcon_other_marginsnarrow_16x16gray_disabled,
.dxIcon_other_marginsnormal_16x16gray,
.dxIcon_other_marginsnormal_16x16gray_disabled,
.dxIcon_other_marginswide_16x16gray,
.dxIcon_other_marginswide_16x16gray_disabled,
.dxIcon_scheduling_monthview_16x16gray,
.dxIcon_scheduling_monthview_16x16gray_disabled,
.dxIcon_arrange_morelayoutoptions_16x16gray,
.dxIcon_arrange_morelayoutoptions_16x16gray_disabled,
.dxIcon_page_multiplepages_16x16gray,
.dxIcon_page_multiplepages_16x16gray_disabled,
.dxIcon_navigation_navigationbar_16x16gray,
.dxIcon_navigation_navigationbar_16x16gray_disabled,
.dxIcon_edit_new_16x16gray,
.dxIcon_edit_new_16x16gray_disabled,
.dxIcon_actions_new_16x16gray,
.dxIcon_actions_new_16x16gray_disabled,
.dxIcon_miscellaneous_newwizard_16x16gray,
.dxIcon_miscellaneous_newwizard_16x16gray_disabled,
.dxIcon_arrows_next_16x16gray,
.dxIcon_arrows_next_16x16gray_disabled,
.dxIcon_navigation_next_16x16gray,
.dxIcon_navigation_next_16x16gray_disabled,
.dxIcon_other_no_border_16x16gray,
.dxIcon_other_no_border_16x16gray_disabled,
.dxIcon_actions_open_16x16gray,
.dxIcon_actions_open_16x16gray_disabled,
.dxIcon_actions_openfile_16x16gray,
.dxIcon_actions_openfile_16x16gray_disabled,
.dxIcon_other_outside_borders_16x16gray,
.dxIcon_other_outside_borders_16x16gray_disabled,
.dxIcon_page_pagemargins_16x16gray,
.dxIcon_page_pagemargins_16x16gray_disabled,
.dxIcon_page_pageorientation_16x16gray,
.dxIcon_page_pageorientation_16x16gray_disabled,
.dxIcon_page_papersize_16x16gray,
.dxIcon_page_papersize_16x16gray_disabled,
.dxIcon_page_parameters_16x16gray,
.dxIcon_page_parameters_16x16gray_disabled,
.dxIcon_edit_paste_16x16gray,
.dxIcon_edit_paste_16x16gray_disabled,
.dxIcon_chart_pie_16x16gray,
.dxIcon_chart_pie_16x16gray_disabled,
.dxIcon_arrows_prev_16x16gray,
.dxIcon_arrows_prev_16x16gray_disabled,
.dxIcon_print_preview_16x16gray,
.dxIcon_print_preview_16x16gray_disabled,
.dxIcon_print_previewchart_16x16gray,
.dxIcon_print_previewchart_16x16gray_disabled,
.dxIcon_navigation_previous_16x16gray,
.dxIcon_navigation_previous_16x16gray_disabled,
.dxIcon_print_print_16x16gray,
.dxIcon_print_print_16x16gray_disabled,
.dxIcon_print_printdialog_16x16gray,
.dxIcon_print_printdialog_16x16gray_disabled,
.dxIcon_other_protectdocument_16x16gray,
.dxIcon_other_protectdocument_16x16gray_disabled,
.dxIcon_scheduling_recurrence_16x16gray,
.dxIcon_scheduling_recurrence_16x16gray_disabled,
.dxIcon_history_redo_16x16gray,
.dxIcon_history_redo_16x16gray_disabled,
.dxIcon_actions_refresh_16x16gray,
.dxIcon_actions_refresh_16x16gray_disabled,
.dxIcon_edit_remove_16x16gray,
.dxIcon_edit_remove_16x16gray_disabled,
.dxIcon_format_replace_16x16gray,
.dxIcon_format_replace_16x16gray_disabled,
.dxIcon_actions_reset_16x16gray,
.dxIcon_actions_reset_16x16gray_disabled,
.dxIcon_other_right_border_16x16gray,
.dxIcon_other_right_border_16x16gray_disabled,
.dxIcon_other_rulerhorizontal_16x16gray,
.dxIcon_other_rulerhorizontal_16x16gray_disabled,
.dxIcon_other_rulervertical_16x16gray,
.dxIcon_other_rulervertical_16x16gray_disabled,
.dxIcon_save_save_16x16gray,
.dxIcon_save_save_16x16gray_disabled,
.dxIcon_save_saveall_16x16gray,
.dxIcon_save_saveall_16x16gray_disabled,
.dxIcon_save_saveandclose_16x16gray,
.dxIcon_save_saveandclose_16x16gray_disabled,
.dxIcon_save_saveandnew_16x16gray,
.dxIcon_save_saveandnew_16x16gray_disabled,
.dxIcon_save_saveas_16x16gray,
.dxIcon_save_saveas_16x16gray_disabled,
.dxIcon_save_savedialog_16x16gray,
.dxIcon_save_savedialog_16x16gray_disabled,
.dxIcon_other_select_16x16gray,
.dxIcon_other_select_16x16gray_disabled,
.dxIcon_other_selecttable_16x16gray,
.dxIcon_other_selecttable_16x16gray_disabled,
.dxIcon_other_selecttablecell_16x16gray,
.dxIcon_other_selecttablecell_16x16gray_disabled,
.dxIcon_other_selecttablecolumn_16x16gray,
.dxIcon_other_selecttablecolumn_16x16gray_disabled,
.dxIcon_other_selecttablerow_16x16gray,
.dxIcon_other_selecttablerow_16x16gray_disabled,
.dxIcon_arrange_sendbackward_16x16gray,
.dxIcon_arrange_sendbackward_16x16gray_disabled,
.dxIcon_arrange_sendbehindtext_16x16gray,
.dxIcon_arrange_sendbehindtext_16x16gray_disabled,
.dxIcon_mail_sendcsv_16x16gray,
.dxIcon_mail_sendcsv_16x16gray_disabled,
.dxIcon_mail_sendfile_16x16gray,
.dxIcon_mail_sendfile_16x16gray_disabled,
.dxIcon_mail_sendimg_16x16gray,
.dxIcon_mail_sendimg_16x16gray_disabled,
.dxIcon_mail_sendmht_16x16gray,
.dxIcon_mail_sendmht_16x16gray_disabled,
.dxIcon_mail_sendpdf_16x16gray,
.dxIcon_mail_sendpdf_16x16gray_disabled,
.dxIcon_mail_sendrtf_16x16gray,
.dxIcon_mail_sendrtf_16x16gray_disabled,
.dxIcon_arrange_sendtoback_16x16gray,
.dxIcon_arrange_sendtoback_16x16gray_disabled,
.dxIcon_mail_sendtxt_16x16gray,
.dxIcon_mail_sendtxt_16x16gray_disabled,
.dxIcon_mail_sendxls_16x16gray,
.dxIcon_mail_sendxls_16x16gray_disabled,
.dxIcon_mail_sendxlsx_16x16gray,
.dxIcon_mail_sendxlsx_16x16gray_disabled,
.dxIcon_other_shoppingcart_16x16gray,
.dxIcon_other_shoppingcart_16x16gray_disabled,
.dxIcon_actions_show_16x16gray,
.dxIcon_actions_show_16x16gray_disabled,
.dxIcon_format_showhidden_16x16gray,
.dxIcon_format_showhidden_16x16gray_disabled,
.dxIcon_scheduling_showworktimeonly_16x16gray,
.dxIcon_scheduling_showworktimeonly_16x16gray_disabled,
.dxIcon_scheduling_snaptocells_16x16gray,
.dxIcon_scheduling_snaptocells_16x16gray_disabled,
.dxIcon_data_sortasc_16x16gray,
.dxIcon_data_sortasc_16x16gray_disabled,
.dxIcon_data_sortdesc_16x16gray,
.dxIcon_data_sortdesc_16x16gray_disabled,
.dxIcon_format_spellcheck_16x16gray,
.dxIcon_format_spellcheck_16x16gray_disabled,
.dxIcon_format_spellcheckasyoutype_16x16gray,
.dxIcon_format_spellcheckasyoutype_16x16gray_disabled,
.dxIcon_scheduling_splitappointment_16x16gray,
.dxIcon_scheduling_splitappointment_16x16gray_disabled,
.dxIcon_arrange_sqare_16x16gray,
.dxIcon_arrange_sqare_16x16gray_disabled,
.dxIcon_actions_squeeze_16x16gray,
.dxIcon_actions_squeeze_16x16gray_disabled,
.dxIcon_scheduling_status_16x16gray,
.dxIcon_scheduling_status_16x16gray_disabled,
.dxIcon_actions_stretch_16x16gray,
.dxIcon_actions_stretch_16x16gray_disabled,
.dxIcon_format_strikeout_16x16gray,
.dxIcon_format_strikeout_16x16gray_disabled,
.dxIcon_format_strikeoutdouble_16x16gray,
.dxIcon_format_strikeoutdouble_16x16gray_disabled,
.dxIcon_format_subscript_16x16gray,
.dxIcon_format_subscript_16x16gray_disabled,
.dxIcon_data_summary_16x16gray,
.dxIcon_data_summary_16x16gray_disabled,
.dxIcon_format_superscript_16x16gray,
.dxIcon_format_superscript_16x16gray_disabled,
.dxIcon_scheduling_switchtimescalesto_16x16gray,
.dxIcon_scheduling_switchtimescalesto_16x16gray_disabled,
.dxIcon_format_symbol_16x16gray,
.dxIcon_format_symbol_16x16gray_disabled,
.dxIcon_other_table_16x16gray,
.dxIcon_other_table_16x16gray_disabled,
.dxIcon_other_tablecellmargins_16x16gray,
.dxIcon_other_tablecellmargins_16x16gray_disabled,
.dxIcon_other_tableofcontents_16x16gray,
.dxIcon_other_tableofcontents_16x16gray_disabled,
.dxIcon_arrange_through_16x16gray,
.dxIcon_arrange_through_16x16gray_disabled,
.dxIcon_arrange_tight_16x16gray,
.dxIcon_arrange_tight_16x16gray_disabled,
.dxIcon_scheduling_timelineview_16x16gray,
.dxIcon_scheduling_timelineview_16x16gray_disabled,
.dxIcon_scheduling_today_16x16gray,
.dxIcon_scheduling_today_16x16gray_disabled,
.dxIcon_other_top_border_16x16gray,
.dxIcon_other_top_border_16x16gray_disabled,
.dxIcon_arrange_topandbuttom_16x16gray,
.dxIcon_arrange_topandbuttom_16x16gray_disabled,
.dxIcon_format_underline_16x16gray,
.dxIcon_format_underline_16x16gray_disabled,
.dxIcon_format_underlinedouble_16x16gray,
.dxIcon_format_underlinedouble_16x16gray_disabled,
.dxIcon_format_underlineword_16x16gray,
.dxIcon_format_underlineword_16x16gray_disabled,
.dxIcon_history_undo_16x16gray,
.dxIcon_history_undo_16x16gray_disabled,
.dxIcon_other_unprotectdocument_16x16gray,
.dxIcon_other_unprotectdocument_16x16gray_disabled,
.dxIcon_navigation_up_16x16gray,
.dxIcon_navigation_up_16x16gray_disabled,
.dxIcon_other_updatetable_16x16gray,
.dxIcon_other_updatetable_16x16gray_disabled,
.dxIcon_other_viewgridlines_16x16gray,
.dxIcon_other_viewgridlines_16x16gray_disabled,
.dxIcon_scheduling_weekview_16x16gray,
.dxIcon_scheduling_weekview_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16gray,
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_bottomleft_16x16gray,
.dxIcon_arrange_withtextwrapping_bottomleft_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_bottomright_16x16gray,
.dxIcon_arrange_withtextwrapping_bottomright_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_centerleft_16x16gray,
.dxIcon_arrange_withtextwrapping_centerleft_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_centerright_16x16gray,
.dxIcon_arrange_withtextwrapping_centerright_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_topcenter_16x16gray,
.dxIcon_arrange_withtextwrapping_topcenter_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_topleft_16x16gray,
.dxIcon_arrange_withtextwrapping_topleft_16x16gray_disabled,
.dxIcon_arrange_withtextwrapping_topright_16x16gray,
.dxIcon_arrange_withtextwrapping_topright_16x16gray_disabled,
.dxIcon_scheduling_workweekview_16x16gray,
.dxIcon_scheduling_workweekview_16x16gray_disabled,
.dxIcon_arrange_wraptext_16x16gray,
.dxIcon_arrange_wraptext_16x16gray_disabled,
.dxIcon_zoom_zoom_16x16gray,
.dxIcon_zoom_zoom_16x16gray_disabled,
.dxIcon_zoom_zoom100_16x16gray,
.dxIcon_zoom_zoom100_16x16gray_disabled,
.dxIcon_zoom_zoom2_16x16gray,
.dxIcon_zoom_zoom2_16x16gray_disabled,
.dxIcon_zoom_zoomin_16x16gray,
.dxIcon_zoom_zoomin_16x16gray_disabled,
.dxIcon_zoom_zoomout_16x16gray,
.dxIcon_zoom_zoomout_16x16gray_disabled
{
    background-image: url('/DXR.axd?r=0_5515-SP_nc');
    background-repeat: no-repeat;
    background-color: transparent;
}
.dxIcon_actions_add_16x16gray
{
    background-position: -187px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_add_16x16gray_disabled
{
    background-position: -187px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_additem_16x16gray
{
    background-position: -17px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_additem_16x16gray_disabled
{
    background-position: -17px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_addnewdatasource_16x16gray
{
    background-position: -170px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_addnewdatasource_16x16gray_disabled
{
    background-position: -170px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_addtext_16x16gray
{
    background-position: -34px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_addtext_16x16gray_disabled
{
    background-position: -34px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_aligncenter_16x16gray
{
    background-position: -17px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_aligncenter_16x16gray_disabled
{
    background-position: -17px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalbottom_16x16gray
{
    background-position: -119px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalbottom_16x16gray_disabled
{
    background-position: -119px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalcenter_16x16gray
{
    background-position: -51px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontalcenter_16x16gray_disabled
{
    background-position: -51px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontaltop_16x16gray
{
    background-position: -34px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignhorizontaltop_16x16gray_disabled
{
    background-position: -34px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignjustify_16x16gray
{
    background-position: -17px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignjustify_16x16gray_disabled
{
    background-position: -17px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignleft_16x16gray
{
    background-position: -51px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignleft_16x16gray_disabled
{
    background-position: -51px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_centerbottom_16x16gray
{
    background-position: -119px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_centerbottom_16x16gray_disabled
{
    background-position: -119px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_centercenter_16x16gray
{
    background-position: -17px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_centercenter_16x16gray_disabled
{
    background-position: -17px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_centertop_16x16gray
{
    background-position: -153px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_centertop_16x16gray_disabled
{
    background-position: -153px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_leftbuttom_16x16gray
{
    background-position: 0px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_leftbuttom_16x16gray_disabled
{
    background-position: 0px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_leftcenter_16x16gray
{
    background-position: -170px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_leftcenter_16x16gray_disabled
{
    background-position: -170px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_lefttop_16x16gray
{
    background-position: -153px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_lefttop_16x16gray_disabled
{
    background-position: -153px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_rightbottom_16x16gray
{
    background-position: -51px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_rightbottom_16x16gray_disabled
{
    background-position: -51px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_rightcenter_16x16gray
{
    background-position: -221px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_rightcenter_16x16gray_disabled
{
    background-position: -221px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_righttop_16x16gray
{
    background-position: -136px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_alignment_righttop_16x16gray_disabled
{
    background-position: -136px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignright_16x16gray
{
    background-position: -85px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_alignright_16x16gray_disabled
{
    background-position: -85px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalcenter_16x16gray
{
    background-position: -51px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalcenter_16x16gray_disabled
{
    background-position: -51px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalleft_16x16gray
{
    background-position: -85px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalleft_16x16gray_disabled
{
    background-position: -85px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalright_16x16gray
{
    background-position: -204px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_alignment_alignverticalright_16x16gray_disabled
{
    background-position: -204px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_all_borders_16x16gray
{
    background-position: -102px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_all_borders_16x16gray_disabled
{
    background-position: -102px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_apply_16x16gray
{
    background-position: -153px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_apply_16x16gray_disabled
{
    background-position: -153px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attach_16x16gray
{
    background-position: -170px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attach_16x16gray_disabled
{
    background-position: -170px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attachmentobject_16x16gray
{
    background-position: -51px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_attachmentobject_16x16gray_disabled
{
    background-position: -51px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_autofit_16x16gray
{
    background-position: -51px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_autofit_16x16gray_disabled
{
    background-position: -51px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_autofit_window_16x16gray
{
    background-position: -51px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_autofit_window_16x16gray_disabled
{
    background-position: -51px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_backward_16x16gray
{
    background-position: 0px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_backward_16x16gray_disabled
{
    background-position: 0px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_behindtext_16x16gray
{
    background-position: -119px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_behindtext_16x16gray_disabled
{
    background-position: -119px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_bold_16x16gray
{
    background-position: -17px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_bold_16x16gray_disabled
{
    background-position: -17px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_bookmark_16x16gray
{
    background-position: -153px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_bookmark_16x16gray_disabled
{
    background-position: -153px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_bottom_border_16x16gray
{
    background-position: -204px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_bottom_border_16x16gray_disabled
{
    background-position: -204px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_column_16x16gray
{
    background-position: -136px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_column_16x16gray_disabled
{
    background-position: -136px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_continuous_16x16gray
{
    background-position: -221px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_continuous_16x16gray_disabled
{
    background-position: -221px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_evenpage_16x16gray
{
    background-position: -221px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_evenpage_16x16gray_disabled
{
    background-position: -221px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_nextpage_16x16gray
{
    background-position: -102px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_nextpage_16x16gray_disabled
{
    background-position: -102px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_oddpage_16x16gray
{
    background-position: -238px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_breaks_oddpage_16x16gray_disabled
{
    background-position: -238px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringforward_16x16gray
{
    background-position: -136px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringforward_16x16gray_disabled
{
    background-position: -136px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofront_16x16gray
{
    background-position: -238px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofront_16x16gray_disabled
{
    background-position: -238px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofrontoftext_16x16gray
{
    background-position: -221px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_bringtofrontoftext_16x16gray_disabled
{
    background-position: -221px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_cancel_16x16gray
{
    background-position: -238px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_cancel_16x16gray_disabled
{
    background-position: -238px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_cellsautoheight_16x16gray
{
    background-position: -68px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_cellsautoheight_16x16gray_disabled
{
    background-position: -68px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_changetextcase_16x16gray
{
    background-position: 0px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_changetextcase_16x16gray_disabled
{
    background-position: 0px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chart_16x16gray
{
    background-position: -85px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_chart_16x16gray_disabled
{
    background-position: -85px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clear_16x16gray
{
    background-position: 0px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clear_16x16gray_disabled
{
    background-position: 0px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clearformatting_16x16gray
{
    background-position: -170px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_clearformatting_16x16gray_disabled
{
    background-position: -170px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_close_16x16gray
{
    background-position: -170px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_close_16x16gray_disabled
{
    background-position: -170px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_columns_16x16gray
{
    background-position: -102px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_columns_16x16gray_disabled
{
    background-position: -102px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsleft_16x16gray
{
    background-position: -170px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsleft_16x16gray_disabled
{
    background-position: -170px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsone_16x16gray
{
    background-position: 0px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsone_16x16gray_disabled
{
    background-position: 0px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsright_16x16gray
{
    background-position: -85px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsright_16x16gray_disabled
{
    background-position: -85px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsthree_16x16gray
{
    background-position: -204px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnsthree_16x16gray_disabled
{
    background-position: -204px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnstwo_16x16gray
{
    background-position: 0px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_columnstwo_16x16gray_disabled
{
    background-position: 0px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_compressweekend_16x16gray
{
    background-position: 0px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_compressweekend_16x16gray_disabled
{
    background-position: 0px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_help_content_16x16gray
{
    background-position: -170px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_help_content_16x16gray_disabled
{
    background-position: -170px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_copy_16x16gray
{
    background-position: 0px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_copy_16x16gray_disabled
{
    background-position: 0px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_cube_16x16gray
{
    background-position: -204px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_cube_16x16gray_disabled
{
    background-position: -204px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_currency_16x16gray
{
    background-position: -170px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_currency_16x16gray_disabled
{
    background-position: -170px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_customization_16x16gray
{
    background-position: -68px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_customization_16x16gray_disabled
{
    background-position: -68px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_customizegrid_16x16gray
{
    background-position: -170px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_grid_customizegrid_16x16gray_disabled
{
    background-position: -170px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_customizemergefield_16x16gray
{
    background-position: -17px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_customizemergefield_16x16gray_disabled
{
    background-position: -17px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_cut_16x16gray
{
    background-position: -153px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_cut_16x16gray_disabled
{
    background-position: -153px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_dayview_16x16gray
{
    background-position: -34px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_dayview_16x16gray_disabled
{
    background-position: -34px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_delete_16x16gray
{
    background-position: -102px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_delete_16x16gray_disabled
{
    background-position: -102px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_delete_16x16gray
{
    background-position: -153px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_delete_16x16gray_disabled
{
    background-position: -153px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_delete_hyperlink_16x16gray
{
    background-position: -119px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_delete_hyperlink_16x16gray_disabled
{
    background-position: -119px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deletecells_16x16gray
{
    background-position: -34px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deletecells_16x16gray_disabled
{
    background-position: -34px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deletecolumn_16x16gray
{
    background-position: -17px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deletecolumn_16x16gray_disabled
{
    background-position: -17px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_deletedatasource_16x16gray
{
    background-position: -68px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_deletedatasource_16x16gray_disabled
{
    background-position: -68px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_deleteitem_16x16gray
{
    background-position: -119px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_deleteitem_16x16gray_disabled
{
    background-position: -119px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deleterows_16x16gray
{
    background-position: -221px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deleterows_16x16gray_disabled
{
    background-position: -221px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deletetable_16x16gray
{
    background-position: -68px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_deletetable_16x16gray_disabled
{
    background-position: -68px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_diagonal_down_border_16x16gray
{
    background-position: -187px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_diagonal_down_border_16x16gray_disabled
{
    background-position: -187px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_diagonal_up_border_16x16gray
{
    background-position: -17px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_diagonal_up_border_16x16gray_disabled
{
    background-position: -17px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_differentfirstpage_16x16gray
{
    background-position: -204px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_differentfirstpage_16x16gray_disabled
{
    background-position: -204px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_documentmap_16x16gray
{
    background-position: -17px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_documentmap_16x16gray_disabled
{
    background-position: -17px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublefirst_16x16gray
{
    background-position: -34px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublefirst_16x16gray_disabled
{
    background-position: -34px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublelast_16x16gray
{
    background-position: -51px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublelast_16x16gray_disabled
{
    background-position: -51px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublenext_16x16gray
{
    background-position: -51px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doublenext_16x16gray_disabled
{
    background-position: -51px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doubleprev_16x16gray
{
    background-position: -102px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_doubleprev_16x16gray_disabled
{
    background-position: -102px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_edit_16x16gray
{
    background-position: 0px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_edit_16x16gray_disabled
{
    background-position: 0px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_editdatasource_16x16gray
{
    background-position: -238px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_editdatasource_16x16gray_disabled
{
    background-position: -238px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_editpagehf_16x16gray
{
    background-position: -238px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_editpagehf_16x16gray_disabled
{
    background-position: -238px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_editwrappoints_16x16gray
{
    background-position: -34px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_editwrappoints_16x16gray_disabled
{
    background-position: -34px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_emptyshoppingcart_16x16gray
{
    background-position: -136px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_emptyshoppingcart_16x16gray_disabled
{
    background-position: -136px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exportfile_16x16gray
{
    background-position: -119px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exportfile_16x16gray_disabled
{
    background-position: -119px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttocsv_16x16gray
{
    background-position: -119px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttocsv_16x16gray_disabled
{
    background-position: -119px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodoc_16x16gray
{
    background-position: -153px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodoc_16x16gray_disabled
{
    background-position: -153px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodocx_16x16gray
{
    background-position: -102px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttodocx_16x16gray_disabled
{
    background-position: -102px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoepub_16x16gray
{
    background-position: -51px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoepub_16x16gray_disabled
{
    background-position: -51px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttohtml_16x16gray
{
    background-position: -119px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttohtml_16x16gray_disabled
{
    background-position: -119px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoimg_16x16gray
{
    background-position: -68px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoimg_16x16gray_disabled
{
    background-position: -68px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttomht_16x16gray
{
    background-position: -85px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttomht_16x16gray_disabled
{
    background-position: -85px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoodt_16x16gray
{
    background-position: -34px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoodt_16x16gray_disabled
{
    background-position: -34px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttopdf_16x16gray
{
    background-position: -68px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttopdf_16x16gray_disabled
{
    background-position: -68px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttortf_16x16gray
{
    background-position: -204px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttortf_16x16gray_disabled
{
    background-position: -204px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttotxt_16x16gray
{
    background-position: -68px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttotxt_16x16gray_disabled
{
    background-position: -68px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxls_16x16gray
{
    background-position: -221px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxls_16x16gray_disabled
{
    background-position: -221px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxlsx_16x16gray
{
    background-position: -17px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxlsx_16x16gray_disabled
{
    background-position: -17px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxml_16x16gray
{
    background-position: -68px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxml_16x16gray_disabled
{
    background-position: -68px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxps_16x16gray
{
    background-position: -17px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_export_exporttoxps_16x16gray_disabled
{
    background-position: -17px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_fillbackground_16x16gray
{
    background-position: -204px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_fillbackground_16x16gray_disabled
{
    background-position: -204px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filter_16x16gray
{
    background-position: -187px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_filter_filter_16x16gray_disabled
{
    background-position: -187px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_find_16x16gray
{
    background-position: -51px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_find_find_16x16gray_disabled
{
    background-position: -51px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_first_16x16gray
{
    background-position: -68px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_first_16x16gray_disabled
{
    background-position: -68px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_fixed_column_width_16x16gray
{
    background-position: -238px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_fixed_column_width_16x16gray_disabled
{
    background-position: -238px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_font_16x16gray
{
    background-position: -85px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_font_16x16gray_disabled
{
    background-position: -85px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontcolor_16x16gray
{
    background-position: -51px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontcolor_16x16gray_disabled
{
    background-position: -51px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsize_16x16gray
{
    background-position: -85px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsize_16x16gray_disabled
{
    background-position: -85px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizedecrease_16x16gray
{
    background-position: -68px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizedecrease_16x16gray_disabled
{
    background-position: -68px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizeincrease_16x16gray
{
    background-position: -204px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_fontsizeincrease_16x16gray_disabled
{
    background-position: -204px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_forward_16x16gray
{
    background-position: -102px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_forward_16x16gray_disabled
{
    background-position: -102px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_fullshoppingcart_16x16gray
{
    background-position: -187px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_fullshoppingcart_16x16gray_disabled
{
    background-position: -187px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_highlight_16x16gray
{
    background-position: -136px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_highlight_16x16gray_disabled
{
    background-position: -136px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_home_16x16gray
{
    background-position: 0px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_home_16x16gray_disabled
{
    background-position: 0px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_hyperlink_16x16gray
{
    background-position: -187px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_hyperlink_16x16gray_disabled
{
    background-position: -187px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentdecrease_16x16gray
{
    background-position: -153px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentdecrease_16x16gray_disabled
{
    background-position: -153px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentincrease_16x16gray
{
    background-position: -51px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_indentincrease_16x16gray_disabled
{
    background-position: -51px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_help_index_16x16gray
{
    background-position: -34px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_help_index_16x16gray_disabled
{
    background-position: -34px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_help_info_16x16gray
{
    background-position: -85px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_help_info_16x16gray_disabled
{
    background-position: -85px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_infrontoftext_16x16gray
{
    background-position: -153px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_infrontoftext_16x16gray_disabled
{
    background-position: -153px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_inlinewithtext_16x16gray
{
    background-position: -102px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_inlinewithtext_16x16gray_disabled
{
    background-position: -102px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_insertimage_16x16gray
{
    background-position: -153px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_insertimage_16x16gray_disabled
{
    background-position: -153px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_insertpagebreaks_16x16gray
{
    background-position: -238px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_insertpagebreaks_16x16gray_disabled
{
    background-position: -238px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_inside_borders_16x16gray
{
    background-position: -204px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_inside_borders_16x16gray_disabled
{
    background-position: -204px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_inside_horizontal_border_16x16gray
{
    background-position: -187px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_inside_horizontal_border_16x16gray_disabled
{
    background-position: -187px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_inside_vertical_border_16x16gray
{
    background-position: -204px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_inside_vertical_border_16x16gray_disabled
{
    background-position: -204px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_italic_16x16gray
{
    background-position: -136px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_italic_16x16gray_disabled
{
    background-position: -136px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_label_16x16gray
{
    background-position: -51px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_label_16x16gray_disabled
{
    background-position: -51px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_last_16x16gray
{
    background-position: -136px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_last_16x16gray_disabled
{
    background-position: -136px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_left_border_16x16gray
{
    background-position: 0px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_left_border_16x16gray_disabled
{
    background-position: 0px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_linespacing_16x16gray
{
    background-position: -153px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_linespacing_16x16gray_disabled
{
    background-position: -153px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_linespacing2_16x16gray
{
    background-position: -68px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_linespacing2_16x16gray_disabled
{
    background-position: -68px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listbullets_16x16gray
{
    background-position: -187px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listbullets_16x16gray_disabled
{
    background-position: -187px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listmultilevel_16x16gray
{
    background-position: -102px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listmultilevel_16x16gray_disabled
{
    background-position: -102px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listnumbers_16x16gray
{
    background-position: -68px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_listnumbers_16x16gray_disabled
{
    background-position: -68px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginsmoderate_16x16gray
{
    background-position: -102px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginsmoderate_16x16gray_disabled
{
    background-position: -102px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginsnarrow_16x16gray
{
    background-position: -102px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginsnarrow_16x16gray_disabled
{
    background-position: -102px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginsnormal_16x16gray
{
    background-position: -136px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginsnormal_16x16gray_disabled
{
    background-position: -136px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginswide_16x16gray
{
    background-position: -17px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_marginswide_16x16gray_disabled
{
    background-position: -17px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_monthview_16x16gray
{
    background-position: 0px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_monthview_16x16gray_disabled
{
    background-position: 0px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_morelayoutoptions_16x16gray
{
    background-position: -153px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_morelayoutoptions_16x16gray_disabled
{
    background-position: -153px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_multiplepages_16x16gray
{
    background-position: -119px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_multiplepages_16x16gray_disabled
{
    background-position: -119px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_navigationbar_16x16gray
{
    background-position: -34px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_navigationbar_16x16gray_disabled
{
    background-position: -34px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_new_16x16gray
{
    background-position: -221px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_new_16x16gray_disabled
{
    background-position: -221px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_new_16x16gray
{
    background-position: -170px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_new_16x16gray_disabled
{
    background-position: -170px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_newwizard_16x16gray
{
    background-position: -102px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_miscellaneous_newwizard_16x16gray_disabled
{
    background-position: -102px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_next_16x16gray
{
    background-position: -68px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_next_16x16gray_disabled
{
    background-position: -68px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_next_16x16gray
{
    background-position: -204px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_next_16x16gray_disabled
{
    background-position: -204px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_no_border_16x16gray
{
    background-position: -34px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_no_border_16x16gray_disabled
{
    background-position: -34px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_open_16x16gray
{
    background-position: -119px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_open_16x16gray_disabled
{
    background-position: -119px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_openfile_16x16gray
{
    background-position: -85px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_openfile_16x16gray_disabled
{
    background-position: -85px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_outside_borders_16x16gray
{
    background-position: -170px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_outside_borders_16x16gray_disabled
{
    background-position: -170px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_pagemargins_16x16gray
{
    background-position: -187px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_pagemargins_16x16gray_disabled
{
    background-position: -187px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_pageorientation_16x16gray
{
    background-position: -187px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_pageorientation_16x16gray_disabled
{
    background-position: -187px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_papersize_16x16gray
{
    background-position: -170px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_papersize_16x16gray_disabled
{
    background-position: -170px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_parameters_16x16gray
{
    background-position: 0px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_page_parameters_16x16gray_disabled
{
    background-position: 0px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_paste_16x16gray
{
    background-position: -136px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_paste_16x16gray_disabled
{
    background-position: -136px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pie_16x16gray
{
    background-position: -221px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_chart_pie_16x16gray_disabled
{
    background-position: -221px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_prev_16x16gray
{
    background-position: -187px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrows_prev_16x16gray_disabled
{
    background-position: -187px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_preview_16x16gray
{
    background-position: -170px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_preview_16x16gray_disabled
{
    background-position: -170px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_previewchart_16x16gray
{
    background-position: -238px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_previewchart_16x16gray_disabled
{
    background-position: -238px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_previous_16x16gray
{
    background-position: -119px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_previous_16x16gray_disabled
{
    background-position: -119px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_print_16x16gray
{
    background-position: -85px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_print_16x16gray_disabled
{
    background-position: -85px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_printdialog_16x16gray
{
    background-position: -204px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_print_printdialog_16x16gray_disabled
{
    background-position: -204px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_protectdocument_16x16gray
{
    background-position: -238px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_protectdocument_16x16gray_disabled
{
    background-position: -238px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_recurrence_16x16gray
{
    background-position: -85px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_recurrence_16x16gray_disabled
{
    background-position: -85px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_redo_16x16gray
{
    background-position: -34px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_redo_16x16gray_disabled
{
    background-position: -34px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_refresh_16x16gray
{
    background-position: -153px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_refresh_16x16gray_disabled
{
    background-position: -153px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_remove_16x16gray
{
    background-position: -136px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_edit_remove_16x16gray_disabled
{
    background-position: -136px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_replace_16x16gray
{
    background-position: -17px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_replace_16x16gray_disabled
{
    background-position: -17px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_reset_16x16gray
{
    background-position: -153px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_reset_16x16gray_disabled
{
    background-position: -153px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_right_border_16x16gray
{
    background-position: -102px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_right_border_16x16gray_disabled
{
    background-position: -102px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_rulerhorizontal_16x16gray
{
    background-position: -51px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_rulerhorizontal_16x16gray_disabled
{
    background-position: -51px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_rulervertical_16x16gray
{
    background-position: -85px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_rulervertical_16x16gray_disabled
{
    background-position: -85px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_save_16x16gray
{
    background-position: -119px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_save_16x16gray_disabled
{
    background-position: -119px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveall_16x16gray
{
    background-position: -85px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveall_16x16gray_disabled
{
    background-position: -85px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandclose_16x16gray
{
    background-position: -204px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandclose_16x16gray_disabled
{
    background-position: -204px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandnew_16x16gray
{
    background-position: -187px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveandnew_16x16gray_disabled
{
    background-position: -187px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveas_16x16gray
{
    background-position: -34px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_saveas_16x16gray_disabled
{
    background-position: -34px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_savedialog_16x16gray
{
    background-position: -170px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_save_savedialog_16x16gray_disabled
{
    background-position: -170px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_select_16x16gray
{
    background-position: -170px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_select_16x16gray_disabled
{
    background-position: -170px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttable_16x16gray
{
    background-position: -221px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttable_16x16gray_disabled
{
    background-position: -221px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttablecell_16x16gray
{
    background-position: -187px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttablecell_16x16gray_disabled
{
    background-position: -187px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttablecolumn_16x16gray
{
    background-position: -119px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttablecolumn_16x16gray_disabled
{
    background-position: -119px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttablerow_16x16gray
{
    background-position: -51px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_selecttablerow_16x16gray_disabled
{
    background-position: -51px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbackward_16x16gray
{
    background-position: -221px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbackward_16x16gray_disabled
{
    background-position: -221px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbehindtext_16x16gray
{
    background-position: -153px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendbehindtext_16x16gray_disabled
{
    background-position: -153px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendcsv_16x16gray
{
    background-position: -119px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendcsv_16x16gray_disabled
{
    background-position: -119px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendfile_16x16gray
{
    background-position: -17px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendfile_16x16gray_disabled
{
    background-position: -17px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendimg_16x16gray
{
    background-position: -136px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendimg_16x16gray_disabled
{
    background-position: -136px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendmht_16x16gray
{
    background-position: -187px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendmht_16x16gray_disabled
{
    background-position: -187px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendpdf_16x16gray
{
    background-position: -136px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendpdf_16x16gray_disabled
{
    background-position: -136px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendrtf_16x16gray
{
    background-position: -68px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendrtf_16x16gray_disabled
{
    background-position: -68px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendtoback_16x16gray
{
    background-position: 0px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sendtoback_16x16gray_disabled
{
    background-position: 0px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendtxt_16x16gray
{
    background-position: -238px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendtxt_16x16gray_disabled
{
    background-position: -238px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxls_16x16gray
{
    background-position: -34px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxls_16x16gray_disabled
{
    background-position: -34px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxlsx_16x16gray
{
    background-position: -85px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_mail_sendxlsx_16x16gray_disabled
{
    background-position: -85px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_shoppingcart_16x16gray
{
    background-position: -102px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_shoppingcart_16x16gray_disabled
{
    background-position: -102px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_show_16x16gray
{
    background-position: -221px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_show_16x16gray_disabled
{
    background-position: -221px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_showhidden_16x16gray
{
    background-position: -102px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_showhidden_16x16gray_disabled
{
    background-position: -102px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_showworktimeonly_16x16gray
{
    background-position: -17px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_showworktimeonly_16x16gray_disabled
{
    background-position: -17px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_snaptocells_16x16gray
{
    background-position: 0px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_snaptocells_16x16gray_disabled
{
    background-position: 0px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortasc_16x16gray
{
    background-position: -221px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortasc_16x16gray_disabled
{
    background-position: -221px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortdesc_16x16gray
{
    background-position: -238px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_sortdesc_16x16gray_disabled
{
    background-position: -238px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_spellcheck_16x16gray
{
    background-position: -34px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_spellcheck_16x16gray_disabled
{
    background-position: -34px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_spellcheckasyoutype_16x16gray
{
    background-position: -204px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_spellcheckasyoutype_16x16gray_disabled
{
    background-position: -204px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_splitappointment_16x16gray
{
    background-position: -119px -170px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_splitappointment_16x16gray_disabled
{
    background-position: -119px -459px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sqare_16x16gray
{
    background-position: -187px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_sqare_16x16gray_disabled
{
    background-position: -187px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_squeeze_16x16gray
{
    background-position: -136px 0px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_squeeze_16x16gray_disabled
{
    background-position: -136px -289px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_status_16x16gray
{
    background-position: -238px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_status_16x16gray_disabled
{
    background-position: -238px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_stretch_16x16gray
{
    background-position: -238px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_actions_stretch_16x16gray_disabled
{
    background-position: -238px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeout_16x16gray
{
    background-position: 0px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeout_16x16gray_disabled
{
    background-position: 0px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeoutdouble_16x16gray
{
    background-position: -238px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_strikeoutdouble_16x16gray_disabled
{
    background-position: -238px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_subscript_16x16gray
{
    background-position: -136px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_subscript_16x16gray_disabled
{
    background-position: -136px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_summary_16x16gray
{
    background-position: -170px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_data_summary_16x16gray_disabled
{
    background-position: -170px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_superscript_16x16gray
{
    background-position: -136px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_superscript_16x16gray_disabled
{
    background-position: -136px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_switchtimescalesto_16x16gray
{
    background-position: -85px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_switchtimescalesto_16x16gray_disabled
{
    background-position: -85px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_symbol_16x16gray
{
    background-position: -68px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_symbol_16x16gray_disabled
{
    background-position: -68px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_table_16x16gray
{
    background-position: -34px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_table_16x16gray_disabled
{
    background-position: -34px -408px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_tablecellmargins_16x16gray
{
    background-position: -85px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_tablecellmargins_16x16gray_disabled
{
    background-position: -85px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_tableofcontents_16x16gray
{
    background-position: 0px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_tableofcontents_16x16gray_disabled
{
    background-position: 0px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_through_16x16gray
{
    background-position: -102px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_through_16x16gray_disabled
{
    background-position: -102px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_tight_16x16gray
{
    background-position: -119px -204px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_tight_16x16gray_disabled
{
    background-position: -119px -493px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_timelineview_16x16gray
{
    background-position: -187px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_timelineview_16x16gray_disabled
{
    background-position: -187px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_today_16x16gray
{
    background-position: -68px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_today_16x16gray_disabled
{
    background-position: -68px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_top_border_16x16gray
{
    background-position: -221px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_top_border_16x16gray_disabled
{
    background-position: -221px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_topandbuttom_16x16gray
{
    background-position: -68px -85px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_topandbuttom_16x16gray_disabled
{
    background-position: -68px -374px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underline_16x16gray
{
    background-position: -187px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underline_16x16gray_disabled
{
    background-position: -187px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlinedouble_16x16gray
{
    background-position: -221px -68px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlinedouble_16x16gray_disabled
{
    background-position: -221px -357px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlineword_16x16gray
{
    background-position: -17px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_format_underlineword_16x16gray_disabled
{
    background-position: -17px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_undo_16x16gray
{
    background-position: -119px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_history_undo_16x16gray_disabled
{
    background-position: -119px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_unprotectdocument_16x16gray
{
    background-position: -187px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_unprotectdocument_16x16gray_disabled
{
    background-position: -187px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_up_16x16gray
{
    background-position: -204px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_navigation_up_16x16gray_disabled
{
    background-position: -204px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_updatetable_16x16gray
{
    background-position: -221px -153px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_updatetable_16x16gray_disabled
{
    background-position: -221px -442px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_viewgridlines_16x16gray
{
    background-position: -204px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_other_viewgridlines_16x16gray_disabled
{
    background-position: -204px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_weekview_16x16gray
{
    background-position: -34px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_weekview_16x16gray_disabled
{
    background-position: -34px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16gray
{
    background-position: -17px -255px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomcenter_16x16gray_disabled
{
    background-position: -17px -544px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomleft_16x16gray
{
    background-position: -51px -34px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomleft_16x16gray_disabled
{
    background-position: -51px -323px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomright_16x16gray
{
    background-position: -238px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_bottomright_16x16gray_disabled
{
    background-position: -238px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerleft_16x16gray
{
    background-position: -153px -187px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerleft_16x16gray_disabled
{
    background-position: -153px -476px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerright_16x16gray
{
    background-position: -221px -17px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_centerright_16x16gray_disabled
{
    background-position: -221px -306px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topcenter_16x16gray
{
    background-position: -136px -272px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topcenter_16x16gray_disabled
{
    background-position: -136px -561px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topleft_16x16gray
{
    background-position: -221px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topleft_16x16gray_disabled
{
    background-position: -221px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topright_16x16gray
{
    background-position: -34px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_withtextwrapping_topright_16x16gray_disabled
{
    background-position: -34px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_workweekview_16x16gray
{
    background-position: -170px -51px;
    width: 16px;
    height: 16px;
}
.dxIcon_scheduling_workweekview_16x16gray_disabled
{
    background-position: -170px -340px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_wraptext_16x16gray
{
    background-position: -153px -221px;
    width: 16px;
    height: 16px;
}
.dxIcon_arrange_wraptext_16x16gray_disabled
{
    background-position: -153px -510px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom_16x16gray
{
    background-position: -102px -102px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom_16x16gray_disabled
{
    background-position: -102px -391px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom100_16x16gray
{
    background-position: -85px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom100_16x16gray_disabled
{
    background-position: -85px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom2_16x16gray
{
    background-position: -204px -238px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoom2_16x16gray_disabled
{
    background-position: -204px -527px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomin_16x16gray
{
    background-position: -238px -136px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomin_16x16gray_disabled
{
    background-position: -238px -425px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomout_16x16gray
{
    background-position: -136px -119px;
    width: 16px;
    height: 16px;
}
.dxIcon_zoom_zoomout_16x16gray_disabled
{
    background-position: -136px -408px;
    width: 16px;
    height: 16px;
}

