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