bootstrap.css 141 KB

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