bootstrap.css 130 KB

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