From 8b080a51b4983cafce29b3372a2625a3d3891740 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Fri, 30 May 2014 16:29:22 +0200 Subject: [PATCH 01/22] Convert the one BMP to GIF. The latter is a standard web format and also smaller. --- resources/claro/basic.css | 2 +- resources/images/claro-grid-header-onepixel.bmp | Bin 58 -> 0 bytes resources/images/claro-grid-header-onepixel.gif | Bin 0 -> 35 bytes 3 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 resources/images/claro-grid-header-onepixel.bmp create mode 100644 resources/images/claro-grid-header-onepixel.gif diff --git a/resources/claro/basic.css b/resources/claro/basic.css index f2ed0b31b..321daff63 100644 --- a/resources/claro/basic.css +++ b/resources/claro/basic.css @@ -43,7 +43,7 @@ } .claro .gridxHeaderRowInner { - background-image: url('../images/claro-grid-header-onepixel.bmp'); + background-image: url('../images/claro-grid-header-onepixel.gif'); background-position: right; background-repeat: repeat-y; border-right: 1px solid #FFFFFF; diff --git a/resources/images/claro-grid-header-onepixel.bmp b/resources/images/claro-grid-header-onepixel.bmp deleted file mode 100644 index 47014d78e8c45e547dba0c678a657cb21148fd74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 58 fcmZ?rwPJt(Ga#h_#Eft(0hV9^lc>a=J$o1cNIL_2 diff --git a/resources/images/claro-grid-header-onepixel.gif b/resources/images/claro-grid-header-onepixel.gif new file mode 100644 index 0000000000000000000000000000000000000000..23f74215eb68fd2b7054f92c46d2a82b6edf1a33 GIT binary patch literal 35 ncmZ?wbh9u|WMp7uXkcX6vuDr$|NnIufB+=Iz{KRj$Y2css;vkO literal 0 HcmV?d00001 From 0a72a852d7d77bd092947548b1d5b6eee9af02f2 Mon Sep 17 00:00:00 2001 From: junfengye Date: Sat, 7 Jun 2014 13:22:59 +0800 Subject: [PATCH 02/22] zIndex for emptyNode set zIndex to 1 --- modules/Body.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Body.js b/modules/Body.js index 687a6c629..3d2e688d7 100644 --- a/modules/Body.js +++ b/modules/Body.js @@ -596,7 +596,7 @@ define([ } n.innerHTML = ''; en.innerHTML = emptyInfo; - en.style.zIndex = ''; + en.style.zIndex = 1; t.onEmpty(); t.model.free(); } From 33834a52e7ae53822d6600d59c0609785208e6bf Mon Sep 17 00:00:00 2001 From: Leslie Date: Wed, 18 Jun 2014 10:23:13 +0800 Subject: [PATCH 03/22] fix #12671 - Focus skip column header and row header when using Tab key --- modules/IndirectSelect.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/IndirectSelect.js b/modules/IndirectSelect.js index 357178fa9..4b8381ade 100644 --- a/modules/IndirectSelect.js +++ b/modules/IndirectSelect.js @@ -237,6 +237,7 @@ define([ } domClass.add(headerCellNode, 'gridxHeaderCellFocus'); headerCellNode.focus(); + g.focus.stopEvent(evt); return true; }, blur = function(){ @@ -249,7 +250,7 @@ define([ focusNode: rowHeader.headerNode, doFocus: focus, doBlur: blur, - onFocus: focus, + // onFocus: focus, onBlur: blur }); }, From ac694790a535441d3cac142ac7f4dc4b43bf556c Mon Sep 17 00:00:00 2001 From: Leslie Date: Wed, 18 Jun 2014 10:36:34 +0800 Subject: [PATCH 04/22] update test_grid_bar page to add case for empty Toolbar focus skip header and rowHeader issue --- tests/test_grid_bar.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/test_grid_bar.html b/tests/test_grid_bar.html index b3303249e..9c72e2dae 100644 --- a/tests/test_grid_bar.html +++ b/tests/test_grid_bar.html @@ -107,8 +107,13 @@

Empty Toolbar

selectRowTriggerOnCell: true, modules: [ "gridx/modules/extendedSelect/Row", - "gridx/modules/IndirectSelectColumn", - "gridx/modules/ToolBar" + "gridx/modules/IndirectSelect", + "gridx/modules/ToolBar", + "gridx/modules/ColumnResizer", + "gridx/modules/RowHeader", + "gridx/modules/ToolBar", + "gridx/modules/Focus", + "gridx/modules/Sort" ] '> From 624e4db2e4889ae7efc851b30fd529cec2614929 Mon Sep 17 00:00:00 2001 From: Leslie Date: Fri, 20 Jun 2014 10:07:29 +0800 Subject: [PATCH 05/22] fix gridx fail to render when encode non-string column --- core/model/cache/Sync.js | 6 +++--- tests/test_grid_specialChars.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/model/cache/Sync.js b/core/model/cache/Sync.js index d4f10c71e..8839777f6 100644 --- a/core/model/cache/Sync.js +++ b/core/model/cache/Sync.js @@ -170,7 +170,7 @@ define([ indexToId: function(index, parentId){ this._init(); var items = this._struct[this.model.isId(parentId) ? parentId : this.layerId()]; - return typeof index == 'number' && index >= 0 ? items && items[index + 1] : undefined; + return typeof index === 'number' && index >= 0 ? items && items[index + 1] : undefined; }, idToIndex: function(id){ @@ -277,7 +277,7 @@ define([ array.forEach(s.getAttributes(item), function(attr){ obj[attr] = s.getValue(item, attr); }); - return obj; + return obj; } return item; }, @@ -288,7 +288,7 @@ define([ cellData; cellData = col.formatter ? col.formatter(rawData, rowId) : rawData[col.field || colId]; - return (t.columns[colId] && t.columns[colId].encode === true)? entities.encode(cellData) : cellData; + return (t.columns[colId] && t.columns[colId].encode === true && typeof cellData === 'string')? entities.encode(cellData) : cellData; }, _formatRow: function(rowData, rowId){ diff --git a/tests/test_grid_specialChars.js b/tests/test_grid_specialChars.js index d2a8f9859..8a46eb7a8 100644 --- a/tests/test_grid_specialChars.js +++ b/tests/test_grid_specialChars.js @@ -27,7 +27,7 @@ require([ }, {id: 'Album', field: 'Album', name: 'Album', dataType: 'string', autoComplete: false}, {id: 'Name', field: 'Name', name: 'Name', dataType: 'string'}, - {id: 'Year', field: 'Year', name: 'Year', dataType: 'number'}, + {id: 'Year', field: 'Year', name: 'Year', dataType: 'number', encode: true}, {id: 'Length', field: 'Length', name: 'Length', dataType: 'string'}, {id: 'Track', field: 'Track', name: 'Track', dataType: 'number'}, {id: 'Composer', field: 'Composer', name: 'Composer', dataType: 'string'}, From cb8ae068002b39a01de3cd5532df02792110ae59 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Fri, 20 Jun 2014 15:15:55 +0800 Subject: [PATCH 06/22] update dod test page --- tests/test_grid_dod.js | 69 +++++++++++++++++++++++++----------------- 1 file changed, 41 insertions(+), 28 deletions(-) diff --git a/tests/test_grid_dod.js b/tests/test_grid_dod.js index c6b769d55..c4b3c45a6 100644 --- a/tests/test_grid_dod.js +++ b/tests/test_grid_dod.js @@ -10,6 +10,7 @@ require([ 'gridx/modules/VirtualVScroller', 'gridx/modules/Dod', 'gridx/modules/select/Row', + 'gridx/modules/extendedSelect/Row', 'gridx/modules/RowHeader', 'gridx/modules/IndirectSelect', 'dojox/charting/themes/Julie', @@ -25,7 +26,8 @@ require([ 'dojox/charting/plot2d/Pie', 'dojo/domReady!' ], function(domConstruct, parser, - Grid, Cache, dataSource, storeFactory, TestPane, focus, VirtualVScroller, Dod, SelectRow, RowHeader, IndirectSelect, JulieTheme){ + Grid, Cache, dataSource, storeFactory, TestPane, + focus, VirtualVScroller, Dod, SelectRow, extendedSelectRow, RowHeader, IndirectSelect, JulieTheme){ function random(start, end){ //include start but not end. e.g. 1-10, 1 is possible but not 10. return Math.floor(Math.random()*(end-start)) + start; @@ -54,12 +56,12 @@ require([ renderred.callback(); }, 2000); return renderred; - } + }; window.syncDetailProvider = function(grid, rowId, detailNode, renderred){ setContent(detailNode); renderred.callback(); return renderred; - } + }; function setContent(node){ switch(contentType){ case 'text': @@ -140,6 +142,8 @@ require([ modules: [ VirtualVScroller, RowHeader, + 'gridx/modules/IndirectSelect', + 'gridx/modules/extendedSelect/Row', { moduleClass: Dod, defaultShow: defaultShow, @@ -150,14 +154,18 @@ require([ ], structure: dataSource.layouts[1] }); - dojo.connect(grid.dod, 'onShow', function(row){console.log('row with id:#' + row.id + ' shows');}) - dojo.connect(grid.dod, 'onHide', function(row){console.log('row with id:#' + row.id + ' hides');}) + dojo.connect(grid.dod, 'onShow', function(row){ + console.log('row with id:#' + row.id + ' shows'); + }); + dojo.connect(grid.dod, 'onHide', function(row){ + console.log('row with id:#' + row.id + ' hides'); + }); grid.placeAt('gridContainer'); grid.startup(); window.dod = grid.dod; - } + }; createGrid(); @@ -165,56 +173,61 @@ require([ var tp = new TestPane({}); tp.placeAt('ctrlPane'); - - window.showRow1Detail = function(){ dod.show(grid.row('1')).then(function(row){ console.log(row); }, function(err){ console.log(err); }); - } + }; + window.hideRow1Detail = function(){ dod.hide(grid.row('1')).then(function(row){ console.log(row); }, function(err){ console.log(err); }); - } + }; + window.toggleRow2Detail = function(){ dod.toggle(grid.row('2')); - } + }; + window.refreshRow2Detail = function(){ dod.refresh(grid.row('2')); - } + }; + window.isRow3DetailShown = function(){ alert(dod.isShown(grid.row('1'))); - } - + }; + window.showRow1DetailOnRow = function(){ grid.row('1').showDetail(); - } + }; + window.hideRow1DetailOnRow = function(){ grid.row('1').hideDetail(); - } + }; + window.toggleRow2DetailOnRow = function(){ grid.row('2').toggleDetail(); - } + }; + window.isRow3DetailShownOnRow = function(){ alert(grid.row('1').isDetailShown()); - } + }; tp.addTestSet('DoD types', [ - '
', - '
', - '
', - '
', - '
', - '
Re Create Grid
' - ].join('')); + '
', + '
', + '
', + '
', + '
', + '
Re Create Grid
' + ].join('')); tp.addTestSet('Dod APIs', [ '
', - selected ? '✓' : partial ? '▮' : '☐', + // selected ? '✓' : partial ? '▮' : '☐', + this._isSingle()? (selected? '◉' : '◌'): + (selected ? '✓' : partial ? '▮' : '☐'), '' ].join(''); }, @@ -188,7 +190,12 @@ define([ domClass.toggle(node, dijitClass + 'PartialDisabled', partial && isUnselectable); domClass.toggle(node, dijitClass + 'Disabled', !selected && !partial && isUnselectable); node.setAttribute('aria-checked', selected ? 'true' : partial ? 'mixed' : 'false'); - node.firstChild.innerHTML = selected ? '✓' : partial ? '▮' : '☐'; + // node.firstChild.innerHTML = selected ? '✓' : partial ? '▮' : '☐'; + if(this._isSingle()){ + node.firstChild.innerHTML = selected ? '◉' : '◌'; + }else{ + node.firstChild.innerHTML = selected ? '✓' : partial ? '▮' : '☐'; + } } }, From 6078687915d2915bd2afa7e41d18be8a48d3d707 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Mon, 23 Jun 2014 14:54:25 +0800 Subject: [PATCH 08/22] code cleanup --- modules/IndirectSelectColumn.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/IndirectSelectColumn.js b/modules/IndirectSelectColumn.js index 7a3b4d68c..ab1abcbb0 100644 --- a/modules/IndirectSelectColumn.js +++ b/modules/IndirectSelectColumn.js @@ -144,7 +144,6 @@ define([ isUnselectable && !selected && !partial ? dijitClass + 'Disabled' : '', '" aria-checked="', selected ? 'true' : partial ? 'mixed' : 'false', '">', - // selected ? '✓' : partial ? '▮' : '☐', this._isSingle()? (selected? '◉' : '◌'): (selected ? '✓' : partial ? '▮' : '☐'), '' @@ -190,7 +189,6 @@ define([ domClass.toggle(node, dijitClass + 'PartialDisabled', partial && isUnselectable); domClass.toggle(node, dijitClass + 'Disabled', !selected && !partial && isUnselectable); node.setAttribute('aria-checked', selected ? 'true' : partial ? 'mixed' : 'false'); - // node.firstChild.innerHTML = selected ? '✓' : partial ? '▮' : '☐'; if(this._isSingle()){ node.firstChild.innerHTML = selected ? '◉' : '◌'; }else{ From 1881983d04eaa95ca6b4d1e3f8dde045bfcb75c6 Mon Sep 17 00:00:00 2001 From: Bingjian Guo Date: Mon, 23 Jun 2014 16:11:19 +0800 Subject: [PATCH 09/22] for always editing, remove the call to _lockColumn when focus --- modules/ColumnLock.js | 7 +- modules/Edit.js | 6 +- tests/data.js | 223 +++++++++++++++++++++ tests/test_grid_EditWithColunmRowLock.html | 71 +++++++ 4 files changed, 304 insertions(+), 3 deletions(-) create mode 100755 tests/data.js create mode 100755 tests/test_grid_EditWithColunmRowLock.html diff --git a/modules/ColumnLock.js b/modules/ColumnLock.js index 336316796..e4b7ba1db 100644 --- a/modules/ColumnLock.js +++ b/modules/ColumnLock.js @@ -235,10 +235,13 @@ define([ this._updateScroller();//used for column dnd to sync hscroller. }, - _updateBody: function(){ + _updateBody: function( aopFucMap ){ // summary: // Update the body for column lock - array.forEach(this.grid.bodyNode.childNodes, this._lockColumns, this); + if ( !aopFucMap || aopFucMap['_updateBody'] !== false ){ + array.forEach(this.grid.bodyNode.childNodes, this._lockColumns, this); + } + }, _updateScroller: function(){ diff --git a/modules/Edit.js b/modules/Edit.js index 1f8f938de..f61ea7b63 100644 --- a/modules/Edit.js +++ b/modules/Edit.js @@ -875,7 +875,11 @@ define([ if(cw && cw.btns){ domClass.add(cw.btns, 'gridxEditFocus'); } - g.body.onRender(); + // + // Defect 12439, when combine the AlwaysEditing and ColumnLock + // The _updateBody contians many rows to call _lockColumn, which is very slow + // + g.body.onRender( { '_updateBody': false } ); } }, diff --git a/tests/data.js b/tests/data.js new file mode 100755 index 000000000..39d0528d6 --- /dev/null +++ b/tests/data.js @@ -0,0 +1,223 @@ +/** + * + */ + +var tableStructure = [{"width":"10px","field":"id","name":"id"}, + {"width":"102px","field":"A0001I0","name":"Auftragsnummer"}, + {"width":"31px","field":"A0225I1","name":"EPL"}, + {"width":"36px","field":"A0226I2","name":"BEW"}, + {"width":"34px","field":"A0151I3","name":"KND"}, + {"width":"119px","field":"A0071I4","name":"Lnderbarkeitsdatum", alwaysEditing: true}, + {"width":"70px","field":"A0044I5","name":"Baumuster"}, + {"width":"200px","field":"A9988I6","name":"Dezimalzahl mit Vorzeichen, immer"}, + {"width":"157px","field":"A9989I7","name":"Dezimalzahl mit Vorzeichen"}, + {"width":"114px","field":"A9990I8","name":"Dezimalzahl positiv"}, + {"width":"81px","field":"A9991I9","name":"PMDA-Datum"}, + {"width":"172px","field":"A9992I10","name":"Integer mit Vorzeichen, immer"}, + {"width":"128px","field":"A9993I11","name":"Integer mit Vorzeichen"}, + {"width":"85px","field":"A9994I12","name":"Integer positiv"}, + {"width":"100px","field":"A9995I13","name":"Boolescher Wert"}, + {"width":"117px","field":"A9996I14","name":"Julianisches Datum"}, + {"width":"200px","field":"A9997I15","name":"Timestamp"}, + {"width":"110px","field":"A9998I16","name":"DB2-Datum"}, + {"width":"79px","field":"A9999I17","name":"PDAT-Datum"}, + {"width":"102px","field":"A0001I18","name":"Auftragsnummer"}]; + +var valueData = [{"A0071I4":".","A9990I8":"511,46","A0151I3":" ","A0001I0":"1 4 203 50001","A9991I9":"24.03.2014","A0044I5":"46711211","A0001I18":"1 4 203 50001","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"51.211","A0225I1":"P0","A9988I6":"-510,98","A9992I10":"+51.182","A9993I11":"-51.197","A0226I2":"..","A9989I7":"511,31","id":0} +,{"A0071I4":"27.09.2013","A9990I8":"514,47","A0151I3":" ","A0001I0":"1 4 203 55001","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 203 55001","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"51.504","A0225I1":"..","A9988I6":".","A9992I10":"+51.476","A9993I11":"51.490","A0226I2":"..","A9989I7":"514,33","id":1} +,{"A0071I4":"01.04.2014","A9990I8":"517,04","A0151I3":" ","A0001I0":"1 4 226 07030","A9991I9":"Hugo","A0044I5":"94330012","A0001I18":"1 4 226 07030","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"51.765","A0225I1":"P0","A9988I6":"+516,75","A9992I10":"+51.732","A9993I11":"51.751","A0226I2":"..","A9989I7":".","id":2} +,{"A0071I4":".","A9990I8":"519,46","A0151I3":" ","A0001I0":"1 4 226 07040","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 07040","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"52.012","A0225I1":"..","A9988I6":"-519,17","A9992I10":"+51.974","A9993I11":"-51.998","A0226I2":"..","A9989I7":"519,32","id":3} +,{"A0071I4":"24.01.2014","A9990I8":"521,94","A0151I3":" ","A0001I0":"1 4 226 21010","A9991I9":"Hugo","A0044I5":"94330012","A0001I18":"1 4 226 21010","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"52.252","A0225I1":"P0","A9988I6":"+521,65","A9992I10":"+52.224","A9993I11":"-52.238","A0226I2":"..","A9989I7":"521,80","id":4} +,{"A0071I4":"05.05.2014","A9990I8":"524,32","A0151I3":" ","A0001I0":"1 4 226 24040","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 24040","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"52.491","A0225I1":"P0","A9988I6":"+524,04","A9992I10":"+52.462","A9993I11":"52.476","A0226I2":"..","A9989I7":"-524,18","id":5} +,{"A0071I4":"06.05.2014","A9990I8":"526,74","A0151I3":" ","A0001I0":"1 4 226 24041","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 24041","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"52.731","A0225I1":"P0","A9988I6":"+526,43","A9992I10":"+52.702","A9993I11":"52.716","A0226I2":"..","A9989I7":"-526,57","id":6} +,{"A0071I4":".","A9990I8":"529,62","A0151I3":" ","A0001I0":"1 4 226 29012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 29012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"53.025","A0225I1":"..","A9988I6":"+529,05","A9992I10":"+52.995","A9993I11":"53.010","A0226I2":"..","A9989I7":"529,46","id":7} +,{"A0071I4":"17.02.2014","A9990I8":"532,90","A0151I3":" ","A0001I0":"1 4 226 40001","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 40001","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"53.356","A0225I1":"P1","A9988I6":"+532,60","A9992I10":"+53.320","A9993I11":"53.341","A0226I2":"..","A9989I7":"532,76","id":8} +,{"A0071I4":"10.09.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 40030","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 40030","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"53.657","A0225I1":"P0","A9988I6":"-535,18","A9992I10":"+53.626","A9993I11":"53.642","A0226I2":"..","A9989I7":"535,33","id":9} +,{"A0071I4":"10.12.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50000","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50000","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+539,05","A9992I10":".","A9993I11":"53.984","A0226I2":"..","A9989I7":"539,24","id":10} +,{"A0071I4":"10.05.2013","A9990I8":"541,96","A0151I3":" ","A0001I0":"1 4 226 50001","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50001","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"54.256","A0225I1":".1","A9988I6":"+541,66","A9992I10":"-54.227","A9993I11":"54.241","A0226I2":"..","A9989I7":"541,81","id":11} +,{"A0071I4":".","A9990I8":"544,34","A0151I3":" ","A0001I0":"1 4 226 50002","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50002","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"54.493","A0225I1":"..","A9988I6":"+544,06","A9992I10":"+54.461","A9993I11":".","A0226I2":"..","A9989I7":"544,20","id":12} +,{"A0071I4":"11.11.2013","A9990I8":"547,22","A0151I3":" ","A0001I0":"1 4 226 50003","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50003","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"54.783","A0225I1":"P0","A9988I6":".","A9992I10":"+54.752","A9993I11":"-54.767","A0226I2":"..","A9989I7":"-547,07","id":13} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":26} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":27} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":30} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":31} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":32} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":33} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":34} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":35} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":36} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":37} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":38} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":39} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":40} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":41} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":42} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":43} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":44} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":45} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":46} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":47} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":48} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":49} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":50} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":51} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":52} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":53} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":53} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":55} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":56} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":57} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":58} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":59} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":60} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":61} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":62} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":63} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":64} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":65} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":26} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":27} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":26} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":27} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":26} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":27} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":26} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":27} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":26} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":27} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} +,{"A0071I4":"10.04.2014","A9990I8":"582,32","A0151I3":" ","A0001I0":"1 4 226 50017","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50017","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.287","A0225I1":"P1","A9988I6":"+582,03","A9992I10":".","A9993I11":"58.273","A0226I2":"..","A9989I7":"-582,18","id":26} +,{"A0071I4":"24.03.2014","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50018","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50018","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":".","A0225I1":"P0","A9988I6":"+584,81","A9992I10":"-58.537","A9993I11":"58.551","A0226I2":"..","A9989I7":"584,95","id":27} +,{"A0071I4":".","A9990I8":"587,45","A0151I3":" ","A0001I0":"1 4 226 50019","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50019","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"58.804","A0225I1":"..","A9988I6":"-587,17","A9992I10":"+58.772","A9993I11":"58.786","A0226I2":"..","A9989I7":"587,31","id":28} +,{"A0071I4":"28.01.2014","A9990I8":"589,82","A0151I3":" ","A0001I0":"1 4 226 50020","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50020","A9999I17":".","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"59.040","A0225I1":"P1","A9988I6":"+589,53","A9992I10":"+59.010","A9993I11":"59.025","A0226I2":"..","A9989I7":"-589,68","id":29} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50004","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50004","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"55.077","A0225I1":"P0","A9988I6":".","A9992I10":".","A9993I11":"55.045","A0226I2":"..","A9989I7":"549,84","id":14} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50005","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50005","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":".0","A9988I6":"-552,87","A9992I10":".","A9993I11":"55.364","A0226I2":"..","A9989I7":"553,03","id":15} +,{"A0071I4":".","A9990I8":"555,74","A0151I3":" ","A0001I0":"1 4 226 50006","A9991I9":".","A0044I5":"96300212","A0001I18":"1 4 226 50006","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"55.790","A0225I1":"..","A9988I6":"+555,42","A9992I10":"+55.604","A9993I11":"-55.628","A0226I2":"..","A9989I7":"-555,58","id":16} +,{"A0071I4":"26.04.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50007","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50007","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":".","A0225I1":"..","A9988I6":"-559,98","A9992I10":".","A9993I11":"56.074","A0226I2":"..","A9989I7":"560,14","id":17} +,{"A0071I4":"29.04.2013","A9990I8":"562,82","A0151I3":" ","A0001I0":"1 4 226 50008","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50008","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.345","A0225I1":"..","A9988I6":"+562,51","A9992I10":"+56.312","A9993I11":"-56.327","A0226I2":"..","A9989I7":"-562,67","id":18} +,{"A0071I4":"07.05.2013","A9990I8":"565,24","A0151I3":" ","A0001I0":"1 4 226 50009","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50009","A9999I17":"00.03.2014","A9998I16":".","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"56.582","A0225I1":"..","A9988I6":"+564,95","A9992I10":"+56.552","A9993I11":"-56.568","A0226I2":"..","A9989I7":"565,10","id":19} +,{"A0071I4":"22.11.2013","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50010","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50010","A9999I17":"24.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"56.816","A0225I1":"P1","A9988I6":".","A9992I10":"+56.785","A9993I11":"56.802","A0226I2":"..","A9989I7":"567,44","id":20} +,{"A0071I4":".","A9990I8":".","A0151I3":" ","A0001I0":"1 4 226 50011","A9991I9":"24.03.2014","A0044I5":" ","A0001I18":"1 4 226 50011","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.066","A0225I1":"..","A9988I6":"+569,66","A9992I10":"-57.037","A9993I11":"57.051","A0226I2":"..","A9989I7":"569,80","id":21} +,{"A0071I4":".","A9990I8":"572,44","A0151I3":" ","A0001I0":"1 4 226 50012","A9991I9":"Hugo","A0044I5":" ","A0001I18":"1 4 226 50012","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.306","A0225I1":"..","A9988I6":"+572,16","A9992I10":"+57.272","A9993I11":"57.292","A0226I2":"..","A9989I7":"572,30","id":22} +,{"A0071I4":".","A9990I8":"574,85","A0151I3":" ","A0001I0":"1 4 226 50013","A9991I9":".","A0044I5":"61613112","A0001I18":"1 4 226 50013","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":"125/14","A9995I13":"false","A9994I12":"57.545","A0225I1":"..","A9988I6":"-574,57","A9992I10":"-57.517","A9993I11":"57.531","A0226I2":"..","A9989I7":"574,71","id":23} +,{"A0071I4":".","A9990I8":"577,24","A0151I3":" ","A0001I0":"1 4 226 50014","A9991I9":"24.03.2014","A0044I5":"61613112","A0001I18":"1 4 226 50014","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":".","A9996I14":"125/14","A9995I13":"true","A9994I12":"57.787","A0225I1":"..","A9988I6":"+576,96","A9992I10":".","A9993I11":"57.773","A0226I2":"..","A9989I7":"577,10","id":24} +,{"A0071I4":".","A9990I8":"579,75","A0151I3":" ","A0001I0":"1 4 226 50016","A9991I9":"Hugo","A0044I5":"61613112","A0001I18":"1 4 226 50016","A9999I17":"00.03.2014","A9998I16":"14.03.2014","A9997I15":"03.05.2014 09:50:54","A9996I14":".","A9995I13":"true","A9994I12":"58.030","A0225I1":"..","A9988I6":"+579,43","A9992I10":"+58.002","A9993I11":"58.016","A0226I2":"..","A9989I7":"-579,57","id":25} + +]; + + \ No newline at end of file diff --git a/tests/test_grid_EditWithColunmRowLock.html b/tests/test_grid_EditWithColunmRowLock.html new file mode 100755 index 000000000..c96d3586a --- /dev/null +++ b/tests/test_grid_EditWithColunmRowLock.html @@ -0,0 +1,71 @@ + + + Show flexible selection Plain HTML + + + + + + + + + + + + + + +
+
+ + + \ No newline at end of file From ec2dc37b49ab309833f425b1e61c095086e4a502 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Tue, 24 Jun 2014 10:15:10 +0800 Subject: [PATCH 10/22] fix typo --- modules/Tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Tree.js b/modules/Tree.js index c3cdf356e..a14f7878f 100644 --- a/modules/Tree.js +++ b/modules/Tree.js @@ -73,7 +73,7 @@ define([ // by setting the "expandLevel" parameter in column definition. If "nested" is false, the expandos will // appear in the first column with truthy "expandLevel" parameter. If "nested" is true, the expando // of any 1st level row will be shown in the column with "expandLevel" equal to 1, and the expando of - // any 2nd level row will be shown in the column width "expandLevel" equal to 2, and so on. + // any 2nd level row will be shown in the column with "expandLevel" equal to 2, and so on. // // The expansion/collapsing of a row can also be controlled by keyboard when the focus is on the cell // with the expando. CTRL+RIGHT_ARROW to expand and CTRL+LEFT_ARROW to collapse. If in RTL mode, the ARROW From ce29ce53d1aaa734cd17b5edd829ee4806e21343 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Tue, 24 Jun 2014 11:34:14 +0800 Subject: [PATCH 11/22] fix #12698 - dijit/form/ComboButton Dropdown List Detaches from page when dialog close --- modules/CellWidget.js | 5 +++++ tests/test_grid_alwaysEditing.js | 36 ++++++++++++++++++++------------ 2 files changed, 28 insertions(+), 13 deletions(-) diff --git a/modules/CellWidget.js b/modules/CellWidget.js index 0a0005517..558b2512a 100644 --- a/modules/CellWidget.js +++ b/modules/CellWidget.js @@ -209,9 +209,14 @@ define([ var t = this, dn = t.domNode; t.connect(dn, 'onmousedown', function(e){ + var n = query(e.target).closest('.dijit')[0], + widget = registry.byNode(n); if(e.target != dn && !t.cell.column.allowEventBubble){ e.cancelBubble = true; } + if(widget && dijit && dijit.form && dijit.form.ComboButton && (widget instanceof dijit.form.ComboButton)){ + e.cancelBubble = false; + } }); t._cellCnnts = []; }, diff --git a/tests/test_grid_alwaysEditing.js b/tests/test_grid_alwaysEditing.js index dde10b918..1e5ba4dfa 100644 --- a/tests/test_grid_alwaysEditing.js +++ b/tests/test_grid_alwaysEditing.js @@ -7,6 +7,7 @@ require([ 'dojo/date/locale', 'dijit/form/TextBox', 'dijit/form/ComboBox', + 'dijit/form/ComboButton', 'dijit/form/DateTextBox', 'dijit/form/TimeTextBox', 'dijit/form/NumberTextBox', @@ -17,13 +18,14 @@ require([ 'dijit/form/CheckBox', 'dijit/form/ToggleButton', 'dijit/Calendar', + 'dijit/Menu', 'dijit/ColorPalette', 'gridx/Grid', 'gridx/core/model/cache/Sync', "gridx/allModules", 'dojo/domReady!' ], function(parser, dataSource, storeFactory, IFWSFactory, IFWStore, locale, - TextBox, ComboBox, DateTextBox, TimeTextBox, NumberTextBox, FilteringSelect, Select){ + TextBox, ComboBox, ComboButton, DateTextBox, TimeTextBox, NumberTextBox, FilteringSelect, Select){ var getDate = function(d){ res = locale.format(d, { @@ -87,11 +89,17 @@ require([ fsStore = createSelectStore('Album'); selectStore = createSelectStore('Length'); + var dropDownCreate = function(){ + return [ + '
', + '
' + ].join(''); + }; layout = [ - { field: "id", name:"ID", width: '20px'}, - { field: "Genre", name:"TextBox", width: '100px', alwaysEditing: true}, - { field: "Artist", name:"ComboBox", width: '100px', alwaysEditing: true, + {id: 'id', field: "id", name:"ID", width: '20px'}, + {id: "Genre", field: "Genre", name:"TextBox", width: '100px', alwaysEditing: true}, + {id: 'Artist', field: "Artist", name:"ComboBox", width: '100px', alwaysEditing: true, decorator: function(data){ return "" + data + ""; }, @@ -103,46 +111,48 @@ require([ props: 'store: mystore, searchAttr: "Artist"' } }, - { field: "Year", name:"NumberTextBox", width: '100px', alwaysEditing: true, + {id: 'Year', field: "Year", name:"NumberTextBox", width: '100px', alwaysEditing: true, editor: "dijit.form.NumberTextBox" }, - { field: "Album", name:"FilteringSelect", width: '100px', alwaysEditing: true, + {id: 'Album', field: "Album", name:"FilteringSelect", width: '100px', alwaysEditing: true, editor: FilteringSelect, editorArgs: { props: 'store: fsStore, searchAttr: "id"' } }, - { field: "Length", name:"Select", width: '100px', alwaysEditing: true, + {id: 'Length', field: "Length", name:"Select", width: '100px', alwaysEditing: true, //FIXME: this is still buggy, hard to set width properly editor: Select, editorArgs: { props: 'store: selectStore, labelAttr: "id"' } }, - { field: "Progress", name:"HorizontalSlider", width: '100px', alwaysEditing: true, + {id: 'Progress', field: "Progress", name:"HorizontalSlider", width: '100px', alwaysEditing: true, editor: "dijit.form.HorizontalSlider", editorArgs: { props: 'minimum: 0, maximum: 1' } }, - { field: "Track", name:"Number Spinner", width: '100px', alwaysEditing: true, + {id: 'Track', field: "Track", name:"Number Spinner", + // width: '100px', + alwaysEditing: true, width: '50px', editor: "dijit.form.NumberSpinner" }, - { field: "Heard", name:"Check Box", width: '30px', alwaysEditing: true, + {id: 'Heard', field: "Heard", name:"Check Box", width: '30px', alwaysEditing: true, editor: "dijit.form.CheckBox", editorArgs: { props: 'value: true' } }, - { field: "Heard", name:"ToggleButton", width: '100px', alwaysEditing: true, + {id: 'Heard', field: "Heard", name:"ToggleButton", width: '100px', alwaysEditing: true, editor: "dijit.form.ToggleButton", editorArgs: { valueField: 'checked', props: 'label: "Press me"' } }, - { field: "Download Date", name:"DateTextBox", width: '100px', alwaysEditing: true, + {id: 'Download Date', field: "Download Date", name:"DateTextBox", width: '100px', alwaysEditing: true, dataType: 'date', storePattern: 'yyyy/M/d', gridPattern: 'yyyy--MM--dd', @@ -151,7 +161,7 @@ require([ fromEditor: getDate } }, - { field: "Last Played", name:"TimeTextBox", width: '100px', alwaysEditing: true, + {id: 'Last Played', field: "Last Played", name:"TimeTextBox", width: '100px', alwaysEditing: true, dataType: "time", storePattern: 'HH:mm:ss', formatter: 'hh:mm a', From e5810416a87b0ba050167b9396213a140358f3ad Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Tue, 24 Jun 2014 14:59:26 +0800 Subject: [PATCH 12/22] remove hard codes for dijit/form/ComboButton because the implementation is bad --- modules/CellWidget.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/CellWidget.js b/modules/CellWidget.js index 558b2512a..b258d2020 100644 --- a/modules/CellWidget.js +++ b/modules/CellWidget.js @@ -209,14 +209,9 @@ define([ var t = this, dn = t.domNode; t.connect(dn, 'onmousedown', function(e){ - var n = query(e.target).closest('.dijit')[0], - widget = registry.byNode(n); - if(e.target != dn && !t.cell.column.allowEventBubble){ + if(e.target !== dn && !t.cell.column.allowEventBubble){ e.cancelBubble = true; } - if(widget && dijit && dijit.form && dijit.form.ComboButton && (widget instanceof dijit.form.ComboButton)){ - e.cancelBubble = false; - } }); t._cellCnnts = []; }, From 9991ad2c05cc98cee9257aee044c15aa2a973439 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Tue, 24 Jun 2014 15:01:52 +0800 Subject: [PATCH 13/22] update cellwidget test page --- tests/test_grid_cellWidget.js | 48 +++++++++++++++++++++++++++++------ 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/tests/test_grid_cellWidget.js b/tests/test_grid_cellWidget.js index 5b1ec7551..7ebd45a15 100644 --- a/tests/test_grid_cellWidget.js +++ b/tests/test_grid_cellWidget.js @@ -22,8 +22,8 @@ require([ }); layout1 = [ - { field: "id", name:"Index", width: '50px'}, - { field: "Progress", name:"Progress", dataType:'number', + {id: "id", field: "id", name:"Index", width: '50px'}, + {id: 'Progress', field: "Progress", name:"Progress", dataType:'number', widgetsInCell: true, decorator: function(){ return [ @@ -32,7 +32,7 @@ require([ ].join(''); } }, - { field: "Artist", name:"Button", + {id: 'Artist', field: "Artist", name:"Button", widgetsInCell: true, navigable: true, allowEventBubble: true, @@ -51,7 +51,39 @@ require([ this.btn.set('label', data); } }, - { field: "Album", name:"Read-only CheckBox", + {id: 'Artist2', field: "Artist", name:"ComboButton", + navigable: true, + expandLevel: 'all', + width: '200px', + widgetsInCell: true, + allowEventBubble: true, + setCellValue: function(gridData, storeData, cellWidget){ + var menuItem = new dijit.MenuItem({ + label : "Cut", + value : "Cut", + onClick : function (value) { + cellWidget.combo.set('label', "Cut"); + } + }); + + cellWidget.sMenu.addChild(menuItem); + menuItem = new dijit.MenuItem({ + label : "Paste", + value : "Paste", + onClick : function (value) { + cellWidget.combo.set('label', "Paste"); + } + }); + cellWidget.sMenu.addChild(menuItem); + }, + decorator: function(){ + return [ + '
', + '
' + ].join(''); + } + }, + {id: 'Album', field: "Album", name:"Read-only CheckBox", widgetsInCell: true, decorator: function(){ return [ @@ -68,7 +100,7 @@ require([ this.cb.set('value', data.length % 2); } }, - { field: "Genre", name:"ComboButton", + {id: 'Genre', field: "Genre", name:"ComboButton", widgetsInCell: true, navigable: true, decorator: function(){ @@ -97,7 +129,7 @@ require([ this.btn.set('label', data); } }, - { field: "Name", name:"DropDown Button", + {id: 'Name', field: "Name", name:"DropDown Button", widgetsInCell: true, navigable: true, decorator: function(){ @@ -118,8 +150,8 @@ require([ ]; layout2 = [ - { field: "id", name:"Index", width: '50px'}, - { field: "Name", name:"Buttons", + {id: 'id', field: "id", name:"Index", width: '50px'}, + {id: 'Name', field: "Name", name:"Buttons", widgetsInCell: true, navigable: true, decorator: function(){ From b01222553a114975ce06d784de26857aae7a30ba Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Tue, 24 Jun 2014 16:48:52 +0800 Subject: [PATCH 14/22] fix #12775 - gridx dod has no way to open detail info by expando. --- modules/Dod.js | 11 ++++++----- resources/Dod.less | 3 +++ resources/Gridx.css | 2 +- resources/claro/Gridx.css | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/modules/Dod.js b/modules/Dod.js index ba3a191b7..e5a44e9f7 100644 --- a/modules/Dod.js +++ b/modules/Dod.js @@ -7,18 +7,19 @@ define([ "dojo/_base/lang", "dojo/_base/Deferred", "dojo/_base/array", - "../core/_Module", "dojo/_base/declare", "dojo/_base/fx", "dojo/fx", "dojo/keys", + 'dojo/_base/event', + 'dojo/_base/sniff', + "../core/_Module", '../support/query', 'dijit/a11y', - 'dijit/registry', - 'dojo/_base/event', - 'dojo/_base/sniff' + 'dijit/registry' ], function(kernel, domConstruct, domStyle, domClass, domGeometry, lang, - Deferred, array, _Module, declare, baseFx, fx, keys, query, a11y, registry, event, has){ + Deferred, array, declare, baseFx, fx, keys, event, has, + _Module, query, a11y, registry){ // kernel.experimental('gridx/modules/Dod'); /*===== diff --git a/resources/Dod.less b/resources/Dod.less index 766db8046..8b12aa98e 100644 --- a/resources/Dod.less +++ b/resources/Dod.less @@ -25,6 +25,9 @@ .gridxRowOver & { visibility: visible; } + .gridxTouch & { + visibility: visible; + } .gridxDodShown & { .icon(dodExpandoOpen); } diff --git a/resources/Gridx.css b/resources/Gridx.css index 92d8a4206..56f150363 100644 --- a/resources/Gridx.css +++ b/resources/Gridx.css @@ -1 +1 @@ -.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:none;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed #00008b}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:none}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:none;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:none}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed #00008b !important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:none;outline:none}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:none;height:100%;outline:none}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px !important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px !important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none !important;background-color:#eee !important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px !important;border:2px solid #fff !important;background-color:rgba(100,100,100,0.5) !important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5) !important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #edf2f7), color-stop(100%, #d0dfea));background:-webkit-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:-o-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:-ms-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:linear-gradient(top, #edf2f7 0, #d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed #00008b;border-bottom:1px dashed #00008b}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed #00008b !important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto !important;width:auto !important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100% !important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed #00008b}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:#fff;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden !important;position:relative !important}.gridxPullerInner{position:absolute !important;bottom:0 !important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=") repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:#808080;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:#fff;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:#808080}.gridxDnDIconRowSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top, #f2f9ff 0, #eaf5ff 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2f9ff), color-stop(100%, #eaf5ff));background:-webkit-linear-gradient(top, #f2f9ff 0, #eaf5ff 100%);background:-o-linear-gradient(top, #f2f9ff 0, #eaf5ff 100%);background:-ms-linear-gradient(top, #f2f9ff 0, #eaf5ff 100%);background:linear-gradient(top, #f2f9ff 0, #eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted #000}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:none}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:none;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #edf2f7), color-stop(100%, #d0dfea));background:-webkit-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:-o-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:-ms-linear-gradient(top, #edf2f7 0, #d0dfea 100%);background:linear-gradient(top, #edf2f7 0, #d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:none}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg, 0deg) rotate(-45deg);-moz-transform:skew(45deg, 0deg) rotate(-45deg);-o-transform:skew(45deg, 0deg) rotate(-45deg);-ms-transform:skew(45deg, 0deg) rotate(-45deg);transform:skew(45deg, 0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg, 0deg) rotate(0deg);-moz-transform:skew(45deg, 0deg) rotate(0deg);-ms-transform:skew(45deg, 0deg) rotate(0deg);-o-transform:skew(45deg, 0deg) rotate(0deg);transform:skew(45deg, 0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg, 0deg);-moz-transform:skew(45deg, 0deg);-o-transform:skew(45deg, 0deg);-ms-transform:skew(45deg, 0deg);transform:skew(45deg, 0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url("data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==");background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg, 0deg);-moz-transform:skew(45deg, 0deg);-o-transform:skew(45deg, 0deg);-ms-transform:skew(45deg, 0deg);transform:skew(45deg, 0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:none}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:none;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px} \ No newline at end of file +.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed darkblue}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:0}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:0}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed darkblue!important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:0;outline:0}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:0;height:100%;outline:0}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px!important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none!important;background-color:#eee!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px!important;border:2px solid white!important;background-color:rgba(100,100,100,0.5)!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5)!important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed darkblue;border-bottom:1px dashed darkblue}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed darkblue!important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto!important;width:auto!important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100%!important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed darkblue}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:white;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden!important;position:relative!important}.gridxPullerInner{position:absolute!important;bottom:0!important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxTouch .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=') repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:gray;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:white;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:gray}.gridxDnDIconRowSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f2f9ff),color-stop(100%,#eaf5ff));background:-webkit-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-o-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-ms-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted black}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:0}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:0;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg,0deg) rotate(-45deg);-moz-transform:skew(45deg,0deg) rotate(-45deg);-o-transform:skew(45deg,0deg) rotate(-45deg);-ms-transform:skew(45deg,0deg) rotate(-45deg);transform:skew(45deg,0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg,0deg) rotate(0deg);-moz-transform:skew(45deg,0deg) rotate(0deg);-ms-transform:skew(45deg,0deg) rotate(0deg);-o-transform:skew(45deg,0deg) rotate(0deg);transform:skew(45deg,0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:0}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .gridxTouchScrollVWrapper{left:2px;right:auto}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:0;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px} \ No newline at end of file diff --git a/resources/claro/Gridx.css b/resources/claro/Gridx.css index 4bd064a81..856dc8ba1 100644 --- a/resources/claro/Gridx.css +++ b/resources/claro/Gridx.css @@ -1 +1 @@ -.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed darkblue}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:0}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:0}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed darkblue!important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:0;outline:0}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:0;height:100%;outline:0}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px!important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none!important;background-color:#eee!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px!important;border:2px solid white!important;background-color:rgba(100,100,100,0.5)!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5)!important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed darkblue;border-bottom:1px dashed darkblue}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed darkblue!important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto!important;width:auto!important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100%!important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed darkblue}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:white;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden!important;position:relative!important}.gridxPullerInner{position:absolute!important;bottom:0!important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(../images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=') repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:gray;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:white;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:gray}.gridxDnDIconRowSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f2f9ff),color-stop(100%,#eaf5ff));background:-webkit-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-o-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-ms-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted black}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:0}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:0;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg,0deg) rotate(-45deg);-moz-transform:skew(45deg,0deg) rotate(-45deg);-o-transform:skew(45deg,0deg) rotate(-45deg);-ms-transform:skew(45deg,0deg) rotate(-45deg);transform:skew(45deg,0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg,0deg) rotate(0deg);-moz-transform:skew(45deg,0deg) rotate(0deg);-ms-transform:skew(45deg,0deg) rotate(0deg);-o-transform:skew(45deg,0deg) rotate(0deg);transform:skew(45deg,0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:0}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .gridxTouchScrollVWrapper{left:2px;right:auto}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:0;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px}.claro .gridx{background-color:#fff;border:1px solid #dbdbdb;color:#131313}.claro .gridxCell{border-color:transparent #e5dac8 #e5dac8 transparent}.claro .gridxRowOdd>.gridxRowTable{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable .gridxCell{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAYAAABHLFpgAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QgfCgczp3jbXgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAARElEQVQY02P4////VYb////7MjEwMIjBCSEmBgYGBiYGBoY/cOInnPUXVeIPEwMDw28srF9wLrEEmgFoxF8EwTAKyAUAMSQmGGxBkFgAAAAASUVORK5CYII=') #abd6ff repeat-x}.claro .gridx .gridxBody .gridxRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxHeaderRow{border-top:1px solid #fff;border-bottom:1px solid #fff;clear:both}.claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{border-color:transparent}.claro .gridxHeaderRowHidden{height:0;border-width:0}.dj_ie7 .claro .gridxRowHeaderRow table{border-collapse:collapse}.claro .gridxHeaderRowInner{background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.claro .gridxGroupHeader{border-color:#edf2f7 #bcbcbc #bcbcbc #fff}.claro .gridxHeaderRow .gridxCell{border-color:#edf2f7 #bcbcbc #d0dfea #fff}.claro .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxHeaderRow{background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxDesktop .gridxHeaderRow .gridxCell:hover,.claro .gridxDesktop .gridxHeaderRow .gridxGroupHeader:hover{background:#9bcaf7;border-top-color:#9bcaf7}.claro .gridxDesktop .gridxHeaderRow .gridxSubHeader.gridxCell:hover,.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover{border-top-color:#fff}.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxCell:hover{background:transparent;border-top-color:transparent}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:darkblue}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus:hover{border-top-color:darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:transparent}.claro .gridxRowHeaderHeader .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxRowHeaderRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxBarToolBar .dijitToolbar{background:0;border-bottom:0}.claro .gridxRow:first-child>.gridxRowTable .gridxCell,.claro .gridxBodyFirstRow .gridxCell{border-top-color:#e5dac8}.claro .gridxQuickFilter{padding:2px}.claro .gridxQuickFilterButton,.claro .gridxQuickFilterComboButton{margin:0}.claro .gridxQuickFilterButton .dijitButtonNode,.claro .gridxQuickFilterComboButton .dijitButtonNode{border:0;background:0;box-shadow:none;padding:1px;-moz-transition-duration:.3s,0.35s;-moz-transition-property:background-color;border-radius:4px}.claro .gridxQuickFilterComboButton .dijitButtonNode{border-radius:4px 0 0 4px}.claro .gridxQuickFilterComboButton .dijitArrowButton{border-radius:0 4px 4px 0}.claro .gridxQuickFilter .dijitComboButtonHover .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonHover .dijitButtonNode{background-color:#6bd6ff;background-image:-moz-linear-gradient(rgba(255,255,255,0.7) 0,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxQuickFilter .dijitComboButtonActive .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonActive .dijitButtonNode{background-color:#7dbdfa;background-image:-moz-linear-gradient(rgba(190,190,190,0.98) 0,rgba(255,255,255,0.65) 3px,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxRowOdd .gridxLockedCell{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxLockedCell{background:url("../images/rowback.png") #abd6ff repeat-x}.claro .gridxHeaderRow .gridxLockedCell,.claro.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxLockedCell:hover{border-top-color:#edf2f7;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxRowSelected>.gridxRowTable,.claro .gridxRowSelected>.gridxRowTable .gridxCell,.claro .gridxRow .gridxColumnSelected,.claro .gridxRow .gridxCellSelected{background:url("../images/rowback.png") #cee6fa repeat-x}.claro .gridx .dijitCheckBoxPartial{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -82px;height:16px;width:16px}.claro .gridx .dijitCheckBoxPartialDisabled{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -102px;height:16px;width:16px}.claro .gridxPager{background-color:#eaf1f6;padding:3px 9px;border-top:1px solid #dbdbdb}.claro .gridxPagerNodeFocus{border:1px dotted darkblue}.claro .gridxPagerStepperBtn,.claro .gridxPagerSizeSwitchBtn{margin:0 5px;color:#5d88af}.claro .gridxPagerSizeSwitchBtn{margin:0 7px}.claro .gridxPagerStepperBtnHover,.claro .gridxPagerSizeSwitchBtnHover{text-decoration:underline}.claro .gridxPagerStepperBtnActive,.claro .gridxPagerSizeSwitchBtnActive{color:black;font-weight:bold}.claro .gridxRtl .gridxGroupHeader{border-color:transparent #fff #bcbcbc #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxCell{border-color:transparent #fff transparent #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxRtl .gridxHeaderRowInner{background-position:left;border-right:0;border-left:1px solid #fff}.claro .gridxRtl .gridxBody .gridxCell{border-color:transparent transparent #e5dac8 #e5dac8} \ No newline at end of file +.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed darkblue}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:0}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:0}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed darkblue!important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:0;outline:0}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:0;height:100%;outline:0}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px!important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none!important;background-color:#eee!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px!important;border:2px solid white!important;background-color:rgba(100,100,100,0.5)!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5)!important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed darkblue;border-bottom:1px dashed darkblue}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed darkblue!important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto!important;width:auto!important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100%!important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed darkblue}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:white;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden!important;position:relative!important}.gridxPullerInner{position:absolute!important;bottom:0!important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(../images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxTouch .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=') repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:gray;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:white;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:gray}.gridxDnDIconRowSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f2f9ff),color-stop(100%,#eaf5ff));background:-webkit-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-o-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-ms-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted black}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:0}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:0;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg,0deg) rotate(-45deg);-moz-transform:skew(45deg,0deg) rotate(-45deg);-o-transform:skew(45deg,0deg) rotate(-45deg);-ms-transform:skew(45deg,0deg) rotate(-45deg);transform:skew(45deg,0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg,0deg) rotate(0deg);-moz-transform:skew(45deg,0deg) rotate(0deg);-ms-transform:skew(45deg,0deg) rotate(0deg);-o-transform:skew(45deg,0deg) rotate(0deg);transform:skew(45deg,0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:0}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .gridxTouchScrollVWrapper{left:2px;right:auto}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:0;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px}.claro .gridx{background-color:#fff;border:1px solid #dbdbdb;color:#131313}.claro .gridxCell{border-color:transparent #e5dac8 #e5dac8 transparent}.claro .gridxRowOdd>.gridxRowTable{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable .gridxCell{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAYAAABHLFpgAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QgfCgczp3jbXgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAARElEQVQY02P4////VYb////7MjEwMIjBCSEmBgYGBiYGBoY/cOInnPUXVeIPEwMDw28srF9wLrEEmgFoxF8EwTAKyAUAMSQmGGxBkFgAAAAASUVORK5CYII=') #abd6ff repeat-x}.claro .gridx .gridxBody .gridxRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxHeaderRow{border-top:1px solid #fff;border-bottom:1px solid #fff;clear:both}.claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{border-color:transparent}.claro .gridxHeaderRowHidden{height:0;border-width:0}.dj_ie7 .claro .gridxRowHeaderRow table{border-collapse:collapse}.claro .gridxHeaderRowInner{background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.claro .gridxGroupHeader{border-color:#edf2f7 #bcbcbc #bcbcbc #fff}.claro .gridxHeaderRow .gridxCell{border-color:#edf2f7 #bcbcbc #d0dfea #fff}.claro .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxHeaderRow{background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxDesktop .gridxHeaderRow .gridxCell:hover,.claro .gridxDesktop .gridxHeaderRow .gridxGroupHeader:hover{background:#9bcaf7;border-top-color:#9bcaf7}.claro .gridxDesktop .gridxHeaderRow .gridxSubHeader.gridxCell:hover,.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover{border-top-color:#fff}.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxCell:hover{background:transparent;border-top-color:transparent}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:darkblue}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus:hover{border-top-color:darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:transparent}.claro .gridxRowHeaderHeader .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxRowHeaderRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxBarToolBar .dijitToolbar{background:0;border-bottom:0}.claro .gridxRow:first-child>.gridxRowTable .gridxCell,.claro .gridxBodyFirstRow .gridxCell{border-top-color:#e5dac8}.claro .gridxQuickFilter{padding:2px}.claro .gridxQuickFilterButton,.claro .gridxQuickFilterComboButton{margin:0}.claro .gridxQuickFilterButton .dijitButtonNode,.claro .gridxQuickFilterComboButton .dijitButtonNode{border:0;background:0;box-shadow:none;padding:1px;-moz-transition-duration:.3s,0.35s;-moz-transition-property:background-color;border-radius:4px}.claro .gridxQuickFilterComboButton .dijitButtonNode{border-radius:4px 0 0 4px}.claro .gridxQuickFilterComboButton .dijitArrowButton{border-radius:0 4px 4px 0}.claro .gridxQuickFilter .dijitComboButtonHover .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonHover .dijitButtonNode{background-color:#6bd6ff;background-image:-moz-linear-gradient(rgba(255,255,255,0.7) 0,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxQuickFilter .dijitComboButtonActive .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonActive .dijitButtonNode{background-color:#7dbdfa;background-image:-moz-linear-gradient(rgba(190,190,190,0.98) 0,rgba(255,255,255,0.65) 3px,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxRowOdd .gridxLockedCell{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxLockedCell{background:url("../images/rowback.png") #abd6ff repeat-x}.claro .gridxHeaderRow .gridxLockedCell,.claro.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxLockedCell:hover{border-top-color:#edf2f7;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxRowSelected>.gridxRowTable,.claro .gridxRowSelected>.gridxRowTable .gridxCell,.claro .gridxRow .gridxColumnSelected,.claro .gridxRow .gridxCellSelected{background:url("../images/rowback.png") #cee6fa repeat-x}.claro .gridx .dijitCheckBoxPartial{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -82px;height:16px;width:16px}.claro .gridx .dijitCheckBoxPartialDisabled{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -102px;height:16px;width:16px}.claro .gridxPager{background-color:#eaf1f6;padding:3px 9px;border-top:1px solid #dbdbdb}.claro .gridxPagerNodeFocus{border:1px dotted darkblue}.claro .gridxPagerStepperBtn,.claro .gridxPagerSizeSwitchBtn{margin:0 5px;color:#5d88af}.claro .gridxPagerSizeSwitchBtn{margin:0 7px}.claro .gridxPagerStepperBtnHover,.claro .gridxPagerSizeSwitchBtnHover{text-decoration:underline}.claro .gridxPagerStepperBtnActive,.claro .gridxPagerSizeSwitchBtnActive{color:black;font-weight:bold}.claro .gridxRtl .gridxGroupHeader{border-color:transparent #fff #bcbcbc #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxCell{border-color:transparent #fff transparent #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxRtl .gridxHeaderRowInner{background-position:left;border-right:0;border-left:1px solid #fff}.claro .gridxRtl .gridxBody .gridxCell{border-color:transparent transparent #e5dac8 #e5dac8} \ No newline at end of file From 2a84c2e17ffca0c8df732f08e535370212102264 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Wed, 25 Jun 2014 11:14:47 +0800 Subject: [PATCH 15/22] fix #234 --- modules/ExpandableColumn.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ExpandableColumn.js b/modules/ExpandableColumn.js index 178195688..faf7d56bf 100644 --- a/modules/ExpandableColumn.js +++ b/modules/ExpandableColumn.js @@ -104,7 +104,7 @@ define([ } }, this); - this.connect(this.expandBar, 'onclick', function(evt){ + this.connect(this.expandoBar, 'onclick', function(evt){ if(domClass.contains(evt.target, 'gridxColumnExpando')){ var colId = evt.target.parentNode.getAttribute('data-column-id'); this.expand(colId); From da09e0cb7cfd55a87484f498a33fc29cd287b375 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Wed, 25 Jun 2014 14:58:02 +0800 Subject: [PATCH 16/22] update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c0db67968..d228186c9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ *.pydevproject .project .metadata +*.txt bin/ tmp/ node_modules/ From 27863154ceb5f63314073864c977d046e0b65e12 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Wed, 25 Jun 2014 15:45:07 +0800 Subject: [PATCH 17/22] rebuild css --- resources/Gridx.css | 2 +- resources/claro/Gridx.css | 2 +- resources/claro/basic.less | 2 +- resources/slantedHeader.less | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/Gridx.css b/resources/Gridx.css index 56f150363..a053f9a0d 100644 --- a/resources/Gridx.css +++ b/resources/Gridx.css @@ -1 +1 @@ -.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed darkblue}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:0}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:0}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed darkblue!important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:0;outline:0}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:0;height:100%;outline:0}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px!important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none!important;background-color:#eee!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px!important;border:2px solid white!important;background-color:rgba(100,100,100,0.5)!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5)!important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed darkblue;border-bottom:1px dashed darkblue}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed darkblue!important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto!important;width:auto!important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100%!important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed darkblue}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:white;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden!important;position:relative!important}.gridxPullerInner{position:absolute!important;bottom:0!important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxTouch .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=') repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:gray;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:white;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:gray}.gridxDnDIconRowSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f2f9ff),color-stop(100%,#eaf5ff));background:-webkit-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-o-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-ms-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted black}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:0}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:0;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg,0deg) rotate(-45deg);-moz-transform:skew(45deg,0deg) rotate(-45deg);-o-transform:skew(45deg,0deg) rotate(-45deg);-ms-transform:skew(45deg,0deg) rotate(-45deg);transform:skew(45deg,0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg,0deg) rotate(0deg);-moz-transform:skew(45deg,0deg) rotate(0deg);-ms-transform:skew(45deg,0deg) rotate(0deg);-o-transform:skew(45deg,0deg) rotate(0deg);transform:skew(45deg,0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:0}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .gridxTouchScrollVWrapper{left:2px;right:auto}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:0;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px} \ No newline at end of file +.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed darkblue}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:0}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:0}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed darkblue!important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:0;outline:0}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:0;height:100%;outline:0}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px!important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none!important;background-color:#eee!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px!important;border:2px solid white!important;background-color:rgba(100,100,100,0.5)!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5)!important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed darkblue;border-bottom:1px dashed darkblue}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed darkblue!important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto!important;width:auto!important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100%!important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed darkblue}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:white;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden!important;position:relative!important}.gridxPullerInner{position:absolute!important;bottom:0!important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxTouch .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=') repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:gray;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:white;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:gray}.gridxDnDIconRowSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f2f9ff),color-stop(100%,#eaf5ff));background:-webkit-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-o-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-ms-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted black}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:0}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:0;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg,0deg) rotate(-45deg);-moz-transform:skew(45deg,0deg) rotate(-45deg);-o-transform:skew(45deg,0deg) rotate(-45deg);-ms-transform:skew(45deg,0deg) rotate(-45deg);transform:skew(45deg,0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg,0deg) rotate(0deg);-moz-transform:skew(45deg,0deg) rotate(0deg);-ms-transform:skew(45deg,0deg) rotate(0deg);-o-transform:skew(45deg,0deg) rotate(0deg);transform:skew(45deg,0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url('data:image/gif;base64,R0lGODdhAQABAIABALy8vP///ywAAAAAAQABAAACAkQBADs=');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:0}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .gridxTouchScrollVWrapper{left:2px;right:auto}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:0;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px} \ No newline at end of file diff --git a/resources/claro/Gridx.css b/resources/claro/Gridx.css index 856dc8ba1..a8937ccd2 100644 --- a/resources/claro/Gridx.css +++ b/resources/claro/Gridx.css @@ -1 +1 @@ -.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed darkblue}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:0}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:0}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed darkblue!important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:0;outline:0}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:0;height:100%;outline:0}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px!important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none!important;background-color:#eee!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px!important;border:2px solid white!important;background-color:rgba(100,100,100,0.5)!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5)!important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed darkblue;border-bottom:1px dashed darkblue}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed darkblue!important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto!important;width:auto!important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100%!important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed darkblue}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:white;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden!important;position:relative!important}.gridxPullerInner{position:absolute!important;bottom:0!important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(../images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxTouch .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=') repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:gray;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:white;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:gray}.gridxDnDIconRowSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f2f9ff),color-stop(100%,#eaf5ff));background:-webkit-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-o-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-ms-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted black}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:0}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:0;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg,0deg) rotate(-45deg);-moz-transform:skew(45deg,0deg) rotate(-45deg);-o-transform:skew(45deg,0deg) rotate(-45deg);-ms-transform:skew(45deg,0deg) rotate(-45deg);transform:skew(45deg,0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg,0deg) rotate(0deg);-moz-transform:skew(45deg,0deg) rotate(0deg);-ms-transform:skew(45deg,0deg) rotate(0deg);-o-transform:skew(45deg,0deg) rotate(0deg);transform:skew(45deg,0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:0}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .gridxTouchScrollVWrapper{left:2px;right:auto}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:0;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px}.claro .gridx{background-color:#fff;border:1px solid #dbdbdb;color:#131313}.claro .gridxCell{border-color:transparent #e5dac8 #e5dac8 transparent}.claro .gridxRowOdd>.gridxRowTable{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable .gridxCell{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAYAAABHLFpgAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QgfCgczp3jbXgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAARElEQVQY02P4////VYb////7MjEwMIjBCSEmBgYGBiYGBoY/cOInnPUXVeIPEwMDw28srF9wLrEEmgFoxF8EwTAKyAUAMSQmGGxBkFgAAAAASUVORK5CYII=') #abd6ff repeat-x}.claro .gridx .gridxBody .gridxRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxHeaderRow{border-top:1px solid #fff;border-bottom:1px solid #fff;clear:both}.claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{border-color:transparent}.claro .gridxHeaderRowHidden{height:0;border-width:0}.dj_ie7 .claro .gridxRowHeaderRow table{border-collapse:collapse}.claro .gridxHeaderRowInner{background-image:url('data:image/bmp;base64,Qk06AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAvLy8AA==');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.claro .gridxGroupHeader{border-color:#edf2f7 #bcbcbc #bcbcbc #fff}.claro .gridxHeaderRow .gridxCell{border-color:#edf2f7 #bcbcbc #d0dfea #fff}.claro .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxHeaderRow{background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxDesktop .gridxHeaderRow .gridxCell:hover,.claro .gridxDesktop .gridxHeaderRow .gridxGroupHeader:hover{background:#9bcaf7;border-top-color:#9bcaf7}.claro .gridxDesktop .gridxHeaderRow .gridxSubHeader.gridxCell:hover,.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover{border-top-color:#fff}.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxCell:hover{background:transparent;border-top-color:transparent}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:darkblue}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus:hover{border-top-color:darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:transparent}.claro .gridxRowHeaderHeader .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxRowHeaderRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxBarToolBar .dijitToolbar{background:0;border-bottom:0}.claro .gridxRow:first-child>.gridxRowTable .gridxCell,.claro .gridxBodyFirstRow .gridxCell{border-top-color:#e5dac8}.claro .gridxQuickFilter{padding:2px}.claro .gridxQuickFilterButton,.claro .gridxQuickFilterComboButton{margin:0}.claro .gridxQuickFilterButton .dijitButtonNode,.claro .gridxQuickFilterComboButton .dijitButtonNode{border:0;background:0;box-shadow:none;padding:1px;-moz-transition-duration:.3s,0.35s;-moz-transition-property:background-color;border-radius:4px}.claro .gridxQuickFilterComboButton .dijitButtonNode{border-radius:4px 0 0 4px}.claro .gridxQuickFilterComboButton .dijitArrowButton{border-radius:0 4px 4px 0}.claro .gridxQuickFilter .dijitComboButtonHover .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonHover .dijitButtonNode{background-color:#6bd6ff;background-image:-moz-linear-gradient(rgba(255,255,255,0.7) 0,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxQuickFilter .dijitComboButtonActive .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonActive .dijitButtonNode{background-color:#7dbdfa;background-image:-moz-linear-gradient(rgba(190,190,190,0.98) 0,rgba(255,255,255,0.65) 3px,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxRowOdd .gridxLockedCell{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxLockedCell{background:url("../images/rowback.png") #abd6ff repeat-x}.claro .gridxHeaderRow .gridxLockedCell,.claro.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxLockedCell:hover{border-top-color:#edf2f7;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxRowSelected>.gridxRowTable,.claro .gridxRowSelected>.gridxRowTable .gridxCell,.claro .gridxRow .gridxColumnSelected,.claro .gridxRow .gridxCellSelected{background:url("../images/rowback.png") #cee6fa repeat-x}.claro .gridx .dijitCheckBoxPartial{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -82px;height:16px;width:16px}.claro .gridx .dijitCheckBoxPartialDisabled{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -102px;height:16px;width:16px}.claro .gridxPager{background-color:#eaf1f6;padding:3px 9px;border-top:1px solid #dbdbdb}.claro .gridxPagerNodeFocus{border:1px dotted darkblue}.claro .gridxPagerStepperBtn,.claro .gridxPagerSizeSwitchBtn{margin:0 5px;color:#5d88af}.claro .gridxPagerSizeSwitchBtn{margin:0 7px}.claro .gridxPagerStepperBtnHover,.claro .gridxPagerSizeSwitchBtnHover{text-decoration:underline}.claro .gridxPagerStepperBtnActive,.claro .gridxPagerSizeSwitchBtnActive{color:black;font-weight:bold}.claro .gridxRtl .gridxGroupHeader{border-color:transparent #fff #bcbcbc #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxCell{border-color:transparent #fff transparent #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxRtl .gridxHeaderRowInner{background-position:left;border-right:0;border-left:1px solid #fff}.claro .gridxRtl .gridxBody .gridxCell{border-color:transparent transparent #e5dac8 #e5dac8} \ No newline at end of file +.gridx{position:relative;overflow:hidden;border:1px solid #ddd;-webkit-tap-highlight-color:rgba(0,0,0,0);height:300px}.gridxHeader,.gridxFooter{overflow:hidden;background-color:#eee}.gridxLoad{display:none;position:absolute;top:0;left:0}.gridxLoading{display:block;width:100%;height:100%;z-index:99999;opacity:0}.gridxFooter{position:absolute;left:0;bottom:0;width:100%}.gridxMain{position:relative}.gridxHeaderRow{background-color:#eee;border-bottom:1px solid #ccc;position:relative}.gridxHeaderRowHidden{height:0}.gridxHeaderRowInner{overflow:hidden;border-style:solid;border-color:#ccc;border-width:0 1px 0 0}.dj_ie7 .gridxHeaderRowInner,.dj_ie6 .gridxHeaderRowInner{position:relative}.gridxHeaderRow table{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px}.gridxGH .gridxHeaderRow table{width:auto}.gridxPercentColumnWidth .gridxHeaderRow table,.gridxPercentColumnWidth .gridxRow,.gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxGroupHeader,.gridxHeaderRow .gridxCell{border-width:1px;border-style:solid;border-color:transparent #ccc transparent transparent;padding:3px;text-align:left;overflow:hidden}.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border:1px dashed darkblue}.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_android .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus,.dj_ios .gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxCellRegion.gridxHeaderRegionFocus{border-color:transparent}.gridxHeaderRow :focus{outline:0}.gridxBody{height:100%;width:100%;overflow:hidden;position:absolute;top:0;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxCell{-moz-box-sizing:content-box;-ms-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box}.gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable{background-color:#cee8f2}.gridxRow{background-color:#fff}.gridxRowHeaderRow table,.gridxRow .gridxRowTable{border-collapse:separate;border-spacing:0;border:0;table-layout:fixed;width:1px;empty-cells:show}.gridxRowHeaderRow table .gridxCell,.gridxRow .gridxRowTable .gridxCell{border-style:solid;border-color:transparent #ccc #ccc transparent;border-width:1px;padding:3px;text-align:left;overflow:hidden}.gridxRowHeaderRow table .gridxCell:focus,.gridxRow .gridxRowTable .gridxCell:focus{outline:0}.dj_safari .gridxGH .gridxRow .gridxRowTable{width:auto}.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable{width:100%}.gridxRowDummy{height:24px;width:100%;border-bottom:1px solid #e5dac8}.gridx .gridxBody .gridxCellFocus{border:1px dashed darkblue!important}.gridxBodyEmpty{width:100%;height:100px;padding:30px 0;text-align:center;position:absolute;top:0;left:0}.gridxBodyEmpty:focus{outline:1px dotted #aaa}.gridxHScrollerInner{display:none;overflow:scroll;overflow-y:hidden;border:0;outline:0}.dj_ie6 .gridxHScrollerInner{line-height:0}.gridxVScroller{position:absolute;top:0;right:0;overflow:scroll;overflow-x:hidden;border:0;height:100%;outline:0}.gridxMac .gridxHScrollerInner::-webkit-scrollbar{height:11px!important}.gridxMac .gridxVScroller::-webkit-scrollbar{width:11px!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar,.gridxMac .gridxVScroller::-webkit-scrollbar{-webkit-appearance:none!important;background-color:#eee!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb{border-radius:8px!important;border:2px solid white!important;background-color:rgba(100,100,100,0.5)!important}.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus,.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus{background-color:rgba(0,0,0,0.5)!important}.gridxRowHeaderHeader,.gridxRowHeaderBody{position:absolute;left:0;top:0;height:100%;overflow:hidden;border-right:1px solid #e5dac8;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.gridxRowHeaderBody table{width:100%}.gridxRowHeaderHeader table{height:100%}.gridxRowHeaderRow{overflow:hidden;width:100%;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxRowHeaderHeader .gridxHeaderCellFocus{border-top:1px dashed darkblue;border-bottom:1px dashed darkblue}.dj_android .gridxRowHeaderHeader .gridxHeaderCellFocus,.dj_ios .gridxRowHeaderHeader .gridxHeaderCellFocus{border-color:transparent}.gridxRowHeaderCell{border-bottom:1px solid #e5dac8}.gridxRowHeaderRow .gridxCellFocus{border:1px dashed darkblue!important}.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox{overflow:visible}.gridxColumnResizing{cursor:ew-resize}.dj_ie .gridxColumnResizing{cursor:e-resize}.gridxColumnResizer{position:absolute;height:100%;width:2px;background-color:#666;z-index:1000;top:0}.gridxCellWidget{width:100%;height:100%}.gridxCellEditor{width:100%}.dj_ie [class~='dijitTextArea'].gridxCellEditor{width:100%}[class~='dijitSliderV'].gridxCellEditor{width:auto}.gridxEditButtons{height:25px;position:relative}.gridxAlwaysEdit{display:none}.gridxEditFocus{display:block}.gridxEditOK,.gridxEditCancel{display:inline-block;float:right;cursor:pointer;margin-left:5px}.gridxEditOK:hover,.gridxEditCancel:hover{background-color:#9bcaf7}.gridxEditOK{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-200px -120px;height:20px;width:20px}.gridxEditCancel{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-160px 0;height:20px;width:20px}.gridxTouchVScroller .gridxHScroller,.gridxTouchVScroller .gridxVScroller{display:none}.gridxTouchVScroller .gridxMain{overflow:hidden}.gridxTouchVScroller .gridxBody{height:auto!important;width:auto!important}.gridxTouchVScroller .gridxHeaderRowInner{position:relative}.gridxTouchVScroller .gridxHeaderRowInner>table{position:absolute}.gridxTouchVScroller.gridxPercentColumnWidth .gridxBody{width:100%!important}.gridxTouchScrollVWrapper{overflow:hidden;position:absolute;right:2px;top:2px;width:5px}.gridxTouchScrollHWrapper{overflow:hidden;position:absolute;bottom:2px;left:2px;height:5px}.gridxTouchScrollVBar{width:5px}.gridxTouchScrollHBar{height:5px}.gridxTouchScrollVBar,.gridxTouchScrollHBar{background-color:#606060;opacity:0;position:absolute;z-index:999;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;-moz-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s}.gridxHiddenColumn{display:none}.gridxHeaderMenu{width:100px}.gridxHeaderMenuBtn{border-left:1px solid #fff;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23.5px;height:13px;width:10px}.gridxHeaderMenuBtnInner{display:none}.dijit_a11y .gridxHeaderMenuBtnInner{display:inline}.gridxBodyTop,.gridxBodyBottom{padding:10px;text-align:center}.gridxBodyTop button,.gridxBodyBottom button{width:100%;min-height:28px}.gridxLoadingMore{display:inline-block;background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;vertical-align:middle;width:20px;height:20px;margin:0 5px}.gridxHeaderRegion{float:right;display:none}.gridxHeaderRegionFocusable{cursor:pointer}.gridxCell:hover .gridxHeaderRegion,.gridxHeaderRegionFocus .gridxHeaderRegion{display:block}.gridxHeaderRegionFocus .gridxSortNode:focus,.gridxHeaderRegionFocus .gridxHeaderRegion:focus{outline:1px dashed darkblue}.gridxCellEditedBgWrapper{display:block;position:relative}.gridxCellEditedBgWrapper{position:relative;display:block}.gridxCellEditedBg{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-147px -127px;height:6px;width:6px;position:absolute;z-index:10;top:0;right:0}.gridxCellEditedBg span{display:none}.dijit_a11y .gridxCellEditedBg span{position:relative;display:block;left:-3px;color:white;font-size:8px}.gridxSlideRefresh{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s;background:#fff;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb}.gridxLayerContext{position:relative}.gridxLayerWrapper{position:absolute}.gridxLayerWrapper .gridxRow .gridxCell{background-color:#d0dfea}.gridxLayerHSlide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;transition-property:left;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerVSlide{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;transition-property:top;-webkit-transition-duration:.7s;-moz-transition-duration:.7s;-o-transition-duration:.7s;transition-duration:.7s}.gridxLayerHasChildren{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-164px -124px;height:12px;width:12px}.gridxLayerLoading .gridxLayerHasChildren{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center;width:20px;height:20px}.gridxLayerLevelUp{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-184px -124px;height:12px;width:12px}.gridxPuller{overflow:hidden!important;position:relative!important}.gridxPullerInner{position:absolute!important;bottom:0!important}.gridxPullerAnim{-webkit-transition-property:height;-moz-transition-property:height;-o-transition-property:height;transition-property:height;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;-o-transition-duration:300ms;transition-duration:300ms}.gridxSortNode{overflow:hidden}.gridxArrowButtonCharAsc,.gridxArrowButtonCharDesc{display:none}.dijit_a11y .gridxCellSortedAsc .gridxArrowButtonCharAsc,.dijit_a11y .gridxCellSortedDesc .gridxArrowButtonCharDesc{display:block}.gridxArrowButtonNode{display:none;float:right;margin-right:7px;width:10px;height:12px}.gridxCellSorted .gridxArrowButtonNode{display:block}.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedAsc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxArrowButtonNode,.gridxHeaderCellFocus.gridxCellSortedDesc .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxSortBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;float:right;cursor:pointer;width:10px;display:none}.gridxSortNodeFocus{background:#ddd}.gridxSortBtnNested{width:20px;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-55px -23px}.gridxSortBtn:hover,.gridxSortBtnFocus{background-color:#ddd}.gridxHeader .gridxCell .gridxSortBtnNested{display:none}.gridxCellSorted .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSorted .gridxSortBtnNested,.gridxCell:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxCell:hover .gridxSortBtn,.gridxNestedSorted .gridxCell:hover .gridxSortBtn,.gridxHeader .gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxCellSortFocus .gridxSortBtn,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtn,.gridxHeader .gridxHeaderRegionFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtn,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnNested{display:block}.gridxSingleSorted .gridxHeader .gridxCellSortedMain:hover .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeader .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnNested,.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain .gridxSortBtnSingle,.gridxNestedSorted .gridxSortBtnSingle{display:none}.gridxSingleSorted .gridxHeaderRow:hover .gridxCellSortedMain:hover .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxCellSortFocus .gridxSortBtnSingle,.gridxSingleSorted .gridxHeaderFocus .gridxCellSortedMain.gridxHeaderRegionFocus .gridxSortBtnSingle{display:block}.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:5px -23px}.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-15px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-35px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnSingle,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnSingle,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested,.gridxHeaderRegionFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-75px -23px}.gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle,.gridxNestedSorted .gridxHeaderRegionFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxNestedSortBtnText{display:none}.dijit_a11y .gridxNestedSortBtnText{display:inline}.gridxSort .gridxSortSingle{display:none}.gridxSort .gridxSortNested{float:right;display:block;margin:0 5px;font-size:10px}.gridxSort .gridxArrowButtonChar{display:none}.dijit_a11y .gridxSort .gridxArrowButtonChar{display:block}.gridxSort .gridxArrowButtonNode{height:10px;width:10px;margin:3px 7px 0 0;display:none}.gridxSort .gridxSortUp .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxSortDown .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxArrowButtonNode,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortUp .gridxSortAscendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort .gridxHeaderRow .gridxCell:hover .gridxSortDown .gridxSortDescendOnly,.gridxSort .gridxHeaderCellFocus .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxArrowButtonNode{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-105px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxArrowButtonNode{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-125px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortUp .gridxSortAscendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -5px}.gridxSort.gridxTouch .gridxHeaderRow .gridxCell .gridxSortDown .gridxSortDescendOnly{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -5px}.gridxLockedCell{position:absolute;background-color:#fff;z-index:1}.gridxLockedRow{z-index:2}.gridxLockedRow .gridxLockedCell{z-index:2}.gridxColumnLock .gridxRow{overflow:hidden}.gridxTreeExpandoCell{height:100%;position:relative;min-height:16px}.gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -122px;height:16px;width:16px;position:absolute;top:0;left:0;cursor:pointer}.gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -122px;height:16px;width:16px}.gridxTreeExpandoCellOpen .gridxTreeExpandoIcon:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -122px;height:16px;width:16px}.gridx .gridxTreeExpandoLoading .gridxTreeExpandoIcon{background-image:url('../images/treeExpand_loading.gif');background-repeat:no-repeat;background-position:center center}.gridxTreeExpandoIconNoChildren{visibility:hidden}.gridxTreeExpandoInner{visibility:hidden;text-align:center}.dijit_a11y .gridxTreeExpandoInner{visibility:visible}.gridxDodNode,.gridxDodLoadNode{border-bottom:1px solid #e5dac8;overflow:auto}.gridxDodLoadNode{background:transparent url(../images/loadingAnimation.gif) no-repeat 5px 2px;padding:5px 5px 5px 30px}.gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -82px;height:16px;width:16px;float:left;margin:2px 3px 0 0;cursor:pointer;visibility:hidden}.gridxRowOver .gridxDodExpando{visibility:visible}.gridxTouch .gridxDodExpando{visibility:visible}.gridxDodShown .gridxDodExpando{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-82px -102px;height:16px;width:16px}.gridxDodExpandoText{display:none}.dijit_a11y .gridxDodExpandoText{display:inline}.gridxRowSelected>.gridxRowTable{background-color:#bfd6eb}.gridxRow .gridxColumnSelected{background-color:#bfd6eb}.gridxCellSelected{background-color:#bfd6eb}.dijit_a11y .gridxRowSelected,.dijit_a11y .gridxRow .gridxColumnSelected,.dijit_a11y .gridxCellSelected{opacity:.8}.dijit_a11y .gridxRowUnselectable{opacity:.5}.gridxRowHeaderHeaderCell,.gridxRowHeaderCell{text-align:center}.gridx .gridxIndirectSelectionCheckBox{margin:-4px 0 0 0}.gridxIndirectSelectionCheckBoxInner{display:none}.dijit_a11y .gridxIndirectSelectionCheckBoxInner{display:inline}.gridxSummaryBar{padding:3px 9px;border-top:1px solid #ddd}.gridxTitleBar{padding:3px 9px;border-top:1px solid #fff}.gridxBar{border-top:1px solid #fff}.gridxBar>table{width:100%}.gridxSummaryBar,.gridxTitleBar,.gridxBar{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAPCAYAAAAlH6X5AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QkBDyst7ytGZAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAF0lEQVQI12NggAJGJgYGBgYmGIt0ggEABXAAJ5rKjIAAAAAASUVORK5CYII=') repeat-x scroll center bottom #e5edf4}.gridxSummary{padding:3px 9px}.gridxDnDReadyCursor{cursor:move}.gridxCanNotDnD{cursor:default}.gridxDnDAnchor{width:2px;background-color:gray;font-size:0;position:absolute;z-index:998}.gridxDndAvatar{background-color:white;border:1px solid #ccc;padding:0;-moz-box-shadow:5px 5px 7px #999;-webkit-box-shadow:5px 5px 7px #999;box-shadow:5px 5px 7px #999;z-index:999;border-spacing:3px}.dojoDndMove .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -102px;height:16px;width:16px}.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -82px;height:16px;width:16px}.dojoDndCopy .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -102px;height:16px;width:16px}.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-162px -82px;height:16px;width:16px}.gridxDnDAnchorRow{left:0;height:1px}.gridxDnDAnchorRow:before{content:'';position:absolute;top:-1px;height:1px;width:100%;background-color:gray}.gridxDnDIconRowSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -82px;height:16px;width:16px}.gridxDnDIconRowMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-122px -102px;height:16px;width:16px}.gridxDnDAnchorColumn{top:0;width:2px}.gridxDnDIconColumnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -82px;height:16px;width:16px}.gridxDnDIconColumnMulti{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -102px;height:16px;width:16px}.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child{padding:6px 9px}.gridxFilterDialog .gridxFilterAccordionWrapper{height:227px;width:300px;overflow:auto;position:relative;margin:5px 0 15px 0}.gridxFilterDialog .gridxFilterDialogButtons{text-align:right}.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:left;margin-top:-10px}.gridxFilterDialog .dijitAccordionTitleFocus{margin-right:16px}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText{display:block}.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow{display:none}.gridxFilterPaneForm{margin:0;padding:0;list-style:none;font-size:10px}.gridxFilterPaneForm .dijitSelect{margin:0}.gridxFilterPaneForm li{margin:0;padding:0;list-style:none;width:98%}.gridxFilterPaneForm .dijitSelect,.gridxFilterPaneForm .dijitTextBox,.gridxFilterPaneForm .dijitComboBox{font-size:12px}.gridxFilterPaneForm .gridxFilterPaneFieldWrapper{display:none}.gridxFilterPaneCloseButton{float:right;margin-top:-15px}.gridxFilterPaneCloseButton img{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;cursor:pointer}.gridxFilterPaneCloseButton img:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterSingleRule .gridxFilterPaneCloseButton{display:none}.gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -2px;height:16px;width:16px}.dijitButtonDisabled .gridxFilterBtnAddRule{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-182px -22px;height:16px;width:16px}.gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -42.5px;height:15px;width:15px}.gridxFilterPaneText .gridxFilterPaneTextWrapper,.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,.gridxFilterPaneDate .gridxFilterPaneDateWrapper,.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper{display:block}.gridxFilterBar{cursor:pointer;width:100%;font-family:arial}.gridxFilterBar [action="clear"]{color:#5b83b6;text-decoration:none}.gridxFilterBar [action="clear"]:hover{text-decoration:underline}.gridxFilterBar .dijitButton{margin:0;float:left}.gridxFilterBar .dijitButton .dijitButtonNode{-moz-border-radius:1px;-webkit-border-radius:1px;padding-top:0;padding-bottom:0;padding-right:2px}.gridxFilterBarStatus{background:#f2f9ff;background:-moz-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#f2f9ff),color-stop(100%,#eaf5ff));background:-webkit-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-o-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:-ms-linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);background:linear-gradient(top,#f2f9ff 0,#eaf5ff 100%);border-bottom:1px solid #bfd6eb;border-top:1px solid #bfd6eb;padding:1px 0 0 45px}.dj_ie9 .gridxFilterBarStatus{padding-left:5px}.gridxFilterBarCloseBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-83px -123px;height:14px;width:14px;float:right;margin-right:3px;cursor:pointer}.dj_ie7 .gridxFilterBarCloseBtn{margin-top:-14px}.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn{display:none}.gridxFilterBarCloseBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-103px -123px;height:14px;width:14px}.dj_ie .gridxFilterBarCloseBtn:focus{outline:1px dotted black}.gridxFilterTooltip table{border:1px solid #bbb;border-collapse:collapse}.gridxFilterTooltip table th{background-color:#e8eff4;border:1px solid #bbb}.gridxFilterTooltip table th,.gridxFilterTooltip table td{padding:2px 4px;height:16px;vertical-align:middle}.gridxFilterTooltip table .gridxFilterTooltipValueCell div{max-width:150px;position:relative;padding-right:25px}.gridxFilterTooltip .gridxFilterTooltipTitle{margin-bottom:8px}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -22px;height:16px;width:16px;position:absolute;right:0;top:1px;cursor:pointer;border:0}.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -2px;height:16px;width:16px}.gridxFilterTooltip .gridxFilterTooltipOddRow{background-color:#f1f8ff}.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn{visibility:hidden}.gridxFilterConfirmDialogButtons{text-align:right;margin-top:10px}.gridxQuickFilterInputContainer{margin-right:2px;position:relative}.gridxQuickFilterInput{width:150px}.gridxQuickFilterInput .dijitInputInner::-ms-clear{display:none}.gridxQuickFilterClear{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-81px -21px;height:18px;width:18px;position:absolute;right:0;top:0;cursor:pointer;display:none;text-align:center}.dj_ie7 .gridxQuickFilterClear{top:5px}.gridxQuickFilterActive .gridxQuickFilterClear{display:block}.gridxQuickFilterIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142px -42px;height:16px;width:16px}.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,.gridxQuickFilterHasFilterBar .gridxQuickFilterButton{display:none}.gridxQuickFilterClearInner,.gridxFilterBarCloseBtnText,.gridxFilterTooltipRemoveBtnText{display:none}.dijit_a11y .gridxQuickFilterClearInner,.dijit_a11y .gridxFilterBarCloseBtnText,.dijit_a11y .gridxFilterTooltipRemoveBtnText{display:inline}.gridxBarQuickFilter{text-align:right}.dojoxEllipsis,.dojoxEllipsisShown{white-space:nowrap;width:100%;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-webkit-text-overflow:ellipsis}.dojoxEllipsis window{width:100%;-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsis description{-moz-user-focus:normal;-moz-user-select:text}.dojoxEllipsisIFrame{white-space:normal;border:0;width:100%;display:block;height:1px;margin-top:-1px;clear:both}.dojoxEllipsisContainer{width:100%}.dojoxEllipsisShown:after{content:"\2026"}.gridxPagerInner{width:100%;table-layout:auto}.gridxPagerA11yInner{visibility:hidden}.dijit_a11y .gridxPagerA11yInner{visibility:visible}.gridxPagerPages span:focus,span.gridxPagerSizeSwitchBtn:focus{outline:dotted 1px #555}.gridxPagerStepperBtn,.gridxPagerSizeSwitchBtn{cursor:pointer;display:inline-block;text-align:center}.gridxPagerStepperBtnActive,.gridxPagerSizeSwitchBtnActive{cursor:default}.gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px;cursor:default;opacity:.8}.gridxPagerDescriptionTD{text-align:left;width:33%}.gridxPagerStepperTD{text-align:center;width:33%}.gridxPagerSizeSwitchTD{text-align:right}.gridxPagerGoto{width:20px;text-align:center}.gridxPagerGotoBtn{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -42px;height:16px;width:10px;cursor:pointer}.gridxGotoPage td{padding-bottom:5px}.gridxGotoPage .gridxGotoPageBtns{padding-bottom:0;text-align:right}.gridxGotoPage .gridxGotoPageInputBox{width:100px}.gridxGotoPage .gridxPageCountMsg{padding-left:5px}.gridxPagerStepperWidget{width:55px}.gridxPagerLabel{vertical-align:middle}.gridxLinkPager,.gridxLinkSizer{padding:5px 0}.gridxPaginationBar{padding-right:9px}.gridxDropDownPager,.gridxDropDownSizer{padding-top:3px;padding-bottom:3px}.gridxSlantedHeader{overflow:visible}.gridxSlantedHeader .gridxHeader{overflow:visible;margin-left:0;border-top:1px solid #dbdbdb;margin-top:-1px;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.gridxSlantedHeader .gridxHeader .gridxHeaderRow{border-top:1px solid #dbdbdb;border-right:1px solid #dbdbdb;margin-top:-1px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner{padding-bottom:0;margin-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner table{height:130px}.gridxSlantedHeader .gridxHeaderRow .gridxHeaderRowInner .gridxGroupHeader{height:16px}.gridxSlantedHeader .gridxHeaderRow .gridxCell{vertical-align:bottom;position:relative;overflow:visible;border-bottom:0}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxCellHighlight{background-color:#9bcaf7}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxSortNode{overflow:visible;margin:auto auto 5px auto;width:30px;-webkit-transform:skew(45deg,0deg) rotate(-45deg);-moz-transform:skew(45deg,0deg) rotate(-45deg);-o-transform:skew(45deg,0deg) rotate(-45deg);-ms-transform:skew(45deg,0deg) rotate(-45deg);transform:skew(45deg,0deg) rotate(-45deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell .gridxArrowButtonNode{float:none;display:inline-block;margin-bottom:60px;margin-left:8px;-webkit-transform:skew(45deg,0deg) rotate(0deg);-moz-transform:skew(45deg,0deg) rotate(0deg);-ms-transform:skew(45deg,0deg) rotate(0deg);-o-transform:skew(45deg,0deg) rotate(0deg);transform:skew(45deg,0deg) rotate(0deg)}.gridxSlantedHeader .gridxHeaderRow .gridxCell.gridxHeaderCellFocus .gridxSortNode{margin-bottom:4px}.gridxSlantedHeader .gridxHeaderRow .gridxGroupHeader .gridxSortNode{text-align:center;-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg)}.gridxSlantedHeaderActionAreaHolder{background-color:#d0dfea;height:10px;text-align:center}.gridxColumnExpandoBar{overflow:hidden;background-image:url('data:image/gif;base64,R0lGODdhAQABAIABALy8vP///ywAAAAAAQABAAACAkQBADs=');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.gridxColumnExpandoBar table{table-layout:fixed;width:auto;margin-left:1px}.gridxColumnExpandoBar table .gridxColumnExpandoCell{padding:0 3px;height:12px;border-left:1px solid #fff;border-right:1px solid #ccc;text-align:center;cursor:normal}.gridxColumnExpandoBar table .gridxColumnExpandoCell:first-child{border-left:none}.gridxColumnExpandoBar table .gridxColumnExpandoCell.gridxColumnExpandoHighlight{background-color:#9bcaf7}.gridxColumnExpandoBar table .gridxColumnExpandoCell .gridxColumnExpando{display:block;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px;margin:0 auto;cursor:pointer}.gridxColumnExpandNode{-webkit-transform:skew(45deg,0deg);-moz-transform:skew(45deg,0deg);-o-transform:skew(45deg,0deg);-ms-transform:skew(45deg,0deg);transform:skew(45deg,0deg);display:block;float:none;position:absolute;height:11px;left:3px;bottom:-11px;right:-6px;background-color:#d0dfea;border-right:1px solid #bcbcbc;border-left:1px solid #fff}.gridxColumnExpandNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-126px -26px;height:8px;width:8px}.gridxColumnCollapseNode{display:inline-block;height:10px;width:10px;padding-right:3px;cursor:pointer}.gridxColumnCollapseNodeIcon{display:block;margin:1px auto;background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-26px -6px;height:8px;width:8px}.gridxSlantedHeader .gridxHeaderRow .gridxCell:hover .gridxColumnExpandNode{background-color:#9bcaf7}.gridxSlantedHeaderActionCell{padding:3px;border-right:1px solid #bcbcbc;border-left:1px solid #fff;background-color:#d0dfea}body .gridxSlantedHeader .gridxHeaderRow{border-bottom:0}.dj_ie7 .gridxRtl .gridxHeaderRow table{position:relative}.gridxRtl .gridxRow .gridxCell{border-color:transparent transparent #ccc #ccc;text-align:right}.gridxRtl .gridxVScroller{right:auto;left:0}.gridxRtl .gridxTouchScrollVWrapper{left:2px;right:auto}.gridxRtl .dj_ff3 .gridxVScroller,.gridxRtl .dj_webkit .gridxVScroller{left:-1px}.gridxRtl .gridxRowHeaderHeader,.gridxRtl .gridxRowHeaderBody{right:0;left:auto;border-right:0;border-left:1px solid #e5dac8}.gridxRtl .gridxHeaderRegion{float:left}.gridxRtl .gridxEditOK,.gridxRtl .gridxEditCancel{float:left;margin-left:0;margin-right:5px}.gridxRtl .gridxArrowButtonNode{float:left;margin-right:0;margin-left:7px}.gridxRtl .gridxSortNode{text-align:right}.gridxRtl .gridxSortBtn{float:left}.gridxRtl .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px;text-align:right}.gridxRtl .gridxCell:hover .gridxSortBtn,.gridxRtl .gridxCellSortFocus .gridxSortBtn{border-left:none}.gridxRtl .gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-5px -23px}.gridxRtl .gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-25px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedAsc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedAsc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-45px -23px}.gridxRtl .gridxCell:hover.gridxCellSortedDesc .gridxSortBtnNested,.gridxRtl .gridxCellSortFocus.gridxCellSortedDesc .gridxSortBtnNested{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-85px -23px}.gridxRtl .gridxNestedSorted .gridxCell:hover .gridxSortBtnSingle,.gridxRtl .gridxNestedSorted .gridxCellSortFocus .gridxSortBtnSingle{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-65px -23px}.gridxRtl .gridxPagerDescriptionTD{text-align:right}.gridxRtl .gridxPagerSizeSwitchTD{text-align:left}.gridxRtl .gridxPager .gridxPagerGoto,.gridxRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxPagerFirstPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -42px;height:16px;width:16px}.gridxRtl .gridxPagerFirstPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-62px -62px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -42px;height:16px;width:16px}.gridxRtl .gridxPagerPrevPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-22px -62px;height:16px;width:16px}.gridxRtl .gridxPagerNextPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -42px;height:16px;width:16px}.gridxRtl .gridxPagerNextPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-2px -62px;height:16px;width:16px}.gridxRtl .gridxPagerLastPage{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -42px;height:16px;width:16px}.gridxRtl .gridxPagerLastPageDisable{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-42px -62px;height:16px;width:16px}.gridxRtl .gridxPagerSizeSwitchDD{text-align:left}.dijitRtl .gridxGotoPage .gridxPageCountMsg{padding-left:0;padding-right:5px}.dijitRtl .gridxGotoPage .gridxGotoPageBtns{text-align:left}.gridxRtl .gridxTreeExpandoIcon{left:auto;right:0}.gridxRtl .gridxFilterBar .dijitButton{float:right}.gridxRtl .gridxFilterBarBtnIcon{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-142.5px -62.5px;height:15px;width:15px}.gridxRtl .gridxFilterBarStatus{padding:1px 45px 0 0}.gridxRtl .gridxFilterBarCloseBtn{float:left}.gridxRtl .gridxBarQuickFilter{text-align:left}.dijitRtl .gridxFilterPaneCloseButton{float:left}.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{margin-right:0;margin-left:16px}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons{text-align:left}.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd{float:right}.dijitRtl .gridxQuickFilterClear{right:auto;left:5px}.claro .gridx{background-color:#fff;border:1px solid #dbdbdb;color:#131313}.claro .gridxCell{border-color:transparent #e5dac8 #e5dac8 transparent}.claro .gridxRowOdd>.gridxRowTable{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver>.gridxRowTable .gridxCell{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAYAAABHLFpgAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QgfCgczp3jbXgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAARElEQVQY02P4////VYb////7MjEwMIjBCSEmBgYGBiYGBoY/cOInnPUXVeIPEwMDw28srF9wLrEEmgFoxF8EwTAKyAUAMSQmGGxBkFgAAAAASUVORK5CYII=') #abd6ff repeat-x}.claro .gridx .gridxBody .gridxRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxHeaderRow{border-top:1px solid #fff;border-bottom:1px solid #fff;clear:both}.claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus{border-color:transparent}.claro .gridxHeaderRowHidden{height:0;border-width:0}.dj_ie7 .claro .gridxRowHeaderRow table{border-collapse:collapse}.claro .gridxHeaderRowInner{background-image:url('data:image/gif;base64,R0lGODdhAQABAIABALy8vP///ywAAAAAAQABAAACAkQBADs=');background-position:right;background-repeat:repeat-y;border-right:1px solid #fff}.claro .gridxGroupHeader{border-color:#edf2f7 #bcbcbc #bcbcbc #fff}.claro .gridxHeaderRow .gridxCell{border-color:#edf2f7 #bcbcbc #d0dfea #fff}.claro .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxHeaderRow{background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxDesktop .gridxHeaderRow .gridxCell:hover,.claro .gridxDesktop .gridxHeaderRow .gridxGroupHeader:hover{background:#9bcaf7;border-top-color:#9bcaf7}.claro .gridxDesktop .gridxHeaderRow .gridxSubHeader.gridxCell:hover,.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover{border-top-color:#fff}.claro.gridxColumnResizing .gridxDesktop .gridxHeader .gridxHeaderRow .gridxCell:hover{background:transparent;border-top-color:transparent}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:darkblue}.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus:hover{border-top-color:darkblue}.dj_android .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus,.dj_ios .claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus{border-top-color:transparent}.claro .gridxRowHeaderHeader .gridxHeaderCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxRowHeaderRow .gridxCellFocus{outline:0;border:1px dashed darkblue}.claro .gridxBarToolBar .dijitToolbar{background:0;border-bottom:0}.claro .gridxRow:first-child>.gridxRowTable .gridxCell,.claro .gridxBodyFirstRow .gridxCell{border-top-color:#e5dac8}.claro .gridxQuickFilter{padding:2px}.claro .gridxQuickFilterButton,.claro .gridxQuickFilterComboButton{margin:0}.claro .gridxQuickFilterButton .dijitButtonNode,.claro .gridxQuickFilterComboButton .dijitButtonNode{border:0;background:0;box-shadow:none;padding:1px;-moz-transition-duration:.3s,0.35s;-moz-transition-property:background-color;border-radius:4px}.claro .gridxQuickFilterComboButton .dijitButtonNode{border-radius:4px 0 0 4px}.claro .gridxQuickFilterComboButton .dijitArrowButton{border-radius:0 4px 4px 0}.claro .gridxQuickFilter .dijitComboButtonHover .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonHover .dijitButtonNode{background-color:#6bd6ff;background-image:-moz-linear-gradient(rgba(255,255,255,0.7) 0,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxQuickFilter .dijitComboButtonActive .dijitButtonNode,.claro .gridxQuickFilter .dijitButtonActive .dijitButtonNode{background-color:#7dbdfa;background-image:-moz-linear-gradient(rgba(190,190,190,0.98) 0,rgba(255,255,255,0.65) 3px,rgba(255,255,255,0) 100%);background-repeat:repeat-x;padding:0;border:1px solid #759dc0}.claro .gridxRowOdd .gridxLockedCell{background-color:#f1f8ff}.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxLockedCell{background:url("../images/rowback.png") #abd6ff repeat-x}.claro .gridxHeaderRow .gridxLockedCell,.claro.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxLockedCell:hover{border-top-color:#edf2f7;background:#edf2f7;background:-moz-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#edf2f7),color-stop(100%,#d0dfea));background:-webkit-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-o-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:-ms-linear-gradient(top,#edf2f7 0,#d0dfea 100%);background:linear-gradient(top,#edf2f7 0,#d0dfea 100%)}.claro .gridxRowSelected>.gridxRowTable,.claro .gridxRowSelected>.gridxRowTable .gridxCell,.claro .gridxRow .gridxColumnSelected,.claro .gridxRow .gridxCellSelected{background:url("../images/rowback.png") #cee6fa repeat-x}.claro .gridx .dijitCheckBoxPartial{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -82px;height:16px;width:16px}.claro .gridx .dijitCheckBoxPartialDisabled{background-image:url("../images/sprite.png");background-repeat:no-repeat;background-position:-202px -102px;height:16px;width:16px}.claro .gridxPager{background-color:#eaf1f6;padding:3px 9px;border-top:1px solid #dbdbdb}.claro .gridxPagerNodeFocus{border:1px dotted darkblue}.claro .gridxPagerStepperBtn,.claro .gridxPagerSizeSwitchBtn{margin:0 5px;color:#5d88af}.claro .gridxPagerSizeSwitchBtn{margin:0 7px}.claro .gridxPagerStepperBtnHover,.claro .gridxPagerSizeSwitchBtnHover{text-decoration:underline}.claro .gridxPagerStepperBtnActive,.claro .gridxPagerSizeSwitchBtnActive{color:black;font-weight:bold}.claro .gridxRtl .gridxGroupHeader{border-color:transparent #fff #bcbcbc #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxCell{border-color:transparent #fff transparent #bcbcbc}.claro .gridxRtl .gridxHeaderRow .gridxSubHeader{border-top-color:#fff}.claro .gridxRtl .gridxHeaderRowInner{background-position:left;border-right:0;border-left:1px solid #fff}.claro .gridxRtl .gridxBody .gridxCell{border-color:transparent transparent #e5dac8 #e5dac8} \ No newline at end of file diff --git a/resources/claro/basic.less b/resources/claro/basic.less index bf37e515b..dc91a9d46 100644 --- a/resources/claro/basic.less +++ b/resources/claro/basic.less @@ -57,7 +57,7 @@ } .gridxHeaderRowInner { - background-image: data-uri('../images/claro-grid-header-onepixel.bmp'); + background-image: data-uri('../images/claro-grid-header-onepixel.gif'); background-position: right; background-repeat: repeat-y; border-right: 1px solid #FFFFFF; diff --git a/resources/slantedHeader.less b/resources/slantedHeader.less index 618c6afef..c5ff01834 100644 --- a/resources/slantedHeader.less +++ b/resources/slantedHeader.less @@ -94,7 +94,7 @@ .gridxColumnExpandoBar { overflow: hidden; - background-image: data-uri('images/claro-grid-header-onepixel.bmp'); + background-image: data-uri('images/claro-grid-header-onepixel.gif'); background-position: right; background-repeat: repeat-y; border-right: 1px solid #FFFFFF; From a214b92b784f65903cc178516a2299c7f0d44432 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Wed, 25 Jun 2014 16:41:44 +0800 Subject: [PATCH 18/22] remove unsued css --- resources/claro/basic.css | 109 -------------------------------------- 1 file changed, 109 deletions(-) delete mode 100644 resources/claro/basic.css diff --git a/resources/claro/basic.css b/resources/claro/basic.css deleted file mode 100644 index 321daff63..000000000 --- a/resources/claro/basic.css +++ /dev/null @@ -1,109 +0,0 @@ -/*common*/ -.claro .gridx { - background-color: #fff; - border: 1px solid #DBDBDB; - color: #131313; -} - -/*Body*/ -.claro .gridxCell{ - border-color: transparent #E5DAC8 #E5DAC8 transparent; -} -.claro .gridxRowOdd .gridxRowTable { - background-color: #f1f8ff; -} -.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxRowTable, -.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxCell { - background:url("../images/row_back.png") #ABD6FF repeat-x; -} - -.claro .gridx .gridxBody .gridxRow .gridxCellFocus { - outline: none; - border: 1px dashed darkblue; -} - -/*Header*/ -.claro .gridxHeaderRow { - border-top: 1px solid #FFFFFF; - border-bottom: 1px solid #FFFFFF; - clear: both; -} -.claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus { - outline: none; - border: 1px dashed darkblue; -} - -.claro .gridxHeaderRowHidden { - height: 0; - border-width: 0; -} - -.dj_ie7 .claro .gridxRowHeaderRow table { - border-collapse: collapse; -} - -.claro .gridxHeaderRowInner { - background-image: url('../images/claro-grid-header-onepixel.gif'); - background-position: right; - background-repeat: repeat-y; - border-right: 1px solid #FFFFFF; -} - -.claro .gridxGroupHeader { - border-color: #EDF2F7 #BCBCBC #BCBCBC #FFFFFF; -} -.claro .gridxHeaderRow .gridxCell { - border-color: #EDF2F7 #BCBCBC #D0DFEA #FFFFFF; -} -.claro .gridxHeaderRow .gridxSubHeader { - border-top-color: #FFFFFF; -} - -.claro .gridxHeaderRow { - background: #edf2f7; /* Old browsers */ - background: -moz-linear-gradient(top, #edf2f7 0%, #d0dfea 100%); /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#edf2f7), color-stop(100%,#d0dfea)); /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Opera 11.10+ */ - background: -ms-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* IE10+ */ - background: linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* W3C */ -} - -.claro .gridxHeader .gridxHeaderRow .gridxCell:hover { - background: #9bcaf7; - border-top-color: #9BCAF7; -} -.claro .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover, -.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover { - border-top-color: #FFFFFF; -} -.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxCell:hover { - background: transparent; - border-top-color: transparent; -} -.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus, -.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus:hover { - border-top-color: darkblue; -} - -/* Row header */ -.claro .gridxRowHeaderHeader .gridxHeaderCellFocus { - outline: none; - border: 1px dashed darkblue; -} - -.claro .gridxRowHeaderRow .gridxCellFocus { - outline: none; - border: 1px dashed darkblue; -} - -/* toolbar */ -.claro .gridxBarToolBar .dijitToolbar { - background: none; - border-bottom: none; -} - -/* PagedBody */ -.claro .gridxBodyFirstRow .gridxCell { - border-top-color: #E5DAC8; -} From 8090ddec274a2787fbec4ffe1c200f5e9dcca838 Mon Sep 17 00:00:00 2001 From: Bingjian Guo Date: Thu, 26 Jun 2014 17:06:22 +0800 Subject: [PATCH 19/22] write a sample test for huge server store --- tests/support/stores/QueryReadStore.php | 155 ++++++++++++++++++++++++ tests/test_grid_virtualScroller.html | 7 +- tests/test_grid_virtualScroller.js | 15 ++- 3 files changed, 171 insertions(+), 6 deletions(-) create mode 100644 tests/support/stores/QueryReadStore.php diff --git a/tests/support/stores/QueryReadStore.php b/tests/support/stores/QueryReadStore.php new file mode 100644 index 000000000..fdd4a5474 --- /dev/null +++ b/tests/support/stores/QueryReadStore.php @@ -0,0 +1,155 @@ +0, 'name'=>"Alabama", 'label'=>"Alabama", 'abbreviation'=>"AL", 'capital'=>'Montgomery'), + array('id'=>1, 'name'=>"Alaska", 'label'=>"Alaska", 'abbreviation'=>"AK", 'capital'=>'Juneau'), + array('id'=>2, 'name'=>"American Samoa", 'label'=>"American Samoa", 'abbreviation'=>"AS", 'capital'=>'Pago Pago'), + array('id'=>3, 'name'=>"Arizona", 'label'=>"Arizona", 'abbreviation'=>"AZ", 'capital'=>'Phoenix'), + array('id'=>4, 'name'=>"Arkansas", 'label'=>"Arkansas", 'abbreviation'=>"AR", 'capital'=>'Little Rock'), + array('id'=>5, 'name'=>"Armed Forces Europe", 'label'=>"Armed Forces Europe", 'abbreviation'=>"AE", 'capital'=>'??? (Europe)'), + array('id'=>6, 'name'=>"Armed Forces Pacific", 'label'=>"Armed Forces Pacific", 'abbreviation'=>"AP", 'capital'=>'??? (Pacific)'), + array('id'=>7, 'name'=>"Armed Forces the Americas", 'label'=>"Armed Forces the Americas", 'abbreviation'=>"AA", 'capital'=>'??? (America)'), + array('id'=>8, 'name'=>"California", 'label'=>"California", 'abbreviation'=>"CA", 'capital'=>'Sacramento'), + array('id'=>9, 'name'=>"Colorado", 'label'=>"Colorado", 'abbreviation'=>"CO", 'capital'=>'Denver'), + array('id'=>10, 'name'=>"Connecticut", 'label'=>"Connecticut", 'abbreviation'=>"CT", 'capital'=>'Hartford'), + array('id'=>11, 'name'=>"Delaware", 'label'=>"Delaware", 'abbreviation'=>"DE", 'capital'=>'Dover'), + array('id'=>12, 'name'=>"District of Columbia", 'label'=>"District of Columbia", 'abbreviation'=>"DC", 'capital'=>'Washington'), + array('id'=>13, 'name'=>"Federated States of Micronesia", 'label'=>"Federated States of Micronesia", 'abbreviation'=>"FM", 'capital'=>'Palikir'), + array('id'=>14, 'name'=>"Florida", 'label'=>"Florida", 'abbreviation'=>"FL", 'capital'=>'Tallahassee'), + array('id'=>15, 'name'=>"Georgia", 'label'=>"Georgia", 'abbreviation'=>"GA", 'capital'=>'Atlanta'), + array('id'=>16, 'name'=>"Guam", 'label'=>"Guam", 'abbreviation'=>"GU", 'capital'=>'Hagatna'), + array('id'=>17, 'name'=>"Hawaii", 'label'=>"Hawaii", 'abbreviation'=>"HI", 'capital'=>'Honolulu'), + array('id'=>18, 'name'=>"Idaho", 'label'=>"Idaho", 'abbreviation'=>"ID", 'capital'=>'Boise'), + array('id'=>19, 'name'=>"Illinois", 'label'=>"Illinois", 'abbreviation'=>"IL", 'capital'=>'Springfield'), + array('id'=>20, 'name'=>"Indiana", 'label'=>"Indiana", 'abbreviation'=>"IN", 'capital'=>'Indianapolis'), + array('id'=>21, 'name'=>"Iowa", 'label'=>"Iowa", 'abbreviation'=>"IA", 'capital'=>'Des Moines'), + array('id'=>22, 'name'=>"Kansas", 'label'=>"Kansas", 'abbreviation'=>"KS", 'capital'=>'Topeka'), + array('id'=>23, 'name'=>"Kentucky", 'label'=>"Kentucky", 'abbreviation'=>"KY", 'capital'=>'Frankfort'), + array('id'=>24, 'name'=>"Louisiana", 'label'=>"Louisiana", 'abbreviation'=>"LA", 'capital'=>'Baton Rouge'), + array('id'=>25, 'name'=>"Maine", 'label'=>"Maine", 'abbreviation'=>"ME", 'capital'=>'Augusta'), + array('id'=>26, 'name'=>"Marshall Islands", 'label'=>"Marshall Islands", 'abbreviation'=>"MH", 'capital'=>'Answer Majuro'), + array('id'=>27, 'name'=>"Maryland", 'label'=>"Maryland", 'abbreviation'=>"MD", 'capital'=>'Annapolis'), + array('id'=>28, 'name'=>"Massachusetts", 'label'=>"Massachusetts", 'abbreviation'=>"MA", 'capital'=>'Boston'), + array('id'=>29, 'name'=>"Michigan", 'label'=>"Michigan", 'abbreviation'=>"MI", 'capital'=>'Lansing'), + array('id'=>30, 'name'=>"Minnesota", 'label'=>"Minnesota", 'abbreviation'=>"MN", 'capital'=>'Saint Paul'), + array('id'=>31, 'name'=>"Mississippi", 'label'=>"Mississippi", 'abbreviation'=>"MS", 'capital'=>'Jackson'), + array('id'=>32, 'name'=>"Missouri", 'label'=>"Missouri", 'abbreviation'=>"MO", 'capital'=>'Jefferson City'), + array('id'=>33, 'name'=>"Montana", 'label'=>"Montana", 'abbreviation'=>"MT", 'capital'=>'Helena'), + array('id'=>34, 'name'=>"Nebraska", 'label'=>"Nebraska", 'abbreviation'=>"NE", 'capital'=>'Lincoln'), + array('id'=>35, 'name'=>"Nevada", 'label'=>"Nevada", 'abbreviation'=>"NV", 'capital'=>'Carson City'), + array('id'=>36, 'name'=>"New Hampshire", 'label'=>"New Hampshire", 'abbreviation'=>"NH", 'capital'=>'Concord'), + array('id'=>37, 'name'=>"New Jersey", 'label'=>"New Jersey", 'abbreviation'=>"NJ", 'capital'=>'Trenton'), + array('id'=>38, 'name'=>"New Mexico", 'label'=>"New Mexico", 'abbreviation'=>"NM", 'capital'=>'Santa Fe'), + array('id'=>39, 'name'=>"New York", 'label'=>"New York", 'abbreviation'=>"NY", 'capital'=>'Albany'), + array('id'=>40, 'name'=>"North Carolina", 'label'=>"North Carolina", 'abbreviation'=>"NC", 'capital'=>'Raleigh'), + array('id'=>41, 'name'=>"North Dakota", 'label'=>"North Dakota", 'abbreviation'=>"ND", 'capital'=>'Bismarck'), + array('id'=>42, 'name'=>"Northern Mariana Islands", 'label'=>"Northern Mariana Islands", 'abbreviation'=>"MP", 'capital'=>'Saipan'), + array('id'=>43, 'name'=>"Ohio", 'label'=>"Ohio", 'abbreviation'=>"OH", 'capital'=>'Columbus'), + array('id'=>44, 'name'=>"Oklahoma", 'label'=>"Oklahoma", 'abbreviation'=>"OK", 'capital'=>'Oklahoma City'), + array('id'=>45, 'name'=>"Oregon", 'label'=>"Oregon", 'abbreviation'=>"OR", 'capital'=>'Salem'), + array('id'=>46, 'name'=>"Pennsylvania", 'label'=>"Pennsylvania", 'abbreviation'=>"PA", 'capital'=>'Harrisburg'), + array('id'=>47, 'name'=>"Puerto Rico", 'label'=>"Puerto Rico", 'abbreviation'=>"PR", 'capital'=>'San Juan'), + array('id'=>48, 'name'=>"Rhode Island", 'label'=>"Rhode Island", 'abbreviation'=>"RI", 'capital'=>'Providence'), + array('id'=>49, 'name'=>"South Carolina", 'label'=>"South Carolina", 'abbreviation'=>"SC", 'capital'=>'Columbia'), + array('id'=>50, 'name'=>"South Dakota", 'label'=>"South Dakota", 'abbreviation'=>"SD", 'capital'=>'Pierre'), + array('id'=>51, 'name'=>"Tennessee", 'label'=>"Tennessee", 'abbreviation'=>"TN", 'capital'=>'Nashville'), + array('id'=>52, 'name'=>"Texas", 'label'=>"Texas", 'abbreviation'=>"TX", 'capital'=>'Austin'), + array('id'=>53, 'name'=>"Utah", 'label'=>"Utah", 'abbreviation'=>"UT", 'capital'=>'Salt Lake City'), + array('id'=>54, 'name'=>"Vermont", 'label'=>"Vermont", 'abbreviation'=>"VT", 'capital'=>'Montpelier'), + array('id'=>55, 'name'=> "Virgin Islands, U.S.", 'label'=>"Virgin Islands, U.S.", 'abbreviation'=>"VI", 'capital'=>'Charlotte Amalie'), + array('id'=>56, 'name'=>"Virginia", 'label'=>"Virginia", 'abbreviation'=>"VA", 'capital'=>'Richmond'), + array('id'=>57, 'name'=>"Washington", 'label'=>"Washington", 'abbreviation'=>"WA", 'capital'=>'Olympia'), + array('id'=>58, 'name'=>"West Virginia", 'label'=>"West Virginia", 'abbreviation'=>"WV", 'capital'=>'Charleston'), + array('id'=>59, 'name'=>"Wisconsin", 'label'=>"Wisconsin", 'abbreviation'=>"WI", 'capital'=>'Madison'), + array('id'=>60, 'name'=>"Wyoming", 'label'=>"Wyoming", 'abbreviation'=>"WY", 'capital'=>'Cheyenne'), + array('id'=>61, 'name'=>"Special chars !\"$%&/()=? #'+*-_.:,; <", 'label'=>"Special chars !\"$%&/()=? #'+*-_.:,;<", 'abbreviation'=>":-)", 'capital'=>'/dev/null'), +); + +$allItems = array(); +$totalCount = 100000; +for ($iIndex =0; $iIndex < $totalCount; $iIndex++ ){ + $allItems[$iIndex] = array( + 'id' => $iIndex, + 'name' => $sampleItems[$iIndex%count($sampleItems)]['name'], + 'label' => $sampleItems[$iIndex%count($sampleItems)]['label'], + 'abbreviation' => $sampleItems[$iIndex%count($sampleItems)]['abbreviation'], + 'capital' => $sampleItems[$iIndex%count($sampleItems)]['capital'] + );; + +} + +// Query. Null means no query at all (return all records), whereas any string, even the empty string, +// is a filter. +$q = null; +if (array_key_exists("q", $_REQUEST)) { + $q = $_REQUEST['q']; +}else if (array_key_exists("name", $_REQUEST)) { + $q = $_REQUEST['name']; +} + +// Support wildcard search like "a*" to find all elements beginning with a, or "*" to find all elements +// (same as no query at all) +if ($q === "*") { + $q = null; // treat it the same as no query at all +}else if ($q && strlen($q) && $q[strlen($q)-1]=="*") { + $q = substr($q, 0, strlen($q)-1); + $wildcard = true; +} + +$ret = array(); +foreach ($allItems as $item) { + $foundPos = -1; + + // flag if item matches the query or not + $matches = true; + + // If there's a query, run it, and set $matches if item matches. + // Allow query for empty string too, that's why it has the explicit test for null. + if ($q !== null) { + if($wildcard){ + // query like "a*", check if item starts with "a" + $foundPos = strpos(strtolower($item['name']), strtolower($q)); + $matches = $foundPos===0; + }else{ + // query like "alabama", check if item matches query string exactly + $matches = strtolower($item['name']) == strtolower($q); + } + } + + if ($matches) { + // Add item to result list + $ret[] = $item; + } +} + +// Handle sorting +if (array_key_exists("sort", $_REQUEST)) { + $sort = $_REQUEST['sort']; + // Check if $sort starts with "-" then we have a DESC sort. + $desc = strpos($sort, '-')===0 ? true : false; + $sort = strpos($sort, '-')===0 ? substr($sort, 1) : $sort; + if (in_array($sort, array_keys($ret[0]))) { + $toSort = array(); + foreach ($ret as $i) $toSort[$i[$sort]] = $i; + if ($desc) krsort($toSort); else ksort($toSort); + $newRet = array(); + foreach ($toSort as $i) $newRet[] = $i; + $ret = $newRet; + } +} + + +// Handle total number of matches as a return, regardless of page size, but taking the filtering into account (if taken place). +$numRows = count($ret); + +// Handle paging, if given. +if (array_key_exists("start", $_REQUEST)) { + $ret = array_slice($ret, $_REQUEST['start']); +} +if (array_key_exists("count", $_REQUEST)) { + $ret = array_slice($ret, 0, $_REQUEST['count']); +} + +print '/*'.json_encode(array('numRows'=>$numRows, 'items'=>$ret, 'identity'=>'id')).'*/'; diff --git a/tests/test_grid_virtualScroller.html b/tests/test_grid_virtualScroller.html index 3cd4427aa..9a0f495cc 100644 --- a/tests/test_grid_virtualScroller.html +++ b/tests/test_grid_virtualScroller.html @@ -28,12 +28,13 @@

Big Client Store (2000 rows)

"gridx/modules/VirtualVScroller" ] '>
-

