You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bootstrap.css 143KB

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