| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437 | 
							- /*Rounded Corners*/
 
- /*top-left rounded Corners*/
 
- .jqx-rc-tl
 
- {
 
-     -moz-border-radius-topleft: 3px;
 
-     -webkit-border-top-left-radius: 3px;
 
-     border-top-left-radius: 3px;
 
- }
 
- /*top-right rounded Corners*/
 
- .jqx-rc-tr
 
- {
 
-     -moz-border-radius-topright: 3px;
 
-     -webkit-border-top-right-radius: 3px;
 
-     border-top-right-radius: 3px;
 
- }
 
- /*bottom-left rounded Corners*/
 
- .jqx-rc-bl
 
- {
 
-     -moz-border-radius-bottomleft: 3px;
 
-     -webkit-border-bottom-left-radius: 3px;
 
-     border-bottom-left-radius: 3px;
 
- }
 
- /*bottom-right rounded Corners*/
 
- .jqx-rc-br
 
- {
 
-     -moz-border-radius-bottomright: 3px;
 
-     -webkit-border-bottom-right-radius: 3px;
 
-     border-bottom-right-radius: 3px;
 
- }
 
- /*top rounded Corners*/
 
- .jqx-rc-t
 
- {
 
-     -moz-border-radius-topleft: 3px;
 
-     -webkit-border-top-left-radius: 3px;
 
-     border-top-left-radius: 3px;
 
-     -moz-border-radius-topright: 3px;
 
-     -webkit-border-top-right-radius: 3px;
 
-     border-top-right-radius: 3px;
 
- }
 
- /*bottom rounded Corners*/
 
- .jqx-rc-b
 
- {
 
-     -moz-border-radius-bottomleft: 3px;
 
-     -webkit-border-bottom-left-radius: 3px;
 
-     border-bottom-left-radius: 3px;
 
-     -moz-border-radius-bottomright: 3px;
 
-     -webkit-border-bottom-right-radius: 3px;
 
-     border-bottom-right-radius: 3px;
 
- }
 
- /*right rounded Corners*/
 
- .jqx-rc-r
 
- {
 
-     -moz-border-radius-topright: 3px;
 
-     -webkit-border-top-right-radius: 3px;
 
-     border-top-right-radius: 3px;
 
-     -moz-border-radius-bottomright: 3px;
 
-     -webkit-border-bottom-right-radius: 3px;
 
-     border-bottom-right-radius: 3px;
 
- }
 
- /*left rounded Corners*/
 
- .jqx-rc-l
 
- {
 
-     -moz-border-radius-topleft: 3px;
 
-     -webkit-border-top-left-radius: 3px;
 
-     border-top-left-radius: 3px;
 
-     -moz-border-radius-bottomleft: 3px;
 
-     -webkit-border-bottom-left-radius: 3px;
 
-     border-bottom-left-radius: 3px;
 
- }
 
- /*all rounded Corners*/
 
- .jqx-rc-all
 
- {
 
-     -moz-border-radius: 3px;
 
-     -webkit-border-radius: 3px;
 
-     border-radius: 3px;
 
- }
 
- /*reset rounded corners*/
 
- .jqx-rc-reset
 
- {
 
-     -moz-border-radius: 0px !important;
 
-     -webkit-border-radius: 0px !important;
 
-     border-radius: 0px !important;
 
- }
 
- /*Reset Style*/
 
- .jqx-reset
 
- {
 
-     padding: 0;
 
-     margin: 0;
 
-     border: none;
 
-     background: transparent;
 
-     outline: none;
 
-     box-sizing: content-box;
 
- }
 
- .jqx-clear {
 
-     align:left; valign:top; left: 0px; top: 0px; -webkit-appearance: none !important; outline: none !important; padding: 0px; margin: 0px;
 
- }
 
- .jqx-popup {
 
-     box-sizing: content-box;
 
- }
 
- .jqx-position-reset {
 
-     position: static !important; 
 
- }
 
- .jqx-border-reset {
 
-     border: none !important;
 
- }
 
- .jqx-overflow-hidden {
 
-     overflow: hidden !important;
 
- }
 
- .jqx-position-relative {
 
-     position: relative !important;
 
- }
 
- .jqx-position-absolute {
 
-     position: absolute !important;
 
- }
 
- .jqx-max-size {
 
-     width: 100% !important;
 
-     height: 100% !important;
 
- }
 
- .jqx-background-reset {
 
-     background: transparent !important;
 
- }
 
- /*Disable browser selection*/
 
- .jqx-disableselect
 
- {
 
-     -webkit-user-select: none;
 
-     -khtml-user-select: none;
 
-     -moz-user-select: none;
 
-     -o-user-select: none;
 
-     user-select: none;
 
-     -ms-user-select:none;
 
-     -webkit-touch-callout:none;
 
- }
 
- .jqx-enableselect {
 
-     -webkit-user-select: text;
 
-     -khtml-user-select: text;
 
-     -moz-user-select: text;
 
-     -o-user-select: auto;
 
-     -ms-user-select:text;
 
-     user-select:all;
 
- }
 
- .jqx-hideborder
 
- {
 
-     border: none !important;
 
- }
 
- .jqx-hidescrollbars
 
- {
 
-     overflow: hidden !important;
 
- }
 
- /*jqxButton, jqxToggleButton, jqxRepeatButton Style*/
 
- .jqx-button{outline: none; border: 1px solid transparent; padding: 3px; text-align: center; vertical-align: central; margin: 0 0 0 0; cursor: default; }
 
- button.jqx-button, input[type=button].jqx-button,  input[type=submit].jqx-button {
 
-     box-sizing: border-box !important; -moz-box-sizing: border-box !important; 
 
- }
 
- .jqx-buttongroup{}
 
- .jqx-group-button-normal {
 
-     vertical-align: middle;
 
-     text-align: center;
 
- }
 
- /*applied to the link button's anchor element.*/
 
- .jqx-link
 
- {
 
-     text-decoration: none;
 
-     color: #111111;
 
- }
 
- /*shows elements.*/
 
- .jqx-visible
 
- {
 
-     display: block;
 
- }
 
- /*hides elements.*/
 
- .jqx-hidden
 
- {
 
-     display: none;
 
- }
 
- .jqx-widget, .jqx-widget-content, .jqx-widget-header, .jqx-fill-state-normal {
 
-     line-height: 1.231;
 
- }
 
- /*jqxGauge Style*/
 
- .jqx-gauge-label, .jqx-gauge-caption
 
- {
 
-     fill: #333333;
 
-     color: #333333;
 
-     font-size: 11px;
 
-     font-family: Verdana;
 
- }
 
- /*jqxChart Style*/
 
- .jqx-chart-axis-text,
 
- .jqx-chart-label-text, 
 
- .jqx-chart-tooltip-text, 
 
- .jqx-chart-legend-text
 
- {
 
-     fill: #333333;
 
-     color: #333333;
 
-     font-size: 11px;
 
-     font-family: Verdana;
 
- }
 
- .jqx-chart-axis-description
 
- {
 
-     fill: #555555;
 
-     color: #555555;
 
-     font-size: 11px;
 
-     font-family: Verdana;
 
- }
 
- .jqx-chart-title-text
 
- {
 
-     fill: #111111;
 
-     color: #111111;
 
-     font-size: 14px;
 
-     font-weight: bold;
 
-     font-family: Verdana;
 
- }
 
- .jqx-chart-title-description
 
- {
 
-     fill: #111111;
 
-     color: #111111;
 
-     font-size: 12px;
 
-     font-weight: normal;
 
-     font-family: Verdana;
 
- }
 
- /*applied to the Grid's element.*/
 
- .jqx-grid
 
- {
 
-     overflow: hidden;
 
-     border-style: solid;
 
-     border-width: 1px;
 
- }
 
- /*applied to the Pager.*/
 
- .jqx-grid-pager
 
- {
 
-     border: none;
 
-     border-top: 1px solid transparent;
 
- }
 
- /*applied to the Top Pager.*/
 
- .jqx-grid-pager-top
 
- {
 
-     border: none;
 
-     border-bottom: 1px solid transparent;
 
- }
 
- .jqx-grid-pager-number{
 
-     padding: 2px 5px;
 
-     text-decoration: none;
 
-     margin: 1px;
 
-     border: 1px solid transparent;
 
-     color: inherit !important;
 
-     *color: expression(this.parentNode.currentStyle['color']) !important;     
 
-     outline: none;
 
-     font-weight: normal !important;
 
- }
 
- /*applied to the Grid's bottom-right area between the horizontal and vertical scrollbars.*/
 
- .jqx-grid-bottomright
 
- {
 
-    
 
- }
 
- /*applied to the Grid's header area.*/
 
- .jqx-grid-header 
 
- {
 
-     border-style: solid;
 
-     border-width: 0px 0px 1px 0px;
 
-     overflow: hidden;
 
-     border-color: transparent;
 
-     margin: 0px;
 
-     padding: 0px;
 
-  }
 
-  /*applied to the columns.*/
 
- .jqx-grid-column-header, .jqx-grid-columngroup-header {
 
-     border-style: solid;
 
-     border-width: 0px 1px 0px 0px;
 
-     border-color: transparent;
 
-     white-space: nowrap;
 
-     border-style: solid;
 
-     font-weight: normal;  
 
-     overflow: hidden;
 
-     text-align: left;
 
-     padding: 0px;
 
-     margin: 0px;
 
-  }
 
- .jqx-grid-column-header-rtl, .jqx-grid-columngroup-header-rtl {
 
-     border-width: 0px 0px 0px 1px;
 
- }
 
- .jqx-grid-columngroup-header {
 
-     border-bottom-width: 1px;
 
-     border-left-width: 1px;
 
- }
 
-  /*applied to the column's button.*/
 
