bootstrap.css 140 KB

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