bootstrap.css 142 KB

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