bootstrap.css 132 KB

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