bootstrap.css 143 KB

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