bootstrap_xinhu.css 153 KB

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