bootstrap.css 138 KB

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