bootstrap.css 134 KB

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