style.min.css 147 KB

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