1
0

bootstrap.min.css 149 KB

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