bootstrap.css 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967
  1. /*!
  2. * Bootstrap v3.0.3
  3. *
  4. * Copyright 2013 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. /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
  11. article,
  12. aside,
  13. details,
  14. figcaption,
  15. figure,
  16. footer,
  17. header,
  18. hgroup,
  19. main,
  20. nav,
  21. section,
  22. summary {
  23. display: block;
  24. }
  25. audio,
  26. canvas,
  27. video {
  28. display: inline-block;
  29. }
  30. audio:not([controls]) {
  31. display: none;
  32. height: 0;
  33. }
  34. [hidden],
  35. template {
  36. display: none;
  37. }
  38. html {
  39. font-family: sans-serif;
  40. -ms-text-size-adjust: 100%;
  41. -webkit-text-size-adjust: 100%;
  42. }
  43. body {
  44. margin: 0;
  45. }
  46. a {
  47. background: transparent;
  48. }
  49. a:focus {
  50. outline: thin dotted;
  51. }
  52. a:active,
  53. a:hover {
  54. outline: 0;
  55. }
  56. h1 {
  57. font-size: 2em;
  58. margin: 0.67em 0;
  59. }
  60. abbr[title] {
  61. border-bottom: 1px dotted;
  62. }
  63. b,
  64. strong {
  65. font-weight: bold;
  66. }
  67. dfn {
  68. font-style: italic;
  69. }
  70. hr {
  71. -moz-box-sizing: content-box;
  72. box-sizing: content-box;
  73. height: 0;
  74. }
  75. mark {
  76. background: #ff0;
  77. color: #000;
  78. }
  79. code,
  80. kbd,
  81. pre,
  82. samp {
  83. font-family: monospace, serif;
  84. font-size: 1em;
  85. }
  86. pre {
  87. white-space: pre-wrap;
  88. }
  89. q {
  90. quotes: "\201C" "\201D" "\2018" "\2019";
  91. }
  92. small {
  93. font-size: 80%;
  94. }
  95. sub,
  96. sup {
  97. font-size: 75%;
  98. line-height: 0;
  99. position: relative;
  100. vertical-align: baseline;
  101. }
  102. sup {
  103. top: -0.5em;
  104. }
  105. sub {
  106. bottom: -0.25em;
  107. }
  108. img {
  109. border: 0;
  110. }
  111. svg:not(:root) {
  112. overflow: hidden;
  113. }
  114. figure {
  115. margin: 0;
  116. }
  117. fieldset {
  118. border: 1px solid #c0c0c0;
  119. margin: 0 2px;
  120. padding: 0.35em 0.625em 0.75em;
  121. }
  122. legend {
  123. border: 0;
  124. padding: 0;
  125. }
  126. button,
  127. input,
  128. select,
  129. textarea {
  130. font-family: inherit;
  131. font-size: 100%;
  132. margin: 0;
  133. }
  134. button,
  135. input {
  136. line-height: normal;
  137. }
  138. button,
  139. select {
  140. text-transform: none;
  141. }
  142. button,
  143. html input[type="button"],
  144. input[type="reset"],
  145. input[type="submit"] {
  146. -webkit-appearance: button;
  147. cursor: pointer;
  148. }
  149. button[disabled],
  150. html input[disabled] {
  151. cursor: default;
  152. }
  153. input[type="checkbox"],
  154. input[type="radio"] {
  155. box-sizing: border-box;
  156. padding: 0;
  157. }
  158. input[type="search"] {
  159. -webkit-appearance: textfield;
  160. -moz-box-sizing: content-box;
  161. -webkit-box-sizing: content-box;
  162. box-sizing: content-box;
  163. }
  164. input[type="search"]::-webkit-search-cancel-button,
  165. input[type="search"]::-webkit-search-decoration {
  166. -webkit-appearance: none;
  167. }
  168. button::-moz-focus-inner,
  169. input::-moz-focus-inner {
  170. border: 0;
  171. padding: 0;
  172. }
  173. textarea {
  174. overflow: auto;
  175. vertical-align: top;
  176. }
  177. table {
  178. border-collapse: collapse;
  179. border-spacing: 0;
  180. }
  181. @media print {
  182. * {
  183. text-shadow: none !important;
  184. color: #000 !important;
  185. background: transparent !important;
  186. box-shadow: none !important;
  187. }
  188. a,
  189. a:visited {
  190. text-decoration: underline;
  191. }
  192. a[href]:after {
  193. content: " (" attr(href) ")";
  194. }
  195. abbr[title]:after {
  196. content: " (" attr(title) ")";
  197. }
  198. a[href^="javascript:"]:after,
  199. a[href^="#"]:after {
  200. content: "";
  201. }
  202. pre,
  203. blockquote {
  204. border: 1px solid #999;
  205. page-break-inside: avoid;
  206. }
  207. thead {
  208. display: table-header-group;
  209. }
  210. tr,
  211. img {
  212. page-break-inside: avoid;
  213. }
  214. img {
  215. max-width: 100% !important;
  216. }
  217. @page {
  218. margin: 2cm .5cm;
  219. }
  220. p,
  221. h2,
  222. h3 {
  223. orphans: 3;
  224. widows: 3;
  225. }
  226. h2,
  227. h3 {
  228. page-break-after: avoid;
  229. }
  230. select {
  231. background: #fff !important;
  232. }
  233. .navbar {
  234. display: none;
  235. }
  236. .table td,
  237. .table th {
  238. background-color: #fff !important;
  239. }
  240. .btn > .caret,
  241. .dropup > .btn > .caret {
  242. border-top-color: #000 !important;
  243. }
  244. .label {
  245. border: 1px solid #000;
  246. }
  247. .table {
  248. border-collapse: collapse !important;
  249. }
  250. .table-bordered th,
  251. .table-bordered td {
  252. border: 1px solid #ddd !important;
  253. }
  254. }
  255. *,
  256. *:before,
  257. *:after {
  258. -webkit-box-sizing: border-box;
  259. -moz-box-sizing: border-box;
  260. box-sizing: border-box;
  261. }
  262. html {
  263. font-size: 62.5%;
  264. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  265. }
  266. body {
  267. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  268. font-size: 14px;
  269. line-height: 1.428571429;
  270. color: #333333;
  271. background-color: #ffffff;
  272. }
  273. input,
  274. button,
  275. select,
  276. textarea {
  277. font-family: inherit;
  278. font-size: inherit;
  279. line-height: inherit;
  280. }
  281. a {
  282. color: #428bca;
  283. text-decoration: none;
  284. }
  285. a:hover,
  286. a:focus {
  287. color: #2a6496;
  288. text-decoration: underline;
  289. }
  290. a:focus {
  291. outline: thin dotted;
  292. outline: 5px auto -webkit-focus-ring-color;
  293. outline-offset: -2px;
  294. }
  295. img {
  296. vertical-align: middle;
  297. }
  298. .img-responsive {
  299. display: block;
  300. max-width: 100%;
  301. height: auto;
  302. }
  303. .img-rounded {
  304. border-radius: 6px;
  305. }
  306. .img-thumbnail {
  307. padding: 4px;
  308. line-height: 1.428571429;
  309. background-color: #ffffff;
  310. border: 1px solid #dddddd;
  311. border-radius: 4px;
  312. -webkit-transition: all 0.2s ease-in-out;
  313. transition: all 0.2s ease-in-out;
  314. display: inline-block;
  315. max-width: 100%;
  316. height: auto;
  317. }
  318. .img-circle {
  319. border-radius: 50%;
  320. }
  321. hr {
  322. margin-top: 20px;
  323. margin-bottom: 20px;
  324. border: 0;
  325. border-top: 1px solid #eeeeee;
  326. }
  327. .sr-only {
  328. position: absolute;
  329. width: 1px;
  330. height: 1px;
  331. margin: -1px;
  332. padding: 0;
  333. overflow: hidden;
  334. clip: rect(0, 0, 0, 0);
  335. border: 0;
  336. }
  337. h1,
  338. h2,
  339. h3,
  340. h4,
  341. h5,
  342. h6,
  343. .h1,
  344. .h2,
  345. .h3,
  346. .h4,
  347. .h5,
  348. .h6 {
  349. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  350. font-weight: 500;
  351. line-height: 1.1;
  352. color: inherit;
  353. }
  354. h1 small,
  355. h2 small,
  356. h3 small,
  357. h4 small,
  358. h5 small,
  359. h6 small,
  360. .h1 small,
  361. .h2 small,
  362. .h3 small,
  363. .h4 small,
  364. .h5 small,
  365. .h6 small,
  366. h1 .small,
  367. h2 .small,
  368. h3 .small,
  369. h4 .small,
  370. h5 .small,
  371. h6 .small,
  372. .h1 .small,
  373. .h2 .small,
  374. .h3 .small,
  375. .h4 .small,
  376. .h5 .small,
  377. .h6 .small {
  378. font-weight: normal;
  379. line-height: 1;
  380. color: #999999;
  381. }
  382. h1,
  383. h2,
  384. h3 {
  385. margin-top: 20px;
  386. margin-bottom: 10px;
  387. }
  388. h1 small,
  389. h2 small,
  390. h3 small,
  391. h1 .small,
  392. h2 .small,
  393. h3 .small {
  394. font-size: 65%;
  395. }
  396. h4,
  397. h5,
  398. h6 {
  399. margin-top: 10px;
  400. margin-bottom: 10px;
  401. }
  402. h4 small,
  403. h5 small,
  404. h6 small,
  405. h4 .small,
  406. h5 .small,
  407. h6 .small {
  408. font-size: 75%;
  409. }
  410. h1,
  411. .h1 {
  412. font-size: 36px;
  413. }
  414. h2,
  415. .h2 {
  416. font-size: 30px;
  417. }
  418. h3,
  419. .h3 {
  420. font-size: 24px;
  421. }
  422. h4,
  423. .h4 {
  424. font-size: 18px;
  425. }
  426. h5,
  427. .h5 {
  428. font-size: 14px;
  429. }
  430. h6,
  431. .h6 {
  432. font-size: 12px;
  433. }
  434. p {
  435. margin: 0 0 10px;
  436. }
  437. .lead {
  438. margin-bottom: 20px;
  439. font-size: 16px;
  440. font-weight: 200;
  441. line-height: 1.4;
  442. }
  443. @media (min-width: 768px) {
  444. .lead {
  445. font-size: 21px;
  446. }
  447. }
  448. small,
  449. .small {
  450. font-size: 85%;
  451. }
  452. cite {
  453. font-style: normal;
  454. }
  455. .text-muted {
  456. color: #999999;
  457. }
  458. .text-primary {
  459. color: #428bca;
  460. }
  461. .text-primary:hover {
  462. color: #3071a9;
  463. }
  464. .text-warning {
  465. color: #8a6d3b;
  466. }
  467. .text-warning:hover {
  468. color: #66512c;
  469. }
  470. .text-danger {
  471. color: #a94442;
  472. }
  473. .text-danger:hover {
  474. color: #843534;
  475. }
  476. .text-success {
  477. color: #3c763d;
  478. }
  479. .text-success:hover {
  480. color: #2b542c;
  481. }
  482. .text-info {
  483. color: #31708f;
  484. }
  485. .text-info:hover {
  486. color: #245269;
  487. }
  488. .text-left {
  489. text-align: left;
  490. }
  491. .text-right {
  492. text-align: right;
  493. }
  494. .text-center {
  495. text-align: center;
  496. }
  497. .page-header {
  498. padding-bottom: 9px;
  499. margin: 40px 0 20px;
  500. border-bottom: 1px solid #eeeeee;
  501. }
  502. ul,
  503. ol {
  504. margin-top: 0;
  505. margin-bottom: 10px;
  506. }
  507. ul ul,
  508. ol ul,
  509. ul ol,
  510. ol ol {
  511. margin-bottom: 0;
  512. }
  513. .list-unstyled {
  514. padding-left: 0;
  515. list-style: none;
  516. }
  517. .list-inline {
  518. padding-left: 0;
  519. list-style: none;
  520. }
  521. .list-inline > li {
  522. display: inline-block;
  523. padding-left: 5px;
  524. padding-right: 5px;
  525. }
  526. .list-inline > li:first-child {
  527. padding-left: 0;
  528. }
  529. dl {
  530. margin-top: 0;
  531. margin-bottom: 20px;
  532. }
  533. dt,
  534. dd {
  535. line-height: 1.428571429;
  536. }
  537. dt {
  538. font-weight: bold;
  539. }
  540. dd {
  541. margin-left: 0;
  542. }
  543. @media (min-width: 768px) {
  544. .dl-horizontal dt {
  545. float: left;
  546. width: 160px;
  547. clear: left;
  548. text-align: right;
  549. overflow: hidden;
  550. text-overflow: ellipsis;
  551. white-space: nowrap;
  552. }
  553. .dl-horizontal dd {
  554. margin-left: 180px;
  555. }
  556. .dl-horizontal dd:before,
  557. .dl-horizontal dd:after {
  558. content: " ";
  559. display: table;
  560. }
  561. .dl-horizontal dd:after {
  562. clear: both;
  563. }
  564. .dl-horizontal dd:before,
  565. .dl-horizontal dd:after {
  566. content: " ";
  567. display: table;
  568. }
  569. .dl-horizontal dd:after {
  570. clear: both;
  571. }
  572. }
  573. abbr[title],
  574. abbr[data-original-title] {
  575. cursor: help;
  576. border-bottom: 1px dotted #999999;
  577. }
  578. .initialism {
  579. font-size: 90%;
  580. text-transform: uppercase;
  581. }
  582. blockquote {
  583. padding: 10px 20px;
  584. margin: 0 0 20px;
  585. border-left: 5px solid #eeeeee;
  586. }
  587. blockquote p {
  588. font-size: 17.5px;
  589. font-weight: 300;
  590. line-height: 1.25;
  591. }
  592. blockquote p:last-child {
  593. margin-bottom: 0;
  594. }
  595. blockquote small,
  596. blockquote .small {
  597. display: block;
  598. line-height: 1.428571429;
  599. color: #999999;
  600. }
  601. blockquote small:before,
  602. blockquote .small:before {
  603. content: '\2014 \00A0';
  604. }
  605. blockquote.pull-right {
  606. padding-right: 15px;
  607. padding-left: 0;
  608. border-right: 5px solid #eeeeee;
  609. border-left: 0;
  610. }
  611. blockquote.pull-right p,
  612. blockquote.pull-right small,
  613. blockquote.pull-right .small {
  614. text-align: right;
  615. }
  616. blockquote.pull-right small:before,
  617. blockquote.pull-right .small:before {
  618. content: '';
  619. }
  620. blockquote.pull-right small:after,
  621. blockquote.pull-right .small:after {
  622. content: '\00A0 \2014';
  623. }
  624. blockquote:before,
  625. blockquote:after {
  626. content: "";
  627. }
  628. address {
  629. margin-bottom: 20px;
  630. font-style: normal;
  631. line-height: 1.428571429;
  632. }
  633. code,
  634. kbd,
  635. pre,
  636. samp {
  637. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  638. }
  639. code {
  640. padding: 2px 4px;
  641. font-size: 90%;
  642. color: #c7254e;
  643. background-color: #f9f2f4;
  644. white-space: nowrap;
  645. border-radius: 4px;
  646. }
  647. pre {
  648. display: block;
  649. padding: 9.5px;
  650. margin: 0 0 10px;
  651. font-size: 13px;
  652. line-height: 1.428571429;
  653. word-break: break-all;
  654. word-wrap: break-word;
  655. color: #333333;
  656. background-color: #f5f5f5;
  657. border: 1px solid #cccccc;
  658. border-radius: 4px;
  659. }
  660. pre code {
  661. padding: 0;
  662. font-size: inherit;
  663. color: inherit;
  664. white-space: pre-wrap;
  665. background-color: transparent;
  666. border-radius: 0;
  667. }
  668. .pre-scrollable {
  669. max-height: 340px;
  670. overflow-y: scroll;
  671. }
  672. .container {
  673. margin-right: auto;
  674. margin-left: auto;
  675. padding-left: 15px;
  676. padding-right: 15px;
  677. }
  678. .container:before,
  679. .container:after {
  680. content: " ";
  681. display: table;
  682. }
  683. .container:after {
  684. clear: both;
  685. }
  686. .container:before,
  687. .container:after {
  688. content: " ";
  689. display: table;
  690. }
  691. .container:after {
  692. clear: both;
  693. }
  694. @media (min-width: 768px) {
  695. .container {
  696. width: 750px;
  697. }
  698. }
  699. @media (min-width: 992px) {
  700. .container {
  701. width: 970px;
  702. }
  703. }
  704. @media (min-width: 1200px) {
  705. .container {
  706. width: 1170px;
  707. }
  708. }
  709. .row {
  710. margin-left: -15px;
  711. margin-right: -15px;
  712. }
  713. .row:before,
  714. .row:after {
  715. content: " ";
  716. display: table;
  717. }
  718. .row:after {
  719. clear: both;
  720. }
  721. .row:before,
  722. .row:after {
  723. content: " ";
  724. display: table;
  725. }
  726. .row:after {
  727. clear: both;
  728. }
  729. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  730. position: relative;
  731. min-height: 1px;
  732. padding-left: 15px;
  733. padding-right: 15px;
  734. }
  735. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  736. float: left;
  737. }
  738. .col-xs-12 {
  739. width: 100%;
  740. }
  741. .col-xs-11 {
  742. width: 91.66666666666666%;
  743. }
  744. .col-xs-10 {
  745. width: 83.33333333333334%;
  746. }
  747. .col-xs-9 {
  748. width: 75%;
  749. }
  750. .col-xs-8 {
  751. width: 66.66666666666666%;
  752. }
  753. .col-xs-7 {
  754. width: 58.333333333333336%;
  755. }
  756. .col-xs-6 {
  757. width: 50%;
  758. }
  759. .col-xs-5 {
  760. width: 41.66666666666667%;
  761. }
  762. .col-xs-4 {
  763. width: 33.33333333333333%;
  764. }
  765. .col-xs-3 {
  766. width: 25%;
  767. }
  768. .col-xs-2 {
  769. width: 16.666666666666664%;
  770. }
  771. .col-xs-1 {
  772. width: 8.333333333333332%;
  773. }
  774. .col-xs-pull-12 {
  775. right: 100%;
  776. }
  777. .col-xs-pull-11 {
  778. right: 91.66666666666666%;
  779. }
  780. .col-xs-pull-10 {
  781. right: 83.33333333333334%;
  782. }
  783. .col-xs-pull-9 {
  784. right: 75%;
  785. }
  786. .col-xs-pull-8 {
  787. right: 66.66666666666666%;
  788. }
  789. .col-xs-pull-7 {
  790. right: 58.333333333333336%;
  791. }
  792. .col-xs-pull-6 {
  793. right: 50%;
  794. }
  795. .col-xs-pull-5 {
  796. right: 41.66666666666667%;
  797. }
  798. .col-xs-pull-4 {
  799. right: 33.33333333333333%;
  800. }
  801. .col-xs-pull-3 {
  802. right: 25%;
  803. }
  804. .col-xs-pull-2 {
  805. right: 16.666666666666664%;
  806. }
  807. .col-xs-pull-1 {
  808. right: 8.333333333333332%;
  809. }
  810. .col-xs-pull-0 {
  811. right: 0%;
  812. }
  813. .col-xs-push-12 {
  814. left: 100%;
  815. }
  816. .col-xs-push-11 {
  817. left: 91.66666666666666%;
  818. }
  819. .col-xs-push-10 {
  820. left: 83.33333333333334%;
  821. }
  822. .col-xs-push-9 {
  823. left: 75%;
  824. }
  825. .col-xs-push-8 {
  826. left: 66.66666666666666%;
  827. }
  828. .col-xs-push-7 {
  829. left: 58.333333333333336%;
  830. }
  831. .col-xs-push-6 {
  832. left: 50%;
  833. }
  834. .col-xs-push-5 {
  835. left: 41.66666666666667%;
  836. }
  837. .col-xs-push-4 {
  838. left: 33.33333333333333%;
  839. }
  840. .col-xs-push-3 {
  841. left: 25%;
  842. }
  843. .col-xs-push-2 {
  844. left: 16.666666666666664%;
  845. }
  846. .col-xs-push-1 {
  847. left: 8.333333333333332%;
  848. }
  849. .col-xs-push-0 {
  850. left: 0%;
  851. }
  852. .col-xs-offset-12 {
  853. margin-left: 100%;
  854. }
  855. .col-xs-offset-11 {
  856. margin-left: 91.66666666666666%;
  857. }
  858. .col-xs-offset-10 {
  859. margin-left: 83.33333333333334%;
  860. }
  861. .col-xs-offset-9 {
  862. margin-left: 75%;
  863. }
  864. .col-xs-offset-8 {
  865. margin-left: 66.66666666666666%;
  866. }
  867. .col-xs-offset-7 {
  868. margin-left: 58.333333333333336%;
  869. }
  870. .col-xs-offset-6 {
  871. margin-left: 50%;
  872. }
  873. .col-xs-offset-5 {
  874. margin-left: 41.66666666666667%;
  875. }
  876. .col-xs-offset-4 {
  877. margin-left: 33.33333333333333%;
  878. }
  879. .col-xs-offset-3 {
  880. margin-left: 25%;
  881. }
  882. .col-xs-offset-2 {
  883. margin-left: 16.666666666666664%;
  884. }
  885. .col-xs-offset-1 {
  886. margin-left: 8.333333333333332%;
  887. }
  888. .col-xs-offset-0 {
  889. margin-left: 0%;
  890. }
  891. @media (min-width: 768px) {
  892. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  893. float: left;
  894. }
  895. .col-sm-12 {
  896. width: 100%;
  897. }
  898. .col-sm-11 {
  899. width: 91.66666666666666%;
  900. }
  901. .col-sm-10 {
  902. width: 83.33333333333334%;
  903. }
  904. .col-sm-9 {
  905. width: 75%;
  906. }
  907. .col-sm-8 {
  908. width: 66.66666666666666%;
  909. }
  910. .col-sm-7 {
  911. width: 58.333333333333336%;
  912. }
  913. .col-sm-6 {
  914. width: 50%;
  915. }
  916. .col-sm-5 {
  917. width: 41.66666666666667%;
  918. }
  919. .col-sm-4 {
  920. width: 33.33333333333333%;
  921. }
  922. .col-sm-3 {
  923. width: 25%;
  924. }
  925. .col-sm-2 {
  926. width: 16.666666666666664%;
  927. }
  928. .col-sm-1 {
  929. width: 8.333333333333332%;
  930. }
  931. .col-sm-pull-12 {
  932. right: 100%;
  933. }
  934. .col-sm-pull-11 {
  935. right: 91.66666666666666%;
  936. }
  937. .col-sm-pull-10 {
  938. right: 83.33333333333334%;
  939. }
  940. .col-sm-pull-9 {
  941. right: 75%;
  942. }
  943. .col-sm-pull-8 {
  944. right: 66.66666666666666%;
  945. }
  946. .col-sm-pull-7 {
  947. right: 58.333333333333336%;
  948. }
  949. .col-sm-pull-6 {
  950. right: 50%;
  951. }
  952. .col-sm-pull-5 {
  953. right: 41.66666666666667%;
  954. }
  955. .col-sm-pull-4 {
  956. right: 33.33333333333333%;
  957. }
  958. .col-sm-pull-3 {
  959. right: 25%;
  960. }
  961. .col-sm-pull-2 {
  962. right: 16.666666666666664%;
  963. }
  964. .col-sm-pull-1 {
  965. right: 8.333333333333332%;
  966. }
  967. .col-sm-pull-0 {
  968. right: 0%;
  969. }
  970. .col-sm-push-12 {
  971. left: 100%;
  972. }
  973. .col-sm-push-11 {
  974. left: 91.66666666666666%;
  975. }
  976. .col-sm-push-10 {
  977. left: 83.33333333333334%;
  978. }
  979. .col-sm-push-9 {
  980. left: 75%;
  981. }
  982. .col-sm-push-8 {
  983. left: 66.66666666666666%;
  984. }
  985. .col-sm-push-7 {
  986. left: 58.333333333333336%;
  987. }
  988. .col-sm-push-6 {
  989. left: 50%;
  990. }
  991. .col-sm-push-5 {
  992. left: 41.66666666666667%;
  993. }
  994. .col-sm-push-4 {
  995. left: 33.33333333333333%;
  996. }
  997. .col-sm-push-3 {
  998. left: 25%;
  999. }
  1000. .col-sm-push-2 {
  1001. left: 16.666666666666664%;
  1002. }
  1003. .col-sm-push-1 {
  1004. left: 8.333333333333332%;
  1005. }
  1006. .col-sm-push-0 {
  1007. left: 0%;
  1008. }
  1009. .col-sm-offset-12 {
  1010. margin-left: 100%;
  1011. }
  1012. .col-sm-offset-11 {
  1013. margin-left: 91.66666666666666%;
  1014. }
  1015. .col-sm-offset-10 {
  1016. margin-left: 83.33333333333334%;
  1017. }
  1018. .col-sm-offset-9 {
  1019. margin-left: 75%;
  1020. }
  1021. .col-sm-offset-8 {
  1022. margin-left: 66.66666666666666%;
  1023. }
  1024. .col-sm-offset-7 {
  1025. margin-left: 58.333333333333336%;
  1026. }
  1027. .col-sm-offset-6 {
  1028. margin-left: 50%;
  1029. }
  1030. .col-sm-offset-5 {
  1031. margin-left: 41.66666666666667%;
  1032. }
  1033. .col-sm-offset-4 {
  1034. margin-left: 33.33333333333333%;
  1035. }
  1036. .col-sm-offset-3 {
  1037. margin-left: 25%;
  1038. }
  1039. .col-sm-offset-2 {
  1040. margin-left: 16.666666666666664%;
  1041. }
  1042. .col-sm-offset-1 {
  1043. margin-left: 8.333333333333332%;
  1044. }
  1045. .col-sm-offset-0 {
  1046. margin-left: 0%;
  1047. }
  1048. }
  1049. @media (min-width: 992px) {
  1050. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1051. float: left;
  1052. }
  1053. .col-md-12 {
  1054. width: 100%;
  1055. }
  1056. .col-md-11 {
  1057. width: 91.66666666666666%;
  1058. }
  1059. .col-md-10 {
  1060. width: 83.33333333333334%;
  1061. }
  1062. .col-md-9 {
  1063. width: 75%;
  1064. }
  1065. .col-md-8 {
  1066. width: 66.66666666666666%;
  1067. }
  1068. .col-md-7 {
  1069. width: 58.333333333333336%;
  1070. }
  1071. .col-md-6 {
  1072. width: 50%;
  1073. }
  1074. .col-md-5 {
  1075. width: 41.66666666666667%;
  1076. }
  1077. .col-md-4 {
  1078. width: 33.33333333333333%;
  1079. }
  1080. .col-md-3 {
  1081. width: 25%;
  1082. }
  1083. .col-md-2 {
  1084. width: 16.666666666666664%;
  1085. }
  1086. .col-md-1 {
  1087. width: 8.333333333333332%;
  1088. }
  1089. .col-md-pull-12 {
  1090. right: 100%;
  1091. }
  1092. .col-md-pull-11 {
  1093. right: 91.66666666666666%;
  1094. }
  1095. .col-md-pull-10 {
  1096. right: 83.33333333333334%;
  1097. }
  1098. .col-md-pull-9 {
  1099. right: 75%;
  1100. }
  1101. .col-md-pull-8 {
  1102. right: 66.66666666666666%;
  1103. }
  1104. .col-md-pull-7 {
  1105. right: 58.333333333333336%;
  1106. }
  1107. .col-md-pull-6 {
  1108. right: 50%;
  1109. }
  1110. .col-md-pull-5 {
  1111. right: 41.66666666666667%;
  1112. }
  1113. .col-md-pull-4 {
  1114. right: 33.33333333333333%;
  1115. }
  1116. .col-md-pull-3 {
  1117. right: 25%;
  1118. }
  1119. .col-md-pull-2 {
  1120. right: 16.666666666666664%;
  1121. }
  1122. .col-md-pull-1 {
  1123. right: 8.333333333333332%;
  1124. }
  1125. .col-md-pull-0 {
  1126. right: 0%;
  1127. }
  1128. .col-md-push-12 {
  1129. left: 100%;
  1130. }
  1131. .col-md-push-11 {
  1132. left: 91.66666666666666%;
  1133. }
  1134. .col-md-push-10 {
  1135. left: 83.33333333333334%;
  1136. }
  1137. .col-md-push-9 {
  1138. left: 75%;
  1139. }
  1140. .col-md-push-8 {
  1141. left: 66.66666666666666%;
  1142. }
  1143. .col-md-push-7 {
  1144. left: 58.333333333333336%;
  1145. }
  1146. .col-md-push-6 {
  1147. left: 50%;
  1148. }
  1149. .col-md-push-5 {
  1150. left: 41.66666666666667%;
  1151. }
  1152. .col-md-push-4 {
  1153. left: 33.33333333333333%;
  1154. }
  1155. .col-md-push-3 {
  1156. left: 25%;
  1157. }
  1158. .col-md-push-2 {
  1159. left: 16.666666666666664%;
  1160. }
  1161. .col-md-push-1 {
  1162. left: 8.333333333333332%;
  1163. }
  1164. .col-md-push-0 {
  1165. left: 0%;
  1166. }
  1167. .col-md-offset-12 {
  1168. margin-left: 100%;
  1169. }
  1170. .col-md-offset-11 {
  1171. margin-left: 91.66666666666666%;
  1172. }
  1173. .col-md-offset-10 {
  1174. margin-left: 83.33333333333334%;
  1175. }
  1176. .col-md-offset-9 {
  1177. margin-left: 75%;
  1178. }
  1179. .col-md-offset-8 {
  1180. margin-left: 66.66666666666666%;
  1181. }
  1182. .col-md-offset-7 {
  1183. margin-left: 58.333333333333336%;
  1184. }
  1185. .col-md-offset-6 {
  1186. margin-left: 50%;
  1187. }
  1188. .col-md-offset-5 {
  1189. margin-left: 41.66666666666667%;
  1190. }
  1191. .col-md-offset-4 {
  1192. margin-left: 33.33333333333333%;
  1193. }
  1194. .col-md-offset-3 {
  1195. margin-left: 25%;
  1196. }
  1197. .col-md-offset-2 {
  1198. margin-left: 16.666666666666664%;
  1199. }
  1200. .col-md-offset-1 {
  1201. margin-left: 8.333333333333332%;
  1202. }
  1203. .col-md-offset-0 {
  1204. margin-left: 0%;
  1205. }
  1206. }
  1207. @media (min-width: 1200px) {
  1208. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  1209. float: left;
  1210. }
  1211. .col-lg-12 {
  1212. width: 100%;
  1213. }
  1214. .col-lg-11 {
  1215. width: 91.66666666666666%;
  1216. }
  1217. .col-lg-10 {
  1218. width: 83.33333333333334%;
  1219. }
  1220. .col-lg-9 {
  1221. width: 75%;
  1222. }
  1223. .col-lg-8 {
  1224. width: 66.66666666666666%;
  1225. }
  1226. .col-lg-7 {
  1227. width: 58.333333333333336%;
  1228. }
  1229. .col-lg-6 {
  1230. width: 50%;
  1231. }
  1232. .col-lg-5 {
  1233. width: 41.66666666666667%;
  1234. }
  1235. .col-lg-4 {
  1236. width: 33.33333333333333%;
  1237. }
  1238. .col-lg-3 {
  1239. width: 25%;
  1240. }
  1241. .col-lg-2 {
  1242. width: 16.666666666666664%;
  1243. }
  1244. .col-lg-1 {
  1245. width: 8.333333333333332%;
  1246. }
  1247. .col-lg-pull-12 {
  1248. right: 100%;
  1249. }
  1250. .col-lg-pull-11 {
  1251. right: 91.66666666666666%;
  1252. }
  1253. .col-lg-pull-10 {
  1254. right: 83.33333333333334%;
  1255. }
  1256. .col-lg-pull-9 {
  1257. right: 75%;
  1258. }
  1259. .col-lg-pull-8 {
  1260. right: 66.66666666666666%;
  1261. }
  1262. .col-lg-pull-7 {
  1263. right: 58.333333333333336%;
  1264. }
  1265. .col-lg-pull-6 {
  1266. right: 50%;
  1267. }
  1268. .col-lg-pull-5 {
  1269. right: 41.66666666666667%;
  1270. }
  1271. .col-lg-pull-4 {
  1272. right: 33.33333333333333%;
  1273. }
  1274. .col-lg-pull-3 {
  1275. right: 25%;
  1276. }
  1277. .col-lg-pull-2 {
  1278. right: 16.666666666666664%;
  1279. }
  1280. .col-lg-pull-1 {
  1281. right: 8.333333333333332%;
  1282. }
  1283. .col-lg-pull-0 {
  1284. right: 0%;
  1285. }
  1286. .col-lg-push-12 {
  1287. left: 100%;
  1288. }
  1289. .col-lg-push-11 {
  1290. left: 91.66666666666666%;
  1291. }
  1292. .col-lg-push-10 {
  1293. left: 83.33333333333334%;
  1294. }
  1295. .col-lg-push-9 {
  1296. left: 75%;
  1297. }
  1298. .col-lg-push-8 {
  1299. left: 66.66666666666666%;
  1300. }
  1301. .col-lg-push-7 {
  1302. left: 58.333333333333336%;
  1303. }
  1304. .col-lg-push-6 {
  1305. left: 50%;
  1306. }
  1307. .col-lg-push-5 {
  1308. left: 41.66666666666667%;
  1309. }
  1310. .col-lg-push-4 {
  1311. left: 33.33333333333333%;
  1312. }
  1313. .col-lg-push-3 {
  1314. left: 25%;
  1315. }
  1316. .col-lg-push-2 {
  1317. left: 16.666666666666664%;
  1318. }
  1319. .col-lg-push-1 {
  1320. left: 8.333333333333332%;
  1321. }
  1322. .col-lg-push-0 {
  1323. left: 0%;
  1324. }
  1325. .col-lg-offset-12 {
  1326. margin-left: 100%;
  1327. }
  1328. .col-lg-offset-11 {
  1329. margin-left: 91.66666666666666%;
  1330. }
  1331. .col-lg-offset-10 {
  1332. margin-left: 83.33333333333334%;
  1333. }
  1334. .col-lg-offset-9 {
  1335. margin-left: 75%;
  1336. }
  1337. .col-lg-offset-8 {
  1338. margin-left: 66.66666666666666%;
  1339. }
  1340. .col-lg-offset-7 {
  1341. margin-left: 58.333333333333336%;
  1342. }
  1343. .col-lg-offset-6 {
  1344. margin-left: 50%;
  1345. }
  1346. .col-lg-offset-5 {
  1347. margin-left: 41.66666666666667%;
  1348. }
  1349. .col-lg-offset-4 {
  1350. margin-left: 33.33333333333333%;
  1351. }
  1352. .col-lg-offset-3 {
  1353. margin-left: 25%;
  1354. }
  1355. .col-lg-offset-2 {
  1356. margin-left: 16.666666666666664%;
  1357. }
  1358. .col-lg-offset-1 {
  1359. margin-left: 8.333333333333332%;
  1360. }
  1361. .col-lg-offset-0 {
  1362. margin-left: 0%;
  1363. }
  1364. }
  1365. table {
  1366. max-width: 100%;
  1367. background-color: transparent;
  1368. }
  1369. th {
  1370. text-align: left;
  1371. }
  1372. .table {
  1373. width: 100%;
  1374. margin-bottom: 20px;
  1375. }
  1376. .table > thead > tr > th,
  1377. .table > tbody > tr > th,
  1378. .table > tfoot > tr > th,
  1379. .table > thead > tr > td,
  1380. .table > tbody > tr > td,
  1381. .table > tfoot > tr > td {
  1382. padding: 8px;
  1383. line-height: 1.428571429;
  1384. vertical-align: top;
  1385. border-top: 1px solid #dddddd;
  1386. }
  1387. .table > thead > tr > th {
  1388. vertical-align: bottom;
  1389. border-bottom: 2px solid #dddddd;
  1390. }
  1391. .table > caption + thead > tr:first-child > th,
  1392. .table > colgroup + thead > tr:first-child > th,
  1393. .table > thead:first-child > tr:first-child > th,
  1394. .table > caption + thead > tr:first-child > td,
  1395. .table > colgroup + thead > tr:first-child > td,
  1396. .table > thead:first-child > tr:first-child > td {
  1397. border-top: 0;
  1398. }
  1399. .table > tbody + tbody {
  1400. border-top: 2px solid #dddddd;
  1401. }
  1402. .table .table {
  1403. background-color: #ffffff;
  1404. }
  1405. .table-condensed > thead > tr > th,
  1406. .table-condensed > tbody > tr > th,
  1407. .table-condensed > tfoot > tr > th,
  1408. .table-condensed > thead > tr > td,
  1409. .table-condensed > tbody > tr > td,
  1410. .table-condensed > tfoot > tr > td {
  1411. padding: 5px;
  1412. }
  1413. .table-bordered {
  1414. border: 1px solid #dddddd;
  1415. }
  1416. .table-bordered > thead > tr > th,
  1417. .table-bordered > tbody > tr > th,
  1418. .table-bordered > tfoot > tr > th,
  1419. .table-bordered > thead > tr > td,
  1420. .table-bordered > tbody > tr > td,
  1421. .table-bordered > tfoot > tr > td {
  1422. border: 1px solid #dddddd;
  1423. }
  1424. .table-bordered > thead > tr > th,
  1425. .table-bordered > thead > tr > td {
  1426. border-bottom-width: 2px;
  1427. }
  1428. .table-striped > tbody > tr:nth-child(odd) > td,
  1429. .table-striped > tbody > tr:nth-child(odd) > th {
  1430. background-color: #f9f9f9;
  1431. }
  1432. .table-hover > tbody > tr:hover > td,
  1433. .table-hover > tbody > tr:hover > th {
  1434. background-color: #f5f5f5;
  1435. }
  1436. table col[class*="col-"] {
  1437. position: static;
  1438. float: none;
  1439. display: table-column;
  1440. }
  1441. table td[class*="col-"],
  1442. table th[class*="col-"] {
  1443. float: none;
  1444. display: table-cell;
  1445. }
  1446. .table > thead > tr > .active,
  1447. .table > tbody > tr > .active,
  1448. .table > tfoot > tr > .active,
  1449. .table > thead > .active > td,
  1450. .table > tbody > .active > td,
  1451. .table > tfoot > .active > td,
  1452. .table > thead > .active > th,
  1453. .table > tbody > .active > th,
  1454. .table > tfoot > .active > th {
  1455. background-color: #f5f5f5;
  1456. }
  1457. .table-hover > tbody > tr > .active:hover,
  1458. .table-hover > tbody > .active:hover > td,
  1459. .table-hover > tbody > .active:hover > th {
  1460. background-color: #e8e8e8;
  1461. }
  1462. .table > thead > tr > .success,
  1463. .table > tbody > tr > .success,
  1464. .table > tfoot > tr > .success,
  1465. .table > thead > .success > td,
  1466. .table > tbody > .success > td,
  1467. .table > tfoot > .success > td,
  1468. .table > thead > .success > th,
  1469. .table > tbody > .success > th,
  1470. .table > tfoot > .success > th {
  1471. background-color: #dff0d8;
  1472. }
  1473. .table-hover > tbody > tr > .success:hover,
  1474. .table-hover > tbody > .success:hover > td,
  1475. .table-hover > tbody > .success:hover > th {
  1476. background-color: #d0e9c6;
  1477. }
  1478. .table > thead > tr > .danger,
  1479. .table > tbody > tr > .danger,
  1480. .table > tfoot > tr > .danger,
  1481. .table > thead > .danger > td,
  1482. .table > tbody > .danger > td,
  1483. .table > tfoot > .danger > td,
  1484. .table > thead > .danger > th,
  1485. .table > tbody > .danger > th,
  1486. .table > tfoot > .danger > th {
  1487. background-color: #f2dede;
  1488. }
  1489. .table-hover > tbody > tr > .danger:hover,
  1490. .table-hover > tbody > .danger:hover > td,
  1491. .table-hover > tbody > .danger:hover > th {
  1492. background-color: #ebcccc;
  1493. }
  1494. .table > thead > tr > .warning,
  1495. .table > tbody > tr > .warning,
  1496. .table > tfoot > tr > .warning,
  1497. .table > thead > .warning > td,
  1498. .table > tbody > .warning > td,
  1499. .table > tfoot > .warning > td,
  1500. .table > thead > .warning > th,
  1501. .table > tbody > .warning > th,
  1502. .table > tfoot > .warning > th {
  1503. background-color: #fcf8e3;
  1504. }
  1505. .table-hover > tbody > tr > .warning:hover,
  1506. .table-hover > tbody > .warning:hover > td,
  1507. .table-hover > tbody > .warning:hover > th {
  1508. background-color: #faf2cc;
  1509. }
  1510. @media (max-width: 767px) {
  1511. .table-responsive {
  1512. width: 100%;
  1513. margin-bottom: 15px;
  1514. overflow-y: hidden;
  1515. overflow-x: scroll;
  1516. -ms-overflow-style: -ms-autohiding-scrollbar;
  1517. border: 1px solid #dddddd;
  1518. -webkit-overflow-scrolling: touch;
  1519. }
  1520. .table-responsive > .table {
  1521. margin-bottom: 0;
  1522. }
  1523. .table-responsive > .table > thead > tr > th,
  1524. .table-responsive > .table > tbody > tr > th,
  1525. .table-responsive > .table > tfoot > tr > th,
  1526. .table-responsive > .table > thead > tr > td,
  1527. .table-responsive > .table > tbody > tr > td,
  1528. .table-responsive > .table > tfoot > tr > td {
  1529. white-space: nowrap;
  1530. }
  1531. .table-responsive > .table-bordered {
  1532. border: 0;
  1533. }
  1534. .table-responsive > .table-bordered > thead > tr > th:first-child,
  1535. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  1536. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  1537. .table-responsive > .table-bordered > thead > tr > td:first-child,
  1538. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  1539. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  1540. border-left: 0;
  1541. }
  1542. .table-responsive > .table-bordered > thead > tr > th:last-child,
  1543. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  1544. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  1545. .table-responsive > .table-bordered > thead > tr > td:last-child,
  1546. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  1547. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  1548. border-right: 0;
  1549. }
  1550. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  1551. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  1552. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  1553. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  1554. border-bottom: 0;
  1555. }
  1556. }
  1557. fieldset {
  1558. padding: 0;
  1559. margin: 0;
  1560. border: 0;
  1561. }
  1562. legend {
  1563. display: block;
  1564. width: 100%;
  1565. padding: 0;
  1566. margin-bottom: 20px;
  1567. font-size: 21px;
  1568. line-height: inherit;
  1569. color: #333333;
  1570. border: 0;
  1571. border-bottom: 1px solid #e5e5e5;
  1572. }
  1573. label {
  1574. display: inline-block;
  1575. margin-bottom: 5px;
  1576. font-weight: bold;
  1577. }
  1578. input[type="search"] {
  1579. -webkit-box-sizing: border-box;
  1580. -moz-box-sizing: border-box;
  1581. box-sizing: border-box;
  1582. }
  1583. input[type="radio"],
  1584. input[type="checkbox"] {
  1585. margin: 4px 0 0;
  1586. margin-top: 1px \9;
  1587. /* IE8-9 */
  1588. line-height: normal;
  1589. }
  1590. input[type="file"] {
  1591. display: block;
  1592. }
  1593. select[multiple],
  1594. select[size] {
  1595. height: auto;
  1596. }
  1597. select optgroup {
  1598. font-size: inherit;
  1599. font-style: inherit;
  1600. font-family: inherit;
  1601. }
  1602. input[type="file"]:focus,
  1603. input[type="radio"]:focus,
  1604. input[type="checkbox"]:focus {
  1605. outline: thin dotted;
  1606. outline: 5px auto -webkit-focus-ring-color;
  1607. outline-offset: -2px;
  1608. }
  1609. input[type="number"]::-webkit-outer-spin-button,
  1610. input[type="number"]::-webkit-inner-spin-button {
  1611. height: auto;
  1612. }
  1613. output {
  1614. display: block;
  1615. padding-top: 7px;
  1616. font-size: 14px;
  1617. line-height: 1.428571429;
  1618. color: #555555;
  1619. vertical-align: middle;
  1620. }
  1621. .form-control {
  1622. display: block;
  1623. width: 100%;
  1624. height: 34px;
  1625. padding: 6px 12px;
  1626. font-size: 14px;
  1627. line-height: 1.428571429;
  1628. color: #555555;
  1629. vertical-align: middle;
  1630. background-color: #ffffff;
  1631. background-image: none;
  1632. border: 1px solid #cccccc;
  1633. border-radius: 4px;
  1634. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1635. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1636. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1637. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1638. }
  1639. .form-control:focus {
  1640. border-color: #66afe9;
  1641. outline: 0;
  1642. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  1643. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  1644. }
  1645. .form-control:-moz-placeholder {
  1646. color: #999999;
  1647. }
  1648. .form-control::-moz-placeholder {
  1649. color: #999999;
  1650. opacity: 1;
  1651. }
  1652. .form-control:-ms-input-placeholder {
  1653. color: #999999;
  1654. }
  1655. .form-control::-webkit-input-placeholder {
  1656. color: #999999;
  1657. }
  1658. .form-control[disabled],
  1659. .form-control[readonly],
  1660. fieldset[disabled] .form-control {
  1661. cursor: not-allowed;
  1662. background-color: #eeeeee;
  1663. }
  1664. textarea.form-control {
  1665. height: auto;
  1666. }
  1667. .form-group {
  1668. margin-bottom: 15px;
  1669. }
  1670. .radio,
  1671. .checkbox {
  1672. display: block;
  1673. min-height: 20px;
  1674. margin-top: 10px;
  1675. margin-bottom: 10px;
  1676. padding-left: 20px;
  1677. vertical-align: middle;
  1678. }
  1679. .radio label,
  1680. .checkbox label {
  1681. display: inline;
  1682. margin-bottom: 0;
  1683. font-weight: normal;
  1684. cursor: pointer;
  1685. }
  1686. .radio input[type="radio"],
  1687. .radio-inline input[type="radio"],
  1688. .checkbox input[type="checkbox"],
  1689. .checkbox-inline input[type="checkbox"] {
  1690. float: left;
  1691. margin-left: -20px;
  1692. }
  1693. .radio + .radio,
  1694. .checkbox + .checkbox {
  1695. margin-top: -5px;
  1696. }
  1697. .radio-inline,
  1698. .checkbox-inline {
  1699. display: inline-block;
  1700. padding-left: 20px;
  1701. margin-bottom: 0;
  1702. vertical-align: middle;
  1703. font-weight: normal;
  1704. cursor: pointer;
  1705. }
  1706. .radio-inline + .radio-inline,
  1707. .checkbox-inline + .checkbox-inline {
  1708. margin-top: 0;
  1709. margin-left: 10px;
  1710. }
  1711. input[type="radio"][disabled],
  1712. input[type="checkbox"][disabled],
  1713. .radio[disabled],
  1714. .radio-inline[disabled],
  1715. .checkbox[disabled],
  1716. .checkbox-inline[disabled],
  1717. fieldset[disabled] input[type="radio"],
  1718. fieldset[disabled] input[type="checkbox"],
  1719. fieldset[disabled] .radio,
  1720. fieldset[disabled] .radio-inline,
  1721. fieldset[disabled] .checkbox,
  1722. fieldset[disabled] .checkbox-inline {
  1723. cursor: not-allowed;
  1724. }
  1725. .input-sm {
  1726. height: 30px;
  1727. padding: 5px 10px;
  1728. font-size: 12px;
  1729. line-height: 1.5;
  1730. border-radius: 3px;
  1731. }
  1732. select.input-sm {
  1733. height: 30px;
  1734. line-height: 30px;
  1735. }
  1736. textarea.input-sm {
  1737. height: auto;
  1738. }
  1739. .input-lg {
  1740. height: 46px;
  1741. padding: 10px 16px;
  1742. font-size: 18px;
  1743. line-height: 1.33;
  1744. border-radius: 6px;
  1745. }
  1746. select.input-lg {
  1747. height: 46px;
  1748. line-height: 46px;
  1749. }
  1750. textarea.input-lg {
  1751. height: auto;
  1752. }
  1753. .has-warning .help-block,
  1754. .has-warning .control-label,
  1755. .has-warning .radio,
  1756. .has-warning .checkbox,
  1757. .has-warning .radio-inline,
  1758. .has-warning .checkbox-inline {
  1759. color: #8a6d3b;
  1760. }
  1761. .has-warning .form-control {
  1762. border-color: #8a6d3b;
  1763. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1764. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1765. }
  1766. .has-warning .form-control:focus {
  1767. border-color: #66512c;
  1768. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  1769. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  1770. }
  1771. .has-warning .input-group-addon {
  1772. color: #8a6d3b;
  1773. border-color: #8a6d3b;
  1774. background-color: #fcf8e3;
  1775. }
  1776. .has-error .help-block,
  1777. .has-error .control-label,
  1778. .has-error .radio,
  1779. .has-error .checkbox,
  1780. .has-error .radio-inline,
  1781. .has-error .checkbox-inline {
  1782. color: #a94442;
  1783. }
  1784. .has-error .form-control {
  1785. border-color: #a94442;
  1786. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1787. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1788. }
  1789. .has-error .form-control:focus {
  1790. border-color: #843534;
  1791. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  1792. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  1793. }
  1794. .has-error .input-group-addon {
  1795. color: #a94442;
  1796. border-color: #a94442;
  1797. background-color: #f2dede;
  1798. }
  1799. .has-success .help-block,
  1800. .has-success .control-label,
  1801. .has-success .radio,
  1802. .has-success .checkbox,
  1803. .has-success .radio-inline,
  1804. .has-success .checkbox-inline {
  1805. color: #3c763d;
  1806. }
  1807. .has-success .form-control {
  1808. border-color: #3c763d;
  1809. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1810. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1811. }
  1812. .has-success .form-control:focus {
  1813. border-color: #2b542c;
  1814. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  1815. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  1816. }
  1817. .has-success .input-group-addon {
  1818. color: #3c763d;
  1819. border-color: #3c763d;
  1820. background-color: #dff0d8;
  1821. }
  1822. .form-control-static {
  1823. margin-bottom: 0;
  1824. }
  1825. .help-block {
  1826. display: block;
  1827. margin-top: 5px;
  1828. margin-bottom: 10px;
  1829. color: #737373;
  1830. }
  1831. @media (min-width: 768px) {
  1832. .form-inline .form-group {
  1833. display: inline-block;
  1834. margin-bottom: 0;
  1835. vertical-align: middle;
  1836. }
  1837. .form-inline .form-control {
  1838. display: inline-block;
  1839. }
  1840. .form-inline select.form-control {
  1841. width: auto;
  1842. }
  1843. .form-inline .radio,
  1844. .form-inline .checkbox {
  1845. display: inline-block;
  1846. margin-top: 0;
  1847. margin-bottom: 0;
  1848. padding-left: 0;
  1849. }
  1850. .form-inline .radio input[type="radio"],
  1851. .form-inline .checkbox input[type="checkbox"] {
  1852. float: none;
  1853. margin-left: 0;
  1854. }
  1855. }
  1856. .form-horizontal .control-label,
  1857. .form-horizontal .radio,
  1858. .form-horizontal .checkbox,
  1859. .form-horizontal .radio-inline,
  1860. .form-horizontal .checkbox-inline {
  1861. margin-top: 0;
  1862. margin-bottom: 0;
  1863. padding-top: 7px;
  1864. }
  1865. .form-horizontal .radio,
  1866. .form-horizontal .checkbox {
  1867. min-height: 27px;
  1868. }
  1869. .form-horizontal .form-group {
  1870. margin-left: -15px;
  1871. margin-right: -15px;
  1872. }
  1873. .form-horizontal .form-group:before,
  1874. .form-horizontal .form-group:after {
  1875. content: " ";
  1876. display: table;
  1877. }
  1878. .form-horizontal .form-group:after {
  1879. clear: both;
  1880. }
  1881. .form-horizontal .form-group:before,
  1882. .form-horizontal .form-group:after {
  1883. content: " ";
  1884. display: table;
  1885. }
  1886. .form-horizontal .form-group:after {
  1887. clear: both;
  1888. }
  1889. .form-horizontal .form-control-static {
  1890. padding-top: 7px;
  1891. }
  1892. @media (min-width: 768px) {
  1893. .form-horizontal .control-label {
  1894. text-align: right;
  1895. }
  1896. }
  1897. .btn {
  1898. display: inline-block;
  1899. margin-bottom: 0;
  1900. font-weight: normal;
  1901. text-align: center;
  1902. vertical-align: middle;
  1903. cursor: pointer;
  1904. background-image: none;
  1905. border: 1px solid transparent;
  1906. white-space: nowrap;
  1907. padding: 6px 12px;
  1908. font-size: 14px;
  1909. line-height: 1.428571429;
  1910. border-radius: 4px;
  1911. -webkit-user-select: none;
  1912. -moz-user-select: none;
  1913. -ms-user-select: none;
  1914. -o-user-select: none;
  1915. user-select: none;
  1916. }
  1917. .btn:focus {
  1918. outline: thin dotted;
  1919. outline: 5px auto -webkit-focus-ring-color;
  1920. outline-offset: -2px;
  1921. }
  1922. .btn:hover,
  1923. .btn:focus {
  1924. color: #333333;
  1925. text-decoration: none;
  1926. }
  1927. .btn:active,
  1928. .btn.active {
  1929. outline: 0;
  1930. background-image: none;
  1931. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1932. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1933. }
  1934. .btn.disabled,
  1935. .btn[disabled],
  1936. fieldset[disabled] .btn {
  1937. cursor: not-allowed;
  1938. pointer-events: none;
  1939. opacity: 0.65;
  1940. filter: alpha(opacity=65);
  1941. -webkit-box-shadow: none;
  1942. box-shadow: none;
  1943. }
  1944. .btn-default {
  1945. color: #333333;
  1946. background-color: #ffffff;
  1947. border-color: #cccccc;
  1948. }
  1949. .btn-default:hover,
  1950. .btn-default:focus,
  1951. .btn-default:active,
  1952. .btn-default.active,
  1953. .open .dropdown-toggle.btn-default {
  1954. color: #333333;
  1955. background-color: #ebebeb;
  1956. border-color: #adadad;
  1957. }
  1958. .btn-default:active,
  1959. .btn-default.active,
  1960. .open .dropdown-toggle.btn-default {
  1961. background-image: none;
  1962. }
  1963. .btn-default.disabled,
  1964. .btn-default[disabled],
  1965. fieldset[disabled] .btn-default,
  1966. .btn-default.disabled:hover,
  1967. .btn-default[disabled]:hover,
  1968. fieldset[disabled] .btn-default:hover,
  1969. .btn-default.disabled:focus,
  1970. .btn-default[disabled]:focus,
  1971. fieldset[disabled] .btn-default:focus,
  1972. .btn-default.disabled:active,
  1973. .btn-default[disabled]:active,
  1974. fieldset[disabled] .btn-default:active,
  1975. .btn-default.disabled.active,
  1976. .btn-default[disabled].active,
  1977. fieldset[disabled] .btn-default.active {
  1978. background-color: #ffffff;
  1979. border-color: #cccccc;
  1980. }
  1981. .btn-default .badge {
  1982. color: #ffffff;
  1983. background-color: #fff;
  1984. }
  1985. .btn-primary {
  1986. color: #ffffff;
  1987. background-color: #428bca;
  1988. border-color: #357ebd;
  1989. }
  1990. .btn-primary:hover,
  1991. .btn-primary:focus,
  1992. .btn-primary:active,
  1993. .btn-primary.active,
  1994. .open .dropdown-toggle.btn-primary {
  1995. color: #ffffff;
  1996. background-color: #3276b1;
  1997. border-color: #285e8e;
  1998. }
  1999. .btn-primary:active,
  2000. .btn-primary.active,
  2001. .open .dropdown-toggle.btn-primary {
  2002. background-image: none;
  2003. }
  2004. .btn-primary.disabled,
  2005. .btn-primary[disabled],
  2006. fieldset[disabled] .btn-primary,
  2007. .btn-primary.disabled:hover,
  2008. .btn-primary[disabled]:hover,
  2009. fieldset[disabled] .btn-primary:hover,
  2010. .btn-primary.disabled:focus,
  2011. .btn-primary[disabled]:focus,
  2012. fieldset[disabled] .btn-primary:focus,
  2013. .btn-primary.disabled:active,
  2014. .btn-primary[disabled]:active,
  2015. fieldset[disabled] .btn-primary:active,
  2016. .btn-primary.disabled.active,
  2017. .btn-primary[disabled].active,
  2018. fieldset[disabled] .btn-primary.active {
  2019. background-color: #428bca;
  2020. border-color: #357ebd;
  2021. }
  2022. .btn-primary .badge {
  2023. color: #428bca;
  2024. background-color: #fff;
  2025. }
  2026. .btn-warning {
  2027. color: #ffffff;
  2028. background-color: #f0ad4e;
  2029. border-color: #eea236;
  2030. }
  2031. .btn-warning:hover,
  2032. .btn-warning:focus,
  2033. .btn-warning:active,
  2034. .btn-warning.active,
  2035. .open .dropdown-toggle.btn-warning {
  2036. color: #ffffff;
  2037. background-color: #ed9c28;
  2038. border-color: #d58512;
  2039. }
  2040. .btn-warning:active,
  2041. .btn-warning.active,
  2042. .open .dropdown-toggle.btn-warning {
  2043. background-image: none;
  2044. }
  2045. .btn-warning.disabled,
  2046. .btn-warning[disabled],
  2047. fieldset[disabled] .btn-warning,
  2048. .btn-warning.disabled:hover,
  2049. .btn-warning[disabled]:hover,
  2050. fieldset[disabled] .btn-warning:hover,
  2051. .btn-warning.disabled:focus,
  2052. .btn-warning[disabled]:focus,
  2053. fieldset[disabled] .btn-warning:focus,
  2054. .btn-warning.disabled:active,
  2055. .btn-warning[disabled]:active,
  2056. fieldset[disabled] .btn-warning:active,
  2057. .btn-warning.disabled.active,
  2058. .btn-warning[disabled].active,
  2059. fieldset[disabled] .btn-warning.active {
  2060. background-color: #f0ad4e;
  2061. border-color: #eea236;
  2062. }
  2063. .btn-warning .badge {
  2064. color: #f0ad4e;
  2065. background-color: #fff;
  2066. }
  2067. .btn-danger {
  2068. color: #ffffff;
  2069. background-color: #d9534f;
  2070. border-color: #d43f3a;
  2071. }
  2072. .btn-danger:hover,
  2073. .btn-danger:focus,
  2074. .btn-danger:active,
  2075. .btn-danger.active,
  2076. .open .dropdown-toggle.btn-danger {
  2077. color: #ffffff;
  2078. background-color: #d2322d;
  2079. border-color: #ac2925;
  2080. }
  2081. .btn-danger:active,
  2082. .btn-danger.active,
  2083. .open .dropdown-toggle.btn-danger {
  2084. background-image: none;
  2085. }
  2086. .btn-danger.disabled,
  2087. .btn-danger[disabled],
  2088. fieldset[disabled] .btn-danger,
  2089. .btn-danger.disabled:hover,
  2090. .btn-danger[disabled]:hover,
  2091. fieldset[disabled] .btn-danger:hover,
  2092. .btn-danger.disabled:focus,
  2093. .btn-danger[disabled]:focus,
  2094. fieldset[disabled] .btn-danger:focus,
  2095. .btn-danger.disabled:active,
  2096. .btn-danger[disabled]:active,
  2097. fieldset[disabled] .btn-danger:active,
  2098. .btn-danger.disabled.active,
  2099. .btn-danger[disabled].active,
  2100. fieldset[disabled] .btn-danger.active {
  2101. background-color: #d9534f;
  2102. border-color: #d43f3a;
  2103. }
  2104. .btn-danger .badge {
  2105. color: #d9534f;
  2106. background-color: #fff;
  2107. }
  2108. .btn-success {
  2109. color: #ffffff;
  2110. background-color: #5cb85c;
  2111. border-color: #4cae4c;
  2112. }
  2113. .btn-success:hover,
  2114. .btn-success:focus,
  2115. .btn-success:active,
  2116. .btn-success.active,
  2117. .open .dropdown-toggle.btn-success {
  2118. color: #ffffff;
  2119. background-color: #47a447;
  2120. border-color: #398439;
  2121. }
  2122. .btn-success:active,
  2123. .btn-success.active,
  2124. .open .dropdown-toggle.btn-success {
  2125. background-image: none;
  2126. }
  2127. .btn-success.disabled,
  2128. .btn-success[disabled],
  2129. fieldset[disabled] .btn-success,
  2130. .btn-success.disabled:hover,
  2131. .btn-success[disabled]:hover,
  2132. fieldset[disabled] .btn-success:hover,
  2133. .btn-success.disabled:focus,
  2134. .btn-success[disabled]:focus,
  2135. fieldset[disabled] .btn-success:focus,
  2136. .btn-success.disabled:active,
  2137. .btn-success[disabled]:active,
  2138. fieldset[disabled] .btn-success:active,
  2139. .btn-success.disabled.active,
  2140. .btn-success[disabled].active,
  2141. fieldset[disabled] .btn-success.active {
  2142. background-color: #5cb85c;
  2143. border-color: #4cae4c;
  2144. }
  2145. .btn-success .badge {
  2146. color: #5cb85c;
  2147. background-color: #fff;
  2148. }
  2149. .btn-info {
  2150. color: #ffffff;
  2151. background-color: #5bc0de;
  2152. border-color: #46b8da;
  2153. }
  2154. .btn-info:hover,
  2155. .btn-info:focus,
  2156. .btn-info:active,
  2157. .btn-info.active,
  2158. .open .dropdown-toggle.btn-info {
  2159. color: #ffffff;
  2160. background-color: #39b3d7;
  2161. border-color: #269abc;
  2162. }
  2163. .btn-info:active,
  2164. .btn-info.active,
  2165. .open .dropdown-toggle.btn-info {
  2166. background-image: none;
  2167. }
  2168. .btn-info.disabled,
  2169. .btn-info[disabled],
  2170. fieldset[disabled] .btn-info,
  2171. .btn-info.disabled:hover,
  2172. .btn-info[disabled]:hover,
  2173. fieldset[disabled] .btn-info:hover,
  2174. .btn-info.disabled:focus,
  2175. .btn-info[disabled]:focus,
  2176. fieldset[disabled] .btn-info:focus,
  2177. .btn-info.disabled:active,
  2178. .btn-info[disabled]:active,
  2179. fieldset[disabled] .btn-info:active,
  2180. .btn-info.disabled.active,
  2181. .btn-info[disabled].active,
  2182. fieldset[disabled] .btn-info.active {
  2183. background-color: #5bc0de;
  2184. border-color: #46b8da;
  2185. }
  2186. .btn-info .badge {
  2187. color: #5bc0de;
  2188. background-color: #fff;
  2189. }
  2190. .btn-link {
  2191. color: #428bca;
  2192. font-weight: normal;
  2193. cursor: pointer;
  2194. border-radius: 0;
  2195. }
  2196. .btn-link,
  2197. .btn-link:active,
  2198. .btn-link[disabled],
  2199. fieldset[disabled] .btn-link {
  2200. background-color: transparent;
  2201. -webkit-box-shadow: none;
  2202. box-shadow: none;
  2203. }
  2204. .btn-link,
  2205. .btn-link:hover,
  2206. .btn-link:focus,
  2207. .btn-link:active {
  2208. border-color: transparent;
  2209. }
  2210. .btn-link:hover,
  2211. .btn-link:focus {
  2212. color: #2a6496;
  2213. text-decoration: underline;
  2214. background-color: transparent;
  2215. }
  2216. .btn-link[disabled]:hover,
  2217. fieldset[disabled] .btn-link:hover,
  2218. .btn-link[disabled]:focus,
  2219. fieldset[disabled] .btn-link:focus {
  2220. color: #999999;
  2221. text-decoration: none;
  2222. }
  2223. .btn-lg {
  2224. padding: 10px 16px;
  2225. font-size: 18px;
  2226. line-height: 1.33;
  2227. border-radius: 6px;
  2228. }
  2229. .btn-sm {
  2230. padding: 5px 10px;
  2231. font-size: 12px;
  2232. line-height: 1.5;
  2233. border-radius: 3px;
  2234. }
  2235. .btn-xs {
  2236. padding: 1px 5px;
  2237. font-size: 12px;
  2238. line-height: 1.5;
  2239. border-radius: 3px;
  2240. }
  2241. .btn-block {
  2242. display: block;
  2243. width: 100%;
  2244. padding-left: 0;
  2245. padding-right: 0;
  2246. }
  2247. .btn-block + .btn-block {
  2248. margin-top: 5px;
  2249. }
  2250. input[type="submit"].btn-block,
  2251. input[type="reset"].btn-block,
  2252. input[type="button"].btn-block {
  2253. width: 100%;
  2254. }
  2255. .fade {
  2256. opacity: 0;
  2257. -webkit-transition: opacity 0.15s linear;
  2258. transition: opacity 0.15s linear;
  2259. }
  2260. .fade.in {
  2261. opacity: 1;
  2262. }
  2263. .collapse {
  2264. display: none;
  2265. }
  2266. .collapse.in {
  2267. display: block;
  2268. }
  2269. .collapsing {
  2270. position: relative;
  2271. height: 0;
  2272. overflow: hidden;
  2273. -webkit-transition: height 0.35s ease;
  2274. transition: height 0.35s ease;
  2275. }
  2276. @font-face {
  2277. font-family: 'Glyphicons Halflings';
  2278. src: url('../fonts/glyphicons-halflings-regular.eot');
  2279. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
  2280. }
  2281. .glyphicon {
  2282. position: relative;
  2283. top: 1px;
  2284. display: inline-block;
  2285. font-family: 'Glyphicons Halflings';
  2286. font-style: normal;
  2287. font-weight: normal;
  2288. line-height: 1;
  2289. -webkit-font-smoothing: antialiased;
  2290. -moz-osx-font-smoothing: grayscale;
  2291. }
  2292. .glyphicon:empty {
  2293. width: 1em;
  2294. }
  2295. .glyphicon-asterisk:before {
  2296. content: "\2a";
  2297. }
  2298. .glyphicon-plus:before {
  2299. content: "\2b";
  2300. }
  2301. .glyphicon-euro:before {
  2302. content: "\20ac";
  2303. }
  2304. .glyphicon-minus:before {
  2305. content: "\2212";
  2306. }
  2307. .glyphicon-cloud:before {
  2308. content: "\2601";
  2309. }
  2310. .glyphicon-envelope:before {
  2311. content: "\2709";
  2312. }
  2313. .glyphicon-pencil:before {
  2314. content: "\270f";
  2315. }
  2316. .glyphicon-glass:before {
  2317. content: "\e001";
  2318. }
  2319. .glyphicon-music:before {
  2320. content: "\e002";
  2321. }
  2322. .glyphicon-search:before {
  2323. content: "\e003";
  2324. }
  2325. .glyphicon-heart:before {
  2326. content: "\e005";
  2327. }
  2328. .glyphicon-star:before {
  2329. content: "\e006";
  2330. }
  2331. .glyphicon-star-empty:before {
  2332. content: "\e007";
  2333. }
  2334. .glyphicon-user:before {
  2335. content: "\e008";
  2336. }
  2337. .glyphicon-film:before {
  2338. content: "\e009";
  2339. }
  2340. .glyphicon-th-large:before {
  2341. content: "\e010";
  2342. }
  2343. .glyphicon-th:before {
  2344. content: "\e011";
  2345. }
  2346. .glyphicon-th-list:before {
  2347. content: "\e012";
  2348. }
  2349. .glyphicon-ok:before {
  2350. content: "\e013";
  2351. }
  2352. .glyphicon-remove:before {
  2353. content: "\e014";
  2354. }
  2355. .glyphicon-zoom-in:before {
  2356. content: "\e015";
  2357. }
  2358. .glyphicon-zoom-out:before {
  2359. content: "\e016";
  2360. }
  2361. .glyphicon-off:before {
  2362. content: "\e017";
  2363. }
  2364. .glyphicon-signal:before {
  2365. content: "\e018";
  2366. }
  2367. .glyphicon-cog:before {
  2368. content: "\e019";
  2369. }
  2370. .glyphicon-trash:before {
  2371. content: "\e020";
  2372. }
  2373. .glyphicon-home:before {
  2374. content: "\e021";
  2375. }
  2376. .glyphicon-file:before {
  2377. content: "\e022";
  2378. }
  2379. .glyphicon-time:before {
  2380. content: "\e023";
  2381. }
  2382. .glyphicon-road:before {
  2383. content: "\e024";
  2384. }
  2385. .glyphicon-download-alt:before {
  2386. content: "\e025";
  2387. }
  2388. .glyphicon-download:before {
  2389. content: "\e026";
  2390. }
  2391. .glyphicon-upload:before {
  2392. content: "\e027";
  2393. }
  2394. .glyphicon-inbox:before {
  2395. content: "\e028";
  2396. }
  2397. .glyphicon-play-circle:before {
  2398. content: "\e029";
  2399. }
  2400. .glyphicon-repeat:before {
  2401. content: "\e030";
  2402. }
  2403. .glyphicon-refresh:before {
  2404. content: "\e031";
  2405. }
  2406. .glyphicon-list-alt:before {
  2407. content: "\e032";
  2408. }
  2409. .glyphicon-lock:before {
  2410. content: "\e033";
  2411. }
  2412. .glyphicon-flag:before {
  2413. content: "\e034";
  2414. }
  2415. .glyphicon-headphones:before {
  2416. content: "\e035";
  2417. }
  2418. .glyphicon-volume-off:before {
  2419. content: "\e036";
  2420. }
  2421. .glyphicon-volume-down:before {
  2422. content: "\e037";
  2423. }
  2424. .glyphicon-volume-up:before {
  2425. content: "\e038";
  2426. }
  2427. .glyphicon-qrcode:before {
  2428. content: "\e039";
  2429. }
  2430. .glyphicon-barcode:before {
  2431. content: "\e040";
  2432. }
  2433. .glyphicon-tag:before {
  2434. content: "\e041";
  2435. }
  2436. .glyphicon-tags:before {
  2437. content: "\e042";
  2438. }
  2439. .glyphicon-book:before {
  2440. content: "\e043";
  2441. }
  2442. .glyphicon-bookmark:before {
  2443. content: "\e044";
  2444. }
  2445. .glyphicon-print:before {
  2446. content: "\e045";
  2447. }
  2448. .glyphicon-camera:before {
  2449. content: "\e046";
  2450. }
  2451. .glyphicon-font:before {
  2452. content: "\e047";
  2453. }
  2454. .glyphicon-bold:before {
  2455. content: "\e048";
  2456. }
  2457. .glyphicon-italic:before {
  2458. content: "\e049";
  2459. }
  2460. .glyphicon-text-height:before {
  2461. content: "\e050";
  2462. }
  2463. .glyphicon-text-width:before {
  2464. content: "\e051";
  2465. }
  2466. .glyphicon-align-left:before {
  2467. content: "\e052";
  2468. }
  2469. .glyphicon-align-center:before {
  2470. content: "\e053";
  2471. }
  2472. .glyphicon-align-right:before {
  2473. content: "\e054";
  2474. }
  2475. .glyphicon-align-justify:before {
  2476. content: "\e055";
  2477. }
  2478. .glyphicon-list:before {
  2479. content: "\e056";
  2480. }
  2481. .glyphicon-indent-left:before {
  2482. content: "\e057";
  2483. }
  2484. .glyphicon-indent-right:before {
  2485. content: "\e058";
  2486. }
  2487. .glyphicon-facetime-video:before {
  2488. content: "\e059";
  2489. }
  2490. .glyphicon-picture:before {
  2491. content: "\e060";
  2492. }
  2493. .glyphicon-map-marker:before {
  2494. content: "\e062";
  2495. }
  2496. .glyphicon-adjust:before {
  2497. content: "\e063";
  2498. }
  2499. .glyphicon-tint:before {
  2500. content: "\e064";
  2501. }
  2502. .glyphicon-edit:before {
  2503. content: "\e065";
  2504. }
  2505. .glyphicon-share:before {
  2506. content: "\e066";
  2507. }
  2508. .glyphicon-check:before {
  2509. content: "\e067";
  2510. }
  2511. .glyphicon-move:before {
  2512. content: "\e068";
  2513. }
  2514. .glyphicon-step-backward:before {
  2515. content: "\e069";
  2516. }
  2517. .glyphicon-fast-backward:before {
  2518. content: "\e070";
  2519. }
  2520. .glyphicon-backward:before {
  2521. content: "\e071";
  2522. }
  2523. .glyphicon-play:before {
  2524. content: "\e072";
  2525. }
  2526. .glyphicon-pause:before {
  2527. content: "\e073";
  2528. }
  2529. .glyphicon-stop:before {
  2530. content: "\e074";
  2531. }
  2532. .glyphicon-forward:before {
  2533. content: "\e075";
  2534. }
  2535. .glyphicon-fast-forward:before {
  2536. content: "\e076";
  2537. }
  2538. .glyphicon-step-forward:before {
  2539. content: "\e077";
  2540. }
  2541. .glyphicon-eject:before {
  2542. content: "\e078";
  2543. }
  2544. .glyphicon-chevron-left:before {
  2545. content: "\e079";
  2546. }
  2547. .glyphicon-chevron-right:before {
  2548. content: "\e080";
  2549. }
  2550. .glyphicon-plus-sign:before {
  2551. content: "\e081";
  2552. }
  2553. .glyphicon-minus-sign:before {
  2554. content: "\e082";
  2555. }
  2556. .glyphicon-remove-sign:before {
  2557. content: "\e083";
  2558. }
  2559. .glyphicon-ok-sign:before {
  2560. content: "\e084";
  2561. }
  2562. .glyphicon-question-sign:before {
  2563. content: "\e085";
  2564. }
  2565. .glyphicon-info-sign:before {
  2566. content: "\e086";
  2567. }
  2568. .glyphicon-screenshot:before {
  2569. content: "\e087";
  2570. }
  2571. .glyphicon-remove-circle:before {
  2572. content: "\e088";
  2573. }
  2574. .glyphicon-ok-circle:before {
  2575. content: "\e089";
  2576. }
  2577. .glyphicon-ban-circle:before {
  2578. content: "\e090";
  2579. }
  2580. .glyphicon-arrow-left:before {
  2581. content: "\e091";
  2582. }
  2583. .glyphicon-arrow-right:before {
  2584. content: "\e092";
  2585. }
  2586. .glyphicon-arrow-up:before {
  2587. content: "\e093";
  2588. }
  2589. .glyphicon-arrow-down:before {
  2590. content: "\e094";
  2591. }
  2592. .glyphicon-share-alt:before {
  2593. content: "\e095";
  2594. }
  2595. .glyphicon-resize-full:before {
  2596. content: "\e096";
  2597. }
  2598. .glyphicon-resize-small:before {
  2599. content: "\e097";
  2600. }
  2601. .glyphicon-exclamation-sign:before {
  2602. content: "\e101";
  2603. }
  2604. .glyphicon-gift:before {
  2605. content: "\e102";
  2606. }
  2607. .glyphicon-leaf:before {
  2608. content: "\e103";
  2609. }
  2610. .glyphicon-fire:before {
  2611. content: "\e104";
  2612. }
  2613. .glyphicon-eye-open:before {
  2614. content: "\e105";
  2615. }
  2616. .glyphicon-eye-close:before {
  2617. content: "\e106";
  2618. }
  2619. .glyphicon-warning-sign:before {
  2620. content: "\e107";
  2621. }
  2622. .glyphicon-plane:before {
  2623. content: "\e108";
  2624. }
  2625. .glyphicon-calendar:before {
  2626. content: "\e109";
  2627. }
  2628. .glyphicon-random:before {
  2629. content: "\e110";
  2630. }
  2631. .glyphicon-comment:before {
  2632. content: "\e111";
  2633. }
  2634. .glyphicon-magnet:before {
  2635. content: "\e112";
  2636. }
  2637. .glyphicon-chevron-up:before {
  2638. content: "\e113";
  2639. }
  2640. .glyphicon-chevron-down:before {
  2641. content: "\e114";
  2642. }
  2643. .glyphicon-retweet:before {
  2644. content: "\e115";
  2645. }
  2646. .glyphicon-shopping-cart:before {
  2647. content: "\e116";
  2648. }
  2649. .glyphicon-folder-close:before {
  2650. content: "\e117";
  2651. }
  2652. .glyphicon-folder-open:before {
  2653. content: "\e118";
  2654. }
  2655. .glyphicon-resize-vertical:before {
  2656. content: "\e119";
  2657. }
  2658. .glyphicon-resize-horizontal:before {
  2659. content: "\e120";
  2660. }
  2661. .glyphicon-hdd:before {
  2662. content: "\e121";
  2663. }
  2664. .glyphicon-bullhorn:before {
  2665. content: "\e122";
  2666. }
  2667. .glyphicon-bell:before {
  2668. content: "\e123";
  2669. }
  2670. .glyphicon-certificate:before {
  2671. content: "\e124";
  2672. }
  2673. .glyphicon-thumbs-up:before {
  2674. content: "\e125";
  2675. }
  2676. .glyphicon-thumbs-down:before {
  2677. content: "\e126";
  2678. }
  2679. .glyphicon-hand-right:before {
  2680. content: "\e127";
  2681. }
  2682. .glyphicon-hand-left:before {
  2683. content: "\e128";
  2684. }
  2685. .glyphicon-hand-up:before {
  2686. content: "\e129";
  2687. }
  2688. .glyphicon-hand-down:before {
  2689. content: "\e130";
  2690. }
  2691. .glyphicon-circle-arrow-right:before {
  2692. content: "\e131";
  2693. }
  2694. .glyphicon-circle-arrow-left:before {
  2695. content: "\e132";
  2696. }
  2697. .glyphicon-circle-arrow-up:before {
  2698. content: "\e133";
  2699. }
  2700. .glyphicon-circle-arrow-down:before {
  2701. content: "\e134";
  2702. }
  2703. .glyphicon-globe:before {
  2704. content: "\e135";
  2705. }
  2706. .glyphicon-wrench:before {
  2707. content: "\e136";
  2708. }
  2709. .glyphicon-tasks:before {
  2710. content: "\e137";
  2711. }
  2712. .glyphicon-filter:before {
  2713. content: "\e138";
  2714. }
  2715. .glyphicon-briefcase:before {
  2716. content: "\e139";
  2717. }
  2718. .glyphicon-fullscreen:before {
  2719. content: "\e140";
  2720. }
  2721. .glyphicon-dashboard:before {
  2722. content: "\e141";
  2723. }
  2724. .glyphicon-paperclip:before {
  2725. content: "\e142";
  2726. }
  2727. .glyphicon-heart-empty:before {
  2728. content: "\e143";
  2729. }
  2730. .glyphicon-link:before {
  2731. content: "\e144";
  2732. }
  2733. .glyphicon-phone:before {
  2734. content: "\e145";
  2735. }
  2736. .glyphicon-pushpin:before {
  2737. content: "\e146";
  2738. }
  2739. .glyphicon-usd:before {
  2740. content: "\e148";
  2741. }
  2742. .glyphicon-gbp:before {
  2743. content: "\e149";
  2744. }
  2745. .glyphicon-sort:before {
  2746. content: "\e150";
  2747. }
  2748. .glyphicon-sort-by-alphabet:before {
  2749. content: "\e151";
  2750. }
  2751. .glyphicon-sort-by-alphabet-alt:before {
  2752. content: "\e152";
  2753. }
  2754. .glyphicon-sort-by-order:before {
  2755. content: "\e153";
  2756. }
  2757. .glyphicon-sort-by-order-alt:before {
  2758. content: "\e154";
  2759. }
  2760. .glyphicon-sort-by-attributes:before {
  2761. content: "\e155";
  2762. }
  2763. .glyphicon-sort-by-attributes-alt:before {
  2764. content: "\e156";
  2765. }
  2766. .glyphicon-unchecked:before {
  2767. content: "\e157";
  2768. }
  2769. .glyphicon-expand:before {
  2770. content: "\e158";
  2771. }
  2772. .glyphicon-collapse-down:before {
  2773. content: "\e159";
  2774. }
  2775. .glyphicon-collapse-up:before {
  2776. content: "\e160";
  2777. }
  2778. .glyphicon-log-in:before {
  2779. content: "\e161";
  2780. }
  2781. .glyphicon-flash:before {
  2782. content: "\e162";
  2783. }
  2784. .glyphicon-log-out:before {
  2785. content: "\e163";
  2786. }
  2787. .glyphicon-new-window:before {
  2788. content: "\e164";
  2789. }
  2790. .glyphicon-record:before {
  2791. content: "\e165";
  2792. }
  2793. .glyphicon-save:before {
  2794. content: "\e166";
  2795. }
  2796. .glyphicon-open:before {
  2797. content: "\e167";
  2798. }
  2799. .glyphicon-saved:before {
  2800. content: "\e168";
  2801. }
  2802. .glyphicon-import:before {
  2803. content: "\e169";
  2804. }
  2805. .glyphicon-export:before {
  2806. content: "\e170";
  2807. }
  2808. .glyphicon-send:before {
  2809. content: "\e171";
  2810. }
  2811. .glyphicon-floppy-disk:before {
  2812. content: "\e172";
  2813. }
  2814. .glyphicon-floppy-saved:before {
  2815. content: "\e173";
  2816. }
  2817. .glyphicon-floppy-remove:before {
  2818. content: "\e174";
  2819. }
  2820. .glyphicon-floppy-save:before {
  2821. content: "\e175";
  2822. }
  2823. .glyphicon-floppy-open:before {
  2824. content: "\e176";
  2825. }
  2826. .glyphicon-credit-card:before {
  2827. content: "\e177";
  2828. }
  2829. .glyphicon-transfer:before {
  2830. content: "\e178";
  2831. }
  2832. .glyphicon-cutlery:before {
  2833. content: "\e179";
  2834. }
  2835. .glyphicon-header:before {
  2836. content: "\e180";
  2837. }
  2838. .glyphicon-compressed:before {
  2839. content: "\e181";
  2840. }
  2841. .glyphicon-earphone:before {
  2842. content: "\e182";
  2843. }
  2844. .glyphicon-phone-alt:before {
  2845. content: "\e183";
  2846. }
  2847. .glyphicon-tower:before {
  2848. content: "\e184";
  2849. }
  2850. .glyphicon-stats:before {
  2851. content: "\e185";
  2852. }
  2853. .glyphicon-sd-video:before {
  2854. content: "\e186";
  2855. }
  2856. .glyphicon-hd-video:before {
  2857. content: "\e187";
  2858. }
  2859. .glyphicon-subtitles:before {
  2860. content: "\e188";
  2861. }
  2862. .glyphicon-sound-stereo:before {
  2863. content: "\e189";
  2864. }
  2865. .glyphicon-sound-dolby:before {
  2866. content: "\e190";
  2867. }
  2868. .glyphicon-sound-5-1:before {
  2869. content: "\e191";
  2870. }
  2871. .glyphicon-sound-6-1:before {
  2872. content: "\e192";
  2873. }
  2874. .glyphicon-sound-7-1:before {
  2875. content: "\e193";
  2876. }
  2877. .glyphicon-copyright-mark:before {
  2878. content: "\e194";
  2879. }
  2880. .glyphicon-registration-mark:before {
  2881. content: "\e195";
  2882. }
  2883. .glyphicon-cloud-download:before {
  2884. content: "\e197";
  2885. }
  2886. .glyphicon-cloud-upload:before {
  2887. content: "\e198";
  2888. }
  2889. .glyphicon-tree-conifer:before {
  2890. content: "\e199";
  2891. }
  2892. .glyphicon-tree-deciduous:before {
  2893. content: "\e200";
  2894. }
  2895. .caret {
  2896. display: inline-block;
  2897. width: 0;
  2898. height: 0;
  2899. margin-left: 2px;
  2900. vertical-align: middle;
  2901. border-top: 4px solid;
  2902. border-right: 4px solid transparent;
  2903. border-left: 4px solid transparent;
  2904. }
  2905. .dropdown {
  2906. position: relative;
  2907. }
  2908. .dropdown-toggle:focus {
  2909. outline: 0;
  2910. }
  2911. .dropdown-menu {
  2912. position: absolute;
  2913. top: 100%;
  2914. left: 0;
  2915. z-index: 1000;
  2916. display: none;
  2917. float: left;
  2918. min-width: 160px;
  2919. padding: 5px 0;
  2920. margin: 2px 0 0;
  2921. list-style: none;
  2922. font-size: 14px;
  2923. background-color: #ffffff;
  2924. border: 1px solid #cccccc;
  2925. border: 1px solid rgba(0, 0, 0, 0.15);
  2926. border-radius: 4px;
  2927. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2928. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2929. background-clip: padding-box;
  2930. }
  2931. .dropdown-menu.pull-right {
  2932. right: 0;
  2933. left: auto;
  2934. }
  2935. .dropdown-menu .divider {
  2936. height: 1px;
  2937. margin: 9px 0;
  2938. overflow: hidden;
  2939. background-color: #e5e5e5;
  2940. }
  2941. .dropdown-menu > li > a {
  2942. display: block;
  2943. padding: 3px 20px;
  2944. clear: both;
  2945. font-weight: normal;
  2946. line-height: 1.428571429;
  2947. color: #333333;
  2948. white-space: nowrap;
  2949. }
  2950. .dropdown-menu > li > a:hover,
  2951. .dropdown-menu > li > a:focus {
  2952. text-decoration: none;
  2953. color: #262626;
  2954. background-color: #f5f5f5;
  2955. }
  2956. .dropdown-menu > .active > a,
  2957. .dropdown-menu > .active > a:hover,
  2958. .dropdown-menu > .active > a:focus {
  2959. color: #ffffff;
  2960. text-decoration: none;
  2961. outline: 0;
  2962. background-color: #428bca;
  2963. }
  2964. .dropdown-menu > .disabled > a,
  2965. .dropdown-menu > .disabled > a:hover,
  2966. .dropdown-menu > .disabled > a:focus {
  2967. color: #999999;
  2968. }
  2969. .dropdown-menu > .disabled > a:hover,
  2970. .dropdown-menu > .disabled > a:focus {
  2971. text-decoration: none;
  2972. background-color: transparent;
  2973. background-image: none;
  2974. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2975. cursor: not-allowed;
  2976. }
  2977. .open > .dropdown-menu {
  2978. display: block;
  2979. }
  2980. .open > a {
  2981. outline: 0;
  2982. }
  2983. .dropdown-header {
  2984. display: block;
  2985. padding: 3px 20px;
  2986. font-size: 12px;
  2987. line-height: 1.428571429;
  2988. color: #999999;
  2989. }
  2990. .dropdown-backdrop {
  2991. position: fixed;
  2992. left: 0;
  2993. right: 0;
  2994. bottom: 0;
  2995. top: 0;
  2996. z-index: 990;
  2997. }
  2998. .pull-right > .dropdown-menu {
  2999. right: 0;
  3000. left: auto;
  3001. }
  3002. .dropup .caret,
  3003. .navbar-fixed-bottom .dropdown .caret {
  3004. border-top: 0;
  3005. border-bottom: 4px solid;
  3006. content: "";
  3007. }
  3008. .dropup .dropdown-menu,
  3009. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3010. top: auto;
  3011. bottom: 100%;
  3012. margin-bottom: 1px;
  3013. }
  3014. @media (min-width: 768px) {
  3015. .navbar-right .dropdown-menu {
  3016. right: 0;
  3017. left: auto;
  3018. }
  3019. }
  3020. .btn-group,
  3021. .btn-group-vertical {
  3022. position: relative;
  3023. display: inline-block;
  3024. vertical-align: middle;
  3025. }
  3026. .btn-group > .btn,
  3027. .btn-group-vertical > .btn {
  3028. position: relative;
  3029. float: left;
  3030. }
  3031. .btn-group > .btn:hover,
  3032. .btn-group-vertical > .btn:hover,
  3033. .btn-group > .btn:focus,
  3034. .btn-group-vertical > .btn:focus,
  3035. .btn-group > .btn:active,
  3036. .btn-group-vertical > .btn:active,
  3037. .btn-group > .btn.active,
  3038. .btn-group-vertical > .btn.active {
  3039. z-index: 2;
  3040. }
  3041. .btn-group > .btn:focus,
  3042. .btn-group-vertical > .btn:focus {
  3043. outline: none;
  3044. }
  3045. .btn-group .btn + .btn,
  3046. .btn-group .btn + .btn-group,
  3047. .btn-group .btn-group + .btn,
  3048. .btn-group .btn-group + .btn-group {
  3049. margin-left: -1px;
  3050. }
  3051. .btn-toolbar:before,
  3052. .btn-toolbar:after {
  3053. content: " ";
  3054. display: table;
  3055. }
  3056. .btn-toolbar:after {
  3057. clear: both;
  3058. }
  3059. .btn-toolbar:before,
  3060. .btn-toolbar:after {
  3061. content: " ";
  3062. display: table;
  3063. }
  3064. .btn-toolbar:after {
  3065. clear: both;
  3066. }
  3067. .btn-toolbar .btn-group {
  3068. float: left;
  3069. }
  3070. .btn-toolbar > .btn + .btn,
  3071. .btn-toolbar > .btn-group + .btn,
  3072. .btn-toolbar > .btn + .btn-group,
  3073. .btn-toolbar > .btn-group + .btn-group {
  3074. margin-left: 5px;
  3075. }
  3076. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3077. border-radius: 0;
  3078. }
  3079. .btn-group > .btn:first-child {
  3080. margin-left: 0;
  3081. }
  3082. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3083. border-bottom-right-radius: 0;
  3084. border-top-right-radius: 0;
  3085. }
  3086. .btn-group > .btn:last-child:not(:first-child),
  3087. .btn-group > .dropdown-toggle:not(:first-child) {
  3088. border-bottom-left-radius: 0;
  3089. border-top-left-radius: 0;
  3090. }
  3091. .btn-group > .btn-group {
  3092. float: left;
  3093. }
  3094. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3095. border-radius: 0;
  3096. }
  3097. .btn-group > .btn-group:first-child > .btn:last-child,
  3098. .btn-group > .btn-group:first-child > .dropdown-toggle {
  3099. border-bottom-right-radius: 0;
  3100. border-top-right-radius: 0;
  3101. }
  3102. .btn-group > .btn-group:last-child > .btn:first-child {
  3103. border-bottom-left-radius: 0;
  3104. border-top-left-radius: 0;
  3105. }
  3106. .btn-group .dropdown-toggle:active,
  3107. .btn-group.open .dropdown-toggle {
  3108. outline: 0;
  3109. }
  3110. .btn-group-xs > .btn {
  3111. padding: 1px 5px;
  3112. font-size: 12px;
  3113. line-height: 1.5;
  3114. border-radius: 3px;
  3115. }
  3116. .btn-group-sm > .btn {
  3117. padding: 5px 10px;
  3118. font-size: 12px;
  3119. line-height: 1.5;
  3120. border-radius: 3px;
  3121. }
  3122. .btn-group-lg > .btn {
  3123. padding: 10px 16px;
  3124. font-size: 18px;
  3125. line-height: 1.33;
  3126. border-radius: 6px;
  3127. }
  3128. .btn-group > .btn + .dropdown-toggle {
  3129. padding-left: 8px;
  3130. padding-right: 8px;
  3131. }
  3132. .btn-group > .btn-lg + .dropdown-toggle {
  3133. padding-left: 12px;
  3134. padding-right: 12px;
  3135. }
  3136. .btn-group.open .dropdown-toggle {
  3137. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3138. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3139. }
  3140. .btn-group.open .dropdown-toggle.btn-link {
  3141. -webkit-box-shadow: none;
  3142. box-shadow: none;
  3143. }
  3144. .btn .caret {
  3145. margin-left: 0;
  3146. }
  3147. .btn-lg .caret {
  3148. border-width: 5px 5px 0;
  3149. border-bottom-width: 0;
  3150. }
  3151. .dropup .btn-lg .caret {
  3152. border-width: 0 5px 5px;
  3153. }
  3154. .btn-group-vertical > .btn,
  3155. .btn-group-vertical > .btn-group,
  3156. .btn-group-vertical > .btn-group > .btn {
  3157. display: block;
  3158. float: none;
  3159. width: 100%;
  3160. max-width: 100%;
  3161. }
  3162. .btn-group-vertical > .btn-group:before,
  3163. .btn-group-vertical > .btn-group:after {
  3164. content: " ";
  3165. display: table;
  3166. }
  3167. .btn-group-vertical > .btn-group:after {
  3168. clear: both;
  3169. }
  3170. .btn-group-vertical > .btn-group:before,
  3171. .btn-group-vertical > .btn-group:after {
  3172. content: " ";
  3173. display: table;
  3174. }
  3175. .btn-group-vertical > .btn-group:after {
  3176. clear: both;
  3177. }
  3178. .btn-group-vertical > .btn-group > .btn {
  3179. float: none;
  3180. }
  3181. .btn-group-vertical > .btn + .btn,
  3182. .btn-group-vertical > .btn + .btn-group,
  3183. .btn-group-vertical > .btn-group + .btn,
  3184. .btn-group-vertical > .btn-group + .btn-group {
  3185. margin-top: -1px;
  3186. margin-left: 0;
  3187. }
  3188. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3189. border-radius: 0;
  3190. }
  3191. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3192. border-top-right-radius: 4px;
  3193. border-bottom-right-radius: 0;
  3194. border-bottom-left-radius: 0;
  3195. }
  3196. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3197. border-bottom-left-radius: 4px;
  3198. border-top-right-radius: 0;
  3199. border-top-left-radius: 0;
  3200. }
  3201. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3202. border-radius: 0;
  3203. }
  3204. .btn-group-vertical > .btn-group:first-child > .btn:last-child,
  3205. .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  3206. border-bottom-right-radius: 0;
  3207. border-bottom-left-radius: 0;
  3208. }
  3209. .btn-group-vertical > .btn-group:last-child > .btn:first-child {
  3210. border-top-right-radius: 0;
  3211. border-top-left-radius: 0;
  3212. }
  3213. .btn-group-justified {
  3214. display: table;
  3215. width: 100%;
  3216. table-layout: fixed;
  3217. border-collapse: separate;
  3218. }
  3219. .btn-group-justified > .btn,
  3220. .btn-group-justified > .btn-group {
  3221. float: none;
  3222. display: table-cell;
  3223. width: 1%;
  3224. }
  3225. .btn-group-justified > .btn-group .btn {
  3226. width: 100%;
  3227. }
  3228. [data-toggle="buttons"] > .btn > input[type="radio"],
  3229. [data-toggle="buttons"] > .btn > input[type="checkbox"] {
  3230. display: none;
  3231. }
  3232. .input-group {
  3233. position: relative;
  3234. display: table;
  3235. border-collapse: separate;
  3236. }
  3237. .input-group[class*="col-"] {
  3238. float: none;
  3239. padding-left: 0;
  3240. padding-right: 0;
  3241. }
  3242. .input-group .form-control {
  3243. width: 100%;
  3244. margin-bottom: 0;
  3245. }
  3246. .input-group-lg > .form-control,
  3247. .input-group-lg > .input-group-addon,
  3248. .input-group-lg > .input-group-btn > .btn {
  3249. height: 46px;
  3250. padding: 10px 16px;
  3251. font-size: 18px;
  3252. line-height: 1.33;
  3253. border-radius: 6px;
  3254. }
  3255. select.input-group-lg > .form-control,
  3256. select.input-group-lg > .input-group-addon,
  3257. select.input-group-lg > .input-group-btn > .btn {
  3258. height: 46px;
  3259. line-height: 46px;
  3260. }
  3261. textarea.input-group-lg > .form-control,
  3262. textarea.input-group-lg > .input-group-addon,
  3263. textarea.input-group-lg > .input-group-btn > .btn {
  3264. height: auto;
  3265. }
  3266. .input-group-sm > .form-control,
  3267. .input-group-sm > .input-group-addon,
  3268. .input-group-sm > .input-group-btn > .btn {
  3269. height: 30px;
  3270. padding: 5px 10px;
  3271. font-size: 12px;
  3272. line-height: 1.5;
  3273. border-radius: 3px;
  3274. }
  3275. select.input-group-sm > .form-control,
  3276. select.input-group-sm > .input-group-addon,
  3277. select.input-group-sm > .input-group-btn > .btn {
  3278. height: 30px;
  3279. line-height: 30px;
  3280. }
  3281. textarea.input-group-sm > .form-control,
  3282. textarea.input-group-sm > .input-group-addon,
  3283. textarea.input-group-sm > .input-group-btn > .btn {
  3284. height: auto;
  3285. }
  3286. .input-group-addon,
  3287. .input-group-btn,
  3288. .input-group .form-control {
  3289. display: table-cell;
  3290. }
  3291. .input-group-addon:not(:first-child):not(:last-child),
  3292. .input-group-btn:not(:first-child):not(:last-child),
  3293. .input-group .form-control:not(:first-child):not(:last-child) {
  3294. border-radius: 0;
  3295. }
  3296. .input-group-addon,
  3297. .input-group-btn {
  3298. width: 1%;
  3299. white-space: nowrap;
  3300. vertical-align: middle;
  3301. }
  3302. .input-group-addon {
  3303. padding: 6px 12px;
  3304. font-size: 14px;
  3305. font-weight: normal;
  3306. line-height: 1;
  3307. color: #555555;
  3308. text-align: center;
  3309. background-color: #eeeeee;
  3310. border: 1px solid #cccccc;
  3311. border-radius: 4px;
  3312. }
  3313. .input-group-addon.input-sm {
  3314. padding: 5px 10px;
  3315. font-size: 12px;
  3316. border-radius: 3px;
  3317. }
  3318. .input-group-addon.input-lg {
  3319. padding: 10px 16px;
  3320. font-size: 18px;
  3321. border-radius: 6px;
  3322. }
  3323. .input-group-addon input[type="radio"],
  3324. .input-group-addon input[type="checkbox"] {
  3325. margin-top: 0;
  3326. }
  3327. .input-group .form-control:first-child,
  3328. .input-group-addon:first-child,
  3329. .input-group-btn:first-child > .btn,
  3330. .input-group-btn:first-child > .dropdown-toggle,
  3331. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  3332. border-bottom-right-radius: 0;
  3333. border-top-right-radius: 0;
  3334. }
  3335. .input-group-addon:first-child {
  3336. border-right: 0;
  3337. }
  3338. .input-group .form-control:last-child,
  3339. .input-group-addon:last-child,
  3340. .input-group-btn:last-child > .btn,
  3341. .input-group-btn:last-child > .dropdown-toggle,
  3342. .input-group-btn:first-child > .btn:not(:first-child) {
  3343. border-bottom-left-radius: 0;
  3344. border-top-left-radius: 0;
  3345. }
  3346. .input-group-addon:last-child {
  3347. border-left: 0;
  3348. }
  3349. .input-group-btn {
  3350. position: relative;
  3351. white-space: nowrap;
  3352. }
  3353. .input-group-btn:first-child > .btn {
  3354. margin-right: -1px;
  3355. }
  3356. .input-group-btn:last-child > .btn {
  3357. margin-left: -1px;
  3358. }
  3359. .input-group-btn > .btn {
  3360. position: relative;
  3361. }
  3362. .input-group-btn > .btn + .btn {
  3363. margin-left: -4px;
  3364. }
  3365. .input-group-btn > .btn:hover,
  3366. .input-group-btn > .btn:active {
  3367. z-index: 2;
  3368. }
  3369. .nav {
  3370. margin-bottom: 0;
  3371. padding-left: 0;
  3372. list-style: none;
  3373. }
  3374. .nav:before,
  3375. .nav:after {
  3376. content: " ";
  3377. display: table;
  3378. }
  3379. .nav:after {
  3380. clear: both;
  3381. }
  3382. .nav:before,
  3383. .nav:after {
  3384. content: " ";
  3385. display: table;
  3386. }
  3387. .nav:after {
  3388. clear: both;
  3389. }
  3390. .nav > li {
  3391. position: relative;
  3392. display: block;
  3393. }
  3394. .nav > li > a {
  3395. position: relative;
  3396. display: block;
  3397. padding: 10px 15px;
  3398. }
  3399. .nav > li > a:hover,
  3400. .nav > li > a:focus {
  3401. text-decoration: none;
  3402. background-color: #eeeeee;
  3403. }
  3404. .nav > li.disabled > a {
  3405. color: #999999;
  3406. }
  3407. .nav > li.disabled > a:hover,
  3408. .nav > li.disabled > a:focus {
  3409. color: #999999;
  3410. text-decoration: none;
  3411. background-color: transparent;
  3412. cursor: not-allowed;
  3413. }
  3414. .nav .open > a,
  3415. .nav .open > a:hover,
  3416. .nav .open > a:focus {
  3417. background-color: #eeeeee;
  3418. border-color: #428bca;
  3419. }
  3420. .nav .nav-divider {
  3421. height: 1px;
  3422. margin: 9px 0;
  3423. overflow: hidden;
  3424. background-color: #e5e5e5;
  3425. }
  3426. .nav > li > a > img {
  3427. max-width: none;
  3428. }
  3429. .nav-tabs {
  3430. border-bottom: 1px solid #dddddd;
  3431. }
  3432. .nav-tabs > li {
  3433. float: left;
  3434. margin-bottom: -1px;
  3435. }
  3436. .nav-tabs > li > a {
  3437. margin-right: 2px;
  3438. line-height: 1.428571429;
  3439. border: 1px solid transparent;
  3440. border-radius: 4px 4px 0 0;
  3441. }
  3442. .nav-tabs > li > a:hover {
  3443. border-color: #eeeeee #eeeeee #dddddd;
  3444. }
  3445. .nav-tabs > li.active > a,
  3446. .nav-tabs > li.active > a:hover,
  3447. .nav-tabs > li.active > a:focus {
  3448. color: #555555;
  3449. background-color: #ffffff;
  3450. border: 1px solid #dddddd;
  3451. border-bottom-color: transparent;
  3452. cursor: default;
  3453. }
  3454. .nav-tabs.nav-justified {
  3455. width: 100%;
  3456. border-bottom: 0;
  3457. }
  3458. .nav-tabs.nav-justified > li {
  3459. float: none;
  3460. }
  3461. .nav-tabs.nav-justified > li > a {
  3462. text-align: center;
  3463. margin-bottom: 5px;
  3464. }
  3465. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  3466. top: auto;
  3467. left: auto;
  3468. }
  3469. @media (min-width: 768px) {
  3470. .nav-tabs.nav-justified > li {
  3471. display: table-cell;
  3472. width: 1%;
  3473. }
  3474. .nav-tabs.nav-justified > li > a {
  3475. margin-bottom: 0;
  3476. }
  3477. }
  3478. .nav-tabs.nav-justified > li > a {
  3479. margin-right: 0;
  3480. border-radius: 4px;
  3481. }
  3482. .nav-tabs.nav-justified > .active > a,
  3483. .nav-tabs.nav-justified > .active > a:hover,
  3484. .nav-tabs.nav-justified > .active > a:focus {
  3485. border: 1px solid #dddddd;
  3486. }
  3487. @media (min-width: 768px) {
  3488. .nav-tabs.nav-justified > li > a {
  3489. border-bottom: 1px solid #dddddd;
  3490. border-radius: 4px 4px 0 0;
  3491. }
  3492. .nav-tabs.nav-justified > .active > a,
  3493. .nav-tabs.nav-justified > .active > a:hover,
  3494. .nav-tabs.nav-justified > .active > a:focus {
  3495. border-bottom-color: #ffffff;
  3496. }
  3497. }
  3498. .nav-pills > li {
  3499. float: left;
  3500. }
  3501. .nav-pills > li > a {
  3502. border-radius: 4px;
  3503. }
  3504. .nav-pills > li + li {
  3505. margin-left: 2px;
  3506. }
  3507. .nav-pills > li.active > a,
  3508. .nav-pills > li.active > a:hover,
  3509. .nav-pills > li.active > a:focus {
  3510. color: #ffffff;
  3511. background-color: #428bca;
  3512. }
  3513. .nav-stacked > li {
  3514. float: none;
  3515. }
  3516. .nav-stacked > li + li {
  3517. margin-top: 2px;
  3518. margin-left: 0;
  3519. }
  3520. .nav-justified {
  3521. width: 100%;
  3522. }
  3523. .nav-justified > li {
  3524. float: none;
  3525. }
  3526. .nav-justified > li > a {
  3527. text-align: center;
  3528. margin-bottom: 5px;
  3529. }
  3530. .nav-justified > .dropdown .dropdown-menu {
  3531. top: auto;
  3532. left: auto;
  3533. }
  3534. @media (min-width: 768px) {
  3535. .nav-justified > li {
  3536. display: table-cell;
  3537. width: 1%;
  3538. }
  3539. .nav-justified > li > a {
  3540. margin-bottom: 0;
  3541. }
  3542. }
  3543. .nav-tabs-justified {
  3544. border-bottom: 0;
  3545. }
  3546. .nav-tabs-justified > li > a {
  3547. margin-right: 0;
  3548. border-radius: 4px;
  3549. }
  3550. .nav-tabs-justified > .active > a,
  3551. .nav-tabs-justified > .active > a:hover,
  3552. .nav-tabs-justified > .active > a:focus {
  3553. border: 1px solid #dddddd;
  3554. }
  3555. @media (min-width: 768px) {
  3556. .nav-tabs-justified > li > a {
  3557. border-bottom: 1px solid #dddddd;
  3558. border-radius: 4px 4px 0 0;
  3559. }
  3560. .nav-tabs-justified > .active > a,
  3561. .nav-tabs-justified > .active > a:hover,
  3562. .nav-tabs-justified > .active > a:focus {
  3563. border-bottom-color: #ffffff;
  3564. }
  3565. }
  3566. .tab-content > .tab-pane {
  3567. display: none;
  3568. }
  3569. .tab-content > .active {
  3570. display: block;
  3571. }
  3572. .nav-tabs .dropdown-menu {
  3573. margin-top: -1px;
  3574. border-top-right-radius: 0;
  3575. border-top-left-radius: 0;
  3576. }
  3577. .navbar {
  3578. position: relative;
  3579. min-height: 50px;
  3580. margin-bottom: 20px;
  3581. border: 1px solid transparent;
  3582. }
  3583. .navbar:before,
  3584. .navbar:after {
  3585. content: " ";
  3586. display: table;
  3587. }
  3588. .navbar:after {
  3589. clear: both;
  3590. }
  3591. .navbar:before,
  3592. .navbar:after {
  3593. content: " ";
  3594. display: table;
  3595. }
  3596. .navbar:after {
  3597. clear: both;
  3598. }
  3599. @media (min-width: 768px) {
  3600. .navbar {
  3601. border-radius: 4px;
  3602. }
  3603. }
  3604. .navbar-header:before,
  3605. .navbar-header:after {
  3606. content: " ";
  3607. display: table;
  3608. }
  3609. .navbar-header:after {
  3610. clear: both;
  3611. }
  3612. .navbar-header:before,
  3613. .navbar-header:after {
  3614. content: " ";
  3615. display: table;
  3616. }
  3617. .navbar-header:after {
  3618. clear: both;
  3619. }
  3620. @media (min-width: 768px) {
  3621. .navbar-header {
  3622. float: left;
  3623. }
  3624. }
  3625. .navbar-collapse {
  3626. max-height: 340px;
  3627. overflow-x: visible;
  3628. padding-right: 15px;
  3629. padding-left: 15px;
  3630. border-top: 1px solid transparent;
  3631. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  3632. -webkit-overflow-scrolling: touch;
  3633. }
  3634. .navbar-collapse:before,
  3635. .navbar-collapse:after {
  3636. content: " ";
  3637. display: table;
  3638. }
  3639. .navbar-collapse:after {
  3640. clear: both;
  3641. }
  3642. .navbar-collapse:before,
  3643. .navbar-collapse:after {
  3644. content: " ";
  3645. display: table;
  3646. }
  3647. .navbar-collapse:after {
  3648. clear: both;
  3649. }
  3650. .navbar-collapse.in {
  3651. overflow-y: auto;
  3652. }
  3653. @media (min-width: 768px) {
  3654. .navbar-collapse {
  3655. width: auto;
  3656. border-top: 0;
  3657. box-shadow: none;
  3658. }
  3659. .navbar-collapse.collapse {
  3660. display: block !important;
  3661. height: auto !important;
  3662. padding-bottom: 0;
  3663. overflow: visible !important;
  3664. }
  3665. .navbar-collapse.in {
  3666. overflow-y: visible;
  3667. }
  3668. .navbar-fixed-top .navbar-collapse,
  3669. .navbar-static-top .navbar-collapse,
  3670. .navbar-fixed-bottom .navbar-collapse {
  3671. padding-left: 0;
  3672. padding-right: 0;
  3673. }
  3674. }
  3675. .container > .navbar-header,
  3676. .container > .navbar-collapse {
  3677. margin-right: -15px;
  3678. margin-left: -15px;
  3679. }
  3680. @media (min-width: 768px) {
  3681. .container > .navbar-header,
  3682. .container > .navbar-collapse {
  3683. margin-right: 0;
  3684. margin-left: 0;
  3685. }
  3686. }
  3687. .navbar-static-top {
  3688. z-index: 1000;
  3689. border-width: 0 0 1px;
  3690. }
  3691. @media (min-width: 768px) {
  3692. .navbar-static-top {
  3693. border-radius: 0;
  3694. }
  3695. }
  3696. .navbar-fixed-top,
  3697. .navbar-fixed-bottom {
  3698. position: fixed;
  3699. right: 0;
  3700. left: 0;
  3701. z-index: 1030;
  3702. }
  3703. @media (min-width: 768px) {
  3704. .navbar-fixed-top,
  3705. .navbar-fixed-bottom {
  3706. border-radius: 0;
  3707. }
  3708. }
  3709. .navbar-fixed-top {
  3710. top: 0;
  3711. border-width: 0 0 1px;
  3712. }
  3713. .navbar-fixed-bottom {
  3714. bottom: 0;
  3715. margin-bottom: 0;
  3716. border-width: 1px 0 0;
  3717. }
  3718. .navbar-brand {
  3719. float: left;
  3720. padding: 15px 15px;
  3721. font-size: 18px;
  3722. line-height: 20px;
  3723. }
  3724. .navbar-brand:hover,
  3725. .navbar-brand:focus {
  3726. text-decoration: none;
  3727. }
  3728. @media (min-width: 768px) {
  3729. .navbar > .container .navbar-brand {
  3730. margin-left: -15px;
  3731. }
  3732. }
  3733. .navbar-toggle {
  3734. position: relative;
  3735. float: right;
  3736. margin-right: 15px;
  3737. padding: 9px 10px;
  3738. margin-top: 8px;
  3739. margin-bottom: 8px;
  3740. background-color: transparent;
  3741. background-image: none;
  3742. border: 1px solid transparent;
  3743. border-radius: 4px;
  3744. }
  3745. .navbar-toggle .icon-bar {
  3746. display: block;
  3747. width: 22px;
  3748. height: 2px;
  3749. border-radius: 1px;
  3750. }
  3751. .navbar-toggle .icon-bar + .icon-bar {
  3752. margin-top: 4px;
  3753. }
  3754. @media (min-width: 768px) {
  3755. .navbar-toggle {
  3756. display: none;
  3757. }
  3758. }
  3759. .navbar-nav {
  3760. margin: 7.5px -15px;
  3761. }
  3762. .navbar-nav > li > a {
  3763. padding-top: 10px;
  3764. padding-bottom: 10px;
  3765. line-height: 20px;
  3766. }
  3767. @media (max-width: 767px) {
  3768. .navbar-nav .open .dropdown-menu {
  3769. position: static;
  3770. float: none;
  3771. width: auto;
  3772. margin-top: 0;
  3773. background-color: transparent;
  3774. border: 0;
  3775. box-shadow: none;
  3776. }
  3777. .navbar-nav .open .dropdown-menu > li > a,
  3778. .navbar-nav .open .dropdown-menu .dropdown-header {
  3779. padding: 5px 15px 5px 25px;
  3780. }
  3781. .navbar-nav .open .dropdown-menu > li > a {
  3782. line-height: 20px;
  3783. }
  3784. .navbar-nav .open .dropdown-menu > li > a:hover,
  3785. .navbar-nav .open .dropdown-menu > li > a:focus {
  3786. background-image: none;
  3787. }
  3788. }
  3789. @media (min-width: 768px) {
  3790. .navbar-nav {
  3791. float: left;
  3792. margin: 0;
  3793. }
  3794. .navbar-nav > li {
  3795. float: left;
  3796. }
  3797. .navbar-nav > li > a {
  3798. padding-top: 15px;
  3799. padding-bottom: 15px;
  3800. }
  3801. .navbar-nav.navbar-right:last-child {
  3802. margin-right: -15px;
  3803. }
  3804. }
  3805. @media (min-width: 768px) {
  3806. .navbar-left {
  3807. float: left !important;
  3808. }
  3809. .navbar-right {
  3810. float: right !important;
  3811. }
  3812. }
  3813. .navbar-form {
  3814. margin-left: -15px;
  3815. margin-right: -15px;
  3816. padding: 10px 15px;
  3817. border-top: 1px solid transparent;
  3818. border-bottom: 1px solid transparent;
  3819. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3820. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3821. margin-top: 8px;
  3822. margin-bottom: 8px;
  3823. }
  3824. @media (min-width: 768px) {
  3825. .navbar-form .form-group {
  3826. display: inline-block;
  3827. margin-bottom: 0;
  3828. vertical-align: middle;
  3829. }
  3830. .navbar-form .form-control {
  3831. display: inline-block;
  3832. }
  3833. .navbar-form select.form-control {
  3834. width: auto;
  3835. }
  3836. .navbar-form .radio,
  3837. .navbar-form .checkbox {
  3838. display: inline-block;
  3839. margin-top: 0;
  3840. margin-bottom: 0;
  3841. padding-left: 0;
  3842. }
  3843. .navbar-form .radio input[type="radio"],
  3844. .navbar-form .checkbox input[type="checkbox"] {
  3845. float: none;
  3846. margin-left: 0;
  3847. }
  3848. }
  3849. @media (max-width: 767px) {
  3850. .navbar-form .form-group {
  3851. margin-bottom: 5px;
  3852. }
  3853. }
  3854. @media (min-width: 768px) {
  3855. .navbar-form {
  3856. width: auto;
  3857. border: 0;
  3858. margin-left: 0;
  3859. margin-right: 0;
  3860. padding-top: 0;
  3861. padding-bottom: 0;
  3862. -webkit-box-shadow: none;
  3863. box-shadow: none;
  3864. }
  3865. .navbar-form.navbar-right:last-child {
  3866. margin-right: -15px;
  3867. }
  3868. }
  3869. .navbar-nav > li > .dropdown-menu {
  3870. margin-top: 0;
  3871. border-top-right-radius: 0;
  3872. border-top-left-radius: 0;
  3873. }
  3874. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  3875. border-bottom-right-radius: 0;
  3876. border-bottom-left-radius: 0;
  3877. }
  3878. .navbar-nav.pull-right > li > .dropdown-menu,
  3879. .navbar-nav > li > .dropdown-menu.pull-right {
  3880. left: auto;
  3881. right: 0;
  3882. }
  3883. .navbar-btn {
  3884. margin-top: 8px;
  3885. margin-bottom: 8px;
  3886. }
  3887. .navbar-btn.btn-sm {
  3888. margin-top: 10px;
  3889. margin-bottom: 10px;
  3890. }
  3891. .navbar-btn.btn-xs {
  3892. margin-top: 14px;
  3893. margin-bottom: 14px;
  3894. }
  3895. .navbar-text {
  3896. margin-top: 15px;
  3897. margin-bottom: 15px;
  3898. }
  3899. @media (min-width: 768px) {
  3900. .navbar-text {
  3901. float: left;
  3902. margin-left: 15px;
  3903. margin-right: 15px;
  3904. }
  3905. .navbar-text.navbar-right:last-child {
  3906. margin-right: 0;
  3907. }
  3908. }
  3909. .navbar-default {
  3910. background-color: #f8f8f8;
  3911. border-color: #e7e7e7;
  3912. }
  3913. .navbar-default .navbar-brand {
  3914. color: #777777;
  3915. }
  3916. .navbar-default .navbar-brand:hover,
  3917. .navbar-default .navbar-brand:focus {
  3918. color: #5e5e5e;
  3919. background-color: transparent;
  3920. }
  3921. .navbar-default .navbar-text {
  3922. color: #777777;
  3923. }
  3924. .navbar-default .navbar-nav > li > a {
  3925. color: #777777;
  3926. }
  3927. .navbar-default .navbar-nav > li > a:hover,
  3928. .navbar-default .navbar-nav > li > a:focus {
  3929. color: #333333;
  3930. background-color: transparent;
  3931. }
  3932. .navbar-default .navbar-nav > .active > a,
  3933. .navbar-default .navbar-nav > .active > a:hover,
  3934. .navbar-default .navbar-nav > .active > a:focus {
  3935. color: #555555;
  3936. background-color: #e7e7e7;
  3937. }
  3938. .navbar-default .navbar-nav > .disabled > a,
  3939. .navbar-default .navbar-nav > .disabled > a:hover,
  3940. .navbar-default .navbar-nav > .disabled > a:focus {
  3941. color: #cccccc;
  3942. background-color: transparent;
  3943. }
  3944. .navbar-default .navbar-toggle {
  3945. border-color: #dddddd;
  3946. }
  3947. .navbar-default .navbar-toggle:hover,
  3948. .navbar-default .navbar-toggle:focus {
  3949. background-color: #dddddd;
  3950. }
  3951. .navbar-default .navbar-toggle .icon-bar {
  3952. background-color: #cccccc;
  3953. }
  3954. .navbar-default .navbar-collapse,
  3955. .navbar-default .navbar-form {
  3956. border-color: #e7e7e7;
  3957. }
  3958. .navbar-default .navbar-nav > .open > a,
  3959. .navbar-default .navbar-nav > .open > a:hover,
  3960. .navbar-default .navbar-nav > .open > a:focus {
  3961. background-color: #e7e7e7;
  3962. color: #555555;
  3963. }
  3964. @media (max-width: 767px) {
  3965. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  3966. color: #777777;
  3967. }
  3968. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  3969. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  3970. color: #333333;
  3971. background-color: transparent;
  3972. }
  3973. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  3974. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  3975. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  3976. color: #555555;
  3977. background-color: #e7e7e7;
  3978. }
  3979. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  3980. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  3981. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3982. color: #cccccc;
  3983. background-color: transparent;
  3984. }
  3985. }
  3986. .navbar-default .navbar-link {
  3987. color: #777777;
  3988. }
  3989. .navbar-default .navbar-link:hover {
  3990. color: #333333;
  3991. }
  3992. .navbar-inverse {
  3993. background-color: #222222;
  3994. border-color: #080808;
  3995. }
  3996. .navbar-inverse .navbar-brand {
  3997. color: #999999;
  3998. }
  3999. .navbar-inverse .navbar-brand:hover,
  4000. .navbar-inverse .navbar-brand:focus {
  4001. color: #ffffff;
  4002. background-color: transparent;
  4003. }
  4004. .navbar-inverse .navbar-text {
  4005. color: #999999;
  4006. }
  4007. .navbar-inverse .navbar-nav > li > a {
  4008. color: #999999;
  4009. }
  4010. .navbar-inverse .navbar-nav > li > a:hover,
  4011. .navbar-inverse .navbar-nav > li > a:focus {
  4012. color: #ffffff;
  4013. background-color: transparent;
  4014. }
  4015. .navbar-inverse .navbar-nav > .active > a,
  4016. .navbar-inverse .navbar-nav > .active > a:hover,
  4017. .navbar-inverse .navbar-nav > .active > a:focus {
  4018. color: #ffffff;
  4019. background-color: #080808;
  4020. }
  4021. .navbar-inverse .navbar-nav > .disabled > a,
  4022. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4023. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4024. color: #444444;
  4025. background-color: transparent;
  4026. }
  4027. .navbar-inverse .navbar-toggle {
  4028. border-color: #333333;
  4029. }
  4030. .navbar-inverse .navbar-toggle:hover,
  4031. .navbar-inverse .navbar-toggle:focus {
  4032. background-color: #333333;
  4033. }
  4034. .navbar-inverse .navbar-toggle .icon-bar {
  4035. background-color: #ffffff;
  4036. }
  4037. .navbar-inverse .navbar-collapse,
  4038. .navbar-inverse .navbar-form {
  4039. border-color: #101010;
  4040. }
  4041. .navbar-inverse .navbar-nav > .open > a,
  4042. .navbar-inverse .navbar-nav > .open > a:hover,
  4043. .navbar-inverse .navbar-nav > .open > a:focus {
  4044. background-color: #080808;
  4045. color: #ffffff;
  4046. }
  4047. @media (max-width: 767px) {
  4048. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4049. border-color: #080808;
  4050. }
  4051. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4052. background-color: #080808;
  4053. }
  4054. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4055. color: #999999;
  4056. }
  4057. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4058. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4059. color: #ffffff;
  4060. background-color: transparent;
  4061. }
  4062. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4063. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4064. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4065. color: #ffffff;
  4066. background-color: #080808;
  4067. }
  4068. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4069. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4070. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4071. color: #444444;
  4072. background-color: transparent;
  4073. }
  4074. }
  4075. .navbar-inverse .navbar-link {
  4076. color: #999999;
  4077. }
  4078. .navbar-inverse .navbar-link:hover {
  4079. color: #ffffff;
  4080. }
  4081. .breadcrumb {
  4082. padding: 8px 15px;
  4083. margin-bottom: 20px;
  4084. list-style: none;
  4085. background-color: #f5f5f5;
  4086. border-radius: 4px;
  4087. }
  4088. .breadcrumb > li {
  4089. display: inline-block;
  4090. }
  4091. .breadcrumb > li + li:before {
  4092. content: "/\00a0";
  4093. padding: 0 5px;
  4094. color: #cccccc;
  4095. }
  4096. .breadcrumb > .active {
  4097. color: #999999;
  4098. }
  4099. .pagination {
  4100. display: inline-block;
  4101. padding-left: 0;
  4102. margin: 20px 0;
  4103. border-radius: 4px;
  4104. }
  4105. .pagination > li {
  4106. display: inline;
  4107. }
  4108. .pagination > li > a,
  4109. .pagination > li > span {
  4110. position: relative;
  4111. float: left;
  4112. padding: 6px 12px;
  4113. line-height: 1.428571429;
  4114. text-decoration: none;
  4115. background-color: #ffffff;
  4116. border: 1px solid #dddddd;
  4117. margin-left: -1px;
  4118. }
  4119. .pagination > li:first-child > a,
  4120. .pagination > li:first-child > span {
  4121. margin-left: 0;
  4122. border-bottom-left-radius: 4px;
  4123. border-top-left-radius: 4px;
  4124. }
  4125. .pagination > li:last-child > a,
  4126. .pagination > li:last-child > span {
  4127. border-bottom-right-radius: 4px;
  4128. border-top-right-radius: 4px;
  4129. }
  4130. .pagination > li > a:hover,
  4131. .pagination > li > span:hover,
  4132. .pagination > li > a:focus,
  4133. .pagination > li > span:focus {
  4134. background-color: #eeeeee;
  4135. }
  4136. .pagination > .active > a,
  4137. .pagination > .active > span,
  4138. .pagination > .active > a:hover,
  4139. .pagination > .active > span:hover,
  4140. .pagination > .active > a:focus,
  4141. .pagination > .active > span:focus {
  4142. z-index: 2;
  4143. color: #ffffff;
  4144. background-color: #428bca;
  4145. border-color: #428bca;
  4146. cursor: default;
  4147. }
  4148. .pagination > .disabled > span,
  4149. .pagination > .disabled > span:hover,
  4150. .pagination > .disabled > span:focus,
  4151. .pagination > .disabled > a,
  4152. .pagination > .disabled > a:hover,
  4153. .pagination > .disabled > a:focus {
  4154. color: #999999;
  4155. background-color: #ffffff;
  4156. border-color: #dddddd;
  4157. cursor: not-allowed;
  4158. }
  4159. .pagination-lg > li > a,
  4160. .pagination-lg > li > span {
  4161. padding: 10px 16px;
  4162. font-size: 18px;
  4163. }
  4164. .pagination-lg > li:first-child > a,
  4165. .pagination-lg > li:first-child > span {
  4166. border-bottom-left-radius: 6px;
  4167. border-top-left-radius: 6px;
  4168. }
  4169. .pagination-lg > li:last-child > a,
  4170. .pagination-lg > li:last-child > span {
  4171. border-bottom-right-radius: 6px;
  4172. border-top-right-radius: 6px;
  4173. }
  4174. .pagination-sm > li > a,
  4175. .pagination-sm > li > span {
  4176. padding: 5px 10px;
  4177. font-size: 12px;
  4178. }
  4179. .pagination-sm > li:first-child > a,
  4180. .pagination-sm > li:first-child > span {
  4181. border-bottom-left-radius: 3px;
  4182. border-top-left-radius: 3px;
  4183. }
  4184. .pagination-sm > li:last-child > a,
  4185. .pagination-sm > li:last-child > span {
  4186. border-bottom-right-radius: 3px;
  4187. border-top-right-radius: 3px;
  4188. }
  4189. .pager {
  4190. padding-left: 0;
  4191. margin: 20px 0;
  4192. list-style: none;
  4193. text-align: center;
  4194. }
  4195. .pager:before,
  4196. .pager:after {
  4197. content: " ";
  4198. display: table;
  4199. }
  4200. .pager:after {
  4201. clear: both;
  4202. }
  4203. .pager:before,
  4204. .pager:after {
  4205. content: " ";
  4206. display: table;
  4207. }
  4208. .pager:after {
  4209. clear: both;
  4210. }
  4211. .pager li {
  4212. display: inline;
  4213. }
  4214. .pager li > a,
  4215. .pager li > span {
  4216. display: inline-block;
  4217. padding: 5px 14px;
  4218. background-color: #ffffff;
  4219. border: 1px solid #dddddd;
  4220. border-radius: 15px;
  4221. }
  4222. .pager li > a:hover,
  4223. .pager li > a:focus {
  4224. text-decoration: none;
  4225. background-color: #eeeeee;
  4226. }
  4227. .pager .next > a,
  4228. .pager .next > span {
  4229. float: right;
  4230. }
  4231. .pager .previous > a,
  4232. .pager .previous > span {
  4233. float: left;
  4234. }
  4235. .pager .disabled > a,
  4236. .pager .disabled > a:hover,
  4237. .pager .disabled > a:focus,
  4238. .pager .disabled > span {
  4239. color: #999999;
  4240. background-color: #ffffff;
  4241. cursor: not-allowed;
  4242. }
  4243. .label {
  4244. display: inline;
  4245. padding: .2em .6em .3em;
  4246. font-size: 75%;
  4247. font-weight: bold;
  4248. line-height: 1;
  4249. color: #ffffff;
  4250. text-align: center;
  4251. white-space: nowrap;
  4252. vertical-align: baseline;
  4253. border-radius: .25em;
  4254. }
  4255. .label[href]:hover,
  4256. .label[href]:focus {
  4257. color: #ffffff;
  4258. text-decoration: none;
  4259. cursor: pointer;
  4260. }
  4261. .label:empty {
  4262. display: none;
  4263. }
  4264. .btn .label {
  4265. position: relative;
  4266. top: -1px;
  4267. }
  4268. .label-default {
  4269. background-color: #999999;
  4270. }
  4271. .label-default[href]:hover,
  4272. .label-default[href]:focus {
  4273. background-color: #808080;
  4274. }
  4275. .label-primary {
  4276. background-color: #428bca;
  4277. }
  4278. .label-primary[href]:hover,
  4279. .label-primary[href]:focus {
  4280. background-color: #3071a9;
  4281. }
  4282. .label-success {
  4283. background-color: #5cb85c;
  4284. }
  4285. .label-success[href]:hover,
  4286. .label-success[href]:focus {
  4287. background-color: #449d44;
  4288. }
  4289. .label-info {
  4290. background-color: #5bc0de;
  4291. }
  4292. .label-info[href]:hover,
  4293. .label-info[href]:focus {
  4294. background-color: #31b0d5;
  4295. }
  4296. .label-warning {
  4297. background-color: #f0ad4e;
  4298. }
  4299. .label-warning[href]:hover,
  4300. .label-warning[href]:focus {
  4301. background-color: #ec971f;
  4302. }
  4303. .label-danger {
  4304. background-color: #d9534f;
  4305. }
  4306. .label-danger[href]:hover,
  4307. .label-danger[href]:focus {
  4308. background-color: #c9302c;
  4309. }
  4310. .badge {
  4311. display: inline-block;
  4312. min-width: 10px;
  4313. padding: 3px 7px;
  4314. font-size: 12px;
  4315. font-weight: bold;
  4316. color: #ffffff;
  4317. line-height: 1;
  4318. vertical-align: baseline;
  4319. white-space: nowrap;
  4320. text-align: center;
  4321. background-color: #999999;
  4322. border-radius: 10px;
  4323. }
  4324. .badge:empty {
  4325. display: none;
  4326. }
  4327. .btn .badge {
  4328. position: relative;
  4329. top: -1px;
  4330. }
  4331. a.badge:hover,
  4332. a.badge:focus {
  4333. color: #ffffff;
  4334. text-decoration: none;
  4335. cursor: pointer;
  4336. }
  4337. a.list-group-item.active > .badge,
  4338. .nav-pills > .active > a > .badge {
  4339. color: #428bca;
  4340. background-color: #ffffff;
  4341. }
  4342. .nav-pills > li > a > .badge {
  4343. margin-left: 3px;
  4344. }
  4345. .jumbotron {
  4346. padding: 30px;
  4347. margin-bottom: 30px;
  4348. font-size: 21px;
  4349. font-weight: 200;
  4350. line-height: 2.1428571435;
  4351. color: inherit;
  4352. background-color: #eeeeee;
  4353. }
  4354. .jumbotron h1,
  4355. .jumbotron .h1 {
  4356. line-height: 1;
  4357. color: inherit;
  4358. }
  4359. .jumbotron p {
  4360. line-height: 1.4;
  4361. }
  4362. .container .jumbotron {
  4363. border-radius: 6px;
  4364. }
  4365. .jumbotron .container {
  4366. max-width: 100%;
  4367. }
  4368. @media screen and (min-width: 768px) {
  4369. .jumbotron {
  4370. padding-top: 48px;
  4371. padding-bottom: 48px;
  4372. }
  4373. .container .jumbotron {
  4374. padding-left: 60px;
  4375. padding-right: 60px;
  4376. }
  4377. .jumbotron h1,
  4378. .jumbotron .h1 {
  4379. font-size: 63px;
  4380. }
  4381. }
  4382. .thumbnail {
  4383. display: block;
  4384. padding: 4px;
  4385. margin-bottom: 20px;
  4386. line-height: 1.428571429;
  4387. background-color: #ffffff;
  4388. border: 1px solid #dddddd;
  4389. border-radius: 4px;
  4390. -webkit-transition: all 0.2s ease-in-out;
  4391. transition: all 0.2s ease-in-out;
  4392. }
  4393. .thumbnail > img,
  4394. .thumbnail a > img {
  4395. display: block;
  4396. max-width: 100%;
  4397. height: auto;
  4398. margin-left: auto;
  4399. margin-right: auto;
  4400. }
  4401. a.thumbnail:hover,
  4402. a.thumbnail:focus,
  4403. a.thumbnail.active {
  4404. border-color: #428bca;
  4405. }
  4406. .thumbnail .caption {
  4407. padding: 9px;
  4408. color: #333333;
  4409. }
  4410. .alert {
  4411. padding: 15px;
  4412. margin-bottom: 20px;
  4413. border: 1px solid transparent;
  4414. border-radius: 4px;
  4415. }
  4416. .alert h4 {
  4417. margin-top: 0;
  4418. color: inherit;
  4419. }
  4420. .alert .alert-link {
  4421. font-weight: bold;
  4422. }
  4423. .alert > p,
  4424. .alert > ul {
  4425. margin-bottom: 0;
  4426. }
  4427. .alert > p + p {
  4428. margin-top: 5px;
  4429. }
  4430. .alert-dismissable {
  4431. padding-right: 35px;
  4432. }
  4433. .alert-dismissable .close {
  4434. position: relative;
  4435. top: -2px;
  4436. right: -21px;
  4437. color: inherit;
  4438. }
  4439. .alert-success {
  4440. background-color: #dff0d8;
  4441. border-color: #d6e9c6;
  4442. color: #3c763d;
  4443. }
  4444. .alert-success hr {
  4445. border-top-color: #c9e2b3;
  4446. }
  4447. .alert-success .alert-link {
  4448. color: #2b542c;
  4449. }
  4450. .alert-info {
  4451. background-color: #d9edf7;
  4452. border-color: #bce8f1;
  4453. color: #31708f;
  4454. }
  4455. .alert-info hr {
  4456. border-top-color: #a6e1ec;
  4457. }
  4458. .alert-info .alert-link {
  4459. color: #245269;
  4460. }
  4461. .alert-warning {
  4462. background-color: #fcf8e3;
  4463. border-color: #faebcc;
  4464. color: #8a6d3b;
  4465. }
  4466. .alert-warning hr {
  4467. border-top-color: #f7e1b5;
  4468. }
  4469. .alert-warning .alert-link {
  4470. color: #66512c;
  4471. }
  4472. .alert-danger {
  4473. background-color: #f2dede;
  4474. border-color: #ebccd1;
  4475. color: #a94442;
  4476. }
  4477. .alert-danger hr {
  4478. border-top-color: #e4b9c0;
  4479. }
  4480. .alert-danger .alert-link {
  4481. color: #843534;
  4482. }
  4483. @-webkit-keyframes progress-bar-stripes {
  4484. from {
  4485. background-position: 40px 0;
  4486. }
  4487. to {
  4488. background-position: 0 0;
  4489. }
  4490. }
  4491. @keyframes progress-bar-stripes {
  4492. from {
  4493. background-position: 40px 0;
  4494. }
  4495. to {
  4496. background-position: 0 0;
  4497. }
  4498. }
  4499. .progress {
  4500. overflow: hidden;
  4501. height: 20px;
  4502. margin-bottom: 20px;
  4503. background-color: #f5f5f5;
  4504. border-radius: 4px;
  4505. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4506. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4507. }
  4508. .progress-bar {
  4509. float: left;
  4510. width: 0%;
  4511. height: 100%;
  4512. font-size: 12px;
  4513. line-height: 20px;
  4514. color: #ffffff;
  4515. text-align: center;
  4516. background-color: #428bca;
  4517. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4518. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4519. -webkit-transition: width 0.6s ease;
  4520. transition: width 0.6s ease;
  4521. }
  4522. .progress-striped .progress-bar {
  4523. 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);
  4524. 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);
  4525. background-size: 40px 40px;
  4526. }
  4527. .progress.active .progress-bar {
  4528. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4529. animation: progress-bar-stripes 2s linear infinite;
  4530. }
  4531. .progress-bar-success {
  4532. background-color: #5cb85c;
  4533. }
  4534. .progress-striped .progress-bar-success {
  4535. 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);
  4536. 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);
  4537. }
  4538. .progress-bar-info {
  4539. background-color: #5bc0de;
  4540. }
  4541. .progress-striped .progress-bar-info {
  4542. 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);
  4543. 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);
  4544. }
  4545. .progress-bar-warning {
  4546. background-color: #f0ad4e;
  4547. }
  4548. .progress-striped .progress-bar-warning {
  4549. 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);
  4550. 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);
  4551. }
  4552. .progress-bar-danger {
  4553. background-color: #d9534f;
  4554. }
  4555. .progress-striped .progress-bar-danger {
  4556. 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);
  4557. 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);
  4558. }
  4559. .media,
  4560. .media-body {
  4561. overflow: hidden;
  4562. zoom: 1;
  4563. }
  4564. .media,
  4565. .media .media {
  4566. margin-top: 15px;
  4567. }
  4568. .media:first-child {
  4569. margin-top: 0;
  4570. }
  4571. .media-object {
  4572. display: block;
  4573. }
  4574. .media-heading {
  4575. margin: 0 0 5px;
  4576. }
  4577. .media > .pull-left {
  4578. margin-right: 10px;
  4579. }
  4580. .media > .pull-right {
  4581. margin-left: 10px;
  4582. }
  4583. .media-list {
  4584. padding-left: 0;
  4585. list-style: none;
  4586. }
  4587. .list-group {
  4588. margin-bottom: 20px;
  4589. padding-left: 0;
  4590. }
  4591. .list-group-item {
  4592. position: relative;
  4593. display: block;
  4594. padding: 10px 15px;
  4595. margin-bottom: -1px;
  4596. background-color: #ffffff;
  4597. border: 1px solid #dddddd;
  4598. }
  4599. .list-group-item:first-child {
  4600. border-top-right-radius: 4px;
  4601. border-top-left-radius: 4px;
  4602. }
  4603. .list-group-item:last-child {
  4604. margin-bottom: 0;
  4605. border-bottom-right-radius: 4px;
  4606. border-bottom-left-radius: 4px;
  4607. }
  4608. .list-group-item > .badge {
  4609. float: right;
  4610. }
  4611. .list-group-item > .badge + .badge {
  4612. margin-right: 5px;
  4613. }
  4614. a.list-group-item {
  4615. color: #555555;
  4616. }
  4617. a.list-group-item .list-group-item-heading {
  4618. color: #333333;
  4619. }
  4620. a.list-group-item:hover,
  4621. a.list-group-item:focus {
  4622. text-decoration: none;
  4623. background-color: #f5f5f5;
  4624. }
  4625. a.list-group-item.active,
  4626. a.list-group-item.active:hover,
  4627. a.list-group-item.active:focus {
  4628. z-index: 2;
  4629. color: #ffffff;
  4630. background-color: #428bca;
  4631. border-color: #428bca;
  4632. }
  4633. a.list-group-item.active .list-group-item-heading,
  4634. a.list-group-item.active:hover .list-group-item-heading,
  4635. a.list-group-item.active:focus .list-group-item-heading {
  4636. color: inherit;
  4637. }
  4638. a.list-group-item.active .list-group-item-text,
  4639. a.list-group-item.active:hover .list-group-item-text,
  4640. a.list-group-item.active:focus .list-group-item-text {
  4641. color: #e1edf7;
  4642. }
  4643. .list-group-item-heading {
  4644. margin-top: 0;
  4645. margin-bottom: 5px;
  4646. }
  4647. .list-group-item-text {
  4648. margin-bottom: 0;
  4649. line-height: 1.3;
  4650. }
  4651. .panel {
  4652. margin-bottom: 20px;
  4653. background-color: #ffffff;
  4654. border: 1px solid transparent;
  4655. border-radius: 4px;
  4656. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  4657. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  4658. }
  4659. .panel-body {
  4660. padding: 15px;
  4661. }
  4662. .panel-body:before,
  4663. .panel-body:after {
  4664. content: " ";
  4665. display: table;
  4666. }
  4667. .panel-body:after {
  4668. clear: both;
  4669. }
  4670. .panel-body:before,
  4671. .panel-body:after {
  4672. content: " ";
  4673. display: table;
  4674. }
  4675. .panel-body:after {
  4676. clear: both;
  4677. }
  4678. .panel > .list-group {
  4679. margin-bottom: 0;
  4680. }
  4681. .panel > .list-group .list-group-item {
  4682. border-width: 1px 0;
  4683. }
  4684. .panel > .list-group .list-group-item:first-child {
  4685. border-top-right-radius: 0;
  4686. border-top-left-radius: 0;
  4687. }
  4688. .panel > .list-group .list-group-item:last-child {
  4689. border-bottom: 0;
  4690. }
  4691. .panel-heading + .list-group .list-group-item:first-child {
  4692. border-top-width: 0;
  4693. }
  4694. .panel > .table,
  4695. .panel > .table-responsive > .table {
  4696. margin-bottom: 0;
  4697. }
  4698. .panel > .panel-body + .table,
  4699. .panel > .panel-body + .table-responsive {
  4700. border-top: 1px solid #dddddd;
  4701. }
  4702. .panel > .table > tbody:first-child th,
  4703. .panel > .table > tbody:first-child td {
  4704. border-top: 0;
  4705. }
  4706. .panel > .table-bordered,
  4707. .panel > .table-responsive > .table-bordered {
  4708. border: 0;
  4709. }
  4710. .panel > .table-bordered > thead > tr > th:first-child,
  4711. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  4712. .panel > .table-bordered > tbody > tr > th:first-child,
  4713. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  4714. .panel > .table-bordered > tfoot > tr > th:first-child,
  4715. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  4716. .panel > .table-bordered > thead > tr > td:first-child,
  4717. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  4718. .panel > .table-bordered > tbody > tr > td:first-child,
  4719. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  4720. .panel > .table-bordered > tfoot > tr > td:first-child,
  4721. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  4722. border-left: 0;
  4723. }
  4724. .panel > .table-bordered > thead > tr > th:last-child,
  4725. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  4726. .panel > .table-bordered > tbody > tr > th:last-child,
  4727. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  4728. .panel > .table-bordered > tfoot > tr > th:last-child,
  4729. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  4730. .panel > .table-bordered > thead > tr > td:last-child,
  4731. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  4732. .panel > .table-bordered > tbody > tr > td:last-child,
  4733. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  4734. .panel > .table-bordered > tfoot > tr > td:last-child,
  4735. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  4736. border-right: 0;
  4737. }
  4738. .panel > .table-bordered > thead > tr:last-child > th,
  4739. .panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
  4740. .panel > .table-bordered > tbody > tr:last-child > th,
  4741. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  4742. .panel > .table-bordered > tfoot > tr:last-child > th,
  4743. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  4744. .panel > .table-bordered > thead > tr:last-child > td,
  4745. .panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
  4746. .panel > .table-bordered > tbody > tr:last-child > td,
  4747. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  4748. .panel > .table-bordered > tfoot > tr:last-child > td,
  4749. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  4750. border-bottom: 0;
  4751. }
  4752. .panel > .table-responsive {
  4753. border: 0;
  4754. margin-bottom: 0;
  4755. }
  4756. .panel-heading {
  4757. padding: 10px 15px;
  4758. border-bottom: 1px solid transparent;
  4759. border-top-right-radius: 3px;
  4760. border-top-left-radius: 3px;
  4761. }
  4762. .panel-heading > .dropdown .dropdown-toggle {
  4763. color: inherit;
  4764. }
  4765. .panel-title {
  4766. margin-top: 0;
  4767. margin-bottom: 0;
  4768. font-size: 16px;
  4769. color: inherit;
  4770. }
  4771. .panel-title > a {
  4772. color: inherit;
  4773. }
  4774. .panel-footer {
  4775. padding: 10px 15px;
  4776. background-color: #f5f5f5;
  4777. border-top: 1px solid #dddddd;
  4778. border-bottom-right-radius: 3px;
  4779. border-bottom-left-radius: 3px;
  4780. }
  4781. .panel-group .panel {
  4782. margin-bottom: 0;
  4783. border-radius: 4px;
  4784. overflow: hidden;
  4785. }
  4786. .panel-group .panel + .panel {
  4787. margin-top: 5px;
  4788. }
  4789. .panel-group .panel-heading {
  4790. border-bottom: 0;
  4791. }
  4792. .panel-group .panel-heading + .panel-collapse .panel-body {
  4793. border-top: 1px solid #dddddd;
  4794. }
  4795. .panel-group .panel-footer {
  4796. border-top: 0;
  4797. }
  4798. .panel-group .panel-footer + .panel-collapse .panel-body {
  4799. border-bottom: 1px solid #dddddd;
  4800. }
  4801. .panel-default {
  4802. border-color: #dddddd;
  4803. }
  4804. .panel-default > .panel-heading {
  4805. color: #333333;
  4806. background-color: #f5f5f5;
  4807. border-color: #dddddd;
  4808. }
  4809. .panel-default > .panel-heading + .panel-collapse .panel-body {
  4810. border-top-color: #dddddd;
  4811. }
  4812. .panel-default > .panel-footer + .panel-collapse .panel-body {
  4813. border-bottom-color: #dddddd;
  4814. }
  4815. .panel-primary {
  4816. border-color: #428bca;
  4817. }
  4818. .panel-primary > .panel-heading {
  4819. color: #ffffff;
  4820. background-color: #428bca;
  4821. border-color: #428bca;
  4822. }
  4823. .panel-primary > .panel-heading + .panel-collapse .panel-body {
  4824. border-top-color: #428bca;
  4825. }
  4826. .panel-primary > .panel-footer + .panel-collapse .panel-body {
  4827. border-bottom-color: #428bca;
  4828. }
  4829. .panel-success {
  4830. border-color: #d6e9c6;
  4831. }
  4832. .panel-success > .panel-heading {
  4833. color: #3c763d;
  4834. background-color: #dff0d8;
  4835. border-color: #d6e9c6;
  4836. }
  4837. .panel-success > .panel-heading + .panel-collapse .panel-body {
  4838. border-top-color: #d6e9c6;
  4839. }
  4840. .panel-success > .panel-footer + .panel-collapse .panel-body {
  4841. border-bottom-color: #d6e9c6;
  4842. }
  4843. .panel-warning {
  4844. border-color: #faebcc;
  4845. }
  4846. .panel-warning > .panel-heading {
  4847. color: #8a6d3b;
  4848. background-color: #fcf8e3;
  4849. border-color: #faebcc;
  4850. }
  4851. .panel-warning > .panel-heading + .panel-collapse .panel-body {
  4852. border-top-color: #faebcc;
  4853. }
  4854. .panel-warning > .panel-footer + .panel-collapse .panel-body {
  4855. border-bottom-color: #faebcc;
  4856. }
  4857. .panel-danger {
  4858. border-color: #ebccd1;
  4859. }
  4860. .panel-danger > .panel-heading {
  4861. color: #a94442;
  4862. background-color: #f2dede;
  4863. border-color: #ebccd1;
  4864. }
  4865. .panel-danger > .panel-heading + .panel-collapse .panel-body {
  4866. border-top-color: #ebccd1;
  4867. }
  4868. .panel-danger > .panel-footer + .panel-collapse .panel-body {
  4869. border-bottom-color: #ebccd1;
  4870. }
  4871. .panel-info {
  4872. border-color: #bce8f1;
  4873. }
  4874. .panel-info > .panel-heading {
  4875. color: #31708f;
  4876. background-color: #d9edf7;
  4877. border-color: #bce8f1;
  4878. }
  4879. .panel-info > .panel-heading + .panel-collapse .panel-body {
  4880. border-top-color: #bce8f1;
  4881. }
  4882. .panel-info > .panel-footer + .panel-collapse .panel-body {
  4883. border-bottom-color: #bce8f1;
  4884. }
  4885. .well {
  4886. min-height: 20px;
  4887. padding: 19px;
  4888. margin-bottom: 20px;
  4889. background-color: #f5f5f5;
  4890. border: 1px solid #e3e3e3;
  4891. border-radius: 4px;
  4892. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4893. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4894. }
  4895. .well blockquote {
  4896. border-color: #ddd;
  4897. border-color: rgba(0, 0, 0, 0.15);
  4898. }
  4899. .well-lg {
  4900. padding: 24px;
  4901. border-radius: 6px;
  4902. }
  4903. .well-sm {
  4904. padding: 9px;
  4905. border-radius: 3px;
  4906. }
  4907. .close {
  4908. float: right;
  4909. font-size: 21px;
  4910. font-weight: bold;
  4911. line-height: 1;
  4912. color: #000000;
  4913. text-shadow: 0 1px 0 #ffffff;
  4914. opacity: 0.2;
  4915. filter: alpha(opacity=20);
  4916. }
  4917. .close:hover,
  4918. .close:focus {
  4919. color: #000000;
  4920. text-decoration: none;
  4921. cursor: pointer;
  4922. opacity: 0.5;
  4923. filter: alpha(opacity=50);
  4924. }
  4925. button.close {
  4926. padding: 0;
  4927. cursor: pointer;
  4928. background: transparent;
  4929. border: 0;
  4930. -webkit-appearance: none;
  4931. }
  4932. .modal-open {
  4933. overflow: hidden;
  4934. }
  4935. .modal {
  4936. display: none;
  4937. overflow: auto;
  4938. overflow-y: scroll;
  4939. position: fixed;
  4940. top: 0;
  4941. right: 0;
  4942. bottom: 0;
  4943. left: 0;
  4944. z-index: 1040;
  4945. }
  4946. .modal.fade .modal-dialog {
  4947. -webkit-transform: translate(0, -25%);
  4948. -ms-transform: translate(0, -25%);
  4949. transform: translate(0, -25%);
  4950. -webkit-transition: -webkit-transform 0.3s ease-out;
  4951. -moz-transition: -moz-transform 0.3s ease-out;
  4952. -o-transition: -o-transform 0.3s ease-out;
  4953. transition: transform 0.3s ease-out;
  4954. }
  4955. .modal.in .modal-dialog {
  4956. -webkit-transform: translate(0, 0);
  4957. -ms-transform: translate(0, 0);
  4958. transform: translate(0, 0);
  4959. }
  4960. .modal-dialog {
  4961. position: relative;
  4962. width: auto;
  4963. margin: 10px;
  4964. z-index: 1050;
  4965. }
  4966. .modal-content {
  4967. position: relative;
  4968. background-color: #ffffff;
  4969. border: 1px solid #999999;
  4970. border: 1px solid rgba(0, 0, 0, 0.2);
  4971. border-radius: 6px;
  4972. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  4973. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  4974. background-clip: padding-box;
  4975. outline: none;
  4976. }
  4977. .modal-backdrop {
  4978. position: fixed;
  4979. top: 0;
  4980. right: 0;
  4981. bottom: 0;
  4982. left: 0;
  4983. z-index: 1030;
  4984. background-color: #000000;
  4985. }
  4986. .modal-backdrop.fade {
  4987. opacity: 0;
  4988. filter: alpha(opacity=0);
  4989. }
  4990. .modal-backdrop.in {
  4991. opacity: 0.5;
  4992. filter: alpha(opacity=50);
  4993. }
  4994. .modal-header {
  4995. padding: 15px;
  4996. border-bottom: 1px solid #e5e5e5;
  4997. min-height: 16.428571429px;
  4998. }
  4999. .modal-header .close {
  5000. margin-top: -2px;
  5001. }
  5002. .modal-title {
  5003. margin: 0;
  5004. line-height: 1.428571429;
  5005. }
  5006. .modal-body {
  5007. position: relative;
  5008. padding: 20px;
  5009. }
  5010. .modal-footer {
  5011. margin-top: 15px;
  5012. padding: 19px 20px 20px;
  5013. text-align: right;
  5014. border-top: 1px solid #e5e5e5;
  5015. }
  5016. .modal-footer:before,
  5017. .modal-footer:after {
  5018. content: " ";
  5019. display: table;
  5020. }
  5021. .modal-footer:after {
  5022. clear: both;
  5023. }
  5024. .modal-footer:before,
  5025. .modal-footer:after {
  5026. content: " ";
  5027. display: table;
  5028. }
  5029. .modal-footer:after {
  5030. clear: both;
  5031. }
  5032. .modal-footer .btn + .btn {
  5033. margin-left: 5px;
  5034. margin-bottom: 0;
  5035. }
  5036. .modal-footer .btn-group .btn + .btn {
  5037. margin-left: -1px;
  5038. }
  5039. .modal-footer .btn-block + .btn-block {
  5040. margin-left: 0;
  5041. }
  5042. @media screen and (min-width: 768px) {
  5043. .modal-dialog {
  5044. width: 600px;
  5045. margin: 30px auto;
  5046. }
  5047. .modal-content {
  5048. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5049. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5050. }
  5051. }
  5052. .tooltip {
  5053. position: absolute;
  5054. z-index: 1030;
  5055. display: block;
  5056. visibility: visible;
  5057. font-size: 12px;
  5058. line-height: 1.4;
  5059. opacity: 0;
  5060. filter: alpha(opacity=0);
  5061. }
  5062. .tooltip.in {
  5063. opacity: 0.9;
  5064. filter: alpha(opacity=90);
  5065. }
  5066. .tooltip.top {
  5067. margin-top: -3px;
  5068. padding: 5px 0;
  5069. }
  5070. .tooltip.right {
  5071. margin-left: 3px;
  5072. padding: 0 5px;
  5073. }
  5074. .tooltip.bottom {
  5075. margin-top: 3px;
  5076. padding: 5px 0;
  5077. }
  5078. .tooltip.left {
  5079. margin-left: -3px;
  5080. padding: 0 5px;
  5081. }
  5082. .tooltip-inner {
  5083. max-width: 200px;
  5084. padding: 3px 8px;
  5085. color: #ffffff;
  5086. text-align: center;
  5087. text-decoration: none;
  5088. background-color: #000000;
  5089. border-radius: 4px;
  5090. }
  5091. .tooltip-arrow {
  5092. position: absolute;
  5093. width: 0;
  5094. height: 0;
  5095. border-color: transparent;
  5096. border-style: solid;
  5097. }
  5098. .tooltip.top .tooltip-arrow {
  5099. bottom: 0;
  5100. left: 50%;
  5101. margin-left: -5px;
  5102. border-width: 5px 5px 0;
  5103. border-top-color: #000000;
  5104. }
  5105. .tooltip.top-left .tooltip-arrow {
  5106. bottom: 0;
  5107. left: 5px;
  5108. border-width: 5px 5px 0;
  5109. border-top-color: #000000;
  5110. }
  5111. .tooltip.top-right .tooltip-arrow {
  5112. bottom: 0;
  5113. right: 5px;
  5114. border-width: 5px 5px 0;
  5115. border-top-color: #000000;
  5116. }
  5117. .tooltip.right .tooltip-arrow {
  5118. top: 50%;
  5119. left: 0;
  5120. margin-top: -5px;
  5121. border-width: 5px 5px 5px 0;
  5122. border-right-color: #000000;
  5123. }
  5124. .tooltip.left .tooltip-arrow {
  5125. top: 50%;
  5126. right: 0;
  5127. margin-top: -5px;
  5128. border-width: 5px 0 5px 5px;
  5129. border-left-color: #000000;
  5130. }
  5131. .tooltip.bottom .tooltip-arrow {
  5132. top: 0;
  5133. left: 50%;
  5134. margin-left: -5px;
  5135. border-width: 0 5px 5px;
  5136. border-bottom-color: #000000;
  5137. }
  5138. .tooltip.bottom-left .tooltip-arrow {
  5139. top: 0;
  5140. left: 5px;
  5141. border-width: 0 5px 5px;
  5142. border-bottom-color: #000000;
  5143. }
  5144. .tooltip.bottom-right .tooltip-arrow {
  5145. top: 0;
  5146. right: 5px;
  5147. border-width: 0 5px 5px;
  5148. border-bottom-color: #000000;
  5149. }
  5150. .popover {
  5151. position: absolute;
  5152. top: 0;
  5153. left: 0;
  5154. z-index: 1010;
  5155. display: none;
  5156. max-width: 276px;
  5157. padding: 1px;
  5158. text-align: left;
  5159. background-color: #ffffff;
  5160. background-clip: padding-box;
  5161. border: 1px solid #cccccc;
  5162. border: 1px solid rgba(0, 0, 0, 0.2);
  5163. border-radius: 6px;
  5164. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5165. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5166. white-space: normal;
  5167. }
  5168. .popover.top {
  5169. margin-top: -10px;
  5170. }
  5171. .popover.right {
  5172. margin-left: 10px;
  5173. }
  5174. .popover.bottom {
  5175. margin-top: 10px;
  5176. }
  5177. .popover.left {
  5178. margin-left: -10px;
  5179. }
  5180. .popover-title {
  5181. margin: 0;
  5182. padding: 8px 14px;
  5183. font-size: 14px;
  5184. font-weight: normal;
  5185. line-height: 18px;
  5186. background-color: #f7f7f7;
  5187. border-bottom: 1px solid #ebebeb;
  5188. border-radius: 5px 5px 0 0;
  5189. }
  5190. .popover-content {
  5191. padding: 9px 14px;
  5192. }
  5193. .popover .arrow,
  5194. .popover .arrow:after {
  5195. position: absolute;
  5196. display: block;
  5197. width: 0;
  5198. height: 0;
  5199. border-color: transparent;
  5200. border-style: solid;
  5201. }
  5202. .popover .arrow {
  5203. border-width: 11px;
  5204. }
  5205. .popover .arrow:after {
  5206. border-width: 10px;
  5207. content: "";
  5208. }
  5209. .popover.top .arrow {
  5210. left: 50%;
  5211. margin-left: -11px;
  5212. border-bottom-width: 0;
  5213. border-top-color: #999999;
  5214. border-top-color: rgba(0, 0, 0, 0.25);
  5215. bottom: -11px;
  5216. }
  5217. .popover.top .arrow:after {
  5218. content: " ";
  5219. bottom: 1px;
  5220. margin-left: -10px;
  5221. border-bottom-width: 0;
  5222. border-top-color: #ffffff;
  5223. }
  5224. .popover.right .arrow {
  5225. top: 50%;
  5226. left: -11px;
  5227. margin-top: -11px;
  5228. border-left-width: 0;
  5229. border-right-color: #999999;
  5230. border-right-color: rgba(0, 0, 0, 0.25);
  5231. }
  5232. .popover.right .arrow:after {
  5233. content: " ";
  5234. left: 1px;
  5235. bottom: -10px;
  5236. border-left-width: 0;
  5237. border-right-color: #ffffff;
  5238. }
  5239. .popover.bottom .arrow {
  5240. left: 50%;
  5241. margin-left: -11px;
  5242. border-top-width: 0;
  5243. border-bottom-color: #999999;
  5244. border-bottom-color: rgba(0, 0, 0, 0.25);
  5245. top: -11px;
  5246. }
  5247. .popover.bottom .arrow:after {
  5248. content: " ";
  5249. top: 1px;
  5250. margin-left: -10px;
  5251. border-top-width: 0;
  5252. border-bottom-color: #ffffff;
  5253. }
  5254. .popover.left .arrow {
  5255. top: 50%;
  5256. right: -11px;
  5257. margin-top: -11px;
  5258. border-right-width: 0;
  5259. border-left-color: #999999;
  5260. border-left-color: rgba(0, 0, 0, 0.25);
  5261. }
  5262. .popover.left .arrow:after {
  5263. content: " ";
  5264. right: 1px;
  5265. border-right-width: 0;
  5266. border-left-color: #ffffff;
  5267. bottom: -10px;
  5268. }
  5269. .carousel {
  5270. position: relative;
  5271. }
  5272. .carousel-inner {
  5273. position: relative;
  5274. overflow: hidden;
  5275. width: 100%;
  5276. }
  5277. .carousel-inner > .item {
  5278. display: none;
  5279. position: relative;
  5280. -webkit-transition: 0.6s ease-in-out left;
  5281. transition: 0.6s ease-in-out left;
  5282. }
  5283. .carousel-inner > .item > img,
  5284. .carousel-inner > .item > a > img {
  5285. display: block;
  5286. max-width: 100%;
  5287. height: auto;
  5288. line-height: 1;
  5289. }
  5290. .carousel-inner > .active,
  5291. .carousel-inner > .next,
  5292. .carousel-inner > .prev {
  5293. display: block;
  5294. }
  5295. .carousel-inner > .active {
  5296. left: 0;
  5297. }
  5298. .carousel-inner > .next,
  5299. .carousel-inner > .prev {
  5300. position: absolute;
  5301. top: 0;
  5302. width: 100%;
  5303. }
  5304. .carousel-inner > .next {
  5305. left: 100%;
  5306. }
  5307. .carousel-inner > .prev {
  5308. left: -100%;
  5309. }
  5310. .carousel-inner > .next.left,
  5311. .carousel-inner > .prev.right {
  5312. left: 0;
  5313. }
  5314. .carousel-inner > .active.left {
  5315. left: -100%;
  5316. }
  5317. .carousel-inner > .active.right {
  5318. left: 100%;
  5319. }
  5320. .carousel-control {
  5321. position: absolute;
  5322. top: 0;
  5323. left: 0;
  5324. bottom: 0;
  5325. width: 15%;
  5326. opacity: 0.5;
  5327. filter: alpha(opacity=50);
  5328. font-size: 20px;
  5329. color: #ffffff;
  5330. text-align: center;
  5331. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  5332. }
  5333. .carousel-control.left {
  5334. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  5335. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  5336. background-repeat: repeat-x;
  5337. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  5338. }
  5339. .carousel-control.right {
  5340. left: auto;
  5341. right: 0;
  5342. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
  5343. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  5344. background-repeat: repeat-x;
  5345. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  5346. }
  5347. .carousel-control:hover,
  5348. .carousel-control:focus {
  5349. outline: none;
  5350. color: #ffffff;
  5351. text-decoration: none;
  5352. opacity: 0.9;
  5353. filter: alpha(opacity=90);
  5354. }
  5355. .carousel-control .icon-prev,
  5356. .carousel-control .icon-next,
  5357. .carousel-control .glyphicon-chevron-left,
  5358. .carousel-control .glyphicon-chevron-right {
  5359. position: absolute;
  5360. top: 50%;
  5361. z-index: 5;
  5362. display: inline-block;
  5363. }
  5364. .carousel-control .icon-prev,
  5365. .carousel-control .glyphicon-chevron-left {
  5366. left: 50%;
  5367. }
  5368. .carousel-control .icon-next,
  5369. .carousel-control .glyphicon-chevron-right {
  5370. right: 50%;
  5371. }
  5372. .carousel-control .icon-prev,
  5373. .carousel-control .icon-next {
  5374. width: 20px;
  5375. height: 20px;
  5376. margin-top: -10px;
  5377. margin-left: -10px;
  5378. font-family: serif;
  5379. }
  5380. .carousel-control .icon-prev:before {
  5381. content: '\2039';
  5382. }
  5383. .carousel-control .icon-next:before {
  5384. content: '\203a';
  5385. }
  5386. .carousel-indicators {
  5387. position: absolute;
  5388. bottom: 10px;
  5389. left: 50%;
  5390. z-index: 15;
  5391. width: 60%;
  5392. margin-left: -30%;
  5393. padding-left: 0;
  5394. list-style: none;
  5395. text-align: center;
  5396. }
  5397. .carousel-indicators li {
  5398. display: inline-block;
  5399. width: 10px;
  5400. height: 10px;
  5401. margin: 1px;
  5402. text-indent: -999px;
  5403. border: 1px solid #ffffff;
  5404. border-radius: 10px;
  5405. cursor: pointer;
  5406. background-color: #000 \9;
  5407. background-color: rgba(0, 0, 0, 0);
  5408. }
  5409. .carousel-indicators .active {
  5410. margin: 0;
  5411. width: 12px;
  5412. height: 12px;
  5413. background-color: #ffffff;
  5414. }
  5415. .carousel-caption {
  5416. position: absolute;
  5417. left: 15%;
  5418. right: 15%;
  5419. bottom: 20px;
  5420. z-index: 10;
  5421. padding-top: 20px;
  5422. padding-bottom: 20px;
  5423. color: #ffffff;
  5424. text-align: center;
  5425. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  5426. }
  5427. .carousel-caption .btn {
  5428. text-shadow: none;
  5429. }
  5430. @media screen and (min-width: 768px) {
  5431. .carousel-control .glyphicons-chevron-left,
  5432. .carousel-control .glyphicons-chevron-right,
  5433. .carousel-control .icon-prev,
  5434. .carousel-control .icon-next {
  5435. width: 30px;
  5436. height: 30px;
  5437. margin-top: -15px;
  5438. margin-left: -15px;
  5439. font-size: 30px;
  5440. }
  5441. .carousel-caption {
  5442. left: 20%;
  5443. right: 20%;
  5444. padding-bottom: 30px;
  5445. }
  5446. .carousel-indicators {
  5447. bottom: 20px;
  5448. }
  5449. }
  5450. .clearfix:before,
  5451. .clearfix:after {
  5452. content: " ";
  5453. display: table;
  5454. }
  5455. .clearfix:after {
  5456. clear: both;
  5457. }
  5458. .center-block {
  5459. display: block;
  5460. margin-left: auto;
  5461. margin-right: auto;
  5462. }
  5463. .pull-right {
  5464. float: right !important;
  5465. }
  5466. .pull-left {
  5467. float: left !important;
  5468. }
  5469. .hide {
  5470. display: none !important;
  5471. }
  5472. .show {
  5473. display: block !important;
  5474. }
  5475. .invisible {
  5476. visibility: hidden;
  5477. }
  5478. .text-hide {
  5479. font: 0/0 a;
  5480. color: transparent;
  5481. text-shadow: none;
  5482. background-color: transparent;
  5483. border: 0;
  5484. }
  5485. .hidden {
  5486. display: none !important;
  5487. visibility: hidden !important;
  5488. }
  5489. .affix {
  5490. position: fixed;
  5491. }
  5492. @-ms-viewport {
  5493. width: device-width;
  5494. }
  5495. .visible-xs,
  5496. tr.visible-xs,
  5497. th.visible-xs,
  5498. td.visible-xs {
  5499. display: none !important;
  5500. }
  5501. @media (max-width: 767px) {
  5502. .visible-xs {
  5503. display: block !important;
  5504. }
  5505. table.visible-xs {
  5506. display: table;
  5507. }
  5508. tr.visible-xs {
  5509. display: table-row !important;
  5510. }
  5511. th.visible-xs,
  5512. td.visible-xs {
  5513. display: table-cell !important;
  5514. }
  5515. }
  5516. @media (min-width: 768px) and (max-width: 991px) {
  5517. .visible-xs.visible-sm {
  5518. display: block !important;
  5519. }
  5520. table.visible-xs.visible-sm {
  5521. display: table;
  5522. }
  5523. tr.visible-xs.visible-sm {
  5524. display: table-row !important;
  5525. }
  5526. th.visible-xs.visible-sm,
  5527. td.visible-xs.visible-sm {
  5528. display: table-cell !important;
  5529. }
  5530. }
  5531. @media (min-width: 992px) and (max-width: 1199px) {
  5532. .visible-xs.visible-md {
  5533. display: block !important;
  5534. }
  5535. table.visible-xs.visible-md {
  5536. display: table;
  5537. }
  5538. tr.visible-xs.visible-md {
  5539. display: table-row !important;
  5540. }
  5541. th.visible-xs.visible-md,
  5542. td.visible-xs.visible-md {
  5543. display: table-cell !important;
  5544. }
  5545. }
  5546. @media (min-width: 1200px) {
  5547. .visible-xs.visible-lg {
  5548. display: block !important;
  5549. }
  5550. table.visible-xs.visible-lg {
  5551. display: table;
  5552. }
  5553. tr.visible-xs.visible-lg {
  5554. display: table-row !important;
  5555. }
  5556. th.visible-xs.visible-lg,
  5557. td.visible-xs.visible-lg {
  5558. display: table-cell !important;
  5559. }
  5560. }
  5561. .visible-sm,
  5562. tr.visible-sm,
  5563. th.visible-sm,
  5564. td.visible-sm {
  5565. display: none !important;
  5566. }
  5567. @media (max-width: 767px) {
  5568. .visible-sm.visible-xs {
  5569. display: block !important;
  5570. }
  5571. table.visible-sm.visible-xs {
  5572. display: table;
  5573. }
  5574. tr.visible-sm.visible-xs {
  5575. display: table-row !important;
  5576. }
  5577. th.visible-sm.visible-xs,
  5578. td.visible-sm.visible-xs {
  5579. display: table-cell !important;
  5580. }
  5581. }
  5582. @media (min-width: 768px) and (max-width: 991px) {
  5583. .visible-sm {
  5584. display: block !important;
  5585. }
  5586. table.visible-sm {
  5587. display: table;
  5588. }
  5589. tr.visible-sm {
  5590. display: table-row !important;
  5591. }
  5592. th.visible-sm,
  5593. td.visible-sm {
  5594. display: table-cell !important;
  5595. }
  5596. }
  5597. @media (min-width: 992px) and (max-width: 1199px) {
  5598. .visible-sm.visible-md {
  5599. display: block !important;
  5600. }
  5601. table.visible-sm.visible-md {
  5602. display: table;
  5603. }
  5604. tr.visible-sm.visible-md {
  5605. display: table-row !important;
  5606. }
  5607. th.visible-sm.visible-md,
  5608. td.visible-sm.visible-md {
  5609. display: table-cell !important;
  5610. }
  5611. }
  5612. @media (min-width: 1200px) {
  5613. .visible-sm.visible-lg {
  5614. display: block !important;
  5615. }
  5616. table.visible-sm.visible-lg {
  5617. display: table;
  5618. }
  5619. tr.visible-sm.visible-lg {
  5620. display: table-row !important;
  5621. }
  5622. th.visible-sm.visible-lg,
  5623. td.visible-sm.visible-lg {
  5624. display: table-cell !important;
  5625. }
  5626. }
  5627. .visible-md,
  5628. tr.visible-md,
  5629. th.visible-md,
  5630. td.visible-md {
  5631. display: none !important;
  5632. }
  5633. @media (max-width: 767px) {
  5634. .visible-md.visible-xs {
  5635. display: block !important;
  5636. }
  5637. table.visible-md.visible-xs {
  5638. display: table;
  5639. }
  5640. tr.visible-md.visible-xs {
  5641. display: table-row !important;
  5642. }
  5643. th.visible-md.visible-xs,
  5644. td.visible-md.visible-xs {
  5645. display: table-cell !important;
  5646. }
  5647. }
  5648. @media (min-width: 768px) and (max-width: 991px) {
  5649. .visible-md.visible-sm {
  5650. display: block !important;
  5651. }
  5652. table.visible-md.visible-sm {
  5653. display: table;
  5654. }
  5655. tr.visible-md.visible-sm {
  5656. display: table-row !important;
  5657. }
  5658. th.visible-md.visible-sm,
  5659. td.visible-md.visible-sm {
  5660. display: table-cell !important;
  5661. }
  5662. }
  5663. @media (min-width: 992px) and (max-width: 1199px) {
  5664. .visible-md {
  5665. display: block !important;
  5666. }
  5667. table.visible-md {
  5668. display: table;
  5669. }
  5670. tr.visible-md {
  5671. display: table-row !important;
  5672. }
  5673. th.visible-md,
  5674. td.visible-md {
  5675. display: table-cell !important;
  5676. }
  5677. }
  5678. @media (min-width: 1200px) {
  5679. .visible-md.visible-lg {
  5680. display: block !important;
  5681. }
  5682. table.visible-md.visible-lg {
  5683. display: table;
  5684. }
  5685. tr.visible-md.visible-lg {
  5686. display: table-row !important;
  5687. }
  5688. th.visible-md.visible-lg,
  5689. td.visible-md.visible-lg {
  5690. display: table-cell !important;
  5691. }
  5692. }
  5693. .visible-lg,
  5694. tr.visible-lg,
  5695. th.visible-lg,
  5696. td.visible-lg {
  5697. display: none !important;
  5698. }
  5699. @media (max-width: 767px) {
  5700. .visible-lg.visible-xs {
  5701. display: block !important;
  5702. }
  5703. table.visible-lg.visible-xs {
  5704. display: table;
  5705. }
  5706. tr.visible-lg.visible-xs {
  5707. display: table-row !important;
  5708. }
  5709. th.visible-lg.visible-xs,
  5710. td.visible-lg.visible-xs {
  5711. display: table-cell !important;
  5712. }
  5713. }
  5714. @media (min-width: 768px) and (max-width: 991px) {
  5715. .visible-lg.visible-sm {
  5716. display: block !important;
  5717. }
  5718. table.visible-lg.visible-sm {
  5719. display: table;
  5720. }
  5721. tr.visible-lg.visible-sm {
  5722. display: table-row !important;
  5723. }
  5724. th.visible-lg.visible-sm,
  5725. td.visible-lg.visible-sm {
  5726. display: table-cell !important;
  5727. }
  5728. }
  5729. @media (min-width: 992px) and (max-width: 1199px) {
  5730. .visible-lg.visible-md {
  5731. display: block !important;
  5732. }
  5733. table.visible-lg.visible-md {
  5734. display: table;
  5735. }
  5736. tr.visible-lg.visible-md {
  5737. display: table-row !important;
  5738. }
  5739. th.visible-lg.visible-md,
  5740. td.visible-lg.visible-md {
  5741. display: table-cell !important;
  5742. }
  5743. }
  5744. @media (min-width: 1200px) {
  5745. .visible-lg {
  5746. display: block !important;
  5747. }
  5748. table.visible-lg {
  5749. display: table;
  5750. }
  5751. tr.visible-lg {
  5752. display: table-row !important;
  5753. }
  5754. th.visible-lg,
  5755. td.visible-lg {
  5756. display: table-cell !important;
  5757. }
  5758. }
  5759. .hidden-xs {
  5760. display: block !important;
  5761. }
  5762. table.hidden-xs {
  5763. display: table;
  5764. }
  5765. tr.hidden-xs {
  5766. display: table-row !important;
  5767. }
  5768. th.hidden-xs,
  5769. td.hidden-xs {
  5770. display: table-cell !important;
  5771. }
  5772. @media (max-width: 767px) {
  5773. .hidden-xs,
  5774. tr.hidden-xs,
  5775. th.hidden-xs,
  5776. td.hidden-xs {
  5777. display: none !important;
  5778. }
  5779. }
  5780. @media (min-width: 768px) and (max-width: 991px) {
  5781. .hidden-xs.hidden-sm,
  5782. tr.hidden-xs.hidden-sm,
  5783. th.hidden-xs.hidden-sm,
  5784. td.hidden-xs.hidden-sm {
  5785. display: none !important;
  5786. }
  5787. }
  5788. @media (min-width: 992px) and (max-width: 1199px) {
  5789. .hidden-xs.hidden-md,
  5790. tr.hidden-xs.hidden-md,
  5791. th.hidden-xs.hidden-md,
  5792. td.hidden-xs.hidden-md {
  5793. display: none !important;
  5794. }
  5795. }
  5796. @media (min-width: 1200px) {
  5797. .hidden-xs.hidden-lg,
  5798. tr.hidden-xs.hidden-lg,
  5799. th.hidden-xs.hidden-lg,
  5800. td.hidden-xs.hidden-lg {
  5801. display: none !important;
  5802. }
  5803. }
  5804. .hidden-sm {
  5805. display: block !important;
  5806. }
  5807. table.hidden-sm {
  5808. display: table;
  5809. }
  5810. tr.hidden-sm {
  5811. display: table-row !important;
  5812. }
  5813. th.hidden-sm,
  5814. td.hidden-sm {
  5815. display: table-cell !important;
  5816. }
  5817. @media (max-width: 767px) {
  5818. .hidden-sm.hidden-xs,
  5819. tr.hidden-sm.hidden-xs,
  5820. th.hidden-sm.hidden-xs,
  5821. td.hidden-sm.hidden-xs {
  5822. display: none !important;
  5823. }
  5824. }
  5825. @media (min-width: 768px) and (max-width: 991px) {
  5826. .hidden-sm,
  5827. tr.hidden-sm,
  5828. th.hidden-sm,
  5829. td.hidden-sm {
  5830. display: none !important;
  5831. }
  5832. }
  5833. @media (min-width: 992px) and (max-width: 1199px) {
  5834. .hidden-sm.hidden-md,
  5835. tr.hidden-sm.hidden-md,
  5836. th.hidden-sm.hidden-md,
  5837. td.hidden-sm.hidden-md {
  5838. display: none !important;
  5839. }
  5840. }
  5841. @media (min-width: 1200px) {
  5842. .hidden-sm.hidden-lg,
  5843. tr.hidden-sm.hidden-lg,
  5844. th.hidden-sm.hidden-lg,
  5845. td.hidden-sm.hidden-lg {
  5846. display: none !important;
  5847. }
  5848. }
  5849. .hidden-md {
  5850. display: block !important;
  5851. }
  5852. table.hidden-md {
  5853. display: table;
  5854. }
  5855. tr.hidden-md {
  5856. display: table-row !important;
  5857. }
  5858. th.hidden-md,
  5859. td.hidden-md {
  5860. display: table-cell !important;
  5861. }
  5862. @media (max-width: 767px) {
  5863. .hidden-md.hidden-xs,
  5864. tr.hidden-md.hidden-xs,
  5865. th.hidden-md.hidden-xs,
  5866. td.hidden-md.hidden-xs {
  5867. display: none !important;
  5868. }
  5869. }
  5870. @media (min-width: 768px) and (max-width: 991px) {
  5871. .hidden-md.hidden-sm,
  5872. tr.hidden-md.hidden-sm,
  5873. th.hidden-md.hidden-sm,
  5874. td.hidden-md.hidden-sm {
  5875. display: none !important;
  5876. }
  5877. }
  5878. @media (min-width: 992px) and (max-width: 1199px) {
  5879. .hidden-md,
  5880. tr.hidden-md,
  5881. th.hidden-md,
  5882. td.hidden-md {
  5883. display: none !important;
  5884. }
  5885. }
  5886. @media (min-width: 1200px) {
  5887. .hidden-md.hidden-lg,
  5888. tr.hidden-md.hidden-lg,
  5889. th.hidden-md.hidden-lg,
  5890. td.hidden-md.hidden-lg {
  5891. display: none !important;
  5892. }
  5893. }
  5894. .hidden-lg {
  5895. display: block !important;
  5896. }
  5897. table.hidden-lg {
  5898. display: table;
  5899. }
  5900. tr.hidden-lg {
  5901. display: table-row !important;
  5902. }
  5903. th.hidden-lg,
  5904. td.hidden-lg {
  5905. display: table-cell !important;
  5906. }
  5907. @media (max-width: 767px) {
  5908. .hidden-lg.hidden-xs,
  5909. tr.hidden-lg.hidden-xs,
  5910. th.hidden-lg.hidden-xs,
  5911. td.hidden-lg.hidden-xs {
  5912. display: none !important;
  5913. }
  5914. }
  5915. @media (min-width: 768px) and (max-width: 991px) {
  5916. .hidden-lg.hidden-sm,
  5917. tr.hidden-lg.hidden-sm,
  5918. th.hidden-lg.hidden-sm,
  5919. td.hidden-lg.hidden-sm {
  5920. display: none !important;
  5921. }
  5922. }
  5923. @media (min-width: 992px) and (max-width: 1199px) {
  5924. .hidden-lg.hidden-md,
  5925. tr.hidden-lg.hidden-md,
  5926. th.hidden-lg.hidden-md,
  5927. td.hidden-lg.hidden-md {
  5928. display: none !important;
  5929. }
  5930. }
  5931. @media (min-width: 1200px) {
  5932. .hidden-lg,
  5933. tr.hidden-lg,
  5934. th.hidden-lg,
  5935. td.hidden-lg {
  5936. display: none !important;
  5937. }
  5938. }
  5939. .visible-print,
  5940. tr.visible-print,
  5941. th.visible-print,
  5942. td.visible-print {
  5943. display: none !important;
  5944. }
  5945. @media print {
  5946. .visible-print {
  5947. display: block !important;
  5948. }
  5949. table.visible-print {
  5950. display: table;
  5951. }
  5952. tr.visible-print {
  5953. display: table-row !important;
  5954. }
  5955. th.visible-print,
  5956. td.visible-print {
  5957. display: table-cell !important;
  5958. }
  5959. .hidden-print,
  5960. tr.hidden-print,
  5961. th.hidden-print,
  5962. td.hidden-print {
  5963. display: none !important;
  5964. }
  5965. }