Няма описание

boot.css 135KB

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