bootstrap.css 134 KB

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