bootstrap.css 120 KB

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