bootstrap.css 144 KB

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