bootstrap.css 138 KB

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