Huge Server Store (1000000 rows, lazy scroll)

-

Please note - All data are loaded from a third party server, so loading speed will be highly dependent on the network and stability of the service.

+

Huge Server Store (100000 rows, lazy scroll)

+

Please note - All data are loaded from a third party server, so loading speed will be highly dependent on the network and stability of the service.

Date: Fri, 27 Jun 2014 10:34:15 +0800 Subject: [PATCH 20/22] fix alwaysEditing test page duplicate column id issue --- tests/test_grid_alwaysEditing.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_grid_alwaysEditing.js b/tests/test_grid_alwaysEditing.js index 1e5ba4dfa..6442061eb 100644 --- a/tests/test_grid_alwaysEditing.js +++ b/tests/test_grid_alwaysEditing.js @@ -139,13 +139,13 @@ require([ width: '50px', editor: "dijit.form.NumberSpinner" }, - {id: 'Heard', field: "Heard", name:"Check Box", width: '30px', alwaysEditing: true, + {id: 'Heard1', field: "Heard", name:"Check Box", width: '30px', alwaysEditing: true, editor: "dijit.form.CheckBox", editorArgs: { props: 'value: true' } }, - {id: 'Heard', field: "Heard", name:"ToggleButton", width: '100px', alwaysEditing: true, + {id: 'Heard2', field: "Heard", name:"ToggleButton", width: '100px', alwaysEditing: true, editor: "dijit.form.ToggleButton", editorArgs: { valueField: 'checked', From 56ef4a27c8b5f1fb1ca9d85766b77325c20627c9 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Fri, 27 Jun 2014 11:44:44 +0800 Subject: [PATCH 21/22] fix trim issue in IE 8 --- modules/Body.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/Body.js b/modules/Body.js index 433720353..9ca5569b3 100644 --- a/modules/Body.js +++ b/modules/Body.js @@ -809,9 +809,9 @@ define([ var cellContent = t._buildCellContent(col, rowId, cell, visualIndex, isPadding, cellData), testNode = domConstruct.create('div', {innerHTML: cellContent}), - testNodeContent = (testNode.innerText || testNode.textContent).trim? - (testNode.innerText || testNode.textContent).trim() : - (testNode.innerText || testNode.textContent).replace(/\s/g, ''), + testNodeContent = (testNode.innerText !== undefined && testNode.innerText !== null) ? + testNode.innerText : testNode.textContent; + testNodeContent = testNodeContent.trim ? testNodeContent.trim() : testNodeContent.replace(/\s/g, ''), isEmpty = testNodeContent === ' ' || !testNodeContent; testNode = ''; From 8b03a0070b701c203f2056289b05872151a17532 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Fri, 27 Jun 2014 11:47:25 +0800 Subject: [PATCH 22/22] update gridx version --- Grid.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Grid.js b/Grid.js index 9ac17244a..d16cac36c 100644 --- a/Grid.js +++ b/Grid.js @@ -49,7 +49,7 @@ define([ // - revision: Number: The Git rev from which dojo was pulled major: 1, minor: 3, - patch: 2, + patch: 3, flag: "", toString: function(){ return this.major + "." + this.minor + "." + this.patch + this.flag; // String diff --git a/package.json b/package.json index df534e8d8..9f1595668 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "dijit": "https://github.com/dojo/dijit/zipball/1.9.1", "dojox": "https://github.com/dojo/dojox/zipball/1.9.1" }, - "version": "1.3.2", + "version": "1.3.3", "maintainers":[ { "name": "Xiao Wen Zhu(Oliver)",