jquery-ui-1.10.0.custom.css 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. /*!
  2. * jQuery UI Bootstrap (0.5)
  3. * http://addyosmani.github.com/jquery-ui-bootstrap
  4. *
  5. * Copyright 2012 - 2013, Addy Osmani
  6. * Dual licensed under the MIT or GPL Version 2 licenses.
  7. *
  8. * Portions copyright jQuery UI & Twitter Bootstrap
  9. */
  10. /* Layout helpers
  11. ----------------------------------*/
  12. .ui-helper-hidden {
  13. display: none;
  14. }
  15. .ui-helper-hidden-accessible {
  16. border: 0;
  17. clip: rect(0 0 0 0);
  18. height: 1px;
  19. margin: -1px;
  20. overflow: hidden;
  21. padding: 0;
  22. position: absolute;
  23. width: 1px;
  24. }
  25. .ui-helper-reset {
  26. margin: 0;
  27. padding: 0;
  28. border: 0;
  29. outline: 0;
  30. line-height: 1.3;
  31. text-decoration: none;
  32. font-size: 100%;
  33. list-style: none;
  34. }
  35. .ui-helper-clearfix:before,
  36. .ui-helper-clearfix:after {
  37. content: "";
  38. display: table;
  39. }
  40. .ui-helper-clearfix:after {
  41. content: ".";
  42. display: block;
  43. height: 0;
  44. clear: both;
  45. visibility: hidden;
  46. }
  47. .ui-helper-clearfix {
  48. /*display: inline-block; */
  49. display: block;
  50. min-height: 0; /* support: IE7 */
  51. }
  52. /* required comment for clearfix to work in Opera \*/
  53. * html .ui-helper-clearfix {
  54. height: 1%;
  55. }
  56. /* end clearfix */
  57. .ui-helper-zfix {
  58. width: 100%;
  59. height: 100%;
  60. top: 0;
  61. left: 0;
  62. position: absolute;
  63. opacity: 0;
  64. filter: Alpha(Opacity=0);
  65. }
  66. .ui-front {
  67. z-index: 100;
  68. }
  69. /* Interaction Cues
  70. ----------------------------------*/
  71. .ui-state-disabled {
  72. cursor: default !important;
  73. }
  74. /* Icons
  75. ----------------------------------*/
  76. /* states and images */
  77. .ui-icon {
  78. display: block;
  79. text-indent: -99999px;
  80. overflow: hidden;
  81. background-repeat: no-repeat;
  82. }
  83. /* Misc visuals
  84. ----------------------------------*/
  85. /* Overlays */
  86. .ui-widget-overlay {
  87. position: absolute;
  88. top: 0;
  89. left: 0;
  90. width: 100%;
  91. height: 100%;
  92. }
  93. /*
  94. * jQuery UI Resizable 1.10.0
  95. *
  96. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  97. * Dual licensed under the MIT or GPL Version 2 licenses.
  98. * http://jquery.org/license
  99. *
  100. * http://api.jqueryui.com/resizable/
  101. */
  102. .ui-resizable {
  103. position: relative;
  104. }
  105. .ui-resizable-handle {
  106. position: absolute;
  107. font-size: 0.1px;
  108. z-index: 99999;
  109. display: block;
  110. }
  111. .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  112. display: none;
  113. }
  114. .ui-resizable-n {
  115. cursor: n-resize;
  116. height: 7px;
  117. width: 100%;
  118. top: -5px;
  119. left: 0;
  120. }
  121. .ui-resizable-s {
  122. cursor: s-resize;
  123. height: 7px;
  124. width: 100%;
  125. bottom: -5px;
  126. left: 0;
  127. }
  128. .ui-resizable-e {
  129. cursor: e-resize;
  130. width: 7px;
  131. right: -5px;
  132. top: 0;
  133. height: 100%;
  134. }
  135. .ui-resizable-w {
  136. cursor: w-resize;
  137. width: 7px;
  138. left: -5px;
  139. top: 0;
  140. height: 100%;
  141. }
  142. .ui-resizable-se {
  143. cursor: se-resize;
  144. width: 12px;
  145. height: 12px;
  146. right: 1px;
  147. bottom: 1px;
  148. }
  149. .ui-resizable-sw {
  150. cursor: sw-resize;
  151. width: 9px;
  152. height: 9px;
  153. left: -5px;
  154. bottom: -5px;
  155. }
  156. .ui-resizable-nw {
  157. cursor: nw-resize;
  158. width: 9px;
  159. height: 9px;
  160. left: -5px;
  161. top: -5px;
  162. }
  163. .ui-resizable-ne {
  164. cursor: ne-resize;
  165. width: 9px;
  166. height: 9px;
  167. right: -5px;
  168. top: -5px;
  169. }
  170. /*
  171. * jQuery UI Selectable 1.10.0
  172. *
  173. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  174. * Dual licensed under the MIT or GPL Version 2 licenses.
  175. * http://jquery.org/license
  176. *
  177. * http://jqueryui.com/selectable/
  178. */
  179. .ui-selectable-helper {
  180. position: absolute;
  181. z-index: 100;
  182. border: 1px dotted black;
  183. }
  184. /*
  185. * jQuery UI CSS Framework 1.10.0
  186. *
  187. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  188. * Dual licensed under the MIT or GPL Version 2 licenses.
  189. * http://jquery.org/license
  190. *
  191. *
  192. *
  193. * To view and modify this theme, visit http://jqueryui.com/themeroller/
  194. */
  195. /* Component containers
  196. ----------------------------------*/
  197. .ui-widget {
  198. /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  199. /*font-size: 13px;*/
  200. }
  201. .ui-widget .ui-widget {
  202. font-size: 1em;
  203. }
  204. .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  205. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  206. font-size: 1em;
  207. }
  208. .ui-widget-content {
  209. border: 1px solid #aaaaaa;
  210. background: #ffffff url(images/ui-bg_glass_75_ffffff_1x400.png) 50% 50% repeat-x;
  211. color: #404040;
  212. }
  213. .ui-widget-content a {
  214. color: #404040;
  215. }
  216. .ui-widget-header {
  217. font-weight: bold;
  218. border-color: #0064cd #0064cd #003f81;
  219. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  220. border: 1px solid #666;
  221. }
  222. .ui-widget-header a {
  223. color: #222222;
  224. }
  225. /* Interaction states
  226. ----------------------------------*/
  227. .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  228. background-color: #e6e6e6;
  229. background-repeat: no-repeat;
  230. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  231. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  232. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  233. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  234. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  235. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  236. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  237. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  238. color: #333;
  239. font-size: 13px;
  240. line-height: normal;
  241. border: 1px solid #ccc;
  242. border-bottom-color: #bbb;
  243. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  244. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  245. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  246. -webkit-transition: 0.1s linear background-image;
  247. -moz-transition: 0.1s linear background-image;
  248. -ms-transition: 0.1s linear background-image;
  249. -o-transition: 0.1s linear background-image;
  250. transition: 0.1s linear background-image;
  251. overflow: visible;
  252. }
  253. .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
  254. color: #555555;
  255. text-decoration: none;
  256. }
  257. .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  258. background-position: 0 -15px;
  259. color: #333;
  260. text-decoration: none;
  261. }
  262. .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited {
  263. color: #212121;
  264. text-decoration: none;
  265. }
  266. .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  267. border: 1px solid #aaaaaa;
  268. font-weight: normal;
  269. color: #212121;
  270. }
  271. .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  272. color: #212121;
  273. text-decoration: none;
  274. }
  275. .ui-widget :active {
  276. outline: none;
  277. }
  278. /* Interaction Cues
  279. ----------------------------------*/
  280. .ui-state-highlight p, .ui-state-error p, .ui-state-default p {
  281. font-size: 13px;
  282. font-weight: normal;
  283. line-height: 18px;
  284. margin: 7px 15px;
  285. }
  286. .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  287. position: relative;
  288. margin-bottom: 18px;
  289. color: #404040;
  290. background-color: #eedc94;
  291. background-repeat: repeat-x;
  292. background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
  293. background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  294. background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  295. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
  296. background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  297. background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  298. background-image: linear-gradient(top, #fceec1, #eedc94);
  299. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
  300. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  301. border-color: #eedc94 #eedc94 #e4c652;
  302. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  303. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  304. border-width: 1px;
  305. border-style: solid;
  306. -webkit-border-radius: 4px;
  307. -moz-border-radius: 4px;
  308. border-radius: 4px;
  309. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  310. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  311. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  312. }
  313. .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  314. color: #363636;
  315. }
  316. .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  317. position: relative;
  318. margin-bottom: 18px;
  319. color: #ffffff;
  320. border-width: 1px;
  321. border-style: solid;
  322. -webkit-border-radius: 4px;
  323. -moz-border-radius: 4px;
  324. border-radius: 4px;
  325. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  326. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  327. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  328. background-color: #c43c35;
  329. background-repeat: repeat-x;
  330. background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  331. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  332. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  333. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  334. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  335. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  336. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  337. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  338. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  339. border-color: #c43c35 #c43c35 #882a25;
  340. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  341. }
  342. .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  343. color: #cd0a0a;
  344. }
  345. .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  346. color: #cd0a0a;
  347. }
  348. .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  349. font-weight: bold;
  350. }
  351. .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  352. opacity: .7;
  353. filter: Alpha(Opacity=70);
  354. font-weight: normal;
  355. }
  356. .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  357. opacity: .35;
  358. filter: Alpha(Opacity=35);
  359. background-image: none;
  360. }
  361. .ui-state-disabled .ui-icon {
  362. filter: Alpha(Opacity=35);
  363. }
  364. /* For IE8 - See #6059 */
  365. /* Icons
  366. ----------------------------------*/
  367. /* states and images */
  368. .ui-icon {
  369. width: 16px;
  370. height: 16px;
  371. background-image: url(images/ui-icons_222222_256x240.png);
  372. }
  373. .ui-widget-content .ui-icon {
  374. background-image: url(images/ui-icons_222222_256x240.png);
  375. }
  376. .ui-widget-header .ui-icon {
  377. background-image: url(images/ui-icons_222222_256x240.png);
  378. }
  379. .ui-state-default .ui-icon {
  380. background-image: url(images/ui-icons_888888_256x240.png);
  381. }
  382. .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
  383. background-image: url(images/ui-icons_454545_256x240.png);
  384. }
  385. .ui-state-active .ui-icon {
  386. background-image: url(images/ui-icons_454545_256x240.png);
  387. }
  388. .ui-state-highlight .ui-icon {
  389. background-image: url(images/ui-icons_2e83ff_256x240.png);
  390. }
  391. .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  392. background-image: url(images/ui-icons_f6cf3b_256x240.png);
  393. }
  394. /* positioning */
  395. .ui-icon-carat-1-n {
  396. background-position: 0 0;
  397. }
  398. .ui-icon-carat-1-ne {
  399. background-position: -16px 0;
  400. }
  401. .ui-icon-carat-1-e {
  402. background-position: -32px 0;
  403. }
  404. .ui-icon-carat-1-se {
  405. background-position: -48px 0;
  406. }
  407. .ui-icon-carat-1-s {
  408. background-position: -64px 0;
  409. }
  410. .ui-icon-carat-1-sw {
  411. background-position: -80px 0;
  412. }
  413. .ui-icon-carat-1-w {
  414. background-position: -96px 0;
  415. }
  416. .ui-icon-carat-1-nw {
  417. background-position: -112px 0;
  418. }
  419. .ui-icon-carat-2-n-s {
  420. background-position: -128px 0;
  421. }
  422. .ui-icon-carat-2-e-w {
  423. background-position: -144px 0;
  424. }
  425. .ui-icon-triangle-1-n {
  426. background-position: 0 -16px;
  427. }
  428. .ui-icon-triangle-1-ne {
  429. background-position: -16px -16px;
  430. }
  431. .ui-icon-triangle-1-e {
  432. background-position: -32px -16px;
  433. }
  434. .ui-icon-triangle-1-se {
  435. background-position: -48px -16px;
  436. }
  437. .ui-icon-triangle-1-s {
  438. background-position: -64px -16px;
  439. }
  440. .ui-icon-triangle-1-sw {
  441. background-position: -80px -16px;
  442. }
  443. .ui-icon-triangle-1-w {
  444. background-position: -96px -16px;
  445. }
  446. .ui-icon-triangle-1-nw {
  447. background-position: -112px -16px;
  448. }
  449. .ui-icon-triangle-2-n-s {
  450. background-position: -128px -16px;
  451. }
  452. .ui-icon-triangle-2-e-w {
  453. background-position: -144px -16px;
  454. }
  455. .ui-icon-arrow-1-n {
  456. background-position: 0 -32px;
  457. }
  458. .ui-icon-arrow-1-ne {
  459. background-position: -16px -32px;
  460. }
  461. .ui-icon-arrow-1-e {
  462. background-position: -32px -32px;
  463. }
  464. .ui-icon-arrow-1-se {
  465. background-position: -48px -32px;
  466. }
  467. .ui-icon-arrow-1-s {
  468. background-position: -64px -32px;
  469. }
  470. .ui-icon-arrow-1-sw {
  471. background-position: -80px -32px;
  472. }
  473. .ui-icon-arrow-1-w {
  474. background-position: -96px -32px;
  475. }
  476. .ui-icon-arrow-1-nw {
  477. background-position: -112px -32px;
  478. }
  479. .ui-icon-arrow-2-n-s {
  480. background-position: -128px -32px;
  481. }
  482. .ui-icon-arrow-2-ne-sw {
  483. background-position: -144px -32px;
  484. }
  485. .ui-icon-arrow-2-e-w {
  486. background-position: -160px -32px;
  487. }
  488. .ui-icon-arrow-2-se-nw {
  489. background-position: -176px -32px;
  490. }
  491. .ui-icon-arrowstop-1-n {
  492. background-position: -192px -32px;
  493. }
  494. .ui-icon-arrowstop-1-e {
  495. background-position: -208px -32px;
  496. }
  497. .ui-icon-arrowstop-1-s {
  498. background-position: -224px -32px;
  499. }
  500. .ui-icon-arrowstop-1-w {
  501. background-position: -240px -32px;
  502. }
  503. .ui-icon-arrowthick-1-n {
  504. background-position: 0 -48px;
  505. }
  506. .ui-icon-arrowthick-1-ne {
  507. background-position: -16px -48px;
  508. }
  509. .ui-icon-arrowthick-1-e {
  510. background-position: -32px -48px;
  511. }
  512. .ui-icon-arrowthick-1-se {
  513. background-position: -48px -48px;
  514. }
  515. .ui-icon-arrowthick-1-s {
  516. background-position: -64px -48px;
  517. }
  518. .ui-icon-arrowthick-1-sw {
  519. background-position: -80px -48px;
  520. }
  521. .ui-icon-arrowthick-1-w {
  522. background-position: -96px -48px;
  523. }
  524. .ui-icon-arrowthick-1-nw {
  525. background-position: -112px -48px;
  526. }
  527. .ui-icon-arrowthick-2-n-s {
  528. background-position: -128px -48px;
  529. }
  530. .ui-icon-arrowthick-2-ne-sw {
  531. background-position: -144px -48px;
  532. }
  533. .ui-icon-arrowthick-2-e-w {
  534. background-position: -160px -48px;
  535. }
  536. .ui-icon-arrowthick-2-se-nw {
  537. background-position: -176px -48px;
  538. }
  539. .ui-icon-arrowthickstop-1-n {
  540. background-position: -192px -48px;
  541. }
  542. .ui-icon-arrowthickstop-1-e {
  543. background-position: -208px -48px;
  544. }
  545. .ui-icon-arrowthickstop-1-s {
  546. background-position: -224px -48px;
  547. }
  548. .ui-icon-arrowthickstop-1-w {
  549. background-position: -240px -48px;
  550. }
  551. .ui-icon-arrowreturnthick-1-w {
  552. background-position: 0 -64px;
  553. }
  554. .ui-icon-arrowreturnthick-1-n {
  555. background-position: -16px -64px;
  556. }
  557. .ui-icon-arrowreturnthick-1-e {
  558. background-position: -32px -64px;
  559. }
  560. .ui-icon-arrowreturnthick-1-s {
  561. background-position: -48px -64px;
  562. }
  563. .ui-icon-arrowreturn-1-w {
  564. background-position: -64px -64px;
  565. }
  566. .ui-icon-arrowreturn-1-n {
  567. background-position: -80px -64px;
  568. }
  569. .ui-icon-arrowreturn-1-e {
  570. background-position: -96px -64px;
  571. }
  572. .ui-icon-arrowreturn-1-s {
  573. background-position: -112px -64px;
  574. }
  575. .ui-icon-arrowrefresh-1-w {
  576. background-position: -128px -64px;
  577. }
  578. .ui-icon-arrowrefresh-1-n {
  579. background-position: -144px -64px;
  580. }
  581. .ui-icon-arrowrefresh-1-e {
  582. background-position: -160px -64px;
  583. }
  584. .ui-icon-arrowrefresh-1-s {
  585. background-position: -176px -64px;
  586. }
  587. .ui-icon-arrow-4 {
  588. background-position: 0 -80px;
  589. }
  590. .ui-icon-arrow-4-diag {
  591. background-position: -16px -80px;
  592. }
  593. .ui-icon-extlink {
  594. background-position: -32px -80px;
  595. }
  596. .ui-icon-newwin {
  597. background-position: -48px -80px;
  598. }
  599. .ui-icon-refresh {
  600. background-position: -64px -80px;
  601. }
  602. .ui-icon-shuffle {
  603. background-position: -80px -80px;
  604. }
  605. .ui-icon-transfer-e-w {
  606. background-position: -96px -80px;
  607. }
  608. .ui-icon-transferthick-e-w {
  609. background-position: -112px -80px;
  610. }
  611. .ui-icon-folder-collapsed {
  612. background-position: 0 -96px;
  613. }
  614. .ui-icon-folder-open {
  615. background-position: -16px -96px;
  616. }
  617. .ui-icon-document {
  618. background-position: -32px -96px;
  619. }
  620. .ui-icon-document-b {
  621. background-position: -48px -96px;
  622. }
  623. .ui-icon-note {
  624. background-position: -64px -96px;
  625. }
  626. .ui-icon-mail-closed {
  627. background-position: -80px -96px;
  628. }
  629. .ui-icon-mail-open {
  630. background-position: -96px -96px;
  631. }
  632. .ui-icon-suitcase {
  633. background-position: -112px -96px;
  634. }
  635. .ui-icon-comment {
  636. background-position: -128px -96px;
  637. }
  638. .ui-icon-person {
  639. background-position: -144px -96px;
  640. }
  641. .ui-icon-print {
  642. background-position: -160px -96px;
  643. }
  644. .ui-icon-trash {
  645. background-position: -176px -96px;
  646. }
  647. .ui-icon-locked {
  648. background-position: -192px -96px;
  649. }
  650. .ui-icon-unlocked {
  651. background-position: -208px -96px;
  652. }
  653. .ui-icon-bookmark {
  654. background-position: -224px -96px;
  655. }
  656. .ui-icon-tag {
  657. background-position: -240px -96px;
  658. }
  659. .ui-icon-home {
  660. background-position: 0 -112px;
  661. }
  662. .ui-icon-flag {
  663. background-position: -16px -112px;
  664. }
  665. .ui-icon-calendar {
  666. background-position: -32px -112px;
  667. }
  668. .ui-icon-cart {
  669. background-position: -48px -112px;
  670. }
  671. .ui-icon-pencil {
  672. background-position: -64px -112px;
  673. }
  674. .ui-icon-clock {
  675. background-position: -80px -112px;
  676. }
  677. .ui-icon-disk {
  678. background-position: -96px -112px;
  679. }
  680. .ui-icon-calculator {
  681. background-position: -112px -112px;
  682. }
  683. .ui-icon-zoomin {
  684. background-position: -128px -112px;
  685. }
  686. .ui-icon-zoomout {
  687. background-position: -144px -112px;
  688. }
  689. .ui-icon-search {
  690. background-position: -160px -112px;
  691. }
  692. .ui-icon-wrench {
  693. background-position: -176px -112px;
  694. }
  695. .ui-icon-gear {
  696. background-position: -192px -112px;
  697. }
  698. .ui-icon-heart {
  699. background-position: -208px -112px;
  700. }
  701. .ui-icon-star {
  702. background-position: -224px -112px;
  703. }
  704. .ui-icon-link {
  705. background-position: -240px -112px;
  706. }
  707. .ui-icon-cancel {
  708. background-position: 0 -128px;
  709. }
  710. .ui-icon-plus {
  711. background-position: -16px -128px;
  712. }
  713. .ui-icon-plusthick {
  714. background-position: -32px -128px;
  715. }
  716. .ui-icon-minus {
  717. background-position: -48px -128px;
  718. }
  719. .ui-icon-minusthick {
  720. background-position: -64px -128px;
  721. }
  722. .ui-icon-close {
  723. background-position: -80px -128px;
  724. }
  725. .ui-icon-closethick {
  726. background-position: -96px -128px;
  727. }
  728. .ui-icon-key {
  729. background-position: -112px -128px;
  730. }
  731. .ui-icon-lightbulb {
  732. background-position: -128px -128px;
  733. }
  734. .ui-icon-scissors {
  735. background-position: -144px -128px;
  736. }
  737. .ui-icon-clipboard {
  738. background-position: -160px -128px;
  739. }
  740. .ui-icon-copy {
  741. background-position: -176px -128px;
  742. }
  743. .ui-icon-contact {
  744. background-position: -192px -128px;
  745. }
  746. .ui-icon-image {
  747. background-position: -208px -128px;
  748. }
  749. .ui-icon-video {
  750. background-position: -224px -128px;
  751. }
  752. .ui-icon-script {
  753. background-position: -240px -128px;
  754. }
  755. .ui-icon-alert {
  756. background-position: 0 -144px;
  757. }
  758. .ui-icon-info {
  759. background-position: -16px -144px;
  760. }
  761. .ui-icon-notice {
  762. background-position: -32px -144px;
  763. }
  764. .ui-icon-help {
  765. background-position: -48px -144px;
  766. }
  767. .ui-icon-check {
  768. background-position: -64px -144px;
  769. }
  770. .ui-icon-bullet {
  771. background-position: -80px -144px;
  772. }
  773. .ui-icon-radio-off {
  774. background-position: -96px -144px;
  775. }
  776. .ui-icon-radio-on {
  777. background-position: -112px -144px;
  778. }
  779. .ui-icon-pin-w {
  780. background-position: -128px -144px;
  781. }
  782. .ui-icon-pin-s {
  783. background-position: -144px -144px;
  784. }
  785. .ui-icon-play {
  786. background-position: 0 -160px;
  787. }
  788. .ui-icon-pause {
  789. background-position: -16px -160px;
  790. }
  791. .ui-icon-seek-next {
  792. background-position: -32px -160px;
  793. }
  794. .ui-icon-seek-prev {
  795. background-position: -48px -160px;
  796. }
  797. .ui-icon-seek-end {
  798. background-position: -64px -160px;
  799. }
  800. .ui-icon-seek-start {
  801. background-position: -80px -160px;
  802. }
  803. /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
  804. .ui-icon-seek-first {
  805. background-position: -80px -160px;
  806. }
  807. .ui-icon-stop {
  808. background-position: -96px -160px;
  809. }
  810. .ui-icon-eject {
  811. background-position: -112px -160px;
  812. }
  813. .ui-icon-volume-off {
  814. background-position: -128px -160px;
  815. }
  816. .ui-icon-volume-on {
  817. background-position: -144px -160px;
  818. }
  819. .ui-icon-power {
  820. background-position: 0 -176px;
  821. }
  822. .ui-icon-signal-diag {
  823. background-position: -16px -176px;
  824. }
  825. .ui-icon-signal {
  826. background-position: -32px -176px;
  827. }
  828. .ui-icon-battery-0 {
  829. background-position: -48px -176px;
  830. }
  831. .ui-icon-battery-1 {
  832. background-position: -64px -176px;
  833. }
  834. .ui-icon-battery-2 {
  835. background-position: -80px -176px;
  836. }
  837. .ui-icon-battery-3 {
  838. background-position: -96px -176px;
  839. }
  840. .ui-icon-circle-plus {
  841. background-position: 0 -192px;
  842. }
  843. .ui-icon-circle-minus {
  844. background-position: -16px -192px;
  845. }
  846. .ui-icon-circle-close {
  847. background-position: -32px -192px;
  848. }
  849. .ui-icon-circle-triangle-e {
  850. background-position: -48px -192px;
  851. }
  852. .ui-icon-circle-triangle-s {
  853. background-position: -64px -192px;
  854. }
  855. .ui-icon-circle-triangle-w {
  856. background-position: -80px -192px;
  857. }
  858. .ui-icon-circle-triangle-n {
  859. background-position: -96px -192px;
  860. }
  861. .ui-icon-circle-arrow-e {
  862. background-position: -112px -192px;
  863. }
  864. .ui-icon-circle-arrow-s {
  865. background-position: -128px -192px;
  866. }
  867. .ui-icon-circle-arrow-w {
  868. background-position: -144px -192px;
  869. }
  870. .ui-icon-circle-arrow-n {
  871. background-position: -160px -192px;
  872. }
  873. .ui-icon-circle-zoomin {
  874. background-position: -176px -192px;
  875. }
  876. .ui-icon-circle-zoomout {
  877. background-position: -192px -192px;
  878. }
  879. .ui-icon-circle-check {
  880. background-position: -208px -192px;
  881. }
  882. .ui-icon-circlesmall-plus {
  883. background-position: 0 -208px;
  884. }
  885. .ui-icon-circlesmall-minus {
  886. background-position: -16px -208px;
  887. }
  888. .ui-icon-circlesmall-close {
  889. background-position: -32px -208px;
  890. }
  891. .ui-icon-squaresmall-plus {
  892. background-position: -48px -208px;
  893. }
  894. .ui-icon-squaresmall-minus {
  895. background-position: -64px -208px;
  896. }
  897. .ui-icon-squaresmall-close {
  898. background-position: -80px -208px;
  899. }
  900. .ui-icon-grip-dotted-vertical {
  901. background-position: 0 -224px;
  902. }
  903. .ui-icon-grip-dotted-horizontal {
  904. background-position: -16px -224px;
  905. }
  906. .ui-icon-grip-solid-vertical {
  907. background-position: -32px -224px;
  908. }
  909. .ui-icon-grip-solid-horizontal {
  910. background-position: -48px -224px;
  911. }
  912. .ui-icon-gripsmall-diagonal-se {
  913. background-position: -64px -224px;
  914. }
  915. .ui-icon-grip-diagonal-se {
  916. background-position: -80px -224px;
  917. }
  918. /* Misc visuals
  919. ----------------------------------*/
  920. /* Corner radius */
  921. .ui-corner-all,
  922. .ui-corner-top,
  923. .ui-corner-left,
  924. .ui-corner-tl {
  925. -moz-border-radius-topleft: 4px;
  926. -webkit-border-top-left-radius: 4px;
  927. -khtml-border-top-left-radius: 4px;
  928. border-top-left-radius: 4px;
  929. }
  930. .ui-corner-all,
  931. .ui-corner-top,
  932. .ui-corner-right,
  933. .ui-corner-tr {
  934. -moz-border-radius-topright: 4px;
  935. -webkit-border-top-right-radius: 4px;
  936. -khtml-border-top-right-radius: 4px;
  937. border-top-right-radius: 4px;
  938. }
  939. .ui-corner-all,
  940. .ui-corner-bottom,
  941. .ui-corner-left,
  942. .ui-corner-bl {
  943. -moz-border-radius-bottomleft: 4px;
  944. -webkit-border-bottom-left-radius: 4px;
  945. -khtml-border-bottom-left-radius: 4px;
  946. border-bottom-left-radius: 4px;
  947. }
  948. .ui-corner-all,
  949. .ui-corner-bottom,
  950. .ui-corner-right,
  951. .ui-corner-br {
  952. -moz-border-radius-bottomright: 4px;
  953. -webkit-border-bottom-right-radius: 4px;
  954. -khtml-border-bottom-right-radius: 4px;
  955. border-bottom-right-radius: 4px;
  956. }
  957. /* Overlays */
  958. .ui-widget-overlay {
  959. background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  960. opacity: .30;
  961. filter: Alpha(Opacity=30);
  962. }
  963. .ui-widget-shadow {
  964. margin: -8px 0 0 -8px;
  965. padding: 8px;
  966. background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  967. opacity: .30;
  968. filter: Alpha(Opacity=30);
  969. -moz-border-radius: 8px;
  970. -khtml-border-radius: 8px;
  971. -webkit-border-radius: 8px;
  972. border-radius: 8px;
  973. }
  974. /*
  975. * jQuery UI Accordion 1.10.0
  976. *
  977. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  978. * Dual licensed under the MIT or GPL Version 2 licenses.
  979. * http://jquery.org/license
  980. *
  981. * http://jqueryui.com/accordion/
  982. */
  983. /* IE/Win - Fix animation bug - #4615 */
  984. .ui-accordion {
  985. width: 100%;
  986. }
  987. .ui-accordion .ui-accordion-header {
  988. cursor: pointer;
  989. position: relative;
  990. margin-top: 1px;
  991. zoom: 1;
  992. font-weight: bold;
  993. }
  994. .ui-accordion .ui-accordion-li-fix {
  995. display: inline;
  996. }
  997. .ui-accordion .ui-accordion-header-active {
  998. border-bottom: 0 !important;
  999. }
  1000. .ui-accordion .ui-accordion-header a {
  1001. display: block;
  1002. font-size: 1em;
  1003. padding: .5em .5em .5em 1.7em;
  1004. }
  1005. .ui-accordion-icons .ui-accordion-header a {
  1006. padding-left: 2.2em;
  1007. }
  1008. .ui-accordion .ui-accordion-header .ui-icon {
  1009. position: absolute;
  1010. left: .5em;
  1011. top: 50%;
  1012. margin-top: -8px;
  1013. }
  1014. .ui-accordion .ui-accordion-content {
  1015. padding: 1em 2.2em;
  1016. border-top: 0;
  1017. margin-top: -2px;
  1018. position: relative;
  1019. top: 1px;
  1020. margin-bottom: 2px;
  1021. overflow: auto;
  1022. display: none;
  1023. zoom: 1;
  1024. }
  1025. .ui-accordion .ui-accordion-content-active {
  1026. display: block;
  1027. }
  1028. /*
  1029. * jQuery UI Autocomplete 1.10.0
  1030. *
  1031. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  1032. * Dual licensed under the MIT or GPL Version 2 licenses.
  1033. * http://jquery.org/license
  1034. *
  1035. * http://jqueryui.com/autocomplete/
  1036. */
  1037. .ui-autocomplete {
  1038. position: absolute;
  1039. top: 0;
  1040. left: 0;
  1041. cursor: default;
  1042. }
  1043. /*
  1044. * jQuery UI Button 1.10.0
  1045. *
  1046. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  1047. * Dual licensed under the MIT or GPL Version 2 licenses.
  1048. * http://jquery.org/license
  1049. *
  1050. * http://docs.jquery.com/UI/Button#theming
  1051. */
  1052. .ui-button {
  1053. cursor: pointer;
  1054. display: inline-block;
  1055. background-color: #e6e6e6;
  1056. background-repeat: no-repeat;
  1057. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1058. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1059. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1060. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1061. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1062. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1063. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  1064. padding: 5px 14px 6px;
  1065. margin: 0;
  1066. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1067. color: #333;
  1068. font-size: 13px;
  1069. line-height: normal;
  1070. border: 1px solid #ccc;
  1071. border-bottom-color: #bbb;
  1072. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1073. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1074. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1075. -webkit-transition: 0.1s linear background-image;
  1076. -moz-transition: 0.1s linear background-image;
  1077. -ms-transition: 0.1s linear background-image;
  1078. -o-transition: 0.1s linear background-image;
  1079. transition: 0.1s linear background-image;
  1080. overflow: visible;
  1081. }
  1082. /* the overflow property removes extra width in IE */
  1083. .ui-button-primary {
  1084. color: #ffffff;
  1085. background-color: #0064cd;
  1086. background-repeat: repeat-x;
  1087. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  1088. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  1089. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  1090. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  1091. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  1092. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  1093. background-image: linear-gradient(top, #049cdb, #0064cd);
  1094. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  1095. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1096. border-color: #0064cd #0064cd #003f81;
  1097. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1098. }
  1099. .ui-button-success {
  1100. color: #ffffff;
  1101. background-color: #57a957;
  1102. background-repeat: repeat-x;
  1103. background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
  1104. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  1105. background-image: -ms-linear-gradient(top, #62c462, #57a957);
  1106. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
  1107. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  1108. background-image: -o-linear-gradient(top, #62c462, #57a957);
  1109. background-image: linear-gradient(top, #62c462, #57a957);
  1110. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  1111. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1112. border-color: #57a957 #57a957 #3d773d;
  1113. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1114. }
  1115. .ui-button-error {
  1116. color: #ffffff;
  1117. background-color: #c43c35;
  1118. background-repeat: repeat-x;
  1119. background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  1120. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  1121. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  1122. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  1123. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  1124. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  1125. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  1126. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  1127. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1128. border-color: #c43c35 #c43c35 #882a25;
  1129. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1130. }
  1131. .ui-button-icon-only {
  1132. width: 2.2em;
  1133. }
  1134. /* to make room for the icon, a width needs to be set here */
  1135. button.ui-button-icon-only {
  1136. }
  1137. /* button elements seem to need a little more width */
  1138. .ui-button-icons-only {
  1139. width: 3.4em;
  1140. }
  1141. button.ui-button-icons-only {
  1142. width: 3.7em;
  1143. }
  1144. /*button text element */
  1145. .ui-button .ui-button-text {
  1146. display: block;
  1147. }
  1148. .ui-button-text-only .ui-button-text {
  1149. }
  1150. .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  1151. padding: .4em;
  1152. text-indent: -9999999px; /*tempfix*/
  1153. display: none;
  1154. }
  1155. .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
  1156. padding: .4em 1em .4em 2.1em;
  1157. }
  1158. .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
  1159. padding: .4em 2.1em .4em 1em;
  1160. }
  1161. .ui-button-text-icons .ui-button-text {
  1162. padding-left: 2.1em;
  1163. padding-right: 2.1em;
  1164. }
  1165. /* no icon support for input elements, provide padding by default */
  1166. /* input.ui-button { padding: .4em 1em; } */
  1167. /*button icon element(s) */
  1168. .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
  1169. top: 50%;
  1170. margin-top: -3px;
  1171. margin-bottom: 3px;
  1172. }
  1173. .ui-button-icon-only .ui-icon {
  1174. left: 50%;
  1175. margin-left: -8px;
  1176. }
  1177. .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
  1178. left: .5em;
  1179. }
  1180. .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  1181. right: .5em;
  1182. }
  1183. .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  1184. right: .5em;
  1185. }
  1186. /*button sets*/
  1187. .ui-buttonset {
  1188. margin-right: 7px;
  1189. }
  1190. .ui-buttonset .ui-state-active {
  1191. color: #ffffff;
  1192. background-color: #0064cd;
  1193. background-repeat: repeat-x;
  1194. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  1195. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  1196. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  1197. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  1198. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  1199. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  1200. background-image: linear-gradient(top, #049cdb, #0064cd);
  1201. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  1202. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1203. border-color: #0064cd #0064cd #003f81;
  1204. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1205. }
  1206. .ui-buttonset .ui-button {
  1207. margin-left: 0;
  1208. margin-right: -.4em;
  1209. }
  1210. /* workarounds */
  1211. button.ui-button::-moz-focus-inner {
  1212. border: 0;
  1213. padding: 0;
  1214. }
  1215. /* reset extra padding in Firefox */
  1216. /*
  1217. * jQuery UI Menu 1.10.0
  1218. *
  1219. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  1220. * Dual licensed under the MIT or GPL Version 2 licenses.
  1221. * http://jquery.org/license
  1222. *
  1223. * http://docs.jquery.com/UI/Menu#theming
  1224. */
  1225. .ui-menu {
  1226. list-style: none;
  1227. padding: 2px;
  1228. margin: 0;
  1229. display: block;
  1230. float: left;
  1231. outline: none;
  1232. }
  1233. .ui-menu .ui-menu {
  1234. margin-top: -3px;
  1235. position: absolute;
  1236. }
  1237. .ui-menu .ui-menu-item {
  1238. margin: 0;
  1239. padding: 0;
  1240. zoom: 1;
  1241. float: left;
  1242. clear: left;
  1243. width: 100%;
  1244. }
  1245. .ui-menu .ui-menu-divider {
  1246. margin: 5px -2px 5px -2px;
  1247. height: 0;
  1248. font-size: 0;
  1249. line-height: 0;
  1250. border-width: 1px 0 0 0;
  1251. }
  1252. .ui-menu .ui-menu-item a {
  1253. text-decoration: none;
  1254. display: block;
  1255. padding: 2px .4em;
  1256. line-height: 1.5;
  1257. zoom: 1;
  1258. font-weight: normal;
  1259. }
  1260. .ui-menu .ui-menu-item a.ui-state-focus,
  1261. .ui-menu .ui-menu-item a.ui-state-active {
  1262. font-weight: normal;
  1263. margin: 0;
  1264. color: #ffffff;
  1265. /*background: #0064cd;*/
  1266. background-color: #0064cd;
  1267. /*background-repeat: repeat-x;*/
  1268. /*background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));*/
  1269. /*background-image: -moz-linear-gradient(top, #049cdb, #0064cd);*/
  1270. /*background-image: -ms-linear-gradient(top, #049cdb, #0064cd);*/
  1271. /*background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));*/
  1272. /*background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);*/
  1273. /*background-image: -o-linear-gradient(top, #049cdb, #0064cd);*/
  1274. /*background-image: linear-gradient(top, #049cdb, #0064cd);*/
  1275. /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);*/
  1276. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1277. /*border-color: #0064cd #0064cd #003f81;*/
  1278. /*border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
  1279. }
  1280. /* Fix problem with border in ui-state-active */
  1281. .ui-menu .ui-menu-item a.ui-state-active {
  1282. padding: 1px .4em;
  1283. }
  1284. .ui-menu .ui-state-disabled {
  1285. font-weight: normal;
  1286. margin: .4em 0 .2em;
  1287. line-height: 1.5;
  1288. }
  1289. .ui-menu .ui-state-disabled a {
  1290. cursor: default;
  1291. }
  1292. /* icon support */
  1293. .ui-menu-icons {
  1294. position: relative;
  1295. }
  1296. .ui-menu-icons .ui-menu-item a {
  1297. position: relative;
  1298. padding-left: 2em;
  1299. }
  1300. /* left-aligned */
  1301. .ui-menu .ui-icon {
  1302. position: absolute;
  1303. top: .2em;
  1304. left: .2em;
  1305. }
  1306. /* right-aligned */
  1307. .ui-menu .ui-menu-icon {
  1308. position: static;
  1309. float: right;
  1310. }
  1311. .ui-menu {
  1312. width: 200px;
  1313. margin-bottom: 2em;
  1314. }
  1315. /*
  1316. * jQuery UI spinner 1.10.0
  1317. *
  1318. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  1319. * Dual licensed under the MIT or GPL Version 2 licenses.
  1320. * http://jquery.org/license
  1321. *
  1322. * http://docs.jquery.com/UI/Menu#theming
  1323. */
  1324. .ui-spinner {
  1325. position: relative;
  1326. display: inline-block;
  1327. overflow: hidden;
  1328. padding: 0;
  1329. vertical-align: middle;
  1330. }
  1331. .ui-spinner-input {
  1332. border: none;
  1333. background: none;
  1334. padding: 0;
  1335. margin: .2em 0;
  1336. vertical-align: middle;
  1337. margin-left: .4em;
  1338. margin-right: 22px;
  1339. }
  1340. .ui-spinner {
  1341. }
  1342. .ui-spinner-button {
  1343. width: 16px;
  1344. height: 50%;
  1345. font-size: .5em;
  1346. padding: 0;
  1347. margin: 0;
  1348. text-align: center;
  1349. position: absolute;
  1350. cursor: default;
  1351. display: block;
  1352. overflow: hidden;
  1353. right: 0;
  1354. }
  1355. .ui-spinner a.ui-spinner-button {
  1356. border-top: none;
  1357. border-bottom: none;
  1358. border-right: none;
  1359. }
  1360. /* more specificity required here to overide default borders */
  1361. .ui-spinner .ui-icon {
  1362. position: absolute;
  1363. margin-top: -8px;
  1364. top: 50%;
  1365. left: 0;
  1366. }
  1367. /* vertical centre icon */
  1368. .ui-spinner-up {
  1369. top: 0;
  1370. }
  1371. .ui-spinner-down {
  1372. bottom: 0;
  1373. }
  1374. /* TR overrides */
  1375. .ui-spinner .ui-icon-triangle-1-s {
  1376. /* need to fix icons sprite */
  1377. background-position: -65px -16px;
  1378. }
  1379. /*
  1380. * jQuery UI Dialog 1.10.0
  1381. *
  1382. * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
  1383. * Dual licensed under the MIT or GPL Version 2 licenses.
  1384. * http://jquery.org/license
  1385. *
  1386. * http://docs.jquery.com/UI/Dialog#theming
  1387. */
  1388. .ui-dialog {
  1389. position: absolute;
  1390. top: 0;
  1391. left: 0;
  1392. padding: .2em;
  1393. width: 300px;
  1394. overflow: hidden;
  1395. outline: 0;
  1396. background-clip: padding-box;
  1397. background-color: #FFFFFF;
  1398. border: 1px solid rgba(0, 0, 0, 0.3);
  1399. border-radius: 6px 6px 6px 6px;
  1400. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  1401. /*left: 50%;
  1402. margin-left: -280px;*/
  1403. outline: medium none;
  1404. position: fixed;
  1405. /*top: 10%;
  1406. width: 560px;*/
  1407. z-index: 1050;
  1408. }
  1409. .ui-dialog .ui-dialog-titlebar {
  1410. /*padding: .4em 1em;*/
  1411. position: relative;
  1412. padding: 5px 15px;
  1413. border: 0px 0px 0px 1px solid;
  1414. border-color: white;
  1415. padding: 5px 15px;
  1416. font-size: 18px;
  1417. text-decoration: none;
  1418. background: none;
  1419. -moz-border-radius-bottomright: 0px;
  1420. -webkit-border-bottom-right-radius: 0px;
  1421. -khtml-border-bottom-right-radius: 0px;
  1422. -moz-border-radius-bottomleft: 0px;
  1423. -webkit-border-bottom-left-radius: 0px;
  1424. -khtml-border-bottom-left-radius: 0px;
  1425. border-bottom-left-radius: 0px;
  1426. border-bottom: 1px solid #ccc;
  1427. }
  1428. .ui-dialog .ui-dialog-title {
  1429. float: left;
  1430. color: #404040;
  1431. font-weight: bold;
  1432. margin-top: 5px;
  1433. margin-bottom: 5px;
  1434. padding: 5px;
  1435. text-overflow: ellipsis;
  1436. overflow: hidden;
  1437. }
  1438. .ui-dialog .ui-dialog-titlebar-close {
  1439. position: absolute;
  1440. right: .3em;
  1441. top: 50%;
  1442. width: 19px;
  1443. margin: -20px 0 0 0;
  1444. padding: 1px;
  1445. height: 18px;
  1446. font-size: 20px;
  1447. font-weight: bold;
  1448. line-height: 13.5px;
  1449. text-shadow: 0 1px 0 #ffffff;
  1450. filter: alpha(opacity=25);
  1451. -khtml-opacity: 0.25;
  1452. -moz-opacity: 0.25;
  1453. opacity: 0.25;
  1454. background: none;
  1455. border-width: 0;
  1456. border: none;
  1457. box-shadow: none;
  1458. }
  1459. .ui-dialog .ui-dialog-titlebar-close span {
  1460. display: block;
  1461. margin: 1px;
  1462. text-indent: 9999px;
  1463. }
  1464. .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
  1465. padding: 1px;
  1466. filter: alpha(opacity=90);
  1467. -khtml-opacity: 0.90;
  1468. -moz-opacity: 0.90;
  1469. opacity: 0.90;
  1470. }
  1471. .ui-dialog .ui-dialog-content {
  1472. position: relative;
  1473. border: 0;
  1474. padding: .5em 1em;
  1475. background: none;
  1476. overflow: auto;
  1477. zoom: 1;
  1478. }
  1479. .ui-dialog .ui-dialog-buttonpane {
  1480. text-align: left;
  1481. border-width: 1px 0 0 0;
  1482. background-image: none;
  1483. margin: .5em 0 0 0;
  1484. background-color: #f5f5f5;
  1485. padding: 5px 15px 5px;
  1486. border-top: 1px solid #ddd;
  1487. -webkit-border-radius: 0 0 6px 6px;
  1488. -moz-border-radius: 0 0 6px 6px;
  1489. border-radius: 0 0 6px 6px;
  1490. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  1491. -moz-box-shadow: inset 0 1px 0 #ffffff;
  1492. box-shadow: inset 0 1px 0 #ffffff;
  1493. zoom: 1;
  1494. margin-bottom: 0;
  1495. }
  1496. .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  1497. float: right;
  1498. }
  1499. .ui-dialog .ui-dialog-buttonpane button {
  1500. margin: .5em .4em .5em 0;
  1501. cursor: pointer;
  1502. }
  1503. .ui-dialog .ui-resizable-se {
  1504. width: 14px;
  1505. height: 14px;
  1506. right: 3px;
  1507. bottom: 3px;
  1508. }
  1509. .ui-draggable .ui-dialog-titlebar {
  1510. cursor: move;
  1511. }
  1512. .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
  1513. color: #ffffff;
  1514. background-color: #0064cd;
  1515. background-repeat: repeat-x;
  1516. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  1517. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  1518. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  1519. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  1520. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  1521. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  1522. background-image: linear-gradient(top, #049cdb, #0064cd);
  1523. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  1524. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1525. border-color: #0064cd #0064cd #003f81;
  1526. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1527. }
  1528. /*
  1529. * jQuery UI Slider 1.8.16
  1530. *
  1531. * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
  1532. * Dual licensed under the MIT or GPL Version 2 licenses.
  1533. * http://jquery.org/license
  1534. *
  1535. * http://docs.jquery.com/UI/Slider#theming
  1536. */
  1537. .ui-slider {
  1538. position: relative;
  1539. text-align: left;
  1540. }
  1541. .ui-slider .ui-slider-handle {
  1542. position: absolute;
  1543. z-index: 2;
  1544. width: 1.2em;
  1545. height: 1.2em;
  1546. cursor: default;
  1547. }
  1548. .ui-slider .ui-slider-range {
  1549. position: absolute;
  1550. z-index: 1;
  1551. font-size: .7em;
  1552. display: block;
  1553. border: 0;
  1554. background-position: 0 0;
  1555. color: #ffffff;
  1556. background-color: #0064cd;
  1557. background-repeat: repeat-x;
  1558. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  1559. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  1560. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  1561. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  1562. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  1563. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  1564. background-image: linear-gradient(top, #049cdb, #0064cd);
  1565. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  1566. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1567. border-color: #0064cd #0064cd #003f81;
  1568. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1569. }
  1570. .ui-slider-horizontal {
  1571. height: .8em;
  1572. }
  1573. .ui-slider-horizontal .ui-slider-handle {
  1574. top: -.3em;
  1575. margin-left: -.6em;
  1576. }
  1577. .ui-slider-horizontal .ui-slider-range {
  1578. top: 0;
  1579. height: 100%;
  1580. }
  1581. .ui-slider-horizontal .ui-slider-range-min {
  1582. left: 0;
  1583. }
  1584. .ui-slider-horizontal .ui-slider-range-max {
  1585. right: 0;
  1586. }
  1587. .ui-slider-vertical {
  1588. width: .8em;
  1589. height: 100px;
  1590. }
  1591. .ui-slider-vertical .ui-slider-handle {
  1592. left: -.3em;
  1593. margin-left: 0;
  1594. margin-bottom: -.6em;
  1595. }
  1596. .ui-slider-vertical .ui-slider-range {
  1597. left: 0;
  1598. width: 100%;
  1599. }
  1600. .ui-slider-vertical .ui-slider-range-min {
  1601. bottom: 0;
  1602. }
  1603. .ui-slider-vertical .ui-slider-range-max {
  1604. top: 0;
  1605. }
  1606. /*
  1607. * jQuery UI Tabs 1.9.2
  1608. *
  1609. * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
  1610. * Dual licensed under the MIT or GPL Version 2 licenses.
  1611. * http://jquery.org/license
  1612. *
  1613. * http://jqueryui.com/tabs/
  1614. */
  1615. .ui-tabs .ui-tabs-nav {
  1616. background: none;
  1617. border-color: #ddd;
  1618. border-style: solid;
  1619. border-width: 0 0 1px;
  1620. }
  1621. .ui-tabs {
  1622. position: relative;
  1623. padding: .2em;
  1624. zoom: 1;
  1625. border: 0px;
  1626. }
  1627. /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  1628. .ui-tabs .ui-tabs-nav li:hover, .ui-tabs .ui-tabs-nav li a:hover {
  1629. background: whiteSmoke;
  1630. border-bottom: 1px solid #ddd;
  1631. padding-bottom: 0px;
  1632. color: #00438A;
  1633. }
  1634. .ui-tabs .ui-tabs-nav {
  1635. margin: 0;
  1636. padding: .2em .2em 0;
  1637. border-bottom: 1px solid #DDD;
  1638. }
  1639. .ui-tabs .ui-tabs-nav li {
  1640. text-decoration: none;
  1641. list-style: none;
  1642. float: left;
  1643. position: relative;
  1644. top: 1px;
  1645. padding: 0px 0px 1px 0px;
  1646. white-space: nowrap;
  1647. background: none;
  1648. border: 0px;
  1649. }
  1650. .ui-tabs-nav .ui-state-default {
  1651. -webkit-box-shadow: 0px 0px 0px #ffffff; /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  1652. -moz-box-shadow: 0px 0px 0px #ffffff; /* FF3.5 - 3.6 */
  1653. box-shadow: 0px 0px 0px #ffffff; /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
  1654. }
  1655. .ui-tabs .ui-tabs-nav li a {
  1656. float: left;
  1657. text-decoration: none;
  1658. cursor: text;
  1659. padding: 0 15px;
  1660. margin-right: 2px;
  1661. line-height: 34px;
  1662. border: 1px solid transparent;
  1663. -webkit-border-radius: 4px 4px 0 0;
  1664. -moz-border-radius: 4px 4px 0 0;
  1665. border-radius: 4px 4px 0 0;
  1666. }
  1667. .ui-tabs .ui-tabs-nav li.ui-tabs-active {
  1668. margin-bottom: 0;
  1669. padding-bottom: 0px;
  1670. outline: none;
  1671. }
  1672. .ui-tabs .ui-tabs-nav li.ui-tabs-active, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
  1673. background-color: #ffffff;
  1674. border: 1px solid #ddd;
  1675. border-bottom-color: #ffffff;
  1676. cursor: default;
  1677. color: gray;
  1678. outline: none;
  1679. }
  1680. .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  1681. background-color: #ffffff;
  1682. outline: none;
  1683. border: none;
  1684. }
  1685. .ui-tabs .ui-tabs-nav li.ui-tabs-active:hover {
  1686. background: #ffffff;
  1687. outline: none;
  1688. margin-bottom: 0px;
  1689. }
  1690. .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  1691. cursor: text;
  1692. }
  1693. .ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  1694. cursor: pointer;
  1695. color: #0069D6;
  1696. background: none;
  1697. font-weight: normal;
  1698. margin-bottom: -1px;
  1699. }
  1700. /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
  1701. .ui-tabs .ui-tabs-panel {
  1702. display: block;
  1703. border-width: 0;
  1704. padding: 1em 1.4em;
  1705. background: none;
  1706. }
  1707. .ui-tabs-panel .ui-button {
  1708. text-decoration: none;
  1709. }
  1710. .ui-tabs .ui-tabs-hide {
  1711. display: none !important;
  1712. }
  1713. /* IE fix for background inheritance from ui-widget*/
  1714. .ui-tabs .ui-tabs-nav li {
  1715. filter: none;
  1716. }
  1717. /*
  1718. * jQuery UI Tooltip 1.9.0
  1719. *
  1720. * Copyright 2012-10-11, AUTHORS.txt (http://jqueryui.com/about)
  1721. * Dual licensed under the MIT or GPL Version 2 licenses.
  1722. * http://jquery.org/license
  1723. *
  1724. * http://jqueryui.com/tooltip/
  1725. */
  1726. .ui-tooltip {
  1727. padding: 8px;
  1728. position: absolute;
  1729. z-index: 9999;
  1730. max-width: 300px;
  1731. -o-box-shadow: 0 0 5px #ddd;
  1732. -moz-box-shadow: 0 0 5px #ddd;
  1733. -webkit-box-shadow: 0 0 5px #ddd;
  1734. /*box-shadow: 0 2px 5px #ddd;*/
  1735. box-shadow: inset 0 1px 0 #ffffff;
  1736. }
  1737. body .ui-tooltip {
  1738. border-width: 2px;
  1739. }
  1740. /*
  1741. * jQuery UI Datepicker 1.9.0
  1742. *
  1743. * Copyright 2012-10-11, AUTHORS.txt (http://jqueryui.com/about)
  1744. * Dual licensed under the MIT or GPL Version 2 licenses.
  1745. * http://jquery.org/license
  1746. *
  1747. * http://jqueryui.com/datepicker/
  1748. */
  1749. .ui-datepicker {
  1750. width: 17em;
  1751. padding: .2em .2em 0;
  1752. display: none;
  1753. }
  1754. .ui-datepicker .ui-datepicker-header {
  1755. position: relative;
  1756. padding: .2em 0;
  1757. border: 0px;
  1758. font-weight: bold;
  1759. width: 100%;
  1760. padding: 4px 0;
  1761. background-color: #f5f5f5;
  1762. color: #808080;
  1763. }
  1764. .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  1765. position: absolute;
  1766. top: 2px;
  1767. width: 1.8em;
  1768. height: 1.8em;
  1769. }
  1770. .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  1771. /*top: 1px;*/
  1772. }
  1773. .ui-datepicker .ui-datepicker-prev {
  1774. left: 2px;
  1775. }
  1776. .ui-datepicker .ui-datepicker-next {
  1777. right: 2px;
  1778. }
  1779. .ui-datepicker .ui-datepicker-prev-hover {
  1780. /*left:1px;*/
  1781. }
  1782. .ui-datepicker .ui-datepicker-next-hover {
  1783. /*right:1px;*/
  1784. }
  1785. .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  1786. display: block;
  1787. position: absolute;
  1788. left: 50%;
  1789. margin-left: -8px;
  1790. top: 50%;
  1791. margin-top: -8px;
  1792. }
  1793. .ui-datepicker .ui-datepicker-title {
  1794. margin: 0 2.3em;
  1795. line-height: 1.8em;
  1796. text-align: center;
  1797. }
  1798. .ui-datepicker .ui-datepicker-title select {
  1799. font-size: 1em;
  1800. margin: 1px 0;
  1801. }
  1802. .ui-datepicker select.ui-datepicker-month-year {
  1803. width: 100%;
  1804. }
  1805. .ui-datepicker select.ui-datepicker-month,
  1806. .ui-datepicker select.ui-datepicker-year {
  1807. width: 49%;
  1808. }
  1809. .ui-datepicker table {
  1810. width: 100%;
  1811. font-size: .9em;
  1812. border-collapse: collapse;
  1813. margin: 0 0 .4em;
  1814. }
  1815. .ui-datepicker th {
  1816. padding: .7em .3em;
  1817. text-align: center;
  1818. font-weight: bold;
  1819. border: 0;
  1820. }
  1821. .ui-datepicker td {
  1822. border: 0;
  1823. padding: 1px;
  1824. }
  1825. .ui-datepicker td span, .ui-datepicker td a {
  1826. display: block;
  1827. padding: .2em;
  1828. text-align: right;
  1829. text-decoration: none;
  1830. }
  1831. .ui-datepicker .ui-datepicker-buttonpane {
  1832. background-image: none;
  1833. margin: .7em 0 0 0;
  1834. padding: 0 .2em;
  1835. border-left: 0;
  1836. border-right: 0;
  1837. border-bottom: 0;
  1838. }
  1839. .ui-datepicker .ui-datepicker-buttonpane button {
  1840. float: right;
  1841. margin: .5em .2em .4em;
  1842. cursor: pointer;
  1843. padding: .2em .6em .3em .6em;
  1844. width: auto;
  1845. overflow: visible;
  1846. }
  1847. .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  1848. float: left;
  1849. }
  1850. /* with multiple calendars */
  1851. .ui-datepicker.ui-datepicker-multi {
  1852. width: auto;
  1853. }
  1854. .ui-datepicker-multi .ui-datepicker-group {
  1855. float: left;
  1856. }
  1857. .ui-datepicker-multi .ui-datepicker-group table {
  1858. width: 95%;
  1859. margin: 0 auto .4em;
  1860. }
  1861. .ui-datepicker-multi-2 .ui-datepicker-group {
  1862. width: 50%;
  1863. }
  1864. .ui-datepicker-multi-3 .ui-datepicker-group {
  1865. width: 33.3%;
  1866. }
  1867. .ui-datepicker-multi-4 .ui-datepicker-group {
  1868. width: 25%;
  1869. }
  1870. .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  1871. border-left-width: 0;
  1872. }
  1873. .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  1874. border-left-width: 0;
  1875. }
  1876. .ui-datepicker-multi .ui-datepicker-buttonpane {
  1877. clear: left;
  1878. }
  1879. .ui-datepicker-row-break {
  1880. clear: both;
  1881. width: 100%;
  1882. font-size: 0em;
  1883. }
  1884. /* RTL support */
  1885. .ui-datepicker-rtl {
  1886. direction: rtl;
  1887. }
  1888. .ui-datepicker-rtl .ui-datepicker-prev {
  1889. right: 2px;
  1890. left: auto;
  1891. }
  1892. .ui-datepicker-rtl .ui-datepicker-next {
  1893. left: 2px;
  1894. right: auto;
  1895. }
  1896. .ui-datepicker-rtl .ui-datepicker-prev:hover {
  1897. right: 1px;
  1898. left: auto;
  1899. }
  1900. .ui-datepicker-rtl .ui-datepicker-next:hover {
  1901. left: 1px;
  1902. right: auto;
  1903. }
  1904. .ui-datepicker-rtl .ui-datepicker-buttonpane {
  1905. clear: right;
  1906. }
  1907. .ui-datepicker-rtl .ui-datepicker-buttonpane button {
  1908. float: left;
  1909. }
  1910. .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  1911. float: right;
  1912. }
  1913. .ui-datepicker-rtl .ui-datepicker-group {
  1914. float: right;
  1915. }
  1916. .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  1917. border-right-width: 0;
  1918. border-left-width: 1px;
  1919. }
  1920. .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  1921. border-right-width: 0;
  1922. border-left-width: 1px;
  1923. }
  1924. /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
  1925. .ui-datepicker-cover {
  1926. display: none; /*sorry for IE5*/
  1927. display /**/: block; /*sorry for IE5*/
  1928. position: absolute; /*must have*/
  1929. z-index: -1; /*must have*/
  1930. filter: mask(); /*must have*/
  1931. top: -4px; /*must have*/
  1932. left: -4px; /*must have*/
  1933. width: 200px; /*must have*/
  1934. height: 200px; /*must have*/
  1935. }
  1936. .ui-datepicker th {
  1937. font-weight: bold;
  1938. color: gray;
  1939. }
  1940. .ui-datepicker-today a:hover {
  1941. background-color: #808080;
  1942. color: #ffffff;
  1943. }
  1944. .ui-datepicker-today a {
  1945. background-color: #BFBFBF;
  1946. cursor: pointer;
  1947. padding: 0 4px;
  1948. margin-bottom: 0px;
  1949. }
  1950. .ui-datepicker td a {
  1951. margin-bottom: 0px;
  1952. border: 0px;
  1953. }
  1954. .ui-datepicker td:hover {
  1955. color: #ffffff;
  1956. }
  1957. .ui-datepicker td .ui-state-default {
  1958. border: 0px;
  1959. background: none;
  1960. margin-bottom: 0px;
  1961. padding: 5px;
  1962. color: gray;
  1963. text-align: center;
  1964. filter: none;
  1965. }
  1966. .ui-datepicker td .ui-state-active {
  1967. background: #BFBFBF;
  1968. margin-bottom: 0px;
  1969. font-size: normal;
  1970. text-shadow: 0px;
  1971. color: #ffffff;
  1972. -webkit-border-radius: 4px;
  1973. -moz-border-radius: 4px;
  1974. border-radius: 4px;
  1975. }
  1976. .ui-datepicker td .ui-state-hover {
  1977. color: #ffffff;
  1978. background: #0064cd;
  1979. background-color: #0064cd;
  1980. background-repeat: repeat-x;
  1981. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  1982. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  1983. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  1984. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  1985. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  1986. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  1987. background-image: linear-gradient(top, #049cdb, #0064cd);
  1988. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  1989. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1990. border-color: #0064cd #0064cd #003f81;
  1991. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1992. -webkit-border-radius: 4px;
  1993. -moz-border-radius: 4px;
  1994. -khtml-border-radius: 4px;
  1995. border-radius: 4px;
  1996. }
  1997. /*
  1998. * jQuery UI Progressbar 1.8.16
  1999. *
  2000. * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
  2001. * Dual licensed under the MIT or GPL Version 2 licenses.
  2002. * http://jquery.org/license
  2003. *
  2004. * http://docs.jquery.com/UI/Progressbar#theming
  2005. */
  2006. .ui-progressbar {
  2007. height: 2em;
  2008. text-align: left;
  2009. }
  2010. .ui-progressbar .ui-progressbar-value {
  2011. margin: -1px;
  2012. height: 100%;
  2013. /*this can be removed if ui-widget-header is blue*/
  2014. color: #ffffff;
  2015. background-color: #0064cd;
  2016. background-repeat: repeat-x;
  2017. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  2018. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  2019. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  2020. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  2021. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  2022. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  2023. background-image: linear-gradient(top, #049cdb, #0064cd);
  2024. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  2025. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2026. border-color: #0064cd #0064cd #003f81;
  2027. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2028. }
  2029. /*** Input field styling from Bootstrap **/
  2030. /* input, textarea {
  2031. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  2032. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  2033. -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  2034. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  2035. transition: border linear 0.2s, box-shadow linear 0.2s;
  2036. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  2037. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  2038. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  2039. }
  2040. input:focus, textarea:focus {
  2041. outline: 0;
  2042. border-color: rgba(82, 168, 236, 0.8);
  2043. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  2044. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  2045. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  2046. }
  2047. input[type=file]:focus, input[type=checkbox]:focus, select:focus {
  2048. -webkit-box-shadow: none;
  2049. -moz-box-shadow: none;
  2050. box-shadow: none;
  2051. outline: 1px dotted #666;
  2052. }*/
  2053. /*input[type="text"],
  2054. input[type="password"],*/
  2055. .ui-autocomplete-input,
  2056. textarea,
  2057. .uneditable-input {
  2058. /*display: inline-block;*/
  2059. /*padding: 4px;*/
  2060. /*font-size: 13px;*/
  2061. /*line-height: 18px;*/
  2062. /*color: #808080;*/
  2063. /*border: 1px solid #ccc;*/
  2064. /*-webkit-border-radius: 3px;*/
  2065. /*-moz-border-radius: 3px;*/
  2066. /*border-radius: 3px;*/
  2067. }
  2068. /**Toolbar**/
  2069. .ui-toolbar {
  2070. padding: 7px 14px;
  2071. margin: 0 0 18px;
  2072. background-color: #f5f5f5;
  2073. background-repeat: repeat-x;
  2074. background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  2075. background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  2076. background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  2077. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  2078. background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  2079. background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  2080. background-image: linear-gradient(top, #ffffff, #f5f5f5);
  2081. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  2082. border: 1px solid #ddd;
  2083. -webkit-border-radius: 3px;
  2084. -moz-border-radius: 3px;
  2085. border-radius: 3px;
  2086. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  2087. -moz-box-shadow: inset 0 1px 0 #ffffff;
  2088. box-shadow: inset 0 1px 0 #ffffff;
  2089. }
  2090. /***Dialog fixes**/
  2091. .ui-dialog-buttonset .ui-button:nth-child(2) {
  2092. cursor: pointer;
  2093. display: inline-block;
  2094. background-color: #e6e6e6;
  2095. background-repeat: no-repeat;
  2096. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  2097. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  2098. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  2099. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  2100. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  2101. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  2102. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  2103. padding: 5px 14px 6px;
  2104. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  2105. color: #333;
  2106. font-size: 13px;
  2107. line-height: normal;
  2108. border: 1px solid #ccc;
  2109. border-bottom-color: #bbb;
  2110. -webkit-border-radius: 4px;
  2111. -moz-border-radius: 4px;
  2112. border-radius: 4px;
  2113. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2114. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2115. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2116. -webkit-transition: 0.1s linear all;
  2117. -moz-transition: 0.1s linear all;
  2118. -ms-transition: 0.1s linear all;
  2119. -o-transition: 0.1s linear all;
  2120. transition: 0.1s linear all;
  2121. overflow: visible;
  2122. }
  2123. /***Wijmo Theming**/
  2124. div.wijmo-wijmenu {
  2125. padding: 0 20px;
  2126. background-color: #222;
  2127. background-color: #222222;
  2128. background-repeat: repeat-x;
  2129. background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
  2130. background-image: -moz-linear-gradient(top, #333333, #222222);
  2131. background-image: -ms-linear-gradient(top, #333333, #222222);
  2132. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
  2133. background-image: -webkit-linear-gradient(top, #333333, #222222);
  2134. background-image: -o-linear-gradient(top, #333333, #222222);
  2135. background-image: linear-gradient(top, #333333, #222222);
  2136. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  2137. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  2138. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  2139. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  2140. }
  2141. .wijmo-wijmenu .ui-state-default {
  2142. box-shadow: none;
  2143. color: #BFBFBF;
  2144. }
  2145. .wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text {
  2146. color: #BFBFBF;
  2147. }
  2148. .wijmo-wijmenu .ui-state-hover {
  2149. background: #444;
  2150. background: rgba(255, 255, 255, 0.05);
  2151. }
  2152. .wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text {
  2153. color: #ffffff;
  2154. }
  2155. div.wijmo-wijmenu .ui-widget-header h3 {
  2156. position: relative;
  2157. margin-top: 1px;
  2158. padding: 0;
  2159. }
  2160. .wijmo-wijmenu h3 a {
  2161. color: #FFFFFF;
  2162. display: block;
  2163. float: left;
  2164. font-size: 20px;
  2165. font-weight: 200;
  2166. line-height: 1;
  2167. margin-left: -20px;
  2168. margin-top: 1px;
  2169. padding: 8px 20px 12px;
  2170. }
  2171. .wijmo-wijmenu h3 a:hover {
  2172. background-color: rgba(255, 255, 255, 0.05);
  2173. color: #FFFFFF;
  2174. text-decoration: none;
  2175. }
  2176. .wijmo-wijmenu .ui-widget-header {
  2177. border: 0px;
  2178. }
  2179. .wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child {
  2180. padding: 0.3em 0;
  2181. }
  2182. div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child {
  2183. background: #333;
  2184. border: 0;
  2185. margin: 0;
  2186. padding: 6px 0;
  2187. width: 160px;
  2188. -webkit-border-radius: 0 0 6px 6px;
  2189. -moz-border-radius: 0 0 6px 6px;
  2190. border-radius: 0 0 6px 6px;
  2191. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2192. -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2193. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  2194. }
  2195. div.wijmo-wijmenu .wijmo-wijmenu-item {
  2196. margin: 0;
  2197. border: 0;
  2198. }
  2199. .wijmo-wijmenu a.wijmo-wijmenu-link {
  2200. margin: 0;
  2201. line-height: 19px;
  2202. padding: 10px 10px 11px;
  2203. border: 0;
  2204. -webkit-border-radius: 0;
  2205. -moz-border-radius: 0;
  2206. border-radius: 0;
  2207. }
  2208. div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link {
  2209. display: block;
  2210. float: none;
  2211. padding: 4px 15px;
  2212. width: auto;
  2213. }
  2214. div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text {
  2215. float: none;
  2216. }
  2217. .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
  2218. background: #191919;
  2219. }
  2220. .wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator {
  2221. padding: 5px 0;
  2222. background-image: none;
  2223. background-color: #222;
  2224. border-top: 1px solid #444;
  2225. border-bottom: 0;
  2226. border-left: 0;
  2227. border-right: 0;
  2228. }
  2229. .wijmo-wijmenu .wijmo-wijmenu-item input {
  2230. -moz-transition: none 0s ease 0s;
  2231. background-color: rgba(255, 255, 255, 0.3);
  2232. border: 1px solid #111111;
  2233. border-radius: 4px 4px 4px 4px;
  2234. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
  2235. color: rgba(255, 255, 255, 0.75);
  2236. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  2237. line-height: 1;
  2238. margin: 5px 10px 0 10px;
  2239. padding: 4px 9px;
  2240. width: 100px;
  2241. }
  2242. .wijmo-wijmenu .wijmo-wijmenu-item input:hover {
  2243. background-color: rgba(255, 255, 255, 0.5);
  2244. color: #FFFFFF;
  2245. }
  2246. .wijmo-wijmenu .wijmo-wijmenu-item input:focus {
  2247. background-color: #FFFFFF;
  2248. border: 0 none;
  2249. box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  2250. color: #404040;
  2251. outline: 0 none;
  2252. padding: 5px 10px;
  2253. text-shadow: 0 1px 0 #FFFFFF;
  2254. }
  2255. .wijmo-wijmenu .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  2256. text-shadow: none;
  2257. }
  2258. .wijmo-wijmenu .ui-state-default {
  2259. box-shadow: none;
  2260. color: #BFBFBF;
  2261. filter: none;
  2262. }