bootstrap.css 136 KB

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