bootstrap.css 143 KB

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