bootstrap.css 144 KB

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