bootstrap.css 141 KB

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