bootstrap.css 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990
  1. /*!
  2. * Bootstrap v2.0.2
  3. *
  4. * Copyright 2012 Twitter, Inc
  5. * Licensed under the Apache License v2.0
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  9. */
  10. article,
  11. aside,
  12. details,
  13. figcaption,
  14. figure,
  15. footer,
  16. header,
  17. hgroup,
  18. nav,
  19. section {
  20. display: block;
  21. }
  22. audio,
  23. canvas,
  24. video {
  25. display: inline-block;
  26. *display: inline;
  27. *zoom: 1;
  28. }
  29. audio:not([controls]) {
  30. display: none;
  31. }
  32. html {
  33. font-size: 100%;
  34. -webkit-text-size-adjust: 100%;
  35. -ms-text-size-adjust: 100%;
  36. }
  37. a:focus {
  38. outline: thin dotted #333;
  39. outline: 5px auto -webkit-focus-ring-color;
  40. outline-offset: -2px;
  41. }
  42. a:hover,
  43. a:active {
  44. outline: 0;
  45. }
  46. sub,
  47. sup {
  48. position: relative;
  49. font-size: 75%;
  50. line-height: 0;
  51. vertical-align: baseline;
  52. }
  53. sup {
  54. top: -0.5em;
  55. }
  56. sub {
  57. bottom: -0.25em;
  58. }
  59. img {
  60. height: auto;
  61. border: 0;
  62. -ms-interpolation-mode: bicubic;
  63. vertical-align: middle;
  64. }
  65. button,
  66. input,
  67. select,
  68. textarea {
  69. margin: 0;
  70. font-size: 100%;
  71. vertical-align: middle;
  72. }
  73. button,
  74. input {
  75. *overflow: visible;
  76. line-height: normal;
  77. }
  78. button::-moz-focus-inner,
  79. input::-moz-focus-inner {
  80. padding: 0;
  81. border: 0;
  82. }
  83. button,
  84. input[type="button"],
  85. input[type="reset"],
  86. input[type="submit"] {
  87. cursor: pointer;
  88. -webkit-appearance: button;
  89. }
  90. input[type="search"] {
  91. -webkit-appearance: textfield;
  92. -webkit-box-sizing: content-box;
  93. -moz-box-sizing: content-box;
  94. box-sizing: content-box;
  95. }
  96. input[type="search"]::-webkit-search-decoration,
  97. input[type="search"]::-webkit-search-cancel-button {
  98. -webkit-appearance: none;
  99. }
  100. textarea {
  101. overflow: auto;
  102. vertical-align: top;
  103. }
  104. .clearfix {
  105. *zoom: 1;
  106. }
  107. .clearfix:before,
  108. .clearfix:after {
  109. display: table;
  110. content: "";
  111. }
  112. .clearfix:after {
  113. clear: both;
  114. }
  115. .hide-text {
  116. overflow: hidden;
  117. text-indent: 100%;
  118. white-space: nowrap;
  119. }
  120. .input-block-level {
  121. display: block;
  122. width: 100%;
  123. min-height: 28px;
  124. /* Make inputs at least the height of their button counterpart */
  125. /* Makes inputs behave like true block-level elements */
  126. -webkit-box-sizing: border-box;
  127. -moz-box-sizing: border-box;
  128. -ms-box-sizing: border-box;
  129. box-sizing: border-box;
  130. }
  131. body {
  132. margin: 0;
  133. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  134. font-size: 13px;
  135. line-height: 18px;
  136. color: #333333;
  137. background-color: #ffffff;
  138. }
  139. a {
  140. color: #0088cc;
  141. text-decoration: none;
  142. }
  143. a:hover {
  144. color: #005580;
  145. text-decoration: underline;
  146. }
  147. .row {
  148. margin-left: -20px;
  149. *zoom: 1;
  150. }
  151. .row:before,
  152. .row:after {
  153. display: table;
  154. content: "";
  155. }
  156. .row:after {
  157. clear: both;
  158. }
  159. [class*="span"] {
  160. float: left;
  161. margin-left: 20px;
  162. }
  163. .container,
  164. .navbar-fixed-top .container,
  165. .navbar-fixed-bottom .container {
  166. width: 940px;
  167. }
  168. .span12 {
  169. width: 940px;
  170. }
  171. .span11 {
  172. width: 860px;
  173. }
  174. .span10 {
  175. width: 780px;
  176. }
  177. .span9 {
  178. width: 700px;
  179. }
  180. .span8 {
  181. width: 620px;
  182. }
  183. .span7 {
  184. width: 540px;
  185. }
  186. .span6 {
  187. width: 460px;
  188. }
  189. .span5 {
  190. width: 380px;
  191. }
  192. .span4 {
  193. width: 300px;
  194. }
  195. .span3 {
  196. width: 220px;
  197. }
  198. .span2 {
  199. width: 140px;
  200. }
  201. .span1 {
  202. width: 60px;
  203. }
  204. .offset12 {
  205. margin-left: 980px;
  206. }
  207. .offset11 {
  208. margin-left: 900px;
  209. }
  210. .offset10 {
  211. margin-left: 820px;
  212. }
  213. .offset9 {
  214. margin-left: 740px;
  215. }
  216. .offset8 {
  217. margin-left: 660px;
  218. }
  219. .offset7 {
  220. margin-left: 580px;
  221. }
  222. .offset6 {
  223. margin-left: 500px;
  224. }
  225. .offset5 {
  226. margin-left: 420px;
  227. }
  228. .offset4 {
  229. margin-left: 340px;
  230. }
  231. .offset3 {
  232. margin-left: 260px;
  233. }
  234. .offset2 {
  235. margin-left: 180px;
  236. }
  237. .offset1 {
  238. margin-left: 100px;
  239. }
  240. .row-fluid {
  241. width: 100%;
  242. *zoom: 1;
  243. }
  244. .row-fluid:before,
  245. .row-fluid:after {
  246. display: table;
  247. content: "";
  248. }
  249. .row-fluid:after {
  250. clear: both;
  251. }
  252. .row-fluid > [class*="span"] {
  253. float: left;
  254. margin-left: 2.127659574%;
  255. }
  256. .row-fluid > [class*="span"]:first-child {
  257. margin-left: 0;
  258. }
  259. .row-fluid > .span12 {
  260. width: 99.99999998999999%;
  261. }
  262. .row-fluid > .span11 {
  263. width: 91.489361693%;
  264. }
  265. .row-fluid > .span10 {
  266. width: 82.97872339599999%;
  267. }
  268. .row-fluid > .span9 {
  269. width: 74.468085099%;
  270. }
  271. .row-fluid > .span8 {
  272. width: 65.95744680199999%;
  273. }
  274. .row-fluid > .span7 {
  275. width: 57.446808505%;
  276. }
  277. .row-fluid > .span6 {
  278. width: 48.93617020799999%;
  279. }
  280. .row-fluid > .span5 {
  281. width: 40.425531911%;
  282. }
  283. .row-fluid > .span4 {
  284. width: 31.914893614%;
  285. }
  286. .row-fluid > .span3 {
  287. width: 23.404255317%;
  288. }
  289. .row-fluid > .span2 {
  290. width: 14.89361702%;
  291. }
  292. .row-fluid > .span1 {
  293. width: 6.382978723%;
  294. }
  295. .container {
  296. margin-left: auto;
  297. margin-right: auto;
  298. *zoom: 1;
  299. }
  300. .container:before,
  301. .container:after {
  302. display: table;
  303. content: "";
  304. }
  305. .container:after {
  306. clear: both;
  307. }
  308. .container-fluid {
  309. padding-left: 20px;
  310. padding-right: 20px;
  311. *zoom: 1;
  312. }
  313. .container-fluid:before,
  314. .container-fluid:after {
  315. display: table;
  316. content: "";
  317. }
  318. .container-fluid:after {
  319. clear: both;
  320. }
  321. p {
  322. margin: 0 0 9px;
  323. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  324. font-size: 13px;
  325. line-height: 18px;
  326. }
  327. p small {
  328. font-size: 11px;
  329. color: #999999;
  330. }
  331. .lead {
  332. margin-bottom: 18px;
  333. font-size: 20px;
  334. font-weight: 200;
  335. line-height: 27px;
  336. }
  337. h1,
  338. h2,
  339. h3,
  340. h4,
  341. h5,
  342. h6 {
  343. margin: 0;
  344. font-family: inherit;
  345. font-weight: bold;
  346. color: inherit;
  347. text-rendering: optimizelegibility;
  348. }
  349. h1 small,
  350. h2 small,
  351. h3 small,
  352. h4 small,
  353. h5 small,
  354. h6 small {
  355. font-weight: normal;
  356. color: #999999;
  357. }
  358. h1 {
  359. font-size: 30px;
  360. line-height: 36px;
  361. }
  362. h1 small {
  363. font-size: 18px;
  364. }
  365. h2 {
  366. font-size: 24px;
  367. line-height: 36px;
  368. }
  369. h2 small {
  370. font-size: 18px;
  371. }
  372. h3 {
  373. line-height: 27px;
  374. font-size: 18px;
  375. }
  376. h3 small {
  377. font-size: 14px;
  378. }
  379. h4,
  380. h5,
  381. h6 {
  382. line-height: 18px;
  383. }
  384. h4 {
  385. font-size: 14px;
  386. }
  387. h4 small {
  388. font-size: 12px;
  389. }
  390. h5 {
  391. font-size: 12px;
  392. }
  393. h6 {
  394. font-size: 11px;
  395. color: #999999;
  396. text-transform: uppercase;
  397. }
  398. .page-header {
  399. padding-bottom: 17px;
  400. margin: 18px 0;
  401. border-bottom: 1px solid #eeeeee;
  402. }
  403. .page-header h1 {
  404. line-height: 1;
  405. }
  406. ul,
  407. ol {
  408. padding: 0;
  409. margin: 0 0 9px 25px;
  410. }
  411. ul ul,
  412. ul ol,
  413. ol ol,
  414. ol ul {
  415. margin-bottom: 0;
  416. }
  417. ul {
  418. list-style: disc;
  419. }
  420. ol {
  421. list-style: decimal;
  422. }
  423. li {
  424. line-height: 18px;
  425. }
  426. ul.unstyled,
  427. ol.unstyled {
  428. margin-left: 0;
  429. list-style: none;
  430. }
  431. dl {
  432. margin-bottom: 18px;
  433. }
  434. dt,
  435. dd {
  436. line-height: 18px;
  437. }
  438. dt {
  439. font-weight: bold;
  440. line-height: 17px;
  441. }
  442. dd {
  443. margin-left: 9px;
  444. }
  445. .dl-horizontal dt {
  446. float: left;
  447. clear: left;
  448. width: 120px;
  449. text-align: right;
  450. }
  451. .dl-horizontal dd {
  452. margin-left: 130px;
  453. }
  454. hr {
  455. margin: 18px 0;
  456. border: 0;
  457. border-top: 1px solid #eeeeee;
  458. border-bottom: 1px solid #ffffff;
  459. }
  460. strong {
  461. font-weight: bold;
  462. }
  463. em {
  464. font-style: italic;
  465. }
  466. .muted {
  467. color: #999999;
  468. }
  469. abbr[title] {
  470. border-bottom: 1px dotted #ddd;
  471. cursor: help;
  472. }
  473. abbr.initialism {
  474. font-size: 90%;
  475. text-transform: uppercase;
  476. }
  477. blockquote {
  478. padding: 0 0 0 15px;
  479. margin: 0 0 18px;
  480. border-left: 5px solid #eeeeee;
  481. }
  482. blockquote p {
  483. margin-bottom: 0;
  484. font-size: 16px;
  485. font-weight: 300;
  486. line-height: 22.5px;
  487. }
  488. blockquote small {
  489. display: block;
  490. line-height: 18px;
  491. color: #999999;
  492. }
  493. blockquote small:before {
  494. content: '\2014 \00A0';
  495. }
  496. blockquote.pull-right {
  497. float: right;
  498. padding-left: 0;
  499. padding-right: 15px;
  500. border-left: 0;
  501. border-right: 5px solid #eeeeee;
  502. }
  503. blockquote.pull-right p,
  504. blockquote.pull-right small {
  505. text-align: right;
  506. }
  507. q:before,
  508. q:after,
  509. blockquote:before,
  510. blockquote:after {
  511. content: "";
  512. }
  513. address {
  514. display: block;
  515. margin-bottom: 18px;
  516. line-height: 18px;
  517. font-style: normal;
  518. }
  519. small {
  520. font-size: 100%;
  521. }
  522. cite {
  523. font-style: normal;
  524. }
  525. code,
  526. pre {
  527. padding: 0 3px 2px;
  528. font-family: Menlo, Monaco, "Courier New", monospace;
  529. font-size: 12px;
  530. color: #333333;
  531. -webkit-border-radius: 3px;
  532. -moz-border-radius: 3px;
  533. border-radius: 3px;
  534. }
  535. code {
  536. padding: 2px 4px;
  537. color: #d14;
  538. background-color: #f7f7f9;
  539. border: 1px solid #e1e1e8;
  540. }
  541. pre {
  542. display: block;
  543. padding: 8.5px;
  544. margin: 0 0 9px;
  545. font-size: 12.025px;
  546. line-height: 18px;
  547. background-color: #f5f5f5;
  548. border: 1px solid #ccc;
  549. border: 1px solid rgba(0, 0, 0, 0.15);
  550. -webkit-border-radius: 4px;
  551. -moz-border-radius: 4px;
  552. border-radius: 4px;
  553. white-space: pre;
  554. white-space: pre-wrap;
  555. word-break: break-all;
  556. word-wrap: break-word;
  557. }
  558. pre.prettyprint {
  559. margin-bottom: 18px;
  560. }
  561. pre code {
  562. padding: 0;
  563. color: inherit;
  564. background-color: transparent;
  565. border: 0;
  566. }
  567. .pre-scrollable {
  568. max-height: 340px;
  569. overflow-y: scroll;
  570. }
  571. form {
  572. margin: 0 0 18px;
  573. }
  574. fieldset {
  575. padding: 0;
  576. margin: 0;
  577. border: 0;
  578. }
  579. legend {
  580. display: block;
  581. width: 100%;
  582. padding: 0;
  583. margin-bottom: 27px;
  584. font-size: 19.5px;
  585. line-height: 36px;
  586. color: #333333;
  587. border: 0;
  588. border-bottom: 1px solid #eee;
  589. }
  590. legend small {
  591. font-size: 13.5px;
  592. color: #999999;
  593. }
  594. label,
  595. input,
  596. button,
  597. select,
  598. textarea {
  599. font-size: 13px;
  600. font-weight: normal;
  601. line-height: 18px;
  602. }
  603. input,
  604. button,
  605. select,
  606. textarea {
  607. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  608. }
  609. label {
  610. display: block;
  611. margin-bottom: 5px;
  612. color: #333333;
  613. }
  614. input,
  615. textarea,
  616. select,
  617. .uneditable-input {
  618. display: inline-block;
  619. width: 210px;
  620. height: 18px;
  621. padding: 4px;
  622. margin-bottom: 9px;
  623. font-size: 13px;
  624. line-height: 18px;
  625. color: #555555;
  626. border: 1px solid #cccccc;
  627. -webkit-border-radius: 3px;
  628. -moz-border-radius: 3px;
  629. border-radius: 3px;
  630. }
  631. .uneditable-textarea {
  632. width: auto;
  633. height: auto;
  634. }
  635. label input,
  636. label textarea,
  637. label select {
  638. display: block;
  639. }
  640. input[type="image"],
  641. input[type="checkbox"],
  642. input[type="radio"] {
  643. width: auto;
  644. height: auto;
  645. padding: 0;
  646. margin: 3px 0;
  647. *margin-top: 0;
  648. /* IE7 */
  649. line-height: normal;
  650. cursor: pointer;
  651. -webkit-border-radius: 0;
  652. -moz-border-radius: 0;
  653. border-radius: 0;
  654. border: 0 \9;
  655. /* IE9 and down */
  656. }
  657. input[type="image"] {
  658. border: 0;
  659. }
  660. input[type="file"] {
  661. width: auto;
  662. padding: initial;
  663. line-height: initial;
  664. border: initial;
  665. background-color: #ffffff;
  666. background-color: initial;
  667. -webkit-box-shadow: none;
  668. -moz-box-shadow: none;
  669. box-shadow: none;
  670. }
  671. input[type="button"],
  672. input[type="reset"],
  673. input[type="submit"] {
  674. width: auto;
  675. height: auto;
  676. }
  677. select,
  678. input[type="file"] {
  679. height: 28px;
  680. /* In IE7, the height of the select element cannot be changed by height, only font-size */
  681. *margin-top: 4px;
  682. /* For IE7, add top margin to align select with labels */
  683. line-height: 28px;
  684. }
  685. input[type="file"] {
  686. line-height: 18px \9;
  687. }
  688. select {
  689. width: 220px;
  690. background-color: #ffffff;
  691. }
  692. select[multiple],
  693. select[size] {
  694. height: auto;
  695. }
  696. input[type="image"] {
  697. -webkit-box-shadow: none;
  698. -moz-box-shadow: none;
  699. box-shadow: none;
  700. }
  701. textarea {
  702. height: auto;
  703. }
  704. input[type="hidden"] {
  705. display: none;
  706. }
  707. .radio,
  708. .checkbox {
  709. padding-left: 18px;
  710. }
  711. .radio input[type="radio"],
  712. .checkbox input[type="checkbox"] {
  713. float: left;
  714. margin-left: -18px;
  715. }
  716. .controls > .radio:first-child,
  717. .controls > .checkbox:first-child {
  718. padding-top: 5px;
  719. }
  720. .radio.inline,
  721. .checkbox.inline {
  722. display: inline-block;
  723. padding-top: 5px;
  724. margin-bottom: 0;
  725. vertical-align: middle;
  726. }
  727. .radio.inline + .radio.inline,
  728. .checkbox.inline + .checkbox.inline {
  729. margin-left: 10px;
  730. }
  731. input,
  732. textarea {
  733. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  734. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  735. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  736. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  737. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  738. -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  739. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  740. transition: border linear 0.2s, box-shadow linear 0.2s;
  741. }
  742. input:focus,
  743. textarea:focus {
  744. border-color: rgba(82, 168, 236, 0.8);
  745. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  746. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  747. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  748. outline: 0;
  749. outline: thin dotted \9;
  750. /* IE6-9 */
  751. }
  752. input[type="file"]:focus,
  753. input[type="radio"]:focus,
  754. input[type="checkbox"]:focus,
  755. select:focus {
  756. -webkit-box-shadow: none;
  757. -moz-box-shadow: none;
  758. box-shadow: none;
  759. outline: thin dotted #333;
  760. outline: 5px auto -webkit-focus-ring-color;
  761. outline-offset: -2px;
  762. }
  763. .input-mini {
  764. width: 60px;
  765. }
  766. .input-small {
  767. width: 90px;
  768. }
  769. .input-medium {
  770. width: 150px;
  771. }
  772. .input-large {
  773. width: 210px;
  774. }
  775. .input-xlarge {
  776. width: 270px;
  777. }
  778. .input-xxlarge {
  779. width: 530px;
  780. }
  781. input[class*="span"],
  782. select[class*="span"],
  783. textarea[class*="span"],
  784. .uneditable-input {
  785. float: none;
  786. margin-left: 0;
  787. }
  788. input,
  789. textarea,
  790. .uneditable-input {
  791. margin-left: 0;
  792. }
  793. input.span12, textarea.span12, .uneditable-input.span12 {
  794. width: 930px;
  795. }
  796. input.span11, textarea.span11, .uneditable-input.span11 {
  797. width: 850px;
  798. }
  799. input.span10, textarea.span10, .uneditable-input.span10 {
  800. width: 770px;
  801. }
  802. input.span9, textarea.span9, .uneditable-input.span9 {
  803. width: 690px;
  804. }
  805. input.span8, textarea.span8, .uneditable-input.span8 {
  806. width: 610px;
  807. }
  808. input.span7, textarea.span7, .uneditable-input.span7 {
  809. width: 530px;
  810. }
  811. input.span6, textarea.span6, .uneditable-input.span6 {
  812. width: 450px;
  813. }
  814. input.span5, textarea.span5, .uneditable-input.span5 {
  815. width: 370px;
  816. }
  817. input.span4, textarea.span4, .uneditable-input.span4 {
  818. width: 290px;
  819. }
  820. input.span3, textarea.span3, .uneditable-input.span3 {
  821. width: 210px;
  822. }
  823. input.span2, textarea.span2, .uneditable-input.span2 {
  824. width: 130px;
  825. }
  826. input.span1, textarea.span1, .uneditable-input.span1 {
  827. width: 50px;
  828. }
  829. input[disabled],
  830. select[disabled],
  831. textarea[disabled],
  832. input[readonly],
  833. select[readonly],
  834. textarea[readonly] {
  835. background-color: #eeeeee;
  836. border-color: #ddd;
  837. cursor: not-allowed;
  838. }
  839. .control-group.warning > label,
  840. .control-group.warning .help-block,
  841. .control-group.warning .help-inline {
  842. color: #c09853;
  843. }
  844. .control-group.warning input,
  845. .control-group.warning select,
  846. .control-group.warning textarea {
  847. color: #c09853;
  848. border-color: #c09853;
  849. }
  850. .control-group.warning input:focus,
  851. .control-group.warning select:focus,
  852. .control-group.warning textarea:focus {
  853. border-color: #a47e3c;
  854. -webkit-box-shadow: 0 0 6px #dbc59e;
  855. -moz-box-shadow: 0 0 6px #dbc59e;
  856. box-shadow: 0 0 6px #dbc59e;
  857. }
  858. .control-group.warning .input-prepend .add-on,
  859. .control-group.warning .input-append .add-on {
  860. color: #c09853;
  861. background-color: #fcf8e3;
  862. border-color: #c09853;
  863. }
  864. .control-group.error > label,
  865. .control-group.error .help-block,
  866. .control-group.error .help-inline {
  867. color: #b94a48;
  868. }
  869. .control-group.error input,
  870. .control-group.error select,
  871. .control-group.error textarea {
  872. color: #b94a48;
  873. border-color: #b94a48;
  874. }
  875. .control-group.error input:focus,
  876. .control-group.error select:focus,
  877. .control-group.error textarea:focus {
  878. border-color: #953b39;
  879. -webkit-box-shadow: 0 0 6px #d59392;
  880. -moz-box-shadow: 0 0 6px #d59392;
  881. box-shadow: 0 0 6px #d59392;
  882. }
  883. .control-group.error .input-prepend .add-on,
  884. .control-group.error .input-append .add-on {
  885. color: #b94a48;
  886. background-color: #f2dede;
  887. border-color: #b94a48;
  888. }
  889. .control-group.success > label,
  890. .control-group.success .help-block,
  891. .control-group.success .help-inline {
  892. color: #468847;
  893. }
  894. .control-group.success input,
  895. .control-group.success select,
  896. .control-group.success textarea {
  897. color: #468847;
  898. border-color: #468847;
  899. }
  900. .control-group.success input:focus,
  901. .control-group.success select:focus,
  902. .control-group.success textarea:focus {
  903. border-color: #356635;
  904. -webkit-box-shadow: 0 0 6px #7aba7b;
  905. -moz-box-shadow: 0 0 6px #7aba7b;
  906. box-shadow: 0 0 6px #7aba7b;
  907. }
  908. .control-group.success .input-prepend .add-on,
  909. .control-group.success .input-append .add-on {
  910. color: #468847;
  911. background-color: #dff0d8;
  912. border-color: #468847;
  913. }
  914. input:focus:required:invalid,
  915. textarea:focus:required:invalid,
  916. select:focus:required:invalid {
  917. color: #b94a48;
  918. border-color: #ee5f5b;
  919. }
  920. input:focus:required:invalid:focus,
  921. textarea:focus:required:invalid:focus,
  922. select:focus:required:invalid:focus {
  923. border-color: #e9322d;
  924. -webkit-box-shadow: 0 0 6px #f8b9b7;
  925. -moz-box-shadow: 0 0 6px #f8b9b7;
  926. box-shadow: 0 0 6px #f8b9b7;
  927. }
  928. .form-actions {
  929. padding: 17px 20px 18px;
  930. margin-top: 18px;
  931. margin-bottom: 18px;
  932. background-color: #eeeeee;
  933. border-top: 1px solid #ddd;
  934. *zoom: 1;
  935. }
  936. .form-actions:before,
  937. .form-actions:after {
  938. display: table;
  939. content: "";
  940. }
  941. .form-actions:after {
  942. clear: both;
  943. }
  944. .uneditable-input {
  945. display: block;
  946. background-color: #ffffff;
  947. border-color: #eee;
  948. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  949. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  950. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  951. cursor: not-allowed;
  952. }
  953. :-moz-placeholder {
  954. color: #999999;
  955. }
  956. ::-webkit-input-placeholder {
  957. color: #999999;
  958. }
  959. .help-block,
  960. .help-inline {
  961. color: #555555;
  962. }
  963. .help-block {
  964. display: block;
  965. margin-bottom: 9px;
  966. }
  967. .help-inline {
  968. display: inline-block;
  969. *display: inline;
  970. /* IE7 inline-block hack */
  971. *zoom: 1;
  972. vertical-align: middle;
  973. padding-left: 5px;
  974. }
  975. .input-prepend,
  976. .input-append {
  977. margin-bottom: 5px;
  978. }
  979. .input-prepend input,
  980. .input-append input,
  981. .input-prepend select,
  982. .input-append select,
  983. .input-prepend .uneditable-input,
  984. .input-append .uneditable-input {
  985. *margin-left: 0;
  986. -webkit-border-radius: 0 3px 3px 0;
  987. -moz-border-radius: 0 3px 3px 0;
  988. border-radius: 0 3px 3px 0;
  989. }
  990. .input-prepend input:focus,
  991. .input-append input:focus,
  992. .input-prepend select:focus,
  993. .input-append select:focus,
  994. .input-prepend .uneditable-input:focus,
  995. .input-append .uneditable-input:focus {
  996. position: relative;
  997. z-index: 2;
  998. }
  999. .input-prepend .uneditable-input,
  1000. .input-append .uneditable-input {
  1001. border-left-color: #ccc;
  1002. }
  1003. .input-prepend .add-on,
  1004. .input-append .add-on {
  1005. display: inline-block;
  1006. width: auto;
  1007. min-width: 16px;
  1008. height: 18px;
  1009. padding: 4px 5px;
  1010. font-weight: normal;
  1011. line-height: 18px;
  1012. text-align: center;
  1013. text-shadow: 0 1px 0 #ffffff;
  1014. vertical-align: middle;
  1015. background-color: #eeeeee;
  1016. border: 1px solid #ccc;
  1017. }
  1018. .input-prepend .add-on,
  1019. .input-append .add-on,
  1020. .input-prepend .btn,
  1021. .input-append .btn {
  1022. -webkit-border-radius: 3px 0 0 3px;
  1023. -moz-border-radius: 3px 0 0 3px;
  1024. border-radius: 3px 0 0 3px;
  1025. }
  1026. .input-prepend .active,
  1027. .input-append .active {
  1028. background-color: #a9dba9;
  1029. border-color: #46a546;
  1030. }
  1031. .input-prepend .add-on,
  1032. .input-prepend .btn {
  1033. margin-right: -1px;
  1034. }
  1035. .input-append input,
  1036. .input-append select .uneditable-input {
  1037. -webkit-border-radius: 3px 0 0 3px;
  1038. -moz-border-radius: 3px 0 0 3px;
  1039. border-radius: 3px 0 0 3px;
  1040. }
  1041. .input-append .uneditable-input {
  1042. border-left-color: #eee;
  1043. border-right-color: #ccc;
  1044. }
  1045. .input-append .add-on,
  1046. .input-append .btn {
  1047. margin-left: -1px;
  1048. -webkit-border-radius: 0 3px 3px 0;
  1049. -moz-border-radius: 0 3px 3px 0;
  1050. border-radius: 0 3px 3px 0;
  1051. }
  1052. .input-prepend.input-append input,
  1053. .input-prepend.input-append select,
  1054. .input-prepend.input-append .uneditable-input {
  1055. -webkit-border-radius: 0;
  1056. -moz-border-radius: 0;
  1057. border-radius: 0;
  1058. }
  1059. .input-prepend.input-append .add-on:first-child,
  1060. .input-prepend.input-append .btn:first-child {
  1061. margin-right: -1px;
  1062. -webkit-border-radius: 3px 0 0 3px;
  1063. -moz-border-radius: 3px 0 0 3px;
  1064. border-radius: 3px 0 0 3px;
  1065. }
  1066. .input-prepend.input-append .add-on:last-child,
  1067. .input-prepend.input-append .btn:last-child {
  1068. margin-left: -1px;
  1069. -webkit-border-radius: 0 3px 3px 0;
  1070. -moz-border-radius: 0 3px 3px 0;
  1071. border-radius: 0 3px 3px 0;
  1072. }
  1073. .search-query {
  1074. padding-left: 14px;
  1075. padding-right: 14px;
  1076. margin-bottom: 0;
  1077. -webkit-border-radius: 14px;
  1078. -moz-border-radius: 14px;
  1079. border-radius: 14px;
  1080. }
  1081. .form-search input,
  1082. .form-inline input,
  1083. .form-horizontal input,
  1084. .form-search textarea,
  1085. .form-inline textarea,
  1086. .form-horizontal textarea,
  1087. .form-search select,
  1088. .form-inline select,
  1089. .form-horizontal select,
  1090. .form-search .help-inline,
  1091. .form-inline .help-inline,
  1092. .form-horizontal .help-inline,
  1093. .form-search .uneditable-input,
  1094. .form-inline .uneditable-input,
  1095. .form-horizontal .uneditable-input,
  1096. .form-search .input-prepend,
  1097. .form-inline .input-prepend,
  1098. .form-horizontal .input-prepend,
  1099. .form-search .input-append,
  1100. .form-inline .input-append,
  1101. .form-horizontal .input-append {
  1102. display: inline-block;
  1103. margin-bottom: 0;
  1104. }
  1105. .form-search .hide,
  1106. .form-inline .hide,
  1107. .form-horizontal .hide {
  1108. display: none;
  1109. }
  1110. .form-search label,
  1111. .form-inline label {
  1112. display: inline-block;
  1113. }
  1114. .form-search .input-append,
  1115. .form-inline .input-append,
  1116. .form-search .input-prepend,
  1117. .form-inline .input-prepend {
  1118. margin-bottom: 0;
  1119. }
  1120. .form-search .radio,
  1121. .form-search .checkbox,
  1122. .form-inline .radio,
  1123. .form-inline .checkbox {
  1124. padding-left: 0;
  1125. margin-bottom: 0;
  1126. vertical-align: middle;
  1127. }
  1128. .form-search .radio input[type="radio"],
  1129. .form-search .checkbox input[type="checkbox"],
  1130. .form-inline .radio input[type="radio"],
  1131. .form-inline .checkbox input[type="checkbox"] {
  1132. float: left;
  1133. margin-left: 0;
  1134. margin-right: 3px;
  1135. }
  1136. .control-group {
  1137. margin-bottom: 9px;
  1138. }
  1139. legend + .control-group {
  1140. margin-top: 18px;
  1141. -webkit-margin-top-collapse: separate;
  1142. }
  1143. .form-horizontal .control-group {
  1144. margin-bottom: 18px;
  1145. *zoom: 1;
  1146. }
  1147. .form-horizontal .control-group:before,
  1148. .form-horizontal .control-group:after {
  1149. display: table;
  1150. content: "";
  1151. }
  1152. .form-horizontal .control-group:after {
  1153. clear: both;
  1154. }
  1155. .form-horizontal .control-label {
  1156. float: left;
  1157. width: 140px;
  1158. padding-top: 5px;
  1159. text-align: right;
  1160. }
  1161. .form-horizontal .controls {
  1162. margin-left: 160px;
  1163. /* Super jank IE7 fix to ensure the inputs in .input-append and input-prepend don't inherit the margin of the parent, in this case .controls */
  1164. *display: inline-block;
  1165. *margin-left: 0;
  1166. *padding-left: 20px;
  1167. }
  1168. .form-horizontal .help-block {
  1169. margin-top: 9px;
  1170. margin-bottom: 0;
  1171. }
  1172. .form-horizontal .form-actions {
  1173. padding-left: 160px;
  1174. }
  1175. table {
  1176. max-width: 100%;
  1177. border-collapse: collapse;
  1178. border-spacing: 0;
  1179. background-color: transparent;
  1180. }
  1181. .table {
  1182. width: 100%;
  1183. margin-bottom: 18px;
  1184. }
  1185. .table th,
  1186. .table td {
  1187. padding: 8px;
  1188. line-height: 18px;
  1189. text-align: left;
  1190. vertical-align: top;
  1191. border-top: 1px solid #dddddd;
  1192. }
  1193. .table th {
  1194. font-weight: bold;
  1195. }
  1196. .table thead th {
  1197. vertical-align: bottom;
  1198. }
  1199. .table colgroup + thead tr:first-child th,
  1200. .table colgroup + thead tr:first-child td,
  1201. .table thead:first-child tr:first-child th,
  1202. .table thead:first-child tr:first-child td {
  1203. border-top: 0;
  1204. }
  1205. .table tbody + tbody {
  1206. border-top: 2px solid #dddddd;
  1207. }
  1208. .table-condensed th,
  1209. .table-condensed td {
  1210. padding: 4px 5px;
  1211. }
  1212. .table-bordered {
  1213. border: 1px solid #dddddd;
  1214. border-left: 0;
  1215. border-collapse: separate;
  1216. *border-collapse: collapsed;
  1217. -webkit-border-radius: 4px;
  1218. -moz-border-radius: 4px;
  1219. border-radius: 4px;
  1220. }
  1221. .table-bordered th,
  1222. .table-bordered td {
  1223. border-left: 1px solid #dddddd;
  1224. }
  1225. .table-bordered thead:first-child tr:first-child th,
  1226. .table-bordered tbody:first-child tr:first-child th,
  1227. .table-bordered tbody:first-child tr:first-child td {
  1228. border-top: 0;
  1229. }
  1230. .table-bordered thead:first-child tr:first-child th:first-child,
  1231. .table-bordered tbody:first-child tr:first-child td:first-child {
  1232. -webkit-border-radius: 4px 0 0 0;
  1233. -moz-border-radius: 4px 0 0 0;
  1234. border-radius: 4px 0 0 0;
  1235. }
  1236. .table-bordered thead:first-child tr:first-child th:last-child,
  1237. .table-bordered tbody:first-child tr:first-child td:last-child {
  1238. -webkit-border-radius: 0 4px 0 0;
  1239. -moz-border-radius: 0 4px 0 0;
  1240. border-radius: 0 4px 0 0;
  1241. }
  1242. .table-bordered thead:last-child tr:last-child th:first-child,
  1243. .table-bordered tbody:last-child tr:last-child td:first-child {
  1244. -webkit-border-radius: 0 0 0 4px;
  1245. -moz-border-radius: 0 0 0 4px;
  1246. border-radius: 0 0 0 4px;
  1247. }
  1248. .table-bordered thead:last-child tr:last-child th:last-child,
  1249. .table-bordered tbody:last-child tr:last-child td:last-child {
  1250. -webkit-border-radius: 0 0 4px 0;
  1251. -moz-border-radius: 0 0 4px 0;
  1252. border-radius: 0 0 4px 0;
  1253. }
  1254. .table-striped tbody tr:nth-child(odd) td,
  1255. .table-striped tbody tr:nth-child(odd) th {
  1256. background-color: #f9f9f9;
  1257. }
  1258. .table tbody tr:hover td,
  1259. .table tbody tr:hover th {
  1260. background-color: #f5f5f5;
  1261. }
  1262. table .span1 {
  1263. float: none;
  1264. width: 44px;
  1265. margin-left: 0;
  1266. }
  1267. table .span2 {
  1268. float: none;
  1269. width: 124px;
  1270. margin-left: 0;
  1271. }
  1272. table .span3 {
  1273. float: none;
  1274. width: 204px;
  1275. margin-left: 0;
  1276. }
  1277. table .span4 {
  1278. float: none;
  1279. width: 284px;
  1280. margin-left: 0;
  1281. }
  1282. table .span5 {
  1283. float: none;
  1284. width: 364px;
  1285. margin-left: 0;
  1286. }
  1287. table .span6 {
  1288. float: none;
  1289. width: 444px;
  1290. margin-left: 0;
  1291. }
  1292. table .span7 {
  1293. float: none;
  1294. width: 524px;
  1295. margin-left: 0;
  1296. }
  1297. table .span8 {
  1298. float: none;
  1299. width: 604px;
  1300. margin-left: 0;
  1301. }
  1302. table .span9 {
  1303. float: none;
  1304. width: 684px;
  1305. margin-left: 0;
  1306. }
  1307. table .span10 {
  1308. float: none;
  1309. width: 764px;
  1310. margin-left: 0;
  1311. }
  1312. table .span11 {
  1313. float: none;
  1314. width: 844px;
  1315. margin-left: 0;
  1316. }
  1317. table .span12 {
  1318. float: none;
  1319. width: 924px;
  1320. margin-left: 0;
  1321. }
  1322. table .span13 {
  1323. float: none;
  1324. width: 1004px;
  1325. margin-left: 0;
  1326. }
  1327. table .span14 {
  1328. float: none;
  1329. width: 1084px;
  1330. margin-left: 0;
  1331. }
  1332. table .span15 {
  1333. float: none;
  1334. width: 1164px;
  1335. margin-left: 0;
  1336. }
  1337. table .span16 {
  1338. float: none;
  1339. width: 1244px;
  1340. margin-left: 0;
  1341. }
  1342. table .span17 {
  1343. float: none;
  1344. width: 1324px;
  1345. margin-left: 0;
  1346. }
  1347. table .span18 {
  1348. float: none;
  1349. width: 1404px;
  1350. margin-left: 0;
  1351. }
  1352. table .span19 {
  1353. float: none;
  1354. width: 1484px;
  1355. margin-left: 0;
  1356. }
  1357. table .span20 {
  1358. float: none;
  1359. width: 1564px;
  1360. margin-left: 0;
  1361. }
  1362. table .span21 {
  1363. float: none;
  1364. width: 1644px;
  1365. margin-left: 0;
  1366. }
  1367. table .span22 {
  1368. float: none;
  1369. width: 1724px;
  1370. margin-left: 0;
  1371. }
  1372. table .span23 {
  1373. float: none;
  1374. width: 1804px;
  1375. margin-left: 0;
  1376. }
  1377. table .span24 {
  1378. float: none;
  1379. width: 1884px;
  1380. margin-left: 0;
  1381. }
  1382. [class^="icon-"],
  1383. [class*=" icon-"] {
  1384. display: inline-block;
  1385. width: 14px;
  1386. height: 14px;
  1387. line-height: 14px;
  1388. vertical-align: text-top;
  1389. background-image: url("../img/glyphicons-halflings.png");
  1390. background-position: 14px 14px;
  1391. background-repeat: no-repeat;
  1392. *margin-right: .3em;
  1393. }
  1394. [class^="icon-"]:last-child,
  1395. [class*=" icon-"]:last-child {
  1396. *margin-left: 0;
  1397. }
  1398. .icon-white {
  1399. background-image: url("../img/glyphicons-halflings-white.png");
  1400. }
  1401. .icon-glass {
  1402. background-position: 0 0;
  1403. }
  1404. .icon-music {
  1405. background-position: -24px 0;
  1406. }
  1407. .icon-search {
  1408. background-position: -48px 0;
  1409. }
  1410. .icon-envelope {
  1411. background-position: -72px 0;
  1412. }
  1413. .icon-heart {
  1414. background-position: -96px 0;
  1415. }
  1416. .icon-star {
  1417. background-position: -120px 0;
  1418. }
  1419. .icon-star-empty {
  1420. background-position: -144px 0;
  1421. }
  1422. .icon-user {
  1423. background-position: -168px 0;
  1424. }
  1425. .icon-film {
  1426. background-position: -192px 0;
  1427. }
  1428. .icon-th-large {
  1429. background-position: -216px 0;
  1430. }
  1431. .icon-th {
  1432. background-position: -240px 0;
  1433. }
  1434. .icon-th-list {
  1435. background-position: -264px 0;
  1436. }
  1437. .icon-ok {
  1438. background-position: -288px 0;
  1439. }
  1440. .icon-remove {
  1441. background-position: -312px 0;
  1442. }
  1443. .icon-zoom-in {
  1444. background-position: -336px 0;
  1445. }
  1446. .icon-zoom-out {
  1447. background-position: -360px 0;
  1448. }
  1449. .icon-off {
  1450. background-position: -384px 0;
  1451. }
  1452. .icon-signal {
  1453. background-position: -408px 0;
  1454. }
  1455. .icon-cog {
  1456. background-position: -432px 0;
  1457. }
  1458. .icon-trash {
  1459. background-position: -456px 0;
  1460. }
  1461. .icon-home {
  1462. background-position: 0 -24px;
  1463. }
  1464. .icon-file {
  1465. background-position: -24px -24px;
  1466. }
  1467. .icon-time {
  1468. background-position: -48px -24px;
  1469. }
  1470. .icon-road {
  1471. background-position: -72px -24px;
  1472. }
  1473. .icon-download-alt {
  1474. background-position: -96px -24px;
  1475. }
  1476. .icon-download {
  1477. background-position: -120px -24px;
  1478. }
  1479. .icon-upload {
  1480. background-position: -144px -24px;
  1481. }
  1482. .icon-inbox {
  1483. background-position: -168px -24px;
  1484. }
  1485. .icon-play-circle {
  1486. background-position: -192px -24px;
  1487. }
  1488. .icon-repeat {
  1489. background-position: -216px -24px;
  1490. }
  1491. .icon-refresh {
  1492. background-position: -240px -24px;
  1493. }
  1494. .icon-list-alt {
  1495. background-position: -264px -24px;
  1496. }
  1497. .icon-lock {
  1498. background-position: -287px -24px;
  1499. }
  1500. .icon-flag {
  1501. background-position: -312px -24px;
  1502. }
  1503. .icon-headphones {
  1504. background-position: -336px -24px;
  1505. }
  1506. .icon-volume-off {
  1507. background-position: -360px -24px;
  1508. }
  1509. .icon-volume-down {
  1510. background-position: -384px -24px;
  1511. }
  1512. .icon-volume-up {
  1513. background-position: -408px -24px;
  1514. }
  1515. .icon-qrcode {
  1516. background-position: -432px -24px;
  1517. }
  1518. .icon-barcode {
  1519. background-position: -456px -24px;
  1520. }
  1521. .icon-tag {
  1522. background-position: 0 -48px;
  1523. }
  1524. .icon-tags {
  1525. background-position: -25px -48px;
  1526. }
  1527. .icon-book {
  1528. background-position: -48px -48px;
  1529. }
  1530. .icon-bookmark {
  1531. background-position: -72px -48px;
  1532. }
  1533. .icon-print {
  1534. background-position: -96px -48px;
  1535. }
  1536. .icon-camera {
  1537. background-position: -120px -48px;
  1538. }
  1539. .icon-font {
  1540. background-position: -144px -48px;
  1541. }
  1542. .icon-bold {
  1543. background-position: -167px -48px;
  1544. }
  1545. .icon-italic {
  1546. background-position: -192px -48px;
  1547. }
  1548. .icon-text-height {
  1549. background-position: -216px -48px;
  1550. }
  1551. .icon-text-width {
  1552. background-position: -240px -48px;
  1553. }
  1554. .icon-align-left {
  1555. background-position: -264px -48px;
  1556. }
  1557. .icon-align-center {
  1558. background-position: -288px -48px;
  1559. }
  1560. .icon-align-right {
  1561. background-position: -312px -48px;
  1562. }
  1563. .icon-align-justify {
  1564. background-position: -336px -48px;
  1565. }
  1566. .icon-list {
  1567. background-position: -360px -48px;
  1568. }
  1569. .icon-indent-left {
  1570. background-position: -384px -48px;
  1571. }
  1572. .icon-indent-right {
  1573. background-position: -408px -48px;
  1574. }
  1575. .icon-facetime-video {
  1576. background-position: -432px -48px;
  1577. }
  1578. .icon-picture {
  1579. background-position: -456px -48px;
  1580. }
  1581. .icon-pencil {
  1582. background-position: 0 -72px;
  1583. }
  1584. .icon-map-marker {
  1585. background-position: -24px -72px;
  1586. }
  1587. .icon-adjust {
  1588. background-position: -48px -72px;
  1589. }
  1590. .icon-tint {
  1591. background-position: -72px -72px;
  1592. }
  1593. .icon-edit {
  1594. background-position: -96px -72px;
  1595. }
  1596. .icon-share {
  1597. background-position: -120px -72px;
  1598. }
  1599. .icon-check {
  1600. background-position: -144px -72px;
  1601. }
  1602. .icon-move {
  1603. background-position: -168px -72px;
  1604. }
  1605. .icon-step-backward {
  1606. background-position: -192px -72px;
  1607. }
  1608. .icon-fast-backward {
  1609. background-position: -216px -72px;
  1610. }
  1611. .icon-backward {
  1612. background-position: -240px -72px;
  1613. }
  1614. .icon-play {
  1615. background-position: -264px -72px;
  1616. }
  1617. .icon-pause {
  1618. background-position: -288px -72px;
  1619. }
  1620. .icon-stop {
  1621. background-position: -312px -72px;
  1622. }
  1623. .icon-forward {
  1624. background-position: -336px -72px;
  1625. }
  1626. .icon-fast-forward {
  1627. background-position: -360px -72px;
  1628. }
  1629. .icon-step-forward {
  1630. background-position: -384px -72px;
  1631. }
  1632. .icon-eject {
  1633. background-position: -408px -72px;
  1634. }
  1635. .icon-chevron-left {
  1636. background-position: -432px -72px;
  1637. }
  1638. .icon-chevron-right {
  1639. background-position: -456px -72px;
  1640. }
  1641. .icon-plus-sign {
  1642. background-position: 0 -96px;
  1643. }
  1644. .icon-minus-sign {
  1645. background-position: -24px -96px;
  1646. }
  1647. .icon-remove-sign {
  1648. background-position: -48px -96px;
  1649. }
  1650. .icon-ok-sign {
  1651. background-position: -72px -96px;
  1652. }
  1653. .icon-question-sign {
  1654. background-position: -96px -96px;
  1655. }
  1656. .icon-info-sign {
  1657. background-position: -120px -96px;
  1658. }
  1659. .icon-screenshot {
  1660. background-position: -144px -96px;
  1661. }
  1662. .icon-remove-circle {
  1663. background-position: -168px -96px;
  1664. }
  1665. .icon-ok-circle {
  1666. background-position: -192px -96px;
  1667. }
  1668. .icon-ban-circle {
  1669. background-position: -216px -96px;
  1670. }
  1671. .icon-arrow-left {
  1672. background-position: -240px -96px;
  1673. }
  1674. .icon-arrow-right {
  1675. background-position: -264px -96px;
  1676. }
  1677. .icon-arrow-up {
  1678. background-position: -289px -96px;
  1679. }
  1680. .icon-arrow-down {
  1681. background-position: -312px -96px;
  1682. }
  1683. .icon-share-alt {
  1684. background-position: -336px -96px;
  1685. }
  1686. .icon-resize-full {
  1687. background-position: -360px -96px;
  1688. }
  1689. .icon-resize-small {
  1690. background-position: -384px -96px;
  1691. }
  1692. .icon-plus {
  1693. background-position: -408px -96px;
  1694. }
  1695. .icon-minus {
  1696. background-position: -433px -96px;
  1697. }
  1698. .icon-asterisk {
  1699. background-position: -456px -96px;
  1700. }
  1701. .icon-exclamation-sign {
  1702. background-position: 0 -120px;
  1703. }
  1704. .icon-gift {
  1705. background-position: -24px -120px;
  1706. }
  1707. .icon-leaf {
  1708. background-position: -48px -120px;
  1709. }
  1710. .icon-fire {
  1711. background-position: -72px -120px;
  1712. }
  1713. .icon-eye-open {
  1714. background-position: -96px -120px;
  1715. }
  1716. .icon-eye-close {
  1717. background-position: -120px -120px;
  1718. }
  1719. .icon-warning-sign {
  1720. background-position: -144px -120px;
  1721. }
  1722. .icon-plane {
  1723. background-position: -168px -120px;
  1724. }
  1725. .icon-calendar {
  1726. background-position: -192px -120px;
  1727. }
  1728. .icon-random {
  1729. background-position: -216px -120px;
  1730. }
  1731. .icon-comment {
  1732. background-position: -240px -120px;
  1733. }
  1734. .icon-magnet {
  1735. background-position: -264px -120px;
  1736. }
  1737. .icon-chevron-up {
  1738. background-position: -288px -120px;
  1739. }
  1740. .icon-chevron-down {
  1741. background-position: -313px -119px;
  1742. }
  1743. .icon-retweet {
  1744. background-position: -336px -120px;
  1745. }
  1746. .icon-shopping-cart {
  1747. background-position: -360px -120px;
  1748. }
  1749. .icon-folder-close {
  1750. background-position: -384px -120px;
  1751. }
  1752. .icon-folder-open {
  1753. background-position: -408px -120px;
  1754. }
  1755. .icon-resize-vertical {
  1756. background-position: -432px -119px;
  1757. }
  1758. .icon-resize-horizontal {
  1759. background-position: -456px -118px;
  1760. }
  1761. .dropdown {
  1762. position: relative;
  1763. }
  1764. .dropdown-toggle {
  1765. *margin-bottom: -3px;
  1766. }
  1767. .dropdown-toggle:active,
  1768. .open .dropdown-toggle {
  1769. outline: 0;
  1770. }
  1771. .caret {
  1772. display: inline-block;
  1773. width: 0;
  1774. height: 0;
  1775. vertical-align: top;
  1776. border-left: 4px solid transparent;
  1777. border-right: 4px solid transparent;
  1778. border-top: 4px solid #000000;
  1779. opacity: 0.3;
  1780. filter: alpha(opacity=30);
  1781. content: "";
  1782. }
  1783. .dropdown .caret {
  1784. margin-top: 8px;
  1785. margin-left: 2px;
  1786. }
  1787. .dropdown:hover .caret,
  1788. .open.dropdown .caret {
  1789. opacity: 1;
  1790. filter: alpha(opacity=100);
  1791. }
  1792. .dropdown-menu {
  1793. position: absolute;
  1794. top: 100%;
  1795. left: 0;
  1796. z-index: 1000;
  1797. float: left;
  1798. display: none;
  1799. min-width: 160px;
  1800. padding: 4px 0;
  1801. margin: 0;
  1802. list-style: none;
  1803. background-color: #ffffff;
  1804. border-color: #ccc;
  1805. border-color: rgba(0, 0, 0, 0.2);
  1806. border-style: solid;
  1807. border-width: 1px;
  1808. -webkit-border-radius: 0 0 5px 5px;
  1809. -moz-border-radius: 0 0 5px 5px;
  1810. border-radius: 0 0 5px 5px;
  1811. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  1812. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  1813. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  1814. -webkit-background-clip: padding-box;
  1815. -moz-background-clip: padding;
  1816. background-clip: padding-box;
  1817. *border-right-width: 2px;
  1818. *border-bottom-width: 2px;
  1819. }
  1820. .dropdown-menu.pull-right {
  1821. right: 0;
  1822. left: auto;
  1823. }
  1824. .dropdown-menu .divider {
  1825. height: 1px;
  1826. margin: 8px 1px;
  1827. overflow: hidden;
  1828. background-color: #e5e5e5;
  1829. border-bottom: 1px solid #ffffff;
  1830. *width: 100%;
  1831. *margin: -5px 0 5px;
  1832. }
  1833. .dropdown-menu a {
  1834. display: block;
  1835. padding: 3px 15px;
  1836. clear: both;
  1837. font-weight: normal;
  1838. line-height: 18px;
  1839. color: #333333;
  1840. white-space: nowrap;
  1841. }
  1842. .dropdown-menu li > a:hover,
  1843. .dropdown-menu .active > a,
  1844. .dropdown-menu .active > a:hover {
  1845. color: #ffffff;
  1846. text-decoration: none;
  1847. background-color: #0088cc;
  1848. }
  1849. .dropdown.open {
  1850. *z-index: 1000;
  1851. }
  1852. .dropdown.open .dropdown-toggle {
  1853. color: #ffffff;
  1854. background: #ccc;
  1855. background: rgba(0, 0, 0, 0.3);
  1856. }
  1857. .dropdown.open .dropdown-menu {
  1858. display: block;
  1859. }
  1860. .pull-right .dropdown-menu {
  1861. left: auto;
  1862. right: 0;
  1863. }
  1864. .dropup .caret,
  1865. .navbar-fixed-bottom .dropdown .caret {
  1866. border-top: 0;
  1867. border-bottom: 4px solid #000000;
  1868. content: "\2191";
  1869. }
  1870. .dropup .dropdown-menu,
  1871. .navbar-fixed-bottom .dropdown .dropdown-menu {
  1872. top: auto;
  1873. bottom: 100%;
  1874. margin-bottom: 1px;
  1875. }
  1876. .typeahead {
  1877. margin-top: 2px;
  1878. -webkit-border-radius: 4px;
  1879. -moz-border-radius: 4px;
  1880. border-radius: 4px;
  1881. }
  1882. .well {
  1883. min-height: 20px;
  1884. padding: 19px;
  1885. margin-bottom: 20px;
  1886. background-color: #f5f5f5;
  1887. border: 1px solid #eee;
  1888. border: 1px solid rgba(0, 0, 0, 0.05);
  1889. -webkit-border-radius: 4px;
  1890. -moz-border-radius: 4px;
  1891. border-radius: 4px;
  1892. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1893. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1894. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1895. }
  1896. .well blockquote {
  1897. border-color: #ddd;
  1898. border-color: rgba(0, 0, 0, 0.15);
  1899. }
  1900. .well-large {
  1901. padding: 24px;
  1902. -webkit-border-radius: 6px;
  1903. -moz-border-radius: 6px;
  1904. border-radius: 6px;
  1905. }
  1906. .well-small {
  1907. padding: 9px;
  1908. -webkit-border-radius: 3px;
  1909. -moz-border-radius: 3px;
  1910. border-radius: 3px;
  1911. }
  1912. .fade {
  1913. -webkit-transition: opacity 0.15s linear;
  1914. -moz-transition: opacity 0.15s linear;
  1915. -ms-transition: opacity 0.15s linear;
  1916. -o-transition: opacity 0.15s linear;
  1917. transition: opacity 0.15s linear;
  1918. opacity: 0;
  1919. }
  1920. .fade.in {
  1921. opacity: 1;
  1922. }
  1923. .collapse {
  1924. -webkit-transition: height 0.35s ease;
  1925. -moz-transition: height 0.35s ease;
  1926. -ms-transition: height 0.35s ease;
  1927. -o-transition: height 0.35s ease;
  1928. transition: height 0.35s ease;
  1929. position: relative;
  1930. overflow: hidden;
  1931. height: 0;
  1932. }
  1933. .collapse.in {
  1934. height: auto;
  1935. }
  1936. .close {
  1937. float: right;
  1938. font-size: 20px;
  1939. font-weight: bold;
  1940. line-height: 18px;
  1941. color: #000000;
  1942. text-shadow: 0 1px 0 #ffffff;
  1943. opacity: 0.2;
  1944. filter: alpha(opacity=20);
  1945. }
  1946. .close:hover {
  1947. color: #000000;
  1948. text-decoration: none;
  1949. opacity: 0.4;
  1950. filter: alpha(opacity=40);
  1951. cursor: pointer;
  1952. }
  1953. .btn {
  1954. display: inline-block;
  1955. *display: inline;
  1956. /* IE7 inline-block hack */
  1957. *zoom: 1;
  1958. padding: 4px 10px 4px;
  1959. margin-bottom: 0;
  1960. font-size: 13px;
  1961. line-height: 18px;
  1962. color: #333333;
  1963. text-align: center;
  1964. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1965. vertical-align: middle;
  1966. background-color: #f5f5f5;
  1967. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  1968. background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  1969. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  1970. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  1971. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  1972. background-image: linear-gradient(top, #ffffff, #e6e6e6);
  1973. background-repeat: repeat-x;
  1974. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  1975. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  1976. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1977. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  1978. border: 1px solid #cccccc;
  1979. border-bottom-color: #b3b3b3;
  1980. -webkit-border-radius: 4px;
  1981. -moz-border-radius: 4px;
  1982. border-radius: 4px;
  1983. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1984. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1985. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1986. cursor: pointer;
  1987. *margin-left: .3em;
  1988. }
  1989. .btn:hover,
  1990. .btn:active,
  1991. .btn.active,
  1992. .btn.disabled,
  1993. .btn[disabled] {
  1994. background-color: #e6e6e6;
  1995. }
  1996. .btn:active,
  1997. .btn.active {
  1998. background-color: #cccccc \9;
  1999. }
  2000. .btn:first-child {
  2001. *margin-left: 0;
  2002. }
  2003. .btn:hover {
  2004. color: #333333;
  2005. text-decoration: none;
  2006. background-color: #e6e6e6;
  2007. background-position: 0 -15px;
  2008. -webkit-transition: background-position 0.1s linear;
  2009. -moz-transition: background-position 0.1s linear;
  2010. -ms-transition: background-position 0.1s linear;
  2011. -o-transition: background-position 0.1s linear;
  2012. transition: background-position 0.1s linear;
  2013. }
  2014. .btn:focus {
  2015. outline: thin dotted #333;
  2016. outline: 5px auto -webkit-focus-ring-color;
  2017. outline-offset: -2px;
  2018. }
  2019. .btn.active,
  2020. .btn:active {
  2021. background-image: none;
  2022. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2023. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2024. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2025. background-color: #e6e6e6;
  2026. background-color: #d9d9d9 \9;
  2027. outline: 0;
  2028. }
  2029. .btn.disabled,
  2030. .btn[disabled] {
  2031. cursor: default;
  2032. background-image: none;
  2033. background-color: #e6e6e6;
  2034. opacity: 0.65;
  2035. filter: alpha(opacity=65);
  2036. -webkit-box-shadow: none;
  2037. -moz-box-shadow: none;
  2038. box-shadow: none;
  2039. }
  2040. .btn-large {
  2041. padding: 9px 14px;
  2042. font-size: 15px;
  2043. line-height: normal;
  2044. -webkit-border-radius: 5px;
  2045. -moz-border-radius: 5px;
  2046. border-radius: 5px;
  2047. }
  2048. .btn-large [class^="icon-"] {
  2049. margin-top: 1px;
  2050. }
  2051. .btn-small {
  2052. padding: 5px 9px;
  2053. font-size: 11px;
  2054. line-height: 16px;
  2055. }
  2056. .btn-small [class^="icon-"] {
  2057. margin-top: -1px;
  2058. }
  2059. .btn-mini {
  2060. padding: 2px 6px;
  2061. font-size: 11px;
  2062. line-height: 14px;
  2063. }
  2064. .btn-primary,
  2065. .btn-primary:hover,
  2066. .btn-warning,
  2067. .btn-warning:hover,
  2068. .btn-danger,
  2069. .btn-danger:hover,
  2070. .btn-success,
  2071. .btn-success:hover,
  2072. .btn-info,
  2073. .btn-info:hover,
  2074. .btn-inverse,
  2075. .btn-inverse:hover {
  2076. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2077. color: #ffffff;
  2078. }
  2079. .btn-primary.active,
  2080. .btn-warning.active,
  2081. .btn-danger.active,
  2082. .btn-success.active,
  2083. .btn-info.active,
  2084. .btn-inverse.active {
  2085. color: rgba(255, 255, 255, 0.75);
  2086. }
  2087. .btn-primary {
  2088. background-color: #0074cc;
  2089. background-image: -moz-linear-gradient(top, #0088cc, #0055cc);
  2090. background-image: -ms-linear-gradient(top, #0088cc, #0055cc);
  2091. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));
  2092. background-image: -webkit-linear-gradient(top, #0088cc, #0055cc);
  2093. background-image: -o-linear-gradient(top, #0088cc, #0055cc);
  2094. background-image: linear-gradient(top, #0088cc, #0055cc);
  2095. background-repeat: repeat-x;
  2096. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);
  2097. border-color: #0055cc #0055cc #003580;
  2098. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2099. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2100. }
  2101. .btn-primary:hover,
  2102. .btn-primary:active,
  2103. .btn-primary.active,
  2104. .btn-primary.disabled,
  2105. .btn-primary[disabled] {
  2106. background-color: #0055cc;
  2107. }
  2108. .btn-primary:active,
  2109. .btn-primary.active {
  2110. background-color: #004099;
  2111. }
  2112. .btn-warning {
  2113. background-color: #faa732;
  2114. background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  2115. background-image: -ms-linear-gradient(top, #fbb450, #f89406);
  2116. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  2117. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  2118. background-image: -o-linear-gradient(top, #fbb450, #f89406);
  2119. background-image: linear-gradient(top, #fbb450, #f89406);
  2120. background-repeat: repeat-x;
  2121. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
  2122. border-color: #f89406 #f89406 #ad6704;
  2123. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2124. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2125. }
  2126. .btn-warning:hover,
  2127. .btn-warning:active,
  2128. .btn-warning.active,
  2129. .btn-warning.disabled,
  2130. .btn-warning[disabled] {
  2131. background-color: #f89406;
  2132. }
  2133. .btn-warning:active,
  2134. .btn-warning.active {
  2135. background-color: #c67605 \9;
  2136. }
  2137. .btn-danger {
  2138. background-color: #da4f49;
  2139. background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  2140. background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
  2141. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  2142. background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  2143. background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  2144. background-image: linear-gradient(top, #ee5f5b, #bd362f);
  2145. background-repeat: repeat-x;
  2146. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
  2147. border-color: #bd362f #bd362f #802420;
  2148. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2149. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2150. }
  2151. .btn-danger:hover,
  2152. .btn-danger:active,
  2153. .btn-danger.active,
  2154. .btn-danger.disabled,
  2155. .btn-danger[disabled] {
  2156. background-color: #bd362f;
  2157. }
  2158. .btn-danger:active,
  2159. .btn-danger.active {
  2160. background-color: #942a25 \9;
  2161. }
  2162. .btn-success {
  2163. background-color: #5bb75b;
  2164. background-image: -moz-linear-gradient(top, #62c462, #51a351);
  2165. background-image: -ms-linear-gradient(top, #62c462, #51a351);
  2166. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  2167. background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  2168. background-image: -o-linear-gradient(top, #62c462, #51a351);
  2169. background-image: linear-gradient(top, #62c462, #51a351);
  2170. background-repeat: repeat-x;
  2171. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
  2172. border-color: #51a351 #51a351 #387038;
  2173. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2174. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2175. }
  2176. .btn-success:hover,
  2177. .btn-success:active,
  2178. .btn-success.active,
  2179. .btn-success.disabled,
  2180. .btn-success[disabled] {
  2181. background-color: #51a351;
  2182. }
  2183. .btn-success:active,
  2184. .btn-success.active {
  2185. background-color: #408140 \9;
  2186. }
  2187. .btn-info {
  2188. background-color: #49afcd;
  2189. background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  2190. background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
  2191. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  2192. background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  2193. background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  2194. background-image: linear-gradient(top, #5bc0de, #2f96b4);
  2195. background-repeat: repeat-x;
  2196. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
  2197. border-color: #2f96b4 #2f96b4 #1f6377;
  2198. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2199. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2200. }
  2201. .btn-info:hover,
  2202. .btn-info:active,
  2203. .btn-info.active,
  2204. .btn-info.disabled,
  2205. .btn-info[disabled] {
  2206. background-color: #2f96b4;
  2207. }
  2208. .btn-info:active,
  2209. .btn-info.active {
  2210. background-color: #24748c \9;
  2211. }
  2212. .btn-inverse {
  2213. background-color: #414141;
  2214. background-image: -moz-linear-gradient(top, #555555, #222222);
  2215. background-image: -ms-linear-gradient(top, #555555, #222222);
  2216. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
  2217. background-image: -webkit-linear-gradient(top, #555555, #222222);
  2218. background-image: -o-linear-gradient(top, #555555, #222222);
  2219. background-image: linear-gradient(top, #555555, #222222);
  2220. background-repeat: repeat-x;
  2221. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
  2222. border-color: #222222 #222222 #000000;
  2223. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2224. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2225. }
  2226. .btn-inverse:hover,
  2227. .btn-inverse:active,
  2228. .btn-inverse.active,
  2229. .btn-inverse.disabled,
  2230. .btn-inverse[disabled] {
  2231. background-color: #222222;
  2232. }
  2233. .btn-inverse:active,
  2234. .btn-inverse.active {
  2235. background-color: #080808 \9;
  2236. }
  2237. button.btn,
  2238. input[type="submit"].btn {
  2239. *padding-top: 2px;
  2240. *padding-bottom: 2px;
  2241. }
  2242. button.btn::-moz-focus-inner,
  2243. input[type="submit"].btn::-moz-focus-inner {
  2244. padding: 0;
  2245. border: 0;
  2246. }
  2247. button.btn.btn-large,
  2248. input[type="submit"].btn.btn-large {
  2249. *padding-top: 7px;
  2250. *padding-bottom: 7px;
  2251. }
  2252. button.btn.btn-small,
  2253. input[type="submit"].btn.btn-small {
  2254. *padding-top: 3px;
  2255. *padding-bottom: 3px;
  2256. }
  2257. button.btn.btn-mini,
  2258. input[type="submit"].btn.btn-mini {
  2259. *padding-top: 1px;
  2260. *padding-bottom: 1px;
  2261. }
  2262. .btn-group {
  2263. position: relative;
  2264. *zoom: 1;
  2265. *margin-left: .3em;
  2266. }
  2267. .btn-group:before,
  2268. .btn-group:after {
  2269. display: table;
  2270. content: "";
  2271. }
  2272. .btn-group:after {
  2273. clear: both;
  2274. }
  2275. .btn-group:first-child {
  2276. *margin-left: 0;
  2277. }
  2278. .btn-group + .btn-group {
  2279. margin-left: 5px;
  2280. }
  2281. .btn-toolbar {
  2282. margin-top: 9px;
  2283. margin-bottom: 9px;
  2284. }
  2285. .btn-toolbar .btn-group {
  2286. display: inline-block;
  2287. *display: inline;
  2288. /* IE7 inline-block hack */
  2289. *zoom: 1;
  2290. }
  2291. .btn-group .btn {
  2292. position: relative;
  2293. float: left;
  2294. margin-left: -1px;
  2295. -webkit-border-radius: 0;
  2296. -moz-border-radius: 0;
  2297. border-radius: 0;
  2298. }
  2299. .btn-group .btn:first-child {
  2300. margin-left: 0;
  2301. -webkit-border-top-left-radius: 4px;
  2302. -moz-border-radius-topleft: 4px;
  2303. border-top-left-radius: 4px;
  2304. -webkit-border-bottom-left-radius: 4px;
  2305. -moz-border-radius-bottomleft: 4px;
  2306. border-bottom-left-radius: 4px;
  2307. }
  2308. .btn-group .btn:last-child,
  2309. .btn-group .dropdown-toggle {
  2310. -webkit-border-top-right-radius: 4px;
  2311. -moz-border-radius-topright: 4px;
  2312. border-top-right-radius: 4px;
  2313. -webkit-border-bottom-right-radius: 4px;
  2314. -moz-border-radius-bottomright: 4px;
  2315. border-bottom-right-radius: 4px;
  2316. }
  2317. .btn-group .btn.large:first-child {
  2318. margin-left: 0;
  2319. -webkit-border-top-left-radius: 6px;
  2320. -moz-border-radius-topleft: 6px;
  2321. border-top-left-radius: 6px;
  2322. -webkit-border-bottom-left-radius: 6px;
  2323. -moz-border-radius-bottomleft: 6px;
  2324. border-bottom-left-radius: 6px;
  2325. }
  2326. .btn-group .btn.large:last-child,
  2327. .btn-group .large.dropdown-toggle {
  2328. -webkit-border-top-right-radius: 6px;
  2329. -moz-border-radius-topright: 6px;
  2330. border-top-right-radius: 6px;
  2331. -webkit-border-bottom-right-radius: 6px;
  2332. -moz-border-radius-bottomright: 6px;
  2333. border-bottom-right-radius: 6px;
  2334. }
  2335. .btn-group .btn:hover,
  2336. .btn-group .btn:focus,
  2337. .btn-group .btn:active,
  2338. .btn-group .btn.active {
  2339. z-index: 2;
  2340. }
  2341. .btn-group .dropdown-toggle:active,
  2342. .btn-group.open .dropdown-toggle {
  2343. outline: 0;
  2344. }
  2345. .btn-group .dropdown-toggle {
  2346. padding-left: 8px;
  2347. padding-right: 8px;
  2348. -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2349. -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2350. box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2351. *padding-top: 3px;
  2352. *padding-bottom: 3px;
  2353. }
  2354. .btn-group .btn-mini.dropdown-toggle {
  2355. padding-left: 5px;
  2356. padding-right: 5px;
  2357. *padding-top: 1px;
  2358. *padding-bottom: 1px;
  2359. }
  2360. .btn-group .btn-small.dropdown-toggle {
  2361. *padding-top: 4px;
  2362. *padding-bottom: 4px;
  2363. }
  2364. .btn-group .btn-large.dropdown-toggle {
  2365. padding-left: 12px;
  2366. padding-right: 12px;
  2367. }
  2368. .btn-group.open {
  2369. *z-index: 1000;
  2370. }
  2371. .btn-group.open .dropdown-menu {
  2372. display: block;
  2373. margin-top: 1px;
  2374. -webkit-border-radius: 5px;
  2375. -moz-border-radius: 5px;
  2376. border-radius: 5px;
  2377. }
  2378. .btn-group.open .dropdown-toggle {
  2379. background-image: none;
  2380. -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2381. -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2382. box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2383. }
  2384. .btn .caret {
  2385. margin-top: 7px;
  2386. margin-left: 0;
  2387. }
  2388. .btn:hover .caret,
  2389. .open.btn-group .caret {
  2390. opacity: 1;
  2391. filter: alpha(opacity=100);
  2392. }
  2393. .btn-mini .caret {
  2394. margin-top: 5px;
  2395. }
  2396. .btn-small .caret {
  2397. margin-top: 6px;
  2398. }
  2399. .btn-large .caret {
  2400. margin-top: 6px;
  2401. border-left: 5px solid transparent;
  2402. border-right: 5px solid transparent;
  2403. border-top: 5px solid #000000;
  2404. }
  2405. .btn-primary .caret,
  2406. .btn-warning .caret,
  2407. .btn-danger .caret,
  2408. .btn-info .caret,
  2409. .btn-success .caret,
  2410. .btn-inverse .caret {
  2411. border-top-color: #ffffff;
  2412. border-bottom-color: #ffffff;
  2413. opacity: 0.75;
  2414. filter: alpha(opacity=75);
  2415. }
  2416. .alert {
  2417. padding: 8px 35px 8px 14px;
  2418. margin-bottom: 18px;
  2419. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  2420. background-color: #fcf8e3;
  2421. border: 1px solid #fbeed5;
  2422. -webkit-border-radius: 4px;
  2423. -moz-border-radius: 4px;
  2424. border-radius: 4px;
  2425. color: #c09853;
  2426. }
  2427. .alert-heading {
  2428. color: inherit;
  2429. }
  2430. .alert .close {
  2431. position: relative;
  2432. top: -2px;
  2433. right: -21px;
  2434. line-height: 18px;
  2435. }
  2436. .alert-success {
  2437. background-color: #dff0d8;
  2438. border-color: #d6e9c6;
  2439. color: #468847;
  2440. }
  2441. .alert-danger,
  2442. .alert-error {
  2443. background-color: #f2dede;
  2444. border-color: #eed3d7;
  2445. color: #b94a48;
  2446. }
  2447. .alert-info {
  2448. background-color: #d9edf7;
  2449. border-color: #bce8f1;
  2450. color: #3a87ad;
  2451. }
  2452. .alert-block {
  2453. padding-top: 14px;
  2454. padding-bottom: 14px;
  2455. }
  2456. .alert-block > p,
  2457. .alert-block > ul {
  2458. margin-bottom: 0;
  2459. }
  2460. .alert-block p + p {
  2461. margin-top: 5px;
  2462. }
  2463. .nav {
  2464. margin-left: 0;
  2465. margin-bottom: 18px;
  2466. list-style: none;
  2467. }
  2468. .nav > li > a {
  2469. display: block;
  2470. }
  2471. .nav > li > a:hover {
  2472. text-decoration: none;
  2473. background-color: #eeeeee;
  2474. }
  2475. .nav .nav-header {
  2476. display: block;
  2477. padding: 3px 15px;
  2478. font-size: 11px;
  2479. font-weight: bold;
  2480. line-height: 18px;
  2481. color: #999999;
  2482. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  2483. text-transform: uppercase;
  2484. }
  2485. .nav li + .nav-header {
  2486. margin-top: 9px;
  2487. }
  2488. .nav-list {
  2489. padding-left: 15px;
  2490. padding-right: 15px;
  2491. margin-bottom: 0;
  2492. }
  2493. .nav-list > li > a,
  2494. .nav-list .nav-header {
  2495. margin-left: -15px;
  2496. margin-right: -15px;
  2497. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  2498. }
  2499. .nav-list > li > a {
  2500. padding: 3px 15px;
  2501. }
  2502. .nav-list > .active > a,
  2503. .nav-list > .active > a:hover {
  2504. color: #ffffff;
  2505. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  2506. background-color: #0088cc;
  2507. }
  2508. .nav-list [class^="icon-"] {
  2509. margin-right: 2px;
  2510. }
  2511. .nav-list .divider {
  2512. height: 1px;
  2513. margin: 8px 1px;
  2514. overflow: hidden;
  2515. background-color: #e5e5e5;
  2516. border-bottom: 1px solid #ffffff;
  2517. *width: 100%;
  2518. *margin: -5px 0 5px;
  2519. }
  2520. .nav-tabs,
  2521. .nav-pills {
  2522. *zoom: 1;
  2523. }
  2524. .nav-tabs:before,
  2525. .nav-pills:before,
  2526. .nav-tabs:after,
  2527. .nav-pills:after {
  2528. display: table;
  2529. content: "";
  2530. }
  2531. .nav-tabs:after,
  2532. .nav-pills:after {
  2533. clear: both;
  2534. }
  2535. .nav-tabs > li,
  2536. .nav-pills > li {
  2537. float: left;
  2538. }
  2539. .nav-tabs > li > a,
  2540. .nav-pills > li > a {
  2541. padding-right: 12px;
  2542. padding-left: 12px;
  2543. margin-right: 2px;
  2544. line-height: 14px;
  2545. }
  2546. .nav-tabs {
  2547. border-bottom: 1px solid #ddd;
  2548. }
  2549. .nav-tabs > li {
  2550. margin-bottom: -1px;
  2551. }
  2552. .nav-tabs > li > a {
  2553. padding-top: 8px;
  2554. padding-bottom: 8px;
  2555. line-height: 18px;
  2556. border: 1px solid transparent;
  2557. -webkit-border-radius: 4px 4px 0 0;
  2558. -moz-border-radius: 4px 4px 0 0;
  2559. border-radius: 4px 4px 0 0;
  2560. }
  2561. .nav-tabs > li > a:hover {
  2562. border-color: #eeeeee #eeeeee #dddddd;
  2563. }
  2564. .nav-tabs > .active > a,
  2565. .nav-tabs > .active > a:hover {
  2566. color: #555555;
  2567. background-color: #ffffff;
  2568. border: 1px solid #ddd;
  2569. border-bottom-color: transparent;
  2570. cursor: default;
  2571. }
  2572. .nav-pills > li > a {
  2573. padding-top: 8px;
  2574. padding-bottom: 8px;
  2575. margin-top: 2px;
  2576. margin-bottom: 2px;
  2577. -webkit-border-radius: 5px;
  2578. -moz-border-radius: 5px;
  2579. border-radius: 5px;
  2580. }
  2581. .nav-pills > .active > a,
  2582. .nav-pills > .active > a:hover {
  2583. color: #ffffff;
  2584. background-color: #0088cc;
  2585. }
  2586. .nav-stacked > li {
  2587. float: none;
  2588. }
  2589. .nav-stacked > li > a {
  2590. margin-right: 0;
  2591. }
  2592. .nav-tabs.nav-stacked {
  2593. border-bottom: 0;
  2594. }
  2595. .nav-tabs.nav-stacked > li > a {
  2596. border: 1px solid #ddd;
  2597. -webkit-border-radius: 0;
  2598. -moz-border-radius: 0;
  2599. border-radius: 0;
  2600. }
  2601. .nav-tabs.nav-stacked > li:first-child > a {
  2602. -webkit-border-radius: 4px 4px 0 0;
  2603. -moz-border-radius: 4px 4px 0 0;
  2604. border-radius: 4px 4px 0 0;
  2605. }
  2606. .nav-tabs.nav-stacked > li:last-child > a {
  2607. -webkit-border-radius: 0 0 4px 4px;
  2608. -moz-border-radius: 0 0 4px 4px;
  2609. border-radius: 0 0 4px 4px;
  2610. }
  2611. .nav-tabs.nav-stacked > li > a:hover {
  2612. border-color: #ddd;
  2613. z-index: 2;
  2614. }
  2615. .nav-pills.nav-stacked > li > a {
  2616. margin-bottom: 3px;
  2617. }
  2618. .nav-pills.nav-stacked > li:last-child > a {
  2619. margin-bottom: 1px;
  2620. }
  2621. .nav-tabs .dropdown-menu,
  2622. .nav-pills .dropdown-menu {
  2623. margin-top: 1px;
  2624. border-width: 1px;
  2625. }
  2626. .nav-pills .dropdown-menu {
  2627. -webkit-border-radius: 4px;
  2628. -moz-border-radius: 4px;
  2629. border-radius: 4px;
  2630. }
  2631. .nav-tabs .dropdown-toggle .caret,
  2632. .nav-pills .dropdown-toggle .caret {
  2633. border-top-color: #0088cc;
  2634. border-bottom-color: #0088cc;
  2635. margin-top: 6px;
  2636. }
  2637. .nav-tabs .dropdown-toggle:hover .caret,
  2638. .nav-pills .dropdown-toggle:hover .caret {
  2639. border-top-color: #005580;
  2640. border-bottom-color: #005580;
  2641. }
  2642. .nav-tabs .active .dropdown-toggle .caret,
  2643. .nav-pills .active .dropdown-toggle .caret {
  2644. border-top-color: #333333;
  2645. border-bottom-color: #333333;
  2646. }
  2647. .nav > .dropdown.active > a:hover {
  2648. color: #000000;
  2649. cursor: pointer;
  2650. }
  2651. .nav-tabs .open .dropdown-toggle,
  2652. .nav-pills .open .dropdown-toggle,
  2653. .nav > .open.active > a:hover {
  2654. color: #ffffff;
  2655. background-color: #999999;
  2656. border-color: #999999;
  2657. }
  2658. .nav .open .caret,
  2659. .nav .open.active .caret,
  2660. .nav .open a:hover .caret {
  2661. border-top-color: #ffffff;
  2662. border-bottom-color: #ffffff;
  2663. opacity: 1;
  2664. filter: alpha(opacity=100);
  2665. }
  2666. .tabs-stacked .open > a:hover {
  2667. border-color: #999999;
  2668. }
  2669. .tabbable {
  2670. *zoom: 1;
  2671. }
  2672. .tabbable:before,
  2673. .tabbable:after {
  2674. display: table;
  2675. content: "";
  2676. }
  2677. .tabbable:after {
  2678. clear: both;
  2679. }
  2680. .tab-content {
  2681. display: table;
  2682. width: 100%;
  2683. }
  2684. .tabs-below .nav-tabs,
  2685. .tabs-right .nav-tabs,
  2686. .tabs-left .nav-tabs {
  2687. border-bottom: 0;
  2688. }
  2689. .tab-content > .tab-pane,
  2690. .pill-content > .pill-pane {
  2691. display: none;
  2692. }
  2693. .tab-content > .active,
  2694. .pill-content > .active {
  2695. display: block;
  2696. }
  2697. .tabs-below .nav-tabs {
  2698. border-top: 1px solid #ddd;
  2699. }
  2700. .tabs-below .nav-tabs > li {
  2701. margin-top: -1px;
  2702. margin-bottom: 0;
  2703. }
  2704. .tabs-below .nav-tabs > li > a {
  2705. -webkit-border-radius: 0 0 4px 4px;
  2706. -moz-border-radius: 0 0 4px 4px;
  2707. border-radius: 0 0 4px 4px;
  2708. }
  2709. .tabs-below .nav-tabs > li > a:hover {
  2710. border-bottom-color: transparent;
  2711. border-top-color: #ddd;
  2712. }
  2713. .tabs-below .nav-tabs .active > a,
  2714. .tabs-below .nav-tabs .active > a:hover {
  2715. border-color: transparent #ddd #ddd #ddd;
  2716. }
  2717. .tabs-left .nav-tabs > li,
  2718. .tabs-right .nav-tabs > li {
  2719. float: none;
  2720. }
  2721. .tabs-left .nav-tabs > li > a,
  2722. .tabs-right .nav-tabs > li > a {
  2723. min-width: 74px;
  2724. margin-right: 0;
  2725. margin-bottom: 3px;
  2726. }
  2727. .tabs-left .nav-tabs {
  2728. float: left;
  2729. margin-right: 19px;
  2730. border-right: 1px solid #ddd;
  2731. }
  2732. .tabs-left .nav-tabs > li > a {
  2733. margin-right: -1px;
  2734. -webkit-border-radius: 4px 0 0 4px;
  2735. -moz-border-radius: 4px 0 0 4px;
  2736. border-radius: 4px 0 0 4px;
  2737. }
  2738. .tabs-left .nav-tabs > li > a:hover {
  2739. border-color: #eeeeee #dddddd #eeeeee #eeeeee;
  2740. }
  2741. .tabs-left .nav-tabs .active > a,
  2742. .tabs-left .nav-tabs .active > a:hover {
  2743. border-color: #ddd transparent #ddd #ddd;
  2744. *border-right-color: #ffffff;
  2745. }
  2746. .tabs-right .nav-tabs {
  2747. float: right;
  2748. margin-left: 19px;
  2749. border-left: 1px solid #ddd;
  2750. }
  2751. .tabs-right .nav-tabs > li > a {
  2752. margin-left: -1px;
  2753. -webkit-border-radius: 0 4px 4px 0;
  2754. -moz-border-radius: 0 4px 4px 0;
  2755. border-radius: 0 4px 4px 0;
  2756. }
  2757. .tabs-right .nav-tabs > li > a:hover {
  2758. border-color: #eeeeee #eeeeee #eeeeee #dddddd;
  2759. }
  2760. .tabs-right .nav-tabs .active > a,
  2761. .tabs-right .nav-tabs .active > a:hover {
  2762. border-color: #ddd #ddd #ddd transparent;
  2763. *border-left-color: #ffffff;
  2764. }
  2765. .navbar {
  2766. *position: relative;
  2767. *z-index: 2;
  2768. overflow: visible;
  2769. margin-bottom: 18px;
  2770. }
  2771. .navbar-inner {
  2772. padding-left: 20px;
  2773. padding-right: 20px;
  2774. background-color: #2c2c2c;
  2775. background-image: -moz-linear-gradient(top, #333333, #222222);
  2776. background-image: -ms-linear-gradient(top, #333333, #222222);
  2777. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
  2778. background-image: -webkit-linear-gradient(top, #333333, #222222);
  2779. background-image: -o-linear-gradient(top, #333333, #222222);
  2780. background-image: linear-gradient(top, #333333, #222222);
  2781. background-repeat: repeat-x;
  2782. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  2783. -webkit-border-radius: 4px;
  2784. -moz-border-radius: 4px;
  2785. border-radius: 4px;
  2786. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  2787. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  2788. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  2789. }
  2790. .navbar .container {
  2791. width: auto;
  2792. }
  2793. .btn-navbar {
  2794. display: none;
  2795. float: right;
  2796. padding: 7px 10px;
  2797. margin-left: 5px;
  2798. margin-right: 5px;
  2799. background-color: #2c2c2c;
  2800. background-image: -moz-linear-gradient(top, #333333, #222222);
  2801. background-image: -ms-linear-gradient(top, #333333, #222222);
  2802. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
  2803. background-image: -webkit-linear-gradient(top, #333333, #222222);
  2804. background-image: -o-linear-gradient(top, #333333, #222222);
  2805. background-image: linear-gradient(top, #333333, #222222);
  2806. background-repeat: repeat-x;
  2807. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  2808. border-color: #222222 #222222 #000000;
  2809. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2810. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2811. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  2812. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  2813. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  2814. }
  2815. .btn-navbar:hover,
  2816. .btn-navbar:active,
  2817. .btn-navbar.active,
  2818. .btn-navbar.disabled,
  2819. .btn-navbar[disabled] {
  2820. background-color: #222222;
  2821. }
  2822. .btn-navbar:active,
  2823. .btn-navbar.active {
  2824. background-color: #080808 \9;
  2825. }
  2826. .btn-navbar .icon-bar {
  2827. display: block;
  2828. width: 18px;
  2829. height: 2px;
  2830. background-color: #f5f5f5;
  2831. -webkit-border-radius: 1px;
  2832. -moz-border-radius: 1px;
  2833. border-radius: 1px;
  2834. -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  2835. -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  2836. box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  2837. }
  2838. .btn-navbar .icon-bar + .icon-bar {
  2839. margin-top: 3px;
  2840. }
  2841. .nav-collapse.collapse {
  2842. height: auto;
  2843. }
  2844. .navbar {
  2845. color: #999999;
  2846. }
  2847. .navbar .brand:hover {
  2848. text-decoration: none;
  2849. }
  2850. .navbar .brand {
  2851. float: left;
  2852. display: block;
  2853. padding: 8px 20px 12px;
  2854. margin-left: -20px;
  2855. font-size: 20px;
  2856. font-weight: 200;
  2857. line-height: 1;
  2858. color: #ffffff;
  2859. }
  2860. .navbar .navbar-text {
  2861. margin-bottom: 0;
  2862. line-height: 40px;
  2863. }
  2864. .navbar .btn,
  2865. .navbar .btn-group {
  2866. margin-top: 5px;
  2867. }
  2868. .navbar .btn-group .btn {
  2869. margin-top: 0;
  2870. }
  2871. .navbar-form {
  2872. margin-bottom: 0;
  2873. *zoom: 1;
  2874. }
  2875. .navbar-form:before,
  2876. .navbar-form:after {
  2877. display: table;
  2878. content: "";
  2879. }
  2880. .navbar-form:after {
  2881. clear: both;
  2882. }
  2883. .navbar-form input,
  2884. .navbar-form select,
  2885. .navbar-form .radio,
  2886. .navbar-form .checkbox {
  2887. margin-top: 5px;
  2888. }
  2889. .navbar-form input,
  2890. .navbar-form select {
  2891. display: inline-block;
  2892. margin-bottom: 0;
  2893. }
  2894. .navbar-form input[type="image"],
  2895. .navbar-form input[type="checkbox"],
  2896. .navbar-form input[type="radio"] {
  2897. margin-top: 3px;
  2898. }
  2899. .navbar-form .input-append,
  2900. .navbar-form .input-prepend {
  2901. margin-top: 6px;
  2902. white-space: nowrap;
  2903. }
  2904. .navbar-form .input-append input,
  2905. .navbar-form .input-prepend input {
  2906. margin-top: 0;
  2907. }
  2908. .navbar-search {
  2909. position: relative;
  2910. float: left;
  2911. margin-top: 6px;
  2912. margin-bottom: 0;
  2913. }
  2914. .navbar-search .search-query {
  2915. padding: 4px 9px;
  2916. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  2917. font-size: 13px;
  2918. font-weight: normal;
  2919. line-height: 1;
  2920. color: #ffffff;
  2921. background-color: #626262;
  2922. border: 1px solid #151515;
  2923. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  2924. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  2925. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  2926. -webkit-transition: none;
  2927. -moz-transition: none;
  2928. -ms-transition: none;
  2929. -o-transition: none;
  2930. transition: none;
  2931. }
  2932. .navbar-search .search-query:-moz-placeholder {
  2933. color: #cccccc;
  2934. }
  2935. .navbar-search .search-query::-webkit-input-placeholder {
  2936. color: #cccccc;
  2937. }
  2938. .navbar-search .search-query:focus,
  2939. .navbar-search .search-query.focused {
  2940. padding: 5px 10px;
  2941. color: #333333;
  2942. text-shadow: 0 1px 0 #ffffff;
  2943. background-color: #ffffff;
  2944. border: 0;
  2945. -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  2946. -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  2947. box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  2948. outline: 0;
  2949. }
  2950. .navbar-fixed-top,
  2951. .navbar-fixed-bottom {
  2952. position: fixed;
  2953. right: 0;
  2954. left: 0;
  2955. z-index: 1030;
  2956. margin-bottom: 0;
  2957. }
  2958. .navbar-fixed-top .navbar-inner,
  2959. .navbar-fixed-bottom .navbar-inner {
  2960. padding-left: 0;
  2961. padding-right: 0;
  2962. -webkit-border-radius: 0;
  2963. -moz-border-radius: 0;
  2964. border-radius: 0;
  2965. }
  2966. .navbar-fixed-top .container,
  2967. .navbar-fixed-bottom .container {
  2968. width: 940px;
  2969. }
  2970. .navbar-fixed-top {
  2971. top: 0;
  2972. }
  2973. .navbar-fixed-bottom {
  2974. bottom: 0;
  2975. }
  2976. .navbar .nav {
  2977. position: relative;
  2978. left: 0;
  2979. display: block;
  2980. float: left;
  2981. margin: 0 10px 0 0;
  2982. }
  2983. .navbar .nav.pull-right {
  2984. float: right;
  2985. }
  2986. .navbar .nav > li {
  2987. display: block;
  2988. float: left;
  2989. }
  2990. .navbar .nav > li > a {
  2991. float: none;
  2992. padding: 10px 10px 11px;
  2993. line-height: 19px;
  2994. color: #999999;
  2995. text-decoration: none;
  2996. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2997. }
  2998. .navbar .nav > li > a:hover {
  2999. background-color: transparent;
  3000. color: #ffffff;
  3001. text-decoration: none;
  3002. }
  3003. .navbar .nav .active > a,
  3004. .navbar .nav .active > a:hover {
  3005. color: #ffffff;
  3006. text-decoration: none;
  3007. background-color: #222222;
  3008. }
  3009. .navbar .divider-vertical {
  3010. height: 40px;
  3011. width: 1px;
  3012. margin: 0 9px;
  3013. overflow: hidden;
  3014. background-color: #222222;
  3015. border-right: 1px solid #333333;
  3016. }
  3017. .navbar .nav.pull-right {
  3018. margin-left: 10px;
  3019. margin-right: 0;
  3020. }
  3021. .navbar .dropdown-menu {
  3022. margin-top: 1px;
  3023. -webkit-border-radius: 4px;
  3024. -moz-border-radius: 4px;
  3025. border-radius: 4px;
  3026. }
  3027. .navbar .dropdown-menu:before {
  3028. content: '';
  3029. display: inline-block;
  3030. border-left: 7px solid transparent;
  3031. border-right: 7px solid transparent;
  3032. border-bottom: 7px solid #ccc;
  3033. border-bottom-color: rgba(0, 0, 0, 0.2);
  3034. position: absolute;
  3035. top: -7px;
  3036. left: 9px;
  3037. }
  3038. .navbar .dropdown-menu:after {
  3039. content: '';
  3040. display: inline-block;
  3041. border-left: 6px solid transparent;
  3042. border-right: 6px solid transparent;
  3043. border-bottom: 6px solid #ffffff;
  3044. position: absolute;
  3045. top: -6px;
  3046. left: 10px;
  3047. }
  3048. .navbar-fixed-bottom .dropdown-menu:before {
  3049. border-top: 7px solid #ccc;
  3050. border-top-color: rgba(0, 0, 0, 0.2);
  3051. border-bottom: 0;
  3052. bottom: -7px;
  3053. top: auto;
  3054. }
  3055. .navbar-fixed-bottom .dropdown-menu:after {
  3056. border-top: 6px solid #ffffff;
  3057. border-bottom: 0;
  3058. bottom: -6px;
  3059. top: auto;
  3060. }
  3061. .navbar .nav .dropdown-toggle .caret,
  3062. .navbar .nav .open.dropdown .caret {
  3063. border-top-color: #ffffff;
  3064. border-bottom-color: #ffffff;
  3065. }
  3066. .navbar .nav .active .caret {
  3067. opacity: 1;
  3068. filter: alpha(opacity=100);
  3069. }
  3070. .navbar .nav .open > .dropdown-toggle,
  3071. .navbar .nav .active > .dropdown-toggle,
  3072. .navbar .nav .open.active > .dropdown-toggle {
  3073. background-color: transparent;
  3074. }
  3075. .navbar .nav .active > .dropdown-toggle:hover {
  3076. color: #ffffff;
  3077. }
  3078. .navbar .nav.pull-right .dropdown-menu,
  3079. .navbar .nav .dropdown-menu.pull-right {
  3080. left: auto;
  3081. right: 0;
  3082. }
  3083. .navbar .nav.pull-right .dropdown-menu:before,
  3084. .navbar .nav .dropdown-menu.pull-right:before {
  3085. left: auto;
  3086. right: 12px;
  3087. }
  3088. .navbar .nav.pull-right .dropdown-menu:after,
  3089. .navbar .nav .dropdown-menu.pull-right:after {
  3090. left: auto;
  3091. right: 13px;
  3092. }
  3093. .breadcrumb {
  3094. padding: 7px 14px;
  3095. margin: 0 0 18px;
  3096. list-style: none;
  3097. background-color: #fbfbfb;
  3098. background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  3099. background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  3100. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
  3101. background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  3102. background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  3103. background-image: linear-gradient(top, #ffffff, #f5f5f5);
  3104. background-repeat: repeat-x;
  3105. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  3106. border: 1px solid #ddd;
  3107. -webkit-border-radius: 3px;
  3108. -moz-border-radius: 3px;
  3109. border-radius: 3px;
  3110. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  3111. -moz-box-shadow: inset 0 1px 0 #ffffff;
  3112. box-shadow: inset 0 1px 0 #ffffff;
  3113. }
  3114. .breadcrumb li {
  3115. display: inline-block;
  3116. *display: inline;
  3117. /* IE7 inline-block hack */
  3118. *zoom: 1;
  3119. text-shadow: 0 1px 0 #ffffff;
  3120. }
  3121. .breadcrumb .divider {
  3122. padding: 0 5px;
  3123. color: #999999;
  3124. }
  3125. .breadcrumb .active a {
  3126. color: #333333;
  3127. }
  3128. .pagination {
  3129. height: 36px;
  3130. margin: 18px 0;
  3131. }
  3132. .pagination ul {
  3133. display: inline-block;
  3134. *display: inline;
  3135. /* IE7 inline-block hack */
  3136. *zoom: 1;
  3137. margin-left: 0;
  3138. margin-bottom: 0;
  3139. -webkit-border-radius: 3px;
  3140. -moz-border-radius: 3px;
  3141. border-radius: 3px;
  3142. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3143. -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3144. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3145. }
  3146. .pagination li {
  3147. display: inline;
  3148. }
  3149. .pagination a {
  3150. float: left;
  3151. padding: 0 14px;
  3152. line-height: 34px;
  3153. text-decoration: none;
  3154. border: 1px solid #ddd;
  3155. border-left-width: 0;
  3156. }
  3157. .pagination a:hover,
  3158. .pagination .active a {
  3159. background-color: #f5f5f5;
  3160. }
  3161. .pagination .active a {
  3162. color: #999999;
  3163. cursor: default;
  3164. }
  3165. .pagination .disabled span,
  3166. .pagination .disabled a,
  3167. .pagination .disabled a:hover {
  3168. color: #999999;
  3169. background-color: transparent;
  3170. cursor: default;
  3171. }
  3172. .pagination li:first-child a {
  3173. border-left-width: 1px;
  3174. -webkit-border-radius: 3px 0 0 3px;
  3175. -moz-border-radius: 3px 0 0 3px;
  3176. border-radius: 3px 0 0 3px;
  3177. }
  3178. .pagination li:last-child a {
  3179. -webkit-border-radius: 0 3px 3px 0;
  3180. -moz-border-radius: 0 3px 3px 0;
  3181. border-radius: 0 3px 3px 0;
  3182. }
  3183. .pagination-centered {
  3184. text-align: center;
  3185. }
  3186. .pagination-right {
  3187. text-align: right;
  3188. }
  3189. .pager {
  3190. margin-left: 0;
  3191. margin-bottom: 18px;
  3192. list-style: none;
  3193. text-align: center;
  3194. *zoom: 1;
  3195. }
  3196. .pager:before,
  3197. .pager:after {
  3198. display: table;
  3199. content: "";
  3200. }
  3201. .pager:after {
  3202. clear: both;
  3203. }
  3204. .pager li {
  3205. display: inline;
  3206. }
  3207. .pager a {
  3208. display: inline-block;
  3209. padding: 5px 14px;
  3210. background-color: #fff;
  3211. border: 1px solid #ddd;
  3212. -webkit-border-radius: 15px;
  3213. -moz-border-radius: 15px;
  3214. border-radius: 15px;
  3215. }
  3216. .pager a:hover {
  3217. text-decoration: none;
  3218. background-color: #f5f5f5;
  3219. }
  3220. .pager .next a {
  3221. float: right;
  3222. }
  3223. .pager .previous a {
  3224. float: left;
  3225. }
  3226. .pager .disabled a,
  3227. .pager .disabled a:hover {
  3228. color: #999999;
  3229. background-color: #fff;
  3230. cursor: default;
  3231. }
  3232. .modal-open .dropdown-menu {
  3233. z-index: 2050;
  3234. }
  3235. .modal-open .dropdown.open {
  3236. *z-index: 2050;
  3237. }
  3238. .modal-open .popover {
  3239. z-index: 2060;
  3240. }
  3241. .modal-open .tooltip {
  3242. z-index: 2070;
  3243. }
  3244. .modal-backdrop {
  3245. position: fixed;
  3246. top: 0;
  3247. right: 0;
  3248. bottom: 0;
  3249. left: 0;
  3250. z-index: 1040;
  3251. background-color: #000000;
  3252. }
  3253. .modal-backdrop.fade {
  3254. opacity: 0;
  3255. }
  3256. .modal-backdrop,
  3257. .modal-backdrop.fade.in {
  3258. opacity: 0.8;
  3259. filter: alpha(opacity=80);
  3260. }
  3261. .modal {
  3262. position: fixed;
  3263. top: 50%;
  3264. left: 50%;
  3265. z-index: 1050;
  3266. overflow: auto;
  3267. width: 560px;
  3268. margin: -250px 0 0 -280px;
  3269. background-color: #ffffff;
  3270. border: 1px solid #999;
  3271. border: 1px solid rgba(0, 0, 0, 0.3);
  3272. *border: 1px solid #999;
  3273. /* IE6-7 */
  3274. -webkit-border-radius: 6px;
  3275. -moz-border-radius: 6px;
  3276. border-radius: 6px;
  3277. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3278. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3279. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3280. -webkit-background-clip: padding-box;
  3281. -moz-background-clip: padding-box;
  3282. background-clip: padding-box;
  3283. }
  3284. .modal.fade {
  3285. -webkit-transition: opacity .3s linear, top .3s ease-out;
  3286. -moz-transition: opacity .3s linear, top .3s ease-out;
  3287. -ms-transition: opacity .3s linear, top .3s ease-out;
  3288. -o-transition: opacity .3s linear, top .3s ease-out;
  3289. transition: opacity .3s linear, top .3s ease-out;
  3290. top: -25%;
  3291. }
  3292. .modal.fade.in {
  3293. top: 50%;
  3294. }
  3295. .modal-header {
  3296. padding: 9px 15px;
  3297. border-bottom: 1px solid #eee;
  3298. }
  3299. .modal-header .close {
  3300. margin-top: 2px;
  3301. }
  3302. .modal-body {
  3303. overflow-y: auto;
  3304. max-height: 400px;
  3305. padding: 15px;
  3306. }
  3307. .modal-form {
  3308. margin-bottom: 0;
  3309. }
  3310. .modal-footer {
  3311. padding: 14px 15px 15px;
  3312. margin-bottom: 0;
  3313. text-align: right;
  3314. background-color: #f5f5f5;
  3315. border-top: 1px solid #ddd;
  3316. -webkit-border-radius: 0 0 6px 6px;
  3317. -moz-border-radius: 0 0 6px 6px;
  3318. border-radius: 0 0 6px 6px;
  3319. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  3320. -moz-box-shadow: inset 0 1px 0 #ffffff;
  3321. box-shadow: inset 0 1px 0 #ffffff;
  3322. *zoom: 1;
  3323. }
  3324. .modal-footer:before,
  3325. .modal-footer:after {
  3326. display: table;
  3327. content: "";
  3328. }
  3329. .modal-footer:after {
  3330. clear: both;
  3331. }
  3332. .modal-footer .btn + .btn {
  3333. margin-left: 5px;
  3334. margin-bottom: 0;
  3335. }
  3336. .modal-footer .btn-group .btn + .btn {
  3337. margin-left: -1px;
  3338. }
  3339. .tooltip {
  3340. position: absolute;
  3341. z-index: 1020;
  3342. display: block;
  3343. visibility: visible;
  3344. padding: 5px;
  3345. font-size: 11px;
  3346. opacity: 0;
  3347. filter: alpha(opacity=0);
  3348. }
  3349. .tooltip.in {
  3350. opacity: 0.8;
  3351. filter: alpha(opacity=80);
  3352. }
  3353. .tooltip.top {
  3354. margin-top: -2px;
  3355. }
  3356. .tooltip.right {
  3357. margin-left: 2px;
  3358. }
  3359. .tooltip.bottom {
  3360. margin-top: 2px;
  3361. }
  3362. .tooltip.left {
  3363. margin-left: -2px;
  3364. }
  3365. .tooltip.top .tooltip-arrow {
  3366. bottom: 0;
  3367. left: 50%;
  3368. margin-left: -5px;
  3369. border-left: 5px solid transparent;
  3370. border-right: 5px solid transparent;
  3371. border-top: 5px solid #000000;
  3372. }
  3373. .tooltip.left .tooltip-arrow {
  3374. top: 50%;
  3375. right: 0;
  3376. margin-top: -5px;
  3377. border-top: 5px solid transparent;
  3378. border-bottom: 5px solid transparent;
  3379. border-left: 5px solid #000000;
  3380. }
  3381. .tooltip.bottom .tooltip-arrow {
  3382. top: 0;
  3383. left: 50%;
  3384. margin-left: -5px;
  3385. border-left: 5px solid transparent;
  3386. border-right: 5px solid transparent;
  3387. border-bottom: 5px solid #000000;
  3388. }
  3389. .tooltip.right .tooltip-arrow {
  3390. top: 50%;
  3391. left: 0;
  3392. margin-top: -5px;
  3393. border-top: 5px solid transparent;
  3394. border-bottom: 5px solid transparent;
  3395. border-right: 5px solid #000000;
  3396. }
  3397. .tooltip-inner {
  3398. max-width: 200px;
  3399. padding: 3px 8px;
  3400. color: #ffffff;
  3401. text-align: center;
  3402. text-decoration: none;
  3403. background-color: #000000;
  3404. -webkit-border-radius: 4px;
  3405. -moz-border-radius: 4px;
  3406. border-radius: 4px;
  3407. }
  3408. .tooltip-arrow {
  3409. position: absolute;
  3410. width: 0;
  3411. height: 0;
  3412. }
  3413. .popover {
  3414. position: absolute;
  3415. top: 0;
  3416. left: 0;
  3417. z-index: 1010;
  3418. display: none;
  3419. padding: 5px;
  3420. }
  3421. .popover.top {
  3422. margin-top: -5px;
  3423. }
  3424. .popover.right {
  3425. margin-left: 5px;
  3426. }
  3427. .popover.bottom {
  3428. margin-top: 5px;
  3429. }
  3430. .popover.left {
  3431. margin-left: -5px;
  3432. }
  3433. .popover.top .arrow {
  3434. bottom: 0;
  3435. left: 50%;
  3436. margin-left: -5px;
  3437. border-left: 5px solid transparent;
  3438. border-right: 5px solid transparent;
  3439. border-top: 5px solid #000000;
  3440. }
  3441. .popover.right .arrow {
  3442. top: 50%;
  3443. left: 0;
  3444. margin-top: -5px;
  3445. border-top: 5px solid transparent;
  3446. border-bottom: 5px solid transparent;
  3447. border-right: 5px solid #000000;
  3448. }
  3449. .popover.bottom .arrow {
  3450. top: 0;
  3451. left: 50%;
  3452. margin-left: -5px;
  3453. border-left: 5px solid transparent;
  3454. border-right: 5px solid transparent;
  3455. border-bottom: 5px solid #000000;
  3456. }
  3457. .popover.left .arrow {
  3458. top: 50%;
  3459. right: 0;
  3460. margin-top: -5px;
  3461. border-top: 5px solid transparent;
  3462. border-bottom: 5px solid transparent;
  3463. border-left: 5px solid #000000;
  3464. }
  3465. .popover .arrow {
  3466. position: absolute;
  3467. width: 0;
  3468. height: 0;
  3469. }
  3470. .popover-inner {
  3471. padding: 3px;
  3472. width: 280px;
  3473. overflow: hidden;
  3474. background: #000000;
  3475. background: rgba(0, 0, 0, 0.8);
  3476. -webkit-border-radius: 6px;
  3477. -moz-border-radius: 6px;
  3478. border-radius: 6px;
  3479. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3480. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3481. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3482. }
  3483. .popover-title {
  3484. padding: 9px 15px;
  3485. line-height: 1;
  3486. background-color: #f5f5f5;
  3487. border-bottom: 1px solid #eee;
  3488. -webkit-border-radius: 3px 3px 0 0;
  3489. -moz-border-radius: 3px 3px 0 0;
  3490. border-radius: 3px 3px 0 0;
  3491. }
  3492. .popover-content {
  3493. padding: 14px;
  3494. background-color: #ffffff;
  3495. -webkit-border-radius: 0 0 3px 3px;
  3496. -moz-border-radius: 0 0 3px 3px;
  3497. border-radius: 0 0 3px 3px;
  3498. -webkit-background-clip: padding-box;
  3499. -moz-background-clip: padding-box;
  3500. background-clip: padding-box;
  3501. }
  3502. .popover-content p,
  3503. .popover-content ul,
  3504. .popover-content ol {
  3505. margin-bottom: 0;
  3506. }
  3507. .thumbnails {
  3508. margin-left: -20px;
  3509. list-style: none;
  3510. *zoom: 1;
  3511. }
  3512. .thumbnails:before,
  3513. .thumbnails:after {
  3514. display: table;
  3515. content: "";
  3516. }
  3517. .thumbnails:after {
  3518. clear: both;
  3519. }
  3520. .thumbnails > li {
  3521. float: left;
  3522. margin: 0 0 18px 20px;
  3523. }
  3524. .thumbnail {
  3525. display: block;
  3526. padding: 4px;
  3527. line-height: 1;
  3528. border: 1px solid #ddd;
  3529. -webkit-border-radius: 4px;
  3530. -moz-border-radius: 4px;
  3531. border-radius: 4px;
  3532. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  3533. -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  3534. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  3535. }
  3536. a.thumbnail:hover {
  3537. border-color: #0088cc;
  3538. -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  3539. -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  3540. box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  3541. }
  3542. .thumbnail > img {
  3543. display: block;
  3544. max-width: 100%;
  3545. margin-left: auto;
  3546. margin-right: auto;
  3547. }
  3548. .thumbnail .caption {
  3549. padding: 9px;
  3550. }
  3551. .label {
  3552. padding: 1px 4px 2px;
  3553. font-size: 10.998px;
  3554. font-weight: bold;
  3555. line-height: 13px;
  3556. color: #ffffff;
  3557. vertical-align: middle;
  3558. white-space: nowrap;
  3559. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3560. background-color: #999999;
  3561. -webkit-border-radius: 3px;
  3562. -moz-border-radius: 3px;
  3563. border-radius: 3px;
  3564. }
  3565. .label:hover {
  3566. color: #ffffff;
  3567. text-decoration: none;
  3568. }
  3569. .label-important {
  3570. background-color: #b94a48;
  3571. }
  3572. .label-important:hover {
  3573. background-color: #953b39;
  3574. }
  3575. .label-warning {
  3576. background-color: #f89406;
  3577. }
  3578. .label-warning:hover {
  3579. background-color: #c67605;
  3580. }
  3581. .label-success {
  3582. background-color: #468847;
  3583. }
  3584. .label-success:hover {
  3585. background-color: #356635;
  3586. }
  3587. .label-info {
  3588. background-color: #3a87ad;
  3589. }
  3590. .label-info:hover {
  3591. background-color: #2d6987;
  3592. }
  3593. .label-inverse {
  3594. background-color: #333333;
  3595. }
  3596. .label-inverse:hover {
  3597. background-color: #1a1a1a;
  3598. }
  3599. .badge {
  3600. padding: 1px 9px 2px;
  3601. font-size: 12.025px;
  3602. font-weight: bold;
  3603. white-space: nowrap;
  3604. color: #ffffff;
  3605. background-color: #999999;
  3606. -webkit-border-radius: 9px;
  3607. -moz-border-radius: 9px;
  3608. border-radius: 9px;
  3609. }
  3610. .badge:hover {
  3611. color: #ffffff;
  3612. text-decoration: none;
  3613. cursor: pointer;
  3614. }
  3615. .badge-error {
  3616. background-color: #b94a48;
  3617. }
  3618. .badge-error:hover {
  3619. background-color: #953b39;
  3620. }
  3621. .badge-warning {
  3622. background-color: #f89406;
  3623. }
  3624. .badge-warning:hover {
  3625. background-color: #c67605;
  3626. }
  3627. .badge-success {
  3628. background-color: #468847;
  3629. }
  3630. .badge-success:hover {
  3631. background-color: #356635;
  3632. }
  3633. .badge-info {
  3634. background-color: #3a87ad;
  3635. }
  3636. .badge-info:hover {
  3637. background-color: #2d6987;
  3638. }
  3639. .badge-inverse {
  3640. background-color: #333333;
  3641. }
  3642. .badge-inverse:hover {
  3643. background-color: #1a1a1a;
  3644. }
  3645. @-webkit-keyframes progress-bar-stripes {
  3646. from {
  3647. background-position: 0 0;
  3648. }
  3649. to {
  3650. background-position: 40px 0;
  3651. }
  3652. }
  3653. @-moz-keyframes progress-bar-stripes {
  3654. from {
  3655. background-position: 0 0;
  3656. }
  3657. to {
  3658. background-position: 40px 0;
  3659. }
  3660. }
  3661. @-ms-keyframes progress-bar-stripes {
  3662. from {
  3663. background-position: 0 0;
  3664. }
  3665. to {
  3666. background-position: 40px 0;
  3667. }
  3668. }
  3669. @keyframes progress-bar-stripes {
  3670. from {
  3671. background-position: 0 0;
  3672. }
  3673. to {
  3674. background-position: 40px 0;
  3675. }
  3676. }
  3677. .progress {
  3678. overflow: hidden;
  3679. height: 18px;
  3680. margin-bottom: 18px;
  3681. background-color: #f7f7f7;
  3682. background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  3683. background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
  3684. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  3685. background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  3686. background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  3687. background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
  3688. background-repeat: repeat-x;
  3689. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
  3690. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3691. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3692. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3693. -webkit-border-radius: 4px;
  3694. -moz-border-radius: 4px;
  3695. border-radius: 4px;
  3696. }
  3697. .progress .bar {
  3698. width: 0%;
  3699. height: 18px;
  3700. color: #ffffff;
  3701. font-size: 12px;
  3702. text-align: center;
  3703. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3704. background-color: #0e90d2;
  3705. background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  3706. background-image: -ms-linear-gradient(top, #149bdf, #0480be);
  3707. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  3708. background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  3709. background-image: -o-linear-gradient(top, #149bdf, #0480be);
  3710. background-image: linear-gradient(top, #149bdf, #0480be);
  3711. background-repeat: repeat-x;
  3712. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
  3713. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3714. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3715. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3716. -webkit-box-sizing: border-box;
  3717. -moz-box-sizing: border-box;
  3718. -ms-box-sizing: border-box;
  3719. box-sizing: border-box;
  3720. -webkit-transition: width 0.6s ease;
  3721. -moz-transition: width 0.6s ease;
  3722. -ms-transition: width 0.6s ease;
  3723. -o-transition: width 0.6s ease;
  3724. transition: width 0.6s ease;
  3725. }
  3726. .progress-striped .bar {
  3727. background-color: #149bdf;
  3728. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3729. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3730. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3731. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3732. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3733. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3734. -webkit-background-size: 40px 40px;
  3735. -moz-background-size: 40px 40px;
  3736. -o-background-size: 40px 40px;
  3737. background-size: 40px 40px;
  3738. }
  3739. .progress.active .bar {
  3740. -webkit-animation: progress-bar-stripes 2s linear infinite;
  3741. -moz-animation: progress-bar-stripes 2s linear infinite;
  3742. animation: progress-bar-stripes 2s linear infinite;
  3743. }
  3744. .progress-danger .bar {
  3745. background-color: #dd514c;
  3746. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  3747. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  3748. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  3749. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  3750. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  3751. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  3752. background-repeat: repeat-x;
  3753. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  3754. }
  3755. .progress-danger.progress-striped .bar {
  3756. background-color: #ee5f5b;
  3757. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3758. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3759. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3760. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3761. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3762. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3763. }
  3764. .progress-success .bar {
  3765. background-color: #5eb95e;
  3766. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  3767. background-image: -ms-linear-gradient(top, #62c462, #57a957);
  3768. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  3769. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  3770. background-image: -o-linear-gradient(top, #62c462, #57a957);
  3771. background-image: linear-gradient(top, #62c462, #57a957);
  3772. background-repeat: repeat-x;
  3773. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  3774. }
  3775. .progress-success.progress-striped .bar {
  3776. background-color: #62c462;
  3777. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3778. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3779. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3780. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3781. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3782. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3783. }
  3784. .progress-info .bar {
  3785. background-color: #4bb1cf;
  3786. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  3787. background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
  3788. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  3789. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  3790. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  3791. background-image: linear-gradient(top, #5bc0de, #339bb9);
  3792. background-repeat: repeat-x;
  3793. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
  3794. }
  3795. .progress-info.progress-striped .bar {
  3796. background-color: #5bc0de;
  3797. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3798. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3799. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3800. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3801. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3802. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3803. }
  3804. .progress-warning .bar {
  3805. background-color: #faa732;
  3806. background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  3807. background-image: -ms-linear-gradient(top, #fbb450, #f89406);
  3808. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  3809. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  3810. background-image: -o-linear-gradient(top, #fbb450, #f89406);
  3811. background-image: linear-gradient(top, #fbb450, #f89406);
  3812. background-repeat: repeat-x;
  3813. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
  3814. }
  3815. .progress-warning.progress-striped .bar {
  3816. background-color: #fbb450;
  3817. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3818. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3819. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3820. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3821. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3822. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3823. }
  3824. .accordion {
  3825. margin-bottom: 18px;
  3826. }
  3827. .accordion-group {
  3828. margin-bottom: 2px;
  3829. border: 1px solid #e5e5e5;
  3830. -webkit-border-radius: 4px;
  3831. -moz-border-radius: 4px;
  3832. border-radius: 4px;
  3833. }
  3834. .accordion-heading {
  3835. border-bottom: 0;
  3836. }
  3837. .accordion-heading .accordion-toggle {
  3838. display: block;
  3839. padding: 8px 15px;
  3840. }
  3841. .accordion-inner {
  3842. padding: 9px 15px;
  3843. border-top: 1px solid #e5e5e5;
  3844. }
  3845. .carousel {
  3846. position: relative;
  3847. margin-bottom: 18px;
  3848. line-height: 1;
  3849. }
  3850. .carousel-inner {
  3851. overflow: hidden;
  3852. width: 100%;
  3853. position: relative;
  3854. }
  3855. .carousel .item {
  3856. display: none;
  3857. position: relative;
  3858. -webkit-transition: 0.6s ease-in-out left;
  3859. -moz-transition: 0.6s ease-in-out left;
  3860. -ms-transition: 0.6s ease-in-out left;
  3861. -o-transition: 0.6s ease-in-out left;
  3862. transition: 0.6s ease-in-out left;
  3863. }
  3864. .carousel .item > img {
  3865. display: block;
  3866. line-height: 1;
  3867. }
  3868. .carousel .active,
  3869. .carousel .next,
  3870. .carousel .prev {
  3871. display: block;
  3872. }
  3873. .carousel .active {
  3874. left: 0;
  3875. }
  3876. .carousel .next,
  3877. .carousel .prev {
  3878. position: absolute;
  3879. top: 0;
  3880. width: 100%;
  3881. }
  3882. .carousel .next {
  3883. left: 100%;
  3884. }
  3885. .carousel .prev {
  3886. left: -100%;
  3887. }
  3888. .carousel .next.left,
  3889. .carousel .prev.right {
  3890. left: 0;
  3891. }
  3892. .carousel .active.left {
  3893. left: -100%;
  3894. }
  3895. .carousel .active.right {
  3896. left: 100%;
  3897. }
  3898. .carousel-control {
  3899. position: absolute;
  3900. top: 40%;
  3901. left: 15px;
  3902. width: 40px;
  3903. height: 40px;
  3904. margin-top: -20px;
  3905. font-size: 60px;
  3906. font-weight: 100;
  3907. line-height: 30px;
  3908. color: #ffffff;
  3909. text-align: center;
  3910. background: #222222;
  3911. border: 3px solid #ffffff;
  3912. -webkit-border-radius: 23px;
  3913. -moz-border-radius: 23px;
  3914. border-radius: 23px;
  3915. opacity: 0.5;
  3916. filter: alpha(opacity=50);
  3917. }
  3918. .carousel-control.right {
  3919. left: auto;
  3920. right: 15px;
  3921. }
  3922. .carousel-control:hover {
  3923. color: #ffffff;
  3924. text-decoration: none;
  3925. opacity: 0.9;
  3926. filter: alpha(opacity=90);
  3927. }
  3928. .carousel-caption {
  3929. position: absolute;
  3930. left: 0;
  3931. right: 0;
  3932. bottom: 0;
  3933. padding: 10px 15px 5px;
  3934. background: #333333;
  3935. background: rgba(0, 0, 0, 0.75);
  3936. }
  3937. .carousel-caption h4,
  3938. .carousel-caption p {
  3939. color: #ffffff;
  3940. }
  3941. .hero-unit {
  3942. padding: 60px;
  3943. margin-bottom: 30px;
  3944. background-color: #eeeeee;
  3945. -webkit-border-radius: 6px;
  3946. -moz-border-radius: 6px;
  3947. border-radius: 6px;
  3948. }
  3949. .hero-unit h1 {
  3950. margin-bottom: 0;
  3951. font-size: 60px;
  3952. line-height: 1;
  3953. color: inherit;
  3954. letter-spacing: -1px;
  3955. }
  3956. .hero-unit p {
  3957. font-size: 18px;
  3958. font-weight: 200;
  3959. line-height: 27px;
  3960. color: inherit;
  3961. }
  3962. .pull-right {
  3963. float: right;
  3964. }
  3965. .pull-left {
  3966. float: left;
  3967. }
  3968. .hide {
  3969. display: none;
  3970. }
  3971. .show {
  3972. display: block;
  3973. }
  3974. .invisible {
  3975. visibility: hidden;
  3976. }