bootstrap.css 123 KB

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