styles.css 133 KB

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