No Description

bootstrap.css 145KB

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