bootstrap.css 134 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371
  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. /*
  147. input[type="checkbox"],
  148. input[type="radio"] {
  149. -webkit-box-sizing: border-box;
  150. -moz-box-sizing: border-box;
  151. box-sizing: border-box;
  152. padding: 0;
  153. }*/
  154. input[type="number"]::-webkit-inner-spin-button,
  155. input[type="number"]::-webkit-outer-spin-button {
  156. height: auto;
  157. }
  158. input[type="search"] {
  159. -webkit-box-sizing: content-box;
  160. -moz-box-sizing: content-box;
  161. box-sizing: content-box;
  162. -webkit-appearance: textfield;
  163. }
  164. input[type="search"]::-webkit-search-cancel-button,
  165. input[type="search"]::-webkit-search-decoration {
  166. -webkit-appearance: none;
  167. }
  168. fieldset {
  169. padding: .35em .625em .75em;
  170. margin: 0 2px;
  171. border: 1px solid #c0c0c0;
  172. }
  173. legend {
  174. padding: 0;
  175. border: 0;
  176. }
  177. textarea {
  178. overflow: auto;
  179. }
  180. optgroup {
  181. font-weight: bold;
  182. }
  183. table {
  184. border-spacing: 0;
  185. border-collapse: collapse;
  186. }
  187. td,
  188. th {
  189. padding: 0;
  190. }
  191. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  192. @media print {
  193. /* *,
  194. *:before,
  195. *:after {
  196. color: #000 !important;
  197. text-shadow: none !important;
  198. background: transparent !important;
  199. -webkit-box-shadow: none !important;
  200. box-shadow: none !important;
  201. }*/
  202. a,
  203. a:visited {
  204. text-decoration: underline;
  205. }
  206. a[href]:after {
  207. content: " (" attr(href) ")";
  208. }
  209. abbr[title]:after {
  210. content: " (" attr(title) ")";
  211. }
  212. a[href^="#"]:after,
  213. a[href^="javascript:"]:after {
  214. content: "";
  215. }
  216. pre,
  217. blockquote {
  218. border: 1px solid #999;
  219. page-break-inside: avoid;
  220. }
  221. thead {
  222. display: table-header-group;
  223. }
  224. tr,
  225. img {
  226. page-break-inside: avoid;
  227. }
  228. img {
  229. max-width: 100% !important;
  230. }
  231. p,
  232. h2,
  233. h3 {
  234. orphans: 3;
  235. widows: 3;
  236. }
  237. h2,
  238. h3 {
  239. page-break-after: avoid;
  240. }
  241. select {
  242. background: #fff !important;
  243. }
  244. .navbar {
  245. display: none;
  246. }
  247. .btn > .caret,
  248. .dropup > .btn > .caret {
  249. border-top-color: #000 !important;
  250. }
  251. .label {
  252. border: 1px solid #000;
  253. }
  254. .table {
  255. border-collapse: collapse !important;
  256. }
  257. .table td,
  258. .table th {
  259. background-color: #fff !important;
  260. }
  261. .table-bordered th,
  262. .table-bordered td {
  263. border: 1px solid #ddd !important;
  264. }
  265. }
  266. @font-face {
  267. font-family: 'Glyphicons Halflings';
  268. src: url('../fonts/glyphicons-halflings-regular.eot');
  269. 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');
  270. }
  271. .glyphicon {
  272. position: relative;
  273. top: 1px;
  274. display: inline-block;
  275. font-family: 'Glyphicons Halflings';
  276. font-style: normal;
  277. font-weight: normal;
  278. line-height: 1;
  279. -webkit-font-smoothing: antialiased;
  280. -moz-osx-font-smoothing: grayscale;
  281. }
  282. .glyphicon-asterisk:before {
  283. content: "\2a";
  284. }
  285. .glyphicon-plus:before {
  286. content: "\2b";
  287. }
  288. .glyphicon-euro:before,
  289. .glyphicon-eur:before {
  290. content: "\20ac";
  291. }
  292. .glyphicon-minus:before {
  293. content: "\2212";
  294. }
  295. .glyphicon-cloud:before {
  296. content: "\2601";
  297. }
  298. .glyphicon-envelope:before {
  299. content: "\2709";
  300. }
  301. .glyphicon-pencil:before {
  302. content: "\270f";
  303. }
  304. .glyphicon-glass:before {
  305. content: "\e001";
  306. }
  307. .glyphicon-music:before {
  308. content: "\e002";
  309. }
  310. .glyphicon-search:before {
  311. content: "\e003";
  312. }
  313. .glyphicon-heart:before {
  314. content: "\e005";
  315. }
  316. .glyphicon-star:before {
  317. content: "\e006";
  318. }
  319. .glyphicon-star-empty:before {
  320. content: "\e007";
  321. }
  322. .glyphicon-user:before {
  323. content: "\e008";
  324. }
  325. .glyphicon-film:before {
  326. content: "\e009";
  327. }
  328. .glyphicon-th-large:before {
  329. content: "\e010";
  330. }
  331. .glyphicon-th:before {
  332. content: "\e011";
  333. }
  334. .glyphicon-th-list:before {
  335. content: "\e012";
  336. }
  337. .glyphicon-ok:before {
  338. content: "\e013";
  339. }
  340. .glyphicon-remove:before {
  341. content: "\e014";
  342. }
  343. .glyphicon-zoom-in:before {
  344. content: "\e015";
  345. }
  346. .glyphicon-zoom-out:before {
  347. content: "\e016";
  348. }
  349. .glyphicon-off:before {
  350. content: "\e017";
  351. }
  352. .glyphicon-signal:before {
  353. content: "\e018";
  354. }
  355. .glyphicon-cog:before {
  356. content: "\e019";
  357. }
  358. .glyphicon-trash:before {
  359. content: "\e020";
  360. }
  361. .glyphicon-home:before {
  362. content: "\e021";
  363. }
  364. .glyphicon-file:before {
  365. content: "\e022";
  366. }
  367. .glyphicon-time:before {
  368. content: "\e023";
  369. }
  370. .glyphicon-road:before {
  371. content: "\e024";
  372. }
  373. .glyphicon-download-alt:before {
  374. content: "\e025";
  375. }
  376. .glyphicon-download:before {
  377. content: "\e026";
  378. }
  379. .glyphicon-upload:before {
  380. content: "\e027";
  381. }
  382. .glyphicon-inbox:before {
  383. content: "\e028";
  384. }
  385. .glyphicon-play-circle:before {
  386. content: "\e029";
  387. }
  388. .glyphicon-repeat:before {
  389. content: "\e030";
  390. }
  391. .glyphicon-refresh:before {
  392. content: "\e031";
  393. }
  394. .glyphicon-list-alt:before {
  395. content: "\e032";
  396. }
  397. .glyphicon-lock:before {
  398. content: "\e033";
  399. }
  400. .glyphicon-flag:before {
  401. content: "\e034";
  402. }
  403. .glyphicon-headphones:before {
  404. content: "\e035";
  405. }
  406. .glyphicon-volume-off:before {
  407. content: "\e036";
  408. }
  409. .glyphicon-volume-down:before {
  410. content: "\e037";
  411. }
  412. .glyphicon-volume-up:before {
  413. content: "\e038";
  414. }
  415. .glyphicon-qrcode:before {
  416. content: "\e039";
  417. }
  418. .glyphicon-barcode:before {
  419. content: "\e040";
  420. }
  421. .glyphicon-tag:before {
  422. content: "\e041";
  423. }
  424. .glyphicon-tags:before {
  425. content: "\e042";
  426. }
  427. .glyphicon-book:before {
  428. content: "\e043";
  429. }
  430. .glyphicon-bookmark:before {
  431. content: "\e044";
  432. }
  433. .glyphicon-print:before {
  434. content: "\e045";
  435. }
  436. .glyphicon-camera:before {
  437. content: "\e046";
  438. }
  439. .glyphicon-font:before {
  440. content: "\e047";
  441. }
  442. .glyphicon-bold:before {
  443. content: "\e048";
  444. }
  445. .glyphicon-italic:before {
  446. content: "\e049";
  447. }
  448. .glyphicon-text-height:before {
  449. content: "\e050";
  450. }
  451. .glyphicon-text-width:before {
  452. content: "\e051";
  453. }
  454. .glyphicon-align-left:before {
  455. content: "\e052";
  456. }
  457. .glyphicon-align-center:before {
  458. content: "\e053";
  459. }
  460. .glyphicon-align-right:before {
  461. content: "\e054";
  462. }
  463. .glyphicon-align-justify:before {
  464. content: "\e055";
  465. }
  466. .glyphicon-list:before {
  467. content: "\e056";
  468. }
  469. .glyphicon-indent-left:before {
  470. content: "\e057";
  471. }
  472. .glyphicon-indent-right:before {
  473. content: "\e058";
  474. }
  475. .glyphicon-facetime-video:before {
  476. content: "\e059";
  477. }
  478. .glyphicon-picture:before {
  479. content: "\e060";
  480. }
  481. .glyphicon-map-marker:before {
  482. content: "\e062";
  483. }
  484. .glyphicon-adjust:before {
  485. content: "\e063";
  486. }
  487. .glyphicon-tint:before {
  488. content: "\e064";
  489. }
  490. .glyphicon-edit:before {
  491. content: "\e065";
  492. }
  493. .glyphicon-share:before {
  494. content: "\e066";
  495. }
  496. .glyphicon-check:before {
  497. content: "\e067";
  498. }
  499. .glyphicon-move:before {
  500. content: "\e068";
  501. }
  502. .glyphicon-step-backward:before {
  503. content: "\e069";
  504. }
  505. .glyphicon-fast-backward:before {
  506. content: "\e070";
  507. }
  508. .glyphicon-backward:before {
  509. content: "\e071";
  510. }
  511. .glyphicon-play:before {
  512. content: "\e072";
  513. }
  514. .glyphicon-pause:before {
  515. content: "\e073";
  516. }
  517. .glyphicon-stop:before {
  518. content: "\e074";
  519. }
  520. .glyphicon-forward:before {
  521. content: "\e075";
  522. }
  523. .glyphicon-fast-forward:before {
  524. content: "\e076";
  525. }
  526. .glyphicon-step-forward:before {
  527. content: "\e077";
  528. }
  529. .glyphicon-eject:before {
  530. content: "\e078";
  531. }
  532. .glyphicon-chevron-left:before {
  533. content: "\e079";
  534. }
  535. .glyphicon-chevron-right:before {
  536. content: "\e080";
  537. }
  538. .glyphicon-plus-sign:before {
  539. content: "\e081";
  540. }
  541. .glyphicon-minus-sign:before {
  542. content: "\e082";
  543. }
  544. .glyphicon-remove-sign:before {
  545. content: "\e083";
  546. }
  547. .glyphicon-ok-sign:before {
  548. content: "\e084";
  549. }
  550. .glyphicon-question-sign:before {
  551. content: "\e085";
  552. }
  553. .glyphicon-info-sign:before {
  554. content: "\e086";
  555. }
  556. .glyphicon-screenshot:before {
  557. content: "\e087";
  558. }
  559. .glyphicon-remove-circle:before {
  560. content: "\e088";
  561. }
  562. .glyphicon-ok-circle:before {
  563. content: "\e089";
  564. }
  565. .glyphicon-ban-circle:before {
  566. content: "\e090";
  567. }
  568. .glyphicon-arrow-left:before {
  569. content: "\e091";
  570. }
  571. .glyphicon-arrow-right:before {
  572. content: "\e092";
  573. }
  574. .glyphicon-arrow-up:before {
  575. content: "\e093";
  576. }
  577. .glyphicon-arrow-down:before {
  578. content: "\e094";
  579. }
  580. .glyphicon-share-alt:before {
  581. content: "\e095";
  582. }
  583. .glyphicon-resize-full:before {
  584. content: "\e096";
  585. }
  586. .glyphicon-resize-small:before {
  587. content: "\e097";
  588. }
  589. .glyphicon-exclamation-sign:before {
  590. content: "\e101";
  591. }
  592. .glyphicon-gift:before {
  593. content: "\e102";
  594. }
  595. .glyphicon-leaf:before {
  596. content: "\e103";
  597. }
  598. .glyphicon-fire:before {
  599. content: "\e104";
  600. }
  601. .glyphicon-eye-open:before {
  602. content: "\e105";
  603. }
  604. .glyphicon-eye-close:before {
  605. content: "\e106";
  606. }
  607. .glyphicon-warning-sign:before {
  608. content: "\e107";
  609. }
  610. .glyphicon-plane:before {
  611. content: "\e108";
  612. }
  613. .glyphicon-calendar:before {
  614. content: "\e109";
  615. }
  616. .glyphicon-random:before {
  617. content: "\e110";
  618. }
  619. .glyphicon-comment:before {
  620. content: "\e111";
  621. }
  622. .glyphicon-magnet:before {
  623. content: "\e112";
  624. }
  625. .glyphicon-chevron-up:before {
  626. content: "\e113";
  627. }
  628. .glyphicon-chevron-down:before {
  629. content: "\e114";
  630. }
  631. .glyphicon-retweet:before {
  632. content: "\e115";
  633. }
  634. .glyphicon-shopping-cart:before {
  635. content: "\e116";
  636. }
  637. .glyphicon-folder-close:before {
  638. content: "\e117";
  639. }
  640. .glyphicon-folder-open:before {
  641. content: "\e118";
  642. }
  643. .glyphicon-resize-vertical:before {
  644. content: "\e119";
  645. }
  646. .glyphicon-resize-horizontal:before {
  647. content: "\e120";
  648. }
  649. .glyphicon-hdd:before {
  650. content: "\e121";
  651. }
  652. .glyphicon-bullhorn:before {
  653. content: "\e122";
  654. }
  655. .glyphicon-bell:before {
  656. content: "\e123";
  657. }
  658. .glyphicon-certificate:before {
  659. content: "\e124";
  660. }
  661. .glyphicon-thumbs-up:before {
  662. content: "\e125";
  663. }
  664. .glyphicon-thumbs-down:before {
  665. content: "\e126";
  666. }
  667. .glyphicon-hand-right:before {
  668. content: "\e127";
  669. }
  670. .glyphicon-hand-left:before {
  671. content: "\e128";
  672. }
  673. .glyphicon-hand-up:before {
  674. content: "\e129";
  675. }
  676. .glyphicon-hand-down:before {
  677. content: "\e130";
  678. }
  679. .glyphicon-circle-arrow-right:before {
  680. content: "\e131";
  681. }
  682. .glyphicon-circle-arrow-left:before {
  683. content: "\e132";
  684. }
  685. .glyphicon-circle-arrow-up:before {
  686. content: "\e133";
  687. }
  688. .glyphicon-circle-arrow-down:before {
  689. content: "\e134";
  690. }
  691. .glyphicon-globe:before {
  692. content: "\e135";
  693. }
  694. .glyphicon-wrench:before {
  695. content: "\e136";
  696. }
  697. .glyphicon-tasks:before {
  698. content: "\e137";
  699. }
  700. .glyphicon-filter:before {
  701. content: "\e138";
  702. }
  703. .glyphicon-briefcase:before {
  704. content: "\e139";
  705. }
  706. .glyphicon-fullscreen:before {
  707. content: "\e140";
  708. }
  709. .glyphicon-dashboard:before {
  710. content: "\e141";
  711. }
  712. .glyphicon-paperclip:before {
  713. content: "\e142";
  714. }
  715. .glyphicon-heart-empty:before {
  716. content: "\e143";
  717. }
  718. .glyphicon-link:before {
  719. content: "\e144";
  720. }
  721. .glyphicon-phone:before {
  722. content: "\e145";
  723. }
  724. .glyphicon-pushpin:before {
  725. content: "\e146";
  726. }
  727. .glyphicon-usd:before {
  728. content: "\e148";
  729. }
  730. .glyphicon-gbp:before {
  731. content: "\e149";
  732. }
  733. .glyphicon-sort:before {
  734. content: "\e150";
  735. }
  736. .glyphicon-sort-by-alphabet:before {
  737. content: "\e151";
  738. }
  739. .glyphicon-sort-by-alphabet-alt:before {
  740. content: "\e152";
  741. }
  742. .glyphicon-sort-by-order:before {
  743. content: "\e153";
  744. }
  745. .glyphicon-sort-by-order-alt:before {
  746. content: "\e154";
  747. }
  748. .glyphicon-sort-by-attributes:before {
  749. content: "\e155";
  750. }
  751. .glyphicon-sort-by-attributes-alt:before {
  752. content: "\e156";
  753. }
  754. .glyphicon-unchecked:before {
  755. content: "\e157";
  756. }
  757. .glyphicon-expand:before {
  758. content: "\e158";
  759. }
  760. .glyphicon-collapse-down:before {
  761. content: "\e159";
  762. }
  763. .glyphicon-collapse-up:before {
  764. content: "\e160";
  765. }
  766. .glyphicon-log-in:before {
  767. content: "\e161";
  768. }
  769. .glyphicon-flash:before {
  770. content: "\e162";
  771. }
  772. .glyphicon-log-out:before {
  773. content: "\e163";
  774. }
  775. .glyphicon-new-window:before {
  776. content: "\e164";
  777. }
  778. .glyphicon-record:before {
  779. content: "\e165";
  780. }
  781. .glyphicon-save:before {
  782. content: "\e166";
  783. }
  784. .glyphicon-open:before {
  785. content: "\e167";
  786. }
  787. .glyphicon-saved:before {
  788. content: "\e168";
  789. }
  790. .glyphicon-import:before {
  791. content: "\e169";
  792. }
  793. .glyphicon-export:before {
  794. content: "\e170";
  795. }
  796. .glyphicon-send:before {
  797. content: "\e171";
  798. }
  799. .glyphicon-floppy-disk:before {
  800. content: "\e172";
  801. }
  802. .glyphicon-floppy-saved:before {
  803. content: "\e173";
  804. }
  805. .glyphicon-floppy-remove:before {
  806. content: "\e174";
  807. }
  808. .glyphicon-floppy-save:before {
  809. content: "\e175";
  810. }
  811. .glyphicon-floppy-open:before {
  812. content: "\e176";
  813. }
  814. .glyphicon-credit-card:before {
  815. content: "\e177";
  816. }
  817. .glyphicon-transfer:before {
  818. content: "\e178";
  819. }
  820. .glyphicon-cutlery:before {
  821. content: "\e179";
  822. }
  823. .glyphicon-header:before {
  824. content: "\e180";
  825. }
  826. .glyphicon-compressed:before {
  827. content: "\e181";
  828. }
  829. .glyphicon-earphone:before {
  830. content: "\e182";
  831. }
  832. .glyphicon-phone-alt:before {
  833. content: "\e183";
  834. }
  835. .glyphicon-tower:before {
  836. content: "\e184";
  837. }
  838. .glyphicon-stats:before {
  839. content: "\e185";
  840. }
  841. .glyphicon-sd-video:before {
  842. content: "\e186";
  843. }
  844. .glyphicon-hd-video:before {
  845. content: "\e187";
  846. }
  847. .glyphicon-subtitles:before {
  848. content: "\e188";
  849. }
  850. .glyphicon-sound-stereo:before {
  851. content: "\e189";
  852. }
  853. .glyphicon-sound-dolby:before {
  854. content: "\e190";
  855. }
  856. .glyphicon-sound-5-1:before {
  857. content: "\e191";
  858. }
  859. .glyphicon-sound-6-1:before {
  860. content: "\e192";
  861. }
  862. .glyphicon-sound-7-1:before {
  863. content: "\e193";
  864. }
  865. .glyphicon-copyright-mark:before {
  866. content: "\e194";
  867. }
  868. .glyphicon-registration-mark:before {
  869. content: "\e195";
  870. }
  871. .glyphicon-cloud-download:before {
  872. content: "\e197";
  873. }
  874. .glyphicon-cloud-upload:before {
  875. content: "\e198";
  876. }
  877. .glyphicon-tree-conifer:before {
  878. content: "\e199";
  879. }
  880. .glyphicon-tree-deciduous:before {
  881. content: "\e200";
  882. }
  883. * {
  884. -webkit-box-sizing: border-box;
  885. -moz-box-sizing: border-box;
  886. box-sizing: border-box;
  887. }
  888. *:before,
  889. *:after {
  890. -webkit-box-sizing: border-box;
  891. -moz-box-sizing: border-box;
  892. box-sizing: border-box;
  893. }
  894. html {
  895. font-size: 10px;
  896. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  897. }
  898. /*body {
  899. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  900. font-size: 14px;
  901. line-height: 1.42857143;
  902. color: #333;
  903. background-color: #fff;
  904. }*/
  905. input,
  906. button,
  907. select,
  908. textarea {
  909. font-family: inherit;
  910. font-size: inherit;
  911. line-height: inherit;
  912. }
  913. a {
  914. color: #428bca;
  915. text-decoration: none;
  916. }
  917. a:hover,
  918. a:focus {
  919. color: #2a6496;
  920. text-decoration: underline;
  921. }
  922. a:focus {
  923. outline: thin dotted;
  924. outline: 5px auto -webkit-focus-ring-color;
  925. outline-offset: -2px;
  926. }
  927. figure {
  928. margin: 0;
  929. }
  930. img {
  931. vertical-align: middle;
  932. }
  933. .img-responsive,
  934. .thumbnail > img,
  935. .thumbnail a > img,
  936. .carousel-inner > .item > img,
  937. .carousel-inner > .item > a > img {
  938. display: block;
  939. max-width: 100%;
  940. height: auto;
  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. /*
  1414. .row {
  1415. margin-right: -15px;
  1416. margin-left: -15px;
  1417. }*/
  1418. .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 {
  1419. position: relative;
  1420. min-height: 1px;
  1421. padding-right: 15px;
  1422. padding-left: 15px;
  1423. }
  1424. .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 {
  1425. float: left;
  1426. }
  1427. .col-xs-12 {
  1428. width: 100%;
  1429. }
  1430. .col-xs-11 {
  1431. width: 91.66666667%;
  1432. }
  1433. .col-xs-10 {
  1434. width: 83.33333333%;
  1435. }
  1436. .col-xs-9 {
  1437. width: 75%;
  1438. }
  1439. .col-xs-8 {
  1440. width: 66.66666667%;
  1441. }
  1442. .col-xs-7 {
  1443. width: 58.33333333%;
  1444. }
  1445. .col-xs-6 {
  1446. width: 50%;
  1447. }
  1448. .col-xs-5 {
  1449. width: 41.66666667%;
  1450. }
  1451. .col-xs-4 {
  1452. width: 33.33333333%;
  1453. }
  1454. .col-xs-3 {
  1455. width: 25%;
  1456. }
  1457. .col-xs-2 {
  1458. width: 16.66666667%;
  1459. }
  1460. .col-xs-1 {
  1461. width: 8.33333333%;
  1462. }
  1463. .col-xs-pull-12 {
  1464. right: 100%;
  1465. }
  1466. .col-xs-pull-11 {
  1467. right: 91.66666667%;
  1468. }
  1469. .col-xs-pull-10 {
  1470. right: 83.33333333%;
  1471. }
  1472. .col-xs-pull-9 {
  1473. right: 75%;
  1474. }
  1475. .col-xs-pull-8 {
  1476. right: 66.66666667%;
  1477. }
  1478. .col-xs-pull-7 {
  1479. right: 58.33333333%;
  1480. }
  1481. .col-xs-pull-6 {
  1482. right: 50%;
  1483. }
  1484. .col-xs-pull-5 {
  1485. right: 41.66666667%;
  1486. }
  1487. .col-xs-pull-4 {
  1488. right: 33.33333333%;
  1489. }
  1490. .col-xs-pull-3 {
  1491. right: 25%;
  1492. }
  1493. .col-xs-pull-2 {
  1494. right: 16.66666667%;
  1495. }
  1496. .col-xs-pull-1 {
  1497. right: 8.33333333%;
  1498. }
  1499. .col-xs-pull-0 {
  1500. right: auto;
  1501. }
  1502. .col-xs-push-12 {
  1503. left: 100%;
  1504. }
  1505. .col-xs-push-11 {
  1506. left: 91.66666667%;
  1507. }
  1508. .col-xs-push-10 {
  1509. left: 83.33333333%;
  1510. }
  1511. .col-xs-push-9 {
  1512. left: 75%;
  1513. }
  1514. .col-xs-push-8 {
  1515. left: 66.66666667%;
  1516. }
  1517. .col-xs-push-7 {
  1518. left: 58.33333333%;
  1519. }
  1520. .col-xs-push-6 {
  1521. left: 50%;
  1522. }
  1523. .col-xs-push-5 {
  1524. left: 41.66666667%;
  1525. }
  1526. .col-xs-push-4 {
  1527. left: 33.33333333%;
  1528. }
  1529. .col-xs-push-3 {
  1530. left: 25%;
  1531. }
  1532. .col-xs-push-2 {
  1533. left: 16.66666667%;
  1534. }
  1535. .col-xs-push-1 {
  1536. left: 8.33333333%;
  1537. }
  1538. .col-xs-push-0 {
  1539. left: auto;
  1540. }
  1541. .col-xs-offset-12 {
  1542. margin-left: 100%;
  1543. }
  1544. .col-xs-offset-11 {
  1545. margin-left: 91.66666667%;
  1546. }
  1547. .col-xs-offset-10 {
  1548. margin-left: 83.33333333%;
  1549. }
  1550. .col-xs-offset-9 {
  1551. margin-left: 75%;
  1552. }
  1553. .col-xs-offset-8 {
  1554. margin-left: 66.66666667%;
  1555. }
  1556. .col-xs-offset-7 {
  1557. margin-left: 58.33333333%;
  1558. }
  1559. .col-xs-offset-6 {
  1560. margin-left: 50%;
  1561. }
  1562. .col-xs-offset-5 {
  1563. margin-left: 41.66666667%;
  1564. }
  1565. .col-xs-offset-4 {
  1566. margin-left: 33.33333333%;
  1567. }
  1568. .col-xs-offset-3 {
  1569. margin-left: 25%;
  1570. }
  1571. .col-xs-offset-2 {
  1572. margin-left: 16.66666667%;
  1573. }
  1574. .col-xs-offset-1 {
  1575. margin-left: 8.33333333%;
  1576. }
  1577. .col-xs-offset-0 {
  1578. margin-left: 0;
  1579. }
  1580. @media (min-width: 768px) {
  1581. .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 {
  1582. float: left;
  1583. }
  1584. .col-sm-12 {
  1585. width: 100%;
  1586. }
  1587. .col-sm-11 {
  1588. width: 91.66666667%;
  1589. }
  1590. .col-sm-10 {
  1591. width: 83.33333333%;
  1592. }
  1593. .col-sm-9 {
  1594. width: 75%;
  1595. }
  1596. .col-sm-8 {
  1597. width: 66.66666667%;
  1598. }
  1599. .col-sm-7 {
  1600. width: 58.33333333%;
  1601. }
  1602. .col-sm-6 {
  1603. width: 50%;
  1604. }
  1605. .col-sm-5 {
  1606. width: 41.66666667%;
  1607. }
  1608. .col-sm-4 {
  1609. width: 33.33333333%;
  1610. }
  1611. .col-sm-3 {
  1612. width: 25%;
  1613. }
  1614. .col-sm-2 {
  1615. width: 16.66666667%;
  1616. }
  1617. .col-sm-1 {
  1618. width: 8.33333333%;
  1619. }
  1620. .col-sm-pull-12 {
  1621. right: 100%;
  1622. }
  1623. .col-sm-pull-11 {
  1624. right: 91.66666667%;
  1625. }
  1626. .col-sm-pull-10 {
  1627. right: 83.33333333%;
  1628. }
  1629. .col-sm-pull-9 {
  1630. right: 75%;
  1631. }
  1632. .col-sm-pull-8 {
  1633. right: 66.66666667%;
  1634. }
  1635. .col-sm-pull-7 {
  1636. right: 58.33333333%;
  1637. }
  1638. .col-sm-pull-6 {
  1639. right: 50%;
  1640. }
  1641. .col-sm-pull-5 {
  1642. right: 41.66666667%;
  1643. }
  1644. .col-sm-pull-4 {
  1645. right: 33.33333333%;
  1646. }
  1647. .col-sm-pull-3 {
  1648. right: 25%;
  1649. }
  1650. .col-sm-pull-2 {
  1651. right: 16.66666667%;
  1652. }
  1653. .col-sm-pull-1 {
  1654. right: 8.33333333%;
  1655. }
  1656. .col-sm-pull-0 {
  1657. right: auto;
  1658. }
  1659. .col-sm-push-12 {
  1660. left: 100%;
  1661. }
  1662. .col-sm-push-11 {
  1663. left: 91.66666667%;
  1664. }
  1665. .col-sm-push-10 {
  1666. left: 83.33333333%;
  1667. }
  1668. .col-sm-push-9 {
  1669. left: 75%;
  1670. }
  1671. .col-sm-push-8 {
  1672. left: 66.66666667%;
  1673. }
  1674. .col-sm-push-7 {
  1675. left: 58.33333333%;
  1676. }
  1677. .col-sm-push-6 {
  1678. left: 50%;
  1679. }
  1680. .col-sm-push-5 {
  1681. left: 41.66666667%;
  1682. }
  1683. .col-sm-push-4 {
  1684. left: 33.33333333%;
  1685. }
  1686. .col-sm-push-3 {
  1687. left: 25%;
  1688. }
  1689. .col-sm-push-2 {
  1690. left: 16.66666667%;
  1691. }
  1692. .col-sm-push-1 {
  1693. left: 8.33333333%;
  1694. }
  1695. .col-sm-push-0 {
  1696. left: auto;
  1697. }
  1698. .col-sm-offset-12 {
  1699. margin-left: 100%;
  1700. }
  1701. .col-sm-offset-11 {
  1702. margin-left: 91.66666667%;
  1703. }
  1704. .col-sm-offset-10 {
  1705. margin-left: 83.33333333%;
  1706. }
  1707. .col-sm-offset-9 {
  1708. margin-left: 75%;
  1709. }
  1710. .col-sm-offset-8 {
  1711. margin-left: 66.66666667%;
  1712. }
  1713. .col-sm-offset-7 {
  1714. margin-left: 58.33333333%;
  1715. }
  1716. .col-sm-offset-6 {
  1717. margin-left: 50%;
  1718. }
  1719. .col-sm-offset-5 {
  1720. margin-left: 41.66666667%;
  1721. }
  1722. .col-sm-offset-4 {
  1723. margin-left: 33.33333333%;
  1724. }
  1725. .col-sm-offset-3 {
  1726. margin-left: 25%;
  1727. }
  1728. .col-sm-offset-2 {
  1729. margin-left: 16.66666667%;
  1730. }
  1731. .col-sm-offset-1 {
  1732. margin-left: 8.33333333%;
  1733. }
  1734. .col-sm-offset-0 {
  1735. margin-left: 0;
  1736. }
  1737. }
  1738. @media (min-width: 992px) {
  1739. .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 {
  1740. float: left;
  1741. }
  1742. .col-md-12 {
  1743. width: 100%;
  1744. }
  1745. .col-md-11 {
  1746. width: 91.66666667%;
  1747. }
  1748. .col-md-10 {
  1749. width: 83.33333333%;
  1750. }
  1751. .col-md-9 {
  1752. width: 75%;
  1753. }
  1754. .col-md-8 {
  1755. width: 66.66666667%;
  1756. }
  1757. .col-md-7 {
  1758. width: 58.33333333%;
  1759. }
  1760. .col-md-6 {
  1761. width: 50%;
  1762. }
  1763. .col-md-5 {
  1764. width: 41.66666667%;
  1765. }
  1766. .col-md-4 {
  1767. width: 33.33333333%;
  1768. }
  1769. .col-md-3 {
  1770. width: 25%;
  1771. }
  1772. .col-md-2 {
  1773. width: 16.66666667%;
  1774. }
  1775. .col-md-1 {
  1776. width: 8.33333333%;
  1777. }
  1778. .col-md-pull-12 {
  1779. right: 100%;
  1780. }
  1781. .col-md-pull-11 {
  1782. right: 91.66666667%;
  1783. }
  1784. .col-md-pull-10 {
  1785. right: 83.33333333%;
  1786. }
  1787. .col-md-pull-9 {
  1788. right: 75%;
  1789. }
  1790. .col-md-pull-8 {
  1791. right: 66.66666667%;
  1792. }
  1793. .col-md-pull-7 {
  1794. right: 58.33333333%;
  1795. }
  1796. .col-md-pull-6 {
  1797. right: 50%;
  1798. }
  1799. .col-md-pull-5 {
  1800. right: 41.66666667%;
  1801. }
  1802. .col-md-pull-4 {
  1803. right: 33.33333333%;
  1804. }
  1805. .col-md-pull-3 {
  1806. right: 25%;
  1807. }
  1808. .col-md-pull-2 {
  1809. right: 16.66666667%;
  1810. }
  1811. .col-md-pull-1 {
  1812. right: 8.33333333%;
  1813. }
  1814. .col-md-pull-0 {
  1815. right: auto;
  1816. }
  1817. .col-md-push-12 {
  1818. left: 100%;
  1819. }
  1820. .col-md-push-11 {
  1821. left: 91.66666667%;
  1822. }
  1823. .col-md-push-10 {
  1824. left: 83.33333333%;
  1825. }
  1826. .col-md-push-9 {
  1827. left: 75%;
  1828. }
  1829. .col-md-push-8 {
  1830. left: 66.66666667%;
  1831. }
  1832. .col-md-push-7 {
  1833. left: 58.33333333%;
  1834. }
  1835. .col-md-push-6 {
  1836. left: 50%;
  1837. }
  1838. .col-md-push-5 {
  1839. left: 41.66666667%;
  1840. }
  1841. .col-md-push-4 {
  1842. left: 33.33333333%;
  1843. }
  1844. .col-md-push-3 {
  1845. left: 25%;
  1846. }
  1847. .col-md-push-2 {
  1848. left: 16.66666667%;
  1849. }
  1850. .col-md-push-1 {
  1851. left: 8.33333333%;
  1852. }
  1853. .col-md-push-0 {
  1854. left: auto;
  1855. }
  1856. .col-md-offset-12 {
  1857. margin-left: 100%;
  1858. }
  1859. .col-md-offset-11 {
  1860. margin-left: 91.66666667%;
  1861. }
  1862. .col-md-offset-10 {
  1863. margin-left: 83.33333333%;
  1864. }
  1865. .col-md-offset-9 {
  1866. margin-left: 75%;
  1867. }
  1868. .col-md-offset-8 {
  1869. margin-left: 66.66666667%;
  1870. }
  1871. .col-md-offset-7 {
  1872. margin-left: 58.33333333%;
  1873. }
  1874. .col-md-offset-6 {
  1875. margin-left: 50%;
  1876. }
  1877. .col-md-offset-5 {
  1878. margin-left: 41.66666667%;
  1879. }
  1880. .col-md-offset-4 {
  1881. margin-left: 33.33333333%;
  1882. }
  1883. .col-md-offset-3 {
  1884. margin-left: 25%;
  1885. }
  1886. .col-md-offset-2 {
  1887. margin-left: 16.66666667%;
  1888. }
  1889. .col-md-offset-1 {
  1890. margin-left: 8.33333333%;
  1891. }
  1892. .col-md-offset-0 {
  1893. margin-left: 0;
  1894. }
  1895. }
  1896. @media (min-width: 1200px) {
  1897. .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 {
  1898. float: left;
  1899. }
  1900. .col-lg-12 {
  1901. width: 100%;
  1902. }
  1903. .col-lg-11 {
  1904. width: 91.66666667%;
  1905. }
  1906. .col-lg-10 {
  1907. width: 83.33333333%;
  1908. }
  1909. .col-lg-9 {
  1910. width: 75%;
  1911. }
  1912. .col-lg-8 {
  1913. width: 66.66666667%;
  1914. }
  1915. .col-lg-7 {
  1916. width: 58.33333333%;
  1917. }
  1918. .col-lg-6 {
  1919. width: 50%;
  1920. }
  1921. .col-lg-5 {
  1922. width: 41.66666667%;
  1923. }
  1924. .col-lg-4 {
  1925. width: 33.33333333%;
  1926. }
  1927. .col-lg-3 {
  1928. width: 25%;
  1929. }
  1930. .col-lg-2 {
  1931. width: 16.66666667%;
  1932. }
  1933. .col-lg-1 {
  1934. width: 8.33333333%;
  1935. }
  1936. .col-lg-pull-12 {
  1937. right: 100%;
  1938. }
  1939. .col-lg-pull-11 {
  1940. right: 91.66666667%;
  1941. }
  1942. .col-lg-pull-10 {
  1943. right: 83.33333333%;
  1944. }
  1945. .col-lg-pull-9 {
  1946. right: 75%;
  1947. }
  1948. .col-lg-pull-8 {
  1949. right: 66.66666667%;
  1950. }
  1951. .col-lg-pull-7 {
  1952. right: 58.33333333%;
  1953. }
  1954. .col-lg-pull-6 {
  1955. right: 50%;
  1956. }
  1957. .col-lg-pull-5 {
  1958. right: 41.66666667%;
  1959. }
  1960. .col-lg-pull-4 {
  1961. right: 33.33333333%;
  1962. }
  1963. .col-lg-pull-3 {
  1964. right: 25%;
  1965. }
  1966. .col-lg-pull-2 {
  1967. right: 16.66666667%;
  1968. }
  1969. .col-lg-pull-1 {
  1970. right: 8.33333333%;
  1971. }
  1972. .col-lg-pull-0 {
  1973. right: auto;
  1974. }
  1975. .col-lg-push-12 {
  1976. left: 100%;
  1977. }
  1978. .col-lg-push-11 {
  1979. left: 91.66666667%;
  1980. }
  1981. .col-lg-push-10 {
  1982. left: 83.33333333%;
  1983. }
  1984. .col-lg-push-9 {
  1985. left: 75%;
  1986. }
  1987. .col-lg-push-8 {
  1988. left: 66.66666667%;
  1989. }
  1990. .col-lg-push-7 {
  1991. left: 58.33333333%;
  1992. }
  1993. .col-lg-push-6 {
  1994. left: 50%;
  1995. }
  1996. .col-lg-push-5 {
  1997. left: 41.66666667%;
  1998. }
  1999. .col-lg-push-4 {
  2000. left: 33.33333333%;
  2001. }
  2002. .col-lg-push-3 {
  2003. left: 25%;
  2004. }
  2005. .col-lg-push-2 {
  2006. left: 16.66666667%;
  2007. }
  2008. .col-lg-push-1 {
  2009. left: 8.33333333%;
  2010. }
  2011. .col-lg-push-0 {
  2012. left: auto;
  2013. }
  2014. .col-lg-offset-12 {
  2015. margin-left: 100%;
  2016. }
  2017. .col-lg-offset-11 {
  2018. margin-left: 91.66666667%;
  2019. }
  2020. .col-lg-offset-10 {
  2021. margin-left: 83.33333333%;
  2022. }
  2023. .col-lg-offset-9 {
  2024. margin-left: 75%;
  2025. }
  2026. .col-lg-offset-8 {
  2027. margin-left: 66.66666667%;
  2028. }
  2029. .col-lg-offset-7 {
  2030. margin-left: 58.33333333%;
  2031. }
  2032. .col-lg-offset-6 {
  2033. margin-left: 50%;
  2034. }
  2035. .col-lg-offset-5 {
  2036. margin-left: 41.66666667%;
  2037. }
  2038. .col-lg-offset-4 {
  2039. margin-left: 33.33333333%;
  2040. }
  2041. .col-lg-offset-3 {
  2042. margin-left: 25%;
  2043. }
  2044. .col-lg-offset-2 {
  2045. margin-left: 16.66666667%;
  2046. }
  2047. .col-lg-offset-1 {
  2048. margin-left: 8.33333333%;
  2049. }
  2050. .col-lg-offset-0 {
  2051. margin-left: 0;
  2052. }
  2053. }
  2054. table {
  2055. background-color: transparent;
  2056. }
  2057. caption {
  2058. padding-top: 8px;
  2059. padding-bottom: 8px;
  2060. color: #777;
  2061. text-align: left;
  2062. }
  2063. th {
  2064. text-align: left;
  2065. }
  2066. .table {
  2067. width: 100%;
  2068. max-width: 100%;
  2069. margin-bottom: 20px;
  2070. }
  2071. .table > thead > tr > th,
  2072. .table > tbody > tr > th,
  2073. .table > tfoot > tr > th,
  2074. .table > thead > tr > td,
  2075. .table > tbody > tr > td,
  2076. .table > tfoot > tr > td {
  2077. padding: 2px;
  2078. line-height: 1.42857143;
  2079. vertical-align: top;
  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. /*
  2322. input[type="radio"],
  2323. input[type="checkbox"] {
  2324. margin: 4px 0 0;
  2325. margin-top: 1px \9;
  2326. line-height: normal;
  2327. }*/
  2328. input[type="file"] {
  2329. display: block;
  2330. }
  2331. input[type="range"] {
  2332. display: block;
  2333. width: 100%;
  2334. }
  2335. select[multiple],
  2336. select[size] {
  2337. height: auto;
  2338. }
  2339. input[type="file"]:focus,
  2340. input[type="radio"]:focus,
  2341. input[type="checkbox"]:focus {
  2342. outline: thin dotted;
  2343. outline: 5px auto -webkit-focus-ring-color;
  2344. outline-offset: -2px;
  2345. }
  2346. output {
  2347. display: block;
  2348. padding-top: 7px;
  2349. font-size: 14px;
  2350. line-height: 1.42857143;
  2351. color: #555;
  2352. }
  2353. .form-control {
  2354. display: block;
  2355. width: 100%;
  2356. height: 34px;
  2357. padding: 6px 12px;
  2358. font-size: 14px;
  2359. line-height: 1.42857143;
  2360. color: #555;
  2361. background-color: #fff;
  2362. background-image: none;
  2363. border: 1px solid #ccc;
  2364. border-radius: 4px;
  2365. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2366. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2367. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  2368. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2369. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2370. }
  2371. .form-control:focus {
  2372. border-color: #66afe9;
  2373. outline: 0;
  2374. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  2375. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  2376. }
  2377. .form-control::-moz-placeholder {
  2378. color: #999;
  2379. opacity: 1;
  2380. }
  2381. .form-control:-ms-input-placeholder {
  2382. color: #999;
  2383. }
  2384. .form-control::-webkit-input-placeholder {
  2385. color: #999;
  2386. }
  2387. .form-control[disabled],
  2388. .form-control[readonly],
  2389. fieldset[disabled] .form-control {
  2390. cursor: not-allowed;
  2391. background-color: #eee;
  2392. opacity: 1;
  2393. }
  2394. textarea.form-control {
  2395. height: auto;
  2396. }
  2397. input[type="search"] {
  2398. -webkit-appearance: none;
  2399. }
  2400. input[type="date"],
  2401. input[type="time"],
  2402. input[type="datetime-local"],
  2403. input[type="month"] {
  2404. line-height: 34px;
  2405. line-height: 1.42857143 \0;
  2406. }
  2407. input[type="date"].input-sm,
  2408. input[type="time"].input-sm,
  2409. input[type="datetime-local"].input-sm,
  2410. input[type="month"].input-sm {
  2411. line-height: 30px;
  2412. line-height: 1.5 \0;
  2413. }
  2414. input[type="date"].input-lg,
  2415. input[type="time"].input-lg,
  2416. input[type="datetime-local"].input-lg,
  2417. input[type="month"].input-lg {
  2418. line-height: 46px;
  2419. line-height: 1.33 \0;
  2420. }
  2421. _:-ms-fullscreen,
  2422. :root input[type="date"],
  2423. _:-ms-fullscreen,
  2424. :root input[type="time"],
  2425. _:-ms-fullscreen,
  2426. :root input[type="datetime-local"],
  2427. _:-ms-fullscreen,
  2428. :root input[type="month"] {
  2429. line-height: 1.42857143;
  2430. }
  2431. _:-ms-fullscreen.input-sm,
  2432. :root input[type="date"].input-sm,
  2433. _:-ms-fullscreen.input-sm,
  2434. :root input[type="time"].input-sm,
  2435. _:-ms-fullscreen.input-sm,
  2436. :root input[type="datetime-local"].input-sm,
  2437. _:-ms-fullscreen.input-sm,
  2438. :root input[type="month"].input-sm {
  2439. line-height: 1.5;
  2440. }
  2441. _:-ms-fullscreen.input-lg,
  2442. :root input[type="date"].input-lg,
  2443. _:-ms-fullscreen.input-lg,
  2444. :root input[type="time"].input-lg,
  2445. _:-ms-fullscreen.input-lg,
  2446. :root input[type="datetime-local"].input-lg,
  2447. _:-ms-fullscreen.input-lg,
  2448. :root input[type="month"].input-lg {
  2449. line-height: 1.33;
  2450. }
  2451. .form-group {
  2452. margin-bottom: 15px;
  2453. }
  2454. .radio,
  2455. .checkbox {
  2456. position: relative;
  2457. display: block;
  2458. margin-top: 10px;
  2459. margin-bottom: 10px;
  2460. }
  2461. .radio label,
  2462. .checkbox label {
  2463. min-height: 20px;
  2464. padding-left: 20px;
  2465. margin-bottom: 0;
  2466. font-weight: normal;
  2467. cursor: pointer;
  2468. }
  2469. /*
  2470. .radio input[type="radio"],
  2471. .radio-inline input[type="radio"],
  2472. .checkbox input[type="checkbox"],
  2473. .checkbox-inline input[type="checkbox"] {
  2474. position: absolute;
  2475. margin-top: 4px \9;
  2476. margin-left: -20px;
  2477. }*/
  2478. .radio + .radio,
  2479. .checkbox + .checkbox {
  2480. margin-top: -5px;
  2481. }
  2482. .radio-inline,
  2483. .checkbox-inline {
  2484. display: inline-block;
  2485. padding-left: 20px;
  2486. margin-bottom: 0;
  2487. font-weight: normal;
  2488. vertical-align: middle;
  2489. cursor: pointer;
  2490. }
  2491. .radio-inline + .radio-inline,
  2492. .checkbox-inline + .checkbox-inline {
  2493. margin-top: 0;
  2494. margin-left: 10px;
  2495. }
  2496. input[type="radio"][disabled],
  2497. input[type="checkbox"][disabled],
  2498. input[type="radio"].disabled,
  2499. input[type="checkbox"].disabled,
  2500. fieldset[disabled] input[type="radio"],
  2501. fieldset[disabled] input[type="checkbox"] {
  2502. cursor: not-allowed;
  2503. }
  2504. .radio-inline.disabled,
  2505. .checkbox-inline.disabled,
  2506. fieldset[disabled] .radio-inline,
  2507. fieldset[disabled] .checkbox-inline {
  2508. cursor: not-allowed;
  2509. }
  2510. .radio.disabled label,
  2511. .checkbox.disabled label,
  2512. fieldset[disabled] .radio label,
  2513. fieldset[disabled] .checkbox label {
  2514. cursor: not-allowed;
  2515. }
  2516. .form-control-static {
  2517. padding-top: 7px;
  2518. padding-bottom: 7px;
  2519. margin-bottom: 0;
  2520. }
  2521. .form-control-static.input-lg,
  2522. .form-control-static.input-sm {
  2523. padding-right: 0;
  2524. padding-left: 0;
  2525. }
  2526. .input-sm,
  2527. .form-group-sm .form-control {
  2528. height: 30px;
  2529. padding: 5px 10px;
  2530. font-size: 12px;
  2531. line-height: 1.5;
  2532. border-radius: 3px;
  2533. }
  2534. select.input-sm,
  2535. select.form-group-sm .form-control {
  2536. height: 30px;
  2537. line-height: 30px;
  2538. }
  2539. textarea.input-sm,
  2540. textarea.form-group-sm .form-control,
  2541. select[multiple].input-sm,
  2542. select[multiple].form-group-sm .form-control {
  2543. height: auto;
  2544. }
  2545. .input-lg,
  2546. .form-group-lg .form-control {
  2547. height: 46px;
  2548. padding: 10px 16px;
  2549. font-size: 18px;
  2550. line-height: 1.33;
  2551. border-radius: 6px;
  2552. }
  2553. select.input-lg,
  2554. select.form-group-lg .form-control {
  2555. height: 46px;
  2556. line-height: 46px;
  2557. }
  2558. textarea.input-lg,
  2559. textarea.form-group-lg .form-control,
  2560. select[multiple].input-lg,
  2561. select[multiple].form-group-lg .form-control {
  2562. height: auto;
  2563. }
  2564. .has-feedback {
  2565. position: relative;
  2566. }
  2567. .has-feedback .form-control {
  2568. padding-right: 42.5px;
  2569. }
  2570. .form-control-feedback {
  2571. position: absolute;
  2572. top: 0;
  2573. right: 0;
  2574. z-index: 2;
  2575. display: block;
  2576. width: 34px;
  2577. height: 34px;
  2578. line-height: 34px;
  2579. text-align: center;
  2580. pointer-events: none;
  2581. }
  2582. .input-lg + .form-control-feedback {
  2583. width: 46px;
  2584. height: 46px;
  2585. line-height: 46px;
  2586. }
  2587. .input-sm + .form-control-feedback {
  2588. width: 30px;
  2589. height: 30px;
  2590. line-height: 30px;
  2591. }
  2592. .has-success .help-block,
  2593. .has-success .control-label,
  2594. .has-success .radio,
  2595. .has-success .checkbox,
  2596. .has-success .radio-inline,
  2597. .has-success .checkbox-inline,
  2598. .has-success.radio label,
  2599. .has-success.checkbox label,
  2600. .has-success.radio-inline label,
  2601. .has-success.checkbox-inline label {
  2602. color: #3c763d;
  2603. }
  2604. .has-success .form-control {
  2605. border-color: #3c763d;
  2606. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2607. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2608. }
  2609. .has-success .form-control:focus {
  2610. border-color: #2b542c;
  2611. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
  2612. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
  2613. }
  2614. .has-success .input-group-addon {
  2615. color: #3c763d;
  2616. background-color: #dff0d8;
  2617. border-color: #3c763d;
  2618. }
  2619. .has-success .form-control-feedback {
  2620. color: #3c763d;
  2621. }
  2622. .has-warning .help-block,
  2623. .has-warning .control-label,
  2624. .has-warning .radio,
  2625. .has-warning .checkbox,
  2626. .has-warning .radio-inline,
  2627. .has-warning .checkbox-inline,
  2628. .has-warning.radio label,
  2629. .has-warning.checkbox label,
  2630. .has-warning.radio-inline label,
  2631. .has-warning.checkbox-inline label {
  2632. color: #8a6d3b;
  2633. }
  2634. .has-warning .form-control {
  2635. border-color: #8a6d3b;
  2636. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2637. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2638. }
  2639. .has-warning .form-control:focus {
  2640. border-color: #66512c;
  2641. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
  2642. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
  2643. }
  2644. .has-warning .input-group-addon {
  2645. color: #8a6d3b;
  2646. background-color: #fcf8e3;
  2647. border-color: #8a6d3b;
  2648. }
  2649. .has-warning .form-control-feedback {
  2650. color: #8a6d3b;
  2651. }
  2652. .has-error .help-block,
  2653. .has-error .control-label,
  2654. .has-error .radio,
  2655. .has-error .checkbox,
  2656. .has-error .radio-inline,
  2657. .has-error .checkbox-inline,
  2658. .has-error.radio label,
  2659. .has-error.checkbox label,
  2660. .has-error.radio-inline label,
  2661. .has-error.checkbox-inline label {
  2662. color: #a94442;
  2663. }
  2664. .has-error .form-control {
  2665. border-color: #a94442;
  2666. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2667. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2668. }
  2669. .has-error .form-control:focus {
  2670. border-color: #843534;
  2671. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
  2672. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
  2673. }
  2674. .has-error .input-group-addon {
  2675. color: #a94442;
  2676. background-color: #f2dede;
  2677. border-color: #a94442;
  2678. }
  2679. .has-error .form-control-feedback {
  2680. color: #a94442;
  2681. }
  2682. .has-feedback label ~ .form-control-feedback {
  2683. top: 25px;
  2684. }
  2685. .has-feedback label.sr-only ~ .form-control-feedback {
  2686. top: 0;
  2687. }
  2688. .help-block {
  2689. display: block;
  2690. margin-top: 5px;
  2691. margin-bottom: 10px;
  2692. color: #737373;
  2693. }
  2694. @media (min-width: 768px) {
  2695. .form-inline .form-group {
  2696. display: inline-block;
  2697. margin-bottom: 0;
  2698. vertical-align: middle;
  2699. }
  2700. .form-inline .form-control {
  2701. display: inline-block;
  2702. width: auto;
  2703. vertical-align: middle;
  2704. }
  2705. .form-inline .form-control-static {
  2706. display: inline-block;
  2707. }
  2708. .form-inline .input-group {
  2709. display: inline-table;
  2710. vertical-align: middle;
  2711. }
  2712. .form-inline .input-group .input-group-addon,
  2713. .form-inline .input-group .input-group-btn,
  2714. .form-inline .input-group .form-control {
  2715. width: auto;
  2716. }
  2717. .form-inline .input-group > .form-control {
  2718. width: 100%;
  2719. }
  2720. .form-inline .control-label {
  2721. margin-bottom: 0;
  2722. vertical-align: middle;
  2723. }
  2724. .form-inline .radio,
  2725. .form-inline .checkbox {
  2726. display: inline-block;
  2727. margin-top: 0;
  2728. margin-bottom: 0;
  2729. vertical-align: middle;
  2730. }
  2731. .form-inline .radio label,
  2732. .form-inline .checkbox label {
  2733. padding-left: 0;
  2734. }
  2735. .form-inline .radio input[type="radio"],
  2736. .form-inline .checkbox input[type="checkbox"] {
  2737. position: relative;
  2738. margin-left: 0;
  2739. }
  2740. .form-inline .has-feedback .form-control-feedback {
  2741. top: 0;
  2742. }
  2743. }
  2744. .form-horizontal .radio,
  2745. .form-horizontal .checkbox,
  2746. .form-horizontal .radio-inline,
  2747. .form-horizontal .checkbox-inline {
  2748. padding-top: 7px;
  2749. margin-top: 0;
  2750. margin-bottom: 0;
  2751. }
  2752. .form-horizontal .radio,
  2753. .form-horizontal .checkbox {
  2754. min-height: 27px;
  2755. }
  2756. .form-horizontal .form-group {
  2757. margin-right: -15px;
  2758. margin-left: -15px;
  2759. }
  2760. @media (min-width: 768px) {
  2761. .form-horizontal .control-label {
  2762. padding-top: 7px;
  2763. margin-bottom: 0;
  2764. text-align: right;
  2765. }
  2766. }
  2767. .form-horizontal .has-feedback .form-control-feedback {
  2768. right: 15px;
  2769. }
  2770. @media (min-width: 768px) {
  2771. .form-horizontal .form-group-lg .control-label {
  2772. padding-top: 14.3px;
  2773. }
  2774. }
  2775. @media (min-width: 768px) {
  2776. .form-horizontal .form-group-sm .control-label {
  2777. padding-top: 6px;
  2778. }
  2779. }
  2780. /*.btn {
  2781. display: inline-block;
  2782. padding: 6px 12px;
  2783. margin-bottom: 0;
  2784. font-size: 14px;
  2785. font-weight: normal;
  2786. line-height: 1.42857143;
  2787. text-align: center;
  2788. white-space: nowrap;
  2789. vertical-align: middle;
  2790. -ms-touch-action: manipulation;
  2791. touch-action: manipulation;
  2792. cursor: pointer;
  2793. -webkit-user-select: none;
  2794. -moz-user-select: none;
  2795. -ms-user-select: none;
  2796. user-select: none;
  2797. background-image: none;
  2798. border: 1px solid transparent;
  2799. border-radius: 4px;
  2800. }
  2801. .btn:focus,
  2802. .btn:active:focus,
  2803. .btn.active:focus,
  2804. .btn.focus,
  2805. .btn:active.focus,
  2806. .btn.active.focus {
  2807. outline: thin dotted;
  2808. outline: 5px auto -webkit-focus-ring-color;
  2809. outline-offset: -2px;
  2810. }
  2811. .btn:hover,
  2812. .btn:focus,
  2813. .btn.focus {
  2814. color: #333;
  2815. text-decoration: none;
  2816. }
  2817. .btn:active,
  2818. .btn.active {
  2819. background-image: none;
  2820. outline: 0;
  2821. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2822. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2823. }
  2824. .btn.disabled,
  2825. .btn[disabled],
  2826. fieldset[disabled] .btn {
  2827. pointer-events: none;
  2828. cursor: not-allowed;
  2829. filter: alpha(opacity=65);
  2830. -webkit-box-shadow: none;
  2831. box-shadow: none;
  2832. opacity: .65;
  2833. }
  2834. .btn-default {
  2835. color: #333;
  2836. background-color: #fff;
  2837. border-color: #ccc;
  2838. }
  2839. .btn-default:hover,
  2840. .btn-default:focus,
  2841. .btn-default.focus,
  2842. .btn-default:active,
  2843. .btn-default.active,
  2844. .open > .dropdown-toggle.btn-default {
  2845. color: #333;
  2846. background-color: #e6e6e6;
  2847. border-color: #adadad;
  2848. }
  2849. .btn-default:active,
  2850. .btn-default.active,
  2851. .open > .dropdown-toggle.btn-default {
  2852. background-image: none;
  2853. }
  2854. .btn-default.disabled,
  2855. .btn-default[disabled],
  2856. fieldset[disabled] .btn-default,
  2857. .btn-default.disabled:hover,
  2858. .btn-default[disabled]:hover,
  2859. fieldset[disabled] .btn-default:hover,
  2860. .btn-default.disabled:focus,
  2861. .btn-default[disabled]:focus,
  2862. fieldset[disabled] .btn-default:focus,
  2863. .btn-default.disabled.focus,
  2864. .btn-default[disabled].focus,
  2865. fieldset[disabled] .btn-default.focus,
  2866. .btn-default.disabled:active,
  2867. .btn-default[disabled]:active,
  2868. fieldset[disabled] .btn-default:active,
  2869. .btn-default.disabled.active,
  2870. .btn-default[disabled].active,
  2871. fieldset[disabled] .btn-default.active {
  2872. background-color: #fff;
  2873. border-color: #ccc;
  2874. }
  2875. .btn-default .badge {
  2876. color: #fff;
  2877. background-color: #333;
  2878. }
  2879. .btn-primary {
  2880. color: #fff;
  2881. background-color: #428bca;
  2882. border-color: #357ebd;
  2883. }
  2884. .btn-primary:hover,
  2885. .btn-primary:focus,
  2886. .btn-primary.focus,
  2887. .btn-primary:active,
  2888. .btn-primary.active,
  2889. .open > .dropdown-toggle.btn-primary {
  2890. color: #fff;
  2891. background-color: #3071a9;
  2892. border-color: #285e8e;
  2893. }
  2894. .btn-primary:active,
  2895. .btn-primary.active,
  2896. .open > .dropdown-toggle.btn-primary {
  2897. background-image: none;
  2898. }
  2899. .btn-primary.disabled,
  2900. .btn-primary[disabled],
  2901. fieldset[disabled] .btn-primary,
  2902. .btn-primary.disabled:hover,
  2903. .btn-primary[disabled]:hover,
  2904. fieldset[disabled] .btn-primary:hover,
  2905. .btn-primary.disabled:focus,
  2906. .btn-primary[disabled]:focus,
  2907. fieldset[disabled] .btn-primary:focus,
  2908. .btn-primary.disabled.focus,
  2909. .btn-primary[disabled].focus,
  2910. fieldset[disabled] .btn-primary.focus,
  2911. .btn-primary.disabled:active,
  2912. .btn-primary[disabled]:active,
  2913. fieldset[disabled] .btn-primary:active,
  2914. .btn-primary.disabled.active,
  2915. .btn-primary[disabled].active,
  2916. fieldset[disabled] .btn-primary.active {
  2917. background-color: #428bca;
  2918. border-color: #357ebd;
  2919. }
  2920. .btn-primary .badge {
  2921. color: #428bca;
  2922. background-color: #fff;
  2923. }
  2924. .btn-success {
  2925. color: #fff;
  2926. background-color: #5cb85c;
  2927. border-color: #4cae4c;
  2928. }
  2929. .btn-success:hover,
  2930. .btn-success:focus,
  2931. .btn-success.focus,
  2932. .btn-success:active,
  2933. .btn-success.active,
  2934. .open > .dropdown-toggle.btn-success {
  2935. color: #fff;
  2936. background-color: #449d44;
  2937. border-color: #398439;
  2938. }
  2939. .btn-success:active,
  2940. .btn-success.active,
  2941. .open > .dropdown-toggle.btn-success {
  2942. background-image: none;
  2943. }
  2944. .btn-success.disabled,
  2945. .btn-success[disabled],
  2946. fieldset[disabled] .btn-success,
  2947. .btn-success.disabled:hover,
  2948. .btn-success[disabled]:hover,
  2949. fieldset[disabled] .btn-success:hover,
  2950. .btn-success.disabled:focus,
  2951. .btn-success[disabled]:focus,
  2952. fieldset[disabled] .btn-success:focus,
  2953. .btn-success.disabled.focus,
  2954. .btn-success[disabled].focus,
  2955. fieldset[disabled] .btn-success.focus,
  2956. .btn-success.disabled:active,
  2957. .btn-success[disabled]:active,
  2958. fieldset[disabled] .btn-success:active,
  2959. .btn-success.disabled.active,
  2960. .btn-success[disabled].active,
  2961. fieldset[disabled] .btn-success.active {
  2962. background-color: #5cb85c;
  2963. border-color: #4cae4c;
  2964. }
  2965. .btn-success .badge {
  2966. color: #5cb85c;
  2967. background-color: #fff;
  2968. }
  2969. .btn-info {
  2970. color: #fff;
  2971. background-color: #5bc0de;
  2972. border-color: #46b8da;
  2973. }
  2974. .btn-info:hover,
  2975. .btn-info:focus,
  2976. .btn-info.focus,
  2977. .btn-info:active,
  2978. .btn-info.active,
  2979. .open > .dropdown-toggle.btn-info {
  2980. color: #fff;
  2981. background-color: #31b0d5;
  2982. border-color: #269abc;
  2983. }
  2984. .btn-info:active,
  2985. .btn-info.active,
  2986. .open > .dropdown-toggle.btn-info {
  2987. background-image: none;
  2988. }
  2989. .btn-info.disabled,
  2990. .btn-info[disabled],
  2991. fieldset[disabled] .btn-info,
  2992. .btn-info.disabled:hover,
  2993. .btn-info[disabled]:hover,
  2994. fieldset[disabled] .btn-info:hover,
  2995. .btn-info.disabled:focus,
  2996. .btn-info[disabled]:focus,
  2997. fieldset[disabled] .btn-info:focus,
  2998. .btn-info.disabled.focus,
  2999. .btn-info[disabled].focus,
  3000. fieldset[disabled] .btn-info.focus,
  3001. .btn-info.disabled:active,
  3002. .btn-info[disabled]:active,
  3003. fieldset[disabled] .btn-info:active,
  3004. .btn-info.disabled.active,
  3005. .btn-info[disabled].active,
  3006. fieldset[disabled] .btn-info.active {
  3007. background-color: #5bc0de;
  3008. border-color: #46b8da;
  3009. }
  3010. .btn-info .badge {
  3011. color: #5bc0de;
  3012. background-color: #fff;
  3013. }
  3014. .btn-warning {
  3015. color: #fff;
  3016. background-color: #f0ad4e;
  3017. border-color: #eea236;
  3018. }
  3019. .btn-warning:hover,
  3020. .btn-warning:focus,
  3021. .btn-warning.focus,
  3022. .btn-warning:active,
  3023. .btn-warning.active,
  3024. .open > .dropdown-toggle.btn-warning {
  3025. color: #fff;
  3026. background-color: #ec971f;
  3027. border-color: #d58512;
  3028. }
  3029. .btn-warning:active,
  3030. .btn-warning.active,
  3031. .open > .dropdown-toggle.btn-warning {
  3032. background-image: none;
  3033. }
  3034. .btn-warning.disabled,
  3035. .btn-warning[disabled],
  3036. fieldset[disabled] .btn-warning,
  3037. .btn-warning.disabled:hover,
  3038. .btn-warning[disabled]:hover,
  3039. fieldset[disabled] .btn-warning:hover,
  3040. .btn-warning.disabled:focus,
  3041. .btn-warning[disabled]:focus,
  3042. fieldset[disabled] .btn-warning:focus,
  3043. .btn-warning.disabled.focus,
  3044. .btn-warning[disabled].focus,
  3045. fieldset[disabled] .btn-warning.focus,
  3046. .btn-warning.disabled:active,
  3047. .btn-warning[disabled]:active,
  3048. fieldset[disabled] .btn-warning:active,
  3049. .btn-warning.disabled.active,
  3050. .btn-warning[disabled].active,
  3051. fieldset[disabled] .btn-warning.active {
  3052. background-color: #f0ad4e;
  3053. border-color: #eea236;
  3054. }
  3055. .btn-warning .badge {
  3056. color: #f0ad4e;
  3057. background-color: #fff;
  3058. }
  3059. .btn-danger {
  3060. color: #fff;
  3061. background-color: #d9534f;
  3062. border-color: #d43f3a;
  3063. }
  3064. .btn-danger:hover,
  3065. .btn-danger:focus,
  3066. .btn-danger.focus,
  3067. .btn-danger:active,
  3068. .btn-danger.active,
  3069. .open > .dropdown-toggle.btn-danger {
  3070. color: #fff;
  3071. background-color: #c9302c;
  3072. border-color: #ac2925;
  3073. }
  3074. .btn-danger:active,
  3075. .btn-danger.active,
  3076. .open > .dropdown-toggle.btn-danger {
  3077. background-image: none;
  3078. }
  3079. .btn-danger.disabled,
  3080. .btn-danger[disabled],
  3081. fieldset[disabled] .btn-danger,
  3082. .btn-danger.disabled:hover,
  3083. .btn-danger[disabled]:hover,
  3084. fieldset[disabled] .btn-danger:hover,
  3085. .btn-danger.disabled:focus,
  3086. .btn-danger[disabled]:focus,
  3087. fieldset[disabled] .btn-danger:focus,
  3088. .btn-danger.disabled.focus,
  3089. .btn-danger[disabled].focus,
  3090. fieldset[disabled] .btn-danger.focus,
  3091. .btn-danger.disabled:active,
  3092. .btn-danger[disabled]:active,
  3093. fieldset[disabled] .btn-danger:active,
  3094. .btn-danger.disabled.active,
  3095. .btn-danger[disabled].active,
  3096. fieldset[disabled] .btn-danger.active {
  3097. background-color: #d9534f;
  3098. border-color: #d43f3a;
  3099. }
  3100. .btn-danger .badge {
  3101. color: #d9534f;
  3102. background-color: #fff;
  3103. }
  3104. .btn-link {
  3105. font-weight: normal;
  3106. color: #428bca;
  3107. border-radius: 0;
  3108. }
  3109. .btn-link,
  3110. .btn-link:active,
  3111. .btn-link.active,
  3112. .btn-link[disabled],
  3113. fieldset[disabled] .btn-link {
  3114. background-color: transparent;
  3115. -webkit-box-shadow: none;
  3116. box-shadow: none;
  3117. }
  3118. .btn-link,
  3119. .btn-link:hover,
  3120. .btn-link:focus,
  3121. .btn-link:active {
  3122. border-color: transparent;
  3123. }
  3124. .btn-link:hover,
  3125. .btn-link:focus {
  3126. color: #2a6496;
  3127. text-decoration: underline;
  3128. background-color: transparent;
  3129. }
  3130. .btn-link[disabled]:hover,
  3131. fieldset[disabled] .btn-link:hover,
  3132. .btn-link[disabled]:focus,
  3133. fieldset[disabled] .btn-link:focus {
  3134. color: #777;
  3135. text-decoration: none;
  3136. }
  3137. .btn-lg,
  3138. .btn-group-lg > .btn {
  3139. padding: 10px 16px;
  3140. font-size: 18px;
  3141. line-height: 1.33;
  3142. border-radius: 6px;
  3143. }
  3144. .btn-sm,
  3145. .btn-group-sm > .btn {
  3146. padding: 5px 10px;
  3147. font-size: 12px;
  3148. line-height: 1.5;
  3149. border-radius: 3px;
  3150. }
  3151. .btn-xs,
  3152. .btn-group-xs > .btn {
  3153. padding: 1px 5px;
  3154. font-size: 12px;
  3155. line-height: 1.5;
  3156. border-radius: 3px;
  3157. }
  3158. .btn-block {
  3159. display: block;
  3160. width: 100%;
  3161. }
  3162. .btn-block + .btn-block {
  3163. margin-top: 5px;
  3164. }*/
  3165. input[type="submit"].btn-block,
  3166. input[type="reset"].btn-block,
  3167. input[type="button"].btn-block {
  3168. width: 100%;
  3169. }
  3170. .fade {
  3171. opacity: 0;
  3172. -webkit-transition: opacity .15s linear;
  3173. -o-transition: opacity .15s linear;
  3174. transition: opacity .15s linear;
  3175. }
  3176. .fade.in {
  3177. opacity: 1;
  3178. }
  3179. .collapse {
  3180. display: none;
  3181. visibility: hidden;
  3182. }
  3183. .collapse.in {
  3184. display: block;
  3185. visibility: visible;
  3186. }
  3187. tr.collapse.in {
  3188. display: table-row;
  3189. }
  3190. tbody.collapse.in {
  3191. display: table-row-group;
  3192. }
  3193. .collapsing {
  3194. position: relative;
  3195. height: 0;
  3196. overflow: hidden;
  3197. -webkit-transition-timing-function: ease;
  3198. -o-transition-timing-function: ease;
  3199. transition-timing-function: ease;
  3200. -webkit-transition-duration: .35s;
  3201. -o-transition-duration: .35s;
  3202. transition-duration: .35s;
  3203. -webkit-transition-property: height, visibility;
  3204. -o-transition-property: height, visibility;
  3205. transition-property: height, visibility;
  3206. }
  3207. .caret {
  3208. display: inline-block;
  3209. width: 0;
  3210. height: 0;
  3211. margin-left: 2px;
  3212. vertical-align: middle;
  3213. border-top: 4px solid;
  3214. border-right: 4px solid transparent;
  3215. border-left: 4px solid transparent;
  3216. }
  3217. .dropdown {
  3218. position: relative;
  3219. }
  3220. .dropdown-toggle:focus {
  3221. outline: 0;
  3222. }
  3223. .dropdown-menu {
  3224. position: absolute;
  3225. top: 100%;
  3226. left: 0;
  3227. z-index: 1000;
  3228. display: none;
  3229. float: left;
  3230. min-width: 160px;
  3231. padding: 5px 0;
  3232. margin: 2px 0 0;
  3233. font-size: 14px;
  3234. text-align: left;
  3235. list-style: none;
  3236. background-color: #fff;
  3237. -webkit-background-clip: padding-box;
  3238. background-clip: padding-box;
  3239. border: 1px solid #ccc;
  3240. border: 1px solid rgba(0, 0, 0, .15);
  3241. border-radius: 4px;
  3242. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  3243. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  3244. }
  3245. .dropdown-menu.pull-right {
  3246. right: 0;
  3247. left: auto;
  3248. }
  3249. .dropdown-menu .divider {
  3250. height: 1px;
  3251. margin: 9px 0;
  3252. overflow: hidden;
  3253. background-color: #e5e5e5;
  3254. }
  3255. .dropdown-menu > li > a {
  3256. display: block;
  3257. padding: 3px 20px;
  3258. clear: both;
  3259. font-weight: normal;
  3260. line-height: 1.42857143;
  3261. color: #333;
  3262. white-space: nowrap;
  3263. }
  3264. .dropdown-menu > li > a:hover,
  3265. .dropdown-menu > li > a:focus {
  3266. color: #262626;
  3267. text-decoration: none;
  3268. background-color: #f5f5f5;
  3269. }
  3270. .dropdown-menu > .active > a,
  3271. .dropdown-menu > .active > a:hover,
  3272. .dropdown-menu > .active > a:focus {
  3273. color: #fff;
  3274. text-decoration: none;
  3275. background-color: #428bca;
  3276. outline: 0;
  3277. }
  3278. .dropdown-menu > .disabled > a,
  3279. .dropdown-menu > .disabled > a:hover,
  3280. .dropdown-menu > .disabled > a:focus {
  3281. color: #777;
  3282. }
  3283. .dropdown-menu > .disabled > a:hover,
  3284. .dropdown-menu > .disabled > a:focus {
  3285. text-decoration: none;
  3286. cursor: not-allowed;
  3287. background-color: transparent;
  3288. background-image: none;
  3289. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3290. }
  3291. .open > .dropdown-menu {
  3292. display: block;
  3293. }
  3294. .open > a {
  3295. outline: 0;
  3296. }
  3297. .dropdown-menu-right {
  3298. right: 0;
  3299. left: auto;
  3300. }
  3301. .dropdown-menu-left {
  3302. right: auto;
  3303. left: 0;
  3304. }
  3305. .dropdown-header {
  3306. display: block;
  3307. padding: 3px 20px;
  3308. font-size: 12px;
  3309. line-height: 1.42857143;
  3310. color: #777;
  3311. white-space: nowrap;
  3312. }
  3313. .dropdown-backdrop {
  3314. position: fixed;
  3315. top: 0;
  3316. right: 0;
  3317. bottom: 0;
  3318. left: 0;
  3319. z-index: 990;
  3320. }
  3321. .pull-right > .dropdown-menu {
  3322. right: 0;
  3323. left: auto;
  3324. }
  3325. .dropup .caret,
  3326. .navbar-fixed-bottom .dropdown .caret {
  3327. content: "";
  3328. border-top: 0;
  3329. border-bottom: 4px solid;
  3330. }
  3331. .dropup .dropdown-menu,
  3332. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3333. top: auto;
  3334. bottom: 100%;
  3335. margin-bottom: 1px;
  3336. }
  3337. @media (min-width: 768px) {
  3338. .navbar-right .dropdown-menu {
  3339. right: 0;
  3340. left: auto;
  3341. }
  3342. .navbar-right .dropdown-menu-left {
  3343. right: auto;
  3344. left: 0;
  3345. }
  3346. }
  3347. .btn-group,
  3348. .btn-group-vertical {
  3349. position: relative;
  3350. display: inline-block;
  3351. vertical-align: middle;
  3352. }
  3353. .btn-group > .btn,
  3354. .btn-group-vertical > .btn {
  3355. position: relative;
  3356. float: left;
  3357. }
  3358. .btn-group > .btn:hover,
  3359. .btn-group-vertical > .btn:hover,
  3360. .btn-group > .btn:focus,
  3361. .btn-group-vertical > .btn:focus,
  3362. .btn-group > .btn:active,
  3363. .btn-group-vertical > .btn:active,
  3364. .btn-group > .btn.active,
  3365. .btn-group-vertical > .btn.active {
  3366. z-index: 2;
  3367. }
  3368. .btn-group > .btn:focus,
  3369. .btn-group-vertical > .btn:focus {
  3370. outline: 0;
  3371. }
  3372. .btn-group .btn + .btn,
  3373. .btn-group .btn + .btn-group,
  3374. .btn-group .btn-group + .btn,
  3375. .btn-group .btn-group + .btn-group {
  3376. margin-left: -1px;
  3377. }
  3378. .btn-toolbar {
  3379. margin-left: -5px;
  3380. }
  3381. .btn-toolbar .btn-group,
  3382. .btn-toolbar .input-group {
  3383. float: left;
  3384. }
  3385. .btn-toolbar > .btn,
  3386. .btn-toolbar > .btn-group,
  3387. .btn-toolbar > .input-group {
  3388. margin-left: 5px;
  3389. }
  3390. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3391. border-radius: 0;
  3392. }
  3393. .btn-group > .btn:first-child {
  3394. margin-left: 0;
  3395. }
  3396. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3397. border-top-right-radius: 0;
  3398. border-bottom-right-radius: 0;
  3399. }
  3400. .btn-group > .btn:last-child:not(:first-child),
  3401. .btn-group > .dropdown-toggle:not(:first-child) {
  3402. border-top-left-radius: 0;
  3403. border-bottom-left-radius: 0;
  3404. }
  3405. .btn-group > .btn-group {
  3406. float: left;
  3407. }
  3408. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3409. border-radius: 0;
  3410. }
  3411. .btn-group > .btn-group:first-child > .btn:last-child,
  3412. .btn-group > .btn-group:first-child > .dropdown-toggle {
  3413. border-top-right-radius: 0;
  3414. border-bottom-right-radius: 0;
  3415. }
  3416. .btn-group > .btn-group:last-child > .btn:first-child {
  3417. border-top-left-radius: 0;
  3418. border-bottom-left-radius: 0;
  3419. }
  3420. .btn-group .dropdown-toggle:active,
  3421. .btn-group.open .dropdown-toggle {
  3422. outline: 0;
  3423. }
  3424. .btn-group > .btn + .dropdown-toggle {
  3425. padding-right: 8px;
  3426. padding-left: 8px;
  3427. }
  3428. .btn-group > .btn-lg + .dropdown-toggle {
  3429. padding-right: 12px;
  3430. padding-left: 12px;
  3431. }
  3432. .btn-group.open .dropdown-toggle {
  3433. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3434. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3435. }
  3436. .btn-group.open .dropdown-toggle.btn-link {
  3437. -webkit-box-shadow: none;
  3438. box-shadow: none;
  3439. }
  3440. .btn .caret {
  3441. margin-left: 0;
  3442. }
  3443. .btn-lg .caret {
  3444. border-width: 5px 5px 0;
  3445. border-bottom-width: 0;
  3446. }
  3447. .dropup .btn-lg .caret {
  3448. border-width: 0 5px 5px;
  3449. }
  3450. .btn-group-vertical > .btn,
  3451. .btn-group-vertical > .btn-group,
  3452. .btn-group-vertical > .btn-group > .btn {
  3453. display: block;
  3454. float: none;
  3455. width: 100%;
  3456. max-width: 100%;
  3457. }
  3458. .btn-group-vertical > .btn-group > .btn {
  3459. float: none;
  3460. }
  3461. .btn-group-vertical > .btn + .btn,
  3462. .btn-group-vertical > .btn + .btn-group,
  3463. .btn-group-vertical > .btn-group + .btn,
  3464. .btn-group-vertical > .btn-group + .btn-group {
  3465. margin-top: -1px;
  3466. margin-left: 0;
  3467. }
  3468. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3469. border-radius: 0;
  3470. }
  3471. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3472. border-top-right-radius: 4px;
  3473. border-bottom-right-radius: 0;
  3474. border-bottom-left-radius: 0;
  3475. }
  3476. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3477. border-top-left-radius: 0;
  3478. border-top-right-radius: 0;
  3479. border-bottom-left-radius: 4px;
  3480. }
  3481. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3482. border-radius: 0;
  3483. }
  3484. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3485. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3486. border-bottom-right-radius: 0;
  3487. border-bottom-left-radius: 0;
  3488. }
  3489. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3490. border-top-left-radius: 0;
  3491. border-top-right-radius: 0;
  3492. }
  3493. .btn-group-justified {
  3494. display: table;
  3495. width: 100%;
  3496. table-layout: fixed;
  3497. border-collapse: separate;
  3498. }
  3499. .btn-group-justified > .btn,
  3500. .btn-group-justified > .btn-group {
  3501. display: table-cell;
  3502. float: none;
  3503. width: 1%;
  3504. }
  3505. .btn-group-justified > .btn-group .btn {
  3506. width: 100%;
  3507. }
  3508. .btn-group-justified > .btn-group .dropdown-menu {
  3509. left: auto;
  3510. }
  3511. [data-toggle="buttons"] > .btn input[type="radio"],
  3512. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3513. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3514. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3515. position: absolute;
  3516. clip: rect(0, 0, 0, 0);
  3517. pointer-events: none;
  3518. }
  3519. .input-group {
  3520. position: relative;
  3521. display: table;
  3522. border-collapse: separate;
  3523. }
  3524. .input-group[class*="col-"] {
  3525. float: none;
  3526. padding-right: 0;
  3527. padding-left: 0;
  3528. }
  3529. .input-group .form-control {
  3530. position: relative;
  3531. z-index: 2;
  3532. float: left;
  3533. width: 100%;
  3534. margin-bottom: 0;
  3535. }
  3536. .input-group-lg > .form-control,
  3537. .input-group-lg > .input-group-addon,
  3538. .input-group-lg > .input-group-btn > .btn {
  3539. height: 46px;
  3540. padding: 10px 16px;
  3541. font-size: 18px;
  3542. line-height: 1.33;
  3543. border-radius: 6px;
  3544. }
  3545. select.input-group-lg > .form-control,
  3546. select.input-group-lg > .input-group-addon,
  3547. select.input-group-lg > .input-group-btn > .btn {
  3548. height: 46px;
  3549. line-height: 46px;
  3550. }
  3551. textarea.input-group-lg > .form-control,
  3552. textarea.input-group-lg > .input-group-addon,
  3553. textarea.input-group-lg > .input-group-btn > .btn,
  3554. select[multiple].input-group-lg > .form-control,
  3555. select[multiple].input-group-lg > .input-group-addon,
  3556. select[multiple].input-group-lg > .input-group-btn > .btn {
  3557. height: auto;
  3558. }
  3559. .input-group-sm > .form-control,
  3560. .input-group-sm > .input-group-addon,
  3561. .input-group-sm > .input-group-btn > .btn {
  3562. height: 30px;
  3563. padding: 5px 10px;
  3564. font-size: 12px;
  3565. line-height: 1.5;
  3566. border-radius: 3px;
  3567. }
  3568. select.input-group-sm > .form-control,
  3569. select.input-group-sm > .input-group-addon,
  3570. select.input-group-sm > .input-group-btn > .btn {
  3571. height: 30px;
  3572. line-height: 30px;
  3573. }
  3574. textarea.input-group-sm > .form-control,
  3575. textarea.input-group-sm > .input-group-addon,
  3576. textarea.input-group-sm > .input-group-btn > .btn,
  3577. select[multiple].input-group-sm > .form-control,
  3578. select[multiple].input-group-sm > .input-group-addon,
  3579. select[multiple].input-group-sm > .input-group-btn > .btn {
  3580. height: auto;
  3581. }
  3582. .input-group-addon,
  3583. .input-group-btn,
  3584. .input-group .form-control {
  3585. display: table-cell;
  3586. }
  3587. .input-group-addon:not(:first-child):not(:last-child),
  3588. .input-group-btn:not(:first-child):not(:last-child),
  3589. .input-group .form-control:not(:first-child):not(:last-child) {
  3590. border-radius: 0;
  3591. }
  3592. .input-group-addon,
  3593. .input-group-btn {
  3594. width: 1%;
  3595. white-space: nowrap;
  3596. vertical-align: middle;
  3597. }
  3598. .input-group-addon {
  3599. padding: 6px 12px;
  3600. font-size: 14px;
  3601. font-weight: normal;
  3602. line-height: 1;
  3603. color: #555;
  3604. text-align: center;
  3605. background-color: #eee;
  3606. border: 1px solid #ccc;
  3607. border-radius: 4px;
  3608. }
  3609. .input-group-addon.input-sm {
  3610. padding: 5px 10px;
  3611. font-size: 12px;
  3612. border-radius: 3px;
  3613. }
  3614. .input-group-addon.input-lg {
  3615. padding: 10px 16px;
  3616. font-size: 18px;
  3617. border-radius: 6px;
  3618. }
  3619. .input-group-addon input[type="radio"],
  3620. .input-group-addon input[type="checkbox"] {
  3621. margin-top: 0;
  3622. }
  3623. .input-group .form-control:first-child,
  3624. .input-group-addon:first-child,
  3625. .input-group-btn:first-child > .btn,
  3626. .input-group-btn:first-child > .btn-group > .btn,
  3627. .input-group-btn:first-child > .dropdown-toggle,
  3628. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3629. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3630. border-top-right-radius: 0;
  3631. border-bottom-right-radius: 0;
  3632. }
  3633. .input-group-addon:first-child {
  3634. border-right: 0;
  3635. }
  3636. .input-group .form-control:last-child,
  3637. .input-group-addon:last-child,
  3638. .input-group-btn:last-child > .btn,
  3639. .input-group-btn:last-child > .btn-group > .btn,
  3640. .input-group-btn:last-child > .dropdown-toggle,
  3641. .input-group-btn:first-child > .btn:not(:first-child),
  3642. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3643. border-top-left-radius: 0;
  3644. border-bottom-left-radius: 0;
  3645. }
  3646. .input-group-addon:last-child {
  3647. border-left: 0;
  3648. }
  3649. .input-group-btn {
  3650. position: relative;
  3651. font-size: 0;
  3652. white-space: nowrap;
  3653. }
  3654. .input-group-btn > .btn {
  3655. position: relative;
  3656. }
  3657. .input-group-btn > .btn + .btn {
  3658. margin-left: -1px;
  3659. }
  3660. .input-group-btn > .btn:hover,
  3661. .input-group-btn > .btn:focus,
  3662. .input-group-btn > .btn:active {
  3663. z-index: 2;
  3664. }
  3665. .input-group-btn:first-child > .btn,
  3666. .input-group-btn:first-child > .btn-group {
  3667. margin-right: -1px;
  3668. }
  3669. .input-group-btn:last-child > .btn,
  3670. .input-group-btn:last-child > .btn-group {
  3671. margin-left: -1px;
  3672. }
  3673. .nav {
  3674. padding-left: 0;
  3675. margin-bottom: 0;
  3676. list-style: none;
  3677. }
  3678. .nav > li {
  3679. position: relative;
  3680. display: block;
  3681. }
  3682. .nav > li > a {
  3683. position: relative;
  3684. display: block;
  3685. padding: 10px 15px;
  3686. }
  3687. .nav > li > a:hover,
  3688. .nav > li > a:focus {
  3689. text-decoration: none;
  3690. background-color: #eee;
  3691. }
  3692. .nav > li.disabled > a {
  3693. color: #777;
  3694. }
  3695. .nav > li.disabled > a:hover,
  3696. .nav > li.disabled > a:focus {
  3697. color: #777;
  3698. text-decoration: none;
  3699. cursor: not-allowed;
  3700. background-color: transparent;
  3701. }
  3702. .nav .open > a,
  3703. .nav .open > a:hover,
  3704. .nav .open > a:focus {
  3705. background-color: #eee;
  3706. border-color: #428bca;
  3707. }
  3708. .nav .nav-divider {
  3709. height: 1px;
  3710. margin: 9px 0;
  3711. overflow: hidden;
  3712. background-color: #e5e5e5;
  3713. }
  3714. .nav > li > a > img {
  3715. max-width: none;
  3716. }
  3717. .nav-tabs {
  3718. border-bottom: 1px solid #ddd;
  3719. }
  3720. .nav-tabs > li {
  3721. float: left;
  3722. margin-bottom: -1px;
  3723. }
  3724. .nav-tabs > li > a {
  3725. margin-right: 2px;
  3726. line-height: 1.42857143;
  3727. border: 1px solid transparent;
  3728. border-radius: 4px 4px 0 0;
  3729. }
  3730. .nav-tabs > li > a:hover {
  3731. border-color: #eee #eee #ddd;
  3732. }
  3733. .nav-tabs > li.active > a,
  3734. .nav-tabs > li.active > a:hover,
  3735. .nav-tabs > li.active > a:focus {
  3736. color: #555;
  3737. cursor: default;
  3738. background-color: #fff;
  3739. border: 1px solid #ddd;
  3740. border-bottom-color: transparent;
  3741. }
  3742. .nav-tabs.nav-justified {
  3743. width: 100%;
  3744. border-bottom: 0;
  3745. }
  3746. .nav-tabs.nav-justified > li {
  3747. float: none;
  3748. }
  3749. .nav-tabs.nav-justified > li > a {
  3750. margin-bottom: 5px;
  3751. text-align: center;
  3752. }
  3753. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  3754. top: auto;
  3755. left: auto;
  3756. }
  3757. @media (min-width: 768px) {
  3758. .nav-tabs.nav-justified > li {
  3759. display: table-cell;
  3760. width: 1%;
  3761. }
  3762. .nav-tabs.nav-justified > li > a {
  3763. margin-bottom: 0;
  3764. }
  3765. }
  3766. .nav-tabs.nav-justified > li > a {
  3767. margin-right: 0;
  3768. border-radius: 4px;
  3769. }
  3770. .nav-tabs.nav-justified > .active > a,
  3771. .nav-tabs.nav-justified > .active > a:hover,
  3772. .nav-tabs.nav-justified > .active > a:focus {
  3773. border: 1px solid #ddd;
  3774. }
  3775. @media (min-width: 768px) {
  3776. .nav-tabs.nav-justified > li > a {
  3777. border-bottom: 1px solid #ddd;
  3778. border-radius: 4px 4px 0 0;
  3779. }
  3780. .nav-tabs.nav-justified > .active > a,
  3781. .nav-tabs.nav-justified > .active > a:hover,
  3782. .nav-tabs.nav-justified > .active > a:focus {
  3783. border-bottom-color: #fff;
  3784. }
  3785. }
  3786. .nav-pills > li {
  3787. float: left;
  3788. }
  3789. .nav-pills > li > a {
  3790. border-radius: 4px;
  3791. }
  3792. .nav-pills > li + li {
  3793. margin-left: 2px;
  3794. }
  3795. .nav-pills > li.active > a,
  3796. .nav-pills > li.active > a:hover,
  3797. .nav-pills > li.active > a:focus {
  3798. color: #fff;
  3799. background-color: #428bca;
  3800. }
  3801. .nav-stacked > li {
  3802. float: none;
  3803. }
  3804. .nav-stacked > li + li {
  3805. margin-top: 2px;
  3806. margin-left: 0;
  3807. }
  3808. .nav-justified {
  3809. width: 100%;
  3810. }
  3811. .nav-justified > li {
  3812. float: none;
  3813. }
  3814. .nav-justified > li > a {
  3815. margin-bottom: 5px;
  3816. text-align: center;
  3817. }
  3818. .nav-justified > .dropdown .dropdown-menu {
  3819. top: auto;
  3820. left: auto;
  3821. }
  3822. @media (min-width: 768px) {
  3823. .nav-justified > li {
  3824. display: table-cell;
  3825. width: 1%;
  3826. }
  3827. .nav-justified > li > a {
  3828. margin-bottom: 0;
  3829. }
  3830. }
  3831. .nav-tabs-justified {
  3832. border-bottom: 0;
  3833. }
  3834. .nav-tabs-justified > li > a {
  3835. margin-right: 0;
  3836. border-radius: 4px;
  3837. }
  3838. .nav-tabs-justified > .active > a,
  3839. .nav-tabs-justified > .active > a:hover,
  3840. .nav-tabs-justified > .active > a:focus {
  3841. border: 1px solid #ddd;
  3842. }
  3843. @media (min-width: 768px) {
  3844. .nav-tabs-justified > li > a {
  3845. border-bottom: 1px solid #ddd;
  3846. border-radius: 4px 4px 0 0;
  3847. }
  3848. .nav-tabs-justified > .active > a,
  3849. .nav-tabs-justified > .active > a:hover,
  3850. .nav-tabs-justified > .active > a:focus {
  3851. border-bottom-color: #fff;
  3852. }
  3853. }
  3854. .tab-content > .tab-pane {
  3855. display: none;
  3856. visibility: hidden;
  3857. }
  3858. .tab-content > .active {
  3859. display: block;
  3860. visibility: visible;
  3861. }
  3862. .nav-tabs .dropdown-menu {
  3863. margin-top: -1px;
  3864. border-top-left-radius: 0;
  3865. border-top-right-radius: 0;
  3866. }
  3867. .navbar {
  3868. position: relative;
  3869. min-height: 50px;
  3870. margin-bottom: 20px;
  3871. border: 1px solid transparent;
  3872. }
  3873. @media (min-width: 768px) {
  3874. .navbar {
  3875. border-radius: 4px;
  3876. }
  3877. }
  3878. @media (min-width: 768px) {
  3879. .navbar-header {
  3880. float: left;
  3881. }
  3882. }
  3883. .navbar-collapse {
  3884. padding-right: 15px;
  3885. padding-left: 15px;
  3886. overflow-x: visible;
  3887. -webkit-overflow-scrolling: touch;
  3888. border-top: 1px solid transparent;
  3889. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  3890. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  3891. }
  3892. .navbar-collapse.in {
  3893. overflow-y: auto;
  3894. }
  3895. @media (min-width: 768px) {
  3896. .navbar-collapse {
  3897. width: auto;
  3898. border-top: 0;
  3899. -webkit-box-shadow: none;
  3900. box-shadow: none;
  3901. }
  3902. .navbar-collapse.collapse {
  3903. display: block !important;
  3904. height: auto !important;
  3905. padding-bottom: 0;
  3906. overflow: visible !important;
  3907. visibility: visible !important;
  3908. }
  3909. .navbar-collapse.in {
  3910. overflow-y: visible;
  3911. }
  3912. .navbar-fixed-top .navbar-collapse,
  3913. .navbar-static-top .navbar-collapse,
  3914. .navbar-fixed-bottom .navbar-collapse {
  3915. padding-right: 0;
  3916. padding-left: 0;
  3917. }
  3918. }
  3919. .navbar-fixed-top .navbar-collapse,
  3920. .navbar-fixed-bottom .navbar-collapse {
  3921. max-height: 340px;
  3922. }
  3923. @media (max-device-width: 480px) and (orientation: landscape) {
  3924. .navbar-fixed-top .navbar-collapse,
  3925. .navbar-fixed-bottom .navbar-collapse {
  3926. max-height: 200px;
  3927. }
  3928. }
  3929. .container > .navbar-header,
  3930. .container-fluid > .navbar-header,
  3931. .container > .navbar-collapse,
  3932. .container-fluid > .navbar-collapse {
  3933. margin-right: -15px;
  3934. margin-left: -15px;
  3935. }
  3936. @media (min-width: 768px) {
  3937. .container > .navbar-header,
  3938. .container-fluid > .navbar-header,
  3939. .container > .navbar-collapse,
  3940. .container-fluid > .navbar-collapse {
  3941. margin-right: 0;
  3942. margin-left: 0;
  3943. }
  3944. }
  3945. .navbar-static-top {
  3946. z-index: 1000;
  3947. border-width: 0 0 1px;
  3948. }
  3949. @media (min-width: 768px) {
  3950. .navbar-static-top {
  3951. border-radius: 0;
  3952. }
  3953. }
  3954. .navbar-fixed-top,
  3955. .navbar-fixed-bottom {
  3956. position: fixed;
  3957. right: 0;
  3958. left: 0;
  3959. z-index: 1030;
  3960. }
  3961. @media (min-width: 768px) {
  3962. .navbar-fixed-top,
  3963. .navbar-fixed-bottom {
  3964. border-radius: 0;
  3965. }
  3966. }
  3967. .navbar-fixed-top {
  3968. top: 0;
  3969. border-width: 0 0 1px;
  3970. }
  3971. .navbar-fixed-bottom {
  3972. bottom: 0;
  3973. margin-bottom: 0;
  3974. border-width: 1px 0 0;
  3975. }
  3976. .navbar-brand {
  3977. float: left;
  3978. height: 50px;
  3979. padding: 15px 15px;
  3980. font-size: 18px;
  3981. line-height: 20px;
  3982. }
  3983. .navbar-brand:hover,
  3984. .navbar-brand:focus {
  3985. text-decoration: none;
  3986. }
  3987. .navbar-brand > img {
  3988. display: block;
  3989. }
  3990. @media (min-width: 768px) {
  3991. .navbar > .container .navbar-brand,
  3992. .navbar > .container-fluid .navbar-brand {
  3993. margin-left: -15px;
  3994. }
  3995. }
  3996. .navbar-toggle {
  3997. position: relative;
  3998. float: right;
  3999. padding: 9px 10px;
  4000. margin-top: 8px;
  4001. margin-right: 15px;
  4002. margin-bottom: 8px;
  4003. background-color: transparent;
  4004. background-image: none;
  4005. border: 1px solid transparent;
  4006. border-radius: 4px;
  4007. }
  4008. .navbar-toggle:focus {
  4009. outline: 0;
  4010. }
  4011. .navbar-toggle .icon-bar {
  4012. display: block;
  4013. width: 22px;
  4014. height: 2px;
  4015. border-radius: 1px;
  4016. }
  4017. .navbar-toggle .icon-bar + .icon-bar {
  4018. margin-top: 4px;
  4019. }
  4020. @media (min-width: 768px) {
  4021. .navbar-toggle {
  4022. display: none;
  4023. }
  4024. }
  4025. .navbar-nav {
  4026. margin: 7.5px -15px;
  4027. }
  4028. .navbar-nav > li > a {
  4029. padding-top: 10px;
  4030. padding-bottom: 10px;
  4031. line-height: 20px;
  4032. }
  4033. @media (max-width: 767px) {
  4034. .navbar-nav .open .dropdown-menu {
  4035. position: static;
  4036. float: none;
  4037. width: auto;
  4038. margin-top: 0;
  4039. background-color: transparent;
  4040. border: 0;
  4041. -webkit-box-shadow: none;
  4042. box-shadow: none;
  4043. }
  4044. .navbar-nav .open .dropdown-menu > li > a,
  4045. .navbar-nav .open .dropdown-menu .dropdown-header {
  4046. padding: 5px 15px 5px 25px;
  4047. }
  4048. .navbar-nav .open .dropdown-menu > li > a {
  4049. line-height: 20px;
  4050. }
  4051. .navbar-nav .open .dropdown-menu > li > a:hover,
  4052. .navbar-nav .open .dropdown-menu > li > a:focus {
  4053. background-image: none;
  4054. }
  4055. }
  4056. @media (min-width: 768px) {
  4057. .navbar-nav {
  4058. float: left;
  4059. margin: 0;
  4060. }
  4061. .navbar-nav > li {
  4062. float: left;
  4063. }
  4064. .navbar-nav > li > a {
  4065. padding-top: 15px;
  4066. padding-bottom: 15px;
  4067. }
  4068. }
  4069. .navbar-form {
  4070. padding: 10px 15px;
  4071. margin-top: 8px;
  4072. margin-right: -15px;
  4073. margin-bottom: 8px;
  4074. margin-left: -15px;
  4075. border-top: 1px solid transparent;
  4076. border-bottom: 1px solid transparent;
  4077. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  4078. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  4079. }
  4080. @media (min-width: 768px) {
  4081. .navbar-form .form-group {
  4082. display: inline-block;
  4083. margin-bottom: 0;
  4084. vertical-align: middle;
  4085. }
  4086. .navbar-form .form-control {
  4087. display: inline-block;
  4088. width: auto;
  4089. vertical-align: middle;
  4090. }
  4091. .navbar-form .form-control-static {
  4092. display: inline-block;
  4093. }
  4094. .navbar-form .input-group {
  4095. display: inline-table;
  4096. vertical-align: middle;
  4097. }
  4098. .navbar-form .input-group .input-group-addon,
  4099. .navbar-form .input-group .input-group-btn,
  4100. .navbar-form .input-group .form-control {
  4101. width: auto;
  4102. }
  4103. .navbar-form .input-group > .form-control {
  4104. width: 100%;
  4105. }
  4106. .navbar-form .control-label {
  4107. margin-bottom: 0;
  4108. vertical-align: middle;
  4109. }
  4110. .navbar-form .radio,
  4111. .navbar-form .checkbox {
  4112. display: inline-block;
  4113. margin-top: 0;
  4114. margin-bottom: 0;
  4115. vertical-align: middle;
  4116. }
  4117. .navbar-form .radio label,
  4118. .navbar-form .checkbox label {
  4119. padding-left: 0;
  4120. }
  4121. .navbar-form .radio input[type="radio"],
  4122. .navbar-form .checkbox input[type="checkbox"] {
  4123. position: relative;
  4124. margin-left: 0;
  4125. }
  4126. .navbar-form .has-feedback .form-control-feedback {
  4127. top: 0;
  4128. }
  4129. }
  4130. @media (max-width: 767px) {
  4131. .navbar-form .form-group {
  4132. margin-bottom: 5px;
  4133. }
  4134. .navbar-form .form-group:last-child {
  4135. margin-bottom: 0;
  4136. }
  4137. }
  4138. @media (min-width: 768px) {
  4139. .navbar-form {
  4140. width: auto;
  4141. padding-top: 0;
  4142. padding-bottom: 0;
  4143. margin-right: 0;
  4144. margin-left: 0;
  4145. border: 0;
  4146. -webkit-box-shadow: none;
  4147. box-shadow: none;
  4148. }
  4149. }
  4150. .navbar-nav > li > .dropdown-menu {
  4151. margin-top: 0;
  4152. border-top-left-radius: 0;
  4153. border-top-right-radius: 0;
  4154. }
  4155. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4156. border-bottom-right-radius: 0;
  4157. border-bottom-left-radius: 0;
  4158. }
  4159. .navbar-btn {
  4160. margin-top: 8px;
  4161. margin-bottom: 8px;
  4162. }
  4163. .navbar-btn.btn-sm {
  4164. margin-top: 10px;
  4165. margin-bottom: 10px;
  4166. }
  4167. .navbar-btn.btn-xs {
  4168. margin-top: 14px;
  4169. margin-bottom: 14px;
  4170. }
  4171. .navbar-text {
  4172. margin-top: 15px;
  4173. margin-bottom: 15px;
  4174. }
  4175. @media (min-width: 768px) {
  4176. .navbar-text {
  4177. float: left;
  4178. margin-right: 15px;
  4179. margin-left: 15px;
  4180. }
  4181. }
  4182. @media (min-width: 768px) {
  4183. .navbar-left {
  4184. float: left !important;
  4185. }
  4186. .navbar-right {
  4187. float: right !important;
  4188. margin-right: -15px;
  4189. }
  4190. .navbar-right ~ .navbar-right {
  4191. margin-right: 0;
  4192. }
  4193. }
  4194. .navbar-default {
  4195. background-color: #f8f8f8;
  4196. border-color: #e7e7e7;
  4197. }
  4198. .navbar-default .navbar-brand {
  4199. color: #777;
  4200. }
  4201. .navbar-default .navbar-brand:hover,
  4202. .navbar-default .navbar-brand:focus {
  4203. color: #5e5e5e;
  4204. background-color: transparent;
  4205. }
  4206. .navbar-default .navbar-text {
  4207. color: #777;
  4208. }
  4209. .navbar-default .navbar-nav > li > a {
  4210. color: #777;
  4211. }
  4212. .navbar-default .navbar-nav > li > a:hover,
  4213. .navbar-default .navbar-nav > li > a:focus {
  4214. color: #333;
  4215. background-color: transparent;
  4216. }
  4217. .navbar-default .navbar-nav > .active > a,
  4218. .navbar-default .navbar-nav > .active > a:hover,
  4219. .navbar-default .navbar-nav > .active > a:focus {
  4220. color: #555;
  4221. background-color: #e7e7e7;
  4222. }
  4223. .navbar-default .navbar-nav > .disabled > a,
  4224. .navbar-default .navbar-nav > .disabled > a:hover,
  4225. .navbar-default .navbar-nav > .disabled > a:focus {
  4226. color: #ccc;
  4227. background-color: transparent;
  4228. }
  4229. .navbar-default .navbar-toggle {
  4230. border-color: #ddd;
  4231. }
  4232. .navbar-default .navbar-toggle:hover,
  4233. .navbar-default .navbar-toggle:focus {
  4234. background-color: #ddd;
  4235. }
  4236. .navbar-default .navbar-toggle .icon-bar {
  4237. background-color: #888;
  4238. }
  4239. .navbar-default .navbar-collapse,
  4240. .navbar-default .navbar-form {
  4241. border-color: #e7e7e7;
  4242. }
  4243. .navbar-default .navbar-nav > .open > a,
  4244. .navbar-default .navbar-nav > .open > a:hover,
  4245. .navbar-default .navbar-nav > .open > a:focus {
  4246. color: #555;
  4247. background-color: #e7e7e7;
  4248. }
  4249. @media (max-width: 767px) {
  4250. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4251. color: #777;
  4252. }
  4253. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4254. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4255. color: #333;
  4256. background-color: transparent;
  4257. }
  4258. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4259. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4260. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4261. color: #555;
  4262. background-color: #e7e7e7;
  4263. }
  4264. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4265. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4266. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4267. color: #ccc;
  4268. background-color: transparent;
  4269. }
  4270. }
  4271. .navbar-default .navbar-link {
  4272. color: #777;
  4273. }
  4274. .navbar-default .navbar-link:hover {
  4275. color: #333;
  4276. }
  4277. .navbar-default .btn-link {
  4278. color: #777;
  4279. }
  4280. .navbar-default .btn-link:hover,
  4281. .navbar-default .btn-link:focus {
  4282. color: #333;
  4283. }
  4284. .navbar-default .btn-link[disabled]:hover,
  4285. fieldset[disabled] .navbar-default .btn-link:hover,
  4286. .navbar-default .btn-link[disabled]:focus,
  4287. fieldset[disabled] .navbar-default .btn-link:focus {
  4288. color: #ccc;
  4289. }
  4290. .navbar-inverse {
  4291. background-color: #222;
  4292. border-color: #080808;
  4293. }
  4294. .navbar-inverse .navbar-brand {
  4295. color: #9d9d9d;
  4296. }
  4297. .navbar-inverse .navbar-brand:hover,
  4298. .navbar-inverse .navbar-brand:focus {
  4299. color: #fff;
  4300. background-color: transparent;
  4301. }
  4302. .navbar-inverse .navbar-text {
  4303. color: #9d9d9d;
  4304. }
  4305. .navbar-inverse .navbar-nav > li > a {
  4306. color: #9d9d9d;
  4307. }
  4308. .navbar-inverse .navbar-nav > li > a:hover,
  4309. .navbar-inverse .navbar-nav > li > a:focus {
  4310. color: #fff;
  4311. background-color: transparent;
  4312. }
  4313. .navbar-inverse .navbar-nav > .active > a,
  4314. .navbar-inverse .navbar-nav > .active > a:hover,
  4315. .navbar-inverse .navbar-nav > .active > a:focus {
  4316. color: #fff;
  4317. background-color: #080808;
  4318. }
  4319. .navbar-inverse .navbar-nav > .disabled > a,
  4320. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4321. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4322. color: #444;
  4323. background-color: transparent;
  4324. }
  4325. .navbar-inverse .navbar-toggle {
  4326. border-color: #333;
  4327. }
  4328. .navbar-inverse .navbar-toggle:hover,
  4329. .navbar-inverse .navbar-toggle:focus {
  4330. background-color: #333;
  4331. }
  4332. .navbar-inverse .navbar-toggle .icon-bar {
  4333. background-color: #fff;
  4334. }
  4335. .navbar-inverse .navbar-collapse,
  4336. .navbar-inverse .navbar-form {
  4337. border-color: #101010;
  4338. }
  4339. .navbar-inverse .navbar-nav > .open > a,
  4340. .navbar-inverse .navbar-nav > .open > a:hover,
  4341. .navbar-inverse .navbar-nav > .open > a:focus {
  4342. color: #fff;
  4343. background-color: #080808;
  4344. }
  4345. @media (max-width: 767px) {
  4346. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4347. border-color: #080808;
  4348. }
  4349. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4350. background-color: #080808;
  4351. }
  4352. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4353. color: #9d9d9d;
  4354. }
  4355. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4356. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4357. color: #fff;
  4358. background-color: transparent;
  4359. }
  4360. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4361. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4362. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4363. color: #fff;
  4364. background-color: #080808;
  4365. }
  4366. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4367. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4368. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4369. color: #444;
  4370. background-color: transparent;
  4371. }
  4372. }
  4373. .navbar-inverse .navbar-link {
  4374. color: #9d9d9d;
  4375. }
  4376. .navbar-inverse .navbar-link:hover {
  4377. color: #fff;
  4378. }
  4379. .navbar-inverse .btn-link {
  4380. color: #9d9d9d;
  4381. }
  4382. .navbar-inverse .btn-link:hover,
  4383. .navbar-inverse .btn-link:focus {
  4384. color: #fff;
  4385. }
  4386. .navbar-inverse .btn-link[disabled]:hover,
  4387. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4388. .navbar-inverse .btn-link[disabled]:focus,
  4389. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4390. color: #444;
  4391. }
  4392. .breadcrumb {
  4393. padding: 8px 15px;
  4394. margin-bottom: 20px;
  4395. list-style: none;
  4396. background-color: #f5f5f5;
  4397. border-radius: 4px;
  4398. }
  4399. .breadcrumb > li {
  4400. display: inline-block;
  4401. }
  4402. .breadcrumb > li + li:before {
  4403. padding: 0 5px;
  4404. color: #ccc;
  4405. content: "/\00a0";
  4406. }
  4407. .breadcrumb > .active {
  4408. color: #777;
  4409. }
  4410. .pagination {
  4411. display: inline-block;
  4412. padding-left: 0;
  4413. margin: 20px 0;
  4414. border-radius: 4px;
  4415. }
  4416. .pagination > li {
  4417. display: inline;
  4418. }
  4419. .pagination > li > a,
  4420. .pagination > li > span {
  4421. position: relative;
  4422. float: left;
  4423. padding: 6px 12px;
  4424. margin-left: -1px;
  4425. line-height: 1.42857143;
  4426. color: #428bca;
  4427. text-decoration: none;
  4428. background-color: #fff;
  4429. border: 1px solid #ddd;
  4430. }
  4431. .pagination > li:first-child > a,
  4432. .pagination > li:first-child > span {
  4433. margin-left: 0;
  4434. border-top-left-radius: 4px;
  4435. border-bottom-left-radius: 4px;
  4436. }
  4437. .pagination > li:last-child > a,
  4438. .pagination > li:last-child > span {
  4439. border-top-right-radius: 4px;
  4440. border-bottom-right-radius: 4px;
  4441. }
  4442. .pagination > li > a:hover,
  4443. .pagination > li > span:hover,
  4444. .pagination > li > a:focus,
  4445. .pagination > li > span:focus {
  4446. color: #2a6496;
  4447. background-color: #eee;
  4448. border-color: #ddd;
  4449. }
  4450. .pagination > .active > a,
  4451. .pagination > .active > span,
  4452. .pagination > .active > a:hover,
  4453. .pagination > .active > span:hover,
  4454. .pagination > .active > a:focus,
  4455. .pagination > .active > span:focus {
  4456. z-index: 2;
  4457. color: #fff;
  4458. cursor: default;
  4459. background-color: #428bca;
  4460. border-color: #428bca;
  4461. }
  4462. .pagination > .disabled > span,
  4463. .pagination > .disabled > span:hover,
  4464. .pagination > .disabled > span:focus,
  4465. .pagination > .disabled > a,
  4466. .pagination > .disabled > a:hover,
  4467. .pagination > .disabled > a:focus {
  4468. color: #777;
  4469. cursor: not-allowed;
  4470. background-color: #fff;
  4471. border-color: #ddd;
  4472. }
  4473. .pagination-lg > li > a,
  4474. .pagination-lg > li > span {
  4475. padding: 10px 16px;
  4476. font-size: 18px;
  4477. }
  4478. .pagination-lg > li:first-child > a,
  4479. .pagination-lg > li:first-child > span {
  4480. border-top-left-radius: 6px;
  4481. border-bottom-left-radius: 6px;
  4482. }
  4483. .pagination-lg > li:last-child > a,
  4484. .pagination-lg > li:last-child > span {
  4485. border-top-right-radius: 6px;
  4486. border-bottom-right-radius: 6px;
  4487. }
  4488. .pagination-sm > li > a,
  4489. .pagination-sm > li > span {
  4490. padding: 5px 10px;
  4491. font-size: 12px;
  4492. }
  4493. .pagination-sm > li:first-child > a,
  4494. .pagination-sm > li:first-child > span {
  4495. border-top-left-radius: 3px;
  4496. border-bottom-left-radius: 3px;
  4497. }
  4498. .pagination-sm > li:last-child > a,
  4499. .pagination-sm > li:last-child > span {
  4500. border-top-right-radius: 3px;
  4501. border-bottom-right-radius: 3px;
  4502. }
  4503. .pager {
  4504. padding-left: 0;
  4505. margin: 20px 0;
  4506. text-align: center;
  4507. list-style: none;
  4508. }
  4509. .pager li {
  4510. display: inline;
  4511. }
  4512. .pager li > a,
  4513. .pager li > span {
  4514. display: inline-block;
  4515. padding: 5px 14px;
  4516. background-color: #fff;
  4517. border: 1px solid #ddd;
  4518. border-radius: 15px;
  4519. }
  4520. .pager li > a:hover,
  4521. .pager li > a:focus {
  4522. text-decoration: none;
  4523. background-color: #eee;
  4524. }
  4525. .pager .next > a,
  4526. .pager .next > span {
  4527. float: right;
  4528. }
  4529. .pager .previous > a,
  4530. .pager .previous > span {
  4531. float: left;
  4532. }
  4533. .pager .disabled > a,
  4534. .pager .disabled > a:hover,
  4535. .pager .disabled > a:focus,
  4536. .pager .disabled > span {
  4537. color: #777;
  4538. cursor: not-allowed;
  4539. background-color: #fff;
  4540. }
  4541. .label {
  4542. display: inline;
  4543. padding: .2em .6em .3em;
  4544. font-size: 75%;
  4545. font-weight: bold;
  4546. line-height: 1;
  4547. color: #fff;
  4548. text-align: center;
  4549. white-space: nowrap;
  4550. vertical-align: baseline;
  4551. border-radius: .25em;
  4552. }
  4553. a.label:hover,
  4554. a.label:focus {
  4555. color: #fff;
  4556. text-decoration: none;
  4557. cursor: pointer;
  4558. }
  4559. .label:empty {
  4560. display: none;
  4561. }
  4562. .btn .label {
  4563. position: relative;
  4564. top: -1px;
  4565. }
  4566. .label-default {
  4567. background-color: #777;
  4568. }
  4569. .label-default[href]:hover,
  4570. .label-default[href]:focus {
  4571. background-color: #5e5e5e;
  4572. }
  4573. .label-primary {
  4574. background-color: #428bca;
  4575. }
  4576. .label-primary[href]:hover,
  4577. .label-primary[href]:focus {
  4578. background-color: #3071a9;
  4579. }
  4580. .label-success {
  4581. background-color: #5cb85c;
  4582. }
  4583. .label-success[href]:hover,
  4584. .label-success[href]:focus {
  4585. background-color: #449d44;
  4586. }
  4587. .label-info {
  4588. background-color: #5bc0de;
  4589. }
  4590. .label-info[href]:hover,
  4591. .label-info[href]:focus {
  4592. background-color: #31b0d5;
  4593. }
  4594. .label-warning {
  4595. background-color: #f0ad4e;
  4596. }
  4597. .label-warning[href]:hover,
  4598. .label-warning[href]:focus {
  4599. background-color: #ec971f;
  4600. }
  4601. .label-danger {
  4602. background-color: #d9534f;
  4603. }
  4604. .label-danger[href]:hover,
  4605. .label-danger[href]:focus {
  4606. background-color: #c9302c;
  4607. }
  4608. .badge {
  4609. display: inline-block;
  4610. min-width: 10px;
  4611. padding: 3px 7px;
  4612. font-size: 12px;
  4613. font-weight: bold;
  4614. line-height: 1;
  4615. color: #fff;
  4616. text-align: center;
  4617. white-space: nowrap;
  4618. vertical-align: baseline;
  4619. background-color: #777;
  4620. border-radius: 10px;
  4621. }
  4622. .badge:empty {
  4623. display: none;
  4624. }
  4625. .btn .badge {
  4626. position: relative;
  4627. top: -1px;
  4628. }
  4629. .btn-xs .badge {
  4630. top: 0;
  4631. padding: 1px 5px;
  4632. }
  4633. a.badge:hover,
  4634. a.badge:focus {
  4635. color: #fff;
  4636. text-decoration: none;
  4637. cursor: pointer;
  4638. }
  4639. a.list-group-item.active > .badge,
  4640. .nav-pills > .active > a > .badge {
  4641. color: #428bca;
  4642. background-color: #fff;
  4643. }
  4644. .nav-pills > li > a > .badge {
  4645. margin-left: 3px;
  4646. }
  4647. .jumbotron {
  4648. padding: 30px 15px;
  4649. margin-bottom: 30px;
  4650. color: inherit;
  4651. background-color: #eee;
  4652. }
  4653. .jumbotron h1,
  4654. .jumbotron .h1 {
  4655. color: inherit;
  4656. }
  4657. .jumbotron p {
  4658. margin-bottom: 15px;
  4659. font-size: 21px;
  4660. font-weight: 200;
  4661. }
  4662. .jumbotron > hr {
  4663. border-top-color: #d5d5d5;
  4664. }
  4665. .container .jumbotron,
  4666. .container-fluid .jumbotron {
  4667. border-radius: 6px;
  4668. }
  4669. .jumbotron .container {
  4670. max-width: 100%;
  4671. }
  4672. @media screen and (min-width: 768px) {
  4673. .jumbotron {
  4674. padding: 48px 0;
  4675. }
  4676. .container .jumbotron {
  4677. padding-right: 60px;
  4678. padding-left: 60px;
  4679. }
  4680. .jumbotron h1,
  4681. .jumbotron .h1 {
  4682. font-size: 63px;
  4683. }
  4684. }
  4685. .thumbnail {
  4686. display: block;
  4687. padding: 4px;
  4688. margin-bottom: 20px;
  4689. line-height: 1.42857143;
  4690. background-color: #fff;
  4691. border: 1px solid #ddd;
  4692. border-radius: 4px;
  4693. -webkit-transition: border .2s ease-in-out;
  4694. -o-transition: border .2s ease-in-out;
  4695. transition: border .2s ease-in-out;
  4696. }
  4697. .thumbnail > img,
  4698. .thumbnail a > img {
  4699. margin-right: auto;
  4700. margin-left: auto;
  4701. }
  4702. a.thumbnail:hover,
  4703. a.thumbnail:focus,
  4704. a.thumbnail.active {
  4705. border-color: #428bca;
  4706. }
  4707. .thumbnail .caption {
  4708. padding: 9px;
  4709. color: #333;
  4710. }
  4711. .alert {
  4712. padding: 15px;
  4713. margin-bottom: 20px;
  4714. border: 1px solid transparent;
  4715. border-radius: 4px;
  4716. }
  4717. .alert h4 {
  4718. margin-top: 0;
  4719. color: inherit;
  4720. }
  4721. .alert .alert-link {
  4722. font-weight: bold;
  4723. }
  4724. .alert > p,
  4725. .alert > ul {
  4726. margin-bottom: 0;
  4727. }
  4728. .alert > p + p {
  4729. margin-top: 5px;
  4730. }
  4731. .alert-dismissable,
  4732. .alert-dismissible {
  4733. padding-right: 35px;
  4734. }
  4735. .alert-dismissable .close,
  4736. .alert-dismissible .close {
  4737. position: relative;
  4738. top: -2px;
  4739. right: -21px;
  4740. color: inherit;
  4741. }
  4742. .alert-success {
  4743. color: #3c763d;
  4744. background-color: #dff0d8;
  4745. border-color: #d6e9c6;
  4746. }
  4747. .alert-success hr {
  4748. border-top-color: #c9e2b3;
  4749. }
  4750. .alert-success .alert-link {
  4751. color: #2b542c;
  4752. }
  4753. .alert-info {
  4754. color: #31708f;
  4755. background-color: #d9edf7;
  4756. border-color: #bce8f1;
  4757. }
  4758. .alert-info hr {
  4759. border-top-color: #a6e1ec;
  4760. }
  4761. .alert-info .alert-link {
  4762. color: #245269;
  4763. }
  4764. .alert-warning {
  4765. color: #8a6d3b;
  4766. background-color: #fcf8e3;
  4767. border-color: #faebcc;
  4768. }
  4769. .alert-warning hr {
  4770. border-top-color: #f7e1b5;
  4771. }
  4772. .alert-warning .alert-link {
  4773. color: #66512c;
  4774. }
  4775. .alert-danger {
  4776. color: #a94442;
  4777. background-color: #f2dede;
  4778. border-color: #ebccd1;
  4779. }
  4780. .alert-danger hr {
  4781. border-top-color: #e4b9c0;
  4782. }
  4783. .alert-danger .alert-link {
  4784. color: #843534;
  4785. }
  4786. @-webkit-keyframes progress-bar-stripes {
  4787. from {
  4788. background-position: 40px 0;
  4789. }
  4790. to {
  4791. background-position: 0 0;
  4792. }
  4793. }
  4794. @-o-keyframes progress-bar-stripes {
  4795. from {
  4796. background-position: 40px 0;
  4797. }
  4798. to {
  4799. background-position: 0 0;
  4800. }
  4801. }
  4802. @keyframes progress-bar-stripes {
  4803. from {
  4804. background-position: 40px 0;
  4805. }
  4806. to {
  4807. background-position: 0 0;
  4808. }
  4809. }
  4810. .progress {
  4811. height: 20px;
  4812. margin-bottom: 20px;
  4813. overflow: hidden;
  4814. background-color: #f5f5f5;
  4815. border-radius: 4px;
  4816. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  4817. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  4818. }
  4819. .progress-bar {
  4820. float: left;
  4821. width: 0;
  4822. height: 100%;
  4823. font-size: 12px;
  4824. line-height: 20px;
  4825. color: #fff;
  4826. text-align: center;
  4827. background-color: #428bca;
  4828. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  4829. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  4830. -webkit-transition: width .6s ease;
  4831. -o-transition: width .6s ease;
  4832. transition: width .6s ease;
  4833. }
  4834. .progress-striped .progress-bar,
  4835. .progress-bar-striped {
  4836. 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);
  4837. 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);
  4838. 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);
  4839. -webkit-background-size: 40px 40px;
  4840. background-size: 40px 40px;
  4841. }
  4842. .progress.active .progress-bar,
  4843. .progress-bar.active {
  4844. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4845. -o-animation: progress-bar-stripes 2s linear infinite;
  4846. animation: progress-bar-stripes 2s linear infinite;
  4847. }
  4848. .progress-bar-success {
  4849. background-color: #5cb85c;
  4850. }
  4851. .progress-striped .progress-bar-success {
  4852. 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);
  4853. 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);
  4854. 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);
  4855. }
  4856. .progress-bar-info {
  4857. background-color: #5bc0de;
  4858. }
  4859. .progress-striped .progress-bar-info {
  4860. 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);
  4861. 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);
  4862. 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);
  4863. }
  4864. .progress-bar-warning {
  4865. background-color: #f0ad4e;
  4866. }
  4867. .progress-striped .progress-bar-warning {
  4868. 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);
  4869. 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);
  4870. 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);
  4871. }
  4872. .progress-bar-danger {
  4873. background-color: #d9534f;
  4874. }
  4875. .progress-striped .progress-bar-danger {
  4876. 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);
  4877. 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);
  4878. 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);
  4879. }
  4880. .media {
  4881. margin-top: 15px;
  4882. }
  4883. .media:first-child {
  4884. margin-top: 0;
  4885. }
  4886. .media-right,
  4887. .media > .pull-right {
  4888. padding-left: 10px;
  4889. }
  4890. .media-left,
  4891. .media > .pull-left {
  4892. padding-right: 10px;
  4893. }
  4894. .media-left,
  4895. .media-right,
  4896. .media-body {
  4897. display: table-cell;
  4898. vertical-align: top;
  4899. }
  4900. .media-middle {
  4901. vertical-align: middle;
  4902. }
  4903. .media-bottom {
  4904. vertical-align: bottom;
  4905. }
  4906. .media-heading {
  4907. margin-top: 0;
  4908. margin-bottom: 5px;
  4909. }
  4910. .media-list {
  4911. padding-left: 0;
  4912. list-style: none;
  4913. }
  4914. .list-group {
  4915. padding-left: 0;
  4916. margin-bottom: 20px;
  4917. }
  4918. .list-group-item {
  4919. position: relative;
  4920. display: block;
  4921. padding: 10px 15px;
  4922. margin-bottom: -1px;
  4923. background-color: #fff;
  4924. border: 1px solid #ddd;
  4925. }
  4926. .list-group-item:first-child {
  4927. border-top-left-radius: 4px;
  4928. border-top-right-radius: 4px;
  4929. }
  4930. .list-group-item:last-child {
  4931. margin-bottom: 0;
  4932. border-bottom-right-radius: 4px;
  4933. border-bottom-left-radius: 4px;
  4934. }
  4935. .list-group-item > .badge {
  4936. float: right;
  4937. }
  4938. .list-group-item > .badge + .badge {
  4939. margin-right: 5px;
  4940. }
  4941. a.list-group-item {
  4942. color: #555;
  4943. }
  4944. a.list-group-item .list-group-item-heading {
  4945. color: #333;
  4946. }
  4947. a.list-group-item:hover,
  4948. a.list-group-item:focus {
  4949. color: #555;
  4950. text-decoration: none;
  4951. background-color: #f5f5f5;
  4952. }
  4953. .list-group-item.disabled,
  4954. .list-group-item.disabled:hover,
  4955. .list-group-item.disabled:focus {
  4956. color: #777;
  4957. cursor: not-allowed;
  4958. background-color: #eee;
  4959. }
  4960. .list-group-item.disabled .list-group-item-heading,
  4961. .list-group-item.disabled:hover .list-group-item-heading,
  4962. .list-group-item.disabled:focus .list-group-item-heading {
  4963. color: inherit;
  4964. }
  4965. .list-group-item.disabled .list-group-item-text,
  4966. .list-group-item.disabled:hover .list-group-item-text,
  4967. .list-group-item.disabled:focus .list-group-item-text {
  4968. color: #777;
  4969. }
  4970. .list-group-item.active,
  4971. .list-group-item.active:hover,
  4972. .list-group-item.active:focus {
  4973. z-index: 2;
  4974. color: #fff;
  4975. background-color: #428bca;
  4976. border-color: #428bca;
  4977. }
  4978. .list-group-item.active .list-group-item-heading,
  4979. .list-group-item.active:hover .list-group-item-heading,
  4980. .list-group-item.active:focus .list-group-item-heading,
  4981. .list-group-item.active .list-group-item-heading > small,
  4982. .list-group-item.active:hover .list-group-item-heading > small,
  4983. .list-group-item.active:focus .list-group-item-heading > small,
  4984. .list-group-item.active .list-group-item-heading > .small,
  4985. .list-group-item.active:hover .list-group-item-heading > .small,
  4986. .list-group-item.active:focus .list-group-item-heading > .small {
  4987. color: inherit;
  4988. }
  4989. .list-group-item.active .list-group-item-text,
  4990. .list-group-item.active:hover .list-group-item-text,
  4991. .list-group-item.active:focus .list-group-item-text {
  4992. color: #e1edf7;
  4993. }
  4994. .list-group-item-success {
  4995. color: #3c763d;
  4996. background-color: #dff0d8;
  4997. }
  4998. a.list-group-item-success {
  4999. color: #3c763d;
  5000. }
  5001. a.list-group-item-success .list-group-item-heading {
  5002. color: inherit;
  5003. }
  5004. a.list-group-item-success:hover,
  5005. a.list-group-item-success:focus {
  5006. color: #3c763d;
  5007. background-color: #d0e9c6;
  5008. }
  5009. a.list-group-item-success.active,
  5010. a.list-group-item-success.active:hover,
  5011. a.list-group-item-success.active:focus {
  5012. color: #fff;
  5013. background-color: #3c763d;
  5014. border-color: #3c763d;
  5015. }
  5016. .list-group-item-info {
  5017. color: #31708f;
  5018. background-color: #d9edf7;
  5019. }
  5020. a.list-group-item-info {
  5021. color: #31708f;
  5022. }
  5023. a.list-group-item-info .list-group-item-heading {
  5024. color: inherit;
  5025. }
  5026. a.list-group-item-info:hover,
  5027. a.list-group-item-info:focus {
  5028. color: #31708f;
  5029. background-color: #c4e3f3;
  5030. }
  5031. a.list-group-item-info.active,
  5032. a.list-group-item-info.active:hover,
  5033. a.list-group-item-info.active:focus {
  5034. color: #fff;
  5035. background-color: #31708f;
  5036. border-color: #31708f;
  5037. }
  5038. .list-group-item-warning {
  5039. color: #8a6d3b;
  5040. background-color: #fcf8e3;
  5041. }
  5042. a.list-group-item-warning {
  5043. color: #8a6d3b;
  5044. }
  5045. a.list-group-item-warning .list-group-item-heading {
  5046. color: inherit;
  5047. }
  5048. a.list-group-item-warning:hover,
  5049. a.list-group-item-warning:focus {
  5050. color: #8a6d3b;
  5051. background-color: #faf2cc;
  5052. }
  5053. a.list-group-item-warning.active,
  5054. a.list-group-item-warning.active:hover,
  5055. a.list-group-item-warning.active:focus {
  5056. color: #fff;
  5057. background-color: #8a6d3b;
  5058. border-color: #8a6d3b;
  5059. }
  5060. .list-group-item-danger {
  5061. color: #a94442;
  5062. background-color: #f2dede;
  5063. }
  5064. a.list-group-item-danger {
  5065. color: #a94442;
  5066. }
  5067. a.list-group-item-danger .list-group-item-heading {
  5068. color: inherit;
  5069. }
  5070. a.list-group-item-danger:hover,
  5071. a.list-group-item-danger:focus {
  5072. color: #a94442;
  5073. background-color: #ebcccc;
  5074. }
  5075. a.list-group-item-danger.active,
  5076. a.list-group-item-danger.active:hover,
  5077. a.list-group-item-danger.active:focus {
  5078. color: #fff;
  5079. background-color: #a94442;
  5080. border-color: #a94442;
  5081. }
  5082. .list-group-item-heading {
  5083. margin-top: 0;
  5084. margin-bottom: 5px;
  5085. }
  5086. .list-group-item-text {
  5087. margin-bottom: 0;
  5088. line-height: 1.3;
  5089. }
  5090. .panel {
  5091. margin-bottom: 10px;
  5092. background-color: #fff;
  5093. border: 1px solid #ddd;
  5094. /*border-radius: 4px;
  5095. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  5096. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);*/
  5097. }
  5098. .panel-body {
  5099. padding: 5px 10px;
  5100. }
  5101. .panel-heading {
  5102. padding: 10px 15px;
  5103. border-bottom: 1px solid transparent;
  5104. border-top-left-radius: 3px;
  5105. border-top-right-radius: 3px;
  5106. }
  5107. .panel-heading > .dropdown .dropdown-toggle {
  5108. color: inherit;
  5109. }
  5110. .panel-title {
  5111. margin-top: 0;
  5112. margin-bottom: 0;
  5113. font-size: 16px;
  5114. color: inherit;
  5115. }
  5116. .panel-title > a {
  5117. color: inherit;
  5118. }
  5119. .panel-footer {
  5120. padding: 5px 15px 0px 15px;
  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. /*
  5472. .close {
  5473. float: right;
  5474. font-size: 21px;
  5475. font-weight: bold;
  5476. line-height: 1;
  5477. color: #000;
  5478. text-shadow: 0 1px 0 #fff;
  5479. filter: alpha(opacity=20);
  5480. opacity: .2;
  5481. }*/
  5482. /*
  5483. .close:hover,
  5484. .close:focus {
  5485. color: #000;
  5486. text-decoration: none;
  5487. cursor: pointer;
  5488. filter: alpha(opacity=50);
  5489. opacity: .5;
  5490. }
  5491. */
  5492. button.close {
  5493. -webkit-appearance: none;
  5494. padding: 0;
  5495. cursor: pointer;
  5496. background: transparent;
  5497. border: 0;
  5498. }
  5499. .modal-open {
  5500. overflow: hidden;
  5501. }
  5502. .modal {
  5503. position: fixed;
  5504. top: 0;
  5505. right: 0;
  5506. bottom: 0;
  5507. left: 0;
  5508. z-index: 1040;
  5509. display: none;
  5510. overflow: hidden;
  5511. -webkit-overflow-scrolling: touch;
  5512. outline: 0;
  5513. }
  5514. .modal.fade .modal-dialog {
  5515. -webkit-transition: -webkit-transform .3s ease-out;
  5516. -o-transition: -o-transform .3s ease-out;
  5517. transition: transform .3s ease-out;
  5518. -webkit-transform: translate(0, -25%);
  5519. -ms-transform: translate(0, -25%);
  5520. -o-transform: translate(0, -25%);
  5521. transform: translate(0, -25%);
  5522. }
  5523. .modal.in .modal-dialog {
  5524. -webkit-transform: translate(0, 0);
  5525. -ms-transform: translate(0, 0);
  5526. -o-transform: translate(0, 0);
  5527. transform: translate(0, 0);
  5528. }
  5529. .modal-open .modal {
  5530. overflow-x: hidden;
  5531. overflow-y: auto;
  5532. }
  5533. .modal-dialog {
  5534. position: relative;
  5535. width: auto;
  5536. margin: 10px;
  5537. }
  5538. .modal-content {
  5539. position: relative;
  5540. background-color: #fff;
  5541. -webkit-background-clip: padding-box;
  5542. background-clip: padding-box;
  5543. border: 1px solid #999;
  5544. border: 1px solid rgba(0, 0, 0, .2);
  5545. border-radius: 6px;
  5546. outline: 0;
  5547. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  5548. box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  5549. }
  5550. .modal-backdrop {
  5551. position: fixed;
  5552. top: 0;
  5553. right: 0;
  5554. bottom: 0;
  5555. left: 0;
  5556. background-color: #000;
  5557. }
  5558. .modal-backdrop.fade {
  5559. filter: alpha(opacity=0);
  5560. opacity: 0;
  5561. }
  5562. .modal-backdrop.in {
  5563. filter: alpha(opacity=50);
  5564. opacity: .5;
  5565. }
  5566. .modal-header {
  5567. min-height: 16.42857143px;
  5568. padding: 15px;
  5569. border-bottom: 1px solid #e5e5e5;
  5570. }
  5571. .modal-header .close {
  5572. margin-top: -2px;
  5573. }
  5574. .modal-title {
  5575. margin: 0;
  5576. line-height: 1.42857143;
  5577. }
  5578. .modal-body {
  5579. position: relative;
  5580. padding: 15px;
  5581. }
  5582. .modal-footer {
  5583. padding: 15px;
  5584. text-align: right;
  5585. border-top: 1px solid #e5e5e5;
  5586. }
  5587. .modal-footer .btn + .btn {
  5588. margin-bottom: 0;
  5589. margin-left: 5px;
  5590. }
  5591. .modal-footer .btn-group .btn + .btn {
  5592. margin-left: -1px;
  5593. }
  5594. .modal-footer .btn-block + .btn-block {
  5595. margin-left: 0;
  5596. }
  5597. .modal-scrollbar-measure {
  5598. position: absolute;
  5599. top: -9999px;
  5600. width: 50px;
  5601. height: 50px;
  5602. overflow: scroll;
  5603. }
  5604. @media (min-width: 768px) {
  5605. .modal-dialog {
  5606. width: 600px;
  5607. margin: 30px auto;
  5608. }
  5609. .modal-content {
  5610. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  5611. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  5612. }
  5613. .modal-sm {
  5614. width: 300px;
  5615. }
  5616. }
  5617. @media (min-width: 992px) {
  5618. .modal-lg {
  5619. width: 900px;
  5620. }
  5621. }
  5622. .tooltip {
  5623. position: absolute;
  5624. z-index: 1070;
  5625. display: block;
  5626. font-size: 12px;
  5627. line-height: 1.4;
  5628. visibility: visible;
  5629. filter: alpha(opacity=0);
  5630. opacity: 0;
  5631. }
  5632. .tooltip.in {
  5633. filter: alpha(opacity=90);
  5634. opacity: .9;
  5635. }
  5636. .tooltip.top {
  5637. padding: 5px 0;
  5638. margin-top: -3px;
  5639. }
  5640. .tooltip.right {
  5641. padding: 0 5px;
  5642. margin-left: 3px;
  5643. }
  5644. .tooltip.bottom {
  5645. padding: 5px 0;
  5646. margin-top: 3px;
  5647. }
  5648. .tooltip.left {
  5649. padding: 0 5px;
  5650. margin-left: -3px;
  5651. }
  5652. .tooltip-inner {
  5653. max-width: 200px;
  5654. padding: 3px 8px;
  5655. color: #fff;
  5656. text-align: center;
  5657. text-decoration: none;
  5658. background-color: #000;
  5659. border-radius: 4px;
  5660. }
  5661. .tooltip-arrow {
  5662. position: absolute;
  5663. width: 0;
  5664. height: 0;
  5665. border-color: transparent;
  5666. border-style: solid;
  5667. }
  5668. .tooltip.top .tooltip-arrow {
  5669. bottom: 0;
  5670. left: 50%;
  5671. margin-left: -5px;
  5672. border-width: 5px 5px 0;
  5673. border-top-color: #000;
  5674. }
  5675. .tooltip.top-left .tooltip-arrow {
  5676. bottom: 0;
  5677. left: 5px;
  5678. border-width: 5px 5px 0;
  5679. border-top-color: #000;
  5680. }
  5681. .tooltip.top-right .tooltip-arrow {
  5682. right: 5px;
  5683. bottom: 0;
  5684. border-width: 5px 5px 0;
  5685. border-top-color: #000;
  5686. }
  5687. .tooltip.right .tooltip-arrow {
  5688. top: 50%;
  5689. left: 0;
  5690. margin-top: -5px;
  5691. border-width: 5px 5px 5px 0;
  5692. border-right-color: #000;
  5693. }
  5694. .tooltip.left .tooltip-arrow {
  5695. top: 50%;
  5696. right: 0;
  5697. margin-top: -5px;
  5698. border-width: 5px 0 5px 5px;
  5699. border-left-color: #000;
  5700. }
  5701. .tooltip.bottom .tooltip-arrow {
  5702. top: 0;
  5703. left: 50%;
  5704. margin-left: -5px;
  5705. border-width: 0 5px 5px;
  5706. border-bottom-color: #000;
  5707. }
  5708. .tooltip.bottom-left .tooltip-arrow {
  5709. top: 0;
  5710. left: 5px;
  5711. border-width: 0 5px 5px;
  5712. border-bottom-color: #000;
  5713. }
  5714. .tooltip.bottom-right .tooltip-arrow {
  5715. top: 0;
  5716. right: 5px;
  5717. border-width: 0 5px 5px;
  5718. border-bottom-color: #000;
  5719. }
  5720. .popover {
  5721. position: absolute;
  5722. top: 0;
  5723. left: 0;
  5724. z-index: 1060;
  5725. display: none;
  5726. max-width: 276px;
  5727. padding: 1px;
  5728. font-size: 14px;
  5729. font-weight: normal;
  5730. line-height: 1.42857143;
  5731. text-align: left;
  5732. white-space: normal;
  5733. background-color: #fff;
  5734. -webkit-background-clip: padding-box;
  5735. background-clip: padding-box;
  5736. border: 1px solid #ccc;
  5737. border: 1px solid rgba(0, 0, 0, .2);
  5738. border-radius: 6px;
  5739. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  5740. box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  5741. }
  5742. .popover.top {
  5743. margin-top: -10px;
  5744. }
  5745. .popover.right {
  5746. margin-left: 10px;
  5747. }
  5748. .popover.bottom {
  5749. margin-top: 10px;
  5750. }
  5751. .popover.left {
  5752. margin-left: -10px;
  5753. }
  5754. .popover-title {
  5755. padding: 8px 14px;
  5756. margin: 0;
  5757. font-size: 14px;
  5758. background-color: #f7f7f7;
  5759. border-bottom: 1px solid #ebebeb;
  5760. border-radius: 5px 5px 0 0;
  5761. }
  5762. .popover-content {
  5763. padding: 9px 14px;
  5764. }
  5765. .popover > .arrow,
  5766. .popover > .arrow:after {
  5767. position: absolute;
  5768. display: block;
  5769. width: 0;
  5770. height: 0;
  5771. border-color: transparent;
  5772. border-style: solid;
  5773. }
  5774. .popover > .arrow {
  5775. border-width: 11px;
  5776. }
  5777. .popover > .arrow:after {
  5778. content: "";
  5779. border-width: 10px;
  5780. }
  5781. .popover.top > .arrow {
  5782. bottom: -11px;
  5783. left: 50%;
  5784. margin-left: -11px;
  5785. border-top-color: #999;
  5786. border-top-color: rgba(0, 0, 0, .25);
  5787. border-bottom-width: 0;
  5788. }
  5789. .popover.top > .arrow:after {
  5790. bottom: 1px;
  5791. margin-left: -10px;
  5792. content: " ";
  5793. border-top-color: #fff;
  5794. border-bottom-width: 0;
  5795. }
  5796. .popover.right > .arrow {
  5797. top: 50%;
  5798. left: -11px;
  5799. margin-top: -11px;
  5800. border-right-color: #999;
  5801. border-right-color: rgba(0, 0, 0, .25);
  5802. border-left-width: 0;
  5803. }
  5804. .popover.right > .arrow:after {
  5805. bottom: -10px;
  5806. left: 1px;
  5807. content: " ";
  5808. border-right-color: #fff;
  5809. border-left-width: 0;
  5810. }
  5811. .popover.bottom > .arrow {
  5812. top: -11px;
  5813. left: 50%;
  5814. margin-left: -11px;
  5815. border-top-width: 0;
  5816. border-bottom-color: #999;
  5817. border-bottom-color: rgba(0, 0, 0, .25);
  5818. }
  5819. .popover.bottom > .arrow:after {
  5820. top: 1px;
  5821. margin-left: -10px;
  5822. content: " ";
  5823. border-top-width: 0;
  5824. border-bottom-color: #fff;
  5825. }
  5826. .popover.left > .arrow {
  5827. top: 50%;
  5828. right: -11px;
  5829. margin-top: -11px;
  5830. border-right-width: 0;
  5831. border-left-color: #999;
  5832. border-left-color: rgba(0, 0, 0, .25);
  5833. }
  5834. .popover.left > .arrow:after {
  5835. right: 1px;
  5836. bottom: -10px;
  5837. content: " ";
  5838. border-right-width: 0;
  5839. border-left-color: #fff;
  5840. }
  5841. .carousel {
  5842. position: relative;
  5843. }
  5844. .carousel-inner {
  5845. position: relative;
  5846. width: 100%;
  5847. overflow: hidden;
  5848. }
  5849. .carousel-inner > .item {
  5850. position: relative;
  5851. display: none;
  5852. -webkit-transition: .6s ease-in-out left;
  5853. -o-transition: .6s ease-in-out left;
  5854. transition: .6s ease-in-out left;
  5855. }
  5856. .carousel-inner > .item > img,
  5857. .carousel-inner > .item > a > img {
  5858. line-height: 1;
  5859. }
  5860. @media all and (transform-3d), (-webkit-transform-3d) {
  5861. .carousel-inner > .item {
  5862. -webkit-transition: -webkit-transform .6s ease-in-out;
  5863. -o-transition: -o-transform .6s ease-in-out;
  5864. transition: transform .6s ease-in-out;
  5865. -webkit-backface-visibility: hidden;
  5866. backface-visibility: hidden;
  5867. -webkit-perspective: 1000;
  5868. perspective: 1000;
  5869. }
  5870. .carousel-inner > .item.next,
  5871. .carousel-inner > .item.active.right {
  5872. left: 0;
  5873. -webkit-transform: translate3d(100%, 0, 0);
  5874. transform: translate3d(100%, 0, 0);
  5875. }
  5876. .carousel-inner > .item.prev,
  5877. .carousel-inner > .item.active.left {
  5878. left: 0;
  5879. -webkit-transform: translate3d(-100%, 0, 0);
  5880. transform: translate3d(-100%, 0, 0);
  5881. }
  5882. .carousel-inner > .item.next.left,
  5883. .carousel-inner > .item.prev.right,
  5884. .carousel-inner > .item.active {
  5885. left: 0;
  5886. -webkit-transform: translate3d(0, 0, 0);
  5887. transform: translate3d(0, 0, 0);
  5888. }
  5889. }
  5890. .carousel-inner > .active,
  5891. .carousel-inner > .next,
  5892. .carousel-inner > .prev {
  5893. display: block;
  5894. }
  5895. .carousel-inner > .active {
  5896. left: 0;
  5897. }
  5898. .carousel-inner > .next,
  5899. .carousel-inner > .prev {
  5900. position: absolute;
  5901. top: 0;
  5902. width: 100%;
  5903. }
  5904. .carousel-inner > .next {
  5905. left: 100%;
  5906. }
  5907. .carousel-inner > .prev {
  5908. left: -100%;
  5909. }
  5910. .carousel-inner > .next.left,
  5911. .carousel-inner > .prev.right {
  5912. left: 0;
  5913. }
  5914. .carousel-inner > .active.left {
  5915. left: -100%;
  5916. }
  5917. .carousel-inner > .active.right {
  5918. left: 100%;
  5919. }
  5920. .carousel-control {
  5921. position: absolute;
  5922. top: 0;
  5923. bottom: 0;
  5924. left: 0;
  5925. width: 15%;
  5926. font-size: 20px;
  5927. color: #fff;
  5928. text-align: center;
  5929. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  5930. filter: alpha(opacity=50);
  5931. opacity: .5;
  5932. }
  5933. .carousel-control.left {
  5934. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  5935. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  5936. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  5937. background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  5938. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  5939. background-repeat: repeat-x;
  5940. }
  5941. .carousel-control.right {
  5942. right: 0;
  5943. left: auto;
  5944. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  5945. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  5946. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  5947. background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  5948. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  5949. background-repeat: repeat-x;
  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 */