-  .jqx-grid-column-menubutton {
 
-     border-style: solid;
 
-     border-width: 0px 0px 0px 1px;
 
-     border-color: transparent;
 
-     background-image: url('images/menubutton.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
-     cursor: pointer;
 
-  }
 
- .jqx-grid-column-menubutton-rtl {
 
-     border-width: 0px 1px 0px 0px;
 
- }
 
-  /*applied to the column's sort button when the sort order is ascending.*/
 
-  .jqx-grid-column-sortascbutton {
 
-     border: none;
 
-     background-image: url('images/sortascbutton.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
-     cursor: pointer;
 
-  }
 
-  /*applied to the column's sort button when the sort order is descending.*/
 
-   .jqx-grid-column-sortdescbutton {
 
-     border: none;
 
-     background-image: url('images/sortdescbutton.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
-     cursor: pointer;
 
-  }
 
-   /*applied to the column's filter button.*/
 
-   .jqx-grid-column-filterbutton
 
-  {
 
-     border: none;
 
-     background-image: url('images/filter.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
-  }
 
-   /*applied to the column's resize line.*/
 
-  .jqx-grid-column-resizeline {
 
-    border-right: 1px dotted #555; 
 
-  }
 
-  /*applied to the validation popup during cell editing.*/
 
-  .jqx-grid-validation
 
-  {
 
-     background: #df2227 !important;
 
-     color: #fff  !important;
 
-     padding: 4px 8px;
 
-  }
 
- .jqx-grid-validation-label {
 
-     color: #fff !important;
 
-     background: #df2227 !important;
 
-     border: 1px solid #df2227 !important;    
 
- }
 
-   .jqx-grid-validation-arrow-up
 
-  {
 
-     background-image: url('images/red_arrow_up.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center center;
 
-  }
 
-   .jqx-grid-validation-arrow-down
 
-  {
 
-     background-image: url('images/red_arrow_down.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center center;
 
-  }
 
-   /*applied to the column's resize start line.*/
 
-   .jqx-grid-column-resizestartline {
 
-    border-right: 1px solid #444; 
 
-  }
 
-   /*applied to the sort ascending menu item in the Grid's Context Menu*/
 
-  .jqx-grid-sortasc-icon
 
-  {
 
-     background-image: url('images/sortasc.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left center;
 
-     width: 16px;
 
-     height: 16px;
 
-     float: left;
 
-     margin-left: -4px;
 
-     margin-right: 4px;
 
-  }
 
-   /*applied to the sort ascending menu item in the Grid's Context Menu*/
 
-  .jqx-grid-sortdesc-icon
 
-  {
 
-     background-image: url('images/sortdesc.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left center;
 
-     width: 16px;
 
-     height: 16px;
 
-     float: left;
 
-     margin-left: -4px;
 
-     margin-right: 4px;
 
-  }
 
-   /*applied to the grid menu's sort remove item/*/
 
-  .jqx-grid-sortremove-icon
 
-  {
 
-     background-image: url('images/sortremove.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left center;
 
-     width: 16px;
 
-     height: 16px;
 
-     float: left;
 
-     margin-left: -4px;
 
-     margin-right: 4px;
 
-  }
 
-    /*applied to the grouping column's drag and drop item when the drop operation is allowed.*/
 
-  .jqx-grid-drag-icon
 
-  {
 
-     background-image: url('images/drag.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left center;
 
-     width: 16px;
 
-     height: 16px;
 
-  }
 
-    /*applied to the grouping column's drag and drop item when the drop operation is not allowed.*/
 
-  .jqx-grid-dragcancel-icon
 
-  {
 
-     background-image: url('images/dragcancel.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left center;
 
-     width: 16px;
 
-     height: 16px;
 
-  }
 
-  /*applied to the 'group by' menu item.*/
 
-  .jqx-grid-groupby-icon
 
-  {
 
-     background-repeat: no-repeat;
 
-     background-position: left center;
 
-     width: 16px;
 
-     height: 16px;
 
-     float: left;
 
-     margin-left: -4px;
 
-     margin-right: 4px;
 
-  }
 
- /*applied to the column anchor tags.*/
 
-  .jqx-grid-column-header a:link, .jqx-grid-column-header a:visited
 
-  {
 
-     display: block;
 
-     margin: 4px;
 
-     height: 18px;
 
-     line-height: 18px !important;
 
-     color: inherit;
 
-     outline: 0 none;
 
-     text-decoration: none;
 
-     cursor: pointer;
 
- }
 
- .jqx-grid-toolbar a:link, .jqx-grid-toolbar a:visited {
 
-     margin: 4px;
 
-     height: 18px;
 
-     line-height: 18px !important;
 
-     color: inherit;
 
-     outline: 0 none;
 
-     text-decoration: none;
 
-     cursor: pointer;
 
- }
 
- /*applied to the groups header area.*/
 
-  .jqx-grid-groups-header, .jqx-grid-toolbar {
 
-     border-style: solid;
 
-     border-width: 0px 0px 1px 0px;
 
-     border-color: #aaa;
 
-     white-space: nowrap;
 
-     overflow: hidden;
 
-     text-align: left;
 
-     padding: 0px;
 
-     margin: 0px;
 
-  }
 
- /*applied to a grouping row.*/
 
-  .jqx-grid-groups-row {
 
-     font-weight:bold;
 
-     white-space: nowrap;
 
-     text-align: left;
 
-     padding: 0px;
 
-     top: 50%;
 
-     margin-top: -8px;
 
-  }
 
-  /*applied to the row details.*/
 
-  .jqx-grid-groups-row-details {
 
-     font-weight: normal;
 
-  }
 
-  /*applied to a grouping column.*/
 
-  .jqx-grid-group-column 
 
-  {
 
-     border: 1px solid transparent;
 
-     white-space: nowrap;
 
-     border-style: solid;
 
-     font-weight: normal;  
 
-     overflow: hidden;
 
-     text-align: left;
 
-     padding: 0px;
 
-     margin: 0px;
 
-  }
 
-  /*applied to the lines between the group columns.*/
 
-   .jqx-grid-group-column-line
 
-  {
 
-     background: #aaa;
 
-  }
 
-  /*applied to the drop line indicators displayed in the grouping header.*/
 
-   .jqx-grid-group-drag-line
 
-  {
 
-     background: #80be09;
 
-  }
 
-  /*applied to the anchor tags inside a grouping column.*/
 
-  .jqx-grid-group-column  a:link{
 
-     display: block;
 
-     margin: 4px;
 
-     height: 18px;
 
-     line-height: 18px !important;
 
-     outline: 0 none;
 
-     text-decoration: none;
 
-     cursor: pointer;
 
-     color: inherit;
 
-     *color: expression(this.parentNode.currentStyle['color']);     
 
- }
 
-  .jqx-grid-group-column  a:visited{
 
-     color: inherit;
 
-     display: block;
 
-     margin: 4px;
 
-     height: 18px;
 
-     line-height: 18px !important;
 
-     outline: 0 none;
 
-     text-decoration: none;
 
-     cursor: pointer;
 
-      *color: expression(this.parentNode.currentStyle['color']);    
 
- }
 
- /*applied to a grid cell*/
 
- .jqx-grid-cell {
 
-     border-style: solid;
 
-     border-width: 0px 1px 1px 0px;
 
-     margin-right: 1px;
 
-     margin-bottom: 1px;
 
-     border-color: transparent;  
 
-     background: #fff;
 
-     white-space: nowrap;
 
-     font-weight: normal; 
 
-     font-size: inherit;
 
-     overflow: hidden; 
 
-     position: absolute !important; 
 
-     height: 100%; 
 
-  }
 
- .jqx-grid-cell-locked {
 
-     color: #aaa !important;
 
- }
 
- /*applied to a grid cell that is part of a rows group.*/
 
-  .jqx-grid-group-cell{ 
 
-     overflow: hidden; 
 
-     position: absolute !important; 
 
-     height: 100%; 
 
-     background: #fff;
 
-  }
 
- /*applied to the grid cells in the sort column*/
 
-  .jqx-grid-cell-sort {
 
-     background-color: #f0f0f0;
 
-  }
 
-  /*applied to the grid cells in the filter column*/
 
-  .jqx-grid-cell-filter {
 
-     background-color: #e6e6e6;
 
-  }
 
-  /*applied to the grid cells area.*/
 
- .jqx-grid-content {
 
-     border-style: solid;
 
-     border-width: 0px 0px 0px 0px;
 
-     border-color: transparent;
 
-     white-space: nowrap;
 
-     overflow: hidden;
 
-  }
 
-  /*applied to a grid cell that is part of a rows group.*/
 
- .jqx-grid-group-cell, .jqx-grid-empty-cell {
 
-     border-style: solid;
 
-     border-width: 0px 0px 1px 0px;
 
-     white-space: nowrap;
 
-     font-weight: normal;   
 
-  }
 
- .jqx-widget .jqx-grid-cleared-cell, .jqx-grid-cleared-cell {
 
-     border: transparent !important;
 
- }
 
- .jqx-grid-cell-wrap {white-space: normal;}
 
- .jqx-tree-grid-indent {
 
-     width: 14px;
 
-     display: inline-block;
 
-     height: 8px;
 
-     overflow: hidden;
 
-     vertical-align: top;
 
- }
 
- .jqx-tree-grid-title {
 
-     text-decoration: none;
 
-     vertical-align: top;
 
-     white-space: nowrap;
 
-     overflow: hidden;
 
-     text-overflow: ellipsis;
 
- }
 
- .jqx-tree-grid-collapse-button, .jqx-tree-grid-expand-button {
 
-     display: inline-block;
 
-     margin-top: 2px;
 
-     margin-right: 0px;
 
-     position: relative;
 
-     width: 14px;
 
-     height: 13px;   
 
-     vertical-align: top;
 
- }
 
- .jqx-tree-grid-checkbox {
 
-    float: none !important; 
 
-    width: 14px;
 
-    height: 14px;
 
-    cursor: pointer;
 
-    margin-right: 2px !important;
 
-    margin-left: 2px !important;
 
- }
 
- .jqx-tree-grid-icon {
 
-    float: none !important; 
 
-    width: 14px;
 
-    height: 14px;
 
-    margin-right: 4px;
 
- }
 
- .jqx-tree-grid-icon-rtl {
 
-    margin-right: 0px;
 
-    margin-left: 4px;
 
- }
 
- .jqx-tree-grid-icon-size {
 
-    width: 14px;
 
-    height: 14px;
 
-    line-height: 16px;
 
- }
 
- .jqx-tree-grid-checkbox-tick {
 
-     width: 100%;
 
-     height: 100%;
 
- }
 
- .jqx-tree-grid-expand-button {
 
-     height: 10px;
 
-     width: 14px;
 
-     vertical-align: top;
 
- }
 
- /*applied to a cell in jqxDataTable*/
 
- .jqx-cell {
 
-     min-height: 23px;
 
-     padding: 6px 4px;
 
-     margin: 0;
 
-     border-collapse: separate;
 
-     border-spacing: 0px;
 
-     overflow: hidden;
 
-     text-overflow: ellipsis;
 
-     border: 1px solid transparent;
 
-     border-top-width: 0px;
 
-     border-left-width: 0px;
 
-     box-sizing: border-box;
 
-     -moz-box-sizing: border-box;
 
-     white-space: normal;
 
-     line-height: 1.231;
 
- }
 
- .jqx-grid-cell-nowrap {white-space: nowrap;}
 
- .jqx-cell-editor {
 
-     padding-left: 4px !important;
 
-     padding-right: 3px !important;
 
- }
 
- .jqx-left-align {
 
-     text-align: left;
 
- }
 
- .jqx-center-align {
 
-     text-align: center;
 
- }
 
- .jqx-right-align {
 
-     text-align: right;
 
- }
 
- .jqx-grid-table .jqx-grid-cell {
 
-     position: static !important;
 
-     zoom: 1;
 
- }
 
- /*applied to the Grid's Table element.*/
 
- .jqx-grid-table {
 
-     font-size: 13px;
 
-     table-layout: fixed;
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border-collapse: separate;
 
-     border-spacing: 0px;
 
-     -webkit-overflow-scrolling: touch;
 
-     outline: none;
 
-     zoom: 1;
 
-     empty-cells: show;
 
-     border-right: 1px solid #aaa;
 
-     line-height: 1.231;
 
-     width: auto;
 
-     border: none;
 
- }
 
- .jqx-grid-table-rtl {
 
-     border-left-width: 1px;
 
-     border-right-width: 0px;
 
- }
 
- .jqx-details table {
 
-    border-collapse: collapse;
 
-    table-layout: fixed;
 
-    border-spacing: 0px;
 
- }
 
-  /*applied to a grid cell that is part of a details row and grouping is enabled.*/
 
- .jqx-grid-group-details-cell {
 
-  }
 
-  /*applied to a grid cell that is part of a details row.*/
 
- .jqx-grid-details-cell {
 
-     border-width: 0px 1px 0px 0px;
 
-  }
 
-   /*applied to a grid cell. Represents the alternating cell background.*/
 
- .jqx-grid-cell-alt {
 
-     background: #f9f9f9;  
 
-  }
 
- /*applied to a sorted and alternating grid cell*/
 
- .jqx-grid-cell-sort-alt {
 
-     background-color: #e5e5e5;
 
-  }/*applied to a sorted and alternating grid cell*/
 
- .jqx-grid-cell-filter-alt {
 
-     background-color: #f0f0f0;
 
-  }
 
-   /*applied to a pinned grid cell.*/
 
- .jqx-grid-cell-pinned {
 
-     background-color: #e5e5e5;
 
-  }
 
-  /*applied to a pinned grid cell. Represents the alternating cell background.*/
 
- .jqx-grid-cell-pinned-alt {
 
-     background-color: #e5e5e5;
 
-  }
 
-  /*applied to a selected grid cell.*/
 
-  .jqx-grid-cell-selected {
 
-     border-left: 0px solid transparent;
 
-  }
 
-  .jqx-cell-rtl {
 
-    border-left-width: 1px;
 
-    border-right-width: 0px;
 
-  }
 
-  .jqx-grid-cell-rtl {
 
-     border-width: 0px 0px 1px 1px;
 
-  }
 
-  .jqx-grid-table .jqx-grid-cell {
 
-    border-width: 0px 0px 1px 1px;
 
-  }
 
-  .jqx-grid-table .jqx-grid-cell:first-child {
 
-     border-left-width: 0px;
 
-  }
 
-   /*applied to the selection area.*/
 
-  .jqx-grid-selectionarea {
 
-     border: 1px solid transparent;
 
-     opacity: 0.5;
 
-     filter: alpha(opacity=50);
 
-  }
 
-  /*applied to a hovered grid cell.*/
 
-  .jqx-grid-cell-hover {
 
-     border-color: transparent;
 
-  }
 
-   /*applied to a grid cell when the grid is empty.*/
 
-  .jqx-grid-empty-cell{ overflow: visible; border-bottom: none;}
 
-  /*applied to the Grid when its loading the data.*/
 
-  .jqx-grid-load
 
- {
 
-     padding-right: 0px;
 
-     background-image: url(images/loader.gif);
 
-     background-position: 50% 50%;
 
-     background-repeat: no-repeat;  
 
-     z-index: 9999;
 
-     display: block;
 
- }
 
- /*applied to a group's collapse button.*/
 
- .jqx-grid-group-collapse
 
- {
 
-     padding-right: 0px;
 
-     background-image: url(images/icon-right.png);
 
-     background-position: 50% 50%;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
- }
 
- .jqx-grid-group-collapse-rtl
 
- {
 
-     padding-right: 0px;
 
-     background-image: url(images/icon-left.png);
 
-     background-position: 50% 50%;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
- }
 
- /*applied to a group's expand button.*/
 
- .jqx-grid-group-expand, .jqx-grid-group-expand-rtl
 
- {
 
-     padding-right: 0px;
 
-     background-image: url(images/icon-down.png);
 
-     background-position: 50% 50%;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
- }
 
- /*jqxProgresBar Style*/
 
- .jqx-progressbar
 
- {
 
-     overflow: hidden;
 
-     outline: none;
 
-     border: 1px solid transparent;
 
-     height: 2em;
 
- }
 
- /*applied to the progressbar's value element*/
 
- .jqx-progressbar-value
 
- {
 
-     outline: none;
 
-     border: 0px solid transparent;
 
-     height: 100%;
 
- }
 
- /*applied to the progress bar's vertical value element- when the widget's orientation is 'vertical'*/
 
- .jqx-progressbar-value-vertical
 
- {
 
-     outline: none;
 
-     border: 0px solid transparent;
 
-     height: 100%;
 
-     background: transparent;
 
- }
 
- /*applied to the progressbar's text element*/
 
- .jqx-progressbar-text
 
- {
 
-     font-size: 10px;
 
-     border: none;
 
- }
 
- /*applied to the progress bar when the widget is in disabled state*/
 
- .jqx-progressbar-disabled
 
- {
 
-     outline: none;
 
-     border: 1px solid transparent; 
 
-     height: 2em;
 
- }
 
- /*jqxMenu Style*/
 
- .jqx-menu
 
- {
 
-     border: 1px solid transparent;
 
-     float: none;
 
-     margin: 0px;
 
-     height: 100%;
 
-     padding: 0px;
 
-     overflow: hidden;
 
-     text-align: left;
 
- }
 
- .jqx-menu-dropdown-column
 
- {
 
-     float: left;
 
- }
 
- /*applied to the menu when it is horizontal. Sets the menu's background*/
 
- .jqx-menu-horizontal
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     overflow: hidden;
 
-     text-align: center;
 
- }
 
- /*applied to the menu when it is vertical. Sets the menu's background*/
 
- .jqx-menu-vertical
 
- {
 
-     text-align: left;
 
- }
 
- /*applied to the sub menu. Sets the sub menu's background*/
 
- .jqx-menu-dropdown
 
- {
 
-     left: 100%;
 
-     margin: 0px;
 
-     padding: 0px;
 
-     right: 0;
 
-     overflow: hidden;
 
-     display: none;
 
-     float: none;
 
-     width: 150px;
 
-     border-style: solid;
 
-     border-width: 1px;
 
-     text-align: left;
 
-     padding: 2px;
 
- }
 
- /*applied to the sub menu's ul elements.*/
 
- .jqx-menu-dropdown ul
 
- {
 
-     left: 100%;
 
-     margin: 0px;
 
-     padding: 0px;
 
-     right: 0;
 
-     overflow: hidden;
 
-     border: none;
 
- }
 
- /*applied to the menu's ul elements.*/
 
- .jqx-menu ul
 
- {
 
-     left: 100%;
 
-     margin: 0px;
 
-     padding: 2px;
 
-     right: 0;
 
-     overflow: hidden;
 
-     background-color: transparent;
 
-     border: none;
 
- }
 
- /*applied to the menu's li elements.*/
 
- .jqx-menu li, .jqx-menu-dropdown li
 
- {
 
-     line-height: 1.3 !important;
 
- }
 
- /*applied to the top level menu items.*/
 
- .jqx-menu-item-top
 
- {
 
-     border: 1px solid transparent;
 
-     text-indent: 0;
 
-     list-style: none;
 
-     padding: 4px 8px 4px 8px;
 
-     left: 100%;
 
-     overflow: hidden;
 
-     color: inherit;
 
-     right: 0;
 
-     margin: 0px 1px 0px 1px;
 
-     cursor: pointer;
 
- }
 
- /*applied to the sub menu items.*/
 
- .jqx-menu-item
 
- {
 
-     border: 1px solid transparent;
 
-     text-indent: 0;
 
-     list-style: none;
 
-     padding: 4px 8px 4px 8px;
 
-     margin: 1px;
 
-     float: none;
 
-     overflow: hidden;
 
-     left: 100%;
 
-     color: inherit;
 
-     right: 0;
 
-     text-align: left;
 
-     cursor: pointer;
 
-     *color: expression(this.parentNode.currentStyle['color']);     
 
- }
 
- /*applied to a sub menu item when the mouse is over the item.*/
 
- .jqx-menu-item-hover
 
- {
 
-     color: inherit;
 
-     right: 0;
 
-     list-style: none;
 
-     margin: 1px;
 
-     left: 100%;
 
-     padding: 4px 8px 4px 8px;
 
-     text-align: left;
 
-     cursor: pointer;
 
-     *color: expression(this.parentNode.currentStyle['color']);     
 
- }
 
- /*applied to a top-level menu item when the mouse is over it.*/
 
- .jqx-menu-item-top-hover
 
- {
 
-     color: inherit;
 
-     right: 0;
 
-     list-style: none;
 
-     margin: 0px 1px 0px 1px;
 
-     left: 100%;
 
-     padding: 4px 8px 4px 8px;
 
-     top: 50%;
 
-     cursor: pointer;
 
-     *color: expression(this.parentNode.currentStyle['color']);     
 
- }
 
- /*applied to a sub menu item when its sub menu is opened.*/
 
- .jqx-menu-item-selected
 
- {
 
-     right: 0;
 
-     list-style: none;
 
-     margin: 1px;
 
-     left: 100%;
 
-     padding: 4px 8px 4px 8px;
 
-     text-align: left;
 
-     cursor: pointer;
 
-     *color: expression(this.parentNode.currentStyle['color']);     
 
- }
 
- /*applied to a disabled sub menu item.*/
 
- .jqx-menu-item-disabled
 
- {
 
- }
 
- /*applied to a top-level menu item when its sub menu is opened.*/
 
- .jqx-menu-item-top-selected
 
- {
 
-     right: 0;
 
-     list-style: none;
 
-     margin: 0px 1px 0px 1px;
 
-     left: 100%;
 
-     padding: 4px 8px 4px 8px;
 
-     cursor: pointer;
 
- }
 
- /*applied to the menu separator items.*/
 
- .jqx-menu-item-separator
 
- {
 
-     text-indent: 0;
 
-     background-color: #ddd;
 
-     border: none;
 
-     list-style: none;
 
-     height: 1px;
 
-     line-height:0 !important;
 
-     padding: 0px;
 
-     margin: 1px 2px 1px 2px;
 
-     float: none;
 
-     overflow: hidden;
 
-     left: 100%;
 
-     color: inherit;
 
-     right: 0;
 
-     font-size: 1px;
 
- }
 
- /*applied to a sub menu item when it has sub menu items. Displays right arrow icon.*/
 
- .jqx-menu-item-arrow-right
 
- {
 
-     background-image: url(images/icon-right.png);
 
- }
 
- /*applied to a sub menu item when it has sub menu items. Displays down arrow icon.*/
 
- .jqx-menu-item-arrow-down
 
- {
 
-     background-image: url(images/icon-down.png);
 
- }
 
- /*applied to a sub menu item when it has sub menu items. Displays up arrow icon.*/
 
- .jqx-menu-item-arrow-up
 
- {
 
-     background-image: url(images/icon-up.png);
 
- }
 
- .jqx-menu-minimized {
 
-     position: relative;
 
- }
 
- .jqx-menu-title {
 
-     position: relative;
 
-     float: right;
 
-     margin-top: 4px;
 
-     padding-top: 4px;
 
-     padding-right: 20px;
 
- }
 
- .jqx-menu-minimized-button
 
- {
 
-     background-image: url('images/icon-menu-minimized.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left center;
 
-     height: 24px;
 
-     width: 24px;
 
-     padding: 0px;
 
-     margin-left: 7px;
 
-     margin-top: 4px;
 
-     float : left;
 
- }
 
- .jqx-menu-ul-minimized {
 
-     display: normal!important;
 
-     width: auto !important;
 
- }
 
- .jqx-menu-ul-minimized ul {
 
-     margin-top: 0px;
 
-     margin-bottom: 0px;
 
-     padding-top: 0px;
 
-     padding-bottom: 0px;
 
-     -webkit-box-shadow: none !important;
 
-     -moz-box-shadow   : none !important;
 
-     -o-box-shadow     : none !important;
 
-     box-shadow        : none !important;
 
- }
 
- .jqx-menu-minimized li:last-child {
 
-     padding-bottom: 0px;
 
-     margin: 0px;
 
- }
 
- .jqx-menu-item-arrow-right, .jqx-menu-item-arrow-down, .jqx-menu-item-arrow-up, .jqx-menu-item-arrow-right {
 
-     background-position: 100% 50%;
 
-     background-repeat: no-repeat;
 
-     padding-right: 0px;
 
-     margin-right: -8px;
 
-     width: 17px;
 
-     height: 15px;
 
- }
 
- /*applied to a sub menu item when it has sub menu items. Displays left arrow icon.*/
 
- .jqx-menu-item-arrow-left
 
- {
 
-     padding-right: 0px;
 
-     padding-left: 5px;
 
-     width: 17px;
 
-     height: 15px;
 
-     background-image: url(images/icon-left.png);
 
-     background-position: 0 50%;
 
-     background-repeat: no-repeat;
 
- }
 
- /*applied to a sub menu item when it has sub menu items and its sub menu is opened. Displays right arrow icon.*/
 
- .jqx-menu-item-arrow-right-selected
 
- {
 
-     background-image: url(images/icon-right.png);
 
- }
 
- /*applied to a sub menu item when it has sub menu items and its sub menu is opened. Displays down arrow icon.*/
 
- .jqx-menu-item-arrow-down-selected
 
- {
 
-     background-image: url(images/icon-down.png);
 
- }
 
- /*applied to a sub menu item when it has sub menu items and its sub menu is opened. Displays up arrow icon.*/
 
- .jqx-menu-item-arrow-up-selected
 
- {
 
-     background-image: url(images/icon-up.png);
 
- }
 
- .jqx-menu-item-arrow-right-selected, .jqx-menu-item-arrow-up-selected, .jqx-menu-item-arrow-down-selected, .jqx-menu-item-arrow-top-right {
 
-     padding-right: 0px;
 
-     margin-right: -8px;
 
-     width: 17px;
 
-     height: 15px;
 
-     background-position: 100% 50%;
 
-     background-repeat: no-repeat;
 
- }
 
- /*applied to a top-level menu item when it has sub menu items. Displays right arrow icon.*/
 
- .jqx-menu-item-arrow-top-right
 
- {
 
-     background-image: url(images/icon-right.png);
 
- }
 
- /*applied to a sub menu item when it has sub menu items and its sub menu is opened. Displays left arrow icon.*/
 
- .jqx-menu-item-arrow-left-selected
 
- {
 
-     background-image: url(images/icon-left.png);
 
- }
 
- /*applied to a top-level menu item when it has sub menu items. Displays left arrow icon.*/
 
- .jqx-menu-item-arrow-top-left
 
- {
 
-     background-image: url(images/icon-left.png);
 
- }
 
- .jqx-menu-item-arrow-left-selected, .jqx-menu-item-arrow-top-left {
 
-     background-position: 0 50%;
 
-     background-repeat: no-repeat;
 
-     padding-right: 0px;
 
-     padding-left: 5px;
 
-     width: 17px;
 
-     height: 15px;
 
- }
 
- /*applied to the anchor elements*/
 
- .jqx-menu-item a:link, .jqx-menu-item a:visited, .jqx-menu-item a:hover, .jqx-menu-item-top a:link, .jqx-menu-item-top a:visited, .jqx-menu-item-top a:hover
 
- {
 
-     text-decoration: none;
 
-     color: inherit;
 
-     outline: none;
 
-     background-color: transparent;
 
-     *color: expression(this.parentNode.currentStyle['color']);     
 
- }
 
- /*applied to the menu widget when it is disabled.*/
 
- .jqx-menu-disabled
 
- {
 
-     cursor: default;
 
- }
 
- /*applied to the anchor elements of all disabled menu items.*/
 
- .jqx-menu-disabled a:link
 
- {
 
-     cursor: default;
 
-     text-decoration: none;
 
- }
 
- .jqx-menu-disabled a:visited
 
- {
 
-     cursor: default;
 
-     text-decoration: none;
 
- }
 
- .jqx-menu-disabled a:hover
 
- {
 
-     cursor: default;
 
- }
 
- .jqx-menu-dropdown
 
- {
 
-     right: -1px;
 
- }
 
- /*jqxtree Style*/
 
- .jqx-tree
 
- {
 
-     left: 100%;
 
-     right: 0;
 
-     float: none;
 
-     margin: 0px;
 
-     border-style: solid;
 
-     border-width: 1px;
 
-     padding: 0px;
 
-     overflow: hidden;
 
-     text-align: left;
 
-     outline: none;
 
-     white-space: nowrap;
 
-     line-height: 14px !important;
 
- }
 
- /*applied to the jqxTree root UL element.*/
 
- .jqx-tree-dropdown-root
 
- {
 
-     left: 100%;
 
-     padding: 0px 5px 0px 5px;
 
-     right: 0;
 
-     display: block;
 
-     float: none;
 
-     background-color: transparent;
 
-     border-style: solid;
 
-     border-width: 0px;
 
-     border-color: #fff;
 
-     text-align: left;
 
-     outline: none;
 
-     white-space: nowrap;
 
-     margin: 0px;
 
- }
 
- .jqx-tree-dropdown-root-rtl {
 
-     padding: 0px 5px 0px 0px;
 
-     text-align: right;
 
-     float: right;
 
-     margin: 0px;
 
- }
 
- /*applied to the jqxTree UL elements.*/
 
- .jqx-tree-dropdown
 
- {
 
-     left: 100%;
 
-     margin: 0px;
 
-     padding: 0px 0px 0px 10px;
 
-     right: 0;
 
-      display: block;
 
-     float: none;
 
-     background-color: transparent;
 
-     border-style: solid;
 
-     border-width: 0px;
 
-     border-color: transparent;
 
-     text-align: left;
 
-     outline: none;
 
- }
 
- .jqx-tree-dropdown-rtl {
 
-    padding: 3px 0px 0px 0px;
 
-    text-align: right;
 
- }
 
- /*applied to a tree item.*/
 
- .jqx-tree-item
 
- {
 
-     border: 1px solid transparent;
 
-     text-indent: 0;
 
-     list-style: none;
 
-     padding: 3px;
 
-     margin: 0px;
 
-     float: none;
 
-     overflow: hidden;
 
-     left: 100%;
 
-     right: 0;
 
-     text-align: left;
 
-     cursor: default;
 
-     text-decoration: none;
 
- }
 
- /*applied to the jqxTree LI elements.*/
 
- .jqx-tree-item-li
 
- {
 
-     text-indent: 0;
 
-     background-color: transparent;
 
-     border: 0px solid transparent;
 
-     list-style: none;
 
-     left: 100%; 
 
-     right: 0;
 
-     text-align: left;
 
-     outline: none;
 
-     margin: 0px;
 
-     margin-top: 1px;
 
-     padding: 0px;
 
- }
 
- /*applied to the last LI elements in an UL element.*/
 
- .jqx-tree-item-u-last
 
- {
 
-     margin: 0px 0px 0px 0px;
 
- }
 
- /*applied to a tree item when the mouse is over the item.*/
 
- .jqx-tree-item-hover
 
- {
 
-     color: inherit;
 
-     right: 0;
 
-     padding: 3px;
 
-     margin: 0px;
 
-     list-style: none;
 
-     left: 100%;
 
-     cursor: pointer;
 
-     text-decoration: none;
 
- }
 
- /*applied to a tree item when the item is selected.*/
 
- .jqx-tree-item-selected
 
- {
 
-     color: inherit;
 
-     right: 0;
 
-     padding: 3px;
 
-     margin: 0px;
 
-     list-style: none;
 
-     left: 100%;
 
-     cursor: pointer;
 
-     text-decoration: none;
 
- }
 
- .jqx-tree-item-rtl {
 
-     text-align: right;
 
- }
 
- .jqx-tree-item-li-rtl {
 
-     text-align: right;
 
- }
 
- /*applied to the anchor element of a tree item.*/
 
- .jqx-tree-item a:link, .jqx-tree-item a:visited
 
- {
 
-     text-indent: 0;
 
-     background-color: transparent;
 
-     border: 0px solid transparent;
 
-     list-style: none;
 
-     padding: 0px;
 
-     margin: 0px;
 
-     float: none;
 
-     overflow: hidden;
 
-     left: 100%;
 
-     color: inherit;
 
-     right: 0;
 
-     text-align: left;
 
-     cursor: pointer;
 
-     text-decoration: none;
 
-     outline: none;
 
- }
 
- .jqx-tree-item-selected, .jqx-tree-item-hover a:hover
 
- {
 
-     color: inherit;
 
- }
 
- .jqx-tree-item-selected, .jqx-tree-item-hover a:visited
 
- {
 
-     color: inherit;
 
- }
 
- /*applied to a tree item when the item is disabled.*/
 
- .jqx-tree-item-disabled
 
- {
 
- }
 
- /*applied to a tree item when it has sub items and is collapsed. Displays an arrow icon next to the item.*/
 
- .jqx-tree-item-arrow-collapse, .jqx-tree-item-arrow-collapse-hover
 
- {
 
-     padding-right: 0px;
 
-     width: 17px;
 
-     height: 17px;
 
-     background-image: url(images/icon-right.png);
 
-     background-position: 100% 50%;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
- }
 
- .jqx-tree-item-arrow-collapse-rtl, .jqx-tree-item-arrow-collapse-hover-rtl {
 
-     background-image: url(images/icon-left.png);
 
- }
 
- /*applied to a tree item when it has sub items and is expanded. Displays an arrow icon next to the item.*/
 
- .jqx-tree-item-arrow-expand, .jqx-tree-item-arrow-expand-hover
 
- {
 
-     padding-right: 0px;
 
-     width: 17px;
 
-     height: 17px;
 
-     background-image: url(images/icon-down.png);
 
-     background-position: 100% 50%;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
- }
 
- /*applied to the tree when it is disabled.*/
 
- .jqx-tree-disabled
 
- {
 
-     cursor: default;
 
- }
 
- /*applied to the anchor elements in a tree when it is disabled.*/
 
- .jqx-tree-disabled a:link
 
- {
 
-     cursor: default;
 
-     text-decoration: none;
 
- }
 
- .jqx-tree-disabled a:visited
 
- {
 
-     cursor: default;
 
-     text-decoration: none;
 
- }
 
- .jqx-tree-disabled a:hover
 
- {
 
-     cursor: default;
 
- }
 
- /*jqxTabs*/
 
- .jqx-tabs
 
- {
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
-     padding: 0px;
 
-     overflow: hidden;
 
-     background: transparent;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the tab close button.*/
 
- .jqx-tabs-close-button
 
- {
 
-     outline: none;
 
-     background-image: url(images/close.png);
 
-     cursor: pointer;
 
-     margin: 0 0 0 0;
 
-     padding: 0 0 0 0;
 
-     position: relative;
 
-     left: 5px;
 
- }
 
- /*applied to the tab close button when the tab is selected.*/
 
- .jqx-tabs-close-button-selected
 
- {
 
-     outline: none;
 
-     background-image: url(images/close.png);
 
-     cursor: pointer;
 
-     margin: 0 0 0 0;
 
-     padding: 0 0 0 0;
 
- }
 
- /*applied to the tab close button when the mouse is over the tab.*/
 
- .jqx-tabs-close-button-hover
 
- {
 
-     outline: none;
 
-     background-image: url(images/close.png);
 
-     cursor: pointer;
 
-     margin: 0 0 0 0;
 
-     padding: 0 0 0 0;
 
- }
 
- /*applied to the tab's left scroll arrow.*/
 
- .jqx-tabs-arrow-left
 
- {
 
-     outline: none;
 
-     position: relative;
 
-     z-index: 15;
 
-     float: left;
 
-     cursor: pointer;
 
-     margin: 0 0 0 0;
 
-     padding: 0 0 0 0;
 
-     background-image: url('images/icon-left.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- /*applied to the tab's right scroll arrow.*/
 
- .jqx-tabs-arrow-right
 
- {
 
-     outline: none;
 
-     position: relative;
 
-     z-index: 15;
 
-     background-image: url('images/icon-right.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
-     float: left;
 
-     cursor: pointer;
 
-     margin: 0 0 0 0;
 
-     padding: 0 0 0 0;
 
- }
 
- .jqx-tabs-arrow-background
 
- {
 
-     background: #eeeeee;
 
- }
 
- /*applied to the tab's title.*/
 
- .jqx-tabs-title
 
- {
 
-     outline: none;
 
-     display: block;
 
-     cursor: pointer;
 
-     white-space: nowrap;
 
-     left: 100%;
 
-     right: 0;
 
-     text-indent: 0px;
 
-     list-style: none;
 
-     border: 1px solid transparent;
 
-     margin: 0px 2px 0px 0px;
 
-     overflow: hidden;
 
-     z-index: 1;
 
-     padding-left: 13px;
 
-     padding-right: 13px;
 
-     padding-bottom: 5px;
 
-     padding-top: 5px;
 
-     background: transparent;
 
-     height: auto;
 
-     position: relative; 
 
- }
 
- .jqx-tabs-title-bottom
 
- {
 
- }
 
- .jqx-tabs-title a:link
 
- {
 
-     color: inherit;
 
-     *color: expression(this.parentNode.currentStyle['color']);    
 
-     text-decoration: none;
 
- }
 
- .jqx-tabs-title a:hover
 
- {
 
-     color: inherit;
 
-     *color: expression(this.parentNode.currentStyle['color']);
 
-     text-decoration: none;
 
- }
 
- .jqx-tabs-title a:active
 
- {
 
-     color: inherit;
 
-     *color: expression(this.parentNode.currentStyle['color']);
 
-     text-decoration: none;
 
- }
 
- .jqx-tabs-title a:visited
 
- {
 
-     color: inherit;
 
-     *color: expression(this.parentNode.currentStyle['color']);
 
-     text-decoration: none;
 
- }
 
- /*applied to the tab's title when the tab is selected and the jqxTab's position property is set to 'top' .*/
 
- .jqx-tabs-title-selected-top
 
- {
 
-     z-index: 99;
 
-     outline: none;
 
-     border-top: 1px solid transparent;
 
-     border-left: 1px solid transparent;
 
-     border-right: 1px solid transparent;
 
-     border-bottom: 1px solid #fff;
 
-     background-color: #fff;
 
-     padding-bottom: 7px;
 
- }
 
- /*applied to the tab's title when the tab is selected and the jqxTab's position property is set to 'bottom' .*/
 
- .jqx-tabs-title-selected-bottom
 
- {
 
-     outline: none;
 
-     border-top: 1px solid #fff;
 
-     border-left: 1px solid transparent;
 
-     border-right: 1px solid transparent;
 
-     border-bottom: 1px solid transparent;
 
-     padding-top: 7px;
 
-     padding-bottom: 5px;
 
-     margin-top: -2px;
 
-     background-color: #fff;
 
- }
 
- /*applied to the tab's title when the tab is hovered and the jqxTab's position property is set to 'top' .*/
 
- .jqx-tabs-title-hover-top
 
- {
 
-     outline: none;
 
-     border: 1px solid transparent;    
 
-     padding-bottom: 5px;
 
- }
 
- /*applied to the tab's title when the tab is hovered and the jqxTab's position property is set to 'bottom' .*/
 
- .jqx-tabs-title-hover-bottom
 
- {
 
-     outline: none;
 
-     border: 1px solid transparent;
 
-     padding-top: 5px;
 
- }
 
- /*applied to the tab's title when the tab is disabled.*/
 
- .jqx-tabs-title-disable
 
- {
 
-  
 
- }
 
- /*applied to the tab's header.*/
 
- .jqx-tabs-header
 
- {
 
-     padding-left: 0px;
 
-     padding-right: 0px;
 
-     padding-top: 3px;
 
-     padding-bottom: 1px;
 
-     margin: 0px;
 
-     border-top: 0px solid transparent;
 
-     border-left: 0px solid transparent;
 
-     border-right: 0px solid transparent;
 
-     border-bottom: 1px solid #aaa;
 
-     background: #eeeeee;
 
- }
 
- /*applied to the tab's header when the position is bottom.*/
 
- .jqx-tabs-header-bottom
 
- {
 
-     padding-top: 1px;
 
-     padding-bottom: 3px;
 
-     border-top: 0px solid #aaa;
 
-     border-left: 0px solid transparent;
 
-     border-right: 0px solid transparent;
 
-     border-bottom: 1px solid transparent;
 
- }
 
- /*applied to the tab's header when the tab is collapsed.*/
 
- .jqx-tabs-header-collapsed
 
- {
 
-     border: 1px solid #aaa;
 
- }
 
- /*applied to the tab's header when the position is bottom and tab is collapsed.*/
 
- .jqx-tabs-header-collapsed-bottom
 
- {
 
-     border: 1px solid #aaa;
 
- }
 
- .jqx-tabs-collapsed
 
- {
 
-     border: 0px solid transparent;
 
- }
 
- .jqx-tabs-collapsed-bottom
 
- {
 
-     border: 0px solid transparent;
 
- }
 
- /*applied to the tab's selection tracker container element.*/
 
- .jqx-tabs-selection-tracker-container
 
- {
 
-     outline: none;
 
-     position: relative;
 
-     text-indent: 0px;
 
-     margin: 0 0 0 0;
 
-     padding: 0 0 0 0;
 
-     width: 100%;
 
-     background: transparent;
 
-     height: 0px;
 
- }
 
- /*applied to the tab's selection tracker when the jqxTab's position property is set to 'top'.*/
 
- .jqx-tabs-selection-tracker-top
 
- {
 
-     border-top: 1px solid transparent;
 
-     border-left: 1px solid transparent;
 
-     border-right: 1px solid transparent;
 
-     padding-bottom: 2px;
 
-     background-color: #fff;
 
-     outline: none;
 
-     position: absolute;
 
-     z-index: 10;
 
- }
 
- /*applied to the tab's selection tracker when the jqxTab's position property is set to 'bottom'.*/
 
- .jqx-tabs-selection-tracker-bottom
 
- {
 
-     border-left: 1px solid transparent;
 
-     border-right: 1px solid transparent;
 
-     border-bottom: 1px solid transparent;
 
-     background-color: #fff;
 
-     outline: none;
 
-     position: absolute;
 
-     z-index: 10;
 
-     margin-top: -1px;
 
-     padding-bottom: 2px;
 
- }
 
- /*applied to the tab's content element which represents a DIV element.*/
 
- .jqx-tabs-content
 
- {
 
-     outline: none;
 
-     border-bottom: 0px solid transparent;
 
-     border-left: 0px solid transparent;
 
-     border-right: 0px solid transparent;
 
-     border-top: 0px solid transparent;
 
-     text-align: left;
 
-     clear: both;
 
- }
 
- .jqx-tabs-content-element
 
- {
 
-     height: 100%;
 
-     overflow: auto;
 
- }
 
- /*jqxCheckBox*/
 
- .jqx-checkbox
 
- {
 
-     text-align: left;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
-     white-space: nowrap;
 
-     text-overflow: ellipsis;
 
- }
 
- /*applied to the check box.*/
 
- .jqx-checkbox-default
 
- {
 
-     text-align: left;
 
-     float: left;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
-     outline: none;
 
-     margin: 0px 3px 0px 3px;
 
- }
 
- /*applied to the check box when the mouse cursor is over it.*/
 
- .jqx-checkbox-hover
 
- {
 
-     cursor: pointer;
 
-     float: left;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
-     outline: none;
 
-     margin: 0px 3px 0px 3px;
 
- }
 
- /*applied to the widget when it is disabled.*/
 
- .jqx-checkbox-disabled
 
- {
 
-     cursor: default;
 
-     background: transparent;
 
-     padding: 0px;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0px 0px 0px 0px;
 
- }
 
- /*applied to the check box when the widget is disabled.*/
 
- .jqx-checkbox-disabled-box
 
- {
 
-     float: left;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
-     outline: none;
 
-     margin: 0px 3px 0px 3px;
 
- }
 
- /*applied to the check box when it is checked. Displays a check icon.*/
 
- .jqx-checkbox-check-checked
 
- {
 
-     float: left;
 
-     background: transparent url(images/check_black.png) center center no-repeat;
 
-     padding: 0px;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the check box when the widget is disabled. Displays a disabled check icon.*/
 
- .jqx-checkbox-check-disabled
 
- {
 
-     float: left;
 
-     background: transparent url(images/check_disabled.png) center center no-repeat;
 
-     padding: 0px;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the check box when its state is indeterminate.*/
 
- .jqx-checkbox-check-indeterminate
 
- {
 
-     float: left;
 
-     background: transparent url(images/check_indeterminate_black.png) center center no-repeat;
 
-     padding: 0px;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the check box when its state is indeterminate and it is disabled.*/
 
- .jqx-checkbox-check-indeterminate-disabled
 
- {
 
-     float: left;
 
-     background: transparent url(images/check_indeterminate_disabled.png) center center no-repeat;
 
-     padding: 0px;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the check box when its in rtl mode.*/
 
- .jqx-checkbox-rtl {
 
-     float: right;
 
- }
 
- /*jqxRadioButton*/
 
- .jqx-radiobutton
 
- {
 
-     text-overflow: ellipsis;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
-     white-space: nowrap;
 
- }
 
- /*applied to the radio button.*/
 
- .jqx-radiobutton-default
 
- {
 
-     cursor: pointer;
 
-     float: left;
 
-     background: transparent url(images/roundbg_classic_normal.png) left center scroll repeat-x;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
-     outline: none;
 
-     margin: 1px 3px 0px 3px;
 
-     -moz-border-radius: 100%;
 
-     -webkit-border-radius: 100%;
 
-     border-radius: 100%;
 
- }
 
- /*applied to the radio button when the mouse is over it.*/
 
- .jqx-radiobutton-hover
 
- {
 
-     cursor: pointer;
 
-     float: left;
 
-     background: transparent;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
-     outline: none;
 
-     margin: 1px 3px 0px 3px;
 
-     -moz-border-radius: 100%;
 
-     -webkit-border-radius: 100%;
 
-     border-radius: 100%;
 
- }
 
- /*applied to the radio button when it is disabled.*/
 
- .jqx-radiobutton-disabled
 
- {
 
-     cursor: default;
 
- }
 
- /*applied to the radio button's radio icon when it is disabled.*/
 
- .jqx-radiobutton-disabled-box
 
- {
 
- }
 
- /*applied to the radio button when it is checked.*/
 
- .jqx-radiobutton-check-checked
 
- {
 
-     float: left;
 
-     background: transparent url(images/roundbg_check_black.png) left top no-repeat;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
-     -moz-border-radius: 100%;
 
-     -webkit-border-radius: 100%;
 
-     border-radius: 100%;
 
-     width: 7px; 
 
-     height: 7px;
 
-     margin-left: 2px;
 
-     margin-top: 2px;
 
- }
 
- /*applied to the radio button when it is checked and disabled.*/
 
- .jqx-radiobutton-check-disabled
 
- {
 
- }
 
- /*applied to the radio button when it is in indeterminate state.*/
 
- .jqx-radiobutton-check-indeterminate
 
- {
 
-     float: left;
 
-     background: transparent url(images/roundbg_check_indeterminate.png) left top no-repeat;
 
-     padding: 0px;
 
-     border: none;
 
-     outline: none;
 
-     margin: 0 0 0 0;
 
-     -moz-border-radius: 100%;
 
-     -webkit-border-radius: 100%;
 
-     border-radius: 100%; 
 
-     width: 6px; 
 
-     height: 6px;
 
-     margin-left: 2px;
 
-     margin-top: 2px;  
 
- }
 
- /*applied to the radio button when it is in indeterminate state and disabled.*/
 
- .jqx-radiobutton-check-indeterminate-disabled
 
- {
 
- }
 
- /*applied to the radio button when its in rtl mode.*/
 
- .jqx-radiobutton-rtl {
 
-     float: right;
 
- }
 
- /*jqxRating*/
 
- .jqx-rating
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     outline: none;
 
-     overflow: hidden;
 
- }
 
- .jqx-rating-image
 
- {
 
-     border-width: 0px;
 
- }
 
- .jqx-rating-image-default
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     outline: none;    
 
-     background-color: transparent;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
-     background-image: url(images/star.png);
 
-     overflow: hidden;
 
- }
 
- /*applied to the rating when it is hovered.*/
 
- .jqx-rating-image-hover
 
- {
 
-     background-color: transparent;
 
-     padding: 0px;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
-     background-image: url(images/star_hover.png);
 
-     overflow: hidden;
 
- }
 
- /*applied to the rating when it is disabled.*/
 
- .jqx-rating-image-backward
 
- {
 
-     background-color: transparent;
 
-     padding: 0px;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
-     background-image: url(images/star_disabled.png);
 
-     overflow: hidden;
 
- }
 
- /*jqxCalendar Style*/
 
- .jqx-calendar
 
- {
 
-     border: 1px solid transparent;
 
-     -webkit-appearance: none;
 
-     overflow: hidden;
 
-     outline: none;
 
-     padding: 0px;
 
-     margin: 0 0 0 0;
 
-     cursor: default;
 
-     border-collapse: separate;
 
- }
 
- .jqx-calendar td {
 
-     padding-top: 0px;
 
-     padding-bottom: 0px;
 
-     border-collapse: separate;
 
-     border-spacing: 1px;
 
-     font-size: 13px;
 
-     line-height: 1.231;
 
- }
 
- .jqx-calendar table {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border-collapse: separate;
 
-     border-spacing: 1px;
 
-     font-size: 13px;
 
-     line-height: 1.231;
 
- }
 
- /*applied to the calendar's row header. This header displays the week numbers.*/
 
- .jqx-calendar-row-header
 
- {
 
-     outline: none;
 
-     border: 0px solid #f2f2f2;
 
-     padding: 0;
 
-     margin: 0 0 0 0;
 
-     cursor: default;
 
- }
 
- /*applied to the calendar's column. This header displays the day names.*/
 
- .jqx-calendar-column-header
 
- {
 
-     outline: none;
 
-     text-align: right;
 
-     padding: 3px;
 
-     border-top: none;
 
-     border-bottom: 1px solid transparent;
 
-     border-left: none;
 
-     border-right: none;
 
-     margin: 0 0 0 0;
 
-     cursor: default;
 
- }
 
- /*applied to the calendar's top-left header. This header is displayed before the day names and above the week numbers.*/
 
- .jqx-calendar-top-left-header
 
- {
 
-     outline: none;
 
-     border: 0px solid #f2f2f2;
 
-     margin: 0 0 0 0;
 
-     cursor: default;
 
- }
 
- /*applied to the calendar's navigation buttons.*/
 
- .jqx-calendar-title-navigation
 
- {
 
-     cursor: pointer;
 
-     background-color: transparent; 
 
-     margin: 0; 
 
-     padding: 0; 
 
-     border: none; 
 
-     width: 25px;
 
-     height: 25px;
 
- }
 
- /*applied to the month table*/
 
- .jqx-calendar-month
 
- {
 
-     margin: 0; padding: 0;
 
-     border: none;
 
-     width: 100%; 
 
- }
 
- /*applied to the calendar's title content.*/
 
- .jqx-calendar-title-content
 
- {
 
-     cursor: pointer;
 
-     text-align: center;
 
- }
 
- /*applied to the calendar's navigation title.*/
 
- .jqx-calendar-title-header
 
- {
 
-     border-left: none;
 
-     border-top: none;
 
-     border-right: none;
 
-     border-bottom-width: 1px;
 
-     border-bottom-style: solid;
 
-     margin: 0 0 0 0;
 
- }
 
- .jqx-calendar-title-header td {
 
-     padding-left: 0px;
 
-     padding-right: 0px;
 
-     border: none;
 
- }
 
- /*applied to the calendar's navigation title when the calendar is disabled.*/
 
- .jqx-calendar-title-header-disabled
 
- {   
 
-     border-bottom-width: 1px;
 
-     border-bottom-style:solid; 
 
-     margin: 0 0 0 0;    
 
-     border-left: 0px solid transparent;
 
-     border-right: 0px solid transparent;
 
-     border-top: 0px solid transparent;    
 
-     
 
- }
 
- /*applied to a calendar cell.*/
 
- .jqx-calendar-cell
 
- {
 
-     border: 1px solid transparent;
 
-     margin: 0px;
 
-     outline: none;
 
-     text-align: center;
 
-     padding: 1px;
 
-     cursor: pointer;
 
-     background-color: transparent;
 
- }
 
- .jqx-calendar-cell td
 
- {
 
-     padding: 0;
 
-     margin: 0;
 
- }
 
- /*applied to a calendar cell in decade and year views.*/
 
- .jqx-calendar-cell-decade, .jqx-calendar-cell-year {
 
-    text-align: center;
 
-  }
 
- .jqx-calendar .jqx-fill-state-normal
 
- {
 
-     background: transparent;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to a calendar cell when the cell is hidden. A cell can be hidden when the showOtherMonthDays property is false and the calendar hides the cells with dates from the other months*/
 
- .jqx-calendar-cell-hidden
 
- {
 
-     margin: 0 0 0 0;
 
-     visibility: hidden;
 
-     cursor: default;
 
- }
 
- /*applied to a calendar cell when the cell's date is a weekend date.*/
 
- .jqx-calendar-cell-weekend
 
- {
 
-     color: #898989 !important;
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to a calendar cell when the cell's date is a special date(holiday, vacation, birthay. See the SpecialDates demo).*/
 
- .jqx-calendar-cell-specialDate
 
- {
 
-     color: #FF0000 !important;
 
-     background-color: transparent;
 
-     border: 1px solid #fff;
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- .jqx-calendar-cell-selected-invalid
 
- {
 
-     color: #FFF !important;
 
-     background: #FF0000 !important;
 
-     border: 1px solid #FF0000 !important;
 
- }
 
- /*applied to a calendar cell when the cell's date is the today date.*/
 
- .jqx-calendar-cell-today
 
- {
 
-     color: #898989;
 
-     background-color: #ffffdb;
 
-     border: 1px solid #fdc066;
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to a calendar cell when the cell is hovered.*/
 
- .jqx-calendar-cell-hover
 
- {
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to a calendar cell when the cell is selected.*/
 
- .jqx-calendar-cell-selected
 
- {
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to a calendar cell when the cell's date represents a date from the previous or next month.*/
 
- .jqx-calendar-cell-othermonth
 
- {
 
-     color: #898989 !important;
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to a calendar cell when the calendar is disabled.*/
 
- .jqx-calendar-cell-disabled
 
- {
 
-     color: #ccc;
 
- }
 
- /*applied to a calendar cell when the cell is from the row header that displays the week numbers.*/
 
- .jqx-calendar-row-cell
 
- {
 
-     outline: none;
 
-     text-align: center;
 
-     border: 1px solid transparent;
 
-     margin: 0 0 0 0;
 
-     cursor: default;
 
- }
 
- /*applied to a calendar cell when the cell is from the row header that displays the week numbers and the calendar is disabled.*/
 
- .jqx-calendar-row-cell-disabled
 
- {
 
- }
 
- .jqx-calendar-footer
 
- {
 
-     margin: 5px;
 
-     color: inherit;
 
-     font-size: 13px;
 
- }
 
- .jqx-calendar-title-container
 
- {
 
-     overflow: hidden;
 
- }
 
- /*applied to a calendar cell when the cell is from the column header that displays the day names.*/
 
- .jqx-calendar-column-cell
 
- {
 
-     overflow: hidden;
 
-     text-align: center;
 
-     outline: none;
 
-     font-weight: normal;
 
-     padding: 1px;
 
-     border: 1px solid transparent;
 
-     margin: 0 0 0 0;
 
-     cursor: default;
 
- }
 
- /*applied to a calendar cell when the cell is from the column header that displays the day names and the calendar is disabled.*/
 
- .jqx-calendar-column-cell-disabled
 
- {
 
- }
 
- /*applied to the calendar's cell area element.*/
 
- .jqx-calendar-view
 
- {
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     padding: 0px;
 
-     border: 0px solid #fff;
 
-     margin: 0 0 0 0;
 
-     cursor: default;
 
- }
 
- /*jqxExpander and jqxNavigationBar Style*/
 
- .jqx-expander
 
- {
 
- }
 
- /*applied to the Expander's header and content*/
 
- .jqx-expander-header, .jqx-expander-content
 
- {
 
-     border-left-width: 1px;
 
-     border-right-width: 1px;
 
-     border-left-style: solid;
 
-     border-right-style: solid;
 
-     padding-top: 5px;
 
-     padding-bottom: 5px;
 
-     outline: 0;
 
- }
 
- /*applid to the content of the expander header.*/
 
- .jqx-expander-header-content
 
- {
 
-     padding-left: 3px;
 
- }
 
- /*applid to the content of the expander header.*/
 
- .jqx-expander-header-content-rtl
 
- {
 
-     padding-right: 3px;
 
- }
 
-  .jqx-expander-content{padding-top: 0px;padding-bottom:0px; overflow: auto; outline: 0;}
 
- /*applied to the Expander's header and its content when it is on the top of the header*/
 
- .jqx-expander-header, .jqx-expander-content-top
 
- {
 
-     border-top-width: 1px;
 
-     border-top-style: solid;
 
- }
 
- /*applied to the Expander's header and its content when it is on the bottom of the header*/
 
- .jqx-expander-header, .jqx-expander-content-bottom
 
- {
 
-     border-bottom-width: 1px;
 
-     border-bottom-style: solid;
 
- }
 
- /*applied to the Expander's header*/
 
- .jqx-expander-header
 
- {
 
-     cursor: pointer;
 
-     overflow: hidden;
 
- }
 
- /*applied to the Expander's header when the expander is disabled or the toggleMode is "none"*/
 
- .jqx-expander-header-disabled
 
- {
 
-     cursor: default;
 
- }
 
- /*applied to the Expander's arrow*/
 
- .jqx-expander-arrow
 
- {
 
-     width: 17px;
 
-     height: 17px;
 
-     position: relative;
 
- }
 
- /*applied to the Expander's content if it is empty*/
 
- .jqx-expander-content-empty
 
- {
 
-     border-width: 0px;
 
-     padding: 0px;
 
- }
 
- /*applied to jqxNavigationBar. The NavigationBar internally uses jqxExpander's classes and inherits all header and content style settings from the Expander.*/
 
- .jqx-navigationbar
 
- {
 
-     border: none;
 
-     margin: 0px;
 
-     -webkit-appearance: none;
 
-     outline: none;
 
- }
 
- /*jqxPanel Style*/
 
- .jqx-panel
 
- {
 
-     border: 1px solid transparent;
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     padding: 0px;
 
-     margin: 0px;
 
-     cursor: default;
 
-     overflow: hidden;
 
- }
 
- /*applied to the Panel's element displayed when the horizontal and vertical scrollbars are visible and the element is positioned below the vertical scrollbar and on the right
 
- of the horizontal scrollbar.*/
 
- .jqx-panel-bottomright
 
- {
 
-   
 
- }
 
- /*applied to the DropDownButton's Popup.*/
 
- .jqx-dropdownbutton-popup {
 
-    -webkit-appearance: none;
 
-     outline: none;
 
-     border: 1px solid transparent;
 
-  }
 
- .jqx-listbox
 
- {
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     border: 1px solid transparent;
 
-     padding: 0px;
 
-     margin: 0px;
 
-     cursor: default;
 
-     overflow: hidden;
 
- }
 
- /*applied to the ListBox's element displayed when the horizontal and vertical scrollbars are visible and the element is positioned below the vertical scrollbar and on the right
 
- of the horizontal scrollbar.*/
 
- .jqx-listbox-bottomright
 
- {
 
- }
 
- /*applied to the ListBox's groups.*/
 
- .jqx-listitem-state-group
 
- {
 
-     white-space: nowrap;
 
-     padding: 4px 2px 4px 2px;
 
-     background: transparent;
 
-     font-weight: bold;
 
-     text-align: left;
 
-     outline: none;
 
-     overflow: hidden;
 
-     vertical-align: middle;
 
-     cursor: default;
 
- }
 
- /*applied to a list item in default state.*/
 
- .jqx-listitem-state-normal
 
- {
 
-     white-space: nowrap;
 
-     padding: 3px;
 
-     margin: 1px;
 
-     border: 1px solid transparent;
 
-     outline: none;
 
-     visibility: inherit;
 
-     display: inherit;
 
-     text-align: left;
 
-     overflow: hidden;
 
-     position: absolute;
 
-     left: 0;
 
-     top: 0;
 
-     cursor: default;
 
- }
 
- /*applied to a list item in hovered state.*/
 
- .jqx-listitem-state-hover
 
- {
 
-     white-space: nowrap;
 
-     background: transparent;
 
-     padding: 3px 3px 3px 3px;
 
-     margin: 1px;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to a list item when the item is selected.*/
 
- .jqx-listitem-state-selected
 
- {
 
-     white-space: nowrap;
 
-     padding: 3px 3px 3px 3px;
 
-     margin: 1px;
 
-     border: 1px solid transparent;
 
- }
 
- .jqx-listbox-feedback
 
- {
 
-     height: 1px;
 
-     border-top: 1px dashed #000;
 
- }
 
- .jqx-listitem-element
 
- {
 
-   -ms-touch-action: none;
 
-   border: none; 
 
-   width:100%; 
 
-   height: 100%; 
 
-   align:left; 
 
-   valign:top; 
 
-   position: absolute;
 
- }
 
- /*jqxComboBox Style*/
 
- /*applied to the jqxComboBox's content which displays the text.*/
 
- .jqx-combobox-content
 
- {
 
-     padding: 0px;
 
-     overflow: hidden;
 
-     padding-left: 0px;
 
-     padding-top: 0px;
 
-     padding-bottom: 0px;
 
-     padding-right: 0px;
 
-     margin: 0px;
 
-     text-align: left;
 
-     vertical-align: middle;
 
-     white-space: nowrap;
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     border: none;
 
-     -moz-border-radius-topleft: 3px;
 
-     -webkit-border-top-left-radius: 3px;
 
-     border-top-left-radius: 3px;
 
-     -moz-border-radius-bottomleft: 3px;
 
-     -webkit-border-bottom-left-radius: 3px;
 
-     border-bottom-left-radius: 3px;
 
-     border-right: 1px solid transparent; 
 
-     -moz-background-clip: padding; background-clip: padding-box; -webkit-background-clip: padding-box;    
 
- }
 
- .jqx-combobox-content-rtl {
 
-     border: none;
 
-     -moz-border-radius-topleft: 0px;
 
-     -webkit-border-top-left-radius: 0px;
 
-     border-top-left-radius: 0px;
 
-     -moz-border-radius-bottomleft: 0px;
 
-     -webkit-border-bottom-left-radius: 0px;
 
-     border-bottom-left-radius: 0px;
 
-      -moz-border-radius-topleft: 3px;
 
-     -webkit-border-top-left-radius: 0px;
 
-     border-top-right-radius: 3px;
 
-     -moz-border-radius-bottomright: 3px;
 
-     -webkit-border-bottom-right-radius: 0px;
 
-     border-bottom-right-radius: 3px;
 
-     border-right: none;
 
-     border-left: 1px solid transparent; 
 
-     -moz-background-clip: padding; background-clip: padding-box; -webkit-background-clip: padding-box;  
 
- }
 
- /*applied to the ComboBox's input field.*/
 
- .jqx-combobox-input
 
- {
 
-     -webkit-appearance: none;
 
-     -webkit-border-radius: 0px;
 
-     padding: 0 0 0 0;
 
-     outline: none;
 
-     border: 0px solid #aaa;
 
-     -moz-background-clip: padding; background-clip: padding-box; -webkit-background-clip: padding-box;
 
- }
 
- .jqx-combobox-input::-ms-clear {
 
-     display: none;
 
- }
 
- /*applied to the ComboBox's content when the widget is disabled.*/
 
- .jqx-combobox-content-disabled
 
- {
 
-     color: #AAA;
 
- }
 
- /*applied to the ComboBox's arrow button.*/
 
- .jqx-combobox-arrow-normal, .jqx-action-button
 
- {
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     overflow: hidden;
 
-     margin: 0 0 0 0;
 
-     border: none;
 
-     cursor: pointer;
 
- }
 
- /*applied to the ComboBox's arrow button*/
 
- .jqx-combobox-arrow-hover, .jqx-combobox-arrow-selected
 
- {
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     overflow: hidden;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the ComboBox in normal state.*/
 
- .jqx-combobox-state-normal
 
- {
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     border: 1px solid transparent;
 
-     overflow: hidden;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the ComboBox when the mouse is over the widget.*/
 
- .jqx-combobox-state-hover
 
- {
 
-     overflow: hidden;
 
-     border: 1px solid transparent;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the ComboBox when the popup ListBox is shown.*/
 
- .jqx-combobox-state-selected
 
- {
 
-     overflow: hidden;
 
-     border: 1px solid transparent;
 
-     margin: 0 0 0 0;
 
- }
 
- /*applied to the ComboBox when the widget is focused.*/
 
- .jqx-combobox-state-focus
 
- {
 
-     border: 1px solid transparent;
 
- }
 
- .jqx-combobox-multi-item {
 
-     padding: 1px 3px;
 
-     margin: 2px;
 
-     white-space: nowrap;
 
-     border-style: solid;
 
-     font-weight: normal;  
 
-     overflow: hidden;
 
-     text-align: left;
 
- }
 
- .jqx-combobox-multi-item a:link, .jqx-combobox-multi-item a:visited  {
 
-     color: inherit;
 
-     display: block;
 
-     outline: 0 none;
 
-     text-decoration: none;
 
-     cursor: pointer;
 
-     *color: expression(this.parentNode.currentStyle['color']);    
 
- }
 
- /*applied to the ComboBox when the widget is disabled.*/
 
- .jqx-combobox-state-disabled
 
- {
 
-     white-space: nowrap;
 
-     margin: 0px;
 
-     color: #AAA;
 
- }
 
- /*jqxSelect Style*/
 
- .jqx-select {
 
-     overflow: hidden;
 
-     padding-left: 3px;
 
-     padding-top: 0px;
 
-     padding-bottom: 0px;
 
-     margin: 0px;
 
-     -webkit-appearance: none;
 
-     outline: 0 none;
 
- }
 
- .jqx-select-content {
 
-     cursor: pointer;
 
-     text-overflow: ellipsis;
 
- }
 
- .jqx-select-container {
 
-     padding: 0;
 
- }
 
- .jqx-select-item
 
- {
 
-     padding: 3px;
 
-     margin: 1px;
 
-     white-space: normal !important; 
 
-     cursor: default;
 
- }
 
- /*jqxDropDownList Style*/
 
- /*applied to the dropdownlist's content element which displays the selected item's text or html.*/
 
- .jqx-dropdownlist-content
 
- {
 
-     padding: 0px;
 
-     overflow: hidden;
 
-     padding-left: 3px;
 
-     padding-top: 0px;
 
-     padding-bottom: 0px;
 
-     margin: 0px;
 
-     text-align: left;
 
-     vertical-align: middle;
 
-     white-space: nowrap;
 
-     -webkit-appearance: none;
 
-     outline: 0 none;
 
-     border: none;
 
- }
 
- .jqx-dropdownlist-content-rtl {
 
-     padding-left: 0px;
 
-     padding-right: 3px;
 
- }
 
- /*applied to the dropdownlist's content element which displays the selected item's text or html and the widget is disabled. */
 
- .jqx-dropdownlist-content-disabled
 
- {
 
- }
 
- /*applied to the dropdownlist in default state.*/
 
- .jqx-dropdownlist-state-normal
 
- {
 
-     -webkit-appearance: none;
 
-     outline: none;
 
-     border: 1px solid transparent;
 
-     overflow: hidden;
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to the dropdownlist in hovered state.*/
 
- .jqx-dropdownlist-state-hover
 
- {
 
-     overflow: hidden;
 
-     border: 1px solid transparent;
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to the dropdownlist in selected state.*/
 
- .jqx-dropdownlist-state-selected
 
- { 
 
-     overflow: hidden;
 
-     background-color: transparent;
 
-     border: 1px solid transparent;
 
-     margin: 0 0 0 0;
 
-     cursor: pointer;
 
- }
 
- /*applied to the dropdownlist in focused state.*/
 
- .jqx-dropdownlist-state-focus
 
- {
 
-     border: 1px solid #909090;
 
- }
 
- /*applied to the dropdownlist in disabled state.*/
 
- .jqx-dropdownlist-state-disabled
 
- {
 
- }
 
- /*jqxScrollBar Style*/
 
- .jqx-scrollbar
 
- {
 
-     background: transparent;
 
-     margin: 0;
 
-     padding: 0;
 
-     border: none;
 
- }
 
- /*applied to the scrollbar in default state.*/
 
- .jqx-scrollbar-state-normal
 
- {
 
-     background: #efefef;
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the scrollbar buttons in default state.*/
 
- .jqx-scrollbar-button-state-normal
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border: 1px solid transparent; 
 
- }
 
- /*applied to the scrollbar buttons in hovered state.*/
 
- .jqx-scrollbar-button-state-hover
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the scrollbar buttons in pressed state.*/
 
- .jqx-scrollbar-button-state-pressed
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the horizontal scrollbar thumb in default state.*/
 
- .jqx-scrollbar-thumb-state-normal-horizontal
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     background: transparent;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the horizontal scrollbar thumb in hovered state.*/
 
- .jqx-scrollbar-thumb-state-hover-horizontal
 
- {
 
-     margin: 0px;
 
-     padding: 0px;   
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the horizontal scrollbar thumb in default state.*/
 
- .jqx-scrollbar-thumb-state-pressed-horizontal
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the vertical scrollbar thumb in default state.*/
 
- .jqx-scrollbar-thumb-state-normal
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the vertical scrollbar thumb in default state.*/
 
- .jqx-scrollbar-thumb-state-hover
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     background: transparent;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the vertical scrollbar thumb in default state.*/
 
- .jqx-scrollbar-thumb-state-pressed
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     background: #d1d1d1;
 
-     border: 1px solid #909090;
 
- }
 
- /* jqxWindow */
 
- .jqx-window
 
- {
 
-     position: absolute;
 
-     overflow: hidden;
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the jqxWindow when it’s disabled*/
 
- .jqx-window-disabled
 
- {
 
- }
 
- /*applied to the window’s header*/
 
- .jqx-window-header
 
- {
 
-     outline: none;
 
-     border-width: 0px;
 
-     border-bottom: 1px solid transparent; 
 
-     overflow: hidden;
 
-     padding: 5px;
 
-     height: auto;
 
-     white-space: nowrap;
 
-     overflow: hidden;  
 
- }
 
- /*applied to the window’s header when the window is disabled*/
 
- .jqx-window-header-disabled
 
- {
 
- }
 
- /*applied to the window’s content*/
 
- .jqx-window-content
 
- {
 
-     outline: none;
 
-     overflow: auto;
 
-     text-align: left;
 
-     background-color: transparent;
 
-     padding: 5px;
 
-     -webkit-background-clip: padding-box; background-clip: padding-box;
 
- }
 
- /*applied to the window’s content when the window is disabled*/
 
- .jqx-window-content-disabled
 
- {
 
-     outline: none;
 
-     overflow: auto;
 
-     text-align: left;
 
-     padding: 5px;
 
- }
 
- /*applied to the window’s close button*/
 
- .jqx-window-close-button
 
- {
 
-     cursor: pointer;
 
-     background-image: url(images/close.png);
 
-     background-repeat: no-repeat;    
 
- }
 
- /*applied to the window's collapse button*/
 
- .jqx-window-collapse-button
 
- {
 
-     background-image: url(images/icon-up.png);
 
-     cursor: pointer;
 
-     margin-top: 1px;
 
- }
 
- /*applied to the window's collapse button when the window is collapsed*/
 
- .jqx-window-collapse-button-collapsed
 
- {
 
-     margin-top: 0px;
 
-     cursor: pointer;
 
-     background-image: url(images/icon-down.png);
 
- }
 
- /*setting styles of the modal window’s background*/
 
- .jqx-window-modal
 
- {
 
-    background-color: Black;
 
- }
 
- .jqx-window-close-button-hover
 
- {
 
- }
 
- .jqx-docking
 
- {
 
-     overflow: hidden;
 
- }
 
- .jqx-docking-panel
 
- {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     min-height: 100px;
 
- }
 
- .jqx-docking-drop-indicator
 
- {
 
-     border-style: dashed;
 
-     border-width: 1px;
 
-     margin: 0px;
 
- }
 
- .jqx-docking-window
 
- {
 
-     margin: 0px;
 
- }
 
- /* jxSlider */
 
- /* applied to jqxSlider widget */
 
- .jqx-slider
 
- {
 
-     outline: none;
 
-     clear: both;
 
- }
 
- /*applied to the ticks which can be in the top/bottom/both sides of the jqxSlider*/
 
- .jqx-slider-tick
 
- {
 
-     border-left: 1px solid transparent;
 
-     z-index: 9; 
 
- }
 
- /*applied to the ticks when the slider is in horizontal mode*/
 
- .jqx-slider-tick-horizontal
 
- {
 
-     width: 1px;
 
-     border-left: none;
 
-     margin-top: 1px;
 
- }
 
- /*applied to the ticks when the slider is in vertical mode*/
 
- .jqx-slider-tick-vertical
 
- {
 
-     height: 1px;
 
-     border-top: none;
 
- }
 
- /*applied to the ticks container*/
 
- .jqx-slider-tickscontainer
 
- {
 
-     z-index: 10;
 
-     position: relative;
 
-     margin-top: 0px;
 
-     margin-bottom: 0px;
 
-     z-index: 9;
 
- }
 
- /*applied to the jqxSlider thumb used for changing/indicating current value*/
 
- .jqx-slider-slider
 
- {
 
-     cursor: pointer;
 
-     width: 16px;
 
-     height: 16px;
 
-     z-index: 15;
 
-     position: absolute;
 
-     left: 0px;
 
-     top: 0px;
 
-     -moz-border-radius: 100%;
 
-     -webkit-border-radius: 100%;
 
-     border-radius: 100%;   
 
- }
 
- .jqx-slider-button
 
- {
 
-     -moz-border-radius: 100%;
 
-     -webkit-border-radius: 100%;
 
-     border-radius: 100%;  
 
-     box-sizing: content-box !important;
 
- }
 
- /*applied to the slider's thumb when the slider is in horizontal mode*/
 
- .jqx-slider-slider-horizontal
 
- {   
 
-     background-image: url(images/slider_horizontal_classic.png);
 
-     background-repeat: no-repeat;
 
-     margin-top: -5px;
 
-     -moz-border-radius: 7px;
 
-     -webkit-border-radius: 7px;
 
-     border-radius: 7px;    
 
-     border: 1px solid transparent;
 
- }
 
- /*applied to the slider's thumb when the slider is in vertical mode*/
 
- .jqx-slider-slider-vertical
 
- {
 
-     margin-left: -5px;
 
-     background-image: url(images/slider_vertical_classic.png);
 
-     background-repeat: no-repeat;
 
-     -moz-border-radius: 7px;
 
-     -webkit-border-radius: 7px;
 
-     border-radius: 7px;
 
-     border: 1px solid transparent;
 
-  }
 
- /*applied to the track where is located the thumb*/
 
- .jqx-slider-track
 
- {
 
-     height: 8px;
 
-     float:left;
 
-     position: relative;
 
-     z-index: 20;
 
- }
 
- /*used in horizontal slider*/
 
- .jqx-slider-track-horizontal
 
- {
 
-     height: 8px;
 
-     margin-top: 2px;
 
- }
 
- /*used in vertical slider*/
 
- .jqx-slider-track-vertical
 
- {
 
-     width: 8px;
 
- }
 
- /*applied to the div which is between the thumbs in a range slider or from beginning of the track to the current thumb position in the default slider*/
 
- .jqx-slider-rangebar
 
- {
 
-  
 
- }
 
- /* jqxSplitter */
 
- .jqx-splitter
 
- {
 
-     overflow: hidden;
 
-     border: 1px solid transparent;
 
-     position: relative;
 
- }
 
- /* Split bar's class when the jqxSplitter is with horizontal orientation */
 
- .jqx-splitter-splitbar-vertical
 
- {
 
-     border: 1px solid transparent;
 
-     border-top-width: 0px;
 
-     border-bottom-width: 0px;
 
-     cursor: e-resize;
 
-     cursor: col-resize;
 
-     position: absolute;
 
- }
 
- /* Split bar's mouse over state */
 
- .jqx-splitter-splitbar-hover
 
- {
 
-     background-color: transparent;
 
- }
 
- /* Split bar's class when the jqxSplitter is with horizontal orientation. */
 
- .jqx-splitter-splitbar-horizontal
 
- {
 
-     position: absolute;
 
-     border: 1px solid transparent;
 
-     border-left-width: 0px;
 
-     border-right-width: 0px;   
 
-     cursor: n-resize;
 
-     cursor: row-resize;
 
- }
 
- /* This class is applied to the splitter when it's dragged to it's max left/right boundary */
 
- .jqx-splitter-splitbar-invalid
 
- {
 
-    background: #FF0000 !important;
 
- }
 
- /* This class is added to split bar's collapse button when the splitter is with vectical orientation. */
 
- .jqx-splitter-collapse-button-horizontal
 
- {
 
-     cursor: pointer;
 
-     width: 45px;
 
-     height: 5px;
 
- }
 
- /* This class is added to split bar's collapse button when the splitter is with horizontal orientation. */
 
- .jqx-splitter-collapse-button-vertical
 
- {
 
-     cursor: pointer;
 
-     width: 5px;
 
-     height: 45px;
 
- }
 
- /* This class is added when the user disable the splitter. */
 
- .jqx-splitter-splitbar-collapsed
 
- {
 
-     cursor: default;
 
- }
 
- /* Applied to the jqxSplitter panels. */
 
- .jqx-splitter-panel
 
- {
 
-     border: none;
 
-     outline: none;   
 
-     position: absolute;
 
-     overflow: hidden;
 
- }
 
- /* This class is added to a nested splitter.*/
 
- .jqx-splitter-nested, .jqx-splitter-panel-nested
 
- {
 
-     border: none;
 
-     overflow: hidden;
 
- }
 
- .jqx-draggable
 
- {
 
-     
 
- }
 
- .jqx-draggable-dragging
 
- {
 
-     border: 0px solid black;
 
- }
 
- .jqx-draggable-disabled
 
- {
 
-     cursor: default;
 
- }
 
- .jqx-validator-hint
 
- {
 
-     height: 18px;
 
-     width: auto;
 
-     display: inline-block;
 
-     cursor: pointer;
 
-     padding-left: 5px;
 
-     padding-right: 5px;
 
-     font-family: Verdana;
 
-     font-size: 13px;
 
-     border: 1px solid #6E0000;
 
-     background-color: #942724;
 
-     color: #fff;
 
-     z-index: 99999;
 
-     white-space: nowrap;
 
- }
 
- .jqx-validator-hint-arrow
 
- {
 
-     z-index: 99999;
 
-     height: 9px;
 
-     width: 9px;
 
-     padding: 0px;
 
-     margin: 0px;
 
-     background-color: transparent;
 
-     background-image: url(images/multi-arrow.gif);
 
- }
 
- .jqx-validator-error-label {
 
-    color: #dd4b39;
 
-    vertical-align:top;
 
-    text-align: left;
 
-    display: block;
 
-    cursor: default;
 
-    line-height: 17px;
 
-  }
 
- .jqx-validator-error-element {
 
-    border-color: #dd4b39 !important;
 
- }
 
- .jqx-switchbutton
 
- {
 
-     overflow: hidden;
 
-     -moz-border-radius: 5px; 
 
-     -webkit-border-radius: 5px; 
 
-     border-radius: 5px;
 
-     border: 1px solid #ccc;
 
- }
 
- .jqx-switchbutton-thumb
 
- {
 
-     display: inline-block;
 
-     cursor: pointer;
 
-     border: 1px solid #ccc;
 
- }
 
- .jqx-switchbutton-label
 
- {
 
-     font-size: 15px;
 
-     font-family: Sans-Serif;
 
-     text-align: center;
 
-     text-transform: uppercase;
 
-     font-weight: bold;
 
- }
 
- .jqx-switchbutton-wrapper
 
- {
 
- }
 
- .jqx-switchbutton-label-on
 
- {
 
-     
 
- }
 
- .jqx-switchbutton-label-off
 
- {
 
-     
 
- }
 
- /*left, right, up and down arrow icons.*/
 
- .jqx-left-arrow
 
- {
 
-     background: transparent;
 
-     background-image: url('left.png');
 
-     cursor: pointer;
 
- }
 
- .jqx-right-arrow
 
- {
 
-     background: transparent;
 
-     background-image: url('right.png');
 
-     cursor: pointer;
 
- }
 
- .jqx-icon-delete
 
- {
 
-     background-image: url('images/icon-delete.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-edit
 
- {
 
-     background-image: url('images/icon-edit.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-save
 
- {
 
-     background-image: url('images/icon-save.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-cancel
 
- {
 
-     background-image: url('images/icon-cancel.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-up, .jqx-icon-arrow-up-hover, .jqx-icon-arrow-up-selected
 
- {
 
-     background-image: url('images/icon-up.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-down, .jqx-icon-arrow-down-hover, .jqx-icon-arrow-down-selected
 
- {
 
-     background-image: url('images/icon-down.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-left, .jqx-icon-arrow-left-hover, .jqx-icon-arrow-left-selected
 
- {
 
-     background-image: url('images/icon-left.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-right, .jqx-icon-arrow-right-hover, .jqx-icon-arrow-right-selected
 
- {
 
-     background-image: url('images/icon-right.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-first, .jqx-icon-arrow-first-hover, .jqx-icon-arrow-first-selected
 
- {
 
-     background-image: url('images/icon-first.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-last, .jqx-icon-arrow-last-hover, .jqx-icon-arrow-last-selected
 
- {
 
-     background-image: url('images/icon-last.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-up-hover
 
- {
 
-     background-image: url('images/icon-up.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-down-hover
 
- {
 
-     background-image: url('images/icon-down.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-left-hover
 
- {
 
-     background-image: url('images/icon-left.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-right-hover
 
- {
 
-     background-image: url('images/icon-right.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-up-selected
 
- {
 
-     background-image: url('images/icon-up.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-down-selected
 
- {
 
-     background-image: url('images/icon-down.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-left-selected
 
- {
 
-     background-image: url('images/icon-left.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-arrow-right-selected
 
- {
 
-     background-image: url('images/icon-right.png');
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-close
 
- {
 
-     cursor: pointer;
 
-     background-image: url(images/close.png);
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-close-hover
 
- {
 
-     cursor: pointer;
 
-     background-image: url(images/close.png);
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
- }
 
- .jqx-icon-search
 
- {
 
-     cursor: pointer;
 
-     background-image: url(images/search.png);
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
-     margin-top: 1px;
 
-     background-size: 13px;
 
-     width: 13px;
 
-     height: 13px;
 
- }
 
- .jqx-icon-plus
 
- {
 
-     background-image: url(images/plus.png);
 
-     background-repeat: no-repeat;
 
-     background-position: center;
 
-     background-size: 16px;
 
-     width: 16px;
 
-     height: 16px;
 
- }
 
- /* jqxScrollView */
 
- .jqx-scrollview-button
 
- {
 
-     width: 10px;
 
-     height: 10px;
 
-     border-radius: 10px;
 
-     -moz-border-radius: 10px;
 
-     -webkit-border-radius: 10px;
 
-     display: inline-block;
 
-     margin: 2px;
 
-     cursor: pointer;
 
-     background-color: #aaaeaf;
 
- }
 
- .jqx-scrollview
 
- {
 
-     background-color: #000;
 
-     -ms-touch-action: auto !important;
 
- }
 
- .jqx-icon-calendar, .jqx-icon-calendar-hover, .jqx-icon-calendar-pressed
 
- {
 
-     background-image: url('images/icon-calendar.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left top;
 
-     position: relative;
 
-     width: 15px !important;
 
-     height: 15px !important;
 
-     margin-top: -7.5px !important;
 
- }
 
- /*applied to Inputs*/
 
- .jqx-input{-webkit-user-modify:inherit; -moz-user-modify: inherit;  overflow: hidden; background-color: inherit; border-color: #c7c7c7;}
 
- .jqx-input-invalid {
 
-     color: red !important;
 
- }
 
- .jqx-input-group {overflow: hidden;}
 
- .jqx-input-group-addon {border: 1px solid transparent; position: relative; -webkit-box-sizing: border-box !important; -moz-box-sizing: border-box !important; box-sizing: border-box !important; padding: 2px 8px !important; float: left; white-space: nowrap; vertical-align: middle; }
 
- .jqx-input-group-addon:first-child {
 
-   border-right-width: 0px;
 
-   border-bottom-right-radius: 0 !important;
 
-   border-top-right-radius: 0 !important;
 
- }
 
- .jqx-input-group-addon:last-child {
 
-   border-left-width: 0px;
 
-   border-bottom-left-radius: 0 !important;
 
-   border-top-left-radius: 0 !important;
 
- }
 
- .jqx-input-group-addon:not(:last-child):not(:first-child) {
 
-   border-bottom-left-radius: 0 !important;
 
-   border-top-left-radius: 0 !important;
 
-   border-bottom-right-radius: 0 !important;
 
-   border-top-right-radius: 0 !important;
 
-   border-left-width: 0px;
 
- }
 
- .jqx-input-group .jqx-input {
 
-     padding: 2px 1px !important;
 
-     border-left-width: 1px !important;
 
-     border-right-width: 1px !important;
 
- }
 
- .jqx-editor {
 
-     border-style: solid;
 
-     border-width: 1px;
 
-     border-color: transparent;
 
-     overflow:  hidden;
 
-     box-sizing: border-box !important;
 
- }
 
- .jqx-editor-window {
 
-     overflow: hidden;
 
- }
 
- .jqx-editor-inline {
 
-     padding: 0px;
 
-     border-width: 1px;
 
-     border-style: solid;
 
-     border-color: transparent;
 
- }
 
- .jqx-editor-inline p {
 
-     margin: 0px;padding:0 .2em; 
 
- }
 
- .jqx-editor-inline-focus {
 
-     border-width: 1px;
 
-     border-style: solid;
 
-     overflow: auto;
 
- }
 
- .jqx-editor iframe {
 
-     border: 0;
 
-     margin: 0;
 
-     padding: 0;
 
-     background: #fff;
 
-     display: inline;
 
-     vertical-align: top;
 
-     width: 100%;
 
-     height: 100%;
 
- }
 
- .jqx-editor-color-bar {
 
-     height: 3px;
 
- }
 
- .jqx-editor-color-picker table {
 
-     margin: 0;
 
-     padding: 0 4px 4px;
 
-     empty-cells: show;
 
-     border-collapse: separate; 
 
- }
 
- .jqx-editor-color-picker td {
 
-     border-collapse: separate; 
 
-     border: 1px solid transparent;
 
-     cursor: pointer;
 
-     margin: 0;
 
-     position: relative;
 
- }
 
- .jqx-editor-color-picker td:hover {
 
-     border: 1px solid #000;
 
- }
 
- .jqx-editor-color-picker-selected-cell {
 
-     outline: 1px solid #000;
 
- }
 
- .jqx-editor-color-picker td div{
 
-     width: 16px;
 
-     height: 16px;
 
- }
 
- .jqx-editor-content {
 
-     width: 100%;
 
-     border-style: solid;
 
-     border-width: 1px;
 
-     outline: 0;
 
-     left: 0px;
 
-     position: relative;
 
-     box-sizing: border-box !important;
 
- }
 
- .jqx-editor-container {
 
-     position: relative;
 
-     padding: 4px;
 
-     padding-top: 0px;
 
-     width: 100%;
 
-     height: 100%;
 
-     box-sizing: border-box !important;
 
- }
 
- .jqx-editor-toolbar-container {
 
-     top: 0px; left: 0px;
 
-     box-sizing: border-box !important;
 
- }
 
- .jqx-editor-toolbar-inline {
 
-     padding: 0px 4px;
 
-     border-width: 1px;
 
-     border-style: solid;
 
- }
 
- .jqx-editor-toolbar {
 
-     margin: 0;
 
-     padding: 0px;
 
-     padding-bottom: 4px;
 
- }
 
- .jqx-editor-toolbar-icon {
 
-     height: 21px;
 
-     width: 21px;
 
-     vertical-align: middle;
 
-     opacity: .667;
 
-     margin: 2px 0;
 
-     background: url('images/html_editor.png') no-repeat;
 
- }
 
- .jqx-editor-toolbar-icon-bold {
 
-     background-position: 0px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-italic {
 
-     background-position: -21px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-underline {
 
-     background-position: -42px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-fontname {
 
-     background-position: -63px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-fontsize {
 
-     background-position: -84px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-createlink {
 
-     background-position: -147px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-insertorderedlist {
 
-     background-position: -168px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-insertunorderedlist {
 
-     background-position: -189px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-outdent {
 
-     background-position: -210px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-indent {
 
-     background-position: -231px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-insertimage {
 
-     background-position:  -337px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-justifyleft {
 
-     background-position: -252px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-justifycenter {
 
-     background-position: -273px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-justifyright {
 
-     background-position: -294px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-removeformat {
 
-     background-position: -316px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-viewsource {
 
-     background-position: -359px 0px !important;
 
- }
 
- .jqx-editor-toolbar-icon-forecolor {
 
-     background-position: -105px 0px !important;
 
-     height: 15px;
 
- }
 
- .jqx-editor-toolbar-icon-backcolor {
 
-     background-position: -380px 0px !important;
 
-     height: 15px;
 
- }
 
- .jqx-editor-toolbar-icon:hover {
 
-     opacity: 1;
 
- }
 
- .jqx-fill-state-disabled .jqx-editor-toolbar-icon {
 
-   opacity: .667;
 
- }
 
- .jqx-editor-toolbar-item {
 
-     display: inline-block;
 
-     margin-left: 2px;    
 
-     vertical-align: middle;
 
- }
 
- .jqx-editor-toolbar-separator {
 
-     border-left: 1px solid #ccc;
 
-     margin: 0 2px;
 
-     outline: none;
 
-     overflow: hidden;
 
-     padding: 0;
 
-     text-decoration: none;
 
-     vertical-align: middle;
 
-     width: 0;
 
-     display: inline-block;
 
- }
 
- .jqx-editor-toolbar-group {
 
-     display: inline-block;
 
-     margin-right: 4px;
 
-     margin-top: 4px;
 
-     white-space: nowrap;
 
- }
 
- .jqx-editor-toolbar-button {
 
-     text-decoration: none;
 
-     vertical-align: middle;
 
-     cursor: default;
 
-     display: inline-block;
 
-     padding: 0px !important;
 
-     margin-right: 2px;
 
- }
 
- .jqx-editor-toolbar-group .jqx-editor-toolbar-button {
 
-     margin-right: -1px;
 
-     box-shadow: none;
 
-     position: relative;
 
-     margin-left: 0px !important;
 
- }
 
- .jqx-editor-toolbar-group .jqx-editor-toolbar-button:hover, .jqx-editor-toolbar-group .jqx-editor-toolbar-button:active {
 
-     z-index: 55;
 
- }
 
- .jqx-editor-toolbar-group .jqx-editor-toolbar-button.jqx-fill-state-normal {
 
-     background: transparent !important;
 
- }
 
- /*applied to all widgets*/
 
- .jqx-widget{-moz-box-sizing: content-box; box-sizing: content-box; -ms-touch-action: none; zoom: 1; color: #000000; -moz-background-clip: padding; background-clip: padding-box; -webkit-text-size-adjust: none; -ms-text-size-adjust: none; -webkit-appearance: none; -webkit-background-clip: padding-box; direction: ltr !important; -webkit-tap-highlight-color: rgba(0,0,0,0); font-family: Verdana,Arial,sans-serif; font-style: normal; font-size: 13px;}
 
- .jqx-item{-ms-touch-action: none; -moz-box-sizing: content-box; box-sizing: content-box;  color: inherit; -webkit-text-size-adjust: none;}
 
- /*applied to containers to set a background and border color. Tabs, NavigationBar, Calendar content.*/
 
- .jqx-widget-content {-moz-box-sizing: content-box; box-sizing: content-box; -ms-touch-action: none; -moz-background-clip: padding; -webkit-text-size-adjust: none; background-clip: padding-box; -webkit-background-clip: padding-box; -webkit-tap-highlight-color: rgba(0,0,0,0); font-family: Verdana,Arial,sans-serif; font-style: normal; font-size: 13px; border-color: #c7c7c7; background: #fff; }
 
- /*applied to header areas. Tabs, Menu, Window, Calendar.*/
 
- .jqx-widget-header {-moz-box-sizing: content-box; box-sizing: content-box; -ms-touch-action: none;-moz-background-clip: padding; -webkit-text-size-adjust: none; background-clip: padding-box; -webkit-background-clip: padding-box; -webkit-tap-highlight-color: rgba(0,0,0,0); border-color: #c5c5c5; background: #e8e8e8; }
 
- .jqx-fill-state-normal{-moz-box-sizing: content-box; box-sizing: content-box; -ms-touch-action: none;font-family: Verdana,Arial,sans-serif; font-style: normal; font-size: 13px; border-color:#aaa; background: #efefef; }
 
- .jqx-fill-state-hover {-moz-box-sizing: content-box; box-sizing: content-box; border-color:#999;  background: #e8e8e8;}
 
- .jqx-fill-state-pressed{-moz-box-sizing: content-box; box-sizing: content-box; border-color:#999; background: #d1d1d1;}
 
- .jqx-fill-state-focus {border-color: #555; }
 
- .jqx-fill-state-disabled {cursor: default; color: #000; opacity: .55; filter:Alpha(Opacity=45);}
 
- .jqx-fill-state-normal td, .jqx-fill-state-hover td, .jqx-fill-state-pressed td, .jqx-fill-state-disabled td, .jqx-fill-state-focus td, .jqx-widget td, .jqx-widget-content td, .jqx-widget-header td {
 
-     box-sizing: border-box; -moz-box-sizing: border-box; 
 
- }
 
- .jqx-widget .jqx-grid-cell, .jqx-widget .jqx-grid-column-header, .jqx-widget .jqx-grid-group-cell {border-color: #aaa;}
 
- .jqx-widget .jqx-grid-column-menubutton, .jqx-widget .jqx-grid-column-sortascbutton, .jqx-widget .jqx-grid-column-sortdescbutton, .jqx-widget .jqx-grid-column-filterbutton
 
- {
 
-    background-color: transparent;
 
-    border-color: #aaa;
 
- }
 
- .jqx-grid-column-header a:link, .jqx-grid-column-header a:visited
 
- {
 
-    *color: expression(this.parentNode.currentStyle['color']);    
 
- }
 
- .jqx-grid-bottomright, .jqx-panel-bottomright, .jqx-listbox-bottomright
 
- {
 
-    background-color: #e5e5e5;
 
- }
 
- .jqx-tabs-title-selected-top
 
- {
 
-     border-color: #aaa;
 
-     border-bottom: 1px solid #fff;
 
-     background-color: #fff;
 
- }
 
- /*applied to the tab's title when the tab is selected and the jqxTab's position property is set to 'bottom' .*/
 
- .jqx-tabs-title-selected-bottom
 
- {
 
-     border-color: #aaa;
 
-     border-top: 1px solid #fff;
 
-     background-color: #fff;
 
- }
 
- /*applied to the tab's selection tracker when the jqxTab's position property is set to 'top'.*/
 
- .jqx-tabs-selection-tracker-top
 
- {
 
-    border-color: #aaa;
 
-    border-bottom: 1px solid #fff;
 
- }
 
- /*applied to the tab's selection tracker when the jqxTab's position property is set to 'bottom'.*/
 
- .jqx-tabs-selection-tracker-bottom
 
- {
 
-    border-color: #aaa;
 
-    border-top: 1px solid #fff;
 
- }
 
- /*jqxMaskedInput and jqxNumberInput Styles*/
 
- .jqx-input
 
- {
 
-     -webkit-appearance: none;
 
-     padding: 0 0 0 0;
 
-     outline: none;
 
-     border-width: 1px;
 
-     border-style: solid; 
 
-     -moz-background-clip: padding; background-clip: padding-box; -webkit-background-clip: padding-box;
 
- }
 
- input[type=text].jqx-input, input[type=password].jqx-input {
 
-     min-height: 16px;
 
-     min-width: 16px;
 
-     margin: 0px;
 
-     border-width: 1px;
 
-     border-style: solid;
 
-     font-size: 13px;
 
-     padding: 0px;
 
- }
 
- .jqx-input::-ms-reveal {
 
-     display: none;
 
- }
 
- .jqx-input::-ms-clear {
 
-     display: none;
 
- }
 
- .jqx-input-content::-ms-clear {
 
-     display: none;
 
- }
 
- .jqx-input::-ms-value {
 
-     margin: 0px;
 
-     padding: 0px;
 
-     min-height: 13px;
 
-     line-height: 13px;
 
- }
 
- /*applied to the input when the validation fails.*/
 
- .jqx-input-invalid
 
- {
 
-     border-color: #dd4b39 !important;
 
- }
 
- /*applied to the input's content.*/
 
- .jqx-input-content
 
- {
 
-     -webkit-appearance: none;
 
-     padding: 1px;
 
-     resize: none;
 
-     outline: none;
 
-     outline-width: 0px;
 
-     -webkit-user-modify:inherit; -moz-user-modify:inherit;
 
-     -moz-background-clip: padding; background-clip: padding-box; -webkit-background-clip: padding-box;
 
- }
 
- /*applied to the input when it is disabled.*/
 
- .jqx-input-disabled
 
- {
 
-     -webkit-appearance: none;
 
-     resize: none;
 
-     outline: none;
 
-     outline-width: 0px;
 
- }
 
- /*applied to the list menu.*/
 
- .jqx-listmenu-widget {
 
-     -ms-touch-action: auto;
 
- }
 
- .jqx-listmenu-widget .jqx-widget-content{
 
-     -ms-touch-action: auto;
 
- }
 
- .jqx-listmenu-widget .jqx-widget-header{
 
-     -ms-touch-action: auto;
 
- }
 
- .jqx-listmenu-widget li{
 
-     -ms-touch-action: auto;
 
- }
 
- .jqx-menu-popup {
 
-    
 
- }
 
- .jqx-menu-vertical
 
- {
 
-     background-color: #efefef;
 
- }
 
- .jqx-color-picker
 
- {
 
-  
 
- }
 
- .jqx-color-picker-panel
 
- {
 
- }
 
- .jqx-color-picker-map
 
- {
 
-     border: 1px solid #A0A0A0;
 
-     background-color: transparent;
 
-     background-image: url('images/colorpicker/map-saturation.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left top;
 
-     overflow: hidden;
 
- }
 
- .jqx-color-picker-map-hue
 
- {
 
-     border: 1px solid #A0A0A0;
 
-     background-color: transparent;
 
-     background-image: url('images/colorpicker/map-hue.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left top;
 
-     overflow: hidden;
 
- }
 
- .jqx-color-picker-map-overlay
 
- { 
 
-     background-color: transparent;
 
-     background-image: url('images/colorpicker/map-saturation-overlay.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left top;
 
- }
 
- .jqx-color-picker-bar
 
- {
 
-     border: 1px solid #A0A0A0;
 
-     background-color: transparent;
 
-     background-image: url('images/colorpicker/bar-saturation.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left top;
 
- }
 
- .jqx-color-picker-bar-hue
 
- {
 
-     border: 1px solid #A0A0A0;
 
-     background-color: transparent;
 
-     background-image: url('images/colorpicker/bar-hue.png');
 
-     background-repeat: no-repeat;
 
-     background-position: left top;
 
- }
 
- .jqx-color-picker-preview
 
- {
 
-     border: 1px solid #A0A0A0;
 
- }
 
- .jqx-color-picker-pointer
 
- {
 
-     background-image: url('images/crosshair.png');
 
-     background-repeat: no-repeat;
 
-     height: 16px;
 
-     width: 16px;
 
- }
 
- .jqx-color-picker-pointer-alt
 
- {
 
-     background-image: url('images/crosshair-white.png');
 
-     background-repeat: no-repeat;
 
-     height: 16px;
 
-     width: 16px;
 
- }
 
- .jqx-color-picker-bar-pointer
 
- {
 
-     background-image: url('images/pointer.png');
 
-     background-repeat: no-repeat;
 
-     height: 15px;
 
-     margin-left: 6px;
 
-     background-position: right top;
 
- }
 
- .jqx-icon
 
- {
 
-     width: 16px;
 
-     height: 16px;
 
-     margin: 0 auto;
 
-     position: relative;
 
-     top: 50%; 
 
-     margin-top: -8px;
 
- }
 
- .jqx-input-icon
 
- {
 
-     width: 13px;
 
-     height: 13px;
 
-     margin: 0 auto;
 
- }
 
- .jqx-scrollbar-thumb-state-normal-touch
 
- {
 
-     border-color:#c3c3c3;  background: #c3c3c3;
 
- }
 
- .jqx-touch, .jqx-touch .jqx-fill-state-normal, .jqx-touch .jqx-widget-content, .jqx-touch .jqx-widget-header, .jqx-touch a:link{}
 
- .jqx-scrollbar .jqx-icon-arrow-up{width: 100%; height: 100%;}
 
- .jqx-scrollbar .jqx-icon-arrow-down{width: 100%; height: 100%;}
 
- .jqx-scrollbar .jqx-icon-arrow-left{width: 100%; height: 100%;}
 
- .jqx-scrollbar .jqx-icon-arrow-right{width: 100%; height: 100%;}
 
- /*jqx-listmenu*/
 
- .jqx-listmenu-widget
 
- {
 
-     border-width: 1px;
 
-     border-style: solid;
 
- }
 
- ol.jqx-listmenu, ul.jqx-listmenu
 
- {
 
-     margin: 0;
 
-     padding: 0;
 
-     border: 0;
 
-     outline: 0;
 
-     font-size: 100%;
 
-     vertical-align: baseline;
 
-     line-height: 1;
 
-      counter-reset: section;
 
- }
 
- .jqx-listmenu li 
 
- {
 
-    margin-left: 0px;
 
-    list-style: none;
 
-    line-height: 1;
 
- }
 
- .jqx-listmenu
 
- {
 
-     width: 100%;
 
- }
 
- .jqx-listmenu-header
 
- {
 
-     padding: 15px;
 
- }
 
- .jqx-listmenu-item 
 
- {
 
-     cursor: pointer;
 
-     padding: 15px;
 
-     float: none;
 
-     overflow: hidden;
 
-     text-align: left;
 
-     position: relative;
 
- }
 
- .jqx-listmenu-separator
 
- {
 
-     padding: 10px;
 
-     counter-reset: section;
 
- }
 
- .jqx-listmenu-header-label
 
- {
 
-     margin-left: 30px;
 
- }
 
- .jqx-listmenu-arrow-right
 
- {
 
-     width: 16px;
 
-     height: 16px;
 
-     position: absolute;
 
-     top: 50%;
 
-     margin-top: -7px;
 
-     right: 7px;
 
- }
 
- .jqx-listmenu-arrow-rtl {
 
-     right: 0px;
 
-     left: 7px;
 
- }
 
- .jqx-listmenu-arrow-right-pressed
 
- {
 
-     width: 16px;
 
-     height: 16px;
 
- }
 
- .jqx-listmenu-header .jqx-button
 
- {
 
-     -moz-border-radius: 10px;
 
-     -webkit-border-radius: 10px;
 
-     -o-border-radius: 10px;
 
-     border-radius: 10px;
 
-     padding: 6px 10px;
 
- }
 
- .jqx-listmenu-filter-input
 
- {
 
-     -moz-border-radius: 3px;
 
-     -webkit-border-radius: 3px;
 
-     border-radius: 3px;
 
-     border: 1px solid;
 
-     outline: none;    
 
-     width: 97%;   
 
-     padding: 3px; 
 
-     padding-left: 10px;
 
-     padding-right: 10px;
 
-     border-color: #c7c7c7;
 
-     background-color: #fff;
 
-     font-size: 20px;
 
-     min-height: 25px !important;
 
-     height: 25px;
 
- }
 
- .jqx-listmenu-filter
 
- {
 
-     text-align: center;
 
-     padding: 4px;
 
- }
 
- ol li .jqx-listmenu-item-label:before
 
- {
 
-   content: counter(section) ". ";
 
-   counter-increment: section;
 
- }
 
- .jqx-listmenu div
 
- {
 
-    clear: both; 
 
- }
 
- .jqx-listmenu-auto-separator
 
- {
 
- }
 
- .jqx-listmenu-item-readonly
 
- {   
 
-     cursor: default;
 
- }
 
- .jqx-tooltip
 
- {
 
-     position: absolute;
 
-     width: auto;
 
-     height: auto;
 
- }
 
- .jqx-tooltip-main
 
- {
 
-     position: relative;
 
-     width: 100%;
 
-     height: 100%;
 
-     text-align: center;
 
-     filter: inherit;
 
-     border-style: solid;
 
-     border-width: 1px;
 
- }
 
- .jqx-tooltip-text
 
- {
 
-     padding: 5px 8px;
 
-     overflow: hidden;
 
-     filter: inherit;
 
- }
 
- .jqx-tooltip, .jqx-tooltip-text, .jqx-tooltip-main {
 
-     -moz-border-radius: 5px;
 
-     -webkit-border-radius: 5px;
 
-     border-radius: 5px;
 
-     -moz-background-clip: padding; background-clip: padding-box; -webkit-background-clip: padding-box;   
 
- }
 
- .jqx-tooltip-arrow
 
- {
 
-     position: absolute;
 
-     width: 0px;
 
-     height: 0px;
 
-     display: block;
 
-     border-style: solid;
 
-     margin: -6px 0 0 -7px;
 
-     background: transparent !important;
 
-     filter: inherit;
 
- }
 
- .jqx-tooltip-arrow-t-b
 
- {
 
-     border-left-color: transparent !important;
 
-     border-right-color: transparent !important;
 
- }
 
- .jqx-tooltip-arrow-l-r
 
- {
 
-     border-top-color: transparent !important;
 
-     border-bottom-color: transparent !important;
 
- }
 
- /*Sets the text-alignment to right.*/
 
- .jqx-rtl{text-align: right !important;}
 
- .jqx-shadow{
 
-     -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.15)!important;
 
-     -moz-box-shadow   : 0 2px 3px rgba(0,0,0,.15)!important;
 
-     -o-box-shadow     : 0 2px 3px rgba(0,0,0,.15)!important;
 
-     box-shadow        : 0 2px 3px rgba(0,0,0,.15)!important;
 
- }
 
- .jqx-noshadow {
 
-     -webkit-box-shadow: none !important;
 
-     -moz-box-shadow   : none !important;
 
-     -o-box-shadow     : none !important;
 
-     box-shadow        : none !important;
 
- }
 
- .jqx-passwordinput-password-icon, .jqx-passwordinput-password-icon-rtl
 
- {
 
-     background-image: url(images/icon-showpassword.png) !important;
 
-     background-repeat: no-repeat !important;
 
-     width: 14px;
 
-     height: 9px;
 
- }
 
- .jqx-passwordinput-password-icon-ltr
 
- {
 
-     background-position: right !important;
 
- }
 
- .jqx-passwordinput-password-icon-rtl
 
- {
 
-     background-position: left !important;
 
- }
 
- .jqx-passwordinput-password-strength-inicator
 
- {
 
-     width: 20%;
 
-     height: 5px;
 
-     margin-top: 5px;
 
- }
 
- /*top rounded Corners*/
 
- .jqx-rc-t-expanded
 
- {
 
-     -moz-border-radius-topleft: 0px !important;
 
-     -webkit-border-top-left-radius: 0px !important;
 
-     border-top-left-radius: 0px !important;
 
-     -moz-border-radius-topright: 0px !important;
 
-     -webkit-border-top-right-radius: 0px !important;
 
-     border-top-right-radius: 0px !important;
 
- }
 
- /*bottom rounded Corners*/
 
- .jqx-rc-b-expanded
 
- {
 
-     -moz-border-radius-bottomleft: 0px !important;
 
-     -webkit-border-bottom-left-radius: 0px !important;
 
-     border-bottom-left-radius: 0px !important;
 
-     -moz-border-radius-bottomright: 0px !important;
 
-     -webkit-border-bottom-right-radius: 0px !important;
 
-     border-bottom-right-radius: 0px !important;
 
- }
 
- .jqx-treemap-rectangle {
 
-     font-size: 13px;
 
-     font-weight: normal;
 
-     border: 1px solid #555;
 
-     color: #222;
 
-     text-shadow: 0px 0px 0px;
 
-     overflow: hidden;
 
-     text-overflow: ellipsis;
 
- }
 
- .jqx-treemap-label {
 
-     text-overflow: ellipsis;
 
-     overflow: hidden;
 
- }
 
- .jqx-treemap-rectangle-parent {
 
-     color: #222;
 
-     font-size: 15px;
 
-     font-family: Verdana;
 
-     font-weight: bold;
 
- }
 
- .jqx-treemap-legend-label {
 
-     color: #fff;
 
- }
 
- .jqx-treemap-legend {
 
-     width: 350px;
 
-     background-color: rgba(0, 0, 0, 0.1);
 
-     z-index: 41;
 
-     overflow: hidden;
 
- }
 
- .jqx-treemap-legend-table {
 
-     table-layout: fixed;
 
-     width: 100%;
 
- }
 
- .jqx-treemap-legend-color {
 
-     height: 3px;
 
- }
 
- .jqx-treemap-legend-values {
 
-     height: 12px;
 
-     width: 100%;
 
- }
 
- .jqx-treemap-legend-value {
 
-     font-size: 9px;
 
-     position: absolute;
 
-     color: #fff;
 
- }
 
- .jqx-treemap-rectangle-hover {
 
-     -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
 
-     -moz-box-shadow:    0px 0px 5px rgba(0, 0, 0, 0.5);
 
-     box-shadow:         0px 0px 5px rgba(0, 0, 0, 0.5);
 
-     z-index: 40;
 
- }
 
- /*jqxRangeSelector*/
 
- .jqx-rangeselector, .jqx-rangeselector-content, .jqx-rangeselector-slider, .jqx-rangeselector-markers,
 
- .jqx-rangeselector-ticks-container, .jqx-rangeselector-ticks, .jqx-rangeselector-shutter
 
- {
 
-     box-shadow: none !important;
 
-     -webkit-box-shadow: none !important;
 
-     -moz-box-shadow: none !important;
 
-     box-sizing: content-box !important;
 
- }
 
- .jqx-rangeselector-markers {
 
-     
 
- }
 
- .jqx-rangeselector-content, .jqx-rangeselector-ticks, .jqx-rangeselector-labels, .jqx-rangeselector-shutter, .jqx-rangeselector-markers, .jqx-rangeselector-marker-arrow
 
- {
 
-     position: absolute;
 
- }
 
- .jqx-rangeselector-ticks-container, .jqx-rangeselector-ticks, .jqx-rangeselector-shutter, .jqx-rangeselector-slider
 
- {
 
-     height: 100%;
 
- }
 
- .jqx-rangeselector-ticks-container, .jqx-rangeselector-slider
 
- {
 
-     width: 100%;
 
-     box-shadow: none !important;
 
-     -webkit-box-shadow: none !important;
 
-     -moz-box-shadow: none !important;
 
-     -moz-border-radius: 0px !important;
 
-     -webkit-border-radius: 0px !important;
 
-     border-radius: 0px !important;
 
- }
 
- .jqx-rangeselector-group-labels-rtl, .jqx-rangeselector-group-labels-ticks, .jqx-rangeselector-slider
 
- {
 
-     float: left;
 
- }
 
- .jqx-rangeselector-slider, .jqx-rangeselector-markers, .jqx-rangeselector-marker-arrow
 
- {
 
-     border-style: solid;
 
- }
 
- .jqx-rangeselector-ticks, .jqx-rangeselector-group-labels-ticks
 
- {
 
-     width: 1px;
 
-     background: #aaa;
 
- }
 
- .jqx-rangeselector-labels, .jqx-rangeselector-markers
 
- {
 
-     white-space: nowrap;
 
-     width: auto;
 
- }
 
- .jqx-rangeselector-slider, .jqx-rangeselector-markers
 
- {
 
-     border-width: 1px !important;
 
- }
 
- .jqx-rangeselector-ticks-container
 
- {
 
-     background-color: transparent;
 
-     position: relative;
 
- }
 
- .jqx-rangeselector-shutter
 
- {
 
-     opacity: 0.75;
 
-     background: #efefef;
 
-     border-width: 0px !important;
 
- }
 
- .jqx-rangeselector-slider
 
- {
 
-     background-color: transparent !important;
 
-     border-top: none  !important;
 
-     background-image: none !important;
 
-     border-bottom: none !important;
 
-     border-color: #aaa;
 
-     border-right-color: transparent !important;
 
-     position: relative;
 
-     overflow: hidden;
 
- }
 
- .jqx-rangeselector-inner-slider
 
- {
 
-     position: absolute;
 
-     right: 0;
 
-     background: #aaa;
 
-     width: 1px;
 
-     height: 100%;
 
- }
 
- .jqx-rangeselector-ticks
 
- {
 
-     margin-top: 0px;
 
- }
 
- .jqx-rangeselector-labels, .jqx-rangeselector-group-labels
 
- {
 
-     margin-top: 4px;
 
- }
 
- .jqx-rangeselector-markers
 
- {
 
-     height: 20px;
 
-     padding: 5px;
 
-     opacity: 0.75;
 
- }
 
- .jqx-rangeselector-marker-arrow
 
- {
 
-     width: 0px;
 
-     height: 0px;
 
-     display: block;
 
-     margin: -6px 0 0 -7px;
 
-     background-color: transparent !important;
 
-     filter: inherit;
 
-     border-top-width: 5px;
 
-     border-bottom-width: 5px;
 
-     border-right-color: transparent !important;
 
-     border-left-color: transparent !important;
 
-     background-clip: border-box;
 
-     background-repeat: repeat;
 
-     box-shadow: none !important;
 
-     -webkit-box-shadow: none !important;
 
-     background-image: none !important;
 
- }
 
- .jqx-rangeselector-marker-arrow-top {
 
-     border-bottom-color: transparent !important; 
 
- }
 
- .jqx-rangeselector-marker-arrow-bottom {
 
-     border-top-color: transparent !important; 
 
- }
 
- .jqx-rangeselector-marker-left-arrow
 
- {
 
-     border-right-width: 0px;
 
-     border-left-width: 5px;
 
- }
 
- .jqx-rangeselector-marker-right-arrow
 
- {
 
-     border-right-width: 5px;
 
-     border-left-width: 0px;
 
- }
 
- .jqx-rangeselector-markers-value
 
- {
 
-     overflow: hidden;
 
-     white-space: nowrap;
 
- }
 
- .jqx-rangeselector-group-labels-rtl
 
- {
 
-     margin-right: 10px;
 
-     direction: rtl;
 
- }
 
- .jqx-rangeselector-group-labels-ticks
 
- {
 
-     height: 17px;
 
- }
 
- .jqx-rangeselector-group-labels-ticks-rtl
 
- {
 
-     margin-left: 5px;
 
- }
 
- .jqx-action-button {
 
-     border: none;
 
-     border-left: 1px solid #c7c7c7; 
 
- }
 
- .jqx-action-button-rtl {
 
-     border: none;
 
-     border-right: 1px solid #c7c7c7;     
 
-     cursor: pointer;
 
- }
 
- /*jqxBulletChart*/
 
- .jqx-bulletchart
 
- {
 
- }
 
- .jqx-bulletchart, .jqx-bulletchart-title-container-horizontal, .jqx-bulletchart-title-container-vertical, .jqx-bulletchart-chart-container-horizontal, .jqx-bulletchart-chart-container-vertical
 
- {
 
-     position: relative;
 
- }
 
- .jqx-bulletchart-title-inner-container, .jqx-bulletchart-range, .jqx-bulletchart-pointer, .jqx-bulletchart-target, .jqx-bulletchart-ticks, .jqx-bulletchart-labels
 
- {
 
-     position: absolute;
 
- }
 
- .jqx-bulletchart-title-container-vertical, .jqx-bulletchart-title, .jqx-bulletchart-description, .jqx-bulletchart-range-vertical
 
- {
 
-     width: 100%;
 
- }
 
- .jqx-bulletchart-title-container-horizontal, .jqx-bulletchart-chart-container-horizontal
 
- {
 
-     float: left;
 
-     overflow: hidden;
 
- }
 
- .jqx-bulletchart-title, .jqx-bulletchart-description
 
- {
 
-     text-align: center;
 
- }
 
- .jqx-bulletchart-title-inner-container
 
- {
 
-     margin: auto;
 
-     top: 0;
 
-     left: 0;
 
-     right: 0;
 
-     bottom: 0;
 
- }
 
- .jqx-bulletchart-title-inner-container-ltr
 
- {
 
-     padding-right: 5px;
 
- }
 
- .jqx-bulletchart-title-inner-container-rtl
 
- {
 
-     padding-left: 5px;
 
- }
 
- .jqx-bulletchart-title-description-ltr
 
- {
 
-     text-align: right;
 
- }
 
- .jqx-bulletchart-title-description-rtl
 
- {
 
-     text-align: left;
 
- }
 
- .jqx-bulletchart-title-description-vertical
 
- {
 
-     text-align: center;
 
- }
 
- .jqx-bulletchart-title
 
- {
 
-     font-size: 110%;
 
-     font-weight: bold;
 
- }
 
- .jqx-bulletchart-description
 
- {
 
-     font-size: 90%;
 
- }
 
- .jqx-bulletchart-range-horizontal
 
- {
 
-     height: 100%;
 
- }
 
- .jqx-bulletchart-target-horizontal
 
- {
 
-     top: 10%;
 
-     height: 80%;
 
- }
 
- .jqx-bulletchart-target-vertical
 
- {
 
-     left: 10%;
 
-     width: 80%;
 
- }
 
- .jqx-bulletchart-ticks
 
- {
 
-     background-color: #AAAAAA;
 
- }
 
- .jqx-bulletchart-ticks-horizontal
 
- {
 
-     width: 1px;
 
- }
 
- .jqx-bulletchart-ticks-vertical
 
- {
 
-     height: 1px;
 
- }
 
- .jqx-bulletchart-zero-tick
 
- {
 
- }
 
- .jqx-bulletchart-labels
 
- {
 
- }
 
- /*jqxNotification*/
 
- .jqx-notification
 
- {
 
-     padding: 10px;
 
-     border-width: 1px;
 
-     border-style: solid;
 
-     box-sizing: border-box;
 
-     pointer-events: auto;
 
- }
 
- .jqx-notification-table
 
- {
 
-     width: 100%;
 
-     font-size: inherit; 
 
-     font-weight: inherit; 
 
-     font-style: inherit;
 
-     font-variant: inherit;
 
-     color:inherit;
 
- }
 
- .jqx-notification-container
 
- {
 
-     position: fixed;
 
-     height: auto;
 
-     width: auto;
 
-     pointer-events: none;
 
- }
 
- .jqx-notification-container-full-width
 
- {
 
-     width: 100%;
 
- }
 
- .jqx-notification-container-full-height
 
- {
 
-     height: 100%;
 
- }
 
- #jqxNotificationDefaultContainer-top-right, #jqxNotificationDefaultContainer-bottom-left
 
- {
 
-     direction: rtl;
 
- }
 
- .jqx-notification-icon, .jqx-notification-content
 
- {
 
-     vertical-align: middle;
 
- }
 
- .jqx-notification-content
 
- {
 
- }
 
- .jqx-notification-content-rtl
 
- {
 
-     direction: rtl;
 
- }
 
- .jqx-link, .jqx-inverse, .jqx-primary, .jqx-warning, .jqx-danger, .jqx-success, .jqx-info {
 
-     background: none !important;
 
-     box-shadow: none !important;
 
-     text-shadow: none !important;
 
- }
 
- .jqx-notification-info, .jqx-info
 
- {
 
-   color: #ffffff  !important;
 
-   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)  !important;
 
-   background-color: #49afcd  !important;
 
-   *background-color: #2f96b4  !important;
 
-   background-repeat: repeat-x  !important;
 
-     background-image: linear-gradient(to bottom, #5bc0de, #2f96b4)  !important;
 
-     border-left-color: #2f96b4 !important;
 
-     border-right-color: #2f96b4 !important;
 
-     border-top-color: #2f96b4 !important;
 
-     border-bottom-color: #1f6377 !important;
 
- }
 
- .jqx-info:hover,
 
- .jqx-info:focus,
 
- .jqx-info:active,
 
- .jqx-info.active,
 
- .jqx-info.disabled,
 
- .jqx-info[disabled] {
 
-   color: #ffffff  !important;
 
-   background-color: #2f96b4  !important;
 
-   *background-color: #2a85a0  !important;
 
- }
 
- .jqx-info:active,
 
- .jqx-info.active {
 
-   background-color: #24748c \9  !important;
 
- }
 
- .jqx-notification-warning, .jqx-warning
 
- {
 
-   color: #ffffff  !important;
 
-   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)  !important;
 
-   background-color: #faa732  !important;
 
-   *background-color: #f89406  !important;
 
-   background-repeat: repeat-x  !important;
 
-     background-image: linear-gradient(to bottom, #fbb450, #f89406)  !important;
 
-     border-left-color: #f89406 !important;
 
-     border-right-color: #f89406 !important;
 
-     border-top-color: #f89406 !important;
 
-     border-bottom-color: #ad6704 !important;
 
- }
 
- .jqx-warning:hover,
 
- .jqx-warning:focus,
 
- .jqx-warning:active,
 
- .jqx-warning.active,
 
- .jqx-warning.disabled,
 
- .jqx-warning[disabled] {
 
-   color: #ffffff  !important;
 
-   background-color: #f89406  !important;
 
-   *background-color: #df8505  !important;
 
- }
 
- .jqx-warning:active,
 
- .jqx-warning.active {
 
-   background-color: #c67605 \9  !important;
 
- }
 
- .jqx-notification-success, .jqx-success
 
- {
 
-   color: #ffffff  !important;
 
-   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)  !important;
 
-   background-color: #5bb75b  !important;
 
-   *background-color: #51a351  !important;
 
-   background-repeat: repeat-x  !important;
 
-     background-image: linear-gradient(to bottom, #62c462, #51a351)  !important;
 
-     border-left-color: #51a351 !important;
 
-     border-right-color: #51a351 !important;
 
-     border-top-color: #51a351 !important;
 
-     border-bottom-color: #387038 !important;
 
- }
 
- .jqx-success:hover,
 
- .jqx-success:focus,
 
- .jqx-success:active,
 
- .jqx-success.active,
 
- .jqx-success.disabled,
 
- .jqx-success[disabled] {
 
-   color: #ffffff  !important;
 
-   background-color: #51a351  !important;
 
-   *background-color: #499249  !important;
 
- }
 
- .jqx-success:active,
 
- .jqx-success.active {
 
-   background-color: #408140 \9  !important;
 
- }
 
- .jqx-notification-error, .jqx-danger
 
- {
 
-   color: #ffffff  !important;
 
-   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)  !important;
 
-   background-color: #da4f49  !important;
 
-   *background-color: #bd362f  !important;
 
-   background-repeat: repeat-x  !important;
 
-     background-image: linear-gradient(to bottom, #ee5f5b, #bd362f)  !important;
 
-     border-left-color: #bd362f !important;
 
-     border-right-color: #bd362f !important;
 
-     border-top-color: #bd362f !important;
 
-     border-bottom-color: #802420 !important;
 
- }
 
- .jqx-danger:hover,
 
- .jqx-danger:focus,
 
- .jqx-danger:active,
 
- .jqx-danger.active,
 
- .jqx-danger.disabled,
 
- .jqx-danger[disabled] {
 
-   color: #ffffff  !important;
 
-   background-color: #bd362f  !important;
 
-   *background-color: #a9302a  !important;
 
- }
 
- .jqx-danger:active,
 
- .jqx-danger.active {
 
-   background-color: #942a25 \9  !important;
 
- }
 
- .jqx-notification-mail, .jqx-primary
 
- {
 
-   color: #ffffff  !important;
 
-   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)  !important;
 
-   background-color: #006dcc  !important;
 
-   *background-color: #0044cc  !important;
 
-   background-repeat: repeat-x  !important;
 
-     background-image: linear-gradient(to bottom, #0088cc, #0044cc)  !important;
 
-     border-left-color: #0044cc !important;
 
-     border-right-color: #0044cc !important;
 
-     border-top-color: #0044cc !important;
 
-     border-bottom-color: #002a80 !important;
 
- }
 
- .jqx-primary:hover,
 
- .jqx-primary:focus,
 
- .jqx-primary:active,
 
- .jqx-primary.active,
 
- .jqx-primary.disabled,
 
- .jqx-primary[disabled] {
 
-   color: #ffffff  !important;
 
-   background-color: #0044cc  !important;
 
-   *background-color: #003bb3  !important;
 
- }
 
- .jqx-primary:active,
 
- .jqx-primary.active {
 
-   background-color: #003399 \9  !important;
 
- }
 
- .jqx-notification-time, .jqx-inverse
 
- {
 
-   color: #ffffff  !important;
 
-   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)  !important;
 
-   background-color: #363636  !important;
 
-   *background-color: #222222  !important;
 
-   background-repeat: repeat-x  !important;
 
-     background-image: linear-gradient(to bottom, #444444, #222222)  !important;
 
-     border-left-color: #222222 !important;
 
-     border-right-color: #222222 !important;
 
-     border-top-color: #222222 !important;
 
-     border-bottom-color: #000000 !important;
 
- }
 
- .jqx-inverse:hover,
 
- .jqx-inverse:focus,
 
- .jqx-inverse:active,
 
- .jqx-inverse.active,
 
- .jqx-inverse.disabled,
 
- .jqx-inverse[disabled] {
 
-   color: #ffffff  !important;
 
-   background-color: #222222  !important;
 
-   *background-color: #151515  !important;
 
- }
 
- .jqx-inverse:active,
 
- .jqx-inverse.active {
 
-   background-color: #080808 \9  !important;
 
- }
 
- .jqx-link,
 
- .jqx-link:active,
 
- .jqx-link[disabled] {
 
-   background-color: transparent !important;
 
-   background-image: none !important;
 
-   -webkit-box-shadow: none !important;
 
-      -moz-box-shadow: none !important;
 
-           box-shadow: none !important;
 
- }
 
- .jqx-link {
 
-   color: #0088cc !important;
 
-   cursor: pointer !important;
 
-   border-color: transparent !important;
 
-   -webkit-border-radius: 0 !important;
 
-      -moz-border-radius: 0 !important;
 
-           border-radius: 0 !important;
 
- }
 
- .jqx-link:hover,
 
- .jqx-link:focus {
 
-   color: #005580 !important;
 
-   text-decoration: underline !important;
 
-   background-color: transparent !important;
 
- }
 
- .jqx-link[disabled]:hover,
 
- .jqx-link[disabled]:focus {
 
-   color: #333333 !important;
 
-   text-decoration: none !important;
 
- }
 
- .jqx-link:focus, .jqx-inverse:focus, .jqx-primary:focus, .jqx-warning:focus, .jqx-danger:focus, .jqx-success:focus, .jqx-info:focus,
 
- .jqx-link:hover, .jqx-inverse:hover, .jqx-primary:hover, .jqx-warning:hover, .jqx-danger:hover, .jqx-success:hover, .jqx-info:hover {
 
-   background-position: 0 -15px !important;
 
-   -webkit-transition: background-position 0.1s linear !important;
 
-      -moz-transition: background-position 0.1s linear !important;
 
-        -o-transition: background-position 0.1s linear !important;
 
-           transition: background-position 0.1s linear !important;
 
- }
 
- .jqx-link:active, .jqx-inverse:active, .jqx-primary:active, .jqx-warning:active, .jqx-danger:active, .jqx-success:active, .jqx-info:active {
 
-   background-image: none !important;
 
-   outline: 0 !important;
 
-   -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05) !important;
 
-      -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05) !important;
 
-           box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05) !important;
 
- }
 
- .jqx-notification-icon
 
- {
 
-     background-repeat: no-repeat;
 
- }
 
- .jqx-notification-icon-ltr
 
- {
 
-     background-position: left center;
 
- }
 
- .jqx-notification-icon-rtl
 
- {
 
-     background-position: right center;
 
- }
 
- .jqx-notification-icon-info, .jqx-notification-icon-warning, .jqx-notification-icon-success, .jqx-notification-icon-error, .jqx-notification-icon-mail, .jqx-notification-icon-time
 
- {
 
-     width: 30px;
 
-     height: 25px;
 
- }
 
- .jqx-notification-icon-info
 
- {
 
-     background-image: url('images/info.png');
 
- }
 
- .jqx-notification-icon-warning
 
- {
 
-     background-image: url('images/warning.png');
 
- }
 
- .jqx-notification-icon-success
 
- {
 
-     background-image: url('images/success.png');
 
- }
 
- .jqx-notification-icon-error
 
- {
 
-     background-image: url('images/error.png');
 
- }
 
- .jqx-notification-icon-mail
 
- {
 
-     background-image: url('images/mail.png');
 
- }
 
- .jqx-notification-icon-time
 
- {
 
-     background-image: url('images/time.png');
 
- }
 
- .jqx-notification-close-button-info, .jqx-notification-close-button-success, .jqx-notification-close-button-mail, .jqx-notification-close-button-time, .jqx-notification-close-button-error
 
- {
 
-     background-image: url('images/close_white.png');
 
- }
 
- .jqx-notification-close-button-warning
 
- {
 
-     background-image: url('images/close_black.png');
 
- }
 
- .jqx-notification-close-button-container, .jqx-notification-close-button
 
- {
 
-     width: 16px;
 
-     height: 16px;
 
- }
 
- .jqx-notification-close-button-container
 
- {
 
-     vertical-align: top;
 
- }
 
- .jqx-notification-close-button
 
- {
 
-     position: relative;
 
-     top: -11px;
 
-     background-repeat: no-repeat;
 
-     cursor: pointer;
 
- }
 
- .jqx-notification-close-button-ltr
 
- {
 
-     right: -11px;
 
-     background-position: right top;
 
- }
 
- .jqx-notification-close-button-rtl
 
- {
 
-     left: -11px;
 
-     background-position: left top;
 
- }
 
 
  |