bootstrap.css 138 KB

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