bootstrap.css 129 KB

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