bootstrap.css 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176
  1. @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic");
  2. /*!
  3. * bootswatch v3.3.7
  4. * Homepage: http://bootswatch.com
  5. * Copyright 2012-2017 Thomas Park
  6. * Licensed under MIT
  7. * Based on Bootstrap
  8. */
  9. /*!
  10. * Bootstrap v3.3.7 (http://getbootstrap.com)
  11. * Copyright 2011-2016 Twitter, Inc.
  12. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  13. */
  14. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  15. html {
  16. font-family: sans-serif;
  17. -ms-text-size-adjust: 100%;
  18. -webkit-text-size-adjust: 100%;
  19. }
  20. body {
  21. margin: 0;
  22. }
  23. article,
  24. aside,
  25. details,
  26. figcaption,
  27. figure,
  28. footer,
  29. header,
  30. hgroup,
  31. main,
  32. menu,
  33. nav,
  34. section,
  35. summary {
  36. display: block;
  37. }
  38. audio,
  39. canvas,
  40. progress,
  41. video {
  42. display: inline-block;
  43. vertical-align: baseline;
  44. }
  45. audio:not([controls]) {
  46. display: none;
  47. height: 0;
  48. }
  49. [hidden],
  50. template {
  51. display: none;
  52. }
  53. a {
  54. background-color: transparent;
  55. }
  56. a:active,
  57. a:hover {
  58. outline: 0;
  59. }
  60. abbr[title] {
  61. border-bottom: 1px dotted;
  62. }
  63. b,
  64. strong {
  65. font-weight: bold;
  66. }
  67. dfn {
  68. font-style: italic;
  69. }
  70. h1 {
  71. font-size: 2em;
  72. margin: 0.67em 0;
  73. }
  74. mark {
  75. background: #ff0;
  76. color: #000;
  77. }
  78. small {
  79. font-size: 80%;
  80. }
  81. sub,
  82. sup {
  83. font-size: 75%;
  84. line-height: 0;
  85. position: relative;
  86. vertical-align: baseline;
  87. }
  88. sup {
  89. top: -0.5em;
  90. }
  91. sub {
  92. bottom: -0.25em;
  93. }
  94. img {
  95. border: 0;
  96. }
  97. svg:not(:root) {
  98. overflow: hidden;
  99. }
  100. figure {
  101. margin: 1em 40px;
  102. }
  103. hr {
  104. -webkit-box-sizing: content-box;
  105. -moz-box-sizing: content-box;
  106. box-sizing: content-box;
  107. height: 0;
  108. }
  109. pre {
  110. overflow: auto;
  111. }
  112. code,
  113. kbd,
  114. pre,
  115. samp {
  116. font-family: monospace, monospace;
  117. font-size: 1em;
  118. }
  119. button,
  120. input,
  121. optgroup,
  122. select,
  123. textarea {
  124. color: inherit;
  125. font: inherit;
  126. margin: 0;
  127. }
  128. button {
  129. overflow: visible;
  130. }
  131. button,
  132. select {
  133. text-transform: none;
  134. }
  135. button,
  136. html input[type="button"],
  137. input[type="reset"],
  138. input[type="submit"] {
  139. -webkit-appearance: button;
  140. cursor: pointer;
  141. }
  142. button[disabled],
  143. html input[disabled] {
  144. cursor: default;
  145. }
  146. button::-moz-focus-inner,
  147. input::-moz-focus-inner {
  148. border: 0;
  149. padding: 0;
  150. }
  151. input {
  152. line-height: normal;
  153. }
  154. input[type="checkbox"],
  155. input[type="radio"] {
  156. -webkit-box-sizing: border-box;
  157. -moz-box-sizing: border-box;
  158. box-sizing: border-box;
  159. padding: 0;
  160. }
  161. input[type="number"]::-webkit-inner-spin-button,
  162. input[type="number"]::-webkit-outer-spin-button {
  163. height: auto;
  164. }
  165. input[type="search"] {
  166. -webkit-appearance: textfield;
  167. -webkit-box-sizing: content-box;
  168. -moz-box-sizing: content-box;
  169. box-sizing: content-box;
  170. }
  171. input[type="search"]::-webkit-search-cancel-button,
  172. input[type="search"]::-webkit-search-decoration {
  173. -webkit-appearance: none;
  174. }
  175. fieldset {
  176. border: 1px solid #c0c0c0;
  177. margin: 0 2px;
  178. padding: 0.35em 0.625em 0.75em;
  179. }
  180. legend {
  181. border: 0;
  182. padding: 0;
  183. }
  184. textarea {
  185. overflow: auto;
  186. }
  187. optgroup {
  188. font-weight: bold;
  189. }
  190. table {
  191. border-collapse: collapse;
  192. border-spacing: 0;
  193. }
  194. td,
  195. th {
  196. padding: 0;
  197. }
  198. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  199. @media print {
  200. *,
  201. *:before,
  202. *:after {
  203. background: transparent !important;
  204. color: #000 !important;
  205. -webkit-box-shadow: none !important;
  206. box-shadow: none !important;
  207. text-shadow: none !important;
  208. }
  209. a,
  210. a:visited {
  211. text-decoration: underline;
  212. }
  213. a[href]:after {
  214. content: " (" attr(href) ")";
  215. }
  216. abbr[title]:after {
  217. content: " (" attr(title) ")";
  218. }
  219. a[href^="#"]:after,
  220. a[href^="javascript:"]:after {
  221. content: "";
  222. }
  223. pre,
  224. blockquote {
  225. border: 1px solid #999;
  226. page-break-inside: avoid;
  227. }
  228. thead {
  229. display: table-header-group;
  230. }
  231. tr,
  232. img {
  233. page-break-inside: avoid;
  234. }
  235. img {
  236. max-width: 100% !important;
  237. }
  238. p,
  239. h2,
  240. h3 {
  241. orphans: 3;
  242. widows: 3;
  243. }
  244. h2,
  245. h3 {
  246. page-break-after: avoid;
  247. }
  248. .navbar {
  249. display: none;
  250. }
  251. .btn > .caret,
  252. .dropup > .btn > .caret {
  253. border-top-color: #000 !important;
  254. }
  255. .label {
  256. border: 1px solid #000;
  257. }
  258. .table {
  259. border-collapse: collapse !important;
  260. }
  261. .table td,
  262. .table th {
  263. background-color: #fff !important;
  264. }
  265. .table-bordered th,
  266. .table-bordered td {
  267. border: 1px solid #ddd !important;
  268. }
  269. }
  270. @font-face {
  271. font-family: 'Glyphicons Halflings';
  272. src: url('../fonts/glyphicons-halflings-regular.eot');
  273. 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');
  274. }
  275. .glyphicon {
  276. position: relative;
  277. top: 1px;
  278. display: inline-block;
  279. font-family: 'Glyphicons Halflings';
  280. font-style: normal;
  281. font-weight: normal;
  282. line-height: 1;
  283. -webkit-font-smoothing: antialiased;
  284. -moz-osx-font-smoothing: grayscale;
  285. }
  286. .glyphicon-asterisk:before {
  287. content: "\002a";
  288. }
  289. .glyphicon-plus:before {
  290. content: "\002b";
  291. }
  292. .glyphicon-euro:before,
  293. .glyphicon-eur:before {
  294. content: "\20ac";
  295. }
  296. .glyphicon-minus:before {
  297. content: "\2212";
  298. }
  299. .glyphicon-cloud:before {
  300. content: "\2601";
  301. }
  302. .glyphicon-envelope:before {
  303. content: "\2709";
  304. }
  305. .glyphicon-pencil:before {
  306. content: "\270f";
  307. }
  308. .glyphicon-glass:before {
  309. content: "\e001";
  310. }
  311. .glyphicon-music:before {
  312. content: "\e002";
  313. }
  314. .glyphicon-search:before {
  315. content: "\e003";
  316. }
  317. .glyphicon-heart:before {
  318. content: "\e005";
  319. }
  320. .glyphicon-star:before {
  321. content: "\e006";
  322. }
  323. .glyphicon-star-empty:before {
  324. content: "\e007";
  325. }
  326. .glyphicon-user:before {
  327. content: "\e008";
  328. }
  329. .glyphicon-film:before {
  330. content: "\e009";
  331. }
  332. .glyphicon-th-large:before {
  333. content: "\e010";
  334. }
  335. .glyphicon-th:before {
  336. content: "\e011";
  337. }
  338. .glyphicon-th-list:before {
  339. content: "\e012";
  340. }
  341. .glyphicon-ok:before {
  342. content: "\e013";
  343. }
  344. .glyphicon-remove:before {
  345. content: "\e014";
  346. }
  347. .glyphicon-zoom-in:before {
  348. content: "\e015";
  349. }
  350. .glyphicon-zoom-out:before {
  351. content: "\e016";
  352. }
  353. .glyphicon-off:before {
  354. content: "\e017";
  355. }
  356. .glyphicon-signal:before {
  357. content: "\e018";
  358. }
  359. .glyphicon-cog:before {
  360. content: "\e019";
  361. }
  362. .glyphicon-trash:before {
  363. content: "\e020";
  364. }
  365. .glyphicon-home:before {
  366. content: "\e021";
  367. }
  368. .glyphicon-file:before {
  369. content: "\e022";
  370. }
  371. .glyphicon-time:before {
  372. content: "\e023";
  373. }
  374. .glyphicon-road:before {
  375. content: "\e024";
  376. }
  377. .glyphicon-download-alt:before {
  378. content: "\e025";
  379. }
  380. .glyphicon-download:before {
  381. content: "\e026";
  382. }
  383. .glyphicon-upload:before {
  384. content: "\e027";
  385. }
  386. .glyphicon-inbox:before {
  387. content: "\e028";
  388. }
  389. .glyphicon-play-circle:before {
  390. content: "\e029";
  391. }
  392. .glyphicon-repeat:before {
  393. content: "\e030";
  394. }
  395. .glyphicon-refresh:before {
  396. content: "\e031";
  397. }
  398. .glyphicon-list-alt:before {
  399. content: "\e032";
  400. }
  401. .glyphicon-lock:before {
  402. content: "\e033";
  403. }
  404. .glyphicon-flag:before {
  405. content: "\e034";
  406. }
  407. .glyphicon-headphones:before {
  408. content: "\e035";
  409. }
  410. .glyphicon-volume-off:before {
  411. content: "\e036";
  412. }
  413. .glyphicon-volume-down:before {
  414. content: "\e037";
  415. }
  416. .glyphicon-volume-up:before {
  417. content: "\e038";
  418. }
  419. .glyphicon-qrcode:before {
  420. content: "\e039";
  421. }
  422. .glyphicon-barcode:before {
  423. content: "\e040";
  424. }
  425. .glyphicon-tag:before {
  426. content: "\e041";
  427. }
  428. .glyphicon-tags:before {
  429. content: "\e042";
  430. }
  431. .glyphicon-book:before {
  432. content: "\e043";
  433. }
  434. .glyphicon-bookmark:before {
  435. content: "\e044";
  436. }
  437. .glyphicon-print:before {
  438. content: "\e045";
  439. }
  440. .glyphicon-camera:before {
  441. content: "\e046";
  442. }
  443. .glyphicon-font:before {
  444. content: "\e047";
  445. }
  446. .glyphicon-bold:before {
  447. content: "\e048";
  448. }
  449. .glyphicon-italic:before {
  450. content: "\e049";
  451. }
  452. .glyphicon-text-height:before {
  453. content: "\e050";
  454. }
  455. .glyphicon-text-width:before {
  456. content: "\e051";
  457. }
  458. .glyphicon-align-left:before {
  459. content: "\e052";
  460. }
  461. .glyphicon-align-center:before {
  462. content: "\e053";
  463. }
  464. .glyphicon-align-right:before {
  465. content: "\e054";
  466. }
  467. .glyphicon-align-justify:before {
  468. content: "\e055";
  469. }
  470. .glyphicon-list:before {
  471. content: "\e056";
  472. }
  473. .glyphicon-indent-left:before {
  474. content: "\e057";
  475. }
  476. .glyphicon-indent-right:before {
  477. content: "\e058";
  478. }
  479. .glyphicon-facetime-video:before {
  480. content: "\e059";
  481. }
  482. .glyphicon-picture:before {
  483. content: "\e060";
  484. }
  485. .glyphicon-map-marker:before {
  486. content: "\e062";
  487. }
  488. .glyphicon-adjust:before {
  489. content: "\e063";
  490. }
  491. .glyphicon-tint:before {
  492. content: "\e064";
  493. }
  494. .glyphicon-edit:before {
  495. content: "\e065";
  496. }
  497. .glyphicon-share:before {
  498. content: "\e066";
  499. }
  500. .glyphicon-check:before {
  501. content: "\e067";
  502. }
  503. .glyphicon-move:before {
  504. content: "\e068";
  505. }
  506. .glyphicon-step-backward:before {
  507. content: "\e069";
  508. }
  509. .glyphicon-fast-backward:before {
  510. content: "\e070";
  511. }
  512. .glyphicon-backward:before {
  513. content: "\e071";
  514. }
  515. .glyphicon-play:before {
  516. content: "\e072";
  517. }
  518. .glyphicon-pause:before {
  519. content: "\e073";
  520. }
  521. .glyphicon-stop:before {
  522. content: "\e074";
  523. }
  524. .glyphicon-forward:before {
  525. content: "\e075";
  526. }
  527. .glyphicon-fast-forward:before {
  528. content: "\e076";
  529. }
  530. .glyphicon-step-forward:before {
  531. content: "\e077";
  532. }
  533. .glyphicon-eject:before {
  534. content: "\e078";
  535. }
  536. .glyphicon-chevron-left:before {
  537. content: "\e079";
  538. }
  539. .glyphicon-chevron-right:before {
  540. content: "\e080";
  541. }
  542. .glyphicon-plus-sign:before {
  543. content: "\e081";
  544. }
  545. .glyphicon-minus-sign:before {
  546. content: "\e082";
  547. }
  548. .glyphicon-remove-sign:before {
  549. content: "\e083";
  550. }
  551. .glyphicon-ok-sign:before {
  552. content: "\e084";
  553. }
  554. .glyphicon-question-sign:before {
  555. content: "\e085";
  556. }
  557. .glyphicon-info-sign:before {
  558. content: "\e086";
  559. }
  560. .glyphicon-screenshot:before {
  561. content: "\e087";
  562. }
  563. .glyphicon-remove-circle:before {
  564. content: "\e088";
  565. }
  566. .glyphicon-ok-circle:before {
  567. content: "\e089";
  568. }
  569. .glyphicon-ban-circle:before {
  570. content: "\e090";
  571. }
  572. .glyphicon-arrow-left:before {
  573. content: "\e091";
  574. }
  575. .glyphicon-arrow-right:before {
  576. content: "\e092";
  577. }
  578. .glyphicon-arrow-up:before {
  579. content: "\e093";
  580. }
  581. .glyphicon-arrow-down:before {
  582. content: "\e094";
  583. }
  584. .glyphicon-share-alt:before {
  585. content: "\e095";
  586. }
  587. .glyphicon-resize-full:before {
  588. content: "\e096";
  589. }
  590. .glyphicon-resize-small:before {
  591. content: "\e097";
  592. }
  593. .glyphicon-exclamation-sign:before {
  594. content: "\e101";
  595. }
  596. .glyphicon-gift:before {
  597. content: "\e102";
  598. }
  599. .glyphicon-leaf:before {
  600. content: "\e103";
  601. }
  602. .glyphicon-fire:before {
  603. content: "\e104";
  604. }
  605. .glyphicon-eye-open:before {
  606. content: "\e105";
  607. }
  608. .glyphicon-eye-close:before {
  609. content: "\e106";
  610. }
  611. .glyphicon-warning-sign:before {
  612. content: "\e107";
  613. }
  614. .glyphicon-plane:before {
  615. content: "\e108";
  616. }
  617. .glyphicon-calendar:before {
  618. content: "\e109";
  619. }
  620. .glyphicon-random:before {
  621. content: "\e110";
  622. }
  623. .glyphicon-comment:before {
  624. content: "\e111";
  625. }
  626. .glyphicon-magnet:before {
  627. content: "\e112";
  628. }
  629. .glyphicon-chevron-up:before {
  630. content: "\e113";
  631. }
  632. .glyphicon-chevron-down:before {
  633. content: "\e114";
  634. }
  635. .glyphicon-retweet:before {
  636. content: "\e115";
  637. }
  638. .glyphicon-shopping-cart:before {
  639. content: "\e116";
  640. }
  641. .glyphicon-folder-close:before {
  642. content: "\e117";
  643. }
  644. .glyphicon-folder-open:before {
  645. content: "\e118";
  646. }
  647. .glyphicon-resize-vertical:before {
  648. content: "\e119";
  649. }
  650. .glyphicon-resize-horizontal:before {
  651. content: "\e120";
  652. }
  653. .glyphicon-hdd:before {
  654. content: "\e121";
  655. }
  656. .glyphicon-bullhorn:before {
  657. content: "\e122";
  658. }
  659. .glyphicon-bell:before {
  660. content: "\e123";
  661. }
  662. .glyphicon-certificate:before {
  663. content: "\e124";
  664. }
  665. .glyphicon-thumbs-up:before {
  666. content: "\e125";
  667. }
  668. .glyphicon-thumbs-down:before {
  669. content: "\e126";
  670. }
  671. .glyphicon-hand-right:before {
  672. content: "\e127";
  673. }
  674. .glyphicon-hand-left:before {
  675. content: "\e128";
  676. }
  677. .glyphicon-hand-up:before {
  678. content: "\e129";
  679. }
  680. .glyphicon-hand-down:before {
  681. content: "\e130";
  682. }
  683. .glyphicon-circle-arrow-right:before {
  684. content: "\e131";
  685. }
  686. .glyphicon-circle-arrow-left:before {
  687. content: "\e132";
  688. }
  689. .glyphicon-circle-arrow-up:before {
  690. content: "\e133";
  691. }
  692. .glyphicon-circle-arrow-down:before {
  693. content: "\e134";
  694. }
  695. .glyphicon-globe:before {
  696. content: "\e135";
  697. }
  698. .glyphicon-wrench:before {
  699. content: "\e136";
  700. }
  701. .glyphicon-tasks:before {
  702. content: "\e137";
  703. }
  704. .glyphicon-filter:before {
  705. content: "\e138";
  706. }
  707. .glyphicon-briefcase:before {
  708. content: "\e139";
  709. }
  710. .glyphicon-fullscreen:before {
  711. content: "\e140";
  712. }
  713. .glyphicon-dashboard:before {
  714. content: "\e141";
  715. }
  716. .glyphicon-paperclip:before {
  717. content: "\e142";
  718. }
  719. .glyphicon-heart-empty:before {
  720. content: "\e143";
  721. }
  722. .glyphicon-link:before {
  723. content: "\e144";
  724. }
  725. .glyphicon-phone:before {
  726. content: "\e145";
  727. }
  728. .glyphicon-pushpin:before {
  729. content: "\e146";
  730. }
  731. .glyphicon-usd:before {
  732. content: "\e148";
  733. }
  734. .glyphicon-gbp:before {
  735. content: "\e149";
  736. }
  737. .glyphicon-sort:before {
  738. content: "\e150";
  739. }
  740. .glyphicon-sort-by-alphabet:before {
  741. content: "\e151";
  742. }
  743. .glyphicon-sort-by-alphabet-alt:before {
  744. content: "\e152";
  745. }
  746. .glyphicon-sort-by-order:before {
  747. content: "\e153";
  748. }
  749. .glyphicon-sort-by-order-alt:before {
  750. content: "\e154";
  751. }
  752. .glyphicon-sort-by-attributes:before {
  753. content: "\e155";
  754. }
  755. .glyphicon-sort-by-attributes-alt:before {
  756. content: "\e156";
  757. }
  758. .glyphicon-unchecked:before {
  759. content: "\e157";
  760. }
  761. .glyphicon-expand:before {
  762. content: "\e158";
  763. }
  764. .glyphicon-collapse-down:before {
  765. content: "\e159";
  766. }
  767. .glyphicon-collapse-up:before {
  768. content: "\e160";
  769. }
  770. .glyphicon-log-in:before {
  771. content: "\e161";
  772. }
  773. .glyphicon-flash:before {
  774. content: "\e162";
  775. }
  776. .glyphicon-log-out:before {
  777. content: "\e163";
  778. }
  779. .glyphicon-new-window:before {
  780. content: "\e164";
  781. }
  782. .glyphicon-record:before {
  783. content: "\e165";
  784. }
  785. .glyphicon-save:before {
  786. content: "\e166";
  787. }
  788. .glyphicon-open:before {
  789. content: "\e167";
  790. }
  791. .glyphicon-saved:before {
  792. content: "\e168";
  793. }
  794. .glyphicon-import:before {
  795. content: "\e169";
  796. }
  797. .glyphicon-export:before {
  798. content: "\e170";
  799. }
  800. .glyphicon-send:before {
  801. content: "\e171";
  802. }
  803. .glyphicon-floppy-disk:before {
  804. content: "\e172";
  805. }
  806. .glyphicon-floppy-saved:before {
  807. content: "\e173";
  808. }
  809. .glyphicon-floppy-remove:before {
  810. content: "\e174";
  811. }
  812. .glyphicon-floppy-save:before {
  813. content: "\e175";
  814. }
  815. .glyphicon-floppy-open:before {
  816. content: "\e176";
  817. }
  818. .glyphicon-credit-card:before {
  819. content: "\e177";
  820. }
  821. .glyphicon-transfer:before {
  822. content: "\e178";
  823. }
  824. .glyphicon-cutlery:before {
  825. content: "\e179";
  826. }
  827. .glyphicon-header:before {
  828. content: "\e180";
  829. }
  830. .glyphicon-compressed:before {
  831. content: "\e181";
  832. }
  833. .glyphicon-earphone:before {
  834. content: "\e182";
  835. }
  836. .glyphicon-phone-alt:before {
  837. content: "\e183";
  838. }
  839. .glyphicon-tower:before {
  840. content: "\e184";
  841. }
  842. .glyphicon-stats:before {
  843. content: "\e185";
  844. }
  845. .glyphicon-sd-video:before {
  846. content: "\e186";
  847. }
  848. .glyphicon-hd-video:before {
  849. content: "\e187";
  850. }
  851. .glyphicon-subtitles:before {
  852. content: "\e188";
  853. }
  854. .glyphicon-sound-stereo:before {
  855. content: "\e189";
  856. }
  857. .glyphicon-sound-dolby:before {
  858. content: "\e190";
  859. }
  860. .glyphicon-sound-5-1:before {
  861. content: "\e191";
  862. }
  863. .glyphicon-sound-6-1:before {
  864. content: "\e192";
  865. }
  866. .glyphicon-sound-7-1:before {
  867. content: "\e193";
  868. }
  869. .glyphicon-copyright-mark:before {
  870. content: "\e194";
  871. }
  872. .glyphicon-registration-mark:before {
  873. content: "\e195";
  874. }
  875. .glyphicon-cloud-download:before {
  876. content: "\e197";
  877. }
  878. .glyphicon-cloud-upload:before {
  879. content: "\e198";
  880. }
  881. .glyphicon-tree-conifer:before {
  882. content: "\e199";
  883. }
  884. .glyphicon-tree-deciduous:before {
  885. content: "\e200";
  886. }
  887. .glyphicon-cd:before {
  888. content: "\e201";
  889. }
  890. .glyphicon-save-file:before {
  891. content: "\e202";
  892. }
  893. .glyphicon-open-file:before {
  894. content: "\e203";
  895. }
  896. .glyphicon-level-up:before {
  897. content: "\e204";
  898. }
  899. .glyphicon-copy:before {
  900. content: "\e205";
  901. }
  902. .glyphicon-paste:before {
  903. content: "\e206";
  904. }
  905. .glyphicon-alert:before {
  906. content: "\e209";
  907. }
  908. .glyphicon-equalizer:before {
  909. content: "\e210";
  910. }
  911. .glyphicon-king:before {
  912. content: "\e211";
  913. }
  914. .glyphicon-queen:before {
  915. content: "\e212";
  916. }
  917. .glyphicon-pawn:before {
  918. content: "\e213";
  919. }
  920. .glyphicon-bishop:before {
  921. content: "\e214";
  922. }
  923. .glyphicon-knight:before {
  924. content: "\e215";
  925. }
  926. .glyphicon-baby-formula:before {
  927. content: "\e216";
  928. }
  929. .glyphicon-tent:before {
  930. content: "\26fa";
  931. }
  932. .glyphicon-blackboard:before {
  933. content: "\e218";
  934. }
  935. .glyphicon-bed:before {
  936. content: "\e219";
  937. }
  938. .glyphicon-apple:before {
  939. content: "\f8ff";
  940. }
  941. .glyphicon-erase:before {
  942. content: "\e221";
  943. }
  944. .glyphicon-hourglass:before {
  945. content: "\231b";
  946. }
  947. .glyphicon-lamp:before {
  948. content: "\e223";
  949. }
  950. .glyphicon-duplicate:before {
  951. content: "\e224";
  952. }
  953. .glyphicon-piggy-bank:before {
  954. content: "\e225";
  955. }
  956. .glyphicon-scissors:before {
  957. content: "\e226";
  958. }
  959. .glyphicon-bitcoin:before {
  960. content: "\e227";
  961. }
  962. .glyphicon-btc:before {
  963. content: "\e227";
  964. }
  965. .glyphicon-xbt:before {
  966. content: "\e227";
  967. }
  968. .glyphicon-yen:before {
  969. content: "\00a5";
  970. }
  971. .glyphicon-jpy:before {
  972. content: "\00a5";
  973. }
  974. .glyphicon-ruble:before {
  975. content: "\20bd";
  976. }
  977. .glyphicon-rub:before {
  978. content: "\20bd";
  979. }
  980. .glyphicon-scale:before {
  981. content: "\e230";
  982. }
  983. .glyphicon-ice-lolly:before {
  984. content: "\e231";
  985. }
  986. .glyphicon-ice-lolly-tasted:before {
  987. content: "\e232";
  988. }
  989. .glyphicon-education:before {
  990. content: "\e233";
  991. }
  992. .glyphicon-option-horizontal:before {
  993. content: "\e234";
  994. }
  995. .glyphicon-option-vertical:before {
  996. content: "\e235";
  997. }
  998. .glyphicon-menu-hamburger:before {
  999. content: "\e236";
  1000. }
  1001. .glyphicon-modal-window:before {
  1002. content: "\e237";
  1003. }
  1004. .glyphicon-oil:before {
  1005. content: "\e238";
  1006. }
  1007. .glyphicon-grain:before {
  1008. content: "\e239";
  1009. }
  1010. .glyphicon-sunglasses:before {
  1011. content: "\e240";
  1012. }
  1013. .glyphicon-text-size:before {
  1014. content: "\e241";
  1015. }
  1016. .glyphicon-text-color:before {
  1017. content: "\e242";
  1018. }
  1019. .glyphicon-text-background:before {
  1020. content: "\e243";
  1021. }
  1022. .glyphicon-object-align-top:before {
  1023. content: "\e244";
  1024. }
  1025. .glyphicon-object-align-bottom:before {
  1026. content: "\e245";
  1027. }
  1028. .glyphicon-object-align-horizontal:before {
  1029. content: "\e246";
  1030. }
  1031. .glyphicon-object-align-left:before {
  1032. content: "\e247";
  1033. }
  1034. .glyphicon-object-align-vertical:before {
  1035. content: "\e248";
  1036. }
  1037. .glyphicon-object-align-right:before {
  1038. content: "\e249";
  1039. }
  1040. .glyphicon-triangle-right:before {
  1041. content: "\e250";
  1042. }
  1043. .glyphicon-triangle-left:before {
  1044. content: "\e251";
  1045. }
  1046. .glyphicon-triangle-bottom:before {
  1047. content: "\e252";
  1048. }
  1049. .glyphicon-triangle-top:before {
  1050. content: "\e253";
  1051. }
  1052. .glyphicon-console:before {
  1053. content: "\e254";
  1054. }
  1055. .glyphicon-superscript:before {
  1056. content: "\e255";
  1057. }
  1058. .glyphicon-subscript:before {
  1059. content: "\e256";
  1060. }
  1061. .glyphicon-menu-left:before {
  1062. content: "\e257";
  1063. }
  1064. .glyphicon-menu-right:before {
  1065. content: "\e258";
  1066. }
  1067. .glyphicon-menu-down:before {
  1068. content: "\e259";
  1069. }
  1070. .glyphicon-menu-up:before {
  1071. content: "\e260";
  1072. }
  1073. * {
  1074. -webkit-box-sizing: border-box;
  1075. -moz-box-sizing: border-box;
  1076. box-sizing: border-box;
  1077. }
  1078. *:before,
  1079. *:after {
  1080. -webkit-box-sizing: border-box;
  1081. -moz-box-sizing: border-box;
  1082. box-sizing: border-box;
  1083. }
  1084. html {
  1085. font-size: 10px;
  1086. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1087. }
  1088. body {
  1089. font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1090. font-size: 14px;
  1091. line-height: 1.42857143;
  1092. color: #555555;
  1093. background-color: #ffffff;
  1094. }
  1095. input,
  1096. button,
  1097. select,
  1098. textarea {
  1099. font-family: inherit;
  1100. font-size: inherit;
  1101. line-height: inherit;
  1102. }
  1103. a {
  1104. color: #158cba;
  1105. text-decoration: none;
  1106. }
  1107. a:hover,
  1108. a:focus {
  1109. color: #158cba;
  1110. text-decoration: underline;
  1111. }
  1112. a:focus {
  1113. outline: 5px auto -webkit-focus-ring-color;
  1114. outline-offset: -2px;
  1115. }
  1116. figure {
  1117. margin: 0;
  1118. }
  1119. img {
  1120. vertical-align: middle;
  1121. }
  1122. .img-responsive,
  1123. .thumbnail > img,
  1124. .thumbnail a > img,
  1125. .carousel-inner > .item > img,
  1126. .carousel-inner > .item > a > img {
  1127. display: block;
  1128. max-width: 100%;
  1129. height: auto;
  1130. }
  1131. .img-rounded {
  1132. border-radius: 5px;
  1133. }
  1134. .img-thumbnail {
  1135. padding: 4px;
  1136. line-height: 1.42857143;
  1137. background-color: #ffffff;
  1138. border: 1px solid #eeeeee;
  1139. border-radius: 4px;
  1140. -webkit-transition: all 0.2s ease-in-out;
  1141. -o-transition: all 0.2s ease-in-out;
  1142. transition: all 0.2s ease-in-out;
  1143. display: inline-block;
  1144. max-width: 100%;
  1145. height: auto;
  1146. }
  1147. .img-circle {
  1148. border-radius: 50%;
  1149. }
  1150. hr {
  1151. margin-top: 20px;
  1152. margin-bottom: 20px;
  1153. border: 0;
  1154. border-top: 1px solid #eeeeee;
  1155. }
  1156. .sr-only {
  1157. position: absolute;
  1158. width: 1px;
  1159. height: 1px;
  1160. margin: -1px;
  1161. padding: 0;
  1162. overflow: hidden;
  1163. clip: rect(0, 0, 0, 0);
  1164. border: 0;
  1165. }
  1166. .sr-only-focusable:active,
  1167. .sr-only-focusable:focus {
  1168. position: static;
  1169. width: auto;
  1170. height: auto;
  1171. margin: 0;
  1172. overflow: visible;
  1173. clip: auto;
  1174. }
  1175. [role="button"] {
  1176. cursor: pointer;
  1177. }
  1178. h1,
  1179. h2,
  1180. h3,
  1181. h4,
  1182. h5,
  1183. h6,
  1184. .h1,
  1185. .h2,
  1186. .h3,
  1187. .h4,
  1188. .h5,
  1189. .h6 {
  1190. font-family: inherit;
  1191. font-weight: 400;
  1192. line-height: 1.1;
  1193. color: #333333;
  1194. }
  1195. h1 small,
  1196. h2 small,
  1197. h3 small,
  1198. h4 small,
  1199. h5 small,
  1200. h6 small,
  1201. .h1 small,
  1202. .h2 small,
  1203. .h3 small,
  1204. .h4 small,
  1205. .h5 small,
  1206. .h6 small,
  1207. h1 .small,
  1208. h2 .small,
  1209. h3 .small,
  1210. h4 .small,
  1211. h5 .small,
  1212. h6 .small,
  1213. .h1 .small,
  1214. .h2 .small,
  1215. .h3 .small,
  1216. .h4 .small,
  1217. .h5 .small,
  1218. .h6 .small {
  1219. font-weight: normal;
  1220. line-height: 1;
  1221. color: #999999;
  1222. }
  1223. h1,
  1224. .h1,
  1225. h2,
  1226. .h2,
  1227. h3,
  1228. .h3 {
  1229. margin-top: 20px;
  1230. margin-bottom: 10px;
  1231. }
  1232. h1 small,
  1233. .h1 small,
  1234. h2 small,
  1235. .h2 small,
  1236. h3 small,
  1237. .h3 small,
  1238. h1 .small,
  1239. .h1 .small,
  1240. h2 .small,
  1241. .h2 .small,
  1242. h3 .small,
  1243. .h3 .small {
  1244. font-size: 65%;
  1245. }
  1246. h4,
  1247. .h4,
  1248. h5,
  1249. .h5,
  1250. h6,
  1251. .h6 {
  1252. margin-top: 10px;
  1253. margin-bottom: 10px;
  1254. }
  1255. h4 small,
  1256. .h4 small,
  1257. h5 small,
  1258. .h5 small,
  1259. h6 small,
  1260. .h6 small,
  1261. h4 .small,
  1262. .h4 .small,
  1263. h5 .small,
  1264. .h5 .small,
  1265. h6 .small,
  1266. .h6 .small {
  1267. font-size: 75%;
  1268. }
  1269. h1,
  1270. .h1 {
  1271. font-size: 36px;
  1272. }
  1273. h2,
  1274. .h2 {
  1275. font-size: 30px;
  1276. }
  1277. h3,
  1278. .h3 {
  1279. font-size: 24px;
  1280. }
  1281. h4,
  1282. .h4 {
  1283. font-size: 18px;
  1284. }
  1285. h5,
  1286. .h5 {
  1287. font-size: 14px;
  1288. }
  1289. h6,
  1290. .h6 {
  1291. font-size: 12px;
  1292. }
  1293. p {
  1294. margin: 0 0 10px;
  1295. }
  1296. .lead {
  1297. margin-bottom: 20px;
  1298. font-size: 16px;
  1299. font-weight: 300;
  1300. line-height: 1.4;
  1301. }
  1302. @media (min-width: 768px) {
  1303. .lead {
  1304. font-size: 21px;
  1305. }
  1306. }
  1307. small,
  1308. .small {
  1309. font-size: 85%;
  1310. }
  1311. mark,
  1312. .mark {
  1313. background-color: #ff851b;
  1314. padding: .2em;
  1315. }
  1316. .text-left {
  1317. text-align: left;
  1318. }
  1319. .text-right {
  1320. text-align: right;
  1321. }
  1322. .text-center {
  1323. text-align: center;
  1324. }
  1325. .text-justify {
  1326. text-align: justify;
  1327. }
  1328. .text-nowrap {
  1329. white-space: nowrap;
  1330. }
  1331. .text-lowercase {
  1332. text-transform: lowercase;
  1333. }
  1334. .text-uppercase {
  1335. text-transform: uppercase;
  1336. }
  1337. .text-capitalize {
  1338. text-transform: capitalize;
  1339. }
  1340. .text-muted {
  1341. color: #999999;
  1342. }
  1343. .text-primary {
  1344. color: #158cba;
  1345. }
  1346. a.text-primary:hover,
  1347. a.text-primary:focus {
  1348. color: #106a8c;
  1349. }
  1350. .text-success {
  1351. color: #ffffff;
  1352. }
  1353. a.text-success:hover,
  1354. a.text-success:focus {
  1355. color: #e6e6e6;
  1356. }
  1357. .text-info {
  1358. color: #ffffff;
  1359. }
  1360. a.text-info:hover,
  1361. a.text-info:focus {
  1362. color: #e6e6e6;
  1363. }
  1364. .text-warning {
  1365. color: #ffffff;
  1366. }
  1367. a.text-warning:hover,
  1368. a.text-warning:focus {
  1369. color: #e6e6e6;
  1370. }
  1371. .text-danger {
  1372. color: #ffffff;
  1373. }
  1374. a.text-danger:hover,
  1375. a.text-danger:focus {
  1376. color: #e6e6e6;
  1377. }
  1378. .bg-primary {
  1379. color: #fff;
  1380. background-color: #158cba;
  1381. }
  1382. a.bg-primary:hover,
  1383. a.bg-primary:focus {
  1384. background-color: #106a8c;
  1385. }
  1386. .bg-success {
  1387. background-color: #28b62c;
  1388. }
  1389. a.bg-success:hover,
  1390. a.bg-success:focus {
  1391. background-color: #1f8c22;
  1392. }
  1393. .bg-info {
  1394. background-color: #75caeb;
  1395. }
  1396. a.bg-info:hover,
  1397. a.bg-info:focus {
  1398. background-color: #48b9e5;
  1399. }
  1400. .bg-warning {
  1401. background-color: #ff851b;
  1402. }
  1403. a.bg-warning:hover,
  1404. a.bg-warning:focus {
  1405. background-color: #e76b00;
  1406. }
  1407. .bg-danger {
  1408. background-color: #ff4136;
  1409. }
  1410. a.bg-danger:hover,
  1411. a.bg-danger:focus {
  1412. background-color: #ff1103;
  1413. }
  1414. .page-header {
  1415. padding-bottom: 9px;
  1416. margin: 40px 0 20px;
  1417. border-bottom: 1px solid #eeeeee;
  1418. }
  1419. ul,
  1420. ol {
  1421. margin-top: 0;
  1422. margin-bottom: 10px;
  1423. }
  1424. ul ul,
  1425. ol ul,
  1426. ul ol,
  1427. ol ol {
  1428. margin-bottom: 0;
  1429. }
  1430. .list-unstyled {
  1431. padding-left: 0;
  1432. list-style: none;
  1433. }
  1434. .list-inline {
  1435. padding-left: 0;
  1436. list-style: none;
  1437. margin-left: -5px;
  1438. }
  1439. .list-inline > li {
  1440. display: inline-block;
  1441. padding-left: 5px;
  1442. padding-right: 5px;
  1443. }
  1444. dl {
  1445. margin-top: 0;
  1446. margin-bottom: 20px;
  1447. }
  1448. dt,
  1449. dd {
  1450. line-height: 1.42857143;
  1451. }
  1452. dt {
  1453. font-weight: bold;
  1454. }
  1455. dd {
  1456. margin-left: 0;
  1457. }
  1458. @media (min-width: 768px) {
  1459. .dl-horizontal dt {
  1460. float: left;
  1461. width: 160px;
  1462. clear: left;
  1463. text-align: right;
  1464. overflow: hidden;
  1465. text-overflow: ellipsis;
  1466. white-space: nowrap;
  1467. }
  1468. .dl-horizontal dd {
  1469. margin-left: 180px;
  1470. }
  1471. }
  1472. abbr[title],
  1473. abbr[data-original-title] {
  1474. cursor: help;
  1475. border-bottom: 1px dotted #999999;
  1476. }
  1477. .initialism {
  1478. font-size: 90%;
  1479. text-transform: uppercase;
  1480. }
  1481. blockquote {
  1482. padding: 10px 20px;
  1483. margin: 0 0 20px;
  1484. font-size: 17.5px;
  1485. border-left: 5px solid #eeeeee;
  1486. }
  1487. blockquote p:last-child,
  1488. blockquote ul:last-child,
  1489. blockquote ol:last-child {
  1490. margin-bottom: 0;
  1491. }
  1492. blockquote footer,
  1493. blockquote small,
  1494. blockquote .small {
  1495. display: block;
  1496. font-size: 80%;
  1497. line-height: 1.42857143;
  1498. color: #999999;
  1499. }
  1500. blockquote footer:before,
  1501. blockquote small:before,
  1502. blockquote .small:before {
  1503. content: '\2014 \00A0';
  1504. }
  1505. .blockquote-reverse,
  1506. blockquote.pull-right {
  1507. padding-right: 15px;
  1508. padding-left: 0;
  1509. border-right: 5px solid #eeeeee;
  1510. border-left: 0;
  1511. text-align: right;
  1512. }
  1513. .blockquote-reverse footer:before,
  1514. blockquote.pull-right footer:before,
  1515. .blockquote-reverse small:before,
  1516. blockquote.pull-right small:before,
  1517. .blockquote-reverse .small:before,
  1518. blockquote.pull-right .small:before {
  1519. content: '';
  1520. }
  1521. .blockquote-reverse footer:after,
  1522. blockquote.pull-right footer:after,
  1523. .blockquote-reverse small:after,
  1524. blockquote.pull-right small:after,
  1525. .blockquote-reverse .small:after,
  1526. blockquote.pull-right .small:after {
  1527. content: '\00A0 \2014';
  1528. }
  1529. address {
  1530. margin-bottom: 20px;
  1531. font-style: normal;
  1532. line-height: 1.42857143;
  1533. }
  1534. code,
  1535. kbd,
  1536. pre,
  1537. samp {
  1538. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1539. }
  1540. code {
  1541. padding: 2px 4px;
  1542. font-size: 90%;
  1543. color: #c7254e;
  1544. background-color: #f9f2f4;
  1545. border-radius: 4px;
  1546. }
  1547. kbd {
  1548. padding: 2px 4px;
  1549. font-size: 90%;
  1550. color: #ffffff;
  1551. background-color: #333333;
  1552. border-radius: 2px;
  1553. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1554. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1555. }
  1556. kbd kbd {
  1557. padding: 0;
  1558. font-size: 100%;
  1559. font-weight: bold;
  1560. -webkit-box-shadow: none;
  1561. box-shadow: none;
  1562. }
  1563. pre {
  1564. display: block;
  1565. padding: 9.5px;
  1566. margin: 0 0 10px;
  1567. font-size: 13px;
  1568. line-height: 1.42857143;
  1569. word-break: break-all;
  1570. word-wrap: break-word;
  1571. color: #333333;
  1572. background-color: #f5f5f5;
  1573. border: 1px solid #cccccc;
  1574. border-radius: 4px;
  1575. }
  1576. pre code {
  1577. padding: 0;
  1578. font-size: inherit;
  1579. color: inherit;
  1580. white-space: pre-wrap;
  1581. background-color: transparent;
  1582. border-radius: 0;
  1583. }
  1584. .pre-scrollable {
  1585. max-height: 340px;
  1586. overflow-y: scroll;
  1587. }
  1588. .container {
  1589. margin-right: auto;
  1590. margin-left: auto;
  1591. padding-left: 15px;
  1592. padding-right: 15px;
  1593. }
  1594. @media (min-width: 768px) {
  1595. .container {
  1596. width: 750px;
  1597. }
  1598. }
  1599. @media (min-width: 992px) {
  1600. .container {
  1601. width: 970px;
  1602. }
  1603. }
  1604. @media (min-width: 1200px) {
  1605. .container {
  1606. width: 1170px;
  1607. }
  1608. }
  1609. .container-fluid {
  1610. margin-right: auto;
  1611. margin-left: auto;
  1612. padding-left: 15px;
  1613. padding-right: 15px;
  1614. }
  1615. .row {
  1616. margin-left: -15px;
  1617. margin-right: -15px;
  1618. }
  1619. .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 {
  1620. position: relative;
  1621. min-height: 1px;
  1622. padding-left: 15px;
  1623. padding-right: 15px;
  1624. }
  1625. .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 {
  1626. float: left;
  1627. }
  1628. .col-xs-12 {
  1629. width: 100%;
  1630. }
  1631. .col-xs-11 {
  1632. width: 91.66666667%;
  1633. }
  1634. .col-xs-10 {
  1635. width: 83.33333333%;
  1636. }
  1637. .col-xs-9 {
  1638. width: 75%;
  1639. }
  1640. .col-xs-8 {
  1641. width: 66.66666667%;
  1642. }
  1643. .col-xs-7 {
  1644. width: 58.33333333%;
  1645. }
  1646. .col-xs-6 {
  1647. width: 50%;
  1648. }
  1649. .col-xs-5 {
  1650. width: 41.66666667%;
  1651. }
  1652. .col-xs-4 {
  1653. width: 33.33333333%;
  1654. }
  1655. .col-xs-3 {
  1656. width: 25%;
  1657. }
  1658. .col-xs-2 {
  1659. width: 16.66666667%;
  1660. }
  1661. .col-xs-1 {
  1662. width: 8.33333333%;
  1663. }
  1664. .col-xs-pull-12 {
  1665. right: 100%;
  1666. }
  1667. .col-xs-pull-11 {
  1668. right: 91.66666667%;
  1669. }
  1670. .col-xs-pull-10 {
  1671. right: 83.33333333%;
  1672. }
  1673. .col-xs-pull-9 {
  1674. right: 75%;
  1675. }
  1676. .col-xs-pull-8 {
  1677. right: 66.66666667%;
  1678. }
  1679. .col-xs-pull-7 {
  1680. right: 58.33333333%;
  1681. }
  1682. .col-xs-pull-6 {
  1683. right: 50%;
  1684. }
  1685. .col-xs-pull-5 {
  1686. right: 41.66666667%;
  1687. }
  1688. .col-xs-pull-4 {
  1689. right: 33.33333333%;
  1690. }
  1691. .col-xs-pull-3 {
  1692. right: 25%;
  1693. }
  1694. .col-xs-pull-2 {
  1695. right: 16.66666667%;
  1696. }
  1697. .col-xs-pull-1 {
  1698. right: 8.33333333%;
  1699. }
  1700. .col-xs-pull-0 {
  1701. right: auto;
  1702. }
  1703. .col-xs-push-12 {
  1704. left: 100%;
  1705. }
  1706. .col-xs-push-11 {
  1707. left: 91.66666667%;
  1708. }
  1709. .col-xs-push-10 {
  1710. left: 83.33333333%;
  1711. }
  1712. .col-xs-push-9 {
  1713. left: 75%;
  1714. }
  1715. .col-xs-push-8 {
  1716. left: 66.66666667%;
  1717. }
  1718. .col-xs-push-7 {
  1719. left: 58.33333333%;
  1720. }
  1721. .col-xs-push-6 {
  1722. left: 50%;
  1723. }
  1724. .col-xs-push-5 {
  1725. left: 41.66666667%;
  1726. }
  1727. .col-xs-push-4 {
  1728. left: 33.33333333%;
  1729. }
  1730. .col-xs-push-3 {
  1731. left: 25%;
  1732. }
  1733. .col-xs-push-2 {
  1734. left: 16.66666667%;
  1735. }
  1736. .col-xs-push-1 {
  1737. left: 8.33333333%;
  1738. }
  1739. .col-xs-push-0 {
  1740. left: auto;
  1741. }
  1742. .col-xs-offset-12 {
  1743. margin-left: 100%;
  1744. }
  1745. .col-xs-offset-11 {
  1746. margin-left: 91.66666667%;
  1747. }
  1748. .col-xs-offset-10 {
  1749. margin-left: 83.33333333%;
  1750. }
  1751. .col-xs-offset-9 {
  1752. margin-left: 75%;
  1753. }
  1754. .col-xs-offset-8 {
  1755. margin-left: 66.66666667%;
  1756. }
  1757. .col-xs-offset-7 {
  1758. margin-left: 58.33333333%;
  1759. }
  1760. .col-xs-offset-6 {
  1761. margin-left: 50%;
  1762. }
  1763. .col-xs-offset-5 {
  1764. margin-left: 41.66666667%;
  1765. }
  1766. .col-xs-offset-4 {
  1767. margin-left: 33.33333333%;
  1768. }
  1769. .col-xs-offset-3 {
  1770. margin-left: 25%;
  1771. }
  1772. .col-xs-offset-2 {
  1773. margin-left: 16.66666667%;
  1774. }
  1775. .col-xs-offset-1 {
  1776. margin-left: 8.33333333%;
  1777. }
  1778. .col-xs-offset-0 {
  1779. margin-left: 0%;
  1780. }
  1781. @media (min-width: 768px) {
  1782. .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 {
  1783. float: left;
  1784. }
  1785. .col-sm-12 {
  1786. width: 100%;
  1787. }
  1788. .col-sm-11 {
  1789. width: 91.66666667%;
  1790. }
  1791. .col-sm-10 {
  1792. width: 83.33333333%;
  1793. }
  1794. .col-sm-9 {
  1795. width: 75%;
  1796. }
  1797. .col-sm-8 {
  1798. width: 66.66666667%;
  1799. }
  1800. .col-sm-7 {
  1801. width: 58.33333333%;
  1802. }
  1803. .col-sm-6 {
  1804. width: 50%;
  1805. }
  1806. .col-sm-5 {
  1807. width: 41.66666667%;
  1808. }
  1809. .col-sm-4 {
  1810. width: 33.33333333%;
  1811. }
  1812. .col-sm-3 {
  1813. width: 25%;
  1814. }
  1815. .col-sm-2 {
  1816. width: 16.66666667%;
  1817. }
  1818. .col-sm-1 {
  1819. width: 8.33333333%;
  1820. }
  1821. .col-sm-pull-12 {
  1822. right: 100%;
  1823. }
  1824. .col-sm-pull-11 {
  1825. right: 91.66666667%;
  1826. }
  1827. .col-sm-pull-10 {
  1828. right: 83.33333333%;
  1829. }
  1830. .col-sm-pull-9 {
  1831. right: 75%;
  1832. }
  1833. .col-sm-pull-8 {
  1834. right: 66.66666667%;
  1835. }
  1836. .col-sm-pull-7 {
  1837. right: 58.33333333%;
  1838. }
  1839. .col-sm-pull-6 {
  1840. right: 50%;
  1841. }
  1842. .col-sm-pull-5 {
  1843. right: 41.66666667%;
  1844. }
  1845. .col-sm-pull-4 {
  1846. right: 33.33333333%;
  1847. }
  1848. .col-sm-pull-3 {
  1849. right: 25%;
  1850. }
  1851. .col-sm-pull-2 {
  1852. right: 16.66666667%;
  1853. }
  1854. .col-sm-pull-1 {
  1855. right: 8.33333333%;
  1856. }
  1857. .col-sm-pull-0 {
  1858. right: auto;
  1859. }
  1860. .col-sm-push-12 {
  1861. left: 100%;
  1862. }
  1863. .col-sm-push-11 {
  1864. left: 91.66666667%;
  1865. }
  1866. .col-sm-push-10 {
  1867. left: 83.33333333%;
  1868. }
  1869. .col-sm-push-9 {
  1870. left: 75%;
  1871. }
  1872. .col-sm-push-8 {
  1873. left: 66.66666667%;
  1874. }
  1875. .col-sm-push-7 {
  1876. left: 58.33333333%;
  1877. }
  1878. .col-sm-push-6 {
  1879. left: 50%;
  1880. }
  1881. .col-sm-push-5 {
  1882. left: 41.66666667%;
  1883. }
  1884. .col-sm-push-4 {
  1885. left: 33.33333333%;
  1886. }
  1887. .col-sm-push-3 {
  1888. left: 25%;
  1889. }
  1890. .col-sm-push-2 {
  1891. left: 16.66666667%;
  1892. }
  1893. .col-sm-push-1 {
  1894. left: 8.33333333%;
  1895. }
  1896. .col-sm-push-0 {
  1897. left: auto;
  1898. }
  1899. .col-sm-offset-12 {
  1900. margin-left: 100%;
  1901. }
  1902. .col-sm-offset-11 {
  1903. margin-left: 91.66666667%;
  1904. }
  1905. .col-sm-offset-10 {
  1906. margin-left: 83.33333333%;
  1907. }
  1908. .col-sm-offset-9 {
  1909. margin-left: 75%;
  1910. }
  1911. .col-sm-offset-8 {
  1912. margin-left: 66.66666667%;
  1913. }
  1914. .col-sm-offset-7 {
  1915. margin-left: 58.33333333%;
  1916. }
  1917. .col-sm-offset-6 {
  1918. margin-left: 50%;
  1919. }
  1920. .col-sm-offset-5 {
  1921. margin-left: 41.66666667%;
  1922. }
  1923. .col-sm-offset-4 {
  1924. margin-left: 33.33333333%;
  1925. }
  1926. .col-sm-offset-3 {
  1927. margin-left: 25%;
  1928. }
  1929. .col-sm-offset-2 {
  1930. margin-left: 16.66666667%;
  1931. }
  1932. .col-sm-offset-1 {
  1933. margin-left: 8.33333333%;
  1934. }
  1935. .col-sm-offset-0 {
  1936. margin-left: 0%;
  1937. }
  1938. }
  1939. @media (min-width: 992px) {
  1940. .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 {
  1941. float: left;
  1942. }
  1943. .col-md-12 {
  1944. width: 100%;
  1945. }
  1946. .col-md-11 {
  1947. width: 91.66666667%;
  1948. }
  1949. .col-md-10 {
  1950. width: 83.33333333%;
  1951. }
  1952. .col-md-9 {
  1953. width: 75%;
  1954. }
  1955. .col-md-8 {
  1956. width: 66.66666667%;
  1957. }
  1958. .col-md-7 {
  1959. width: 58.33333333%;
  1960. }
  1961. .col-md-6 {
  1962. width: 50%;
  1963. }
  1964. .col-md-5 {
  1965. width: 41.66666667%;
  1966. }
  1967. .col-md-4 {
  1968. width: 33.33333333%;
  1969. }
  1970. .col-md-3 {
  1971. width: 25%;
  1972. }
  1973. .col-md-2 {
  1974. width: 16.66666667%;
  1975. }
  1976. .col-md-1 {
  1977. width: 8.33333333%;
  1978. }
  1979. .col-md-pull-12 {
  1980. right: 100%;
  1981. }
  1982. .col-md-pull-11 {
  1983. right: 91.66666667%;
  1984. }
  1985. .col-md-pull-10 {
  1986. right: 83.33333333%;
  1987. }
  1988. .col-md-pull-9 {
  1989. right: 75%;
  1990. }
  1991. .col-md-pull-8 {
  1992. right: 66.66666667%;
  1993. }
  1994. .col-md-pull-7 {
  1995. right: 58.33333333%;
  1996. }
  1997. .col-md-pull-6 {
  1998. right: 50%;
  1999. }
  2000. .col-md-pull-5 {
  2001. right: 41.66666667%;
  2002. }
  2003. .col-md-pull-4 {
  2004. right: 33.33333333%;
  2005. }
  2006. .col-md-pull-3 {
  2007. right: 25%;
  2008. }
  2009. .col-md-pull-2 {
  2010. right: 16.66666667%;
  2011. }
  2012. .col-md-pull-1 {
  2013. right: 8.33333333%;
  2014. }
  2015. .col-md-pull-0 {
  2016. right: auto;
  2017. }
  2018. .col-md-push-12 {
  2019. left: 100%;
  2020. }
  2021. .col-md-push-11 {
  2022. left: 91.66666667%;
  2023. }
  2024. .col-md-push-10 {
  2025. left: 83.33333333%;
  2026. }
  2027. .col-md-push-9 {
  2028. left: 75%;
  2029. }
  2030. .col-md-push-8 {
  2031. left: 66.66666667%;
  2032. }
  2033. .col-md-push-7 {
  2034. left: 58.33333333%;
  2035. }
  2036. .col-md-push-6 {
  2037. left: 50%;
  2038. }
  2039. .col-md-push-5 {
  2040. left: 41.66666667%;
  2041. }
  2042. .col-md-push-4 {
  2043. left: 33.33333333%;
  2044. }
  2045. .col-md-push-3 {
  2046. left: 25%;
  2047. }
  2048. .col-md-push-2 {
  2049. left: 16.66666667%;
  2050. }
  2051. .col-md-push-1 {
  2052. left: 8.33333333%;
  2053. }
  2054. .col-md-push-0 {
  2055. left: auto;
  2056. }
  2057. .col-md-offset-12 {
  2058. margin-left: 100%;
  2059. }
  2060. .col-md-offset-11 {
  2061. margin-left: 91.66666667%;
  2062. }
  2063. .col-md-offset-10 {
  2064. margin-left: 83.33333333%;
  2065. }
  2066. .col-md-offset-9 {
  2067. margin-left: 75%;
  2068. }
  2069. .col-md-offset-8 {
  2070. margin-left: 66.66666667%;
  2071. }
  2072. .col-md-offset-7 {
  2073. margin-left: 58.33333333%;
  2074. }
  2075. .col-md-offset-6 {
  2076. margin-left: 50%;
  2077. }
  2078. .col-md-offset-5 {
  2079. margin-left: 41.66666667%;
  2080. }
  2081. .col-md-offset-4 {
  2082. margin-left: 33.33333333%;
  2083. }
  2084. .col-md-offset-3 {
  2085. margin-left: 25%;
  2086. }
  2087. .col-md-offset-2 {
  2088. margin-left: 16.66666667%;
  2089. }
  2090. .col-md-offset-1 {
  2091. margin-left: 8.33333333%;
  2092. }
  2093. .col-md-offset-0 {
  2094. margin-left: 0%;
  2095. }
  2096. }
  2097. @media (min-width: 1200px) {
  2098. .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 {
  2099. float: left;
  2100. }
  2101. .col-lg-12 {
  2102. width: 100%;
  2103. }
  2104. .col-lg-11 {
  2105. width: 91.66666667%;
  2106. }
  2107. .col-lg-10 {
  2108. width: 83.33333333%;
  2109. }
  2110. .col-lg-9 {
  2111. width: 75%;
  2112. }
  2113. .col-lg-8 {
  2114. width: 66.66666667%;
  2115. }
  2116. .col-lg-7 {
  2117. width: 58.33333333%;
  2118. }
  2119. .col-lg-6 {
  2120. width: 50%;
  2121. }
  2122. .col-lg-5 {
  2123. width: 41.66666667%;
  2124. }
  2125. .col-lg-4 {
  2126. width: 33.33333333%;
  2127. }
  2128. .col-lg-3 {
  2129. width: 25%;
  2130. }
  2131. .col-lg-2 {
  2132. width: 16.66666667%;
  2133. }
  2134. .col-lg-1 {
  2135. width: 8.33333333%;
  2136. }
  2137. .col-lg-pull-12 {
  2138. right: 100%;
  2139. }
  2140. .col-lg-pull-11 {
  2141. right: 91.66666667%;
  2142. }
  2143. .col-lg-pull-10 {
  2144. right: 83.33333333%;
  2145. }
  2146. .col-lg-pull-9 {
  2147. right: 75%;
  2148. }
  2149. .col-lg-pull-8 {
  2150. right: 66.66666667%;
  2151. }
  2152. .col-lg-pull-7 {
  2153. right: 58.33333333%;
  2154. }
  2155. .col-lg-pull-6 {
  2156. right: 50%;
  2157. }
  2158. .col-lg-pull-5 {
  2159. right: 41.66666667%;
  2160. }
  2161. .col-lg-pull-4 {
  2162. right: 33.33333333%;
  2163. }
  2164. .col-lg-pull-3 {
  2165. right: 25%;
  2166. }
  2167. .col-lg-pull-2 {
  2168. right: 16.66666667%;
  2169. }
  2170. .col-lg-pull-1 {
  2171. right: 8.33333333%;
  2172. }
  2173. .col-lg-pull-0 {
  2174. right: auto;
  2175. }
  2176. .col-lg-push-12 {
  2177. left: 100%;
  2178. }
  2179. .col-lg-push-11 {
  2180. left: 91.66666667%;
  2181. }
  2182. .col-lg-push-10 {
  2183. left: 83.33333333%;
  2184. }
  2185. .col-lg-push-9 {
  2186. left: 75%;
  2187. }
  2188. .col-lg-push-8 {
  2189. left: 66.66666667%;
  2190. }
  2191. .col-lg-push-7 {
  2192. left: 58.33333333%;
  2193. }
  2194. .col-lg-push-6 {
  2195. left: 50%;
  2196. }
  2197. .col-lg-push-5 {
  2198. left: 41.66666667%;
  2199. }
  2200. .col-lg-push-4 {
  2201. left: 33.33333333%;
  2202. }
  2203. .col-lg-push-3 {
  2204. left: 25%;
  2205. }
  2206. .col-lg-push-2 {
  2207. left: 16.66666667%;
  2208. }
  2209. .col-lg-push-1 {
  2210. left: 8.33333333%;
  2211. }
  2212. .col-lg-push-0 {
  2213. left: auto;
  2214. }
  2215. .col-lg-offset-12 {
  2216. margin-left: 100%;
  2217. }
  2218. .col-lg-offset-11 {
  2219. margin-left: 91.66666667%;
  2220. }
  2221. .col-lg-offset-10 {
  2222. margin-left: 83.33333333%;
  2223. }
  2224. .col-lg-offset-9 {
  2225. margin-left: 75%;
  2226. }
  2227. .col-lg-offset-8 {
  2228. margin-left: 66.66666667%;
  2229. }
  2230. .col-lg-offset-7 {
  2231. margin-left: 58.33333333%;
  2232. }
  2233. .col-lg-offset-6 {
  2234. margin-left: 50%;
  2235. }
  2236. .col-lg-offset-5 {
  2237. margin-left: 41.66666667%;
  2238. }
  2239. .col-lg-offset-4 {
  2240. margin-left: 33.33333333%;
  2241. }
  2242. .col-lg-offset-3 {
  2243. margin-left: 25%;
  2244. }
  2245. .col-lg-offset-2 {
  2246. margin-left: 16.66666667%;
  2247. }
  2248. .col-lg-offset-1 {
  2249. margin-left: 8.33333333%;
  2250. }
  2251. .col-lg-offset-0 {
  2252. margin-left: 0%;
  2253. }
  2254. }
  2255. table {
  2256. background-color: transparent;
  2257. }
  2258. caption {
  2259. padding-top: 8px;
  2260. padding-bottom: 8px;
  2261. color: #999999;
  2262. text-align: left;
  2263. }
  2264. th {
  2265. text-align: left;
  2266. }
  2267. .table {
  2268. width: 100%;
  2269. max-width: 100%;
  2270. margin-bottom: 20px;
  2271. }
  2272. .table > thead > tr > th,
  2273. .table > tbody > tr > th,
  2274. .table > tfoot > tr > th,
  2275. .table > thead > tr > td,
  2276. .table > tbody > tr > td,
  2277. .table > tfoot > tr > td {
  2278. padding: 8px;
  2279. line-height: 1.42857143;
  2280. vertical-align: top;
  2281. border-top: 1px solid #eeeeee;
  2282. }
  2283. .table > thead > tr > th {
  2284. vertical-align: bottom;
  2285. border-bottom: 2px solid #eeeeee;
  2286. }
  2287. .table > caption + thead > tr:first-child > th,
  2288. .table > colgroup + thead > tr:first-child > th,
  2289. .table > thead:first-child > tr:first-child > th,
  2290. .table > caption + thead > tr:first-child > td,
  2291. .table > colgroup + thead > tr:first-child > td,
  2292. .table > thead:first-child > tr:first-child > td {
  2293. border-top: 0;
  2294. }
  2295. .table > tbody + tbody {
  2296. border-top: 2px solid #eeeeee;
  2297. }
  2298. .table .table {
  2299. background-color: #ffffff;
  2300. }
  2301. .table-condensed > thead > tr > th,
  2302. .table-condensed > tbody > tr > th,
  2303. .table-condensed > tfoot > tr > th,
  2304. .table-condensed > thead > tr > td,
  2305. .table-condensed > tbody > tr > td,
  2306. .table-condensed > tfoot > tr > td {
  2307. padding: 5px;
  2308. }
  2309. .table-bordered {
  2310. border: 1px solid #eeeeee;
  2311. }
  2312. .table-bordered > thead > tr > th,
  2313. .table-bordered > tbody > tr > th,
  2314. .table-bordered > tfoot > tr > th,
  2315. .table-bordered > thead > tr > td,
  2316. .table-bordered > tbody > tr > td,
  2317. .table-bordered > tfoot > tr > td {
  2318. border: 1px solid #eeeeee;
  2319. }
  2320. .table-bordered > thead > tr > th,
  2321. .table-bordered > thead > tr > td {
  2322. border-bottom-width: 2px;
  2323. }
  2324. .table-striped > tbody > tr:nth-of-type(odd) {
  2325. background-color: #f9f9f9;
  2326. }
  2327. .table-hover > tbody > tr:hover {
  2328. background-color: #f5f5f5;
  2329. }
  2330. table col[class*="col-"] {
  2331. position: static;
  2332. float: none;
  2333. display: table-column;
  2334. }
  2335. table td[class*="col-"],
  2336. table th[class*="col-"] {
  2337. position: static;
  2338. float: none;
  2339. display: table-cell;
  2340. }
  2341. .table > thead > tr > td.active,
  2342. .table > tbody > tr > td.active,
  2343. .table > tfoot > tr > td.active,
  2344. .table > thead > tr > th.active,
  2345. .table > tbody > tr > th.active,
  2346. .table > tfoot > tr > th.active,
  2347. .table > thead > tr.active > td,
  2348. .table > tbody > tr.active > td,
  2349. .table > tfoot > tr.active > td,
  2350. .table > thead > tr.active > th,
  2351. .table > tbody > tr.active > th,
  2352. .table > tfoot > tr.active > th {
  2353. background-color: #f5f5f5;
  2354. }
  2355. .table-hover > tbody > tr > td.active:hover,
  2356. .table-hover > tbody > tr > th.active:hover,
  2357. .table-hover > tbody > tr.active:hover > td,
  2358. .table-hover > tbody > tr:hover > .active,
  2359. .table-hover > tbody > tr.active:hover > th {
  2360. background-color: #e8e8e8;
  2361. }
  2362. .table > thead > tr > td.success,
  2363. .table > tbody > tr > td.success,
  2364. .table > tfoot > tr > td.success,
  2365. .table > thead > tr > th.success,
  2366. .table > tbody > tr > th.success,
  2367. .table > tfoot > tr > th.success,
  2368. .table > thead > tr.success > td,
  2369. .table > tbody > tr.success > td,
  2370. .table > tfoot > tr.success > td,
  2371. .table > thead > tr.success > th,
  2372. .table > tbody > tr.success > th,
  2373. .table > tfoot > tr.success > th {
  2374. background-color: #28b62c;
  2375. }
  2376. .table-hover > tbody > tr > td.success:hover,
  2377. .table-hover > tbody > tr > th.success:hover,
  2378. .table-hover > tbody > tr.success:hover > td,
  2379. .table-hover > tbody > tr:hover > .success,
  2380. .table-hover > tbody > tr.success:hover > th {
  2381. background-color: #23a127;
  2382. }
  2383. .table > thead > tr > td.info,
  2384. .table > tbody > tr > td.info,
  2385. .table > tfoot > tr > td.info,
  2386. .table > thead > tr > th.info,
  2387. .table > tbody > tr > th.info,
  2388. .table > tfoot > tr > th.info,
  2389. .table > thead > tr.info > td,
  2390. .table > tbody > tr.info > td,
  2391. .table > tfoot > tr.info > td,
  2392. .table > thead > tr.info > th,
  2393. .table > tbody > tr.info > th,
  2394. .table > tfoot > tr.info > th {
  2395. background-color: #75caeb;
  2396. }
  2397. .table-hover > tbody > tr > td.info:hover,
  2398. .table-hover > tbody > tr > th.info:hover,
  2399. .table-hover > tbody > tr.info:hover > td,
  2400. .table-hover > tbody > tr:hover > .info,
  2401. .table-hover > tbody > tr.info:hover > th {
  2402. background-color: #5fc1e8;
  2403. }
  2404. .table > thead > tr > td.warning,
  2405. .table > tbody > tr > td.warning,
  2406. .table > tfoot > tr > td.warning,
  2407. .table > thead > tr > th.warning,
  2408. .table > tbody > tr > th.warning,
  2409. .table > tfoot > tr > th.warning,
  2410. .table > thead > tr.warning > td,
  2411. .table > tbody > tr.warning > td,
  2412. .table > tfoot > tr.warning > td,
  2413. .table > thead > tr.warning > th,
  2414. .table > tbody > tr.warning > th,
  2415. .table > tfoot > tr.warning > th {
  2416. background-color: #ff851b;
  2417. }
  2418. .table-hover > tbody > tr > td.warning:hover,
  2419. .table-hover > tbody > tr > th.warning:hover,
  2420. .table-hover > tbody > tr.warning:hover > td,
  2421. .table-hover > tbody > tr:hover > .warning,
  2422. .table-hover > tbody > tr.warning:hover > th {
  2423. background-color: #ff7701;
  2424. }
  2425. .table > thead > tr > td.danger,
  2426. .table > tbody > tr > td.danger,
  2427. .table > tfoot > tr > td.danger,
  2428. .table > thead > tr > th.danger,
  2429. .table > tbody > tr > th.danger,
  2430. .table > tfoot > tr > th.danger,
  2431. .table > thead > tr.danger > td,
  2432. .table > tbody > tr.danger > td,
  2433. .table > tfoot > tr.danger > td,
  2434. .table > thead > tr.danger > th,
  2435. .table > tbody > tr.danger > th,
  2436. .table > tfoot > tr.danger > th {
  2437. background-color: #ff4136;
  2438. }
  2439. .table-hover > tbody > tr > td.danger:hover,
  2440. .table-hover > tbody > tr > th.danger:hover,
  2441. .table-hover > tbody > tr.danger:hover > td,
  2442. .table-hover > tbody > tr:hover > .danger,
  2443. .table-hover > tbody > tr.danger:hover > th {
  2444. background-color: #ff291c;
  2445. }
  2446. .table-responsive {
  2447. overflow-x: auto;
  2448. min-height: 0.01%;
  2449. }
  2450. @media screen and (max-width: 767px) {
  2451. .table-responsive {
  2452. width: 100%;
  2453. margin-bottom: 15px;
  2454. overflow-y: hidden;
  2455. -ms-overflow-style: -ms-autohiding-scrollbar;
  2456. border: 1px solid #eeeeee;
  2457. }
  2458. .table-responsive > .table {
  2459. margin-bottom: 0;
  2460. }
  2461. .table-responsive > .table > thead > tr > th,
  2462. .table-responsive > .table > tbody > tr > th,
  2463. .table-responsive > .table > tfoot > tr > th,
  2464. .table-responsive > .table > thead > tr > td,
  2465. .table-responsive > .table > tbody > tr > td,
  2466. .table-responsive > .table > tfoot > tr > td {
  2467. white-space: nowrap;
  2468. }
  2469. .table-responsive > .table-bordered {
  2470. border: 0;
  2471. }
  2472. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2473. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2474. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2475. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2476. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2477. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2478. border-left: 0;
  2479. }
  2480. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2481. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2482. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2483. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2484. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2485. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2486. border-right: 0;
  2487. }
  2488. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2489. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2490. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2491. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2492. border-bottom: 0;
  2493. }
  2494. }
  2495. fieldset {
  2496. padding: 0;
  2497. margin: 0;
  2498. border: 0;
  2499. min-width: 0;
  2500. }
  2501. legend {
  2502. display: block;
  2503. width: 100%;
  2504. padding: 0;
  2505. margin-bottom: 20px;
  2506. font-size: 21px;
  2507. line-height: inherit;
  2508. color: #333333;
  2509. border: 0;
  2510. border-bottom: 1px solid #e5e5e5;
  2511. }
  2512. label {
  2513. display: inline-block;
  2514. max-width: 100%;
  2515. margin-bottom: 5px;
  2516. font-weight: bold;
  2517. }
  2518. input[type="search"] {
  2519. -webkit-box-sizing: border-box;
  2520. -moz-box-sizing: border-box;
  2521. box-sizing: border-box;
  2522. }
  2523. input[type="radio"],
  2524. input[type="checkbox"] {
  2525. margin: 4px 0 0;
  2526. margin-top: 1px \9;
  2527. line-height: normal;
  2528. }
  2529. input[type="file"] {
  2530. display: block;
  2531. }
  2532. input[type="range"] {
  2533. display: block;
  2534. width: 100%;
  2535. }
  2536. select[multiple],
  2537. select[size] {
  2538. height: auto;
  2539. }
  2540. input[type="file"]:focus,
  2541. input[type="radio"]:focus,
  2542. input[type="checkbox"]:focus {
  2543. outline: 5px auto -webkit-focus-ring-color;
  2544. outline-offset: -2px;
  2545. }
  2546. output {
  2547. display: block;
  2548. padding-top: 8px;
  2549. font-size: 14px;
  2550. line-height: 1.42857143;
  2551. color: #555555;
  2552. }
  2553. .form-control {
  2554. display: block;
  2555. width: 100%;
  2556. height: 38px;
  2557. padding: 7px 12px;
  2558. font-size: 14px;
  2559. line-height: 1.42857143;
  2560. color: #555555;
  2561. background-color: #ffffff;
  2562. background-image: none;
  2563. border: 1px solid #e7e7e7;
  2564. border-radius: 4px;
  2565. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2566. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2567. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  2568. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2569. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2570. }
  2571. .form-control:focus {
  2572. border-color: #66afe9;
  2573. outline: 0;
  2574. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2575. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2576. }
  2577. .form-control::-moz-placeholder {
  2578. color: #999999;
  2579. opacity: 1;
  2580. }
  2581. .form-control:-ms-input-placeholder {
  2582. color: #999999;
  2583. }
  2584. .form-control::-webkit-input-placeholder {
  2585. color: #999999;
  2586. }
  2587. .form-control::-ms-expand {
  2588. border: 0;
  2589. background-color: transparent;
  2590. }
  2591. .form-control[disabled],
  2592. .form-control[readonly],
  2593. fieldset[disabled] .form-control {
  2594. background-color: #eeeeee;
  2595. opacity: 1;
  2596. }
  2597. .form-control[disabled],
  2598. fieldset[disabled] .form-control {
  2599. cursor: not-allowed;
  2600. }
  2601. textarea.form-control {
  2602. height: auto;
  2603. }
  2604. input[type="search"] {
  2605. -webkit-appearance: none;
  2606. }
  2607. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2608. input[type="date"].form-control,
  2609. input[type="time"].form-control,
  2610. input[type="datetime-local"].form-control,
  2611. input[type="month"].form-control {
  2612. line-height: 38px;
  2613. }
  2614. input[type="date"].input-sm,
  2615. input[type="time"].input-sm,
  2616. input[type="datetime-local"].input-sm,
  2617. input[type="month"].input-sm,
  2618. .input-group-sm input[type="date"],
  2619. .input-group-sm input[type="time"],
  2620. .input-group-sm input[type="datetime-local"],
  2621. .input-group-sm input[type="month"] {
  2622. line-height: 28px;
  2623. }
  2624. input[type="date"].input-lg,
  2625. input[type="time"].input-lg,
  2626. input[type="datetime-local"].input-lg,
  2627. input[type="month"].input-lg,
  2628. .input-group-lg input[type="date"],
  2629. .input-group-lg input[type="time"],
  2630. .input-group-lg input[type="datetime-local"],
  2631. .input-group-lg input[type="month"] {
  2632. line-height: 52px;
  2633. }
  2634. }
  2635. .form-group {
  2636. margin-bottom: 15px;
  2637. padding-bottom: 6px;
  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: 8px;
  2703. padding-bottom: 8px;
  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: 28px;
  2714. padding: 4px 10px;
  2715. font-size: 12px;
  2716. line-height: 1.5;
  2717. border-radius: 2px;
  2718. }
  2719. select.input-sm {
  2720. height: 28px;
  2721. line-height: 28px;
  2722. }
  2723. textarea.input-sm,
  2724. select[multiple].input-sm {
  2725. height: auto;
  2726. }
  2727. .form-group-sm .form-control {
  2728. height: 28px;
  2729. padding: 4px 10px;
  2730. font-size: 12px;
  2731. line-height: 1.5;
  2732. border-radius: 2px;
  2733. }
  2734. .form-group-sm select.form-control {
  2735. height: 28px;
  2736. line-height: 28px;
  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: 28px;
  2744. min-height: 32px;
  2745. padding: 5px 10px;
  2746. font-size: 12px;
  2747. line-height: 1.5;
  2748. }
  2749. .input-lg {
  2750. height: 52px;
  2751. padding: 13px 16px;
  2752. font-size: 18px;
  2753. line-height: 1.3333333;
  2754. border-radius: 5px;
  2755. }
  2756. select.input-lg {
  2757. height: 52px;
  2758. line-height: 52px;
  2759. }
  2760. textarea.input-lg,
  2761. select[multiple].input-lg {
  2762. height: auto;
  2763. }
  2764. .form-group-lg .form-control {
  2765. height: 52px;
  2766. padding: 13px 16px;
  2767. font-size: 18px;
  2768. line-height: 1.3333333;
  2769. border-radius: 5px;
  2770. }
  2771. .form-group-lg select.form-control {
  2772. height: 52px;
  2773. line-height: 52px;
  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: 52px;
  2781. min-height: 38px;
  2782. padding: 14px 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: 47.5px;
  2791. }
  2792. .form-control-feedback {
  2793. position: absolute;
  2794. top: 0;
  2795. right: 0;
  2796. z-index: 2;
  2797. display: block;
  2798. width: 38px;
  2799. height: 38px;
  2800. line-height: 38px;
  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: 52px;
  2808. height: 52px;
  2809. line-height: 52px;
  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: 28px;
  2815. height: 28px;
  2816. line-height: 28px;
  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: #ffffff;
  2829. }
  2830. .has-success .form-control {
  2831. border-color: #ffffff;
  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: #e6e6e6;
  2837. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  2838. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  2839. }
  2840. .has-success .input-group-addon {
  2841. color: #ffffff;
  2842. border-color: #ffffff;
  2843. background-color: #28b62c;
  2844. }
  2845. .has-success .form-control-feedback {
  2846. color: #ffffff;
  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: #ffffff;
  2859. }
  2860. .has-warning .form-control {
  2861. border-color: #ffffff;
  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: #e6e6e6;
  2867. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  2868. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  2869. }
  2870. .has-warning .input-group-addon {
  2871. color: #ffffff;
  2872. border-color: #ffffff;
  2873. background-color: #ff851b;
  2874. }
  2875. .has-warning .form-control-feedback {
  2876. color: #ffffff;
  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: #ffffff;
  2889. }
  2890. .has-error .form-control {
  2891. border-color: #ffffff;
  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: #e6e6e6;
  2897. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  2898. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
  2899. }
  2900. .has-error .input-group-addon {
  2901. color: #ffffff;
  2902. border-color: #ffffff;
  2903. background-color: #ff4136;
  2904. }
  2905. .has-error .form-control-feedback {
  2906. color: #ffffff;
  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: #959595;
  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: 8px;
  2977. }
  2978. .form-horizontal .radio,
  2979. .form-horizontal .checkbox {
  2980. min-height: 28px;
  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: 8px;
  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: 14px;
  2999. font-size: 18px;
  3000. }
  3001. }
  3002. @media (min-width: 768px) {
  3003. .form-horizontal .form-group-sm .control-label {
  3004. padding-top: 5px;
  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: 7px 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: #555555;
  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: #555555;
  3066. background-color: #eeeeee;
  3067. border-color: #e2e2e2;
  3068. }
  3069. .btn-default:focus,
  3070. .btn-default.focus {
  3071. color: #555555;
  3072. background-color: #d5d5d5;
  3073. border-color: #a2a2a2;
  3074. }
  3075. .btn-default:hover {
  3076. color: #555555;
  3077. background-color: #d5d5d5;
  3078. border-color: #c3c3c3;
  3079. }
  3080. .btn-default:active,
  3081. .btn-default.active,
  3082. .open > .dropdown-toggle.btn-default {
  3083. color: #555555;
  3084. background-color: #d5d5d5;
  3085. border-color: #c3c3c3;
  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: #555555;
  3097. background-color: #c3c3c3;
  3098. border-color: #a2a2a2;
  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: #eeeeee;
  3115. border-color: #e2e2e2;
  3116. }
  3117. .btn-default .badge {
  3118. color: #eeeeee;
  3119. background-color: #555555;
  3120. }
  3121. .btn-primary {
  3122. color: #ffffff;
  3123. background-color: #158cba;
  3124. border-color: #127ba3;
  3125. }
  3126. .btn-primary:focus,
  3127. .btn-primary.focus {
  3128. color: #ffffff;
  3129. background-color: #106a8c;
  3130. border-color: #052531;
  3131. }
  3132. .btn-primary:hover {
  3133. color: #ffffff;
  3134. background-color: #106a8c;
  3135. border-color: #0c516c;
  3136. }
  3137. .btn-primary:active,
  3138. .btn-primary.active,
  3139. .open > .dropdown-toggle.btn-primary {
  3140. color: #ffffff;
  3141. background-color: #106a8c;
  3142. border-color: #0c516c;
  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: #0c516c;
  3155. border-color: #052531;
  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: #158cba;
  3172. border-color: #127ba3;
  3173. }
  3174. .btn-primary .badge {
  3175. color: #158cba;
  3176. background-color: #ffffff;
  3177. }
  3178. .btn-success {
  3179. color: #ffffff;
  3180. background-color: #28b62c;
  3181. border-color: #23a127;
  3182. }
  3183. .btn-success:focus,
  3184. .btn-success.focus {
  3185. color: #ffffff;
  3186. background-color: #1f8c22;
  3187. border-color: #0c390e;
  3188. }
  3189. .btn-success:hover {
  3190. color: #ffffff;
  3191. background-color: #1f8c22;
  3192. border-color: #186f1b;
  3193. }
  3194. .btn-success:active,
  3195. .btn-success.active,
  3196. .open > .dropdown-toggle.btn-success {
  3197. color: #ffffff;
  3198. background-color: #1f8c22;
  3199. border-color: #186f1b;
  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: #186f1b;
  3212. border-color: #0c390e;
  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: #28b62c;
  3229. border-color: #23a127;
  3230. }
  3231. .btn-success .badge {
  3232. color: #28b62c;
  3233. background-color: #ffffff;
  3234. }
  3235. .btn-info {
  3236. color: #ffffff;
  3237. background-color: #75caeb;
  3238. border-color: #5fc1e8;
  3239. }
  3240. .btn-info:focus,
  3241. .btn-info.focus {
  3242. color: #ffffff;
  3243. background-color: #48b9e5;
  3244. border-color: #1984ae;
  3245. }
  3246. .btn-info:hover {
  3247. color: #ffffff;
  3248. background-color: #48b9e5;
  3249. border-color: #29ade0;
  3250. }
  3251. .btn-info:active,
  3252. .btn-info.active,
  3253. .open > .dropdown-toggle.btn-info {
  3254. color: #ffffff;
  3255. background-color: #48b9e5;
  3256. border-color: #29ade0;
  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: #29ade0;
  3269. border-color: #1984ae;
  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: #75caeb;
  3286. border-color: #5fc1e8;
  3287. }
  3288. .btn-info .badge {
  3289. color: #75caeb;
  3290. background-color: #ffffff;
  3291. }
  3292. .btn-warning {
  3293. color: #ffffff;
  3294. background-color: #ff851b;
  3295. border-color: #ff7701;
  3296. }
  3297. .btn-warning:focus,
  3298. .btn-warning.focus {
  3299. color: #ffffff;
  3300. background-color: #e76b00;
  3301. border-color: #813c00;
  3302. }
  3303. .btn-warning:hover {
  3304. color: #ffffff;
  3305. background-color: #e76b00;
  3306. border-color: #c35b00;
  3307. }
  3308. .btn-warning:active,
  3309. .btn-warning.active,
  3310. .open > .dropdown-toggle.btn-warning {
  3311. color: #ffffff;
  3312. background-color: #e76b00;
  3313. border-color: #c35b00;
  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: #c35b00;
  3326. border-color: #813c00;
  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: #ff851b;
  3343. border-color: #ff7701;
  3344. }
  3345. .btn-warning .badge {
  3346. color: #ff851b;
  3347. background-color: #ffffff;
  3348. }
  3349. .btn-danger {
  3350. color: #ffffff;
  3351. background-color: #ff4136;
  3352. border-color: #ff291c;
  3353. }
  3354. .btn-danger:focus,
  3355. .btn-danger.focus {
  3356. color: #ffffff;
  3357. background-color: #ff1103;
  3358. border-color: #9c0900;
  3359. }
  3360. .btn-danger:hover {
  3361. color: #ffffff;
  3362. background-color: #ff1103;
  3363. border-color: #de0c00;
  3364. }
  3365. .btn-danger:active,
  3366. .btn-danger.active,
  3367. .open > .dropdown-toggle.btn-danger {
  3368. color: #ffffff;
  3369. background-color: #ff1103;
  3370. border-color: #de0c00;
  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: #de0c00;
  3383. border-color: #9c0900;
  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: #ff4136;
  3400. border-color: #ff291c;
  3401. }
  3402. .btn-danger .badge {
  3403. color: #ff4136;
  3404. background-color: #ffffff;
  3405. }
  3406. .btn-link {
  3407. color: #158cba;
  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: #158cba;
  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: #999999;
  3437. text-decoration: none;
  3438. }
  3439. .btn-lg,
  3440. .btn-group-lg > .btn {
  3441. padding: 13px 16px;
  3442. font-size: 18px;
  3443. line-height: 1.3333333;
  3444. border-radius: 5px;
  3445. }
  3446. .btn-sm,
  3447. .btn-group-sm > .btn {
  3448. padding: 4px 10px;
  3449. font-size: 12px;
  3450. line-height: 1.5;
  3451. border-radius: 2px;
  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: 2px;
  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 #e7e7e7;
  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: #eeeeee;
  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: #999999;
  3564. white-space: nowrap;
  3565. }
  3566. .dropdown-menu > li > a:hover,
  3567. .dropdown-menu > li > a:focus {
  3568. text-decoration: none;
  3569. color: #333333;
  3570. background-color: transparent;
  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: #158cba;
  3579. }
  3580. .dropdown-menu > .disabled > a,
  3581. .dropdown-menu > .disabled > a:hover,
  3582. .dropdown-menu > .disabled > a:focus {
  3583. color: #eeeeee;
  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: #999999;
  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: 52px;
  3845. padding: 13px 16px;
  3846. font-size: 18px;
  3847. line-height: 1.3333333;
  3848. border-radius: 5px;
  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: 52px;
  3854. line-height: 52px;
  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: 28px;
  3868. padding: 4px 10px;
  3869. font-size: 12px;
  3870. line-height: 1.5;
  3871. border-radius: 2px;
  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: 28px;
  3877. line-height: 28px;
  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: 7px 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 #e7e7e7;
  3912. border-radius: 4px;
  3913. }
  3914. .input-group-addon.input-sm {
  3915. padding: 4px 10px;
  3916. font-size: 12px;
  3917. border-radius: 2px;
  3918. }
  3919. .input-group-addon.input-lg {
  3920. padding: 13px 16px;
  3921. font-size: 18px;
  3922. border-radius: 5px;
  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: #ffffff;
  3997. }
  3998. .nav > li.disabled > a {
  3999. color: #999999;
  4000. }
  4001. .nav > li.disabled > a:hover,
  4002. .nav > li.disabled > a:focus {
  4003. color: #999999;
  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: #ffffff;
  4012. border-color: #158cba;
  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 #e7e7e7;
  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 #e7e7e7;
  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 #e7e7e7;
  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 #e7e7e7;
  4080. }
  4081. @media (min-width: 768px) {
  4082. .nav-tabs.nav-justified > li > a {
  4083. border-bottom: 1px solid #e7e7e7;
  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: #158cba;
  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 #e7e7e7;
  4148. }
  4149. @media (min-width: 768px) {
  4150. .nav-tabs-justified > li > a {
  4151. border-bottom: 1px solid #e7e7e7;
  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: 6px;
  4381. margin-bottom: 6px;
  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: 6px;
  4467. margin-bottom: 6px;
  4468. }
  4469. .navbar-btn.btn-sm {
  4470. margin-top: 11px;
  4471. margin-bottom: 11px;
  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: #333333;
  4506. }
  4507. .navbar-default .navbar-brand:hover,
  4508. .navbar-default .navbar-brand:focus {
  4509. color: #333333;
  4510. background-color: transparent;
  4511. }
  4512. .navbar-default .navbar-text {
  4513. color: #555555;
  4514. }
  4515. .navbar-default .navbar-nav > li > a {
  4516. color: #999999;
  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: #333333;
  4527. background-color: transparent;
  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: #eeeeee;
  4533. background-color: transparent;
  4534. }
  4535. .navbar-default .navbar-toggle {
  4536. border-color: #eeeeee;
  4537. }
  4538. .navbar-default .navbar-toggle:hover,
  4539. .navbar-default .navbar-toggle:focus {
  4540. background-color: #ffffff;
  4541. }
  4542. .navbar-default .navbar-toggle .icon-bar {
  4543. background-color: #999999;
  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: transparent;
  4553. color: #333333;
  4554. }
  4555. @media (max-width: 767px) {
  4556. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4557. color: #999999;
  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: #333333;
  4568. background-color: transparent;
  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: #eeeeee;
  4574. background-color: transparent;
  4575. }
  4576. }
  4577. .navbar-default .navbar-link {
  4578. color: #999999;
  4579. }
  4580. .navbar-default .navbar-link:hover {
  4581. color: #333333;
  4582. }
  4583. .navbar-default .btn-link {
  4584. color: #999999;
  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: #eeeeee;
  4595. }
  4596. .navbar-inverse {
  4597. background-color: #ffffff;
  4598. border-color: #e6e6e6;
  4599. }
  4600. .navbar-inverse .navbar-brand {
  4601. color: #999999;
  4602. }
  4603. .navbar-inverse .navbar-brand:hover,
  4604. .navbar-inverse .navbar-brand:focus {
  4605. color: #333333;
  4606. background-color: transparent;
  4607. }
  4608. .navbar-inverse .navbar-text {
  4609. color: #999999;
  4610. }
  4611. .navbar-inverse .navbar-nav > li > a {
  4612. color: #999999;
  4613. }
  4614. .navbar-inverse .navbar-nav > li > a:hover,
  4615. .navbar-inverse .navbar-nav > li > a:focus {
  4616. color: #333333;
  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: #333333;
  4623. background-color: transparent;
  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: #eeeeee;
  4629. background-color: transparent;
  4630. }
  4631. .navbar-inverse .navbar-toggle {
  4632. border-color: #eeeeee;
  4633. }
  4634. .navbar-inverse .navbar-toggle:hover,
  4635. .navbar-inverse .navbar-toggle:focus {
  4636. background-color: #eeeeee;
  4637. }
  4638. .navbar-inverse .navbar-toggle .icon-bar {
  4639. background-color: #999999;
  4640. }
  4641. .navbar-inverse .navbar-collapse,
  4642. .navbar-inverse .navbar-form {
  4643. border-color: #ededed;
  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: transparent;
  4649. color: #333333;
  4650. }
  4651. @media (max-width: 767px) {
  4652. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4653. border-color: #e6e6e6;
  4654. }
  4655. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4656. background-color: #e6e6e6;
  4657. }
  4658. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4659. color: #999999;
  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: #333333;
  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: #333333;
  4670. background-color: transparent;
  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: #eeeeee;
  4676. background-color: transparent;
  4677. }
  4678. }
  4679. .navbar-inverse .navbar-link {
  4680. color: #999999;
  4681. }
  4682. .navbar-inverse .navbar-link:hover {
  4683. color: #333333;
  4684. }
  4685. .navbar-inverse .btn-link {
  4686. color: #999999;
  4687. }
  4688. .navbar-inverse .btn-link:hover,
  4689. .navbar-inverse .btn-link:focus {
  4690. color: #333333;
  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: #eeeeee;
  4697. }
  4698. .breadcrumb {
  4699. padding: 8px 15px;
  4700. margin-bottom: 20px;
  4701. list-style: none;
  4702. background-color: #fafafa;
  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: #999999;
  4712. }
  4713. .breadcrumb > .active {
  4714. color: #999999;
  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: 7px 12px;
  4730. line-height: 1.42857143;
  4731. text-decoration: none;
  4732. color: #555555;
  4733. background-color: #eeeeee;
  4734. border: 1px solid #e2e2e2;
  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: #555555;
  4754. background-color: #eeeeee;
  4755. border-color: #e2e2e2;
  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: #158cba;
  4766. border-color: #127ba3;
  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: #999999;
  4776. background-color: #eeeeee;
  4777. border-color: #e2e2e2;
  4778. cursor: not-allowed;
  4779. }
  4780. .pagination-lg > li > a,
  4781. .pagination-lg > li > span {
  4782. padding: 13px 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: 5px;
  4789. border-top-left-radius: 5px;
  4790. }
  4791. .pagination-lg > li:last-child > a,
  4792. .pagination-lg > li:last-child > span {
  4793. border-bottom-right-radius: 5px;
  4794. border-top-right-radius: 5px;
  4795. }
  4796. .pagination-sm > li > a,
  4797. .pagination-sm > li > span {
  4798. padding: 4px 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: 2px;
  4805. border-top-left-radius: 2px;
  4806. }
  4807. .pagination-sm > li:last-child > a,
  4808. .pagination-sm > li:last-child > span {
  4809. border-bottom-right-radius: 2px;
  4810. border-top-right-radius: 2px;
  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: #eeeeee;
  4826. border: 1px solid #e2e2e2;
  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: #999999;
  4847. background-color: #eeeeee;
  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: #999999;
  4877. }
  4878. .label-default[href]:hover,
  4879. .label-default[href]:focus {
  4880. background-color: #808080;
  4881. }
  4882. .label-primary {
  4883. background-color: #158cba;
  4884. }
  4885. .label-primary[href]:hover,
  4886. .label-primary[href]:focus {
  4887. background-color: #106a8c;
  4888. }
  4889. .label-success {
  4890. background-color: #28b62c;
  4891. }
  4892. .label-success[href]:hover,
  4893. .label-success[href]:focus {
  4894. background-color: #1f8c22;
  4895. }
  4896. .label-info {
  4897. background-color: #75caeb;
  4898. }
  4899. .label-info[href]:hover,
  4900. .label-info[href]:focus {
  4901. background-color: #48b9e5;
  4902. }
  4903. .label-warning {
  4904. background-color: #ff851b;
  4905. }
  4906. .label-warning[href]:hover,
  4907. .label-warning[href]:focus {
  4908. background-color: #e76b00;
  4909. }
  4910. .label-danger {
  4911. background-color: #ff4136;
  4912. }
  4913. .label-danger[href]:hover,
  4914. .label-danger[href]:focus {
  4915. background-color: #ff1103;
  4916. }
  4917. .badge {
  4918. display: inline-block;
  4919. min-width: 10px;
  4920. padding: 3px 7px;
  4921. font-size: 12px;
  4922. font-weight: normal;
  4923. color: #ffffff;
  4924. line-height: 1;
  4925. vertical-align: middle;
  4926. white-space: nowrap;
  4927. text-align: center;
  4928. background-color: #158cba;
  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: #158cba;
  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: #fafafa;
  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: #e1e1e1;
  4981. }
  4982. .container .jumbotron,
  4983. .container-fluid .jumbotron {
  4984. border-radius: 5px;
  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 #eeeeee;
  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: #158cba;
  5027. }
  5028. .thumbnail .caption {
  5029. padding: 9px;
  5030. color: #555555;
  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: #28b62c;
  5065. border-color: #24a528;
  5066. color: #ffffff;
  5067. }
  5068. .alert-success hr {
  5069. border-top-color: #209023;
  5070. }
  5071. .alert-success .alert-link {
  5072. color: #e6e6e6;
  5073. }
  5074. .alert-info {
  5075. background-color: #75caeb;
  5076. border-color: #40b5e3;
  5077. color: #ffffff;
  5078. }
  5079. .alert-info hr {
  5080. border-top-color: #29ade0;
  5081. }
  5082. .alert-info .alert-link {
  5083. color: #e6e6e6;
  5084. }
  5085. .alert-warning {
  5086. background-color: #ff851b;
  5087. border-color: #ff7701;
  5088. color: #ffffff;
  5089. }
  5090. .alert-warning hr {
  5091. border-top-color: #e76b00;
  5092. }
  5093. .alert-warning .alert-link {
  5094. color: #e6e6e6;
  5095. }
  5096. .alert-danger {
  5097. background-color: #ff4136;
  5098. border-color: #ff1103;
  5099. color: #ffffff;
  5100. }
  5101. .alert-danger hr {
  5102. border-top-color: #e90d00;
  5103. }
  5104. .alert-danger .alert-link {
  5105. color: #e6e6e6;
  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: #fafafa;
  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: #63b332;
  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: #28b62c;
  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: #75caeb;
  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: #ff851b;
  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: #ff4136;
  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 #eeeeee;
  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: #999999;
  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: #999999;
  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: #158cba;
  5313. border-color: #158cba;
  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: #a6dff5;
  5330. }
  5331. .list-group-item-success {
  5332. color: #ffffff;
  5333. background-color: #28b62c;
  5334. }
  5335. a.list-group-item-success,
  5336. button.list-group-item-success {
  5337. color: #ffffff;
  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: #ffffff;
  5348. background-color: #23a127;
  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: #ffffff;
  5358. border-color: #ffffff;
  5359. }
  5360. .list-group-item-info {
  5361. color: #ffffff;
  5362. background-color: #75caeb;
  5363. }
  5364. a.list-group-item-info,
  5365. button.list-group-item-info {
  5366. color: #ffffff;
  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: #ffffff;
  5377. background-color: #5fc1e8;
  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: #ffffff;
  5387. border-color: #ffffff;
  5388. }
  5389. .list-group-item-warning {
  5390. color: #ffffff;
  5391. background-color: #ff851b;
  5392. }
  5393. a.list-group-item-warning,
  5394. button.list-group-item-warning {
  5395. color: #ffffff;
  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: #ffffff;
  5406. background-color: #ff7701;
  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: #ffffff;
  5416. border-color: #ffffff;
  5417. }
  5418. .list-group-item-danger {
  5419. color: #ffffff;
  5420. background-color: #ff4136;
  5421. }
  5422. a.list-group-item-danger,
  5423. button.list-group-item-danger {
  5424. color: #ffffff;
  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: #ffffff;
  5435. background-color: #ff291c;
  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: #ffffff;
  5445. border-color: #ffffff;
  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 transparent;
  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 #eeeeee;
  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 transparent;
  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 transparent;
  5689. }
  5690. .panel-default {
  5691. border-color: transparent;
  5692. }
  5693. .panel-default > .panel-heading {
  5694. color: #333333;
  5695. background-color: #f5f5f5;
  5696. border-color: transparent;
  5697. }
  5698. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5699. border-top-color: transparent;
  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: transparent;
  5707. }
  5708. .panel-primary {
  5709. border-color: transparent;
  5710. }
  5711. .panel-primary > .panel-heading {
  5712. color: #ffffff;
  5713. background-color: #158cba;
  5714. border-color: transparent;
  5715. }
  5716. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5717. border-top-color: transparent;
  5718. }
  5719. .panel-primary > .panel-heading .badge {
  5720. color: #158cba;
  5721. background-color: #ffffff;
  5722. }
  5723. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5724. border-bottom-color: transparent;
  5725. }
  5726. .panel-success {
  5727. border-color: transparent;
  5728. }
  5729. .panel-success > .panel-heading {
  5730. color: #ffffff;
  5731. background-color: #28b62c;
  5732. border-color: transparent;
  5733. }
  5734. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5735. border-top-color: transparent;
  5736. }
  5737. .panel-success > .panel-heading .badge {
  5738. color: #28b62c;
  5739. background-color: #ffffff;
  5740. }
  5741. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5742. border-bottom-color: transparent;
  5743. }
  5744. .panel-info {
  5745. border-color: transparent;
  5746. }
  5747. .panel-info > .panel-heading {
  5748. color: #ffffff;
  5749. background-color: #75caeb;
  5750. border-color: transparent;
  5751. }
  5752. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5753. border-top-color: transparent;
  5754. }
  5755. .panel-info > .panel-heading .badge {
  5756. color: #75caeb;
  5757. background-color: #ffffff;
  5758. }
  5759. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5760. border-bottom-color: transparent;
  5761. }
  5762. .panel-warning {
  5763. border-color: transparent;
  5764. }
  5765. .panel-warning > .panel-heading {
  5766. color: #ffffff;
  5767. background-color: #ff851b;
  5768. border-color: transparent;
  5769. }
  5770. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5771. border-top-color: transparent;
  5772. }
  5773. .panel-warning > .panel-heading .badge {
  5774. color: #ff851b;
  5775. background-color: #ffffff;
  5776. }
  5777. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5778. border-bottom-color: transparent;
  5779. }
  5780. .panel-danger {
  5781. border-color: transparent;
  5782. }
  5783. .panel-danger > .panel-heading {
  5784. color: #ffffff;
  5785. background-color: #ff4136;
  5786. border-color: transparent;
  5787. }
  5788. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5789. border-top-color: transparent;
  5790. }
  5791. .panel-danger > .panel-heading .badge {
  5792. color: #ff4136;
  5793. background-color: #ffffff;
  5794. }
  5795. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5796. border-bottom-color: transparent;
  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: #fafafa;
  5829. border: 1px solid #e8e8e8;
  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: 5px;
  5841. }
  5842. .well-sm {
  5843. padding: 9px;
  5844. border-radius: 2px;
  5845. }
  5846. .close {
  5847. float: right;
  5848. font-size: 21px;
  5849. font-weight: bold;
  5850. line-height: 1;
  5851. color: #ffffff;
  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: #ffffff;
  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 #eeeeee;
  5914. border: 1px solid rgba(0, 0, 0, 0.05);
  5915. border-radius: 5px;
  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: 20px;
  5953. }
  5954. .modal-footer {
  5955. padding: 20px;
  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: "Source Sans Pro", "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: "Source Sans Pro", "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: 5px;
  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: 4px 4px 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. }
  6759. .navbar {
  6760. border-width: 0 1px 4px 1px;
  6761. }
  6762. .btn {
  6763. padding: 9px 12px 7px;
  6764. border-width: 0 1px 4px 1px;
  6765. font-size: 12px;
  6766. font-weight: bold;
  6767. line-height: 1.5;
  6768. text-transform: uppercase;
  6769. }
  6770. .btn:hover {
  6771. margin-top: 1px;
  6772. border-bottom-width: 3px;
  6773. }
  6774. .btn:active {
  6775. margin-top: 2px;
  6776. border-bottom-width: 2px;
  6777. -webkit-box-shadow: none;
  6778. box-shadow: none;
  6779. }
  6780. .btn-lg,
  6781. .btn-group-lg > .btn {
  6782. padding: 15px 16px 13px;
  6783. line-height: 15px;
  6784. }
  6785. .btn-sm,
  6786. .btn-group-sm > .btn {
  6787. padding: 6px 10px 4px;
  6788. }
  6789. .btn-xs,
  6790. .btn-group-xs > .btn {
  6791. padding: 3px 5px 1px;
  6792. }
  6793. .btn-default:hover,
  6794. .btn-default:focus,
  6795. .btn-group.open .dropdown-toggle.btn-default {
  6796. background-color: #eeeeee;
  6797. border-color: #e2e2e2;
  6798. }
  6799. .btn-primary:hover,
  6800. .btn-primary:focus,
  6801. .btn-group.open .dropdown-toggle.btn-primary {
  6802. background-color: #158cba;
  6803. border-color: #127ba3;
  6804. }
  6805. .btn-success:hover,
  6806. .btn-success:focus,
  6807. .btn-group.open .dropdown-toggle.btn-success {
  6808. background-color: #28b62c;
  6809. border-color: #23a127;
  6810. }
  6811. .btn-info:hover,
  6812. .btn-info:focus,
  6813. .btn-group.open .dropdown-toggle.btn-info {
  6814. background-color: #75caeb;
  6815. border-color: #5fc1e8;
  6816. }
  6817. .btn-warning:hover,
  6818. .btn-warning:focus,
  6819. .btn-group.open .dropdown-toggle.btn-warning {
  6820. background-color: #ff851b;
  6821. border-color: #ff7701;
  6822. }
  6823. .btn-danger:hover,
  6824. .btn-danger:focus,
  6825. .btn-group.open .dropdown-toggle.btn-danger {
  6826. background-color: #ff4136;
  6827. border-color: #ff291c;
  6828. }
  6829. .btn-group.open .dropdown-toggle {
  6830. -webkit-box-shadow: none;
  6831. box-shadow: none;
  6832. }
  6833. .navbar-btn:hover {
  6834. margin-top: 8px;
  6835. }
  6836. .navbar-btn:active {
  6837. margin-top: 9px;
  6838. }
  6839. .navbar-btn.btn-sm:hover {
  6840. margin-top: 11px;
  6841. }
  6842. .navbar-btn.btn-sm:active {
  6843. margin-top: 12px;
  6844. }
  6845. .navbar-btn.btn-xs:hover {
  6846. margin-top: 15px;
  6847. }
  6848. .navbar-btn.btn-xs:active {
  6849. margin-top: 16px;
  6850. }
  6851. .btn-group-vertical .btn + .btn:hover {
  6852. border-top-width: 1px;
  6853. }
  6854. .btn-group-vertical .btn + .btn:active {
  6855. border-top-width: 2px;
  6856. }
  6857. .text-primary,
  6858. .text-primary:hover {
  6859. color: #158cba;
  6860. }
  6861. .text-success,
  6862. .text-success:hover {
  6863. color: #28b62c;
  6864. }
  6865. .text-danger,
  6866. .text-danger:hover {
  6867. color: #ff4136;
  6868. }
  6869. .text-warning,
  6870. .text-warning:hover {
  6871. color: #ff851b;
  6872. }
  6873. .text-info,
  6874. .text-info:hover {
  6875. color: #75caeb;
  6876. }
  6877. table a:not(.btn),
  6878. .table a:not(.btn) {
  6879. text-decoration: underline;
  6880. }
  6881. table .dropdown-menu a,
  6882. .table .dropdown-menu a {
  6883. text-decoration: none;
  6884. }
  6885. table .success,
  6886. .table .success,
  6887. table .warning,
  6888. .table .warning,
  6889. table .danger,
  6890. .table .danger,
  6891. table .info,
  6892. .table .info {
  6893. color: #fff;
  6894. }
  6895. table .success a:not(.btn),
  6896. .table .success a:not(.btn),
  6897. table .warning a:not(.btn),
  6898. .table .warning a:not(.btn),
  6899. table .danger a:not(.btn),
  6900. .table .danger a:not(.btn),
  6901. table .info a:not(.btn),
  6902. .table .info a:not(.btn) {
  6903. color: #fff;
  6904. }
  6905. table:not(.table-bordered) > thead > tr > th,
  6906. .table:not(.table-bordered) > thead > tr > th,
  6907. table:not(.table-bordered) > tbody > tr > th,
  6908. .table:not(.table-bordered) > tbody > tr > th,
  6909. table:not(.table-bordered) > tfoot > tr > th,
  6910. .table:not(.table-bordered) > tfoot > tr > th,
  6911. table:not(.table-bordered) > thead > tr > td,
  6912. .table:not(.table-bordered) > thead > tr > td,
  6913. table:not(.table-bordered) > tbody > tr > td,
  6914. .table:not(.table-bordered) > tbody > tr > td,
  6915. table:not(.table-bordered) > tfoot > tr > td,
  6916. .table:not(.table-bordered) > tfoot > tr > td {
  6917. border-color: transparent;
  6918. }
  6919. .form-control {
  6920. -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6921. box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6922. }
  6923. label {
  6924. font-weight: normal;
  6925. }
  6926. .has-warning .help-block,
  6927. .has-warning .control-label,
  6928. .has-warning .radio,
  6929. .has-warning .checkbox,
  6930. .has-warning .radio-inline,
  6931. .has-warning .checkbox-inline,
  6932. .has-warning.radio label,
  6933. .has-warning.checkbox label,
  6934. .has-warning.radio-inline label,
  6935. .has-warning.checkbox-inline label,
  6936. .has-warning .form-control-feedback {
  6937. color: #ff851b;
  6938. }
  6939. .has-warning .form-control,
  6940. .has-warning .form-control:focus {
  6941. border: 1px solid #ff851b;
  6942. -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6943. box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6944. }
  6945. .has-warning .input-group-addon {
  6946. border: 1px solid #ff851b;
  6947. }
  6948. .has-error .help-block,
  6949. .has-error .control-label,
  6950. .has-error .radio,
  6951. .has-error .checkbox,
  6952. .has-error .radio-inline,
  6953. .has-error .checkbox-inline,
  6954. .has-error.radio label,
  6955. .has-error.checkbox label,
  6956. .has-error.radio-inline label,
  6957. .has-error.checkbox-inline label,
  6958. .has-error .form-control-feedback {
  6959. color: #ff4136;
  6960. }
  6961. .has-error .form-control,
  6962. .has-error .form-control:focus {
  6963. border: 1px solid #ff4136;
  6964. -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6965. box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6966. }
  6967. .has-error .input-group-addon {
  6968. border: 1px solid #ff4136;
  6969. }
  6970. .has-success .help-block,
  6971. .has-success .control-label,
  6972. .has-success .radio,
  6973. .has-success .checkbox,
  6974. .has-success .radio-inline,
  6975. .has-success .checkbox-inline,
  6976. .has-success.radio label,
  6977. .has-success.checkbox label,
  6978. .has-success.radio-inline label,
  6979. .has-success.checkbox-inline label,
  6980. .has-success .form-control-feedback {
  6981. color: #28b62c;
  6982. }
  6983. .has-success .form-control,
  6984. .has-success .form-control:focus {
  6985. border: 1px solid #28b62c;
  6986. -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6987. box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.075);
  6988. }
  6989. .has-success .input-group-addon {
  6990. border: 1px solid #28b62c;
  6991. }
  6992. .nav .open > a,
  6993. .nav .open > a:hover,
  6994. .nav .open > a:focus {
  6995. border-color: transparent;
  6996. }
  6997. .nav-tabs > li > a {
  6998. margin-top: 6px;
  6999. border-color: #e7e7e7;
  7000. color: #333333;
  7001. -webkit-transition: all 0.2s ease-in-out;
  7002. -o-transition: all 0.2s ease-in-out;
  7003. transition: all 0.2s ease-in-out;
  7004. }
  7005. .nav-tabs > li > a:hover,
  7006. .nav-tabs > li > a:focus,
  7007. .nav-tabs > li.active > a,
  7008. .nav-tabs > li.active > a:hover,
  7009. .nav-tabs > li.active > a:focus,
  7010. .nav-tabs .open > a,
  7011. .nav-tabs .open > a:hover,
  7012. .nav-tabs .open > a:focus {
  7013. padding-bottom: 16px;
  7014. margin-top: 0;
  7015. }
  7016. .nav-tabs .open > a,
  7017. .nav-tabs .open > a:hover,
  7018. .nav-tabs .open > a:focus {
  7019. border-color: #e7e7e7;
  7020. }
  7021. .nav-tabs > li.disabled > a:hover,
  7022. .nav-tabs > li.disabled > a:focus {
  7023. padding-top: 10px;
  7024. padding-bottom: 10px;
  7025. margin-top: 6px;
  7026. }
  7027. .nav-tabs.nav-justified > li {
  7028. vertical-align: bottom;
  7029. }
  7030. .dropdown-menu {
  7031. margin-top: 0;
  7032. border-width: 0 1px 4px 1px;
  7033. border-top-width: 1px;
  7034. -webkit-box-shadow: none;
  7035. box-shadow: none;
  7036. }
  7037. .breadcrumb {
  7038. border-color: #ededed;
  7039. border-style: solid;
  7040. border-width: 0 1px 4px 1px;
  7041. }
  7042. .pagination > li > a,
  7043. .pager > li > a,
  7044. .pagination > li > span,
  7045. .pager > li > span {
  7046. position: relative;
  7047. top: 0;
  7048. border-width: 0 1px 4px 1px;
  7049. color: #555555;
  7050. font-size: 12px;
  7051. font-weight: bold;
  7052. text-transform: uppercase;
  7053. }
  7054. .pagination > li > a:hover,
  7055. .pager > li > a:hover,
  7056. .pagination > li > span:hover,
  7057. .pager > li > span:hover {
  7058. top: 1px;
  7059. border-bottom-width: 3px;
  7060. }
  7061. .pagination > li > a:active,
  7062. .pager > li > a:active,
  7063. .pagination > li > span:active,
  7064. .pager > li > span:active {
  7065. top: 2px;
  7066. border-bottom-width: 2px;
  7067. }
  7068. .pagination > .disabled > a:hover,
  7069. .pager > .disabled > a:hover,
  7070. .pagination > .disabled > span:hover,
  7071. .pager > .disabled > span:hover {
  7072. top: 0;
  7073. border-width: 0 1px 4px 1px;
  7074. }
  7075. .pagination > .disabled > a:active,
  7076. .pager > .disabled > a:active,
  7077. .pagination > .disabled > span:active,
  7078. .pager > .disabled > span:active {
  7079. top: 0;
  7080. border-width: 0 1px 4px 1px;
  7081. }
  7082. .pager > li > a,
  7083. .pager > li > span,
  7084. .pager > .disabled > a,
  7085. .pager > .disabled > span,
  7086. .pager > li > a:hover,
  7087. .pager > li > span:hover,
  7088. .pager > .disabled > a:hover,
  7089. .pager > .disabled > span:hover,
  7090. .pager > li > a:active,
  7091. .pager > li > span:active,
  7092. .pager > .disabled > a:active,
  7093. .pager > .disabled > span:active {
  7094. border-left-width: 2px;
  7095. border-right-width: 2px;
  7096. }
  7097. .close {
  7098. color: #fff;
  7099. text-decoration: none;
  7100. opacity: 0.4;
  7101. }
  7102. .close:hover,
  7103. .close:focus {
  7104. color: #fff;
  7105. opacity: 1;
  7106. }
  7107. .alert {
  7108. border-width: 0 1px 4px 1px;
  7109. }
  7110. .alert .alert-link {
  7111. font-weight: normal;
  7112. color: #fff;
  7113. text-decoration: underline;
  7114. }
  7115. .label {
  7116. font-weight: normal;
  7117. }
  7118. .progress {
  7119. border: 1px solid #e7e7e7;
  7120. -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.1);
  7121. box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.1);
  7122. }
  7123. .progress-bar {
  7124. -webkit-box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15);
  7125. box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15);
  7126. }
  7127. .well {
  7128. border: 1px solid #e7e7e7;
  7129. -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.05);
  7130. box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.05);
  7131. }
  7132. a.list-group-item.active,
  7133. a.list-group-item.active:hover,
  7134. a.list-group-item.active:focus {
  7135. border-color: #eeeeee;
  7136. }
  7137. a.list-group-item-success.active {
  7138. background-color: #28b62c;
  7139. }
  7140. a.list-group-item-success.active:hover,
  7141. a.list-group-item-success.active:focus {
  7142. background-color: #23a127;
  7143. }
  7144. a.list-group-item-warning.active {
  7145. background-color: #ff851b;
  7146. }
  7147. a.list-group-item-warning.active:hover,
  7148. a.list-group-item-warning.active:focus {
  7149. background-color: #ff7701;
  7150. }
  7151. a.list-group-item-danger.active {
  7152. background-color: #ff4136;
  7153. }
  7154. a.list-group-item-danger.active:hover,
  7155. a.list-group-item-danger.active:focus {
  7156. background-color: #ff291c;
  7157. }
  7158. .jumbotron {
  7159. border: 1px solid #e7e7e7;
  7160. -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.05);
  7161. box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.05);
  7162. }
  7163. .panel {
  7164. border: 1px solid #e7e7e7;
  7165. border-width: 0 1px 4px 1px;
  7166. }
  7167. .panel-default .close {
  7168. color: #555555;
  7169. }
  7170. .modal .close {
  7171. color: #555555;
  7172. }
  7173. .popover {
  7174. color: #555555;
  7175. }