bootstrap.css 143 KB

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