app.v2.css 197 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965
  1. html {
  2. font-family: sans-serif;
  3. -webkit-text-size-adjust: 100%;
  4. -ms-text-size-adjust: 100%;
  5. }
  6. body {
  7. margin: 0;
  8. }
  9. article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
  10. display: block;
  11. }
  12. audio,canvas,progress,video {
  13. display: inline-block;
  14. vertical-align: baseline;
  15. }
  16. audio:not([controls]) {
  17. display: none;
  18. height: 0;
  19. }[hidden],template {
  20. display: none;
  21. }
  22. a {
  23. background: transparent;
  24. }
  25. a:active,a:hover {
  26. outline: 0;
  27. }
  28. abbr[title] {
  29. border-bottom: 1px dotted;
  30. }
  31. b,strong {
  32. font-weight: bold;
  33. }
  34. dfn {
  35. font-style: italic;
  36. }
  37. h1 {
  38. margin: .67em 0;
  39. font-size: 2em;
  40. }
  41. mark {
  42. color: #000;
  43. background: #ff0;
  44. }
  45. small {
  46. font-size: 80%;
  47. }
  48. sub,sup {
  49. position: relative;
  50. font-size: 75%;
  51. line-height: 0;
  52. vertical-align: baseline;
  53. }
  54. sup {
  55. top: -.5em;
  56. }
  57. sub {
  58. bottom: -.25em;
  59. }
  60. img {
  61. border: 0;
  62. }
  63. svg:not(:root) {
  64. overflow: hidden;
  65. }
  66. figure {
  67. margin: 1em 40px;
  68. }
  69. hr {
  70. height: 0;
  71. -webkit-box-sizing: content-box;
  72. -moz-box-sizing: content-box;
  73. box-sizing: content-box;
  74. }
  75. pre {
  76. overflow: auto;
  77. }
  78. code,kbd,pre,samp {
  79. font-family: monospace,monospace;
  80. font-size: 1em;
  81. }
  82. button,input,optgroup,select,textarea {
  83. margin: 0;
  84. font: inherit;
  85. color: inherit;
  86. }
  87. button {
  88. overflow: visible;
  89. }
  90. button,select {
  91. text-transform: none;
  92. }
  93. button,html input[type="button"],input[type="reset"],input[type="submit"] {
  94. -webkit-appearance: button;
  95. cursor: pointer;
  96. }
  97. button[disabled],html input[disabled] {
  98. cursor: default;
  99. }
  100. button::-moz-focus-inner,input::-moz-focus-inner {
  101. padding: 0;
  102. border: 0;
  103. }
  104. input {
  105. line-height: normal;
  106. }
  107. input[type="checkbox"],input[type="radio"] {
  108. -webkit-box-sizing: border-box;
  109. -moz-box-sizing: border-box;
  110. box-sizing: border-box;
  111. padding: 0;
  112. }
  113. input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {
  114. height: auto;
  115. }
  116. input[type="search"] {
  117. -webkit-box-sizing: content-box;
  118. -moz-box-sizing: content-box;
  119. box-sizing: content-box;
  120. -webkit-appearance: textfield;
  121. }
  122. input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
  123. -webkit-appearance: none;
  124. }
  125. fieldset {
  126. padding: .35em .625em .75em;
  127. margin: 0 2px;
  128. border: 1px solid #c0c0c0;
  129. }
  130. legend {
  131. padding: 0;
  132. border: 0;
  133. }
  134. textarea {
  135. overflow: auto;
  136. }
  137. optgroup {
  138. font-weight: bold;
  139. }
  140. table {
  141. border-spacing: 0;
  142. border-collapse: collapse;
  143. }
  144. td,th {
  145. padding: 0;
  146. }
  147. @media print {
  148. * {
  149. color: #000 !important;
  150. text-shadow: none !important;
  151. background: transparent !important;
  152. -webkit-box-shadow: none !important;
  153. box-shadow: none !important;
  154. }
  155. a,a:visited {
  156. text-decoration: underline;
  157. }
  158. a[href]:after {
  159. content: " (" attr(href) ")";
  160. }
  161. abbr[title]:after {
  162. content: " (" attr(title) ")";
  163. }
  164. a[href^="javascript:"]:after,a[href^="#"]:after {
  165. content: "";
  166. }
  167. pre,blockquote {
  168. border: 1px solid #999;
  169. page-break-inside: avoid;
  170. }
  171. thead {
  172. display: table-header-group;
  173. }
  174. tr,img {
  175. page-break-inside: avoid;
  176. }
  177. img {
  178. max-width: 100% !important;
  179. }
  180. p,h2,h3 {
  181. orphans: 3;
  182. widows: 3;
  183. }
  184. h2,h3 {
  185. page-break-after: avoid;
  186. }
  187. select {
  188. background: #fff !important;
  189. }
  190. .navbar {
  191. display: none;
  192. }
  193. .table td,.table th {
  194. background-color: #fff !important;
  195. }
  196. .btn>.caret,.dropup>.btn>.caret {
  197. border-top-color: #000 !important;
  198. }
  199. .label {
  200. border: 1px solid #000;
  201. }
  202. .table {
  203. border-collapse: collapse !important;
  204. }
  205. .table-bordered th,.table-bordered td {
  206. border: 1px solid #ddd !important;
  207. }
  208. }
  209. @font-face {
  210. font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  211. }
  212. .glyphicon {
  213. position: relative;
  214. top: 1px;
  215. display: inline-block;
  216. font-family: 'Glyphicons Halflings';
  217. font-style: normal;
  218. font-weight: normal;
  219. line-height: 1;
  220. -webkit-font-smoothing: antialiased;
  221. -moz-osx-font-smoothing: grayscale;
  222. }
  223. .glyphicon-asterisk:before {
  224. content: "\2a";
  225. }
  226. .glyphicon-plus:before {
  227. content: "\2b";
  228. }
  229. .glyphicon-euro:before {
  230. content: "\20ac";
  231. }
  232. .glyphicon-minus:before {
  233. content: "\2212";
  234. }
  235. .glyphicon-cloud:before {
  236. content: "\2601";
  237. }
  238. .glyphicon-envelope:before {
  239. content: "\2709";
  240. }
  241. .glyphicon-pencil:before {
  242. content: "\270f";
  243. }
  244. .glyphicon-glass:before {
  245. content: "\e001";
  246. }
  247. .glyphicon-music:before {
  248. content: "\e002";
  249. }
  250. .glyphicon-search:before {
  251. content: "\e003";
  252. }
  253. .glyphicon-heart:before {
  254. content: "\e005";
  255. }
  256. .glyphicon-star:before {
  257. content: "\e006";
  258. }
  259. .glyphicon-star-empty:before {
  260. content: "\e007";
  261. }
  262. .glyphicon-user:before {
  263. content: "\e008";
  264. }
  265. .glyphicon-film:before {
  266. content: "\e009";
  267. }
  268. .glyphicon-th-large:before {
  269. content: "\e010";
  270. }
  271. .glyphicon-th:before {
  272. content: "\e011";
  273. }
  274. .glyphicon-th-list:before {
  275. content: "\e012";
  276. }
  277. .glyphicon-ok:before {
  278. content: "\e013";
  279. }
  280. .glyphicon-remove:before {
  281. content: "\e014";
  282. }
  283. .glyphicon-zoom-in:before {
  284. content: "\e015";
  285. }
  286. .glyphicon-zoom-out:before {
  287. content: "\e016";
  288. }
  289. .glyphicon-off:before {
  290. content: "\e017";
  291. }
  292. .glyphicon-signal:before {
  293. content: "\e018";
  294. }
  295. .glyphicon-cog:before {
  296. content: "\e019";
  297. }
  298. .glyphicon-trash:before {
  299. content: "\e020";
  300. }
  301. .glyphicon-home:before {
  302. content: "\e021";
  303. }
  304. .glyphicon-file:before {
  305. content: "\e022";
  306. }
  307. .glyphicon-time:before {
  308. content: "\e023";
  309. }
  310. .glyphicon-road:before {
  311. content: "\e024";
  312. }
  313. .glyphicon-download-alt:before {
  314. content: "\e025";
  315. }
  316. .glyphicon-download:before {
  317. content: "\e026";
  318. }
  319. .glyphicon-upload:before {
  320. content: "\e027";
  321. }
  322. .glyphicon-inbox:before {
  323. content: "\e028";
  324. }
  325. .glyphicon-play-circle:before {
  326. content: "\e029";
  327. }
  328. .glyphicon-repeat:before {
  329. content: "\e030";
  330. }
  331. .glyphicon-refresh:before {
  332. content: "\e031";
  333. }
  334. .glyphicon-list-alt:before {
  335. content: "\e032";
  336. }
  337. .glyphicon-lock:before {
  338. content: "\e033";
  339. }
  340. .glyphicon-flag:before {
  341. content: "\e034";
  342. }
  343. .glyphicon-headphones:before {
  344. content: "\e035";
  345. }
  346. .glyphicon-volume-off:before {
  347. content: "\e036";
  348. }
  349. .glyphicon-volume-down:before {
  350. content: "\e037";
  351. }
  352. .glyphicon-volume-up:before {
  353. content: "\e038";
  354. }
  355. .glyphicon-qrcode:before {
  356. content: "\e039";
  357. }
  358. .glyphicon-barcode:before {
  359. content: "\e040";
  360. }
  361. .glyphicon-tag:before {
  362. content: "\e041";
  363. }
  364. .glyphicon-tags:before {
  365. content: "\e042";
  366. }
  367. .glyphicon-book:before {
  368. content: "\e043";
  369. }
  370. .glyphicon-bookmark:before {
  371. content: "\e044";
  372. }
  373. .glyphicon-print:before {
  374. content: "\e045";
  375. }
  376. .glyphicon-camera:before {
  377. content: "\e046";
  378. }
  379. .glyphicon-font:before {
  380. content: "\e047";
  381. }
  382. .glyphicon-bold:before {
  383. content: "\e048";
  384. }
  385. .glyphicon-italic:before {
  386. content: "\e049";
  387. }
  388. .glyphicon-text-height:before {
  389. content: "\e050";
  390. }
  391. .glyphicon-text-width:before {
  392. content: "\e051";
  393. }
  394. .glyphicon-align-left:before {
  395. content: "\e052";
  396. }
  397. .glyphicon-align-center:before {
  398. content: "\e053";
  399. }
  400. .glyphicon-align-right:before {
  401. content: "\e054";
  402. }
  403. .glyphicon-align-justify:before {
  404. content: "\e055";
  405. }
  406. .glyphicon-list:before {
  407. content: "\e056";
  408. }
  409. .glyphicon-indent-left:before {
  410. content: "\e057";
  411. }
  412. .glyphicon-indent-right:before {
  413. content: "\e058";
  414. }
  415. .glyphicon-facetime-video:before {
  416. content: "\e059";
  417. }
  418. .glyphicon-picture:before {
  419. content: "\e060";
  420. }
  421. .glyphicon-map-marker:before {
  422. content: "\e062";
  423. }
  424. .glyphicon-adjust:before {
  425. content: "\e063";
  426. }
  427. .glyphicon-tint:before {
  428. content: "\e064";
  429. }
  430. .glyphicon-edit:before {
  431. content: "\e065";
  432. }
  433. .glyphicon-share:before {
  434. content: "\e066";
  435. }
  436. .glyphicon-check:before {
  437. content: "\e067";
  438. }
  439. .glyphicon-move:before {
  440. content: "\e068";
  441. }
  442. .glyphicon-step-backward:before {
  443. content: "\e069";
  444. }
  445. .glyphicon-fast-backward:before {
  446. content: "\e070";
  447. }
  448. .glyphicon-backward:before {
  449. content: "\e071";
  450. }
  451. .glyphicon-play:before {
  452. content: "\e072";
  453. }
  454. .glyphicon-pause:before {
  455. content: "\e073";
  456. }
  457. .glyphicon-stop:before {
  458. content: "\e074";
  459. }
  460. .glyphicon-forward:before {
  461. content: "\e075";
  462. }
  463. .glyphicon-fast-forward:before {
  464. content: "\e076";
  465. }
  466. .glyphicon-step-forward:before {
  467. content: "\e077";
  468. }
  469. .glyphicon-eject:before {
  470. content: "\e078";
  471. }
  472. .glyphicon-chevron-left:before {
  473. content: "\e079";
  474. }
  475. .glyphicon-chevron-right:before {
  476. content: "\e080";
  477. }
  478. .glyphicon-plus-sign:before {
  479. content: "\e081";
  480. }
  481. .glyphicon-minus-sign:before {
  482. content: "\e082";
  483. }
  484. .glyphicon-remove-sign:before {
  485. content: "\e083";
  486. }
  487. .glyphicon-ok-sign:before {
  488. content: "\e084";
  489. }
  490. .glyphicon-question-sign:before {
  491. content: "\e085";
  492. }
  493. .glyphicon-info-sign:before {
  494. content: "\e086";
  495. }
  496. .glyphicon-screenshot:before {
  497. content: "\e087";
  498. }
  499. .glyphicon-remove-circle:before {
  500. content: "\e088";
  501. }
  502. .glyphicon-ok-circle:before {
  503. content: "\e089";
  504. }
  505. .glyphicon-ban-circle:before {
  506. content: "\e090";
  507. }
  508. .glyphicon-arrow-left:before {
  509. content: "\e091";
  510. }
  511. .glyphicon-arrow-right:before {
  512. content: "\e092";
  513. }
  514. .glyphicon-arrow-up:before {
  515. content: "\e093";
  516. }
  517. .glyphicon-arrow-down:before {
  518. content: "\e094";
  519. }
  520. .glyphicon-share-alt:before {
  521. content: "\e095";
  522. }
  523. .glyphicon-resize-full:before {
  524. content: "\e096";
  525. }
  526. .glyphicon-resize-small:before {
  527. content: "\e097";
  528. }
  529. .glyphicon-exclamation-sign:before {
  530. content: "\e101";
  531. }
  532. .glyphicon-gift:before {
  533. content: "\e102";
  534. }
  535. .glyphicon-leaf:before {
  536. content: "\e103";
  537. }
  538. .glyphicon-fire:before {
  539. content: "\e104";
  540. }
  541. .glyphicon-eye-open:before {
  542. content: "\e105";
  543. }
  544. .glyphicon-eye-close:before {
  545. content: "\e106";
  546. }
  547. .glyphicon-warning-sign:before {
  548. content: "\e107";
  549. }
  550. .glyphicon-plane:before {
  551. content: "\e108";
  552. }
  553. .glyphicon-calendar:before {
  554. content: "\e109";
  555. }
  556. .glyphicon-random:before {
  557. content: "\e110";
  558. }
  559. .glyphicon-comment:before {
  560. content: "\e111";
  561. }
  562. .glyphicon-magnet:before {
  563. content: "\e112";
  564. }
  565. .glyphicon-chevron-up:before {
  566. content: "\e113";
  567. }
  568. .glyphicon-chevron-down:before {
  569. content: "\e114";
  570. }
  571. .glyphicon-retweet:before {
  572. content: "\e115";
  573. }
  574. .glyphicon-shopping-cart:before {
  575. content: "\e116";
  576. }
  577. .glyphicon-folder-close:before {
  578. content: "\e117";
  579. }
  580. .glyphicon-folder-open:before {
  581. content: "\e118";
  582. }
  583. .glyphicon-resize-vertical:before {
  584. content: "\e119";
  585. }
  586. .glyphicon-resize-horizontal:before {
  587. content: "\e120";
  588. }
  589. .glyphicon-hdd:before {
  590. content: "\e121";
  591. }
  592. .glyphicon-bullhorn:before {
  593. content: "\e122";
  594. }
  595. .glyphicon-bell:before {
  596. content: "\e123";
  597. }
  598. .glyphicon-certificate:before {
  599. content: "\e124";
  600. }
  601. .glyphicon-thumbs-up:before {
  602. content: "\e125";
  603. }
  604. .glyphicon-thumbs-down:before {
  605. content: "\e126";
  606. }
  607. .glyphicon-hand-right:before {
  608. content: "\e127";
  609. }
  610. .glyphicon-hand-left:before {
  611. content: "\e128";
  612. }
  613. .glyphicon-hand-up:before {
  614. content: "\e129";
  615. }
  616. .glyphicon-hand-down:before {
  617. content: "\e130";
  618. }
  619. .glyphicon-circle-arrow-right:before {
  620. content: "\e131";
  621. }
  622. .glyphicon-circle-arrow-left:before {
  623. content: "\e132";
  624. }
  625. .glyphicon-circle-arrow-up:before {
  626. content: "\e133";
  627. }
  628. .glyphicon-circle-arrow-down:before {
  629. content: "\e134";
  630. }
  631. .glyphicon-globe:before {
  632. content: "\e135";
  633. }
  634. .glyphicon-wrench:before {
  635. content: "\e136";
  636. }
  637. .glyphicon-tasks:before {
  638. content: "\e137";
  639. }
  640. .glyphicon-filter:before {
  641. content: "\e138";
  642. }
  643. .glyphicon-briefcase:before {
  644. content: "\e139";
  645. }
  646. .glyphicon-fullscreen:before {
  647. content: "\e140";
  648. }
  649. .glyphicon-dashboard:before {
  650. content: "\e141";
  651. }
  652. .glyphicon-paperclip:before {
  653. content: "\e142";
  654. }
  655. .glyphicon-heart-empty:before {
  656. content: "\e143";
  657. }
  658. .glyphicon-link:before {
  659. content: "\e144";
  660. }
  661. .glyphicon-phone:before {
  662. content: "\e145";
  663. }
  664. .glyphicon-pushpin:before {
  665. content: "\e146";
  666. }
  667. .glyphicon-usd:before {
  668. content: "\e148";
  669. }
  670. .glyphicon-gbp:before {
  671. content: "\e149";
  672. }
  673. .glyphicon-sort:before {
  674. content: "\e150";
  675. }
  676. .glyphicon-sort-by-alphabet:before {
  677. content: "\e151";
  678. }
  679. .glyphicon-sort-by-alphabet-alt:before {
  680. content: "\e152";
  681. }
  682. .glyphicon-sort-by-order:before {
  683. content: "\e153";
  684. }
  685. .glyphicon-sort-by-order-alt:before {
  686. content: "\e154";
  687. }
  688. .glyphicon-sort-by-attributes:before {
  689. content: "\e155";
  690. }
  691. .glyphicon-sort-by-attributes-alt:before {
  692. content: "\e156";
  693. }
  694. .glyphicon-unchecked:before {
  695. content: "\e157";
  696. }
  697. .glyphicon-expand:before {
  698. content: "\e158";
  699. }
  700. .glyphicon-collapse-down:before {
  701. content: "\e159";
  702. }
  703. .glyphicon-collapse-up:before {
  704. content: "\e160";
  705. }
  706. .glyphicon-log-in:before {
  707. content: "\e161";
  708. }
  709. .glyphicon-flash:before {
  710. content: "\e162";
  711. }
  712. .glyphicon-log-out:before {
  713. content: "\e163";
  714. }
  715. .glyphicon-new-window:before {
  716. content: "\e164";
  717. }
  718. .glyphicon-record:before {
  719. content: "\e165";
  720. }
  721. .glyphicon-save:before {
  722. content: "\e166";
  723. }
  724. .glyphicon-open:before {
  725. content: "\e167";
  726. }
  727. .glyphicon-saved:before {
  728. content: "\e168";
  729. }
  730. .glyphicon-import:before {
  731. content: "\e169";
  732. }
  733. .glyphicon-export:before {
  734. content: "\e170";
  735. }
  736. .glyphicon-send:before {
  737. content: "\e171";
  738. }
  739. .glyphicon-floppy-disk:before {
  740. content: "\e172";
  741. }
  742. .glyphicon-floppy-saved:before {
  743. content: "\e173";
  744. }
  745. .glyphicon-floppy-remove:before {
  746. content: "\e174";
  747. }
  748. .glyphicon-floppy-save:before {
  749. content: "\e175";
  750. }
  751. .glyphicon-floppy-open:before {
  752. content: "\e176";
  753. }
  754. .glyphicon-credit-card:before {
  755. content: "\e177";
  756. }
  757. .glyphicon-transfer:before {
  758. content: "\e178";
  759. }
  760. .glyphicon-cutlery:before {
  761. content: "\e179";
  762. }
  763. .glyphicon-header:before {
  764. content: "\e180";
  765. }
  766. .glyphicon-compressed:before {
  767. content: "\e181";
  768. }
  769. .glyphicon-earphone:before {
  770. content: "\e182";
  771. }
  772. .glyphicon-phone-alt:before {
  773. content: "\e183";
  774. }
  775. .glyphicon-tower:before {
  776. content: "\e184";
  777. }
  778. .glyphicon-stats:before {
  779. content: "\e185";
  780. }
  781. .glyphicon-sd-video:before {
  782. content: "\e186";
  783. }
  784. .glyphicon-hd-video:before {
  785. content: "\e187";
  786. }
  787. .glyphicon-subtitles:before {
  788. content: "\e188";
  789. }
  790. .glyphicon-sound-stereo:before {
  791. content: "\e189";
  792. }
  793. .glyphicon-sound-dolby:before {
  794. content: "\e190";
  795. }
  796. .glyphicon-sound-5-1:before {
  797. content: "\e191";
  798. }
  799. .glyphicon-sound-6-1:before {
  800. content: "\e192";
  801. }
  802. .glyphicon-sound-7-1:before {
  803. content: "\e193";
  804. }
  805. .glyphicon-copyright-mark:before {
  806. content: "\e194";
  807. }
  808. .glyphicon-registration-mark:before {
  809. content: "\e195";
  810. }
  811. .glyphicon-cloud-download:before {
  812. content: "\e197";
  813. }
  814. .glyphicon-cloud-upload:before {
  815. content: "\e198";
  816. }
  817. .glyphicon-tree-conifer:before {
  818. content: "\e199";
  819. }
  820. .glyphicon-tree-deciduous:before {
  821. content: "\e200";
  822. }
  823. * {
  824. -webkit-box-sizing: border-box;
  825. -moz-box-sizing: border-box;
  826. box-sizing: border-box;
  827. }
  828. *:before,*:after {
  829. -webkit-box-sizing: border-box;
  830. -moz-box-sizing: border-box;
  831. box-sizing: border-box;
  832. }
  833. html {
  834. font-size: 10px;
  835. -webkit-tap-highlight-color: rgba(0,0,0,0);
  836. }
  837. body {
  838. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  839. font-size: 14px;
  840. line-height: 1.42857143;
  841. color: #333;
  842. background-color: #fff;
  843. }
  844. input,button,select,textarea {
  845. font-family: inherit;
  846. font-size: inherit;
  847. line-height: inherit;
  848. }
  849. a {
  850. color: #428bca;
  851. text-decoration: none;
  852. }
  853. a:hover,a:focus {
  854. color: #2a6496;
  855. text-decoration: underline;
  856. }
  857. a:focus {
  858. outline: thin dotted;
  859. outline: 5px auto -webkit-focus-ring-color;
  860. outline-offset: -2px;
  861. }
  862. figure {
  863. margin: 0;
  864. }
  865. img {
  866. vertical-align: middle;
  867. }
  868. .img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img {
  869. display: block;
  870. width: 100% \9;
  871. max-width: 100%;
  872. height: auto;
  873. }
  874. .img-rounded {
  875. border-radius: 6px;
  876. }
  877. .img-thumbnail {
  878. display: inline-block;
  879. width: 100% \9;
  880. max-width: 100%;
  881. height: auto;
  882. padding: 4px;
  883. line-height: 1.42857143;
  884. background-color: #fff;
  885. border: 1px solid #ddd;
  886. border-radius: 4px;
  887. -webkit-transition: all .2s ease-in-out;
  888. -o-transition: all .2s ease-in-out;
  889. transition: all .2s ease-in-out;
  890. }
  891. .img-circle {
  892. border-radius: 50%;
  893. }
  894. hr {
  895. margin-top: 20px;
  896. margin-bottom: 20px;
  897. border: 0;
  898. border-top: 1px solid #eee;
  899. }
  900. .sr-only {
  901. position: absolute;
  902. width: 1px;
  903. height: 1px;
  904. padding: 0;
  905. margin: -1px;
  906. overflow: hidden;
  907. clip: rect(0,0,0,0);
  908. border: 0;
  909. }
  910. .sr-only-focusable:active,.sr-only-focusable:focus {
  911. position: static;
  912. width: auto;
  913. height: auto;
  914. margin: 0;
  915. overflow: visible;
  916. clip: auto;
  917. }
  918. h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  919. font-family: inherit;
  920. font-weight: 500;
  921. line-height: 1.1;
  922. color: inherit;
  923. }
  924. h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small {
  925. font-weight: normal;
  926. line-height: 1;
  927. color: #777;
  928. }
  929. h1,.h1,h2,.h2,h3,.h3 {
  930. margin-top: 20px;
  931. margin-bottom: 10px;
  932. }
  933. h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small {
  934. font-size: 65%;
  935. }
  936. h4,.h4,h5,.h5,h6,.h6 {
  937. margin-top: 10px;
  938. margin-bottom: 10px;
  939. }
  940. h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small {
  941. font-size: 75%;
  942. }
  943. h1,.h1 {
  944. font-size: 36px;
  945. }
  946. h2,.h2 {
  947. font-size: 30px;
  948. }
  949. h3,.h3 {
  950. font-size: 24px;
  951. }
  952. h4,.h4 {
  953. font-size: 18px;
  954. }
  955. h5,.h5 {
  956. font-size: 14px;
  957. }
  958. h6,.h6 {
  959. font-size: 12px;
  960. }
  961. p {
  962. margin: 0 0 10px;
  963. }
  964. .lead {
  965. margin-bottom: 20px;
  966. font-size: 16px;
  967. font-weight: 300;
  968. line-height: 1.4;
  969. }
  970. @media (min-width: 768px) {
  971. .lead {
  972. font-size: 21px;
  973. }
  974. }
  975. small,.small {
  976. font-size: 85%;
  977. }
  978. cite {
  979. font-style: normal;
  980. }
  981. mark,.mark {
  982. padding: .2em;
  983. background-color: #fcf8e3;
  984. }
  985. .text-left {
  986. text-align: left;
  987. }
  988. .text-right {
  989. text-align: right;
  990. }
  991. .text-center {
  992. text-align: center;
  993. }
  994. .text-justify {
  995. text-align: justify;
  996. }
  997. .text-nowrap {
  998. white-space: nowrap;
  999. }
  1000. .text-lowercase {
  1001. text-transform: lowercase;
  1002. }
  1003. .text-uppercase {
  1004. text-transform: uppercase;
  1005. }
  1006. .text-capitalize {
  1007. text-transform: capitalize;
  1008. }
  1009. .text-muted {
  1010. color: #777;
  1011. }
  1012. .text-primary {
  1013. color: #428bca;
  1014. }
  1015. a.text-primary:hover {
  1016. color: #3071a9;
  1017. }
  1018. .text-success {
  1019. color: #3c763d;
  1020. }
  1021. a.text-success:hover {
  1022. color: #2b542c;
  1023. }
  1024. .text-info {
  1025. color: #31708f;
  1026. }
  1027. a.text-info:hover {
  1028. color: #245269;
  1029. }
  1030. .text-warning {
  1031. color: #8a6d3b;
  1032. }
  1033. a.text-warning:hover {
  1034. color: #66512c;
  1035. }
  1036. .text-danger {
  1037. color: #a94442;
  1038. }
  1039. a.text-danger:hover {
  1040. color: #843534;
  1041. }
  1042. .bg-primary {
  1043. color: #fff;
  1044. background-color: #428bca;
  1045. }
  1046. a.bg-primary:hover {
  1047. background-color: #3071a9;
  1048. }
  1049. .bg-success {
  1050. background-color: #dff0d8;
  1051. }
  1052. a.bg-success:hover {
  1053. background-color: #c1e2b3;
  1054. }
  1055. .bg-info {
  1056. background-color: #d9edf7;
  1057. }
  1058. a.bg-info:hover {
  1059. background-color: #afd9ee;
  1060. }
  1061. .bg-warning {
  1062. background-color: #fcf8e3;
  1063. }
  1064. a.bg-warning:hover {
  1065. background-color: #f7ecb5;
  1066. }
  1067. .bg-danger {
  1068. background-color: #f2dede;
  1069. }
  1070. a.bg-danger:hover {
  1071. background-color: #e4b9b9;
  1072. }
  1073. .page-header {
  1074. padding-bottom: 9px;
  1075. margin: 40px 0 20px;
  1076. border-bottom: 1px solid #eee;
  1077. }
  1078. ul,ol {
  1079. margin-top: 0;
  1080. margin-bottom: 10px;
  1081. }
  1082. ul ul,ol ul,ul ol,ol ol {
  1083. margin-bottom: 0;
  1084. }
  1085. .list-unstyled {
  1086. padding-left: 0;
  1087. list-style: none;
  1088. }
  1089. .list-inline {
  1090. padding-left: 0;
  1091. margin-left: -5px;
  1092. list-style: none;
  1093. }
  1094. .list-inline>li {
  1095. display: inline-block;
  1096. padding-right: 5px;
  1097. padding-left: 5px;
  1098. }
  1099. dl {
  1100. margin-top: 0;
  1101. margin-bottom: 20px;
  1102. }
  1103. dt,dd {
  1104. line-height: 1.42857143;
  1105. }
  1106. dt {
  1107. font-weight: bold;
  1108. }
  1109. dd {
  1110. margin-left: 0;
  1111. }
  1112. @media (min-width: 768px) {
  1113. .dl-horizontal dt {
  1114. float: left;
  1115. width: 160px;
  1116. overflow: hidden;
  1117. clear: left;
  1118. text-align: right;
  1119. text-overflow: ellipsis;
  1120. white-space: nowrap;
  1121. }
  1122. .dl-horizontal dd {
  1123. margin-left: 180px;
  1124. }
  1125. }
  1126. abbr[title],abbr[data-original-title] {
  1127. cursor: help;
  1128. border-bottom: 1px dotted #777;
  1129. }
  1130. .initialism {
  1131. font-size: 90%;
  1132. text-transform: uppercase;
  1133. }
  1134. blockquote {
  1135. padding: 10px 20px;
  1136. margin: 0 0 20px;
  1137. font-size: 17.5px;
  1138. border-left: 5px solid #eee;
  1139. }
  1140. blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child {
  1141. margin-bottom: 0;
  1142. }
  1143. blockquote footer,blockquote small,blockquote .small {
  1144. display: block;
  1145. font-size: 80%;
  1146. line-height: 1.42857143;
  1147. color: #777;
  1148. }
  1149. blockquote footer:before,blockquote small:before,blockquote .small:before {
  1150. content: '\2014 \00A0';
  1151. }
  1152. .blockquote-reverse,blockquote.pull-right {
  1153. padding-right: 15px;
  1154. padding-left: 0;
  1155. text-align: right;
  1156. border-right: 5px solid #eee;
  1157. border-left: 0;
  1158. }
  1159. .blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before {
  1160. content: '';
  1161. }
  1162. .blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after {
  1163. content: '\00A0 \2014';
  1164. }
  1165. blockquote:before,blockquote:after {
  1166. content: "";
  1167. }
  1168. address {
  1169. margin-bottom: 20px;
  1170. font-style: normal;
  1171. line-height: 1.42857143;
  1172. }
  1173. code,kbd,pre,samp {
  1174. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  1175. }
  1176. code {
  1177. padding: 2px 4px;
  1178. font-size: 90%;
  1179. color: #c7254e;
  1180. background-color: #f9f2f4;
  1181. border-radius: 4px;
  1182. }
  1183. kbd {
  1184. padding: 2px 4px;
  1185. font-size: 90%;
  1186. color: #fff;
  1187. background-color: #333;
  1188. border-radius: 3px;
  1189. -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
  1190. box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
  1191. }
  1192. kbd kbd {
  1193. padding: 0;
  1194. font-size: 100%;
  1195. -webkit-box-shadow: none;
  1196. box-shadow: none;
  1197. }
  1198. pre {
  1199. display: block;
  1200. padding: 9.5px;
  1201. margin: 0 0 10px;
  1202. font-size: 13px;
  1203. line-height: 1.42857143;
  1204. color: #333;
  1205. word-break: break-all;
  1206. word-wrap: break-word;
  1207. background-color: #f5f5f5;
  1208. border: 1px solid #ccc;
  1209. border-radius: 4px;
  1210. }
  1211. pre code {
  1212. padding: 0;
  1213. font-size: inherit;
  1214. color: inherit;
  1215. white-space: pre-wrap;
  1216. background-color: transparent;
  1217. border-radius: 0;
  1218. }
  1219. .pre-scrollable {
  1220. max-height: 340px;
  1221. overflow-y: scroll;
  1222. }
  1223. .container {
  1224. padding-right: 15px;
  1225. padding-left: 15px;
  1226. margin-right: auto;
  1227. margin-left: auto;
  1228. }
  1229. @media (min-width: 768px) {
  1230. .container {
  1231. width: 750px;
  1232. }
  1233. }
  1234. @media (min-width: 992px) {
  1235. .container {
  1236. width: 970px;
  1237. }
  1238. }
  1239. @media (min-width: 1200px) {
  1240. .container {
  1241. width: 1170px;
  1242. }
  1243. }
  1244. .container-fluid {
  1245. padding-right: 15px;
  1246. padding-left: 15px;
  1247. margin-right: auto;
  1248. margin-left: auto;
  1249. }
  1250. .row {
  1251. margin-right: -15px;
  1252. margin-left: -15px;
  1253. }
  1254. .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 {
  1255. position: relative;
  1256. min-height: 1px;
  1257. padding-right: 15px;
  1258. padding-left: 15px;
  1259. }
  1260. .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 {
  1261. float: left;
  1262. }
  1263. .col-xs-12 {
  1264. width: 100%;
  1265. }
  1266. .col-xs-11 {
  1267. width: 91.66666667%;
  1268. }
  1269. .col-xs-10 {
  1270. width: 83.33333333%;
  1271. }
  1272. .col-xs-9 {
  1273. width: 75%;
  1274. }
  1275. .col-xs-8 {
  1276. width: 66.66666667%;
  1277. }
  1278. .col-xs-7 {
  1279. width: 58.33333333%;
  1280. }
  1281. .col-xs-6 {
  1282. width: 50%;
  1283. }
  1284. .col-xs-5 {
  1285. width: 41.66666667%;
  1286. }
  1287. .col-xs-4 {
  1288. width: 33.33333333%;
  1289. }
  1290. .col-xs-3 {
  1291. width: 25%;
  1292. }
  1293. .col-xs-2 {
  1294. width: 16.66666667%;
  1295. }
  1296. .col-xs-1 {
  1297. width: 8.33333333%;
  1298. }
  1299. .col-xs-pull-12 {
  1300. right: 100%;
  1301. }
  1302. .col-xs-pull-11 {
  1303. right: 91.66666667%;
  1304. }
  1305. .col-xs-pull-10 {
  1306. right: 83.33333333%;
  1307. }
  1308. .col-xs-pull-9 {
  1309. right: 75%;
  1310. }
  1311. .col-xs-pull-8 {
  1312. right: 66.66666667%;
  1313. }
  1314. .col-xs-pull-7 {
  1315. right: 58.33333333%;
  1316. }
  1317. .col-xs-pull-6 {
  1318. right: 50%;
  1319. }
  1320. .col-xs-pull-5 {
  1321. right: 41.66666667%;
  1322. }
  1323. .col-xs-pull-4 {
  1324. right: 33.33333333%;
  1325. }
  1326. .col-xs-pull-3 {
  1327. right: 25%;
  1328. }
  1329. .col-xs-pull-2 {
  1330. right: 16.66666667%;
  1331. }
  1332. .col-xs-pull-1 {
  1333. right: 8.33333333%;
  1334. }
  1335. .col-xs-pull-0 {
  1336. right: auto;
  1337. }
  1338. .col-xs-push-12 {
  1339. left: 100%;
  1340. }
  1341. .col-xs-push-11 {
  1342. left: 91.66666667%;
  1343. }
  1344. .col-xs-push-10 {
  1345. left: 83.33333333%;
  1346. }
  1347. .col-xs-push-9 {
  1348. left: 75%;
  1349. }
  1350. .col-xs-push-8 {
  1351. left: 66.66666667%;
  1352. }
  1353. .col-xs-push-7 {
  1354. left: 58.33333333%;
  1355. }
  1356. .col-xs-push-6 {
  1357. left: 50%;
  1358. }
  1359. .col-xs-push-5 {
  1360. left: 41.66666667%;
  1361. }
  1362. .col-xs-push-4 {
  1363. left: 33.33333333%;
  1364. }
  1365. .col-xs-push-3 {
  1366. left: 25%;
  1367. }
  1368. .col-xs-push-2 {
  1369. left: 16.66666667%;
  1370. }
  1371. .col-xs-push-1 {
  1372. left: 8.33333333%;
  1373. }
  1374. .col-xs-push-0 {
  1375. left: auto;
  1376. }
  1377. .col-xs-offset-12 {
  1378. margin-left: 100%;
  1379. }
  1380. .col-xs-offset-11 {
  1381. margin-left: 91.66666667%;
  1382. }
  1383. .col-xs-offset-10 {
  1384. margin-left: 83.33333333%;
  1385. }
  1386. .col-xs-offset-9 {
  1387. margin-left: 75%;
  1388. }
  1389. .col-xs-offset-8 {
  1390. margin-left: 66.66666667%;
  1391. }
  1392. .col-xs-offset-7 {
  1393. margin-left: 58.33333333%;
  1394. }
  1395. .col-xs-offset-6 {
  1396. margin-left: 50%;
  1397. }
  1398. .col-xs-offset-5 {
  1399. margin-left: 41.66666667%;
  1400. }
  1401. .col-xs-offset-4 {
  1402. margin-left: 33.33333333%;
  1403. }
  1404. .col-xs-offset-3 {
  1405. margin-left: 25%;
  1406. }
  1407. .col-xs-offset-2 {
  1408. margin-left: 16.66666667%;
  1409. }
  1410. .col-xs-offset-1 {
  1411. margin-left: 8.33333333%;
  1412. }
  1413. .col-xs-offset-0 {
  1414. margin-left: 0;
  1415. }
  1416. @media (min-width: 768px) {
  1417. .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 {
  1418. float: left;
  1419. }
  1420. .col-sm-12 {
  1421. width: 100%;
  1422. }
  1423. .col-sm-11 {
  1424. width: 91.66666667%;
  1425. }
  1426. .col-sm-10 {
  1427. width: 83.33333333%;
  1428. }
  1429. .col-sm-9 {
  1430. width: 75%;
  1431. }
  1432. .col-sm-8 {
  1433. width: 66.66666667%;
  1434. }
  1435. .col-sm-7 {
  1436. width: 58.33333333%;
  1437. }
  1438. .col-sm-6 {
  1439. width: 50%;
  1440. }
  1441. .col-sm-5 {
  1442. width: 41.66666667%;
  1443. }
  1444. .col-sm-4 {
  1445. width: 33.33333333%;
  1446. }
  1447. .col-sm-3 {
  1448. width: 25%;
  1449. }
  1450. .col-sm-2 {
  1451. width: 16.66666667%;
  1452. }
  1453. .col-sm-1 {
  1454. width: 8.33333333%;
  1455. }
  1456. .col-sm-pull-12 {
  1457. right: 100%;
  1458. }
  1459. .col-sm-pull-11 {
  1460. right: 91.66666667%;
  1461. }
  1462. .col-sm-pull-10 {
  1463. right: 83.33333333%;
  1464. }
  1465. .col-sm-pull-9 {
  1466. right: 75%;
  1467. }
  1468. .col-sm-pull-8 {
  1469. right: 66.66666667%;
  1470. }
  1471. .col-sm-pull-7 {
  1472. right: 58.33333333%;
  1473. }
  1474. .col-sm-pull-6 {
  1475. right: 50%;
  1476. }
  1477. .col-sm-pull-5 {
  1478. right: 41.66666667%;
  1479. }
  1480. .col-sm-pull-4 {
  1481. right: 33.33333333%;
  1482. }
  1483. .col-sm-pull-3 {
  1484. right: 25%;
  1485. }
  1486. .col-sm-pull-2 {
  1487. right: 16.66666667%;
  1488. }
  1489. .col-sm-pull-1 {
  1490. right: 8.33333333%;
  1491. }
  1492. .col-sm-pull-0 {
  1493. right: auto;
  1494. }
  1495. .col-sm-push-12 {
  1496. left: 100%;
  1497. }
  1498. .col-sm-push-11 {
  1499. left: 91.66666667%;
  1500. }
  1501. .col-sm-push-10 {
  1502. left: 83.33333333%;
  1503. }
  1504. .col-sm-push-9 {
  1505. left: 75%;
  1506. }
  1507. .col-sm-push-8 {
  1508. left: 66.66666667%;
  1509. }
  1510. .col-sm-push-7 {
  1511. left: 58.33333333%;
  1512. }
  1513. .col-sm-push-6 {
  1514. left: 50%;
  1515. }
  1516. .col-sm-push-5 {
  1517. left: 41.66666667%;
  1518. }
  1519. .col-sm-push-4 {
  1520. left: 33.33333333%;
  1521. }
  1522. .col-sm-push-3 {
  1523. left: 25%;
  1524. }
  1525. .col-sm-push-2 {
  1526. left: 16.66666667%;
  1527. }
  1528. .col-sm-push-1 {
  1529. left: 8.33333333%;
  1530. }
  1531. .col-sm-push-0 {
  1532. left: auto;
  1533. }
  1534. .col-sm-offset-12 {
  1535. margin-left: 100%;
  1536. }
  1537. .col-sm-offset-11 {
  1538. margin-left: 91.66666667%;
  1539. }
  1540. .col-sm-offset-10 {
  1541. margin-left: 83.33333333%;
  1542. }
  1543. .col-sm-offset-9 {
  1544. margin-left: 75%;
  1545. }
  1546. .col-sm-offset-8 {
  1547. margin-left: 66.66666667%;
  1548. }
  1549. .col-sm-offset-7 {
  1550. margin-left: 58.33333333%;
  1551. }
  1552. .col-sm-offset-6 {
  1553. margin-left: 50%;
  1554. }
  1555. .col-sm-offset-5 {
  1556. margin-left: 41.66666667%;
  1557. }
  1558. .col-sm-offset-4 {
  1559. margin-left: 33.33333333%;
  1560. }
  1561. .col-sm-offset-3 {
  1562. margin-left: 25%;
  1563. }
  1564. .col-sm-offset-2 {
  1565. margin-left: 16.66666667%;
  1566. }
  1567. .col-sm-offset-1 {
  1568. margin-left: 8.33333333%;
  1569. }
  1570. .col-sm-offset-0 {
  1571. margin-left: 0;
  1572. }
  1573. }
  1574. @media (min-width: 992px) {
  1575. .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 {
  1576. float: left;
  1577. }
  1578. .col-md-12 {
  1579. width: 100%;
  1580. }
  1581. .col-md-11 {
  1582. width: 91.66666667%;
  1583. }
  1584. .col-md-10 {
  1585. width: 83.33333333%;
  1586. }
  1587. .col-md-9 {
  1588. width: 75%;
  1589. }
  1590. .col-md-8 {
  1591. width: 66.66666667%;
  1592. }
  1593. .col-md-7 {
  1594. width: 58.33333333%;
  1595. }
  1596. .col-md-6 {
  1597. width: 50%;
  1598. }
  1599. .col-md-5 {
  1600. width: 41.66666667%;
  1601. }
  1602. .col-md-4 {
  1603. width: 33.33333333%;
  1604. }
  1605. .col-md-3 {
  1606. width: 25%;
  1607. }
  1608. .col-md-2 {
  1609. width: 16.66666667%;
  1610. }
  1611. .col-md-1 {
  1612. width: 8.33333333%;
  1613. }
  1614. .col-md-pull-12 {
  1615. right: 100%;
  1616. }
  1617. .col-md-pull-11 {
  1618. right: 91.66666667%;
  1619. }
  1620. .col-md-pull-10 {
  1621. right: 83.33333333%;
  1622. }
  1623. .col-md-pull-9 {
  1624. right: 75%;
  1625. }
  1626. .col-md-pull-8 {
  1627. right: 66.66666667%;
  1628. }
  1629. .col-md-pull-7 {
  1630. right: 58.33333333%;
  1631. }
  1632. .col-md-pull-6 {
  1633. right: 50%;
  1634. }
  1635. .col-md-pull-5 {
  1636. right: 41.66666667%;
  1637. }
  1638. .col-md-pull-4 {
  1639. right: 33.33333333%;
  1640. }
  1641. .col-md-pull-3 {
  1642. right: 25%;
  1643. }
  1644. .col-md-pull-2 {
  1645. right: 16.66666667%;
  1646. }
  1647. .col-md-pull-1 {
  1648. right: 8.33333333%;
  1649. }
  1650. .col-md-pull-0 {
  1651. right: auto;
  1652. }
  1653. .col-md-push-12 {
  1654. left: 100%;
  1655. }
  1656. .col-md-push-11 {
  1657. left: 91.66666667%;
  1658. }
  1659. .col-md-push-10 {
  1660. left: 83.33333333%;
  1661. }
  1662. .col-md-push-9 {
  1663. left: 75%;
  1664. }
  1665. .col-md-push-8 {
  1666. left: 66.66666667%;
  1667. }
  1668. .col-md-push-7 {
  1669. left: 58.33333333%;
  1670. }
  1671. .col-md-push-6 {
  1672. left: 50%;
  1673. }
  1674. .col-md-push-5 {
  1675. left: 41.66666667%;
  1676. }
  1677. .col-md-push-4 {
  1678. left: 33.33333333%;
  1679. }
  1680. .col-md-push-3 {
  1681. left: 25%;
  1682. }
  1683. .col-md-push-2 {
  1684. left: 16.66666667%;
  1685. }
  1686. .col-md-push-1 {
  1687. left: 8.33333333%;
  1688. }
  1689. .col-md-push-0 {
  1690. left: auto;
  1691. }
  1692. .col-md-offset-12 {
  1693. margin-left: 100%;
  1694. }
  1695. .col-md-offset-11 {
  1696. margin-left: 91.66666667%;
  1697. }
  1698. .col-md-offset-10 {
  1699. margin-left: 83.33333333%;
  1700. }
  1701. .col-md-offset-9 {
  1702. margin-left: 75%;
  1703. }
  1704. .col-md-offset-8 {
  1705. margin-left: 66.66666667%;
  1706. }
  1707. .col-md-offset-7 {
  1708. margin-left: 58.33333333%;
  1709. }
  1710. .col-md-offset-6 {
  1711. margin-left: 50%;
  1712. }
  1713. .col-md-offset-5 {
  1714. margin-left: 41.66666667%;
  1715. }
  1716. .col-md-offset-4 {
  1717. margin-left: 33.33333333%;
  1718. }
  1719. .col-md-offset-3 {
  1720. margin-left: 25%;
  1721. }
  1722. .col-md-offset-2 {
  1723. margin-left: 16.66666667%;
  1724. }
  1725. .col-md-offset-1 {
  1726. margin-left: 8.33333333%;
  1727. }
  1728. .col-md-offset-0 {
  1729. margin-left: 0;
  1730. }
  1731. }
  1732. @media (min-width: 1200px) {
  1733. .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 {
  1734. float: left;
  1735. }
  1736. .col-lg-12 {
  1737. width: 100%;
  1738. }
  1739. .col-lg-11 {
  1740. width: 91.66666667%;
  1741. }
  1742. .col-lg-10 {
  1743. width: 83.33333333%;
  1744. }
  1745. .col-lg-9 {
  1746. width: 75%;
  1747. }
  1748. .col-lg-8 {
  1749. width: 66.66666667%;
  1750. }
  1751. .col-lg-7 {
  1752. width: 58.33333333%;
  1753. }
  1754. .col-lg-6 {
  1755. width: 50%;
  1756. }
  1757. .col-lg-5 {
  1758. width: 41.66666667%;
  1759. }
  1760. .col-lg-4 {
  1761. width: 33.33333333%;
  1762. }
  1763. .col-lg-3 {
  1764. width: 25%;
  1765. }
  1766. .col-lg-2 {
  1767. width: 16.66666667%;
  1768. }
  1769. .col-lg-1 {
  1770. width: 8.33333333%;
  1771. }
  1772. .col-lg-pull-12 {
  1773. right: 100%;
  1774. }
  1775. .col-lg-pull-11 {
  1776. right: 91.66666667%;
  1777. }
  1778. .col-lg-pull-10 {
  1779. right: 83.33333333%;
  1780. }
  1781. .col-lg-pull-9 {
  1782. right: 75%;
  1783. }
  1784. .col-lg-pull-8 {
  1785. right: 66.66666667%;
  1786. }
  1787. .col-lg-pull-7 {
  1788. right: 58.33333333%;
  1789. }
  1790. .col-lg-pull-6 {
  1791. right: 50%;
  1792. }
  1793. .col-lg-pull-5 {
  1794. right: 41.66666667%;
  1795. }
  1796. .col-lg-pull-4 {
  1797. right: 33.33333333%;
  1798. }
  1799. .col-lg-pull-3 {
  1800. right: 25%;
  1801. }
  1802. .col-lg-pull-2 {
  1803. right: 16.66666667%;
  1804. }
  1805. .col-lg-pull-1 {
  1806. right: 8.33333333%;
  1807. }
  1808. .col-lg-pull-0 {
  1809. right: auto;
  1810. }
  1811. .col-lg-push-12 {
  1812. left: 100%;
  1813. }
  1814. .col-lg-push-11 {
  1815. left: 91.66666667%;
  1816. }
  1817. .col-lg-push-10 {
  1818. left: 83.33333333%;
  1819. }
  1820. .col-lg-push-9 {
  1821. left: 75%;
  1822. }
  1823. .col-lg-push-8 {
  1824. left: 66.66666667%;
  1825. }
  1826. .col-lg-push-7 {
  1827. left: 58.33333333%;
  1828. }
  1829. .col-lg-push-6 {
  1830. left: 50%;
  1831. }
  1832. .col-lg-push-5 {
  1833. left: 41.66666667%;
  1834. }
  1835. .col-lg-push-4 {
  1836. left: 33.33333333%;
  1837. }
  1838. .col-lg-push-3 {
  1839. left: 25%;
  1840. }
  1841. .col-lg-push-2 {
  1842. left: 16.66666667%;
  1843. }
  1844. .col-lg-push-1 {
  1845. left: 8.33333333%;
  1846. }
  1847. .col-lg-push-0 {
  1848. left: auto;
  1849. }
  1850. .col-lg-offset-12 {
  1851. margin-left: 100%;
  1852. }
  1853. .col-lg-offset-11 {
  1854. margin-left: 91.66666667%;
  1855. }
  1856. .col-lg-offset-10 {
  1857. margin-left: 83.33333333%;
  1858. }
  1859. .col-lg-offset-9 {
  1860. margin-left: 75%;
  1861. }
  1862. .col-lg-offset-8 {
  1863. margin-left: 66.66666667%;
  1864. }
  1865. .col-lg-offset-7 {
  1866. margin-left: 58.33333333%;
  1867. }
  1868. .col-lg-offset-6 {
  1869. margin-left: 50%;
  1870. }
  1871. .col-lg-offset-5 {
  1872. margin-left: 41.66666667%;
  1873. }
  1874. .col-lg-offset-4 {
  1875. margin-left: 33.33333333%;
  1876. }
  1877. .col-lg-offset-3 {
  1878. margin-left: 25%;
  1879. }
  1880. .col-lg-offset-2 {
  1881. margin-left: 16.66666667%;
  1882. }
  1883. .col-lg-offset-1 {
  1884. margin-left: 8.33333333%;
  1885. }
  1886. .col-lg-offset-0 {
  1887. margin-left: 0;
  1888. }
  1889. }
  1890. table {
  1891. background-color: transparent;
  1892. }
  1893. th {
  1894. text-align: left;
  1895. }
  1896. .table {
  1897. width: 100%;
  1898. max-width: 100%;
  1899. margin-bottom: 20px;
  1900. }
  1901. .table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td {
  1902. padding: 8px;
  1903. line-height: 1.42857143;
  1904. vertical-align: top;
  1905. border-top: 1px solid #ddd;
  1906. }
  1907. .table>thead>tr>th {
  1908. vertical-align: bottom;
  1909. border-bottom: 2px solid #ddd;
  1910. }
  1911. .table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td {
  1912. border-top: 0;
  1913. }
  1914. .table>tbody+tbody {
  1915. border-top: 2px solid #ddd;
  1916. }
  1917. .table .table {
  1918. background-color: #fff;
  1919. }
  1920. .table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td {
  1921. padding: 5px;
  1922. }
  1923. .table-bordered {
  1924. border: 1px solid #ddd;
  1925. }
  1926. .table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td {
  1927. border: 1px solid #ddd;
  1928. }
  1929. .table-bordered>thead>tr>th,.table-bordered>thead>tr>td {
  1930. border-bottom-width: 2px;
  1931. }
  1932. .table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th {
  1933. background-color: #f9f9f9;
  1934. }
  1935. .table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th {
  1936. background-color: #f5f5f5;
  1937. }
  1938. table col[class*="col-"] {
  1939. position: static;
  1940. display: table-column;
  1941. float: none;
  1942. }
  1943. table td[class*="col-"],table th[class*="col-"] {
  1944. position: static;
  1945. display: table-cell;
  1946. float: none;
  1947. }
  1948. .table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th {
  1949. background-color: #f5f5f5;
  1950. }
  1951. .table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th {
  1952. background-color: #e8e8e8;
  1953. }
  1954. .table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th {
  1955. background-color: #dff0d8;
  1956. }
  1957. .table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th {
  1958. background-color: #d0e9c6;
  1959. }
  1960. .table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th {
  1961. background-color: #d9edf7;
  1962. }
  1963. .table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th {
  1964. background-color: #c4e3f3;
  1965. }
  1966. .table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th {
  1967. background-color: #fcf8e3;
  1968. }
  1969. .table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th {
  1970. background-color: #faf2cc;
  1971. }
  1972. .table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th {
  1973. background-color: #f2dede;
  1974. }
  1975. .table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th {
  1976. background-color: #ebcccc;
  1977. }
  1978. @media screen and (max-width: 767px) {
  1979. .table-responsive {
  1980. width: 100%;
  1981. margin-bottom: 15px;
  1982. overflow-x: auto;
  1983. overflow-y: hidden;
  1984. -webkit-overflow-scrolling: touch;
  1985. -ms-overflow-style: -ms-autohiding-scrollbar;
  1986. border: 1px solid #ddd;
  1987. }
  1988. .table-responsive>.table {
  1989. margin-bottom: 0;
  1990. }
  1991. .table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td {
  1992. white-space: nowrap;
  1993. }
  1994. .table-responsive>.table-bordered {
  1995. border: 0;
  1996. }
  1997. .table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child {
  1998. border-left: 0;
  1999. }
  2000. .table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child {
  2001. border-right: 0;
  2002. }
  2003. .table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td {
  2004. border-bottom: 0;
  2005. }
  2006. }
  2007. fieldset {
  2008. min-width: 0;
  2009. padding: 0;
  2010. margin: 0;
  2011. border: 0;
  2012. }
  2013. legend {
  2014. display: block;
  2015. width: 100%;
  2016. padding: 0;
  2017. margin-bottom: 20px;
  2018. font-size: 21px;
  2019. line-height: inherit;
  2020. color: #333;
  2021. border: 0;
  2022. border-bottom: 1px solid #e5e5e5;
  2023. }
  2024. label {
  2025. display: inline-block;
  2026. max-width: 100%;
  2027. margin-bottom: 5px;
  2028. font-weight: bold;
  2029. }
  2030. input[type="search"] {
  2031. -webkit-box-sizing: border-box;
  2032. -moz-box-sizing: border-box;
  2033. box-sizing: border-box;
  2034. }
  2035. input[type="radio"],input[type="checkbox"] {
  2036. margin: 4px 0 0;
  2037. margin-top: 1px \9;
  2038. line-height: normal;
  2039. }
  2040. input[type="file"] {
  2041. display: block;
  2042. }
  2043. input[type="range"] {
  2044. display: block;
  2045. width: 100%;
  2046. }
  2047. select[multiple],select[size] {
  2048. height: auto;
  2049. }
  2050. input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus {
  2051. outline: thin dotted;
  2052. outline: 5px auto -webkit-focus-ring-color;
  2053. outline-offset: -2px;
  2054. }
  2055. output {
  2056. display: block;
  2057. padding-top: 7px;
  2058. font-size: 14px;
  2059. line-height: 1.42857143;
  2060. color: #555;
  2061. }
  2062. .form-control {
  2063. display: block;
  2064. width: 100%;
  2065. height: 34px;
  2066. padding: 6px 12px;
  2067. font-size: 14px;
  2068. line-height: 1.42857143;
  2069. color: #555;
  2070. background-color: #fff;
  2071. background-image: none;
  2072. border: 1px solid #ccc;
  2073. border-radius: 4px;
  2074. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2075. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2076. -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  2077. -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  2078. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  2079. }
  2080. .form-control:focus {
  2081. border-color: #66afe9;
  2082. outline: 0;
  2083. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  2084. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  2085. }
  2086. .form-control::-moz-placeholder {
  2087. color: #777;
  2088. opacity: 1;
  2089. }
  2090. .form-control:-ms-input-placeholder {
  2091. color: #777;
  2092. }
  2093. .form-control::-webkit-input-placeholder {
  2094. color: #777;
  2095. }
  2096. .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {
  2097. cursor: not-allowed;
  2098. background-color: #eee;
  2099. opacity: 1;
  2100. }
  2101. textarea.form-control {
  2102. height: auto;
  2103. }
  2104. input[type="search"] {
  2105. -webkit-appearance: none;
  2106. }
  2107. input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"] {
  2108. line-height: 34px;
  2109. line-height: 1.42857143 \0;
  2110. }
  2111. input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm {
  2112. line-height: 30px;
  2113. }
  2114. input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg {
  2115. line-height: 46px;
  2116. }
  2117. .form-group {
  2118. margin-bottom: 15px;
  2119. }
  2120. .radio,.checkbox {
  2121. position: relative;
  2122. display: block;
  2123. min-height: 20px;
  2124. margin-top: 10px;
  2125. margin-bottom: 10px;
  2126. }
  2127. .radio label,.checkbox label {
  2128. padding-left: 20px;
  2129. margin-bottom: 0;
  2130. font-weight: normal;
  2131. cursor: pointer;
  2132. }
  2133. .radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"] {
  2134. position: absolute;
  2135. margin-top: 4px \9;
  2136. margin-left: -20px;
  2137. }
  2138. .radio+.radio,.checkbox+.checkbox {
  2139. margin-top: -5px;
  2140. }
  2141. .radio-inline,.checkbox-inline {
  2142. display: inline-block;
  2143. padding-left: 20px;
  2144. margin-bottom: 0;
  2145. font-weight: normal;
  2146. vertical-align: middle;
  2147. cursor: pointer;
  2148. }
  2149. .radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline {
  2150. margin-top: 0;
  2151. margin-left: 10px;
  2152. }
  2153. input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"] {
  2154. cursor: not-allowed;
  2155. }
  2156. .radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline {
  2157. cursor: not-allowed;
  2158. }
  2159. .radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label {
  2160. cursor: not-allowed;
  2161. }
  2162. .form-control-static {
  2163. padding-top: 7px;
  2164. padding-bottom: 7px;
  2165. margin-bottom: 0;
  2166. }
  2167. .form-control-static.input-lg,.form-control-static.input-sm {
  2168. padding-right: 0;
  2169. padding-left: 0;
  2170. }
  2171. .input-sm,.form-horizontal .form-group-sm .form-control {
  2172. height: 30px;
  2173. padding: 5px 10px;
  2174. font-size: 12px;
  2175. line-height: 1.5;
  2176. border-radius: 3px;
  2177. }
  2178. select.input-sm {
  2179. height: 30px;
  2180. line-height: 30px;
  2181. }
  2182. textarea.input-sm,select[multiple].input-sm {
  2183. height: auto;
  2184. }
  2185. .input-lg,.form-horizontal .form-group-lg .form-control {
  2186. height: 46px;
  2187. padding: 10px 16px;
  2188. font-size: 18px;
  2189. line-height: 1.33;
  2190. border-radius: 6px;
  2191. }
  2192. select.input-lg {
  2193. height: 46px;
  2194. line-height: 46px;
  2195. }
  2196. textarea.input-lg,select[multiple].input-lg {
  2197. height: auto;
  2198. }
  2199. .has-feedback {
  2200. position: relative;
  2201. }
  2202. .has-feedback .form-control {
  2203. padding-right: 42.5px;
  2204. }
  2205. .form-control-feedback {
  2206. position: absolute;
  2207. top: 25px;
  2208. right: 0;
  2209. z-index: 2;
  2210. display: block;
  2211. width: 34px;
  2212. height: 34px;
  2213. line-height: 34px;
  2214. text-align: center;
  2215. }
  2216. .input-lg+.form-control-feedback {
  2217. width: 46px;
  2218. height: 46px;
  2219. line-height: 46px;
  2220. }
  2221. .input-sm+.form-control-feedback {
  2222. width: 30px;
  2223. height: 30px;
  2224. line-height: 30px;
  2225. }
  2226. .has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline {
  2227. color: #3c763d;
  2228. }
  2229. .has-success .form-control {
  2230. border-color: #3c763d;
  2231. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2232. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2233. }
  2234. .has-success .form-control:focus {
  2235. border-color: #2b542c;
  2236. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
  2237. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
  2238. }
  2239. .has-success .input-group-addon {
  2240. color: #3c763d;
  2241. background-color: #dff0d8;
  2242. border-color: #3c763d;
  2243. }
  2244. .has-success .form-control-feedback {
  2245. color: #3c763d;
  2246. }
  2247. .has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline {
  2248. color: #8a6d3b;
  2249. }
  2250. .has-warning .form-control {
  2251. border-color: #8a6d3b;
  2252. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2253. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2254. }
  2255. .has-warning .form-control:focus {
  2256. border-color: #66512c;
  2257. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
  2258. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
  2259. }
  2260. .has-warning .input-group-addon {
  2261. color: #8a6d3b;
  2262. background-color: #fcf8e3;
  2263. border-color: #8a6d3b;
  2264. }
  2265. .has-warning .form-control-feedback {
  2266. color: #8a6d3b;
  2267. }
  2268. .has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline {
  2269. color: #a94442;
  2270. }
  2271. .has-error .form-control {
  2272. border-color: #a94442;
  2273. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2274. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  2275. }
  2276. .has-error .form-control:focus {
  2277. border-color: #843534;
  2278. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
  2279. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
  2280. }
  2281. .has-error .input-group-addon {
  2282. color: #a94442;
  2283. background-color: #f2dede;
  2284. border-color: #a94442;
  2285. }
  2286. .has-error .form-control-feedback {
  2287. color: #a94442;
  2288. }
  2289. .has-feedback label.sr-only ~ .form-control-feedback {
  2290. top: 0;
  2291. }
  2292. .help-block {
  2293. display: block;
  2294. margin-top: 5px;
  2295. margin-bottom: 10px;
  2296. color: #737373;
  2297. }
  2298. @media (min-width: 768px) {
  2299. .form-inline .form-group {
  2300. display: inline-block;
  2301. margin-bottom: 0;
  2302. vertical-align: middle;
  2303. }
  2304. .form-inline .form-control {
  2305. display: inline-block;
  2306. width: auto;
  2307. vertical-align: middle;
  2308. }
  2309. .form-inline .input-group {
  2310. display: inline-table;
  2311. vertical-align: middle;
  2312. }
  2313. .form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control {
  2314. width: auto;
  2315. }
  2316. .form-inline .input-group>.form-control {
  2317. width: 100%;
  2318. }
  2319. .form-inline .control-label {
  2320. margin-bottom: 0;
  2321. vertical-align: middle;
  2322. }
  2323. .form-inline .radio,.form-inline .checkbox {
  2324. display: inline-block;
  2325. margin-top: 0;
  2326. margin-bottom: 0;
  2327. vertical-align: middle;
  2328. }
  2329. .form-inline .radio label,.form-inline .checkbox label {
  2330. padding-left: 0;
  2331. }
  2332. .form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"] {
  2333. position: relative;
  2334. margin-left: 0;
  2335. }
  2336. .form-inline .has-feedback .form-control-feedback {
  2337. top: 0;
  2338. }
  2339. }
  2340. .form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline {
  2341. padding-top: 7px;
  2342. margin-top: 0;
  2343. margin-bottom: 0;
  2344. }
  2345. .form-horizontal .radio,.form-horizontal .checkbox {
  2346. min-height: 27px;
  2347. }
  2348. .form-horizontal .form-group {
  2349. margin-right: -15px;
  2350. margin-left: -15px;
  2351. }
  2352. @media (min-width: 768px) {
  2353. .form-horizontal .control-label {
  2354. padding-top: 7px;
  2355. margin-bottom: 0;
  2356. text-align: right;
  2357. }
  2358. }
  2359. .form-horizontal .has-feedback .form-control-feedback {
  2360. top: 0;
  2361. right: 15px;
  2362. }
  2363. @media (min-width: 768px) {
  2364. .form-horizontal .form-group-lg .control-label {
  2365. padding-top: 14.3px;
  2366. }
  2367. }
  2368. @media (min-width: 768px) {
  2369. .form-horizontal .form-group-sm .control-label {
  2370. padding-top: 6px;
  2371. }
  2372. }
  2373. .btn {
  2374. display: inline-block;
  2375. padding: 6px 12px;
  2376. margin-bottom: 0;
  2377. font-size: 14px;
  2378. font-weight: normal;
  2379. line-height: 1.42857143;
  2380. text-align: center;
  2381. white-space: nowrap;
  2382. vertical-align: middle;
  2383. cursor: pointer;
  2384. -webkit-user-select: none;
  2385. -moz-user-select: none;
  2386. -ms-user-select: none;
  2387. user-select: none;
  2388. background-image: none;
  2389. border: 1px solid transparent;
  2390. border-radius: 4px;
  2391. }
  2392. .btn:focus,.btn:active:focus,.btn.active:focus {
  2393. outline: thin dotted;
  2394. outline: 5px auto -webkit-focus-ring-color;
  2395. outline-offset: -2px;
  2396. }
  2397. .btn:hover,.btn:focus {
  2398. color: #333;
  2399. text-decoration: none;
  2400. }
  2401. .btn:active,.btn.active {
  2402. background-image: none;
  2403. outline: 0;
  2404. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  2405. box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  2406. }
  2407. .btn.disabled,.btn[disabled],fieldset[disabled] .btn {
  2408. pointer-events: none;
  2409. cursor: not-allowed;
  2410. filter: alpha(opacity=65);
  2411. -webkit-box-shadow: none;
  2412. box-shadow: none;
  2413. opacity: .65;
  2414. }
  2415. .btn-default {
  2416. color: #333;
  2417. background-color: #fff;
  2418. border-color: #ccc;
  2419. }
  2420. .btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default {
  2421. color: #333;
  2422. background-color: #e6e6e6;
  2423. border-color: #adadad;
  2424. }
  2425. .btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default {
  2426. background-image: none;
  2427. }
  2428. .btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active {
  2429. background-color: #fff;
  2430. border-color: #ccc;
  2431. }
  2432. .btn-default .badge {
  2433. color: #fff;
  2434. background-color: #333;
  2435. }
  2436. .btn-primary {
  2437. color: #fff;
  2438. background-color: #428bca;
  2439. border-color: #357ebd;
  2440. }
  2441. .btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary {
  2442. color: #fff;
  2443. background-color: #3071a9;
  2444. border-color: #285e8e;
  2445. }
  2446. .btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary {
  2447. background-image: none;
  2448. }
  2449. .btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active {
  2450. background-color: #428bca;
  2451. border-color: #357ebd;
  2452. }
  2453. .btn-primary .badge {
  2454. color: #428bca;
  2455. background-color: #fff;
  2456. }
  2457. .btn-success {
  2458. color: #fff;
  2459. background-color: #5cb85c;
  2460. border-color: #4cae4c;
  2461. }
  2462. .btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success {
  2463. color: #fff;
  2464. background-color: #449d44;
  2465. border-color: #398439;
  2466. }
  2467. .btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success {
  2468. background-image: none;
  2469. }
  2470. .btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active {
  2471. background-color: #5cb85c;
  2472. border-color: #4cae4c;
  2473. }
  2474. .btn-success .badge {
  2475. color: #5cb85c;
  2476. background-color: #fff;
  2477. }
  2478. .btn-info {
  2479. color: #fff;
  2480. background-color: #5bc0de;
  2481. border-color: #46b8da;
  2482. }
  2483. .btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info {
  2484. color: #fff;
  2485. background-color: #31b0d5;
  2486. border-color: #269abc;
  2487. }
  2488. .btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info {
  2489. background-image: none;
  2490. }
  2491. .btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active {
  2492. background-color: #5bc0de;
  2493. border-color: #46b8da;
  2494. }
  2495. .btn-info .badge {
  2496. color: #5bc0de;
  2497. background-color: #fff;
  2498. }
  2499. .btn-warning {
  2500. color: #fff;
  2501. background-color: #f0ad4e;
  2502. border-color: #eea236;
  2503. }
  2504. .btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning {
  2505. color: #fff;
  2506. background-color: #ec971f;
  2507. border-color: #d58512;
  2508. }
  2509. .btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning {
  2510. background-image: none;
  2511. }
  2512. .btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active {
  2513. background-color: #f0ad4e;
  2514. border-color: #eea236;
  2515. }
  2516. .btn-warning .badge {
  2517. color: #f0ad4e;
  2518. background-color: #fff;
  2519. }
  2520. .btn-danger {
  2521. color: #fff;
  2522. background-color: #d9534f;
  2523. border-color: #d43f3a;
  2524. }
  2525. .btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger {
  2526. color: #fff;
  2527. background-color: #c9302c;
  2528. border-color: #ac2925;
  2529. }
  2530. .btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger {
  2531. background-image: none;
  2532. }
  2533. .btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active {
  2534. background-color: #d9534f;
  2535. border-color: #d43f3a;
  2536. }
  2537. .btn-danger .badge {
  2538. color: #d9534f;
  2539. background-color: #fff;
  2540. }
  2541. .btn-link {
  2542. font-weight: normal;
  2543. color: #428bca;
  2544. cursor: pointer;
  2545. border-radius: 0;
  2546. }
  2547. .btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link {
  2548. background-color: transparent;
  2549. -webkit-box-shadow: none;
  2550. box-shadow: none;
  2551. }
  2552. .btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active {
  2553. border-color: transparent;
  2554. }
  2555. .btn-link:hover,.btn-link:focus {
  2556. color: #2a6496;
  2557. text-decoration: underline;
  2558. background-color: transparent;
  2559. }
  2560. .btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus {
  2561. color: #777;
  2562. text-decoration: none;
  2563. }
  2564. .btn-lg,.btn-group-lg>.btn {
  2565. padding: 10px 16px;
  2566. font-size: 18px;
  2567. line-height: 1.33;
  2568. border-radius: 6px;
  2569. }
  2570. .btn-sm,.btn-group-sm>.btn {
  2571. padding: 5px 10px;
  2572. font-size: 12px;
  2573. line-height: 1.5;
  2574. border-radius: 3px;
  2575. }
  2576. .btn-xs,.btn-group-xs>.btn {
  2577. padding: 1px 5px;
  2578. font-size: 12px;
  2579. line-height: 1.5;
  2580. border-radius: 3px;
  2581. }
  2582. .btn-block {
  2583. display: block;
  2584. width: 100%;
  2585. }
  2586. .btn-block+.btn-block {
  2587. margin-top: 5px;
  2588. }
  2589. input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block {
  2590. width: 100%;
  2591. }
  2592. .fade {
  2593. opacity: 0;
  2594. -webkit-transition: opacity .15s linear;
  2595. -o-transition: opacity .15s linear;
  2596. transition: opacity .15s linear;
  2597. }
  2598. .fade.in {
  2599. opacity: 1;
  2600. }
  2601. .collapse {
  2602. display: none;
  2603. }
  2604. .collapse.in {
  2605. display: block;
  2606. }
  2607. tr.collapse.in {
  2608. display: table-row;
  2609. }
  2610. tbody.collapse.in {
  2611. display: table-row-group;
  2612. }
  2613. .collapsing {
  2614. position: relative;
  2615. height: 0;
  2616. overflow: hidden;
  2617. -webkit-transition: height .35s ease;
  2618. -o-transition: height .35s ease;
  2619. transition: height .35s ease;
  2620. }
  2621. .caret {
  2622. display: inline-block;
  2623. width: 0;
  2624. height: 0;
  2625. margin-left: 2px;
  2626. vertical-align: middle;
  2627. border-top: 4px solid;
  2628. border-right: 4px solid transparent;
  2629. border-left: 4px solid transparent;
  2630. }
  2631. .dropdown {
  2632. position: relative;
  2633. }
  2634. .dropdown-toggle:focus {
  2635. outline: 0;
  2636. }
  2637. .dropdown-menu {
  2638. position: absolute;
  2639. top: 100%;
  2640. left: 0;
  2641. z-index: 1000;
  2642. display: none;
  2643. float: left;
  2644. min-width: 160px;
  2645. padding: 5px 0;
  2646. margin: 2px 0 0;
  2647. font-size: 14px;
  2648. text-align: left;
  2649. list-style: none;
  2650. background-color: #fff;
  2651. -webkit-background-clip: padding-box;
  2652. background-clip: padding-box;
  2653. border: 1px solid #ccc;
  2654. border: 1px solid rgba(0,0,0,.15);
  2655. border-radius: 4px;
  2656. -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  2657. box-shadow: 0 6px 12px rgba(0,0,0,.175);
  2658. }
  2659. .dropdown-menu.pull-right {
  2660. right: 0;
  2661. left: auto;
  2662. }
  2663. .dropdown-menu .divider {
  2664. height: 1px;
  2665. margin: 9px 0;
  2666. overflow: hidden;
  2667. background-color: #e5e5e5;
  2668. }
  2669. .dropdown-menu>li>a {
  2670. display: block;
  2671. padding: 3px 20px;
  2672. clear: both;
  2673. font-weight: normal;
  2674. line-height: 1.42857143;
  2675. color: #333;
  2676. white-space: nowrap;
  2677. }
  2678. .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus {
  2679. color: #262626;
  2680. text-decoration: none;
  2681. background-color: #f5f5f5;
  2682. }
  2683. .dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus {
  2684. color: #fff;
  2685. text-decoration: none;
  2686. background-color: #428bca;
  2687. outline: 0;
  2688. }
  2689. .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus {
  2690. color: #777;
  2691. }
  2692. .dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus {
  2693. text-decoration: none;
  2694. cursor: not-allowed;
  2695. background-color: transparent;
  2696. background-image: none;
  2697. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2698. }
  2699. .open>.dropdown-menu {
  2700. display: block;
  2701. }
  2702. .open>a {
  2703. outline: 0;
  2704. }
  2705. .dropdown-menu-right {
  2706. right: 0;
  2707. left: auto;
  2708. }
  2709. .dropdown-menu-left {
  2710. right: auto;
  2711. left: 0;
  2712. }
  2713. .dropdown-header {
  2714. display: block;
  2715. padding: 3px 20px;
  2716. font-size: 12px;
  2717. line-height: 1.42857143;
  2718. color: #777;
  2719. white-space: nowrap;
  2720. }
  2721. .dropdown-backdrop {
  2722. position: fixed;
  2723. top: 0;
  2724. right: 0;
  2725. bottom: 0;
  2726. left: 0;
  2727. z-index: 990;
  2728. }
  2729. .pull-right>.dropdown-menu {
  2730. right: 0;
  2731. left: auto;
  2732. }
  2733. .dropup .caret,.navbar-fixed-bottom .dropdown .caret {
  2734. content: "";
  2735. border-top: 0;
  2736. border-bottom: 4px solid;
  2737. }
  2738. .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu {
  2739. top: auto;
  2740. bottom: 100%;
  2741. margin-bottom: 1px;
  2742. }
  2743. @media (min-width: 768px) {
  2744. .navbar-right .dropdown-menu {
  2745. right: 0;
  2746. left: auto;
  2747. }
  2748. .navbar-right .dropdown-menu-left {
  2749. right: auto;
  2750. left: 0;
  2751. }
  2752. }
  2753. .btn-group,.btn-group-vertical {
  2754. position: relative;
  2755. display: inline-block;
  2756. vertical-align: middle;
  2757. }
  2758. .btn-group>.btn,.btn-group-vertical>.btn {
  2759. position: relative;
  2760. float: left;
  2761. }
  2762. .btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active {
  2763. z-index: 2;
  2764. }
  2765. .btn-group>.btn:focus,.btn-group-vertical>.btn:focus {
  2766. outline: 0;
  2767. }
  2768. .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group {
  2769. margin-left: -1px;
  2770. }
  2771. .btn-toolbar {
  2772. margin-left: -5px;
  2773. }
  2774. .btn-toolbar .btn-group,.btn-toolbar .input-group {
  2775. float: left;
  2776. }
  2777. .btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group {
  2778. margin-left: 5px;
  2779. }
  2780. .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2781. border-radius: 0;
  2782. }
  2783. .btn-group>.btn:first-child {
  2784. margin-left: 0;
  2785. }
  2786. .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2787. border-top-right-radius: 0;
  2788. border-bottom-right-radius: 0;
  2789. }
  2790. .btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child) {
  2791. border-top-left-radius: 0;
  2792. border-bottom-left-radius: 0;
  2793. }
  2794. .btn-group>.btn-group {
  2795. float: left;
  2796. }
  2797. .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
  2798. border-radius: 0;
  2799. }
  2800. .btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle {
  2801. border-top-right-radius: 0;
  2802. border-bottom-right-radius: 0;
  2803. }
  2804. .btn-group>.btn-group:last-child>.btn:first-child {
  2805. border-top-left-radius: 0;
  2806. border-bottom-left-radius: 0;
  2807. }
  2808. .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle {
  2809. outline: 0;
  2810. }
  2811. .btn-group>.btn+.dropdown-toggle {
  2812. padding-right: 8px;
  2813. padding-left: 8px;
  2814. }
  2815. .btn-group>.btn-lg+.dropdown-toggle {
  2816. padding-right: 12px;
  2817. padding-left: 12px;
  2818. }
  2819. .btn-group.open .dropdown-toggle {
  2820. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  2821. box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  2822. }
  2823. .btn-group.open .dropdown-toggle.btn-link {
  2824. -webkit-box-shadow: none;
  2825. box-shadow: none;
  2826. }
  2827. .btn .caret {
  2828. margin-left: 0;
  2829. }
  2830. .btn-lg .caret {
  2831. border-width: 5px 5px 0;
  2832. border-bottom-width: 0;
  2833. }
  2834. .dropup .btn-lg .caret {
  2835. border-width: 0 5px 5px;
  2836. }
  2837. .btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn {
  2838. display: block;
  2839. float: none;
  2840. width: 100%;
  2841. max-width: 100%;
  2842. }
  2843. .btn-group-vertical>.btn-group>.btn {
  2844. float: none;
  2845. }
  2846. .btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group {
  2847. margin-top: -1px;
  2848. margin-left: 0;
  2849. }
  2850. .btn-group-vertical>.btn:not(:first-child):not(:last-child) {
  2851. border-radius: 0;
  2852. }
  2853. .btn-group-vertical>.btn:first-child:not(:last-child) {
  2854. border-top-right-radius: 4px;
  2855. border-bottom-right-radius: 0;
  2856. border-bottom-left-radius: 0;
  2857. }
  2858. .btn-group-vertical>.btn:last-child:not(:first-child) {
  2859. border-top-left-radius: 0;
  2860. border-top-right-radius: 0;
  2861. border-bottom-left-radius: 4px;
  2862. }
  2863. .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
  2864. border-radius: 0;
  2865. }
  2866. .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
  2867. border-bottom-right-radius: 0;
  2868. border-bottom-left-radius: 0;
  2869. }
  2870. .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
  2871. border-top-left-radius: 0;
  2872. border-top-right-radius: 0;
  2873. }
  2874. .btn-group-justified {
  2875. display: table;
  2876. width: 100%;
  2877. table-layout: fixed;
  2878. border-collapse: separate;
  2879. }
  2880. .btn-group-justified>.btn,.btn-group-justified>.btn-group {
  2881. display: table-cell;
  2882. float: none;
  2883. width: 1%;
  2884. }
  2885. .btn-group-justified>.btn-group .btn {
  2886. width: 100%;
  2887. }
  2888. .btn-group-justified>.btn-group .dropdown-menu {
  2889. left: auto;
  2890. }[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"] {
  2891. position: absolute;
  2892. z-index: -1;
  2893. filter: alpha(opacity=0);
  2894. opacity: 0;
  2895. }
  2896. .input-group {
  2897. position: relative;
  2898. display: table;
  2899. border-collapse: separate;
  2900. }
  2901. .input-group[class*="col-"] {
  2902. float: none;
  2903. padding-right: 0;
  2904. padding-left: 0;
  2905. }
  2906. .input-group .form-control {
  2907. position: relative;
  2908. z-index: 2;
  2909. float: left;
  2910. width: 100%;
  2911. margin-bottom: 0;
  2912. }
  2913. .input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn {
  2914. height: 46px;
  2915. padding: 10px 16px;
  2916. font-size: 18px;
  2917. line-height: 1.33;
  2918. border-radius: 6px;
  2919. }
  2920. select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn {
  2921. height: 46px;
  2922. line-height: 46px;
  2923. }
  2924. textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn {
  2925. height: auto;
  2926. }
  2927. .input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn {
  2928. height: 30px;
  2929. padding: 5px 10px;
  2930. font-size: 12px;
  2931. line-height: 1.5;
  2932. border-radius: 3px;
  2933. }
  2934. select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn {
  2935. height: 30px;
  2936. line-height: 30px;
  2937. }
  2938. textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn {
  2939. height: auto;
  2940. }
  2941. .input-group-addon,.input-group-btn,.input-group .form-control {
  2942. display: table-cell;
  2943. }
  2944. .input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child) {
  2945. border-radius: 0;
  2946. }
  2947. .input-group-addon,.input-group-btn {
  2948. width: 1%;
  2949. white-space: nowrap;
  2950. vertical-align: middle;
  2951. }
  2952. .input-group-addon {
  2953. padding: 6px 12px;
  2954. font-size: 14px;
  2955. font-weight: normal;
  2956. line-height: 1;
  2957. color: #555;
  2958. text-align: center;
  2959. background-color: #eee;
  2960. border: 1px solid #ccc;
  2961. border-radius: 4px;
  2962. }
  2963. .input-group-addon.input-sm {
  2964. padding: 5px 10px;
  2965. font-size: 12px;
  2966. border-radius: 3px;
  2967. }
  2968. .input-group-addon.input-lg {
  2969. padding: 10px 16px;
  2970. font-size: 18px;
  2971. border-radius: 6px;
  2972. }
  2973. .input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"] {
  2974. margin-top: 0;
  2975. }
  2976. .input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn {
  2977. border-top-right-radius: 0;
  2978. border-bottom-right-radius: 0;
  2979. }
  2980. .input-group-addon:first-child {
  2981. border-right: 0;
  2982. }
  2983. .input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn {
  2984. border-top-left-radius: 0;
  2985. border-bottom-left-radius: 0;
  2986. }
  2987. .input-group-addon:last-child {
  2988. border-left: 0;
  2989. }
  2990. .input-group-btn {
  2991. position: relative;
  2992. font-size: 0;
  2993. white-space: nowrap;
  2994. }
  2995. .input-group-btn>.btn {
  2996. position: relative;
  2997. }
  2998. .input-group-btn>.btn+.btn {
  2999. margin-left: -1px;
  3000. }
  3001. .input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active {
  3002. z-index: 2;
  3003. }
  3004. .input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group {
  3005. margin-right: -1px;
  3006. }
  3007. .input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group {
  3008. margin-left: -1px;
  3009. }
  3010. .nav {
  3011. padding-left: 0;
  3012. margin-bottom: 0;
  3013. list-style: none;
  3014. }
  3015. .nav>li {
  3016. position: relative;
  3017. display: block;
  3018. }
  3019. .nav>li>a {
  3020. position: relative;
  3021. display: block;
  3022. padding: 10px 15px;
  3023. }
  3024. .nav>li>a:hover,.nav>li>a:focus {
  3025. text-decoration: none;
  3026. background-color: #eee;
  3027. }
  3028. .nav>li.disabled>a {
  3029. color: #777;
  3030. }
  3031. .nav>li.disabled>a:hover,.nav>li.disabled>a:focus {
  3032. color: #777;
  3033. text-decoration: none;
  3034. cursor: not-allowed;
  3035. background-color: transparent;
  3036. }
  3037. .nav .open>a,.nav .open>a:hover,.nav .open>a:focus {
  3038. background-color: #eee;
  3039. border-color: #428bca;
  3040. }
  3041. .nav .nav-divider {
  3042. height: 1px;
  3043. margin: 9px 0;
  3044. overflow: hidden;
  3045. background-color: #e5e5e5;
  3046. }
  3047. .nav>li>a>img {
  3048. max-width: none;
  3049. }
  3050. .nav-tabs {
  3051. border-bottom: 1px solid #ddd;
  3052. }
  3053. .nav-tabs>li {
  3054. float: left;
  3055. margin-bottom: -1px;
  3056. }
  3057. .nav-tabs>li>a {
  3058. margin-right: 2px;
  3059. line-height: 1.42857143;
  3060. border: 1px solid transparent;
  3061. border-radius: 4px 4px 0 0;
  3062. }
  3063. .nav-tabs>li>a:hover {
  3064. border-color: #eee #eee #ddd;
  3065. }
  3066. .nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus {
  3067. color: #555;
  3068. cursor: default;
  3069. background-color: #fff;
  3070. border: 1px solid #ddd;
  3071. border-bottom-color: transparent;
  3072. }
  3073. .nav-tabs.nav-justified {
  3074. width: 100%;
  3075. border-bottom: 0;
  3076. }
  3077. .nav-tabs.nav-justified>li {
  3078. float: none;
  3079. }
  3080. .nav-tabs.nav-justified>li>a {
  3081. margin-bottom: 5px;
  3082. text-align: center;
  3083. }
  3084. .nav-tabs.nav-justified>.dropdown .dropdown-menu {
  3085. top: auto;
  3086. left: auto;
  3087. }
  3088. @media (min-width: 768px) {
  3089. .nav-tabs.nav-justified > li {
  3090. display: table-cell;
  3091. width: 1%;
  3092. }
  3093. .nav-tabs.nav-justified>li>a {
  3094. margin-bottom: 0;
  3095. }
  3096. }
  3097. .nav-tabs.nav-justified>li>a {
  3098. margin-right: 0;
  3099. border-radius: 4px;
  3100. }
  3101. .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus {
  3102. border: 1px solid #ddd;
  3103. }
  3104. @media (min-width: 768px) {
  3105. .nav-tabs.nav-justified > li > a {
  3106. border-bottom: 1px solid #ddd;
  3107. border-radius: 4px 4px 0 0;
  3108. }
  3109. .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus {
  3110. border-bottom-color: #fff;
  3111. }
  3112. }
  3113. .nav-pills>li {
  3114. float: left;
  3115. }
  3116. .nav-pills>li>a {
  3117. border-radius: 4px;
  3118. }
  3119. .nav-pills>li+li {
  3120. margin-left: 2px;
  3121. }
  3122. .nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus {
  3123. color: #fff;
  3124. background-color: #428bca;
  3125. }
  3126. .nav-stacked>li {
  3127. float: none;
  3128. }
  3129. .nav-stacked>li+li {
  3130. margin-top: 2px;
  3131. margin-left: 0;
  3132. }
  3133. .nav-justified {
  3134. width: 100%;
  3135. }
  3136. .nav-justified>li {
  3137. float: none;
  3138. }
  3139. .nav-justified>li>a {
  3140. margin-bottom: 5px;
  3141. text-align: center;
  3142. }
  3143. .nav-justified>.dropdown .dropdown-menu {
  3144. top: auto;
  3145. left: auto;
  3146. }
  3147. @media (min-width: 768px) {
  3148. .nav-justified > li {
  3149. display: table-cell;
  3150. width: 1%;
  3151. }
  3152. .nav-justified>li>a {
  3153. margin-bottom: 0;
  3154. }
  3155. }
  3156. .nav-tabs-justified {
  3157. border-bottom: 0;
  3158. }
  3159. .nav-tabs-justified>li>a {
  3160. margin-right: 0;
  3161. border-radius: 4px;
  3162. }
  3163. .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus {
  3164. border: 1px solid #ddd;
  3165. }
  3166. @media (min-width: 768px) {
  3167. .nav-tabs-justified > li > a {
  3168. border-bottom: 1px solid #ddd;
  3169. border-radius: 4px 4px 0 0;
  3170. }
  3171. .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus {
  3172. border-bottom-color: #fff;
  3173. }
  3174. }
  3175. .tab-content>.tab-pane {
  3176. display: none;
  3177. }
  3178. .tab-content>.active {
  3179. display: block;
  3180. }
  3181. .nav-tabs .dropdown-menu {
  3182. margin-top: -1px;
  3183. border-top-left-radius: 0;
  3184. border-top-right-radius: 0;
  3185. }
  3186. .navbar {
  3187. position: relative;
  3188. min-height: 50px;
  3189. margin-bottom: 20px;
  3190. border: 1px solid transparent;
  3191. }
  3192. @media (min-width: 768px) {
  3193. .navbar {
  3194. border-radius: 4px;
  3195. }
  3196. }
  3197. @media (min-width: 768px) {
  3198. .navbar-header {
  3199. float: left;
  3200. }
  3201. }
  3202. .navbar-collapse {
  3203. padding-right: 15px;
  3204. padding-left: 15px;
  3205. overflow-x: visible;
  3206. -webkit-overflow-scrolling: touch;
  3207. border-top: 1px solid transparent;
  3208. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  3209. box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  3210. }
  3211. .navbar-collapse.in {
  3212. overflow-y: auto;
  3213. }
  3214. @media (min-width: 768px) {
  3215. .navbar-collapse {
  3216. width: auto;
  3217. border-top: 0;
  3218. -webkit-box-shadow: none;
  3219. box-shadow: none;
  3220. }
  3221. .navbar-collapse.collapse {
  3222. display: block !important;
  3223. height: auto !important;
  3224. padding-bottom: 0;
  3225. overflow: visible !important;
  3226. }
  3227. .navbar-collapse.in {
  3228. overflow-y: visible;
  3229. }
  3230. .navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse {
  3231. padding-right: 0;
  3232. padding-left: 0;
  3233. }
  3234. }
  3235. .navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse {
  3236. max-height: 340px;
  3237. }
  3238. @media (max-width: 480px) and (orientation: landscape) {
  3239. .navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse {
  3240. max-height: 200px;
  3241. }
  3242. }
  3243. .container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse {
  3244. margin-right: -15px;
  3245. margin-left: -15px;
  3246. }
  3247. @media (min-width: 768px) {
  3248. .container > .navbar-header,.container-fluid > .navbar-header,.container > .navbar-collapse,.container-fluid > .navbar-collapse {
  3249. margin-right: 0;
  3250. margin-left: 0;
  3251. }
  3252. }
  3253. .navbar-static-top {
  3254. z-index: 1000;
  3255. border-width: 0 0 1px;
  3256. }
  3257. @media (min-width: 768px) {
  3258. .navbar-static-top {
  3259. border-radius: 0;
  3260. }
  3261. }
  3262. .navbar-fixed-top,.navbar-fixed-bottom {
  3263. position: fixed;
  3264. right: 0;
  3265. left: 0;
  3266. z-index: 1030;
  3267. -webkit-transform: translate3d(0,0,0);
  3268. -o-transform: translate3d(0,0,0);
  3269. transform: translate3d(0,0,0);
  3270. }
  3271. @media (min-width: 768px) {
  3272. .navbar-fixed-top,.navbar-fixed-bottom {
  3273. border-radius: 0;
  3274. }
  3275. }
  3276. .navbar-fixed-top {
  3277. top: 0;
  3278. border-width: 0 0 1px;
  3279. }
  3280. .navbar-fixed-bottom {
  3281. bottom: 0;
  3282. margin-bottom: 0;
  3283. border-width: 1px 0 0;
  3284. }
  3285. .navbar-brand {
  3286. float: left;
  3287. height: 50px;
  3288. padding: 15px 15px;
  3289. font-size: 18px;
  3290. line-height: 20px;
  3291. }
  3292. .navbar-brand:hover,.navbar-brand:focus {
  3293. text-decoration: none;
  3294. }
  3295. @media (min-width: 768px) {
  3296. .navbar > .container .navbar-brand,.navbar > .container-fluid .navbar-brand {
  3297. margin-left: -15px;
  3298. }
  3299. }
  3300. .navbar-toggle {
  3301. position: relative;
  3302. float: right;
  3303. padding: 9px 10px;
  3304. margin-top: 8px;
  3305. margin-right: 15px;
  3306. margin-bottom: 8px;
  3307. background-color: transparent;
  3308. background-image: none;
  3309. border: 1px solid transparent;
  3310. border-radius: 4px;
  3311. }
  3312. .navbar-toggle:focus {
  3313. outline: 0;
  3314. }
  3315. .navbar-toggle .icon-bar {
  3316. display: block;
  3317. width: 22px;
  3318. height: 2px;
  3319. border-radius: 1px;
  3320. }
  3321. .navbar-toggle .icon-bar+.icon-bar {
  3322. margin-top: 4px;
  3323. }
  3324. @media (min-width: 768px) {
  3325. .navbar-toggle {
  3326. display: none;
  3327. }
  3328. }
  3329. .navbar-nav {
  3330. margin: 7.5px -15px;
  3331. }
  3332. .navbar-nav>li>a {
  3333. padding-top: 10px;
  3334. padding-bottom: 10px;
  3335. line-height: 20px;
  3336. }
  3337. @media (max-width: 767px) {
  3338. .navbar-nav .open .dropdown-menu {
  3339. position: static;
  3340. float: none;
  3341. width: auto;
  3342. margin-top: 0;
  3343. background-color: transparent;
  3344. border: 0;
  3345. -webkit-box-shadow: none;
  3346. box-shadow: none;
  3347. }
  3348. .navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header {
  3349. padding: 5px 15px 5px 25px;
  3350. }
  3351. .navbar-nav .open .dropdown-menu>li>a {
  3352. line-height: 20px;
  3353. }
  3354. .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus {
  3355. background-image: none;
  3356. }
  3357. }
  3358. @media (min-width: 768px) {
  3359. .navbar-nav {
  3360. float: left;
  3361. margin: 0;
  3362. }
  3363. .navbar-nav>li {
  3364. float: left;
  3365. }
  3366. .navbar-nav>li>a {
  3367. padding-top: 15px;
  3368. padding-bottom: 15px;
  3369. }
  3370. .navbar-nav.navbar-right:last-child {
  3371. margin-right: -15px;
  3372. }
  3373. }
  3374. @media (min-width: 768px) {
  3375. .navbar-left {
  3376. float: left !important;
  3377. }
  3378. .navbar-right {
  3379. float: right !important;
  3380. }
  3381. }
  3382. .navbar-form {
  3383. padding: 10px 15px;
  3384. margin-top: 8px;
  3385. margin-right: -15px;
  3386. margin-bottom: 8px;
  3387. margin-left: -15px;
  3388. border-top: 1px solid transparent;
  3389. border-bottom: 1px solid transparent;
  3390. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
  3391. box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
  3392. }
  3393. @media (min-width: 768px) {
  3394. .navbar-form .form-group {
  3395. display: inline-block;
  3396. margin-bottom: 0;
  3397. vertical-align: middle;
  3398. }
  3399. .navbar-form .form-control {
  3400. display: inline-block;
  3401. width: auto;
  3402. vertical-align: middle;
  3403. }
  3404. .navbar-form .input-group {
  3405. display: inline-table;
  3406. vertical-align: middle;
  3407. }
  3408. .navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control {
  3409. width: auto;
  3410. }
  3411. .navbar-form .input-group>.form-control {
  3412. width: 100%;
  3413. }
  3414. .navbar-form .control-label {
  3415. margin-bottom: 0;
  3416. vertical-align: middle;
  3417. }
  3418. .navbar-form .radio,.navbar-form .checkbox {
  3419. display: inline-block;
  3420. margin-top: 0;
  3421. margin-bottom: 0;
  3422. vertical-align: middle;
  3423. }
  3424. .navbar-form .radio label,.navbar-form .checkbox label {
  3425. padding-left: 0;
  3426. }
  3427. .navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"] {
  3428. position: relative;
  3429. margin-left: 0;
  3430. }
  3431. .navbar-form .has-feedback .form-control-feedback {
  3432. top: 0;
  3433. }
  3434. }
  3435. @media (max-width: 767px) {
  3436. .navbar-form .form-group {
  3437. margin-bottom: 5px;
  3438. }
  3439. }
  3440. @media (min-width: 768px) {
  3441. .navbar-form {
  3442. width: auto;
  3443. padding-top: 0;
  3444. padding-bottom: 0;
  3445. margin-right: 0;
  3446. margin-left: 0;
  3447. border: 0;
  3448. -webkit-box-shadow: none;
  3449. box-shadow: none;
  3450. }
  3451. .navbar-form.navbar-right:last-child {
  3452. margin-right: -15px;
  3453. }
  3454. }
  3455. .navbar-nav>li>.dropdown-menu {
  3456. margin-top: 0;
  3457. border-top-left-radius: 0;
  3458. border-top-right-radius: 0;
  3459. }
  3460. .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
  3461. border-bottom-right-radius: 0;
  3462. border-bottom-left-radius: 0;
  3463. }
  3464. .navbar-btn {
  3465. margin-top: 8px;
  3466. margin-bottom: 8px;
  3467. }
  3468. .navbar-btn.btn-sm {
  3469. margin-top: 10px;
  3470. margin-bottom: 10px;
  3471. }
  3472. .navbar-btn.btn-xs {
  3473. margin-top: 14px;
  3474. margin-bottom: 14px;
  3475. }
  3476. .navbar-text {
  3477. margin-top: 15px;
  3478. margin-bottom: 15px;
  3479. }
  3480. @media (min-width: 768px) {
  3481. .navbar-text {
  3482. float: left;
  3483. margin-right: 15px;
  3484. margin-left: 15px;
  3485. }
  3486. .navbar-text.navbar-right:last-child {
  3487. margin-right: 0;
  3488. }
  3489. }
  3490. .navbar-default {
  3491. background-color: #f8f8f8;
  3492. border-color: #e7e7e7;
  3493. }
  3494. .navbar-default .navbar-brand {
  3495. color: #777;
  3496. }
  3497. .navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus {
  3498. color: #5e5e5e;
  3499. background-color: transparent;
  3500. }
  3501. .navbar-default .navbar-text {
  3502. color: #777;
  3503. }
  3504. .navbar-default .navbar-nav>li>a {
  3505. color: #777;
  3506. }
  3507. .navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus {
  3508. color: #333;
  3509. background-color: transparent;
  3510. }
  3511. .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus {
  3512. color: #555;
  3513. background-color: #e7e7e7;
  3514. }
  3515. .navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus {
  3516. color: #ccc;
  3517. background-color: transparent;
  3518. }
  3519. .navbar-default .navbar-toggle {
  3520. border-color: #ddd;
  3521. }
  3522. .navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus {
  3523. background-color: #ddd;
  3524. }
  3525. .navbar-default .navbar-toggle .icon-bar {
  3526. background-color: #888;
  3527. }
  3528. .navbar-default .navbar-collapse,.navbar-default .navbar-form {
  3529. border-color: #e7e7e7;
  3530. }
  3531. .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus {
  3532. color: #555;
  3533. background-color: #e7e7e7;
  3534. }
  3535. @media (max-width: 767px) {
  3536. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  3537. color: #777;
  3538. }
  3539. .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
  3540. color: #333;
  3541. background-color: transparent;
  3542. }
  3543. .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
  3544. color: #555;
  3545. background-color: #e7e7e7;
  3546. }
  3547. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
  3548. color: #ccc;
  3549. background-color: transparent;
  3550. }
  3551. }
  3552. .navbar-default .navbar-link {
  3553. color: #777;
  3554. }
  3555. .navbar-default .navbar-link:hover {
  3556. color: #333;
  3557. }
  3558. .navbar-default .btn-link {
  3559. color: #777;
  3560. }
  3561. .navbar-default .btn-link:hover,.navbar-default .btn-link:focus {
  3562. color: #333;
  3563. }
  3564. .navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus {
  3565. color: #ccc;
  3566. }
  3567. .navbar-inverse {
  3568. background-color: #222;
  3569. border-color: #080808;
  3570. }
  3571. .navbar-inverse .navbar-brand {
  3572. color: #777;
  3573. }
  3574. .navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus {
  3575. color: #fff;
  3576. background-color: transparent;
  3577. }
  3578. .navbar-inverse .navbar-text {
  3579. color: #777;
  3580. }
  3581. .navbar-inverse .navbar-nav>li>a {
  3582. color: #777;
  3583. }
  3584. .navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus {
  3585. color: #fff;
  3586. background-color: transparent;
  3587. }
  3588. .navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus {
  3589. color: #fff;
  3590. background-color: #080808;
  3591. }
  3592. .navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus {
  3593. color: #444;
  3594. background-color: transparent;
  3595. }
  3596. .navbar-inverse .navbar-toggle {
  3597. border-color: #333;
  3598. }
  3599. .navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus {
  3600. background-color: #333;
  3601. }
  3602. .navbar-inverse .navbar-toggle .icon-bar {
  3603. background-color: #fff;
  3604. }
  3605. .navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form {
  3606. border-color: #101010;
  3607. }
  3608. .navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus {
  3609. color: #fff;
  3610. background-color: #080808;
  3611. }
  3612. @media (max-width: 767px) {
  3613. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  3614. border-color: #080808;
  3615. }
  3616. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  3617. background-color: #080808;
  3618. }
  3619. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
  3620. color: #777;
  3621. }
  3622. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
  3623. color: #fff;
  3624. background-color: transparent;
  3625. }
  3626. .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
  3627. color: #fff;
  3628. background-color: #080808;
  3629. }
  3630. .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {
  3631. color: #444;
  3632. background-color: transparent;
  3633. }
  3634. }
  3635. .navbar-inverse .navbar-link {
  3636. color: #777;
  3637. }
  3638. .navbar-inverse .navbar-link:hover {
  3639. color: #fff;
  3640. }
  3641. .navbar-inverse .btn-link {
  3642. color: #777;
  3643. }
  3644. .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus {
  3645. color: #fff;
  3646. }
  3647. .navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus {
  3648. color: #444;
  3649. }
  3650. .breadcrumb {
  3651. padding: 8px 15px;
  3652. margin-bottom: 20px;
  3653. list-style: none;
  3654. background-color: #f5f5f5;
  3655. border-radius: 4px;
  3656. }
  3657. .breadcrumb>li {
  3658. display: inline-block;
  3659. }
  3660. .breadcrumb>li+li:before {
  3661. padding: 0 5px;
  3662. color: #ccc;
  3663. content: "/\00a0";
  3664. }
  3665. .breadcrumb>.active {
  3666. color: #777;
  3667. }
  3668. .pagination {
  3669. display: inline-block;
  3670. padding-left: 0;
  3671. margin: 20px 0;
  3672. border-radius: 4px;
  3673. }
  3674. .pagination>li {
  3675. display: inline;
  3676. }
  3677. .pagination>li>a,.pagination>li>span {
  3678. position: relative;
  3679. float: left;
  3680. padding: 6px 12px;
  3681. margin-left: -1px;
  3682. line-height: 1.42857143;
  3683. color: #428bca;
  3684. text-decoration: none;
  3685. background-color: #fff;
  3686. border: 1px solid #ddd;
  3687. }
  3688. .pagination>li:first-child>a,.pagination>li:first-child>span {
  3689. margin-left: 0;
  3690. border-top-left-radius: 4px;
  3691. border-bottom-left-radius: 4px;
  3692. }
  3693. .pagination>li:last-child>a,.pagination>li:last-child>span {
  3694. border-top-right-radius: 4px;
  3695. border-bottom-right-radius: 4px;
  3696. }
  3697. .pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus {
  3698. color: #2a6496;
  3699. background-color: #eee;
  3700. border-color: #ddd;
  3701. }
  3702. .pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus {
  3703. z-index: 2;
  3704. color: #fff;
  3705. cursor: default;
  3706. background-color: #428bca;
  3707. border-color: #428bca;
  3708. }
  3709. .pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus {
  3710. color: #777;
  3711. cursor: not-allowed;
  3712. background-color: #fff;
  3713. border-color: #ddd;
  3714. }
  3715. .pagination-lg>li>a,.pagination-lg>li>span {
  3716. padding: 10px 16px;
  3717. font-size: 18px;
  3718. }
  3719. .pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span {
  3720. border-top-left-radius: 6px;
  3721. border-bottom-left-radius: 6px;
  3722. }
  3723. .pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span {
  3724. border-top-right-radius: 6px;
  3725. border-bottom-right-radius: 6px;
  3726. }
  3727. .pagination-sm>li>a,.pagination-sm>li>span {
  3728. padding: 5px 10px;
  3729. font-size: 12px;
  3730. }
  3731. .pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span {
  3732. border-top-left-radius: 3px;
  3733. border-bottom-left-radius: 3px;
  3734. }
  3735. .pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span {
  3736. border-top-right-radius: 3px;
  3737. border-bottom-right-radius: 3px;
  3738. }
  3739. .pager {
  3740. padding-left: 0;
  3741. margin: 20px 0;
  3742. text-align: center;
  3743. list-style: none;
  3744. }
  3745. .pager li {
  3746. display: inline;
  3747. }
  3748. .pager li>a,.pager li>span {
  3749. display: inline-block;
  3750. padding: 5px 14px;
  3751. background-color: #fff;
  3752. border: 1px solid #ddd;
  3753. border-radius: 15px;
  3754. }
  3755. .pager li>a:hover,.pager li>a:focus {
  3756. text-decoration: none;
  3757. background-color: #eee;
  3758. }
  3759. .pager .next>a,.pager .next>span {
  3760. float: right;
  3761. }
  3762. .pager .previous>a,.pager .previous>span {
  3763. float: left;
  3764. }
  3765. .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span {
  3766. color: #777;
  3767. cursor: not-allowed;
  3768. background-color: #fff;
  3769. }
  3770. .label {
  3771. display: inline;
  3772. padding: .2em .6em .3em;
  3773. font-size: 75%;
  3774. font-weight: bold;
  3775. line-height: 1;
  3776. color: #fff;
  3777. text-align: center;
  3778. white-space: nowrap;
  3779. vertical-align: baseline;
  3780. border-radius: .25em;
  3781. }
  3782. a.label:hover,a.label:focus {
  3783. color: #fff;
  3784. text-decoration: none;
  3785. cursor: pointer;
  3786. }
  3787. .label:empty {
  3788. display: none;
  3789. }
  3790. .btn .label {
  3791. position: relative;
  3792. top: -1px;
  3793. }
  3794. .label-default {
  3795. background-color: #777;
  3796. }
  3797. .label-default[href]:hover,.label-default[href]:focus {
  3798. background-color: #5e5e5e;
  3799. }
  3800. .label-primary {
  3801. background-color: #428bca;
  3802. }
  3803. .label-primary[href]:hover,.label-primary[href]:focus {
  3804. background-color: #3071a9;
  3805. }
  3806. .label-success {
  3807. background-color: #5cb85c;
  3808. }
  3809. .label-success[href]:hover,.label-success[href]:focus {
  3810. background-color: #449d44;
  3811. }
  3812. .label-info {
  3813. background-color: #5bc0de;
  3814. }
  3815. .label-info[href]:hover,.label-info[href]:focus {
  3816. background-color: #31b0d5;
  3817. }
  3818. .label-warning {
  3819. background-color: #f0ad4e;
  3820. }
  3821. .label-warning[href]:hover,.label-warning[href]:focus {
  3822. background-color: #ec971f;
  3823. }
  3824. .label-danger {
  3825. background-color: #d9534f;
  3826. }
  3827. .label-danger[href]:hover,.label-danger[href]:focus {
  3828. background-color: #c9302c;
  3829. }
  3830. .badge {
  3831. display: inline-block;
  3832. min-width: 10px;
  3833. padding: 3px 7px;
  3834. font-size: 12px;
  3835. font-weight: bold;
  3836. line-height: 1;
  3837. color: #fff;
  3838. text-align: center;
  3839. white-space: nowrap;
  3840. vertical-align: baseline;
  3841. background-color: #777;
  3842. border-radius: 10px;
  3843. }
  3844. .badge:empty {
  3845. display: none;
  3846. }
  3847. .btn .badge {
  3848. position: relative;
  3849. top: -1px;
  3850. }
  3851. .btn-xs .badge {
  3852. top: 0;
  3853. padding: 1px 5px;
  3854. }
  3855. a.badge:hover,a.badge:focus {
  3856. color: #fff;
  3857. text-decoration: none;
  3858. cursor: pointer;
  3859. }
  3860. a.list-group-item.active>.badge,.nav-pills>.active>a>.badge {
  3861. color: #428bca;
  3862. background-color: #fff;
  3863. }
  3864. .nav-pills>li>a>.badge {
  3865. margin-left: 3px;
  3866. }
  3867. .jumbotron {
  3868. padding: 30px;
  3869. margin-bottom: 30px;
  3870. color: inherit;
  3871. background-color: #eee;
  3872. }
  3873. .jumbotron h1,.jumbotron .h1 {
  3874. color: inherit;
  3875. }
  3876. .jumbotron p {
  3877. margin-bottom: 15px;
  3878. font-size: 21px;
  3879. font-weight: 200;
  3880. }
  3881. .jumbotron>hr {
  3882. border-top-color: #d5d5d5;
  3883. }
  3884. .container .jumbotron {
  3885. border-radius: 6px;
  3886. }
  3887. .jumbotron .container {
  3888. max-width: 100%;
  3889. }
  3890. @media screen and (min-width: 768px) {
  3891. .jumbotron {
  3892. padding-top: 48px;
  3893. padding-bottom: 48px;
  3894. }
  3895. .container .jumbotron {
  3896. padding-right: 60px;
  3897. padding-left: 60px;
  3898. }
  3899. .jumbotron h1,.jumbotron .h1 {
  3900. font-size: 63px;
  3901. }
  3902. }
  3903. .thumbnail {
  3904. display: block;
  3905. padding: 4px;
  3906. margin-bottom: 20px;
  3907. line-height: 1.42857143;
  3908. background-color: #fff;
  3909. border: 1px solid #ddd;
  3910. border-radius: 4px;
  3911. -webkit-transition: all .2s ease-in-out;
  3912. -o-transition: all .2s ease-in-out;
  3913. transition: all .2s ease-in-out;
  3914. }
  3915. .thumbnail>img,.thumbnail a>img {
  3916. margin-right: auto;
  3917. margin-left: auto;
  3918. }
  3919. a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active {
  3920. border-color: #428bca;
  3921. }
  3922. .thumbnail .caption {
  3923. padding: 9px;
  3924. color: #333;
  3925. }
  3926. .alert {
  3927. padding: 15px;
  3928. margin-bottom: 20px;
  3929. border: 1px solid transparent;
  3930. border-radius: 4px;
  3931. }
  3932. .alert h4 {
  3933. margin-top: 0;
  3934. color: inherit;
  3935. }
  3936. .alert .alert-link {
  3937. font-weight: bold;
  3938. }
  3939. .alert>p,.alert>ul {
  3940. margin-bottom: 0;
  3941. }
  3942. .alert>p+p {
  3943. margin-top: 5px;
  3944. }
  3945. .alert-dismissable,.alert-dismissible {
  3946. padding-right: 35px;
  3947. }
  3948. .alert-dismissable .close,.alert-dismissible .close {
  3949. position: relative;
  3950. top: -2px;
  3951. right: -21px;
  3952. color: inherit;
  3953. }
  3954. .alert-success {
  3955. color: #3c763d;
  3956. background-color: #dff0d8;
  3957. border-color: #d6e9c6;
  3958. }
  3959. .alert-success hr {
  3960. border-top-color: #c9e2b3;
  3961. }
  3962. .alert-success .alert-link {
  3963. color: #2b542c;
  3964. }
  3965. .alert-info {
  3966. color: #31708f;
  3967. background-color: #d9edf7;
  3968. border-color: #bce8f1;
  3969. }
  3970. .alert-info hr {
  3971. border-top-color: #a6e1ec;
  3972. }
  3973. .alert-info .alert-link {
  3974. color: #245269;
  3975. }
  3976. .alert-warning {
  3977. color: #8a6d3b;
  3978. background-color: #fcf8e3;
  3979. border-color: #faebcc;
  3980. }
  3981. .alert-warning hr {
  3982. border-top-color: #f7e1b5;
  3983. }
  3984. .alert-warning .alert-link {
  3985. color: #66512c;
  3986. }
  3987. .alert-danger {
  3988. color: #a94442;
  3989. background-color: #f2dede;
  3990. border-color: #ebccd1;
  3991. }
  3992. .alert-danger hr {
  3993. border-top-color: #e4b9c0;
  3994. }
  3995. .alert-danger .alert-link {
  3996. color: #843534;
  3997. }
  3998. @-webkit-keyframes progress-bar-stripes {
  3999. from {
  4000. background-position: 40px 0;
  4001. }
  4002. to {
  4003. background-position: 0 0;
  4004. }
  4005. }
  4006. @-o-keyframes progress-bar-stripes {
  4007. from {
  4008. background-position: 40px 0;
  4009. }
  4010. to {
  4011. background-position: 0 0;
  4012. }
  4013. }
  4014. @keyframes progress-bar-stripes {
  4015. from {
  4016. background-position: 40px 0;
  4017. }
  4018. to {
  4019. background-position: 0 0;
  4020. }
  4021. }
  4022. .progress {
  4023. height: 20px;
  4024. margin-bottom: 20px;
  4025. overflow: hidden;
  4026. background-color: #f5f5f5;
  4027. border-radius: 4px;
  4028. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  4029. box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  4030. }
  4031. .progress-bar {
  4032. float: left;
  4033. width: 0;
  4034. height: 100%;
  4035. font-size: 12px;
  4036. line-height: 20px;
  4037. color: #fff;
  4038. text-align: center;
  4039. background-color: #428bca;
  4040. -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  4041. box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  4042. -webkit-transition: width .6s ease;
  4043. -o-transition: width .6s ease;
  4044. transition: width .6s ease;
  4045. }
  4046. .progress-striped .progress-bar,.progress-bar-striped {
  4047. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4048. background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4049. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4050. -webkit-background-size: 40px 40px;
  4051. background-size: 40px 40px;
  4052. }
  4053. .progress.active .progress-bar,.progress-bar.active {
  4054. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4055. -o-animation: progress-bar-stripes 2s linear infinite;
  4056. animation: progress-bar-stripes 2s linear infinite;
  4057. }
  4058. .progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"] {
  4059. min-width: 30px;
  4060. }
  4061. .progress-bar[aria-valuenow="0"] {
  4062. min-width: 30px;
  4063. color: #777;
  4064. background-color: transparent;
  4065. background-image: none;
  4066. -webkit-box-shadow: none;
  4067. box-shadow: none;
  4068. }
  4069. .progress-bar-success {
  4070. background-color: #5cb85c;
  4071. }
  4072. .progress-striped .progress-bar-success {
  4073. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4074. background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4075. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4076. }
  4077. .progress-bar-info {
  4078. background-color: #5bc0de;
  4079. }
  4080. .progress-striped .progress-bar-info {
  4081. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4082. background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4083. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4084. }
  4085. .progress-bar-warning {
  4086. background-color: #f0ad4e;
  4087. }
  4088. .progress-striped .progress-bar-warning {
  4089. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4090. background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4091. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4092. }
  4093. .progress-bar-danger {
  4094. background-color: #d9534f;
  4095. }
  4096. .progress-striped .progress-bar-danger {
  4097. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4098. background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4099. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  4100. }
  4101. .media,.media-body {
  4102. overflow: hidden;
  4103. zoom: 1;
  4104. }
  4105. .media,.media .media {
  4106. margin-top: 15px;
  4107. }
  4108. .media:first-child {
  4109. margin-top: 0;
  4110. }
  4111. .media-object {
  4112. display: block;
  4113. }
  4114. .media-heading {
  4115. margin: 0 0 5px;
  4116. }
  4117. .media>.pull-left {
  4118. margin-right: 10px;
  4119. }
  4120. .media>.pull-right {
  4121. margin-left: 10px;
  4122. }
  4123. .media-list {
  4124. padding-left: 0;
  4125. list-style: none;
  4126. }
  4127. .list-group {
  4128. padding-left: 0;
  4129. margin-bottom: 20px;
  4130. }
  4131. .list-group-item {
  4132. position: relative;
  4133. display: block;
  4134. padding: 10px 15px;
  4135. margin-bottom: -1px;
  4136. background-color: #fff;
  4137. border: 1px solid #ddd;
  4138. }
  4139. .list-group-item:first-child {
  4140. border-top-left-radius: 4px;
  4141. border-top-right-radius: 4px;
  4142. }
  4143. .list-group-item:last-child {
  4144. margin-bottom: 0;
  4145. border-bottom-right-radius: 4px;
  4146. border-bottom-left-radius: 4px;
  4147. }
  4148. .list-group-item>.badge {
  4149. float: right;
  4150. }
  4151. .list-group-item>.badge+.badge {
  4152. margin-right: 5px;
  4153. }
  4154. a.list-group-item {
  4155. color: #555;
  4156. }
  4157. a.list-group-item .list-group-item-heading {
  4158. color: #333;
  4159. }
  4160. a.list-group-item:hover,a.list-group-item:focus {
  4161. color: #555;
  4162. text-decoration: none;
  4163. background-color: #f5f5f5;
  4164. }
  4165. .list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus {
  4166. color: #777;
  4167. background-color: #eee;
  4168. }
  4169. .list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading {
  4170. color: inherit;
  4171. }
  4172. .list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text {
  4173. color: #777;
  4174. }
  4175. .list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus {
  4176. z-index: 2;
  4177. color: #fff;
  4178. background-color: #428bca;
  4179. border-color: #428bca;
  4180. }
  4181. .list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small {
  4182. color: inherit;
  4183. }
  4184. .list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text {
  4185. color: #e1edf7;
  4186. }
  4187. .list-group-item-success {
  4188. color: #3c763d;
  4189. background-color: #dff0d8;
  4190. }
  4191. a.list-group-item-success {
  4192. color: #3c763d;
  4193. }
  4194. a.list-group-item-success .list-group-item-heading {
  4195. color: inherit;
  4196. }
  4197. a.list-group-item-success:hover,a.list-group-item-success:focus {
  4198. color: #3c763d;
  4199. background-color: #d0e9c6;
  4200. }
  4201. a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus {
  4202. color: #fff;
  4203. background-color: #3c763d;
  4204. border-color: #3c763d;
  4205. }
  4206. .list-group-item-info {
  4207. color: #31708f;
  4208. background-color: #d9edf7;
  4209. }
  4210. a.list-group-item-info {
  4211. color: #31708f;
  4212. }
  4213. a.list-group-item-info .list-group-item-heading {
  4214. color: inherit;
  4215. }
  4216. a.list-group-item-info:hover,a.list-group-item-info:focus {
  4217. color: #31708f;
  4218. background-color: #c4e3f3;
  4219. }
  4220. a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus {
  4221. color: #fff;
  4222. background-color: #31708f;
  4223. border-color: #31708f;
  4224. }
  4225. .list-group-item-warning {
  4226. color: #8a6d3b;
  4227. background-color: #fcf8e3;
  4228. }
  4229. a.list-group-item-warning {
  4230. color: #8a6d3b;
  4231. }
  4232. a.list-group-item-warning .list-group-item-heading {
  4233. color: inherit;
  4234. }
  4235. a.list-group-item-warning:hover,a.list-group-item-warning:focus {
  4236. color: #8a6d3b;
  4237. background-color: #faf2cc;
  4238. }
  4239. a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus {
  4240. color: #fff;
  4241. background-color: #8a6d3b;
  4242. border-color: #8a6d3b;
  4243. }
  4244. .list-group-item-danger {
  4245. color: #a94442;
  4246. background-color: #f2dede;
  4247. }
  4248. a.list-group-item-danger {
  4249. color: #a94442;
  4250. }
  4251. a.list-group-item-danger .list-group-item-heading {
  4252. color: inherit;
  4253. }
  4254. a.list-group-item-danger:hover,a.list-group-item-danger:focus {
  4255. color: #a94442;
  4256. background-color: #ebcccc;
  4257. }
  4258. a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus {
  4259. color: #fff;
  4260. background-color: #a94442;
  4261. border-color: #a94442;
  4262. }
  4263. .list-group-item-heading {
  4264. margin-top: 0;
  4265. margin-bottom: 5px;
  4266. }
  4267. .list-group-item-text {
  4268. margin-bottom: 0;
  4269. line-height: 1.3;
  4270. }
  4271. .panel {
  4272. margin-bottom: 20px;
  4273. background-color: #fff;
  4274. border: 1px solid transparent;
  4275. border-radius: 4px;
  4276. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
  4277. box-shadow: 0 1px 1px rgba(0,0,0,.05);
  4278. }
  4279. .panel-body {
  4280. padding: 15px;
  4281. }
  4282. .panel-heading {
  4283. padding: 10px 15px;
  4284. border-bottom: 1px solid transparent;
  4285. border-top-left-radius: 3px;
  4286. border-top-right-radius: 3px;
  4287. }
  4288. .panel-heading>.dropdown .dropdown-toggle {
  4289. color: inherit;
  4290. }
  4291. .panel-title {
  4292. margin-top: 0;
  4293. margin-bottom: 0;
  4294. font-size: 16px;
  4295. color: inherit;
  4296. }
  4297. .panel-title>a {
  4298. color: inherit;
  4299. }
  4300. .panel-footer {
  4301. padding: 10px 15px;
  4302. background-color: #f5f5f5;
  4303. border-top: 1px solid #ddd;
  4304. border-bottom-right-radius: 3px;
  4305. border-bottom-left-radius: 3px;
  4306. }
  4307. .panel>.list-group {
  4308. margin-bottom: 0;
  4309. }
  4310. .panel>.list-group .list-group-item {
  4311. border-width: 1px 0;
  4312. border-radius: 0;
  4313. }
  4314. .panel>.list-group:first-child .list-group-item:first-child {
  4315. border-top: 0;
  4316. border-top-left-radius: 3px;
  4317. border-top-right-radius: 3px;
  4318. }
  4319. .panel>.list-group:last-child .list-group-item:last-child {
  4320. border-bottom: 0;
  4321. border-bottom-right-radius: 3px;
  4322. border-bottom-left-radius: 3px;
  4323. }
  4324. .panel-heading+.list-group .list-group-item:first-child {
  4325. border-top-width: 0;
  4326. }
  4327. .list-group+.panel-footer {
  4328. border-top-width: 0;
  4329. }
  4330. .panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table {
  4331. margin-bottom: 0;
  4332. }
  4333. .panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child {
  4334. border-top-left-radius: 3px;
  4335. border-top-right-radius: 3px;
  4336. }
  4337. .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child {
  4338. border-top-left-radius: 3px;
  4339. }
  4340. .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child {
  4341. border-top-right-radius: 3px;
  4342. }
  4343. .panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child {
  4344. border-bottom-right-radius: 3px;
  4345. border-bottom-left-radius: 3px;
  4346. }
  4347. .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
  4348. border-bottom-left-radius: 3px;
  4349. }
  4350. .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
  4351. border-bottom-right-radius: 3px;
  4352. }
  4353. .panel>.panel-body+.table,.panel>.panel-body+.table-responsive {
  4354. border-top: 1px solid #ddd;
  4355. }
  4356. .panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td {
  4357. border-top: 0;
  4358. }
  4359. .panel>.table-bordered,.panel>.table-responsive>.table-bordered {
  4360. border: 0;
  4361. }
  4362. .panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
  4363. border-left: 0;
  4364. }
  4365. .panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
  4366. border-right: 0;
  4367. }
  4368. .panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th {
  4369. border-bottom: 0;
  4370. }
  4371. .panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
  4372. border-bottom: 0;
  4373. }
  4374. .panel>.table-responsive {
  4375. margin-bottom: 0;
  4376. border: 0;
  4377. }
  4378. .panel-group {
  4379. margin-bottom: 20px;
  4380. }
  4381. .panel-group .panel {
  4382. margin-bottom: 0;
  4383. border-radius: 4px;
  4384. }
  4385. .panel-group .panel+.panel {
  4386. margin-top: 5px;
  4387. }
  4388. .panel-group .panel-heading {
  4389. border-bottom: 0;
  4390. }
  4391. .panel-group .panel-heading+.panel-collapse>.panel-body {
  4392. border-top: 1px solid #ddd;
  4393. }
  4394. .panel-group .panel-footer {
  4395. border-top: 0;
  4396. }
  4397. .panel-group .panel-footer+.panel-collapse .panel-body {
  4398. border-bottom: 1px solid #ddd;
  4399. }
  4400. .panel-default {
  4401. border-color: #ddd;
  4402. }
  4403. .panel-default>.panel-heading {
  4404. color: #333;
  4405. background-color: #f5f5f5;
  4406. border-color: #ddd;
  4407. }
  4408. .panel-default>.panel-heading+.panel-collapse>.panel-body {
  4409. border-top-color: #ddd;
  4410. }
  4411. .panel-default>.panel-heading .badge {
  4412. color: #f5f5f5;
  4413. background-color: #333;
  4414. }
  4415. .panel-default>.panel-footer+.panel-collapse>.panel-body {
  4416. border-bottom-color: #ddd;
  4417. }
  4418. .panel-primary {
  4419. border-color: #428bca;
  4420. }
  4421. .panel-primary>.panel-heading {
  4422. color: #fff;
  4423. background-color: #428bca;
  4424. border-color: #428bca;
  4425. }
  4426. .panel-primary>.panel-heading+.panel-collapse>.panel-body {
  4427. border-top-color: #428bca;
  4428. }
  4429. .panel-primary>.panel-heading .badge {
  4430. color: #428bca;
  4431. background-color: #fff;
  4432. }
  4433. .panel-primary>.panel-footer+.panel-collapse>.panel-body {
  4434. border-bottom-color: #428bca;
  4435. }
  4436. .panel-success {
  4437. border-color: #d6e9c6;
  4438. }
  4439. .panel-success>.panel-heading {
  4440. color: #3c763d;
  4441. background-color: #dff0d8;
  4442. border-color: #d6e9c6;
  4443. }
  4444. .panel-success>.panel-heading+.panel-collapse>.panel-body {
  4445. border-top-color: #d6e9c6;
  4446. }
  4447. .panel-success>.panel-heading .badge {
  4448. color: #dff0d8;
  4449. background-color: #3c763d;
  4450. }
  4451. .panel-success>.panel-footer+.panel-collapse>.panel-body {
  4452. border-bottom-color: #d6e9c6;
  4453. }
  4454. .panel-info {
  4455. border-color: #bce8f1;
  4456. }
  4457. .panel-info>.panel-heading {
  4458. color: #31708f;
  4459. background-color: #d9edf7;
  4460. border-color: #bce8f1;
  4461. }
  4462. .panel-info>.panel-heading+.panel-collapse>.panel-body {
  4463. border-top-color: #bce8f1;
  4464. }
  4465. .panel-info>.panel-heading .badge {
  4466. color: #d9edf7;
  4467. background-color: #31708f;
  4468. }
  4469. .panel-info>.panel-footer+.panel-collapse>.panel-body {
  4470. border-bottom-color: #bce8f1;
  4471. }
  4472. .panel-warning {
  4473. border-color: #faebcc;
  4474. }
  4475. .panel-warning>.panel-heading {
  4476. color: #8a6d3b;
  4477. background-color: #fcf8e3;
  4478. border-color: #faebcc;
  4479. }
  4480. .panel-warning>.panel-heading+.panel-collapse>.panel-body {
  4481. border-top-color: #faebcc;
  4482. }
  4483. .panel-warning>.panel-heading .badge {
  4484. color: #fcf8e3;
  4485. background-color: #8a6d3b;
  4486. }
  4487. .panel-warning>.panel-footer+.panel-collapse>.panel-body {
  4488. border-bottom-color: #faebcc;
  4489. }
  4490. .panel-danger {
  4491. border-color: #ebccd1;
  4492. }
  4493. .panel-danger>.panel-heading {
  4494. color: #a94442;
  4495. background-color: #f2dede;
  4496. border-color: #ebccd1;
  4497. }
  4498. .panel-danger>.panel-heading+.panel-collapse>.panel-body {
  4499. border-top-color: #ebccd1;
  4500. }
  4501. .panel-danger>.panel-heading .badge {
  4502. color: #f2dede;
  4503. background-color: #a94442;
  4504. }
  4505. .panel-danger>.panel-footer+.panel-collapse>.panel-body {
  4506. border-bottom-color: #ebccd1;
  4507. }
  4508. .embed-responsive {
  4509. position: relative;
  4510. display: block;
  4511. height: 0;
  4512. padding: 0;
  4513. overflow: hidden;
  4514. }
  4515. .embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object {
  4516. position: absolute;
  4517. top: 0;
  4518. bottom: 0;
  4519. left: 0;
  4520. width: 100%;
  4521. height: 100%;
  4522. border: 0;
  4523. }
  4524. .embed-responsive.embed-responsive-16by9 {
  4525. padding-bottom: 56.25%;
  4526. }
  4527. .embed-responsive.embed-responsive-4by3 {
  4528. padding-bottom: 75%;
  4529. }
  4530. .well {
  4531. min-height: 20px;
  4532. padding: 19px;
  4533. margin-bottom: 20px;
  4534. background-color: #f5f5f5;
  4535. border: 1px solid #e3e3e3;
  4536. border-radius: 4px;
  4537. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  4538. box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  4539. }
  4540. .well blockquote {
  4541. border-color: #ddd;
  4542. border-color: rgba(0,0,0,.15);
  4543. }
  4544. .well-lg {
  4545. padding: 24px;
  4546. border-radius: 6px;
  4547. }
  4548. .well-sm {
  4549. padding: 9px;
  4550. border-radius: 3px;
  4551. }
  4552. .close {
  4553. float: right;
  4554. font-size: 21px;
  4555. font-weight: bold;
  4556. line-height: 1;
  4557. color: #000;
  4558. text-shadow: 0 1px 0 #fff;
  4559. filter: alpha(opacity=20);
  4560. opacity: .2;
  4561. }
  4562. .close:hover,.close:focus {
  4563. color: #000;
  4564. text-decoration: none;
  4565. cursor: pointer;
  4566. filter: alpha(opacity=50);
  4567. opacity: .5;
  4568. }
  4569. button.close {
  4570. -webkit-appearance: none;
  4571. padding: 0;
  4572. cursor: pointer;
  4573. background: transparent;
  4574. border: 0;
  4575. }
  4576. .modal-open {
  4577. overflow: hidden;
  4578. }
  4579. .modal {
  4580. position: fixed;
  4581. top: 0;
  4582. right: 0;
  4583. bottom: 0;
  4584. left: 0;
  4585. z-index: 1050;
  4586. display: none;
  4587. overflow: hidden;
  4588. -webkit-overflow-scrolling: touch;
  4589. outline: 0;
  4590. }
  4591. .modal.fade .modal-dialog {
  4592. -webkit-transition: -webkit-transform .3s ease-out;
  4593. -o-transition: -o-transform .3s ease-out;
  4594. transition: transform .3s ease-out;
  4595. -webkit-transform: translate3d(0,-25%,0);
  4596. -o-transform: translate3d(0,-25%,0);
  4597. transform: translate3d(0,-25%,0);
  4598. }
  4599. .modal.in .modal-dialog {
  4600. -webkit-transform: translate3d(0,0,0);
  4601. -o-transform: translate3d(0,0,0);
  4602. transform: translate3d(0,0,0);
  4603. }
  4604. .modal-open .modal {
  4605. overflow-x: hidden;
  4606. overflow-y: auto;
  4607. }
  4608. .modal-dialog {
  4609. position: relative;
  4610. width: auto;
  4611. margin: 10px;
  4612. }
  4613. .modal-content {
  4614. position: relative;
  4615. background-color: #fff;
  4616. -webkit-background-clip: padding-box;
  4617. background-clip: padding-box;
  4618. border: 1px solid #999;
  4619. border: 1px solid rgba(0,0,0,.2);
  4620. border-radius: 6px;
  4621. outline: 0;
  4622. -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  4623. box-shadow: 0 3px 9px rgba(0,0,0,.5);
  4624. }
  4625. .modal-backdrop {
  4626. position: fixed;
  4627. top: 0;
  4628. right: 0;
  4629. bottom: 0;
  4630. left: 0;
  4631. z-index: 1040;
  4632. background-color: #000;
  4633. }
  4634. .modal-backdrop.fade {
  4635. filter: alpha(opacity=0);
  4636. opacity: 0;
  4637. }
  4638. .modal-backdrop.in {
  4639. filter: alpha(opacity=50);
  4640. opacity: .5;
  4641. }
  4642. .modal-header {
  4643. min-height: 16.42857143px;
  4644. padding: 15px;
  4645. border-bottom: 1px solid #e5e5e5;
  4646. }
  4647. .modal-header .close {
  4648. margin-top: -2px;
  4649. }
  4650. .modal-title {
  4651. margin: 0;
  4652. line-height: 1.42857143;
  4653. }
  4654. .modal-body {
  4655. position: relative;
  4656. padding: 15px;
  4657. }
  4658. .modal-footer {
  4659. padding: 15px;
  4660. text-align: right;
  4661. border-top: 1px solid #e5e5e5;
  4662. }
  4663. .modal-footer .btn+.btn {
  4664. margin-bottom: 0;
  4665. margin-left: 5px;
  4666. }
  4667. .modal-footer .btn-group .btn+.btn {
  4668. margin-left: -1px;
  4669. }
  4670. .modal-footer .btn-block+.btn-block {
  4671. margin-left: 0;
  4672. }
  4673. .modal-scrollbar-measure {
  4674. position: absolute;
  4675. top: -9999px;
  4676. width: 50px;
  4677. height: 50px;
  4678. overflow: scroll;
  4679. }
  4680. @media (min-width: 768px) {
  4681. .modal-dialog {
  4682. width: 600px;
  4683. margin: 30px auto;
  4684. }
  4685. .modal-content {
  4686. -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
  4687. box-shadow: 0 5px 15px rgba(0,0,0,.5);
  4688. }
  4689. .modal-sm {
  4690. width: 300px;
  4691. }
  4692. }
  4693. @media (min-width: 992px) {
  4694. .modal-lg {
  4695. width: 900px;
  4696. }
  4697. }
  4698. .tooltip {
  4699. position: absolute;
  4700. z-index: 1070;
  4701. display: block;
  4702. font-size: 12px;
  4703. line-height: 1.4;
  4704. visibility: visible;
  4705. filter: alpha(opacity=0);
  4706. opacity: 0;
  4707. }
  4708. .tooltip.in {
  4709. filter: alpha(opacity=90);
  4710. opacity: .9;
  4711. }
  4712. .tooltip.top {
  4713. padding: 5px 0;
  4714. margin-top: -3px;
  4715. }
  4716. .tooltip.right {
  4717. padding: 0 5px;
  4718. margin-left: 3px;
  4719. }
  4720. .tooltip.bottom {
  4721. padding: 5px 0;
  4722. margin-top: 3px;
  4723. }
  4724. .tooltip.left {
  4725. padding: 0 5px;
  4726. margin-left: -3px;
  4727. }
  4728. .tooltip-inner {
  4729. max-width: 200px;
  4730. padding: 3px 8px;
  4731. color: #fff;
  4732. text-align: center;
  4733. text-decoration: none;
  4734. background-color: #000;
  4735. border-radius: 4px;
  4736. }
  4737. .tooltip-arrow {
  4738. position: absolute;
  4739. width: 0;
  4740. height: 0;
  4741. border-color: transparent;
  4742. border-style: solid;
  4743. }
  4744. .tooltip.top .tooltip-arrow {
  4745. bottom: 0;
  4746. left: 50%;
  4747. margin-left: -5px;
  4748. border-width: 5px 5px 0;
  4749. border-top-color: #000;
  4750. }
  4751. .tooltip.top-left .tooltip-arrow {
  4752. bottom: 0;
  4753. left: 5px;
  4754. border-width: 5px 5px 0;
  4755. border-top-color: #000;
  4756. }
  4757. .tooltip.top-right .tooltip-arrow {
  4758. right: 5px;
  4759. bottom: 0;
  4760. border-width: 5px 5px 0;
  4761. border-top-color: #000;
  4762. }
  4763. .tooltip.right .tooltip-arrow {
  4764. top: 50%;
  4765. left: 0;
  4766. margin-top: -5px;
  4767. border-width: 5px 5px 5px 0;
  4768. border-right-color: #000;
  4769. }
  4770. .tooltip.left .tooltip-arrow {
  4771. top: 50%;
  4772. right: 0;
  4773. margin-top: -5px;
  4774. border-width: 5px 0 5px 5px;
  4775. border-left-color: #000;
  4776. }
  4777. .tooltip.bottom .tooltip-arrow {
  4778. top: 0;
  4779. left: 50%;
  4780. margin-left: -5px;
  4781. border-width: 0 5px 5px;
  4782. border-bottom-color: #000;
  4783. }
  4784. .tooltip.bottom-left .tooltip-arrow {
  4785. top: 0;
  4786. left: 5px;
  4787. border-width: 0 5px 5px;
  4788. border-bottom-color: #000;
  4789. }
  4790. .tooltip.bottom-right .tooltip-arrow {
  4791. top: 0;
  4792. right: 5px;
  4793. border-width: 0 5px 5px;
  4794. border-bottom-color: #000;
  4795. }
  4796. .popover {
  4797. position: absolute;
  4798. top: 0;
  4799. left: 0;
  4800. z-index: 1060;
  4801. display: none;
  4802. max-width: 276px;
  4803. padding: 1px;
  4804. text-align: left;
  4805. white-space: normal;
  4806. background-color: #fff;
  4807. -webkit-background-clip: padding-box;
  4808. background-clip: padding-box;
  4809. border: 1px solid #ccc;
  4810. border: 1px solid rgba(0,0,0,.2);
  4811. border-radius: 6px;
  4812. -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  4813. box-shadow: 0 5px 10px rgba(0,0,0,.2);
  4814. }
  4815. .popover.top {
  4816. margin-top: -10px;
  4817. }
  4818. .popover.right {
  4819. margin-left: 10px;
  4820. }
  4821. .popover.bottom {
  4822. margin-top: 10px;
  4823. }
  4824. .popover.left {
  4825. margin-left: -10px;
  4826. }
  4827. .popover-title {
  4828. padding: 8px 14px;
  4829. margin: 0;
  4830. font-size: 14px;
  4831. font-weight: normal;
  4832. line-height: 18px;
  4833. background-color: #f7f7f7;
  4834. border-bottom: 1px solid #ebebeb;
  4835. border-radius: 5px 5px 0 0;
  4836. }
  4837. .popover-content {
  4838. padding: 9px 14px;
  4839. }
  4840. .popover>.arrow,.popover>.arrow:after {
  4841. position: absolute;
  4842. display: block;
  4843. width: 0;
  4844. height: 0;
  4845. border-color: transparent;
  4846. border-style: solid;
  4847. }
  4848. .popover>.arrow {
  4849. border-width: 11px;
  4850. }
  4851. .popover>.arrow:after {
  4852. content: "";
  4853. border-width: 10px;
  4854. }
  4855. .popover.top>.arrow {
  4856. bottom: -11px;
  4857. left: 50%;
  4858. margin-left: -11px;
  4859. border-top-color: #999;
  4860. border-top-color: rgba(0,0,0,.25);
  4861. border-bottom-width: 0;
  4862. }
  4863. .popover.top>.arrow:after {
  4864. bottom: 1px;
  4865. margin-left: -10px;
  4866. content: " ";
  4867. border-top-color: #fff;
  4868. border-bottom-width: 0;
  4869. }
  4870. .popover.right>.arrow {
  4871. top: 50%;
  4872. left: -11px;
  4873. margin-top: -11px;
  4874. border-right-color: #999;
  4875. border-right-color: rgba(0,0,0,.25);
  4876. border-left-width: 0;
  4877. }
  4878. .popover.right>.arrow:after {
  4879. bottom: -10px;
  4880. left: 1px;
  4881. content: " ";
  4882. border-right-color: #fff;
  4883. border-left-width: 0;
  4884. }
  4885. .popover.bottom>.arrow {
  4886. top: -11px;
  4887. left: 50%;
  4888. margin-left: -11px;
  4889. border-top-width: 0;
  4890. border-bottom-color: #999;
  4891. border-bottom-color: rgba(0,0,0,.25);
  4892. }
  4893. .popover.bottom>.arrow:after {
  4894. top: 1px;
  4895. margin-left: -10px;
  4896. content: " ";
  4897. border-top-width: 0;
  4898. border-bottom-color: #fff;
  4899. }
  4900. .popover.left>.arrow {
  4901. top: 50%;
  4902. right: -11px;
  4903. margin-top: -11px;
  4904. border-right-width: 0;
  4905. border-left-color: #999;
  4906. border-left-color: rgba(0,0,0,.25);
  4907. }
  4908. .popover.left>.arrow:after {
  4909. right: 1px;
  4910. bottom: -10px;
  4911. content: " ";
  4912. border-right-width: 0;
  4913. border-left-color: #fff;
  4914. }
  4915. .carousel {
  4916. position: relative;
  4917. }
  4918. .carousel-inner {
  4919. position: relative;
  4920. width: 100%;
  4921. overflow: hidden;
  4922. }
  4923. .carousel-inner>.item {
  4924. position: relative;
  4925. display: none;
  4926. -webkit-transition: .6s ease-in-out left;
  4927. -o-transition: .6s ease-in-out left;
  4928. transition: .6s ease-in-out left;
  4929. }
  4930. .carousel-inner>.item>img,.carousel-inner>.item>a>img {
  4931. line-height: 1;
  4932. }
  4933. .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev {
  4934. display: block;
  4935. }
  4936. .carousel-inner>.active {
  4937. left: 0;
  4938. }
  4939. .carousel-inner>.next,.carousel-inner>.prev {
  4940. position: absolute;
  4941. top: 0;
  4942. width: 100%;
  4943. }
  4944. .carousel-inner>.next {
  4945. left: 100%;
  4946. }
  4947. .carousel-inner>.prev {
  4948. left: -100%;
  4949. }
  4950. .carousel-inner>.next.left,.carousel-inner>.prev.right {
  4951. left: 0;
  4952. }
  4953. .carousel-inner>.active.left {
  4954. left: -100%;
  4955. }
  4956. .carousel-inner>.active.right {
  4957. left: 100%;
  4958. }
  4959. .carousel-control {
  4960. position: absolute;
  4961. top: 0;
  4962. bottom: 0;
  4963. left: 0;
  4964. width: 15%;
  4965. font-size: 20px;
  4966. color: #fff;
  4967. text-align: center;
  4968. text-shadow: 0 1px 2px rgba(0,0,0,.6);
  4969. filter: alpha(opacity=50);
  4970. opacity: .5;
  4971. }
  4972. .carousel-control.left {
  4973. background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0%,rgba(0,0,0,.0001) 100%);
  4974. background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0%,rgba(0,0,0,.0001) 100%);
  4975. background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
  4976. background-image: linear-gradient(to right,rgba(0,0,0,.5) 0%,rgba(0,0,0,.0001) 100%);
  4977. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);
  4978. background-repeat: repeat-x;
  4979. }
  4980. .carousel-control.right {
  4981. right: 0;
  4982. left: auto;
  4983. background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0%,rgba(0,0,0,.5) 100%);
  4984. background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0%,rgba(0,0,0,.5) 100%);
  4985. background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
  4986. background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0%,rgba(0,0,0,.5) 100%);
  4987. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);
  4988. background-repeat: repeat-x;
  4989. }
  4990. .carousel-control:hover,.carousel-control:focus {
  4991. color: #fff;
  4992. text-decoration: none;
  4993. filter: alpha(opacity=90);
  4994. outline: 0;
  4995. opacity: .9;
  4996. }
  4997. .carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right {
  4998. position: absolute;
  4999. top: 50%;
  5000. z-index: 5;
  5001. display: inline-block;
  5002. }
  5003. .carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left {
  5004. left: 50%;
  5005. margin-left: -10px;
  5006. }
  5007. .carousel-control .icon-next,.carousel-control .glyphicon-chevron-right {
  5008. right: 50%;
  5009. margin-right: -10px;
  5010. }
  5011. .carousel-control .icon-prev,.carousel-control .icon-next {
  5012. width: 20px;
  5013. height: 20px;
  5014. margin-top: -10px;
  5015. font-family: serif;
  5016. }
  5017. .carousel-control .icon-prev:before {
  5018. content: '\2039';
  5019. }
  5020. .carousel-control .icon-next:before {
  5021. content: '\203a';
  5022. }
  5023. .carousel-indicators {
  5024. position: absolute;
  5025. bottom: 10px;
  5026. left: 50%;
  5027. z-index: 15;
  5028. width: 60%;
  5029. padding-left: 0;
  5030. margin-left: -30%;
  5031. text-align: center;
  5032. list-style: none;
  5033. }
  5034. .carousel-indicators li {
  5035. display: inline-block;
  5036. width: 10px;
  5037. height: 10px;
  5038. margin: 1px;
  5039. text-indent: -999px;
  5040. cursor: pointer;
  5041. background-color: #000 \9;
  5042. background-color: rgba(0,0,0,0);
  5043. border: 1px solid #fff;
  5044. border-radius: 10px;
  5045. }
  5046. .carousel-indicators .active {
  5047. width: 12px;
  5048. height: 12px;
  5049. margin: 0;
  5050. background-color: #fff;
  5051. }
  5052. .carousel-caption {
  5053. position: absolute;
  5054. right: 15%;
  5055. bottom: 20px;
  5056. left: 15%;
  5057. z-index: 10;
  5058. padding-top: 20px;
  5059. padding-bottom: 20px;
  5060. color: #fff;
  5061. text-align: center;
  5062. text-shadow: 0 1px 2px rgba(0,0,0,.6);
  5063. }
  5064. .carousel-caption .btn {
  5065. text-shadow: none;
  5066. }
  5067. @media screen and (min-width: 768px) {
  5068. .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next {
  5069. width: 30px;
  5070. height: 30px;
  5071. margin-top: -15px;
  5072. font-size: 30px;
  5073. }
  5074. .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev {
  5075. margin-left: -15px;
  5076. }
  5077. .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next {
  5078. margin-right: -15px;
  5079. }
  5080. .carousel-caption {
  5081. right: 20%;
  5082. left: 20%;
  5083. padding-bottom: 30px;
  5084. }
  5085. .carousel-indicators {
  5086. bottom: 20px;
  5087. }
  5088. }
  5089. .clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after {
  5090. display: table;
  5091. content: " ";
  5092. }
  5093. .clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after {
  5094. clear: both;
  5095. }
  5096. .center-block {
  5097. display: block;
  5098. margin-right: auto;
  5099. margin-left: auto;
  5100. }
  5101. .pull-right {
  5102. float: right !important;
  5103. }
  5104. .pull-left {
  5105. float: left !important;
  5106. }
  5107. .hide {
  5108. display: none !important;
  5109. }
  5110. .show {
  5111. display: block !important;
  5112. }
  5113. .invisible {
  5114. visibility: hidden;
  5115. }
  5116. .text-hide {
  5117. font: 0/0 a;
  5118. color: transparent;
  5119. text-shadow: none;
  5120. background-color: transparent;
  5121. border: 0;
  5122. }
  5123. .hidden {
  5124. display: none !important;
  5125. visibility: hidden !important;
  5126. }
  5127. .affix {
  5128. position: fixed;
  5129. -webkit-transform: translate3d(0,0,0);
  5130. -o-transform: translate3d(0,0,0);
  5131. transform: translate3d(0,0,0);
  5132. }
  5133. @-ms-viewport {
  5134. width:device-width;
  5135. }
  5136. .visible-xs,.visible-sm,.visible-md,.visible-lg {
  5137. display: none !important;
  5138. }
  5139. .visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block {
  5140. display: none !important;
  5141. }
  5142. @media (max-width: 767px) {
  5143. .visible-xs {
  5144. display: block !important;
  5145. }
  5146. table.visible-xs {
  5147. display: table;
  5148. }
  5149. tr.visible-xs {
  5150. display: table-row !important;
  5151. }
  5152. th.visible-xs,td.visible-xs {
  5153. display: table-cell !important;
  5154. }
  5155. }
  5156. @media (max-width: 767px) {
  5157. .visible-xs-block {
  5158. display: block !important;
  5159. }
  5160. }
  5161. @media (max-width: 767px) {
  5162. .visible-xs-inline {
  5163. display: inline !important;
  5164. }
  5165. }
  5166. @media (max-width: 767px) {
  5167. .visible-xs-inline-block {
  5168. display: inline-block !important;
  5169. }
  5170. }
  5171. @media (min-width: 768px) and (max-width: 991px) {
  5172. .visible-sm {
  5173. display: block !important;
  5174. }
  5175. table.visible-sm {
  5176. display: table;
  5177. }
  5178. tr.visible-sm {
  5179. display: table-row !important;
  5180. }
  5181. th.visible-sm,td.visible-sm {
  5182. display: table-cell !important;
  5183. }
  5184. }
  5185. @media (min-width: 768px) and (max-width: 991px) {
  5186. .visible-sm-block {
  5187. display: block !important;
  5188. }
  5189. }
  5190. @media (min-width: 768px) and (max-width: 991px) {
  5191. .visible-sm-inline {
  5192. display: inline !important;
  5193. }
  5194. }
  5195. @media (min-width: 768px) and (max-width: 991px) {
  5196. .visible-sm-inline-block {
  5197. display: inline-block !important;
  5198. }
  5199. }
  5200. @media (min-width: 992px) and (max-width: 1199px) {
  5201. .visible-md {
  5202. display: block !important;
  5203. }
  5204. table.visible-md {
  5205. display: table;
  5206. }
  5207. tr.visible-md {
  5208. display: table-row !important;
  5209. }
  5210. th.visible-md,td.visible-md {
  5211. display: table-cell !important;
  5212. }
  5213. }
  5214. @media (min-width: 992px) and (max-width: 1199px) {
  5215. .visible-md-block {
  5216. display: block !important;
  5217. }
  5218. }
  5219. @media (min-width: 992px) and (max-width: 1199px) {
  5220. .visible-md-inline {
  5221. display: inline !important;
  5222. }
  5223. }
  5224. @media (min-width: 992px) and (max-width: 1199px) {
  5225. .visible-md-inline-block {
  5226. display: inline-block !important;
  5227. }
  5228. }
  5229. @media (min-width: 1200px) {
  5230. .visible-lg {
  5231. display: block !important;
  5232. }
  5233. table.visible-lg {
  5234. display: table;
  5235. }
  5236. tr.visible-lg {
  5237. display: table-row !important;
  5238. }
  5239. th.visible-lg,td.visible-lg {
  5240. display: table-cell !important;
  5241. }
  5242. }
  5243. @media (min-width: 1200px) {
  5244. .visible-lg-block {
  5245. display: block !important;
  5246. }
  5247. }
  5248. @media (min-width: 1200px) {
  5249. .visible-lg-inline {
  5250. display: inline !important;
  5251. }
  5252. }
  5253. @media (min-width: 1200px) {
  5254. .visible-lg-inline-block {
  5255. display: inline-block !important;
  5256. }
  5257. }
  5258. @media (max-width: 767px) {
  5259. .hidden-xs {
  5260. display: none !important;
  5261. }
  5262. }
  5263. @media (min-width: 768px) and (max-width: 991px) {
  5264. .hidden-sm {
  5265. display: none !important;
  5266. }
  5267. }
  5268. @media (min-width: 992px) and (max-width: 1199px) {
  5269. .hidden-md {
  5270. display: none !important;
  5271. }
  5272. }
  5273. @media (min-width: 1200px) {
  5274. .hidden-lg {
  5275. display: none !important;
  5276. }
  5277. }
  5278. .visible-print {
  5279. display: none !important;
  5280. }
  5281. @media print {
  5282. .visible-print {
  5283. display: block !important;
  5284. }
  5285. table.visible-print {
  5286. display: table;
  5287. }
  5288. tr.visible-print {
  5289. display: table-row !important;
  5290. }
  5291. th.visible-print,td.visible-print {
  5292. display: table-cell !important;
  5293. }
  5294. }
  5295. .visible-print-block {
  5296. display: none !important;
  5297. }
  5298. @media print {
  5299. .visible-print-block {
  5300. display: block !important;
  5301. }
  5302. }
  5303. .visible-print-inline {
  5304. display: none !important;
  5305. }
  5306. @media print {
  5307. .visible-print-inline {
  5308. display: inline !important;
  5309. }
  5310. }
  5311. .visible-print-inline-block {
  5312. display: none !important;
  5313. }
  5314. @media print {
  5315. .visible-print-inline-block {
  5316. display: inline-block !important;
  5317. }
  5318. }
  5319. @media print {
  5320. .hidden-print {
  5321. display: none !important;
  5322. }
  5323. }
  5324. @font-face {
  5325. font-family:'FontAwesome';src:url('font-awesome/fonts/fontawesome-webfont.eot?v=4.0.3');src:url('font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),url('font-awesome/fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'),url('font-awesome/fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'),url('font-awesome/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal
  5326. }
  5327. .fa {
  5328. display: inline-block;
  5329. font-family: FontAwesome;
  5330. font-style: normal;
  5331. font-weight: normal;
  5332. line-height: 1;
  5333. -webkit-font-smoothing: antialiased;
  5334. -moz-osx-font-smoothing: grayscale
  5335. }
  5336. .fa-lg {
  5337. font-size: 1.3333333333333333em;
  5338. line-height: .75em;
  5339. vertical-align: -15%
  5340. }
  5341. .fa-2x {
  5342. font-size: 2em
  5343. }
  5344. .fa-3x {
  5345. font-size: 3em
  5346. }
  5347. .fa-4x {
  5348. font-size: 4em
  5349. }
  5350. .fa-5x {
  5351. font-size: 5em
  5352. }
  5353. .fa-fw {
  5354. width: 1.2857142857142858em;
  5355. text-align: center
  5356. }
  5357. .fa-ul {
  5358. padding-left: 0;
  5359. margin-left: 2.142857142857143em;
  5360. list-style-type: none
  5361. }
  5362. .fa-ul>li {
  5363. position: relative
  5364. }
  5365. .fa-li {
  5366. position: absolute;
  5367. left: -2.142857142857143em;
  5368. width: 2.142857142857143em;
  5369. top: .14285714285714285em;
  5370. text-align: center
  5371. }
  5372. .fa-li.fa-lg {
  5373. left: -1.8571428571428572em
  5374. }
  5375. .fa-border {
  5376. padding: .2em .25em .15em;
  5377. border: solid .08em #eee;
  5378. border-radius: .1em
  5379. }
  5380. .pull-right {
  5381. float: right
  5382. }
  5383. .pull-left {
  5384. float: left
  5385. }
  5386. .fa.pull-left {
  5387. margin-right: .3em
  5388. }
  5389. .fa.pull-right {
  5390. margin-left: .3em
  5391. }
  5392. .fa-spin {
  5393. -webkit-animation: spin 2s infinite linear;
  5394. -moz-animation: spin 2s infinite linear;
  5395. -o-animation: spin 2s infinite linear;
  5396. animation: spin 2s infinite linear
  5397. }
  5398. @-moz-keyframes spin {
  5399. 0% {
  5400. -moz-transform: rotate(0deg)
  5401. }
  5402. 100% {
  5403. -moz-transform: rotate(359deg)
  5404. }
  5405. }
  5406. @-webkit-keyframes spin {
  5407. 0% {
  5408. -webkit-transform: rotate(0deg)
  5409. }
  5410. 100% {
  5411. -webkit-transform: rotate(359deg)
  5412. }
  5413. }
  5414. @-o-keyframes spin {
  5415. 0% {
  5416. -o-transform: rotate(0deg)
  5417. }
  5418. 100% {
  5419. -o-transform: rotate(359deg)
  5420. }
  5421. }
  5422. @-ms-keyframes spin {
  5423. 0% {
  5424. -ms-transform: rotate(0deg)
  5425. }
  5426. 100% {
  5427. -ms-transform: rotate(359deg)
  5428. }
  5429. }
  5430. @keyframes spin {
  5431. 0% {
  5432. transform: rotate(0deg)
  5433. }
  5434. 100% {
  5435. transform: rotate(359deg)
  5436. }
  5437. }
  5438. .fa-rotate-90 {
  5439. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  5440. -webkit-transform: rotate(90deg);
  5441. -moz-transform: rotate(90deg);
  5442. -ms-transform: rotate(90deg);
  5443. -o-transform: rotate(90deg);
  5444. transform: rotate(90deg)
  5445. }
  5446. .fa-rotate-180 {
  5447. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  5448. -webkit-transform: rotate(180deg);
  5449. -moz-transform: rotate(180deg);
  5450. -ms-transform: rotate(180deg);
  5451. -o-transform: rotate(180deg);
  5452. transform: rotate(180deg)
  5453. }
  5454. .fa-rotate-270 {
  5455. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  5456. -webkit-transform: rotate(270deg);
  5457. -moz-transform: rotate(270deg);
  5458. -ms-transform: rotate(270deg);
  5459. -o-transform: rotate(270deg);
  5460. transform: rotate(270deg)
  5461. }
  5462. .fa-flip-horizontal {
  5463. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
  5464. -webkit-transform: scale(-1,1);
  5465. -moz-transform: scale(-1,1);
  5466. -ms-transform: scale(-1,1);
  5467. -o-transform: scale(-1,1);
  5468. transform: scale(-1,1)
  5469. }
  5470. .fa-flip-vertical {
  5471. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);
  5472. -webkit-transform: scale(1,-1);
  5473. -moz-transform: scale(1,-1);
  5474. -ms-transform: scale(1,-1);
  5475. -o-transform: scale(1,-1);
  5476. transform: scale(1,-1)
  5477. }
  5478. .fa-stack {
  5479. position: relative;
  5480. display: inline-block;
  5481. width: 2em;
  5482. height: 2em;
  5483. line-height: 2em;
  5484. vertical-align: middle
  5485. }
  5486. .fa-stack-1x,.fa-stack-2x {
  5487. position: absolute;
  5488. left: 0;
  5489. width: 100%;
  5490. text-align: center
  5491. }
  5492. .fa-stack-1x {
  5493. line-height: inherit
  5494. }
  5495. .fa-stack-2x {
  5496. font-size: 2em
  5497. }
  5498. .fa-inverse {
  5499. color: #fff
  5500. }
  5501. .fa-glass:before {
  5502. content: "\f000"
  5503. }
  5504. .fa-music:before {
  5505. content: "\f001"
  5506. }
  5507. .fa-search:before {
  5508. content: "\f002"
  5509. }
  5510. .fa-envelope-o:before {
  5511. content: "\f003"
  5512. }
  5513. .fa-heart:before {
  5514. content: "\f004"
  5515. }
  5516. .fa-star:before {
  5517. content: "\f005"
  5518. }
  5519. .fa-star-o:before {
  5520. content: "\f006"
  5521. }
  5522. .fa-user:before {
  5523. content: "\f007"
  5524. }
  5525. .fa-film:before {
  5526. content: "\f008"
  5527. }
  5528. .fa-th-large:before {
  5529. content: "\f009"
  5530. }
  5531. .fa-th:before {
  5532. content: "\f00a"
  5533. }
  5534. .fa-th-list:before {
  5535. content: "\f00b"
  5536. }
  5537. .fa-check:before {
  5538. content: "\f00c"
  5539. }
  5540. .fa-times:before {
  5541. content: "\f00d"
  5542. }
  5543. .fa-search-plus:before {
  5544. content: "\f00e"
  5545. }
  5546. .fa-search-minus:before {
  5547. content: "\f010"
  5548. }
  5549. .fa-power-off:before {
  5550. content: "\f011"
  5551. }
  5552. .fa-signal:before {
  5553. content: "\f012"
  5554. }
  5555. .fa-gear:before,.fa-cog:before {
  5556. content: "\f013"
  5557. }
  5558. .fa-trash-o:before {
  5559. content: "\f014"
  5560. }
  5561. .fa-home:before {
  5562. content: "\f015"
  5563. }
  5564. .fa-file-o:before {
  5565. content: "\f016"
  5566. }
  5567. .fa-clock-o:before {
  5568. content: "\f017"
  5569. }
  5570. .fa-road:before {
  5571. content: "\f018"
  5572. }
  5573. .fa-download:before {
  5574. content: "\f019"
  5575. }
  5576. .fa-arrow-circle-o-down:before {
  5577. content: "\f01a"
  5578. }
  5579. .fa-arrow-circle-o-up:before {
  5580. content: "\f01b"
  5581. }
  5582. .fa-inbox:before {
  5583. content: "\f01c"
  5584. }
  5585. .fa-play-circle-o:before {
  5586. content: "\f01d"
  5587. }
  5588. .fa-rotate-right:before,.fa-repeat:before {
  5589. content: "\f01e"
  5590. }
  5591. .fa-refresh:before {
  5592. content: "\f021"
  5593. }
  5594. .fa-list-alt:before {
  5595. content: "\f022"
  5596. }
  5597. .fa-lock:before {
  5598. content: "\f023"
  5599. }
  5600. .fa-flag:before {
  5601. content: "\f024"
  5602. }
  5603. .fa-headphones:before {
  5604. content: "\f025"
  5605. }
  5606. .fa-volume-off:before {
  5607. content: "\f026"
  5608. }
  5609. .fa-volume-down:before {
  5610. content: "\f027"
  5611. }
  5612. .fa-volume-up:before {
  5613. content: "\f028"
  5614. }
  5615. .fa-qrcode:before {
  5616. content: "\f029"
  5617. }
  5618. .fa-barcode:before {
  5619. content: "\f02a"
  5620. }
  5621. .fa-tag:before {
  5622. content: "\f02b"
  5623. }
  5624. .fa-tags:before {
  5625. content: "\f02c"
  5626. }
  5627. .fa-book:before {
  5628. content: "\f02d"
  5629. }
  5630. .fa-bookmark:before {
  5631. content: "\f02e"
  5632. }
  5633. .fa-print:before {
  5634. content: "\f02f"
  5635. }
  5636. .fa-camera:before {
  5637. content: "\f030"
  5638. }
  5639. .fa-font:before {
  5640. content: "\f031"
  5641. }
  5642. .fa-bold:before {
  5643. content: "\f032"
  5644. }
  5645. .fa-italic:before {
  5646. content: "\f033"
  5647. }
  5648. .fa-text-height:before {
  5649. content: "\f034"
  5650. }
  5651. .fa-text-width:before {
  5652. content: "\f035"
  5653. }
  5654. .fa-align-left:before {
  5655. content: "\f036"
  5656. }
  5657. .fa-align-center:before {
  5658. content: "\f037"
  5659. }
  5660. .fa-align-right:before {
  5661. content: "\f038"
  5662. }
  5663. .fa-align-justify:before {
  5664. content: "\f039"
  5665. }
  5666. .fa-list:before {
  5667. content: "\f03a"
  5668. }
  5669. .fa-dedent:before,.fa-outdent:before {
  5670. content: "\f03b"
  5671. }
  5672. .fa-indent:before {
  5673. content: "\f03c"
  5674. }
  5675. .fa-video-camera:before {
  5676. content: "\f03d"
  5677. }
  5678. .fa-picture-o:before {
  5679. content: "\f03e"
  5680. }
  5681. .fa-pencil:before {
  5682. content: "\f040"
  5683. }
  5684. .fa-map-marker:before {
  5685. content: "\f041"
  5686. }
  5687. .fa-adjust:before {
  5688. content: "\f042"
  5689. }
  5690. .fa-tint:before {
  5691. content: "\f043"
  5692. }
  5693. .fa-edit:before,.fa-pencil-square-o:before {
  5694. content: "\f044"
  5695. }
  5696. .fa-share-square-o:before {
  5697. content: "\f045"
  5698. }
  5699. .fa-check-square-o:before {
  5700. content: "\f046"
  5701. }
  5702. .fa-arrows:before {
  5703. content: "\f047"
  5704. }
  5705. .fa-step-backward:before {
  5706. content: "\f048"
  5707. }
  5708. .fa-fast-backward:before {
  5709. content: "\f049"
  5710. }
  5711. .fa-backward:before {
  5712. content: "\f04a"
  5713. }
  5714. .fa-play:before {
  5715. content: "\f04b"
  5716. }
  5717. .fa-pause:before {
  5718. content: "\f04c"
  5719. }
  5720. .fa-stop:before {
  5721. content: "\f04d"
  5722. }
  5723. .fa-forward:before {
  5724. content: "\f04e"
  5725. }
  5726. .fa-fast-forward:before {
  5727. content: "\f050"
  5728. }
  5729. .fa-step-forward:before {
  5730. content: "\f051"
  5731. }
  5732. .fa-eject:before {
  5733. content: "\f052"
  5734. }
  5735. .fa-chevron-left:before {
  5736. content: "\f053"
  5737. }
  5738. .fa-chevron-right:before {
  5739. content: "\f054"
  5740. }
  5741. .fa-plus-circle:before {
  5742. content: "\f055"
  5743. }
  5744. .fa-minus-circle:before {
  5745. content: "\f056"
  5746. }
  5747. .fa-times-circle:before {
  5748. content: "\f057"
  5749. }
  5750. .fa-check-circle:before {
  5751. content: "\f058"
  5752. }
  5753. .fa-question-circle:before {
  5754. content: "\f059"
  5755. }
  5756. .fa-info-circle:before {
  5757. content: "\f05a"
  5758. }
  5759. .fa-crosshairs:before {
  5760. content: "\f05b"
  5761. }
  5762. .fa-times-circle-o:before {
  5763. content: "\f05c"
  5764. }
  5765. .fa-check-circle-o:before {
  5766. content: "\f05d"
  5767. }
  5768. .fa-ban:before {
  5769. content: "\f05e"
  5770. }
  5771. .fa-arrow-left:before {
  5772. content: "\f060"
  5773. }
  5774. .fa-arrow-right:before {
  5775. content: "\f061"
  5776. }
  5777. .fa-arrow-up:before {
  5778. content: "\f062"
  5779. }
  5780. .fa-arrow-down:before {
  5781. content: "\f063"
  5782. }
  5783. .fa-mail-forward:before,.fa-share:before {
  5784. content: "\f064"
  5785. }
  5786. .fa-expand:before {
  5787. content: "\f065"
  5788. }
  5789. .fa-compress:before {
  5790. content: "\f066"
  5791. }
  5792. .fa-plus:before {
  5793. content: "\f067"
  5794. }
  5795. .fa-minus:before {
  5796. content: "\f068"
  5797. }
  5798. .fa-asterisk:before {
  5799. content: "\f069"
  5800. }
  5801. .fa-exclamation-circle:before {
  5802. content: "\f06a"
  5803. }
  5804. .fa-gift:before {
  5805. content: "\f06b"
  5806. }
  5807. .fa-leaf:before {
  5808. content: "\f06c"
  5809. }
  5810. .fa-fire:before {
  5811. content: "\f06d"
  5812. }
  5813. .fa-eye:before {
  5814. content: "\f06e"
  5815. }
  5816. .fa-eye-slash:before {
  5817. content: "\f070"
  5818. }
  5819. .fa-warning:before,.fa-exclamation-triangle:before {
  5820. content: "\f071"
  5821. }
  5822. .fa-plane:before {
  5823. content: "\f072"
  5824. }
  5825. .fa-calendar:before {
  5826. content: "\f073"
  5827. }
  5828. .fa-random:before {
  5829. content: "\f074"
  5830. }
  5831. .fa-comment:before {
  5832. content: "\f075"
  5833. }
  5834. .fa-magnet:before {
  5835. content: "\f076"
  5836. }
  5837. .fa-chevron-up:before {
  5838. content: "\f077"
  5839. }
  5840. .fa-chevron-down:before {
  5841. content: "\f078"
  5842. }
  5843. .fa-retweet:before {
  5844. content: "\f079"
  5845. }
  5846. .fa-shopping-cart:before {
  5847. content: "\f07a"
  5848. }
  5849. .fa-folder:before {
  5850. content: "\f07b"
  5851. }
  5852. .fa-folder-open:before {
  5853. content: "\f07c"
  5854. }
  5855. .fa-arrows-v:before {
  5856. content: "\f07d"
  5857. }
  5858. .fa-arrows-h:before {
  5859. content: "\f07e"
  5860. }
  5861. .fa-bar-chart-o:before {
  5862. content: "\f080"
  5863. }
  5864. .fa-twitter-square:before {
  5865. content: "\f081"
  5866. }
  5867. .fa-facebook-square:before {
  5868. content: "\f082"
  5869. }
  5870. .fa-camera-retro:before {
  5871. content: "\f083"
  5872. }
  5873. .fa-key:before {
  5874. content: "\f084"
  5875. }
  5876. .fa-gears:before,.fa-cogs:before {
  5877. content: "\f085"
  5878. }
  5879. .fa-comments:before {
  5880. content: "\f086"
  5881. }
  5882. .fa-thumbs-o-up:before {
  5883. content: "\f087"
  5884. }
  5885. .fa-thumbs-o-down:before {
  5886. content: "\f088"
  5887. }
  5888. .fa-star-half:before {
  5889. content: "\f089"
  5890. }
  5891. .fa-heart-o:before {
  5892. content: "\f08a"
  5893. }
  5894. .fa-sign-out:before {
  5895. content: "\f08b"
  5896. }
  5897. .fa-linkedin-square:before {
  5898. content: "\f08c"
  5899. }
  5900. .fa-thumb-tack:before {
  5901. content: "\f08d"
  5902. }
  5903. .fa-external-link:before {
  5904. content: "\f08e"
  5905. }
  5906. .fa-sign-in:before {
  5907. content: "\f090"
  5908. }
  5909. .fa-trophy:before {
  5910. content: "\f091"
  5911. }
  5912. .fa-github-square:before {
  5913. content: "\f092"
  5914. }
  5915. .fa-upload:before {
  5916. content: "\f093"
  5917. }
  5918. .fa-lemon-o:before {
  5919. content: "\f094"
  5920. }
  5921. .fa-phone:before {
  5922. content: "\f095"
  5923. }
  5924. .fa-square-o:before {
  5925. content: "\f096"
  5926. }
  5927. .fa-bookmark-o:before {
  5928. content: "\f097"
  5929. }
  5930. .fa-phone-square:before {
  5931. content: "\f098"
  5932. }
  5933. .fa-twitter:before {
  5934. content: "\f099"
  5935. }
  5936. .fa-facebook:before {
  5937. content: "\f09a"
  5938. }
  5939. .fa-github:before {
  5940. content: "\f09b"
  5941. }
  5942. .fa-unlock:before {
  5943. content: "\f09c"
  5944. }
  5945. .fa-credit-card:before {
  5946. content: "\f09d"
  5947. }
  5948. .fa-rss:before {
  5949. content: "\f09e"
  5950. }
  5951. .fa-hdd-o:before {
  5952. content: "\f0a0"
  5953. }
  5954. .fa-bullhorn:before {
  5955. content: "\f0a1"
  5956. }
  5957. .fa-bell:before {
  5958. content: "\f0f3"
  5959. }
  5960. .fa-certificate:before {
  5961. content: "\f0a3"
  5962. }
  5963. .fa-hand-o-right:before {
  5964. content: "\f0a4"
  5965. }
  5966. .fa-hand-o-left:before {
  5967. content: "\f0a5"
  5968. }
  5969. .fa-hand-o-up:before {
  5970. content: "\f0a6"
  5971. }
  5972. .fa-hand-o-down:before {
  5973. content: "\f0a7"
  5974. }
  5975. .fa-arrow-circle-left:before {
  5976. content: "\f0a8"
  5977. }
  5978. .fa-arrow-circle-right:before {
  5979. content: "\f0a9"
  5980. }
  5981. .fa-arrow-circle-up:before {
  5982. content: "\f0aa"
  5983. }
  5984. .fa-arrow-circle-down:before {
  5985. content: "\f0ab"
  5986. }
  5987. .fa-globe:before {
  5988. content: "\f0ac"
  5989. }
  5990. .fa-wrench:before {
  5991. content: "\f0ad"
  5992. }
  5993. .fa-tasks:before {
  5994. content: "\f0ae"
  5995. }
  5996. .fa-filter:before {
  5997. content: "\f0b0"
  5998. }
  5999. .fa-briefcase:before {
  6000. content: "\f0b1"
  6001. }
  6002. .fa-arrows-alt:before {
  6003. content: "\f0b2"
  6004. }
  6005. .fa-group:before,.fa-users:before {
  6006. content: "\f0c0"
  6007. }
  6008. .fa-chain:before,.fa-link:before {
  6009. content: "\f0c1"
  6010. }
  6011. .fa-cloud:before {
  6012. content: "\f0c2"
  6013. }
  6014. .fa-flask:before {
  6015. content: "\f0c3"
  6016. }
  6017. .fa-cut:before,.fa-scissors:before {
  6018. content: "\f0c4"
  6019. }
  6020. .fa-copy:before,.fa-files-o:before {
  6021. content: "\f0c5"
  6022. }
  6023. .fa-paperclip:before {
  6024. content: "\f0c6"
  6025. }
  6026. .fa-save:before,.fa-floppy-o:before {
  6027. content: "\f0c7"
  6028. }
  6029. .fa-square:before {
  6030. content: "\f0c8"
  6031. }
  6032. .fa-bars:before {
  6033. content: "\f0c9"
  6034. }
  6035. .fa-list-ul:before {
  6036. content: "\f0ca"
  6037. }
  6038. .fa-list-ol:before {
  6039. content: "\f0cb"
  6040. }
  6041. .fa-strikethrough:before {
  6042. content: "\f0cc"
  6043. }
  6044. .fa-underline:before {
  6045. content: "\f0cd"
  6046. }
  6047. .fa-table:before {
  6048. content: "\f0ce"
  6049. }
  6050. .fa-magic:before {
  6051. content: "\f0d0"
  6052. }
  6053. .fa-truck:before {
  6054. content: "\f0d1"
  6055. }
  6056. .fa-pinterest:before {
  6057. content: "\f0d2"
  6058. }
  6059. .fa-pinterest-square:before {
  6060. content: "\f0d3"
  6061. }
  6062. .fa-google-plus-square:before {
  6063. content: "\f0d4"
  6064. }
  6065. .fa-google-plus:before {
  6066. content: "\f0d5"
  6067. }
  6068. .fa-money:before {
  6069. content: "\f0d6"
  6070. }
  6071. .fa-caret-down:before {
  6072. content: "\f0d7"
  6073. }
  6074. .fa-caret-up:before {
  6075. content: "\f0d8"
  6076. }
  6077. .fa-caret-left:before {
  6078. content: "\f0d9"
  6079. }
  6080. .fa-caret-right:before {
  6081. content: "\f0da"
  6082. }
  6083. .fa-columns:before {
  6084. content: "\f0db"
  6085. }
  6086. .fa-unsorted:before,.fa-sort:before {
  6087. content: "\f0dc"
  6088. }
  6089. .fa-sort-down:before,.fa-sort-asc:before {
  6090. content: "\f0dd"
  6091. }
  6092. .fa-sort-up:before,.fa-sort-desc:before {
  6093. content: "\f0de"
  6094. }
  6095. .fa-envelope:before {
  6096. content: "\f0e0"
  6097. }
  6098. .fa-linkedin:before {
  6099. content: "\f0e1"
  6100. }
  6101. .fa-rotate-left:before,.fa-undo:before {
  6102. content: "\f0e2"
  6103. }
  6104. .fa-legal:before,.fa-gavel:before {
  6105. content: "\f0e3"
  6106. }
  6107. .fa-dashboard:before,.fa-tachometer:before {
  6108. content: "\f0e4"
  6109. }
  6110. .fa-comment-o:before {
  6111. content: "\f0e5"
  6112. }
  6113. .fa-comments-o:before {
  6114. content: "\f0e6"
  6115. }
  6116. .fa-flash:before,.fa-bolt:before {
  6117. content: "\f0e7"
  6118. }
  6119. .fa-sitemap:before {
  6120. content: "\f0e8"
  6121. }
  6122. .fa-umbrella:before {
  6123. content: "\f0e9"
  6124. }
  6125. .fa-paste:before,.fa-clipboard:before {
  6126. content: "\f0ea"
  6127. }
  6128. .fa-lightbulb-o:before {
  6129. content: "\f0eb"
  6130. }
  6131. .fa-exchange:before {
  6132. content: "\f0ec"
  6133. }
  6134. .fa-cloud-download:before {
  6135. content: "\f0ed"
  6136. }
  6137. .fa-cloud-upload:before {
  6138. content: "\f0ee"
  6139. }
  6140. .fa-user-md:before {
  6141. content: "\f0f0"
  6142. }
  6143. .fa-stethoscope:before {
  6144. content: "\f0f1"
  6145. }
  6146. .fa-suitcase:before {
  6147. content: "\f0f2"
  6148. }
  6149. .fa-bell-o:before {
  6150. content: "\f0a2"
  6151. }
  6152. .fa-coffee:before {
  6153. content: "\f0f4"
  6154. }
  6155. .fa-cutlery:before {
  6156. content: "\f0f5"
  6157. }
  6158. .fa-file-text-o:before {
  6159. content: "\f0f6"
  6160. }
  6161. .fa-building-o:before {
  6162. content: "\f0f7"
  6163. }
  6164. .fa-hospital-o:before {
  6165. content: "\f0f8"
  6166. }
  6167. .fa-ambulance:before {
  6168. content: "\f0f9"
  6169. }
  6170. .fa-medkit:before {
  6171. content: "\f0fa"
  6172. }
  6173. .fa-fighter-jet:before {
  6174. content: "\f0fb"
  6175. }
  6176. .fa-beer:before {
  6177. content: "\f0fc"
  6178. }
  6179. .fa-h-square:before {
  6180. content: "\f0fd"
  6181. }
  6182. .fa-plus-square:before {
  6183. content: "\f0fe"
  6184. }
  6185. .fa-angle-double-left:before {
  6186. content: "\f100"
  6187. }
  6188. .fa-angle-double-right:before {
  6189. content: "\f101"
  6190. }
  6191. .fa-angle-double-up:before {
  6192. content: "\f102"
  6193. }
  6194. .fa-angle-double-down:before {
  6195. content: "\f103"
  6196. }
  6197. .fa-angle-left:before {
  6198. content: "\f104"
  6199. }
  6200. .fa-angle-right:before {
  6201. content: "\f105"
  6202. }
  6203. .fa-angle-up:before {
  6204. content: "\f106"
  6205. }
  6206. .fa-angle-down:before {
  6207. content: "\f107"
  6208. }
  6209. .fa-desktop:before {
  6210. content: "\f108"
  6211. }
  6212. .fa-laptop:before {
  6213. content: "\f109"
  6214. }
  6215. .fa-tablet:before {
  6216. content: "\f10a"
  6217. }
  6218. .fa-mobile-phone:before,.fa-mobile:before {
  6219. content: "\f10b"
  6220. }
  6221. .fa-circle-o:before {
  6222. content: "\f10c"
  6223. }
  6224. .fa-quote-left:before {
  6225. content: "\f10d"
  6226. }
  6227. .fa-quote-right:before {
  6228. content: "\f10e"
  6229. }
  6230. .fa-spinner:before {
  6231. content: "\f110"
  6232. }
  6233. .fa-circle:before {
  6234. content: "\f111"
  6235. }
  6236. .fa-mail-reply:before,.fa-reply:before {
  6237. content: "\f112"
  6238. }
  6239. .fa-github-alt:before {
  6240. content: "\f113"
  6241. }
  6242. .fa-folder-o:before {
  6243. content: "\f114"
  6244. }
  6245. .fa-folder-open-o:before {
  6246. content: "\f115"
  6247. }
  6248. .fa-smile-o:before {
  6249. content: "\f118"
  6250. }
  6251. .fa-frown-o:before {
  6252. content: "\f119"
  6253. }
  6254. .fa-meh-o:before {
  6255. content: "\f11a"
  6256. }
  6257. .fa-gamepad:before {
  6258. content: "\f11b"
  6259. }
  6260. .fa-keyboard-o:before {
  6261. content: "\f11c"
  6262. }
  6263. .fa-flag-o:before {
  6264. content: "\f11d"
  6265. }
  6266. .fa-flag-checkered:before {
  6267. content: "\f11e"
  6268. }
  6269. .fa-terminal:before {
  6270. content: "\f120"
  6271. }
  6272. .fa-code:before {
  6273. content: "\f121"
  6274. }
  6275. .fa-reply-all:before {
  6276. content: "\f122"
  6277. }
  6278. .fa-mail-reply-all:before {
  6279. content: "\f122"
  6280. }
  6281. .fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before {
  6282. content: "\f123"
  6283. }
  6284. .fa-location-arrow:before {
  6285. content: "\f124"
  6286. }
  6287. .fa-crop:before {
  6288. content: "\f125"
  6289. }
  6290. .fa-code-fork:before {
  6291. content: "\f126"
  6292. }
  6293. .fa-unlink:before,.fa-chain-broken:before {
  6294. content: "\f127"
  6295. }
  6296. .fa-question:before {
  6297. content: "\f128"
  6298. }
  6299. .fa-info:before {
  6300. content: "\f129"
  6301. }
  6302. .fa-exclamation:before {
  6303. content: "\f12a"
  6304. }
  6305. .fa-superscript:before {
  6306. content: "\f12b"
  6307. }
  6308. .fa-subscript:before {
  6309. content: "\f12c"
  6310. }
  6311. .fa-eraser:before {
  6312. content: "\f12d"
  6313. }
  6314. .fa-puzzle-piece:before {
  6315. content: "\f12e"
  6316. }
  6317. .fa-microphone:before {
  6318. content: "\f130"
  6319. }
  6320. .fa-microphone-slash:before {
  6321. content: "\f131"
  6322. }
  6323. .fa-shield:before {
  6324. content: "\f132"
  6325. }
  6326. .fa-calendar-o:before {
  6327. content: "\f133"
  6328. }
  6329. .fa-fire-extinguisher:before {
  6330. content: "\f134"
  6331. }
  6332. .fa-rocket:before {
  6333. content: "\f135"
  6334. }
  6335. .fa-maxcdn:before {
  6336. content: "\f136"
  6337. }
  6338. .fa-chevron-circle-left:before {
  6339. content: "\f137"
  6340. }
  6341. .fa-chevron-circle-right:before {
  6342. content: "\f138"
  6343. }
  6344. .fa-chevron-circle-up:before {
  6345. content: "\f139"
  6346. }
  6347. .fa-chevron-circle-down:before {
  6348. content: "\f13a"
  6349. }
  6350. .fa-html5:before {
  6351. content: "\f13b"
  6352. }
  6353. .fa-css3:before {
  6354. content: "\f13c"
  6355. }
  6356. .fa-anchor:before {
  6357. content: "\f13d"
  6358. }
  6359. .fa-unlock-alt:before {
  6360. content: "\f13e"
  6361. }
  6362. .fa-bullseye:before {
  6363. content: "\f140"
  6364. }
  6365. .fa-ellipsis-h:before {
  6366. content: "\f141"
  6367. }
  6368. .fa-ellipsis-v:before {
  6369. content: "\f142"
  6370. }
  6371. .fa-rss-square:before {
  6372. content: "\f143"
  6373. }
  6374. .fa-play-circle:before {
  6375. content: "\f144"
  6376. }
  6377. .fa-ticket:before {
  6378. content: "\f145"
  6379. }
  6380. .fa-minus-square:before {
  6381. content: "\f146"
  6382. }
  6383. .fa-minus-square-o:before {
  6384. content: "\f147"
  6385. }
  6386. .fa-level-up:before {
  6387. content: "\f148"
  6388. }
  6389. .fa-level-down:before {
  6390. content: "\f149"
  6391. }
  6392. .fa-check-square:before {
  6393. content: "\f14a"
  6394. }
  6395. .fa-pencil-square:before {
  6396. content: "\f14b"
  6397. }
  6398. .fa-external-link-square:before {
  6399. content: "\f14c"
  6400. }
  6401. .fa-share-square:before {
  6402. content: "\f14d"
  6403. }
  6404. .fa-compass:before {
  6405. content: "\f14e"
  6406. }
  6407. .fa-toggle-down:before,.fa-caret-square-o-down:before {
  6408. content: "\f150"
  6409. }
  6410. .fa-toggle-up:before,.fa-caret-square-o-up:before {
  6411. content: "\f151"
  6412. }
  6413. .fa-toggle-right:before,.fa-caret-square-o-right:before {
  6414. content: "\f152"
  6415. }
  6416. .fa-euro:before,.fa-eur:before {
  6417. content: "\f153"
  6418. }
  6419. .fa-gbp:before {
  6420. content: "\f154"
  6421. }
  6422. .fa-dollar:before,.fa-usd:before {
  6423. content: "\f155"
  6424. }
  6425. .fa-rupee:before,.fa-inr:before {
  6426. content: "\f156"
  6427. }
  6428. .fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before {
  6429. content: "\f157"
  6430. }
  6431. .fa-ruble:before,.fa-rouble:before,.fa-rub:before {
  6432. content: "\f158"
  6433. }
  6434. .fa-won:before,.fa-krw:before {
  6435. content: "\f159"
  6436. }
  6437. .fa-bitcoin:before,.fa-btc:before {
  6438. content: "\f15a"
  6439. }
  6440. .fa-file:before {
  6441. content: "\f15b"
  6442. }
  6443. .fa-file-text:before {
  6444. content: "\f15c"
  6445. }
  6446. .fa-sort-alpha-asc:before {
  6447. content: "\f15d"
  6448. }
  6449. .fa-sort-alpha-desc:before {
  6450. content: "\f15e"
  6451. }
  6452. .fa-sort-amount-asc:before {
  6453. content: "\f160"
  6454. }
  6455. .fa-sort-amount-desc:before {
  6456. content: "\f161"
  6457. }
  6458. .fa-sort-numeric-asc:before {
  6459. content: "\f162"
  6460. }
  6461. .fa-sort-numeric-desc:before {
  6462. content: "\f163"
  6463. }
  6464. .fa-thumbs-up:before {
  6465. content: "\f164"
  6466. }
  6467. .fa-thumbs-down:before {
  6468. content: "\f165"
  6469. }
  6470. .fa-youtube-square:before {
  6471. content: "\f166"
  6472. }
  6473. .fa-youtube:before {
  6474. content: "\f167"
  6475. }
  6476. .fa-xing:before {
  6477. content: "\f168"
  6478. }
  6479. .fa-xing-square:before {
  6480. content: "\f169"
  6481. }
  6482. .fa-youtube-play:before {
  6483. content: "\f16a"
  6484. }
  6485. .fa-dropbox:before {
  6486. content: "\f16b"
  6487. }
  6488. .fa-stack-overflow:before {
  6489. content: "\f16c"
  6490. }
  6491. .fa-instagram:before {
  6492. content: "\f16d"
  6493. }
  6494. .fa-flickr:before {
  6495. content: "\f16e"
  6496. }
  6497. .fa-adn:before {
  6498. content: "\f170"
  6499. }
  6500. .fa-bitbucket:before {
  6501. content: "\f171"
  6502. }
  6503. .fa-bitbucket-square:before {
  6504. content: "\f172"
  6505. }
  6506. .fa-tumblr:before {
  6507. content: "\f173"
  6508. }
  6509. .fa-tumblr-square:before {
  6510. content: "\f174"
  6511. }
  6512. .fa-long-arrow-down:before {
  6513. content: "\f175"
  6514. }
  6515. .fa-long-arrow-up:before {
  6516. content: "\f176"
  6517. }
  6518. .fa-long-arrow-left:before {
  6519. content: "\f177"
  6520. }
  6521. .fa-long-arrow-right:before {
  6522. content: "\f178"
  6523. }
  6524. .fa-apple:before {
  6525. content: "\f179"
  6526. }
  6527. .fa-windows:before {
  6528. content: "\f17a"
  6529. }
  6530. .fa-android:before {
  6531. content: "\f17b"
  6532. }
  6533. .fa-linux:before {
  6534. content: "\f17c"
  6535. }
  6536. .fa-dribbble:before {
  6537. content: "\f17d"
  6538. }
  6539. .fa-skype:before {
  6540. content: "\f17e"
  6541. }
  6542. .fa-foursquare:before {
  6543. content: "\f180"
  6544. }
  6545. .fa-trello:before {
  6546. content: "\f181"
  6547. }
  6548. .fa-female:before {
  6549. content: "\f182"
  6550. }
  6551. .fa-male:before {
  6552. content: "\f183"
  6553. }
  6554. .fa-gittip:before {
  6555. content: "\f184"
  6556. }
  6557. .fa-sun-o:before {
  6558. content: "\f185"
  6559. }
  6560. .fa-moon-o:before {
  6561. content: "\f186"
  6562. }
  6563. .fa-archive:before {
  6564. content: "\f187"
  6565. }
  6566. .fa-bug:before {
  6567. content: "\f188"
  6568. }
  6569. .fa-vk:before {
  6570. content: "\f189"
  6571. }
  6572. .fa-weibo:before {
  6573. content: "\f18a"
  6574. }
  6575. .fa-renren:before {
  6576. content: "\f18b"
  6577. }
  6578. .fa-pagelines:before {
  6579. content: "\f18c"
  6580. }
  6581. .fa-stack-exchange:before {
  6582. content: "\f18d"
  6583. }
  6584. .fa-arrow-circle-o-right:before {
  6585. content: "\f18e"
  6586. }
  6587. .fa-arrow-circle-o-left:before {
  6588. content: "\f190"
  6589. }
  6590. .fa-toggle-left:before,.fa-caret-square-o-left:before {
  6591. content: "\f191"
  6592. }
  6593. .fa-dot-circle-o:before {
  6594. content: "\f192"
  6595. }
  6596. .fa-wheelchair:before {
  6597. content: "\f193"
  6598. }
  6599. .fa-vimeo-square:before {
  6600. content: "\f194"
  6601. }
  6602. .fa-turkish-lira:before,.fa-try:before {
  6603. content: "\f195"
  6604. }
  6605. .fa-plus-square-o:before {
  6606. content: "\f196"
  6607. }
  6608. .radio-custom,.checkbox-custom {
  6609. margin-left: -20px
  6610. }
  6611. .radio-custom input[type=radio],.checkbox-custom input[type=checkbox] {
  6612. position: absolute;
  6613. left: -9999em;
  6614. }
  6615. .radio-custom>i:before,.checkbox-custom>i:before {
  6616. font-size: 1.333em;
  6617. vertical-align: -10%;
  6618. margin-left: 0;
  6619. margin-right: 4px;
  6620. color: #ddd
  6621. }
  6622. .radio-custom>i.checked:before,.checkbox-custom>i.checked:before {
  6623. color: #13c4a5
  6624. }
  6625. .radio-custom>i.disabled:before,.checkbox-custom>i.disabled:before {
  6626. color: #eee
  6627. }
  6628. .radio-custom>i.checked:before {
  6629. content: '\f111';
  6630. }
  6631. .checkbox-custom>i.checked:before {
  6632. content: '\f046';
  6633. }
  6634. .spinner .input-group-btn {
  6635. display: table-cell;
  6636. min-width: 25px
  6637. }
  6638. .spinner .input-group-btn .btn {
  6639. width: 25px;
  6640. padding: 0;
  6641. font-size: 12px;
  6642. margin-left: -1px;
  6643. line-height: 1;
  6644. height: 19px;
  6645. overflow: hidden;
  6646. border-radius: 0 4px 0 0 !important;
  6647. }
  6648. .spinner .input-group-btn .btn+.btn {
  6649. height: 20px;
  6650. border-radius: 0 0 4px 0 !important;
  6651. }
  6652. .spinner .input-sm+.input-group-btn .btn {
  6653. font-size: 10px;
  6654. height: 15px;
  6655. }
  6656. .spinner .input-sm+.input-group-btn .btn+.btn {
  6657. height: 16px;
  6658. }
  6659. .select {
  6660. position: relative;
  6661. display: inline-block;
  6662. }
  6663. .pillbox {
  6664. border: 1px solid #e0e4e8;
  6665. padding: 10px;
  6666. border-radius: 4px
  6667. }
  6668. .pillbox ul {
  6669. margin: 0;
  6670. list-style: none;
  6671. padding: 0;
  6672. }
  6673. .pillbox li {
  6674. display: inline-block;
  6675. font-size: 12px;
  6676. color: #fff;
  6677. ;padding: 6px 8px;
  6678. cursor: pointer;
  6679. margin: 2px;
  6680. float: left;
  6681. }
  6682. .pillbox li:after {
  6683. content: " x";
  6684. font-size: 11px;
  6685. font-weight: normal;
  6686. opacity: 0.6;
  6687. filter: alpha(opacity=60);
  6688. }
  6689. .pillbox li:hover:after {
  6690. opacity: 0.9;
  6691. filter: alpha(opacity=90);
  6692. }
  6693. .pillbox input {
  6694. border: none;
  6695. outline: 0;
  6696. min-height: 24px;
  6697. width: auto;
  6698. display: inline-block;
  6699. box-shadow: none;
  6700. background: transparent;
  6701. }
  6702. .datagrid tfoot th {
  6703. font-weight: normal;
  6704. }
  6705. .datagrid tfoot .grid-pager .combobox {
  6706. max-width: 80px;
  6707. position: relative;
  6708. top: 10px
  6709. }
  6710. .datagrid tfoot .grid-pager .combobox input {
  6711. width: 40px
  6712. }
  6713. .datagrid tfoot .dropdown-menu {
  6714. min-width: 60px;
  6715. text-align: left;
  6716. }
  6717. .datagrid tbody {
  6718. height: 256px;
  6719. overflow: hidden;
  6720. overflow-y: auto
  6721. }
  6722. #selectTextSize {
  6723. position: absolute;
  6724. top: 0;
  6725. display: none;
  6726. visibility: hidden;
  6727. }
  6728. .wizard {
  6729. font-size: 14px;
  6730. padding: 0;
  6731. background-color: #f7f8f9;
  6732. border-bottom: 1px solid #e0e4e8;
  6733. }
  6734. .wizard .badge {
  6735. margin-right: 4px;
  6736. }
  6737. .wizard .badge-info {
  6738. background-color: #5191d1;
  6739. }
  6740. .wizard .badge-success {
  6741. background-color: #3fcf7f;
  6742. }
  6743. .wizard ul li.complete,.wizard ul li.complete:hover {
  6744. cursor: pointer;
  6745. background: #f1f5f9;
  6746. }
  6747. .wizard ul li.complete:after {
  6748. border-left-color: #f1f5f9;
  6749. }
  6750. .wizard ul {
  6751. padding: 0;
  6752. margin: 0;
  6753. list-style: none outside none;
  6754. }
  6755. .wizard ul li {
  6756. position: relative;
  6757. float: left;
  6758. padding: 0 15px 0 25px;
  6759. margin: 0;
  6760. color: #999999;
  6761. cursor: default;
  6762. height: 40px;
  6763. line-height: 40px;
  6764. }
  6765. .wizard.wizard-vertical {
  6766. float: left;
  6767. border-bottom: none
  6768. }
  6769. .wizard.wizard-vertical+.step-content {
  6770. zoom: 1;
  6771. overflow: hidden;
  6772. padding-left: 40px
  6773. }
  6774. .wizard.wizard-vertical ul li {
  6775. position: relative;
  6776. float: none;
  6777. border-bottom: 1px solid #e0e4e8;
  6778. padding-left: 15px;
  6779. }
  6780. .wizard.wizard-vertical ul li:last-child {
  6781. }
  6782. .wizard ul li:first-child {
  6783. padding-left: 15px;
  6784. border-radius: 4px 0 0 0;
  6785. }
  6786. .wizard .actions {
  6787. float: right;
  6788. margin: 8px 10px 0 0;
  6789. }
  6790. .wizard ul li:before,.wizard ul li:after {
  6791. content: "";
  6792. position: absolute;
  6793. top: -1px;
  6794. bottom: -1px;
  6795. right: -10px;
  6796. border: 20px solid transparent;
  6797. border-right: 0;
  6798. border-left: 10px solid #e0e4e8;
  6799. z-index: 1;
  6800. }
  6801. .wizard ul li:after {
  6802. right: -9px;
  6803. border-left-color: #f7f8f9;
  6804. z-index: 2;
  6805. }
  6806. .wizard ul li.active {
  6807. color: #3a87ad;
  6808. background: #fff;
  6809. }
  6810. .wizard ul li.active:after {
  6811. border-left-color: #fff;
  6812. }
  6813. .step-content {
  6814. padding: 15px;
  6815. }
  6816. .step-content .step-pane {
  6817. display: none;
  6818. }
  6819. .step-content .step-pane.active {
  6820. display: inherit;
  6821. }
  6822. .slider {
  6823. display: inline-block;
  6824. vertical-align: middle;
  6825. position: relative;
  6826. }
  6827. .slider.slider-horizontal {
  6828. width: 210px;
  6829. height: 20px;
  6830. }
  6831. .slider.slider-horizontal .slider-track {
  6832. height: 10px;
  6833. width: 100%;
  6834. margin-top: -5px;
  6835. top: 50%;
  6836. left: 0;
  6837. }
  6838. .slider.slider-horizontal .slider-selection {
  6839. height: 100%;
  6840. top: 0;
  6841. bottom: 0;
  6842. }
  6843. .slider.slider-horizontal .slider-handle {
  6844. margin-left: -10px;
  6845. margin-top: -5px;
  6846. }
  6847. .slider.slider-horizontal .slider-handle.triangle {
  6848. border-width: 0 10px 10px 10px;
  6849. width: 0;
  6850. height: 0;
  6851. border-bottom-color: #0480be;
  6852. margin-top: 0;
  6853. }
  6854. .slider.slider-vertical {
  6855. height: 210px;
  6856. width: 20px;
  6857. }
  6858. .slider.slider-vertical .slider-track {
  6859. width: 10px;
  6860. height: 100%;
  6861. margin-left: -5px;
  6862. left: 50%;
  6863. top: 0;
  6864. }
  6865. .slider.slider-vertical .slider-selection {
  6866. width: 100%;
  6867. left: 0;
  6868. top: 0;
  6869. bottom: 0;
  6870. }
  6871. .slider.slider-vertical .slider-handle {
  6872. margin-left: -5px;
  6873. margin-top: -10px;
  6874. }
  6875. .slider.slider-vertical .slider-handle.triangle {
  6876. border-width: 10px 0 10px 10px;
  6877. width: 1px;
  6878. height: 1px;
  6879. border-left-color: #0480be;
  6880. margin-left: 0;
  6881. }
  6882. .slider input {
  6883. display: none;
  6884. }
  6885. .slider .tooltip-inner {
  6886. white-space: nowrap;
  6887. }
  6888. .slider-track {
  6889. position: absolute;
  6890. cursor: pointer;
  6891. background-color: #e0e4e8;
  6892. -webkit-border-radius: 4px;
  6893. -moz-border-radius: 4px;
  6894. border-radius: 4px;
  6895. }
  6896. .slider-selection {
  6897. position: absolute;
  6898. background-color: #f3f4f5;
  6899. -webkit-box-sizing: border-box;
  6900. -moz-box-sizing: border-box;
  6901. box-sizing: border-box;
  6902. -webkit-border-radius: 4px;
  6903. -moz-border-radius: 4px;
  6904. border-radius: 4px;
  6905. }
  6906. .slider-handle {
  6907. position: absolute;
  6908. width: 20px;
  6909. height: 20px;
  6910. background-color: #13c4a5;
  6911. opacity: 0.8;
  6912. border: 0px solid transparent;
  6913. }
  6914. .slider-handle.round {
  6915. -webkit-border-radius: 20px;
  6916. -moz-border-radius: 20px;
  6917. border-radius: 20px;
  6918. }
  6919. .slider-handle.triangle {
  6920. background: transparent none;
  6921. }
  6922. .datepicker {
  6923. top: 0;
  6924. left: 0;
  6925. padding: 4px;
  6926. -webkit-border-radius: 4px;
  6927. -moz-border-radius: 4px;
  6928. border-radius: 4px;
  6929. z-index: 1010;
  6930. }
  6931. .datepicker:before {
  6932. content: '';
  6933. display: inline-block;
  6934. border-left: 7px solid transparent;
  6935. border-right: 7px solid transparent;
  6936. border-bottom: 7px solid #ccc;
  6937. border-bottom-color: rgba(0,0,0,0.2);
  6938. position: absolute;
  6939. top: -7px;
  6940. left: 6px;
  6941. }
  6942. .datepicker:after {
  6943. content: '';
  6944. display: inline-block;
  6945. border-left: 6px solid transparent;
  6946. border-right: 6px solid transparent;
  6947. border-bottom: 6px solid #ffffff;
  6948. position: absolute;
  6949. top: -6px;
  6950. left: 7px;
  6951. }
  6952. .datepicker>div {
  6953. display: none;
  6954. }
  6955. .datepicker table {
  6956. width: 100%;
  6957. margin: 0;
  6958. }
  6959. .datepicker td,.datepicker th {
  6960. text-align: center;
  6961. width: 20px;
  6962. height: 20px;
  6963. -webkit-border-radius: 4px;
  6964. -moz-border-radius: 4px;
  6965. border-radius: 4px;
  6966. }
  6967. .datepicker td.day:hover {
  6968. background: #eeeeee;
  6969. cursor: pointer;
  6970. }
  6971. .datepicker td.day.disabled {
  6972. color: #eeeeee;
  6973. }
  6974. .datepicker td.old,.datepicker td.new {
  6975. color: #ccc;
  6976. }
  6977. .datepicker td.active,.datepicker td.active:hover {
  6978. color: #ffffff;
  6979. background-color: #13c4a5;
  6980. color: #fff;
  6981. }
  6982. .datepicker td.active:hover,.datepicker td.active:hover:hover,.datepicker td.active:focus,.datepicker td.active:hover:focus,.datepicker td.active:active,.datepicker td.active:hover:active,.datepicker td.active.active,.datepicker td.active:hover.active,.datepicker td.active.disabled,.datepicker td.active:hover.disabled,.datepicker td.active[disabled],.datepicker td.active:hover[disabled] {
  6983. color: #ffffff;
  6984. background-color: #13c4a5;
  6985. }
  6986. .datepicker td span {
  6987. display: block;
  6988. width: 47px;
  6989. height: 43px;
  6990. line-height: 43px;
  6991. float: left;
  6992. margin: 2px;
  6993. cursor: pointer;
  6994. -webkit-border-radius: 4px;
  6995. -moz-border-radius: 4px;
  6996. border-radius: 4px;
  6997. }
  6998. .datepicker td span:hover {
  6999. background: #eeeeee;
  7000. }
  7001. .datepicker td span.active {
  7002. color: #ffffff;
  7003. background-color: #13c4a5;
  7004. }
  7005. .datepicker td span.active:hover,.datepicker td span.active:focus,.datepicker td span.active:active,.datepicker td span.active.active,.datepicker td span.active.disabled,.datepicker td span.active[disabled] {
  7006. color: #ffffff;
  7007. background-color: #13c4a5;
  7008. }
  7009. .datepicker td span.old {
  7010. color: #999999;
  7011. }
  7012. .datepicker th.switch {
  7013. width: 145px;
  7014. }
  7015. .datepicker th.next,.datepicker th.prev {
  7016. font-size: 21px;
  7017. }
  7018. .datepicker thead tr:first-child th {
  7019. cursor: pointer;
  7020. }
  7021. .datepicker thead tr:first-child th:hover {
  7022. background: #eeeeee;
  7023. }
  7024. .input-append.date .add-on i,.input-prepend.date .add-on i {
  7025. display: block;
  7026. cursor: pointer;
  7027. width: 16px;
  7028. height: 16px;
  7029. }
  7030. .fc {
  7031. direction: ltr;
  7032. text-align: left;
  7033. }
  7034. .fc table {
  7035. border-collapse: collapse;
  7036. border-spacing: 0;
  7037. }
  7038. html .fc,.fc table {
  7039. font-size: 1em;
  7040. }
  7041. .fc td,.fc th {
  7042. padding: 0;
  7043. vertical-align: top;
  7044. }
  7045. .fc-header {
  7046. background: #f7f8f9
  7047. }
  7048. .fc-header td {
  7049. padding: 12px 10px 0 10px;
  7050. white-space: nowrap;
  7051. }
  7052. .fc-header-left {
  7053. width: 25%;
  7054. text-align: left;
  7055. }
  7056. .fc-header-center {
  7057. text-align: center;
  7058. }
  7059. .fc-header-right {
  7060. width: 25%;
  7061. text-align: right;
  7062. }
  7063. .fc-header-title {
  7064. display: inline-block;
  7065. vertical-align: top;
  7066. }
  7067. .fc-header-title h2 {
  7068. font-size: 16px;
  7069. margin-top: 6px;
  7070. margin-bottom: 0;
  7071. white-space: nowrap;
  7072. }
  7073. .fc .fc-header-space {
  7074. padding-left: 10px;
  7075. }
  7076. .fc-header .fc-button {
  7077. margin-bottom: 1em;
  7078. vertical-align: top;
  7079. }
  7080. .fc-header .fc-button {
  7081. margin-right: -1px;
  7082. }
  7083. .fc-header .fc-corner-right,.fc-header .ui-corner-right {
  7084. margin-right: 0;
  7085. }
  7086. .fc-header .fc-state-hover,.fc-header .ui-state-hover {
  7087. z-index: 2;
  7088. }
  7089. .fc-header .fc-state-down {
  7090. z-index: 3;
  7091. }
  7092. .fc-header .fc-state-active,.fc-header .ui-state-active {
  7093. z-index: 4;
  7094. }
  7095. .fc-content {
  7096. clear: both;
  7097. }
  7098. .fc-view {
  7099. width: 100%;
  7100. overflow: hidden;
  7101. }
  7102. .fc-widget-header,.fc-widget-content {
  7103. border: 1px solid #ddd;
  7104. }
  7105. .fc-state-highlight {
  7106. background: #fcf8e3;
  7107. }
  7108. .fc-cell-overlay {
  7109. background: #bce8f1;
  7110. opacity: .3;
  7111. filter: alpha(opacity=30);
  7112. }
  7113. .fc-button {
  7114. position: relative;
  7115. display: inline-block;
  7116. padding: 0 .6em;
  7117. overflow: hidden;
  7118. height: 1.9em;
  7119. line-height: 1.8em;
  7120. white-space: nowrap;
  7121. cursor: pointer;
  7122. }
  7123. .fc-state-default {
  7124. border: 1px solid;
  7125. }
  7126. .fc-state-default.fc-corner-left {
  7127. border-top-left-radius: 4px;
  7128. border-bottom-left-radius: 4px;
  7129. }
  7130. .fc-state-default.fc-corner-right {
  7131. border-top-right-radius: 4px;
  7132. border-bottom-right-radius: 4px;
  7133. }
  7134. .fc-text-arrow {
  7135. margin: 0 .1em;
  7136. font-size: 2em;
  7137. line-height: 0.85;
  7138. font-family: "Courier New",Courier,monospace;
  7139. vertical-align: baseline;
  7140. }
  7141. .fc-button-prev .fc-text-arrow,.fc-button-next .fc-text-arrow {
  7142. font-weight: bold;
  7143. }
  7144. .fc-button .fc-icon-wrap {
  7145. position: relative;
  7146. float: left;
  7147. top: 50%;
  7148. }
  7149. .fc-button .ui-icon {
  7150. position: relative;
  7151. float: left;
  7152. margin-top: -50%;
  7153. *margin-top: 0;
  7154. *top: -50%;
  7155. }
  7156. .fc-state-default {
  7157. background-color: #fff;
  7158. border-color: #c3c6c9;
  7159. color: #657483;
  7160. box-shadow: inset 0 -2px 0 rgba(0,0,0,0.05);
  7161. }
  7162. .fc-state-hover,.fc-state-down,.fc-state-active,.fc-state-disabled {
  7163. color: #333333;
  7164. background-color: #f7f8f9;
  7165. }
  7166. .fc-state-hover {
  7167. color: #333333;
  7168. text-decoration: none;
  7169. background-position: 0 -15px;
  7170. -webkit-transition: background-position 0.1s linear;
  7171. -moz-transition: background-position 0.1s linear;
  7172. -o-transition: background-position 0.1s linear;
  7173. transition: background-position 0.1s linear;
  7174. }
  7175. .fc-state-down,.fc-state-active {
  7176. background-color: #f7f8f9;
  7177. background-image: none;
  7178. outline: 0;
  7179. box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
  7180. }
  7181. .fc-state-disabled {
  7182. cursor: default;
  7183. background-image: none;
  7184. opacity: 0.65;
  7185. filter: alpha(opacity=65);
  7186. box-shadow: none;
  7187. }
  7188. .fc-event {
  7189. background-color: #5191d1;
  7190. color: #fff;
  7191. font-size: .85em;
  7192. cursor: default;
  7193. padding: 4px 6px;
  7194. -webkit-box-sizing: content-box;
  7195. -moz-box-sizing: content-box;
  7196. box-sizing: content-box;
  7197. }
  7198. a.fc-event {
  7199. text-decoration: none;
  7200. }
  7201. a.fc-event,.fc-event-draggable {
  7202. cursor: pointer;
  7203. }
  7204. .fc-rtl .fc-event {
  7205. text-align: right;
  7206. }
  7207. .fc-event-inner {
  7208. width: 100%;
  7209. height: 100%;
  7210. overflow: hidden;
  7211. }
  7212. .fc-event-time,.fc-event-title {
  7213. padding: 0 1px;
  7214. }
  7215. .fc .ui-resizable-handle {
  7216. display: block;
  7217. position: absolute;
  7218. z-index: 99999;
  7219. overflow: hidden;
  7220. font-size: 300%;
  7221. line-height: 50%;
  7222. }
  7223. .fc-event-hori {
  7224. border-width: 1px 0;
  7225. margin-bottom: 1px;
  7226. }
  7227. .fc-ltr .fc-event-hori.fc-event-start,.fc-rtl .fc-event-hori.fc-event-end {
  7228. border-left-width: 1px;
  7229. border-top-left-radius: 3px;
  7230. border-bottom-left-radius: 3px;
  7231. }
  7232. .fc-ltr .fc-event-hori.fc-event-end,.fc-rtl .fc-event-hori.fc-event-start {
  7233. border-right-width: 1px;
  7234. border-top-right-radius: 3px;
  7235. border-bottom-right-radius: 3px;
  7236. }
  7237. .fc-event-hori .ui-resizable-e {
  7238. top: 0 !important;
  7239. right: -3px !important;
  7240. width: 7px !important;
  7241. height: 100% !important;
  7242. cursor: e-resize;
  7243. }
  7244. .fc-event-hori .ui-resizable-w {
  7245. top: 0 !important;
  7246. left: -3px !important;
  7247. width: 7px !important;
  7248. height: 100% !important;
  7249. cursor: w-resize;
  7250. }
  7251. .fc-event-hori .ui-resizable-handle {
  7252. _padding-bottom: 14px;
  7253. }
  7254. table.fc-border-separate {
  7255. border-collapse: separate;
  7256. }
  7257. .fc-border-separate th,.fc-border-separate td {
  7258. border-width: 1px 0 0 1px;
  7259. }
  7260. .fc-border-separate th.fc-last,.fc-border-separate td.fc-last {
  7261. border-right-width: 1px;
  7262. }
  7263. .fc-border-separate tr.fc-last th,.fc-border-separate tr.fc-last td {
  7264. border-bottom-width: 1px;
  7265. }
  7266. .fc-border-separate tbody tr.fc-first td,.fc-border-separate tbody tr.fc-first th {
  7267. border-top-width: 0;
  7268. }
  7269. .fc-grid th {
  7270. text-align: center;
  7271. }
  7272. .fc .fc-week-number {
  7273. width: 22px;
  7274. text-align: center;
  7275. }
  7276. .fc .fc-week-number div {
  7277. padding: 0 2px;
  7278. }
  7279. .fc-grid .fc-day-number {
  7280. float: right;
  7281. padding: 0 2px;
  7282. }
  7283. .fc-grid .fc-other-month .fc-day-number {
  7284. opacity: 0.3;
  7285. filter: alpha(opacity=30);
  7286. }
  7287. .fc-grid .fc-day-content {
  7288. clear: both;
  7289. padding: 2px 2px 1px;
  7290. }
  7291. .fc-grid .fc-event-time {
  7292. font-weight: bold;
  7293. }
  7294. .fc-rtl .fc-grid .fc-day-number {
  7295. float: left;
  7296. }
  7297. .fc-rtl .fc-grid .fc-event-time {
  7298. float: right;
  7299. }
  7300. .fc-agenda table {
  7301. border-collapse: separate;
  7302. }
  7303. .fc-agenda-days th {
  7304. text-align: center;
  7305. }
  7306. .fc-agenda .fc-agenda-axis {
  7307. width: 50px;
  7308. padding: 0 4px;
  7309. vertical-align: middle;
  7310. text-align: right;
  7311. white-space: nowrap;
  7312. font-weight: normal;
  7313. }
  7314. .fc-agenda .fc-week-number {
  7315. font-weight: bold;
  7316. }
  7317. .fc-agenda .fc-day-content {
  7318. padding: 2px 2px 1px;
  7319. }
  7320. .fc-agenda-days .fc-agenda-axis {
  7321. border-right-width: 1px;
  7322. }
  7323. .fc-agenda-days .fc-col0 {
  7324. border-left-width: 0;
  7325. }
  7326. .fc-agenda-allday th {
  7327. border-width: 0 1px;
  7328. }
  7329. .fc-agenda-allday .fc-day-content {
  7330. min-height: 34px;
  7331. _height: 34px;
  7332. }
  7333. .fc-agenda-divider-inner {
  7334. height: 2px;
  7335. overflow: hidden;
  7336. }
  7337. .fc-widget-header .fc-agenda-divider-inner {
  7338. background: #eee;
  7339. }
  7340. .fc-agenda-slots th {
  7341. border-width: 1px 1px 0;
  7342. }
  7343. .fc-agenda-slots td {
  7344. border-width: 1px 0 0;
  7345. background: none;
  7346. }
  7347. .fc-agenda-slots td div {
  7348. height: 20px;
  7349. }
  7350. .fc-agenda-slots tr.fc-slot0 th,.fc-agenda-slots tr.fc-slot0 td {
  7351. border-top-width: 0;
  7352. }
  7353. .fc-agenda-slots tr.fc-minor th,.fc-agenda-slots tr.fc-minor td {
  7354. border-top-style: dotted;
  7355. }
  7356. .fc-agenda-slots tr.fc-minor th.ui-widget-header {
  7357. *border-top-style: solid;
  7358. }
  7359. .fc-event-vert {
  7360. border-width: 0 1px;
  7361. }
  7362. .fc-event-vert.fc-event-start {
  7363. border-top-width: 1px;
  7364. border-top-left-radius: 3px;
  7365. border-top-right-radius: 3px;
  7366. }
  7367. .fc-event-vert.fc-event-end {
  7368. border-bottom-width: 1px;
  7369. border-bottom-left-radius: 3px;
  7370. border-bottom-right-radius: 3px;
  7371. }
  7372. .fc-event-vert .fc-event-time {
  7373. white-space: nowrap;
  7374. font-size: 10px;
  7375. }
  7376. .fc-event-vert .fc-event-inner {
  7377. position: relative;
  7378. z-index: 2;
  7379. }
  7380. .fc-event-vert .fc-event-bg {
  7381. position: absolute;
  7382. z-index: 1;
  7383. top: 0;
  7384. left: 0;
  7385. width: 100%;
  7386. height: 100%;
  7387. background: #fff;
  7388. opacity: .25;
  7389. filter: alpha(opacity=25);
  7390. }
  7391. .fc .ui-draggable-dragging .fc-event-bg,.fc-select-helper .fc-event-bg {
  7392. display: none\9;
  7393. }
  7394. .fc-event-vert .ui-resizable-s {
  7395. bottom: 0 !important;
  7396. width: 100% !important;
  7397. height: 8px !important;
  7398. overflow: hidden !important;
  7399. line-height: 8px !important;
  7400. font-size: 11px !important;
  7401. font-family: monospace;
  7402. text-align: center;
  7403. cursor: s-resize;
  7404. }
  7405. .fc-agenda .ui-resizable-resizing {
  7406. _overflow: hidden;
  7407. }
  7408. .parsley-error-list {
  7409. margin: 0;
  7410. padding: 0;
  7411. list-style: none;
  7412. margin-top: 6px;
  7413. font-size: 12px
  7414. }
  7415. .parsley-error {
  7416. border-color: #ff5f5f !important
  7417. }
  7418. .dataTables_wrapper {
  7419. position: relative;
  7420. }
  7421. .dataTables_processing {
  7422. position: absolute;
  7423. top: 50%;
  7424. left: 50%;
  7425. width: 250px;
  7426. margin-left: -125px;
  7427. margin-top: -15px;
  7428. padding: 10px;
  7429. border: 1px solid #ddd;
  7430. text-align: center;
  7431. color: #999;
  7432. font-size: 14px;
  7433. background-color: white;
  7434. z-index: 1;
  7435. }
  7436. .dataTables_wrapper .table {
  7437. border: 1px solid #e0e4e8;
  7438. border-width: 1px 0;
  7439. }
  7440. .dataTables_wrapper label {
  7441. font-weight: normal;
  7442. font-size: 12px;
  7443. display: block;
  7444. margin-bottom: 0
  7445. }
  7446. .dataTables_wrapper select,.dataTables_wrapper input {
  7447. font-size: 12px;
  7448. height: 30px;
  7449. padding: 5px 10px;
  7450. border-radius: 3px;
  7451. display: inline;
  7452. border: 1px solid #ccc;
  7453. outline: 0
  7454. }
  7455. .dataTables_wrapper select {
  7456. width: 75px;
  7457. }
  7458. .dataTables_wrapper input {
  7459. width: 200px;
  7460. }
  7461. .dataTables_filter,.dataTables_paginate {
  7462. float: right;
  7463. }
  7464. .dataTables_length,.dataTables_filter {
  7465. padding: 15px;
  7466. }
  7467. .dataTables_info,.dataTables_paginate {
  7468. padding: 15px;
  7469. }
  7470. .dataTables_paginate .paginate_button,.dataTables_paginate .paginate_active {
  7471. cursor: pointer;
  7472. outline: 0;
  7473. border: 1px solid #dddddd;
  7474. border-right-width: 0;
  7475. background: #fff;
  7476. padding: 6px 10px
  7477. }
  7478. .dataTables_paginate.pagination-sm .paginate_button,.dataTables_paginate.pagination-sm .paginate_active {
  7479. padding: 3px 8px;
  7480. }
  7481. .dataTables_wrapper .paginate_active {
  7482. background-color: #f5f5f5
  7483. }
  7484. .dataTables_wrapper .paginate_button_disabled {
  7485. color: #ccc;
  7486. background-color: #fafafa
  7487. }
  7488. .paginate_button.first {
  7489. border-radius: 3px 0 0 3px;
  7490. }
  7491. .paginate_button.last {
  7492. border-radius: 0 3px 3px 0;
  7493. border-right-width: 1px;
  7494. }
  7495. .dataTables_wrapper th {
  7496. cursor: pointer;
  7497. outline: 0
  7498. }
  7499. .dataTables_wrapper th:after {
  7500. font-family: FontAwesome;
  7501. color: #666;
  7502. position: relative;
  7503. float: right;
  7504. font-weight: normal;
  7505. }
  7506. .dataTables_wrapper .sorting:after {
  7507. content: "\f0dc";
  7508. color: #ccc;
  7509. }
  7510. .dataTables_wrapper .sorting_asc:after {
  7511. content: "\f0de";
  7512. }
  7513. .dataTables_wrapper .sorting_desc:after {
  7514. content: "\f0dd";
  7515. }
  7516. .timeline {
  7517. display: table;
  7518. width: 100%;
  7519. border-spacing: 0;
  7520. table-layout: fixed;
  7521. position: relative;
  7522. border-collapse: collapse;
  7523. }
  7524. .timeline:before {
  7525. content: "";
  7526. width: 6px;
  7527. margin-left: -4px;
  7528. position: absolute;
  7529. left: 50%;
  7530. top: 0;
  7531. bottom: 30px;
  7532. background-color: #ddd;
  7533. z-index: 0;
  7534. }
  7535. .timeline-item {
  7536. display: table-row;
  7537. }
  7538. .timeline-caption {
  7539. display: table-cell;
  7540. vertical-align: top;
  7541. width: 50%;
  7542. }
  7543. .timeline-item:before,.timeline-item.alt:after {
  7544. content: "";
  7545. display: block;
  7546. width: 50%;
  7547. }
  7548. .timeline-item.alt:before {
  7549. display: none
  7550. }
  7551. .timeline-item .panel {
  7552. padding: 15px
  7553. }
  7554. .timeline-date {
  7555. position: absolute;
  7556. width: 150px;
  7557. left: -200px;
  7558. top: 3px;
  7559. text-align: right;
  7560. }
  7561. .timeline-icon {
  7562. position: absolute;
  7563. left: -41px;
  7564. top: -2px;
  7565. }
  7566. .time-icon {
  7567. width: 30px;
  7568. height: 30px;
  7569. display: inline-block !important;
  7570. z-index: 10;
  7571. border: 2px solid #fff;
  7572. line-height: 26px;
  7573. border-radius: 20px;
  7574. text-align: center;
  7575. background-color: #898989
  7576. }
  7577. .time-icon:before {
  7578. font-size: 16px;
  7579. color: #fff
  7580. }
  7581. .timeline-caption .panel {
  7582. display: inline-block;
  7583. position: relative;
  7584. margin-left: 25px;
  7585. position: relative;
  7586. text-align: left;
  7587. }
  7588. .timeline-item.alt {
  7589. text-align: right;
  7590. }
  7591. .timeline-item.alt .panel {
  7592. margin-right: 25px;
  7593. margin-left: 0
  7594. }
  7595. .timeline-item.alt .timeline-date {
  7596. left: auto;
  7597. right: -200px;
  7598. text-align: left;
  7599. }
  7600. .timeline-item.alt .timeline-icon {
  7601. left: auto;
  7602. right: -41px;
  7603. }
  7604. .timeline-caption h5 {
  7605. margin: 0
  7606. }
  7607. .timeline-caption h5 span {
  7608. display: block;
  7609. color: #999;
  7610. margin-bottom: 4px;
  7611. font-size: 12px
  7612. }
  7613. .active .timeline-caption h5 span {
  7614. color: #fff
  7615. }
  7616. .timeline-item.active {
  7617. display: table-caption;
  7618. text-align: center;
  7619. }
  7620. .timeline-item.active:before {
  7621. width: 1%
  7622. }
  7623. .active .timeline-caption {
  7624. display: inline-block;
  7625. width: auto;
  7626. }
  7627. .timeline-item.active .panel {
  7628. margin-left: 0
  7629. }
  7630. .active .timeline-date,.active .timeline-icon {
  7631. position: static;
  7632. margin-bottom: 10px;
  7633. display: inline-block;
  7634. width: auto;
  7635. }
  7636. .timeline-caption p {
  7637. font-size: 12px;
  7638. margin-bottom: 0;
  7639. margin-top: 10px;
  7640. }
  7641. .timeline-footer {
  7642. display: table-row;
  7643. }
  7644. .timeline-footer a {
  7645. display: table-cell;
  7646. text-align: right;
  7647. }
  7648. .timeline-footer .time-icon {
  7649. margin-right: -15px;
  7650. z-index: 5
  7651. }
  7652. .select2-container .select2-choice {
  7653. height: 30px;
  7654. line-height: 28px;
  7655. border: 1px solid #ccc;
  7656. border-radius: 2px
  7657. }
  7658. .select2-container .select2-choice div {
  7659. background-color: transparent;
  7660. background-image: none;
  7661. border-left: none;
  7662. }
  7663. .select2-container .select2-choice div b {
  7664. background: none;
  7665. position: relative;
  7666. }
  7667. .select2-container .select2-choice div b:after {
  7668. content: "\f0d7";
  7669. font-family: FontAwesome;
  7670. color: #aaa;
  7671. }
  7672. .select2-dropdown-open .select2-choice div b:after {
  7673. content: "\f0d8"
  7674. }
  7675. .select2-search input {
  7676. background: #fff;
  7677. }
  7678. .select2-search {
  7679. position: relative;
  7680. }
  7681. .select2-search:after {
  7682. position: absolute;
  7683. content: "\f002";
  7684. font-family: FontAwesome;
  7685. color: #aaa;
  7686. right: 5px;
  7687. top: 4px;
  7688. width: 18px
  7689. }
  7690. .select2-drop.select2-drop-above .select2-search:after {
  7691. top: 8px;
  7692. }
  7693. .select2-container .select2-choice abbr {
  7694. background: transparent;
  7695. }
  7696. .select2-container .select2-choice abbr:after {
  7697. content: "\f00d";
  7698. font-family: FontAwesome;
  7699. position: absolute;
  7700. top: -7px;
  7701. font-size: 11px;
  7702. color: #aaa
  7703. }
  7704. .select2-results .select2-highlighted {
  7705. background-color: #23d4b5
  7706. }
  7707. .select2-container-multi .select2-choices {
  7708. border: 1px solid #ccc;
  7709. border-radius: 3px;
  7710. padding-top: 2px
  7711. }
  7712. .select2-container-multi .select2-choices .select2-search-choice {
  7713. border: 1px solid #ccc
  7714. }
  7715. .select2-search-choice-close {
  7716. background: transparent;
  7717. }
  7718. .select2-search-choice-close:after {
  7719. content: "\f00d";
  7720. font-family: FontAwesome;
  7721. font-size: 11px;
  7722. color: #aaa;
  7723. position: absolute;
  7724. left: 2px;
  7725. top: -1px
  7726. }
  7727. .gallery img {
  7728. border-radius: 3px 3px 0 0;
  7729. }
  7730. .gallery .item {
  7731. border-radius: 3px;
  7732. background-color: #fff;
  7733. }
  7734. .gallery .desc {
  7735. padding: 20px;
  7736. }
  7737. .gallery .desc h4 {
  7738. margin-top: 0
  7739. }
  7740. .gallery .item-media {
  7741. position: relative;
  7742. display: block;
  7743. overflow: hidden;
  7744. }
  7745. .gallery .item-media:before {
  7746. content: "";
  7747. background-color: rgba(19,196,125,0.8);
  7748. position: absolute;
  7749. left: -100%;
  7750. width: 100%;
  7751. bottom: 0;
  7752. top: 0;
  7753. vertical-align: middle;
  7754. text-align: center;
  7755. border-radius: 3px 3px 0 0;
  7756. z-index: 2;
  7757. }
  7758. .gallery .item-media:after {
  7759. content: "\f067";
  7760. font-family: FontAwesome;
  7761. font-size: 28px;
  7762. color: #fff;
  7763. position: absolute;
  7764. right: -50%;
  7765. top: 50%;
  7766. margin-right: -14px;
  7767. margin-top: -14px;
  7768. z-index: 3;
  7769. }
  7770. .gallery .item-media:hover:before {
  7771. left: 0
  7772. }
  7773. .gallery .item-media:hover:after {
  7774. right: 50%;
  7775. }
  7776. .gallery .item-media:before,.gallery .item-media:after {
  7777. -webkit-transition: all .2s ease-in-out;
  7778. -moz-transition: all .2s ease-in-out;
  7779. -ms-transition: all .2s ease-in-out;
  7780. -o-transition: all .2s ease-in-out;
  7781. transition: all .2s ease-in-out;
  7782. }
  7783. #flotTip {
  7784. padding: 3px 5px;
  7785. background-color: #000;
  7786. z-index: 100;
  7787. color: #fff;
  7788. opacity: .7;
  7789. filter: alpha(opacity=70);
  7790. -webkit-border-radius: 4px;
  7791. -moz-border-radius: 4px;
  7792. border-radius: 4px;
  7793. }
  7794. html {
  7795. background-color: #f5f6f7;
  7796. position: relative;
  7797. min-height: 100%;
  7798. overflow-x: hidden;
  7799. }
  7800. body {
  7801. background-color: transparent;
  7802. color: #656565;
  7803. font-size: 13px;
  7804. overflow-x: hidden;
  7805. }
  7806. body,h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  7807. font-family: Microsoft YaHei;
  7808. }
  7809. a {
  7810. color: #3a5a7a
  7811. }
  7812. a:hover,a:focus {
  7813. text-decoration: none;
  7814. }
  7815. .form-control:focus {
  7816. border-color: #13c4a5;
  7817. -webkit-box-shadow: none;
  7818. box-shadow: none;
  7819. }
  7820. img {
  7821. max-width: 100%
  7822. }
  7823. .nav-primary:before,.nav-primary:after {
  7824. display: table;
  7825. content: " ";
  7826. }
  7827. .nav-primary:after {
  7828. clear: both;
  7829. }
  7830. .nav-primary {
  7831. background-color: #233445
  7832. }
  7833. .nav-primary li {
  7834. line-height: 1.5
  7835. }
  7836. .nav-primary li li a {
  7837. padding: 5px 15px;
  7838. }
  7839. .nav-primary li a i {
  7840. margin-right: 0.5em
  7841. }
  7842. .nav-primary>ul>li>a {
  7843. color: #8e9eae;
  7844. border-bottom: 1px solid #2a3b4c;
  7845. padding: 10px 10px;
  7846. position: relative;
  7847. font-weight: 600
  7848. }
  7849. .nav-primary>ul>li>.dropdown-menu {
  7850. margin-left: 0;
  7851. border-radius: 0
  7852. }
  7853. .nav-primary>ul>.dropdown-submenu:hover>a,.nav-primary>ul>.dropdown-submenu:focus>a,.nav-primary>ul>li>a:hover,.nav-primary>ul>li>a:focus,.nav-primary>ul>li>a:active,.nav-primary>ul>li.active>a {
  7854. color: #e1e5e9;
  7855. background-color: transparent;
  7856. transition: color .3s ease-in-out 0s;
  7857. }
  7858. .nav-primary>ul>li.active>a {
  7859. border-left: 1px solid #13c4a5;
  7860. padding-left: 9px;
  7861. }
  7862. .nav-primary>ul>.dropdown-submenu>a:after {
  7863. display: none
  7864. }
  7865. .nav-primary.bg-light>ul>li>a {
  7866. border-bottom-color: #d0d4d8;
  7867. color: #6e7e8e;
  7868. }
  7869. .nav-primary.bg-light>ul>.dropdown-submenu:hover>a,.nav-primary.bg-light>ul>.dropdown-submenu:focus>a,.nav-primary.bg-light>ul>li>a:hover,.nav-primary.bg-light>ul>li>a:focus,.nav-primary.bg-light>ul>li>a:active,.nav-primary.bg-light>ul>li.active>a {
  7870. color: #3d4d5d
  7871. }
  7872. .panel {
  7873. border-color: #e3e8ed
  7874. }
  7875. .panel-heading,.panel-footer {
  7876. border-color: #e3e8ed;
  7877. background: #f7f8f9;
  7878. }
  7879. .panel-heading:before,.panel-heading:after {
  7880. display: table;
  7881. content: " ";
  7882. }
  7883. .panel-heading:after {
  7884. clear: both;
  7885. }
  7886. .panel-heading .nav {
  7887. font-size: 12px;
  7888. margin: -10px -15px;
  7889. }
  7890. .panel-heading .nav>li>a {
  7891. border-radius: 0;
  7892. margin: 0;
  7893. border-width: 0 1px;
  7894. line-height: 19px;
  7895. }
  7896. .panel-heading .nav>li>a:hover {
  7897. border-width: 0 1px;
  7898. }
  7899. .panel-heading .nav-tabs {
  7900. margin: -10px -16px -11px -16px;
  7901. }
  7902. .panel-heading .nav-tabs>li>a {
  7903. line-height: 20px
  7904. }
  7905. .panel-heading .nav-tabs.nav-justified {
  7906. width: auto;
  7907. }
  7908. .panel-heading .nav-tabs.pull-left>li:first-child>a,.panel-heading .nav-tabs.nav-justified>li:first-child>a {
  7909. border-radius: 4px 0 0
  7910. }
  7911. .panel-heading .nav-tabs.pull-right>li:last-child>a,.panel-heading .nav-tabs.nav-justified>li:last-child>a {
  7912. border-radius: 0 4px 0 0
  7913. }
  7914. .panel-heading .nav-tabs>li>a:hover,.panel-heading .nav-tabs>li>a:focus {
  7915. border-width: 0 1px;
  7916. background: transparent;
  7917. border-color: transparent;
  7918. }
  7919. .panel-heading .nav-tabs>li.active>a,.panel-heading .nav-tabs>li.active>a:hover,.panel-heading .nav-tabs>li.active>a:focus {
  7920. background: #fff;
  7921. border-width: 0 1px;
  7922. border-color: #ddd;
  7923. }
  7924. .panel-heading .label-large {
  7925. vertical-align: 10%
  7926. }
  7927. .panel-heading.bg {
  7928. margin: -1px -1px 0 -1px;
  7929. border: none;
  7930. }
  7931. .panel-collapse {
  7932. padding-bottom: 3px;
  7933. }
  7934. .panel-collapse .panel-heading {
  7935. margin-bottom: 0
  7936. }
  7937. .panel.bg {
  7938. border: none
  7939. }
  7940. .panel.bg .list-group-item {
  7941. border-color: transparent;
  7942. }
  7943. .panel.bg .list-group-item a {
  7944. color: #fff
  7945. }
  7946. .panel .list-group {
  7947. background: transparent;
  7948. }
  7949. .panel .list-group.m-t-n .list-group-item:first-child {
  7950. border-top: 0
  7951. }
  7952. .panel .table td,.panel .table th {
  7953. padding: 6px 15px;
  7954. border-top: 1px solid #eaedef;
  7955. }
  7956. .panel .table-striped>tbody>tr:nth-child(odd)>td,.panel .table-striped>tbody>tr:nth-child(odd)>th {
  7957. background-color: #fcfdfe;
  7958. }
  7959. .panel .table-striped>thead>tr>th {
  7960. background: #fafbfc;
  7961. border-right: 1px solid #e0e4e8;
  7962. border-bottom: 1px solid #e0e4e8;
  7963. }
  7964. .panel .table-striped>thead>tr>th:last-child {
  7965. border-right: none
  7966. }
  7967. .panel-large {
  7968. min-width: 300px;
  7969. }
  7970. .nav-tabs.no-radius>li>a {
  7971. border-radius: 0
  7972. }
  7973. .tab-content .list-group-item:first-child {
  7974. border-top: none
  7975. }
  7976. .dropdown-menu {
  7977. font-size: 13px
  7978. }
  7979. .th-sortable {
  7980. cursor: pointer;
  7981. }
  7982. .th-sortable .th-sort {
  7983. float: right;
  7984. position: relative;
  7985. }
  7986. .th-sort i {
  7987. position: relative;
  7988. z-index: 1
  7989. }
  7990. .th-sort .fa-sort {
  7991. position: absolute;
  7992. left: 0;
  7993. top: 3px;
  7994. color: #bac3cc;
  7995. z-index: 0
  7996. }
  7997. .list-group {
  7998. border-radius: 4px
  7999. }
  8000. .list-group-item {
  8001. border-color: #e4e9ed;
  8002. }
  8003. .list-group-item .fa-chevron-right {
  8004. float: right;
  8005. margin-top: 4px;
  8006. margin-right: -5px
  8007. }
  8008. .list-group-item>.fa-chevron-right+.badge {
  8009. margin-right: 5px;
  8010. }
  8011. a.list-group-item:hover,a.list-group-item:focus,a.list-group-item:active {
  8012. background-color: #f1f5f9;
  8013. }
  8014. a.list-group-item.active {
  8015. background-color: #428BCA;
  8016. border-color: #428BCA;
  8017. color: #fff
  8018. }
  8019. a.list-group-item.active>.badge,.nav-pills>.active>a>.badge {
  8020. color: #3a5a7a
  8021. }
  8022. .list-group-item.active a,.list-group-item.active .text-muted {
  8023. color: #fff
  8024. }
  8025. .list-group-item.active {
  8026. background-color: #5191d1;
  8027. border-color: #5191d1;
  8028. }
  8029. .list-group-item.media {
  8030. margin-top: 0
  8031. }
  8032. .progress-mini {
  8033. height: 6px
  8034. }
  8035. .progress-small {
  8036. height: 10px
  8037. }
  8038. .progress-small .progress-bar {
  8039. font-size: 10px;
  8040. line-height: 1em
  8041. }
  8042. .navbar {
  8043. background-color: #fff
  8044. }
  8045. .navbar .nav .open>a,.navbar .nav .open>a:hover,.navbar .nav .open>a:focus {
  8046. background: transparent;
  8047. }
  8048. .list-normal {
  8049. background: transparent;
  8050. }
  8051. .list-normal>.list-group-item {
  8052. border-radius: 0;
  8053. border-width: 1px 0;
  8054. background: transparent
  8055. }
  8056. .list-normal>.list-group-item .badge {
  8057. margin-right: -5px
  8058. }
  8059. .input-group {
  8060. position: relative;
  8061. }
  8062. .tooltip-inner {
  8063. background-color: #233445;
  8064. background-color: rgba(35,52,69,0.9);
  8065. }
  8066. .tooltip.top .tooltip-arrow {
  8067. border-top-color: #233445;
  8068. border-top-color: rgba(35,52,69,0.9);
  8069. }
  8070. .tooltip.right .tooltip-arrow {
  8071. border-right-color: #233445;
  8072. border-right-color: rgba(35,52,69,0.9);
  8073. }
  8074. .tooltip.left .tooltip-arrow {
  8075. border-left-color: #233445;
  8076. border-left-color: rgba(35,52,69,0.9);
  8077. }
  8078. .tooltip.bottom .tooltip-arrow {
  8079. border-bottom-color: #233445;
  8080. border-bottom-color: rgba(35,52,69,0.9);
  8081. }
  8082. .popover-content {
  8083. font-size: 12px;
  8084. line-height: 1.5
  8085. }
  8086. .open {
  8087. z-index: 1050
  8088. }
  8089. .dropdown-menu>.panel {
  8090. border: none;
  8091. margin: -5px 0;
  8092. }
  8093. .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a,.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus {
  8094. background-image: none;
  8095. filter: none;
  8096. background-color: #13c4a5;
  8097. color: #fff;
  8098. }
  8099. .dropdown-menu>li>a:hover i {
  8100. color: #fff
  8101. }
  8102. .dropdown-submenu {
  8103. position: relative;
  8104. }
  8105. .dropdown-submenu:hover>.dropdown-menu {
  8106. display: block;
  8107. }
  8108. .dropdown-submenu>.dropdown-menu {
  8109. left: 100%;
  8110. top: 0;
  8111. margin-top: 0;
  8112. margin-left: -1px
  8113. }
  8114. .dropup .dropdown-submenu>.dropdown-menu {
  8115. top: auto;
  8116. bottom: 0;
  8117. }
  8118. .dropdown-submenu.pull-left {
  8119. float: none;
  8120. }
  8121. .dropdown-menu.pull-left {
  8122. left: 100%;
  8123. }
  8124. .dropdown-submenu.pull-left>.dropdown-menu {
  8125. left: -100%;
  8126. margin-left: 20px
  8127. }
  8128. .dropdown-menu.bg-inverse>.divider {
  8129. height: 1px;
  8130. background-color: #2a3b4c;
  8131. border: none
  8132. }
  8133. .dropdown-menu.bg-inverse>li>a {
  8134. color: #8e9eae
  8135. }
  8136. .dropdown-menu.bg-inverse>li>a:hover,.dropdown-menu.bg-inverse>li>a:focus,.dropdown-menu.bg-inverse>li>a:active,.dropdown-menu.bg-inverse>li.active>a,.dropdown-menu.bg-inverse>.dropdown-submenu:hover>a {
  8137. color: #fff
  8138. }
  8139. .dropdown-menu .badge {
  8140. margin-top: 1px
  8141. }
  8142. .dropdown-select>li>a input {
  8143. position: absolute;
  8144. left: -9999em;
  8145. }
  8146. .breadcrumb {
  8147. background-color: #fafbfc;
  8148. border: 1px solid #e0e4e8;
  8149. padding-left: 10px;
  8150. font-size: 12px
  8151. }
  8152. .accordion-group,.accordion-inner {
  8153. border-color: #e0e4e8
  8154. }
  8155. .accordion-inner {
  8156. background: #fff;
  8157. border-radius: 0 0 4px 4px
  8158. }
  8159. .alert {
  8160. font-size: 75%;
  8161. border-color: rgba(10,20,20,.1);
  8162. text-shadow: 0 1px 0 #fff;
  8163. box-shadow: inset 0 1px 0 rgba(255,255,255,0.4)
  8164. }
  8165. .close i {
  8166. font-size: 12px;
  8167. font-weight: normal;
  8168. display: block;
  8169. line-height: 1.5;
  8170. }
  8171. .modal-backdrop {
  8172. background: #fff
  8173. }
  8174. .modal-backdrop.fade.in {
  8175. opacity: 0.8;
  8176. filter: alpha(opacity=80);
  8177. }
  8178. .modal-header {
  8179. border-radius: 6px 6px 0 0;
  8180. background-color: #f7f8f9
  8181. }
  8182. .modal-header .close {
  8183. margin-top: 3px
  8184. }
  8185. .modal-footer {
  8186. padding: 14px 20px 15px;
  8187. margin-top: 0;
  8188. border-radius: 0 0 6px 6px;
  8189. background-color: #f7f8f9
  8190. }
  8191. .bg {
  8192. background-color: #f7f8f9
  8193. }
  8194. .label {
  8195. font-weight: 700;
  8196. }
  8197. .badge {
  8198. background: #b1b5b9
  8199. }
  8200. .badge.bg-white {
  8201. color: #919599
  8202. }
  8203. .text-white {
  8204. color: #fff
  8205. }
  8206. .text-muted {
  8207. color: #919599
  8208. }
  8209. .text-light {
  8210. color: #919599
  8211. }
  8212. .text-default {
  8213. color: #a5b6c7;
  8214. }
  8215. .text-warning {
  8216. color: #f4c414;
  8217. }
  8218. .text-danger {
  8219. color: #ff5f5f
  8220. }
  8221. .text-success {
  8222. color: #3fcf7f
  8223. }
  8224. .text-primary {
  8225. color: #13c4a5
  8226. }
  8227. .font-thin {
  8228. font-weight: 300;
  8229. }
  8230. .btn {
  8231. color: #fff;
  8232. background: #a7b2be;
  8233. position: relative;
  8234. border-width: 0;
  8235. font-weight: 600;
  8236. padding: 7px 12px;
  8237. transition: background .3s ease-in-out 0s;
  8238. }
  8239. .btn:hover,.btn:focus,.btn:active,.btn.active {
  8240. background: #bac3cc;
  8241. }
  8242. .btn.disabled,.btn.disabled:hover,.btn[disabled]:hover,fieldset[disabled] .btn:hover,.btn.disabled:focus,.btn[disabled]:focus,fieldset[disabled] .btn:focus,.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active,.btn.disabled.active,.btn[disabled].active,fieldset[disabled] .btn.active {
  8243. background-color: #c4c9cf;
  8244. color: #fff;
  8245. }
  8246. .btn-white {
  8247. padding: 6px 12px;
  8248. border-width: 1px;
  8249. border-color: #c3c6c9;
  8250. color: #657483;
  8251. background-color: #fff
  8252. }
  8253. .btn-white:hover,.btn-white:focus,.btn-white:active,.btn-white.active {
  8254. border-color: #c3c6c9;
  8255. color: #657483;
  8256. background-color: #f7f8f9;
  8257. }
  8258. .btn-default {
  8259. padding: 6px 12px;
  8260. box-shadow: inset 0 -2px 0 rgba(0,0,0,0.05);
  8261. border-width: 1px;
  8262. border-color: #c3c6c9;
  8263. color: #657483;
  8264. background-color: #f5f6f7
  8265. }
  8266. .btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active {
  8267. border-color: #c3c6c9;
  8268. color: #657483;
  8269. background-color: #fafbfc;
  8270. }
  8271. .btn-primary,.bg-primary,.btn-primary.btn-circle>i {
  8272. color: #fff;
  8273. background-color: #13c4a5
  8274. }
  8275. .btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.btn-circle:hover>i,.btn.btn-circle:hover>i {
  8276. color: #fff;
  8277. background-color: #23d4b5;
  8278. }
  8279. .btn-success,.bg-success,.btn-success.btn-circle>i {
  8280. color: #fff;
  8281. background-color: #3fcf7f
  8282. }
  8283. .btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.btn-circle:hover>i {
  8284. color: #fff;
  8285. background-color: #4fdf8f;
  8286. }
  8287. .btn-info,.bg-info,.btn-info.btn-circle>i {
  8288. color: #fff;
  8289. background-color: #5191d1
  8290. }
  8291. .btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.btn-circle:hover>i {
  8292. color: #fff;
  8293. background-color: #61a1e1;
  8294. }
  8295. .btn-inverse,.bg-inverse,.btn-inverse.btn-circle>i {
  8296. color: #fff;
  8297. background-color: #233445
  8298. }
  8299. .btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.btn-circle:hover>i {
  8300. color: #fff;
  8301. background-color: #314355;
  8302. }
  8303. .btn-warning,.bg-warning,.btn-warning.btn-circle>i {
  8304. color: #fff;
  8305. background-color: #f4c414
  8306. }
  8307. .btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.btn-circle:hover>i {
  8308. color: #fff;
  8309. background-color: #f6d616;
  8310. }
  8311. .btn-danger,.bg-danger,.btn-danger.btn-circle>i {
  8312. color: #fff;
  8313. background-color: #ff5f5f
  8314. }
  8315. .btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.btn-circle:hover>i {
  8316. color: #fff;
  8317. background-color: #ff8585;
  8318. }
  8319. .btn-twitter,.btn-twitter.btn-circle>i {
  8320. color: #fff;
  8321. background-color: #00c7f7
  8322. }
  8323. .btn-twitter:hover,.btn-twitter:focus,.btn-twitter:active,.btn-twitter.active,.btn-twitter.btn-circle:hover>i {
  8324. color: #fff;
  8325. background-color: #2fcff6;
  8326. }
  8327. .btn-facebook,.btn-facebook.btn-circle>i {
  8328. color: #fff;
  8329. background-color: #335397
  8330. }
  8331. .btn-facebook:hover,.btn-facebook:focus,.btn-facebook:active,.btn-facebook.active,.btn-facebook.btn-circle:hover>i {
  8332. color: #fff;
  8333. background-color: #4264ab;
  8334. }
  8335. .btn-gplus,.btn-gplus.btn-circle>i {
  8336. color: #fff;
  8337. background-color: #dd4a38
  8338. }
  8339. .btn-gplus:hover,.btn-gplus:focus,.btn-gplus:active,.btn-gplus.active,.btn-gplus.btn-circle:hover>i {
  8340. color: #fff;
  8341. background-color: #ea5e4d;
  8342. }
  8343. .btn-on.active {
  8344. color: #fff;
  8345. border: 1px solid #767676;
  8346. background: #8e9eae
  8347. }
  8348. .btn-xs {
  8349. padding: 4px 5px;
  8350. }
  8351. .btn-sm {
  8352. padding: 6px 10px
  8353. }
  8354. .btn-lg {
  8355. padding: 11px 16px
  8356. }
  8357. .btn-white.btn-xs,.btn-default.btn-xs {
  8358. padding: 3px 6px;
  8359. }
  8360. .btn-white.btn-sm,.btn-default.btn-sm {
  8361. padding: 5px 10px;
  8362. }
  8363. .btn-white.btn-lg,.btn-default.btn-lg {
  8364. padding: 10px 16px;
  8365. }
  8366. .btn-white .caret,.btn-default .caret {
  8367. border-top-color: #656565
  8368. }
  8369. .dropup .btn-white .caret,.dropup .btn-default .caret {
  8370. border-bottom-color: #656565
  8371. }
  8372. .btn>i {
  8373. line-height: 1.428571429;
  8374. }
  8375. .btn-xs i {
  8376. font-size: 9px
  8377. }
  8378. .btn.btn-circle,.btn.btn-circle.disabled {
  8379. padding: 2px 5px;
  8380. box-shadow: none;
  8381. border: none;
  8382. background: transparent;
  8383. color: #3a5a7a;
  8384. font-weight: 300;
  8385. transition: none;
  8386. }
  8387. .btn.btn-circle:hover,.btn.btn-circle:active,.btn.btn-circle.active {
  8388. box-shadow: none;
  8389. background: transparent;
  8390. }
  8391. .btn-circle>i {
  8392. color: #a5b6c7;
  8393. background: #e5e9ed;
  8394. width: 60px;
  8395. height: 60px;
  8396. padding: 18px 0;
  8397. font-size: 24px;
  8398. border-radius: 50%;
  8399. display: block;
  8400. margin: 0 auto;
  8401. margin-bottom: 6px;
  8402. line-height: normal;
  8403. transition: all .3s ease-in-out 0s;
  8404. }
  8405. .btn-circle.btn-lg>i {
  8406. width: 80px;
  8407. height: 80px;
  8408. padding: 22px 0;
  8409. font-size: 36px;
  8410. }
  8411. .btn-circle.btn-sm>i {
  8412. width: 40px;
  8413. height: 40px;
  8414. padding: 10px 0;
  8415. font-size: 20px;
  8416. }
  8417. .btn-circle.btn-xs>i {
  8418. width: 30px;
  8419. height: 30px;
  8420. padding: 8px 0;
  8421. font-size: 14px;
  8422. }
  8423. .btn-circle b.badge {
  8424. position: absolute;
  8425. right: 5px;
  8426. top: 2px;
  8427. }
  8428. .btn-circle .badge i {
  8429. margin: 0 -2px
  8430. }
  8431. .btn-white.btn-circle>i {
  8432. color: #a5b6c7;
  8433. background: #fff
  8434. }
  8435. .btn.btn-circle.disabled>i {
  8436. background: #c4c9cf;
  8437. }
  8438. .btn-block {
  8439. padding-left: 12px;
  8440. padding-right: 12px
  8441. }
  8442. .text-active,.active .text {
  8443. display: none !important;
  8444. }
  8445. .active .text-active {
  8446. display: inline-block !important;
  8447. }
  8448. .btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active,.btn-link.active {
  8449. border: none;
  8450. background-color: transparent;
  8451. background-image: none;
  8452. -webkit-box-shadow: none;
  8453. box-shadow: none;
  8454. text-decoration: none;
  8455. color: #3a5a7a
  8456. }
  8457. form,.carousel,.form-horizontal .control-group,.nav-tabs,.alert,.panel,.progress,.breadcrumb,.accordion {
  8458. margin-bottom: 15px
  8459. }
  8460. .media,.media .media {
  8461. margin-top: 10px;
  8462. }
  8463. .pagination {
  8464. margin: 5px 0;
  8465. }
  8466. .pagination-large>li>a,.pagination-large>li>span {
  8467. padding: 10px 14px
  8468. }
  8469. .bg-white {
  8470. background: #fff;
  8471. }
  8472. .bg-black {
  8473. background: #1d2d3d;
  8474. }
  8475. .bg-light {
  8476. background: #e1e5e9;
  8477. color: #414549
  8478. }
  8479. .bg-lighter {
  8480. background: #f1f5f9
  8481. }
  8482. .bg-default {
  8483. background: #bac3cc
  8484. }
  8485. .bg-white-desktop {
  8486. background-color: #fff
  8487. }
  8488. .bg-focus {
  8489. background: #ffffee !important;
  8490. }
  8491. .pos-rlt {
  8492. position: relative;
  8493. }
  8494. .pos-stc {
  8495. position: static;
  8496. }
  8497. .pos-abt {
  8498. position: absolute;
  8499. }
  8500. .content-box,.jqstooltip {
  8501. -webkit-box-sizing: content-box;
  8502. -moz-box-sizing: content-box;
  8503. box-sizing: content-box;
  8504. }
  8505. .line {
  8506. *width: 100%;
  8507. height: 2px;
  8508. margin: 10px 0;
  8509. font-size: 0;
  8510. overflow: hidden;
  8511. background-color: #fff;
  8512. border-width: 0;
  8513. border-top: 1px solid #e0e4e8;
  8514. }
  8515. .line-mini {
  8516. margin: 0
  8517. }
  8518. .line-dashed {
  8519. border-style: dashed;
  8520. background: transparent;
  8521. }
  8522. .line-large {
  8523. margin-top: 15px;
  8524. margin-bottom: 15px
  8525. }
  8526. .headline {
  8527. border-bottom: 5px solid #000;
  8528. margin-top: 0;
  8529. line-height: 45px;
  8530. }
  8531. .no-line {
  8532. border-width: 0
  8533. }
  8534. .no-border {
  8535. border-color: transparent !important;
  8536. }
  8537. .no-radius {
  8538. border-radius: 0
  8539. }
  8540. .block {
  8541. display: block;
  8542. margin-bottom: 10px
  8543. }
  8544. .block.hide {
  8545. display: none
  8546. }
  8547. .inline,.inline-desktop {
  8548. display: inline-block
  8549. }
  8550. .pull-right-desktop {
  8551. float: right;
  8552. }
  8553. .pull-none {
  8554. float: none
  8555. }
  8556. .clear {
  8557. clear: both
  8558. }
  8559. .line-v {
  8560. border-left: 1px solid #dddddd;
  8561. padding-left: 20px
  8562. }
  8563. .line-v-right {
  8564. border-right: 1px solid #dddddd;
  8565. padding-right: 20px;
  8566. }
  8567. .wrapper {
  8568. padding: 2px;
  8569. background-color: #fff;
  8570. border: 1px solid #ddd
  8571. }
  8572. .w-link {
  8573. position: absolute;
  8574. width: 100%;
  8575. height: 100%;
  8576. z-index: 1;
  8577. top: 0
  8578. }
  8579. .btn-s-mini {
  8580. min-width: 90px
  8581. }
  8582. .btn-s-small {
  8583. min-width: 100px
  8584. }
  8585. .btn-s-medium {
  8586. min-width: 120px
  8587. }
  8588. .btn-s-large {
  8589. min-width: 150px
  8590. }
  8591. .btn-s-xlarge {
  8592. min-width: 200px
  8593. }
  8594. .btn-s-xxlarge {
  8595. min-width: 300px
  8596. }
  8597. .btn-padder {
  8598. padding-left: 40px;
  8599. padding-right: 40px
  8600. }
  8601. .l-h-2x {
  8602. line-height: 2em;
  8603. }
  8604. .text-small {
  8605. font-size: 12px;
  8606. }
  8607. .text-mini {
  8608. font-size: 10px;
  8609. }
  8610. .padder {
  8611. padding: 0 15px;
  8612. }
  8613. .padder-v {
  8614. padding-top: 15px;
  8615. padding-bottom: 15px;
  8616. }
  8617. .no-padder {
  8618. padding: 0 !important;
  8619. }
  8620. .pull-in {
  8621. margin-left: -15px;
  8622. margin-right: -15px;
  8623. }
  8624. .pull-out {
  8625. margin: -15px;
  8626. }
  8627. .b-t {
  8628. border-top: 1px solid #e0e4e8
  8629. }
  8630. .m-l {
  8631. margin-left: 15px
  8632. }
  8633. .m-l-none {
  8634. margin-left: 0
  8635. }
  8636. .m-l-mini {
  8637. margin-left: 5px;
  8638. }
  8639. .m-l-small {
  8640. margin-left: 10px;
  8641. }
  8642. .m-l-large {
  8643. margin-left: 20px;
  8644. }
  8645. .m-l-n {
  8646. margin-left: -15px
  8647. }
  8648. .m-l-n-mini {
  8649. margin-left: -5px
  8650. }
  8651. .m-l-n-small {
  8652. margin-left: -10px
  8653. }
  8654. .m-l-n-large {
  8655. margin-left: -20px
  8656. }
  8657. .m-t {
  8658. margin-top: 15px
  8659. }
  8660. .m-t-none {
  8661. margin-top: 0
  8662. }
  8663. .m-t-mini {
  8664. margin-top: 5px;
  8665. }
  8666. .m-t-small {
  8667. margin-top: 10px;
  8668. }
  8669. .m-t-large {
  8670. margin-top: 20px;
  8671. }
  8672. .m-t-n {
  8673. margin-top: -15px
  8674. }
  8675. .m-t-n-xmini {
  8676. margin-top: -1px
  8677. }
  8678. .m-t-n-mini {
  8679. margin-top: -5px
  8680. }
  8681. .m-t-n-small {
  8682. margin-top: -10px
  8683. }
  8684. .m-t-n-large {
  8685. margin-top: -20px
  8686. }
  8687. .m-r {
  8688. margin-right: 15px
  8689. }
  8690. .m-r-none {
  8691. margin-right: 0
  8692. }
  8693. .m-r-mini {
  8694. margin-right: 5px
  8695. }
  8696. .m-r-small {
  8697. margin-right: 10px
  8698. }
  8699. .m-r-large {
  8700. margin-right: 20px
  8701. }
  8702. .m-r-n {
  8703. margin-right: -15px
  8704. }
  8705. .m-r-n-mini {
  8706. margin-right: -5px
  8707. }
  8708. .m-r-n-small {
  8709. margin-right: -10px
  8710. }
  8711. .m-r-n-large {
  8712. margin-right: -20px
  8713. }
  8714. .m-b {
  8715. margin-bottom: 15px;
  8716. }
  8717. .m-b-none {
  8718. margin-bottom: 0
  8719. }
  8720. .m-b-mini {
  8721. margin-bottom: 5px;
  8722. }
  8723. .m-b-small {
  8724. margin-bottom: 10px;
  8725. }
  8726. .m-b-large {
  8727. margin-bottom: 20px;
  8728. }
  8729. .m-b-n {
  8730. margin-bottom: -15px
  8731. }
  8732. .m-b-n-mini {
  8733. margin-bottom: -5px
  8734. }
  8735. .m-b-n-small {
  8736. margin-bottom: -10px
  8737. }
  8738. .m-b-n-large {
  8739. margin-bottom: -20px
  8740. }
  8741. .header-bar {
  8742. border-bottom: 1px solid #e0e4e8
  8743. }
  8744. .media-mini {
  8745. min-width: 50px
  8746. }
  8747. .media-small {
  8748. min-width: 80px
  8749. }
  8750. .media-large {
  8751. min-width: 90px
  8752. }
  8753. .avatar {
  8754. border-radius: 500px;
  8755. background-color: #fff;
  8756. padding: 2px
  8757. }
  8758. .thumb-mini {
  8759. width: 24px;
  8760. display: inline-block
  8761. }
  8762. .thumb-small {
  8763. width: 36px;
  8764. display: inline-block;
  8765. text-align: center;
  8766. }
  8767. .thumb {
  8768. display: inline-block
  8769. }
  8770. .thumb-large {
  8771. width: 90px;
  8772. display: inline-block
  8773. }
  8774. .thumb img,.thumb-mini img,.thumb-small img,.thumb-large img {
  8775. height: auto;
  8776. max-width: 100%;
  8777. vertical-align: middle;
  8778. }
  8779. .scroll-x,.scroll-y {
  8780. overflow: hidden;
  8781. -webkit-overflow-scrolling: touch;
  8782. }
  8783. .scroll-y {
  8784. overflow-y: auto;
  8785. }
  8786. .scroll-x {
  8787. overflow-x: auto;
  8788. }
  8789. .no-touch .scroll-x,.no-touch .scroll-y {
  8790. overflow: hidden;
  8791. }
  8792. .no-touch .scroll-x:hover,.no-touch .scroll-x:focus,.no-touch .scroll-x:active {
  8793. overflow-x: auto;
  8794. }
  8795. .no-touch .scroll-y:hover,.no-touch .scroll-y:focus,.no-touch .scroll-y:active {
  8796. overflow-y: auto;
  8797. }
  8798. .no-touch .scroll-y:hover>* {
  8799. margin-right: -10px;
  8800. padding-right: 15px
  8801. }
  8802. .no-touch .hover-action {
  8803. display: none
  8804. }
  8805. .no-touch .hover:hover .hover-action {
  8806. display: inherit;
  8807. }
  8808. .col-lg-2-4 {
  8809. padding-left: 15px;
  8810. padding-right: 15px
  8811. }
  8812. .col-newline {
  8813. clear: left;
  8814. }
  8815. input[type="text"],select,textarea {
  8816. min-width: 40px;
  8817. height: auto;
  8818. }
  8819. .navbar {
  8820. border: none;
  8821. border-bottom: 1px solid #d1d4d7;
  8822. box-shadow: 0 0 5px rgba(0,0,0,.1);
  8823. z-index: 1010;
  8824. border-radius: 0;
  8825. padding: 0;
  8826. margin-bottom: 0
  8827. }
  8828. .navbar.bg {
  8829. border-bottom: 1px solid #162636;
  8830. }
  8831. .navbar-brand {
  8832. font-size: 28px;
  8833. min-width: 90px;
  8834. font-family: "Times New Roman",Georgia,serif;
  8835. font-style: italic;
  8836. font-weight: 700;
  8837. padding: 12px 0 18px 0;
  8838. text-align: center;
  8839. }
  8840. .navbar-brand img {
  8841. max-height: 50px
  8842. }
  8843. .navbar-brand,.navbar-brand:hover,.navbar-brand:focus {
  8844. color: #22baa0;
  8845. }
  8846. .navbar-form {
  8847. position: relative;
  8848. margin: 10px;
  8849. padding: 0
  8850. }
  8851. .navbar-form input[type="text"] {
  8852. border-radius: 17px;
  8853. font-weight: 700;
  8854. text-indent: 1.5em;
  8855. }
  8856. .navbar-form i {
  8857. position: absolute;
  8858. z-index: 1;
  8859. left: 8px;
  8860. top: 50%;
  8861. margin-top: -7px;
  8862. color: #bbb
  8863. }
  8864. .navbar-nav {
  8865. margin: 0
  8866. }
  8867. .navbar .nav>li>div {
  8868. padding-left: 10px;
  8869. padding-right: 10px
  8870. }
  8871. .navbar-avatar .thumb-small {
  8872. margin: 0 4px;
  8873. vertical-align: baseline;
  8874. width: 40px;
  8875. }
  8876. .nav.navbar-avatar>li>a {
  8877. padding: 5px 10px
  8878. }
  8879. .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle {
  8880. background: #e1e5e9;
  8881. box-shadow: inset 0 1px 0 #13c4a5
  8882. }
  8883. .bg .nav li.dropdown>a:hover .caret {
  8884. border-top-color: #fff;
  8885. border-bottom-color: #fff;
  8886. }
  8887. .bg .nav>li>a {
  8888. color: #a5b6c7
  8889. }
  8890. .bg .nav>li>a:hover,.bg .nav>li>a:focus {
  8891. background-color: transparent;
  8892. color: #fff;
  8893. }
  8894. .bg .nav li.dropdown.open>.dropdown-toggle,.bg .nav li.dropdown.active>.dropdown-toggle,.bg .nav li.dropdown.open.active>.dropdown-toggle {
  8895. background-color: #000;
  8896. color: #fff;
  8897. }
  8898. .navbar .badge-notes {
  8899. float: right;
  8900. margin-left: -15px;
  8901. margin-top: -6px;
  8902. position: relative;
  8903. font-size: 11px
  8904. }
  8905. .navbar-fixed .navbar {
  8906. position: fixed;
  8907. top: 0;
  8908. left: 0;
  8909. right: 0;
  8910. z-index: 1030;
  8911. }
  8912. .navbar-fixed {
  8913. padding-top: 51px
  8914. }
  8915. .navbar-nav.pull-right {
  8916. width: auto;
  8917. }
  8918. #content {
  8919. position: relative;
  8920. }
  8921. .page-title {
  8922. background: #eaedef;
  8923. border-bottom: 1px solid #d3d6d9;
  8924. padding: 10px 15px
  8925. }
  8926. .arrow:before,.arrow:after {
  8927. position: absolute;
  8928. display: inline-block;
  8929. border-color: transparent;
  8930. border-style: solid;
  8931. content: "";
  8932. }
  8933. .arrow-left:before {
  8934. margin-left: -7px;
  8935. top: 6px;
  8936. left: 0px;
  8937. border-right-color: #d1d4d7;
  8938. border-width: 7px 7px 7px 0;
  8939. -moz-border-right-colors: #fff;
  8940. }
  8941. .arrow-left:after {
  8942. margin-left: -6px;
  8943. top: 7px;
  8944. left: 0px;
  8945. border-right-color: #fff;
  8946. border-width: 6px 6px 6px 0;
  8947. }
  8948. .arrow-right:before {
  8949. margin-right: -7px;
  8950. top: 6px;
  8951. right: 0px;
  8952. border-left-color: #d1d4d7;
  8953. border-width: 7px 0 7px 7px;
  8954. ;-moz-border-left-colors: #fff;
  8955. }
  8956. .arrow-right:after {
  8957. margin-right: -6px;
  8958. top: 7px;
  8959. right: 0px;
  8960. border-left-color: #fff;
  8961. border-width: 6px 0 6px 6px;
  8962. ;
  8963. }
  8964. .arrow-top:before {
  8965. margin-top: -7px;
  8966. top: 0;
  8967. left: 6px;
  8968. border-bottom-color: #d1d4d7;
  8969. border-width: 0 7px 7px 7px;
  8970. ;-moz-border-top-colors: #fff;
  8971. }
  8972. .arrow-top:after {
  8973. margin-top: -6px;
  8974. top: 0;
  8975. left: 7px;
  8976. border-bottom-color: #fff;
  8977. border-width: 0 6px 6px 6px;
  8978. ;
  8979. }
  8980. .chat-item {
  8981. position: relative;
  8982. }
  8983. .chat-item.arrow-left:before {
  8984. top: 11px;
  8985. left: 47px;
  8986. }
  8987. .chat-item.arrow-left:after {
  8988. top: 12px;
  8989. left: 47px;
  8990. border-right-color: #f1f5f9;
  8991. }
  8992. .chat-item.arrow-right:before {
  8993. top: 11px;
  8994. left: auto;
  8995. right: 47px;
  8996. }
  8997. .chat-item.arrow-right:after {
  8998. top: 12px;
  8999. left: auto;
  9000. right: 47px;
  9001. }
  9002. .comment-list,.comment-item {
  9003. position: relative;
  9004. }
  9005. .comment-item .panel-body {
  9006. padding: 10px 15px
  9007. }
  9008. .comment-reply {
  9009. margin-left: 40px
  9010. }
  9011. .comment-item:before {
  9012. top: 10px;
  9013. left: 47px;
  9014. }
  9015. .comment-item:after {
  9016. top: 11px;
  9017. left: 47px;
  9018. border-right-color: #f5f5f5;
  9019. }
  9020. .comment-list:before {
  9021. position: absolute;
  9022. top: 0;
  9023. bottom: 35px;
  9024. left: 16px;
  9025. width: 1px;
  9026. background: #e0e4e8;
  9027. content: '';
  9028. z-index: -1;
  9029. }
  9030. .comment-item>.thumb-small {
  9031. width: 36px;
  9032. }
  9033. .carousel-padder {
  9034. padding-left: 40px;
  9035. padding-right: 40px;
  9036. }
  9037. .carousel-control {
  9038. width: 40px;
  9039. color: #999;
  9040. text-shadow: none;
  9041. }
  9042. .carousel-control i {
  9043. position: absolute;
  9044. top: 50%;
  9045. left: 50%;
  9046. z-index: 5;
  9047. display: inline-block;
  9048. width: 20px;
  9049. height: 20px;
  9050. margin-top: -10px;
  9051. margin-left: -10px;
  9052. }
  9053. .carousel-control:hover,.carousel-control:focus {
  9054. color: #ccc;
  9055. text-decoration: none;
  9056. opacity: 0.9;
  9057. filter: alpha(opacity=90);
  9058. }
  9059. .carousel-indicators.out {
  9060. bottom: -15px
  9061. }
  9062. .carousel-indicators li {
  9063. background: #ddd;
  9064. background-color: rgba(0,0,0,0.2);
  9065. border: none;
  9066. margin: 0
  9067. }
  9068. .carousel-indicators .active {
  9069. background: #13c4a5;
  9070. width: 10px;
  9071. height: 10px;
  9072. }
  9073. .carousel-control.left,.carousel-control.right {
  9074. background-image: none;
  9075. filter: none;
  9076. }
  9077. .carousel.carousel-fade .item {
  9078. -webkit-transition: opacity 2s ease-in-out;
  9079. -moz-transition: opacity 2s ease-in-out;
  9080. -ms-transition: opacity 2s ease-in-out;
  9081. -o-transition: opacity 2s ease-in-out;
  9082. transition: opacity 2s ease-in-out;
  9083. }
  9084. .carousel.carousel-fade .active.left,.carousel.carousel-fade .active.right {
  9085. left: 0;
  9086. z-index: 2;
  9087. opacity: 0;
  9088. filter: alpha(opacity=0);
  9089. }
  9090. .carousel.carousel-fade .next,.carousel.carousel-fade .prev {
  9091. left: 0;
  9092. z-index: 1;
  9093. }
  9094. .carousel.carousel-fade .carousel-control {
  9095. z-index: 3;
  9096. }
  9097. .carousel ul.item,.carousel ul.item>li {
  9098. list-style: none;
  9099. margin: 0;
  9100. padding: 0
  9101. }
  9102. .dropfile {
  9103. border: 2px dashed #e0e4e8;
  9104. text-align: center;
  9105. min-height: 20px
  9106. }
  9107. .dropfile.hover {
  9108. border-color: #aac3cc
  9109. }
  9110. .dropfile small {
  9111. margin: 50px 0;
  9112. display: block
  9113. }
  9114. .axis {
  9115. margin: 6px 0 0
  9116. }
  9117. .axis li {
  9118. vertical-align: top;
  9119. font-size: 9px;
  9120. margin-right: 2px;
  9121. padding: 0;
  9122. width: 10px;
  9123. -webkit-text-size-adjust: none;
  9124. text-align: center;
  9125. line-height: 1em;
  9126. word-wrap: nowrap;
  9127. }
  9128. .axis li:last-child {
  9129. margin-right: 0 !important;
  9130. }
  9131. .axis-full {
  9132. display: table;
  9133. }
  9134. .axis-full li {
  9135. display: table-cell;
  9136. padding: 0;
  9137. width: 1%;
  9138. }
  9139. .easypiechart {
  9140. position: relative;
  9141. text-align: center;
  9142. }
  9143. .easypiechart canvas {
  9144. position: absolute;
  9145. top: 0;
  9146. left: 0;
  9147. }
  9148. .easypiechart .easypie-text {
  9149. position: absolute;
  9150. z-index: 1;
  9151. line-height: 1;
  9152. font-size: 75%;
  9153. width: 100%;
  9154. top: 60%
  9155. }
  9156. .combodate select {
  9157. display: inline-block;
  9158. }
  9159. .doc-buttons .btn {
  9160. margin-bottom: 5px
  9161. }
  9162. .the-icons {
  9163. list-style: none;
  9164. margin: 0
  9165. }
  9166. .the-icons i {
  9167. font-size: 14px;
  9168. width: 40px;
  9169. margin: 0;
  9170. display: inline-block;
  9171. text-align: center;
  9172. }
  9173. .the-icons a {
  9174. line-height: 32px;
  9175. display: block;
  9176. white-space: nowrap;
  9177. height: 30px;
  9178. overflow: hidden;
  9179. }
  9180. .the-icons a:hover i {
  9181. font-size: 28px;
  9182. vertical-align: middle
  9183. }
  9184. .h {
  9185. font-size: 180px;
  9186. font-weight: 700;
  9187. text-shadow: 0 1px 0 #d9d9d9,0 2px 0 #d0d0d0,0 5px 10px rgba(0,0,0,.125),0 10px 20px rgba(0,0,0,.2);
  9188. }
  9189. .portlet {
  9190. min-height: 30px;
  9191. }
  9192. @media (min-width: 992px) {
  9193. .col-lg-2-4 {
  9194. width: 20%;
  9195. float: left
  9196. }
  9197. }
  9198. @media (max-width: 991px) {
  9199. .page-title {
  9200. padding: 10px
  9201. }
  9202. a:hover {
  9203. text-decoration: none
  9204. }
  9205. .inline-desktop {
  9206. display: inherit;
  9207. }
  9208. .pull-right-desktop {
  9209. float: none
  9210. }
  9211. .hidden-sm.show,.visible-lg.show {
  9212. display: inherit !important;
  9213. }
  9214. .bg-white-desktop {
  9215. background-color: transparent;
  9216. }
  9217. .navbar>.btn {
  9218. padding: 10px;
  9219. }
  9220. }
  9221. @media (min-width: 768px) {
  9222. .row {
  9223. margin-left: -15px;
  9224. margin-right: -15px
  9225. }
  9226. #footer {
  9227. margin-top: 20px
  9228. }
  9229. ::-webkit-scrollbar {
  9230. width: 8px;
  9231. height: .25em;
  9232. position: absolute
  9233. }
  9234. ::-webkit-scrollbar-thumb {
  9235. background-color: rgba(0,0,0,0.25)
  9236. }
  9237. ::-webkit-scrollbar-track {
  9238. background-color: rgba(0,0,0,0.0)
  9239. }
  9240. textarea::-webkit-scrollbar {
  9241. width: 1em;
  9242. }
  9243. .navbar-brand {
  9244. margin-left: auto;
  9245. margin-right: auto;
  9246. border-right: 1px solid #e3e9ed;
  9247. }
  9248. .bg .navbar-brand {
  9249. border-right-color: transparent;
  9250. }
  9251. .navbar-form input {
  9252. transition: width .3s ease-in-out 0s;
  9253. }
  9254. .navbar-form input:focus {
  9255. width: 200px
  9256. }
  9257. .bg-black .navbar-form input {
  9258. background-color: #102030;
  9259. border-color: #314355;
  9260. color: #8e9eae;
  9261. }
  9262. .bg-black .navbar-form input:focus {
  9263. background-color: #fff;
  9264. color: #222;
  9265. }
  9266. .nav-primary>ul>li>.dropdown-menu {
  9267. margin-top: -1px;
  9268. margin-left: 0
  9269. }
  9270. .nav-vertical>ul>li>a>i {
  9271. display: block;
  9272. font-size: 2em;
  9273. margin: 6px auto
  9274. }
  9275. .nav-vertical>ul>li>a {
  9276. text-align: center;
  9277. border-bottom: none;
  9278. font-size: 11.5px
  9279. }
  9280. .nav-vertical.nav-icon>ul>li>a span {
  9281. display: none
  9282. }
  9283. .nav-vertical.nav-icon>ul>li>a i {
  9284. margin: 8px auto;
  9285. }
  9286. .nav-primary.nav-vertical>ul>li>a>.badge {
  9287. position: absolute;
  9288. top: 4px;
  9289. right: 15px;
  9290. font-size: 11px;
  9291. padding: 3px 6px
  9292. }
  9293. #nav {
  9294. position: relative;
  9295. width: 150px;
  9296. position: absolute;
  9297. z-index: 1000;
  9298. left: 0;
  9299. top: 50px;
  9300. bottom: 0;
  9301. border-right: 1px solid #162636
  9302. }
  9303. #nav.bg-light {
  9304. border-color: #bfc7d0
  9305. }
  9306. #nav.nav-vertical {
  9307. width: 90px
  9308. }
  9309. #nav+#content {
  9310. padding-left: 150px;
  9311. }
  9312. #nav.nav-vertical+#content {
  9313. padding-left: 90px;
  9314. }
  9315. .nav-primary.nav-doc>ul>li>a {
  9316. border-bottom: none;
  9317. padding: 3px 20px;
  9318. text-shadow: none;
  9319. }
  9320. .nav-primary .affix {
  9321. top: 0;
  9322. min-width: 149px
  9323. }
  9324. .nav-primary.nav-vertical .affix {
  9325. top: 0;
  9326. min-width: 89px
  9327. }
  9328. .navbar-fixed .nav-primary .nav {
  9329. top: 50px
  9330. }
  9331. .content-sidebar {
  9332. border-bottom: 1px solid #d1d4d7;
  9333. display: table;
  9334. width: 100%;
  9335. border-spacing: 0;
  9336. table-layout: fixed;
  9337. }
  9338. .content-sidebar .sidebar {
  9339. border: 0 solid #d1d4d7;
  9340. border-right-width: 1px;
  9341. }
  9342. .sidebar {
  9343. width: 200px;
  9344. display: table-cell;
  9345. vertical-align: top
  9346. }
  9347. .sidebar-small {
  9348. width: 160px
  9349. }
  9350. .sidebar-large {
  9351. width: 300px
  9352. }
  9353. .main+.sidebar {
  9354. border-right-width: 0;
  9355. border-left-width: 1px
  9356. }
  9357. .modal {
  9358. overflow-y: auto;
  9359. }
  9360. .modal-content {
  9361. -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  9362. box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  9363. }
  9364. }
  9365. @media (max-width: 767px) {
  9366. body {
  9367. overflow-x: hidden;
  9368. }
  9369. body.slide-nav {
  9370. overflow: hidden;
  9371. }
  9372. #header,#content {
  9373. -webkit-transition: -webkit-transform 0.2s ease;
  9374. -webkit-transition-delay: 0s;
  9375. -moz-transition: -moz-transform 0.2s ease 0s;
  9376. transition: transform 0.2s ease 0s;
  9377. -webkit-transform: translate3d(0px,0px,0px);
  9378. -moz-transform: translate3d(0px,0px,0px);
  9379. transform: translate3d(0px,0px,0px);
  9380. -webkit-backface-visibility: hidden;
  9381. }
  9382. .slide-nav #nav {
  9383. position: absolute;
  9384. left: 0;
  9385. top: 0;
  9386. bottom: 0;
  9387. width: 75%;
  9388. display: block !important;
  9389. z-index: 2000
  9390. }
  9391. .slide-nav .slide-nav-block {
  9392. display: block !important;
  9393. position: absolute;
  9394. left: 0;
  9395. right: 0;
  9396. top: 0;
  9397. bottom: 0;
  9398. z-index: 1950
  9399. }
  9400. .slide-nav>#content {
  9401. background-color: #f5f6f7;
  9402. }
  9403. .slide-nav>#header,.slide-nav>#content {
  9404. -webkit-transform: translate3d(75%,0px,0px);
  9405. -moz-transform: translate3d(75%,0px,0px);
  9406. transform: translate3d(75%,0px,0px);
  9407. overflow: hidden;
  9408. }
  9409. .slide-nav.slide-nav-right #nav {
  9410. left: auto;
  9411. right: 0
  9412. }
  9413. .slide-nav.slide-nav-right>#header,.slide-nav.slide-nav-right>#content {
  9414. -webkit-transform: translate3d(-75%,0px,0px);
  9415. -moz-transform: translate3d(-75%,0px,0px);
  9416. transform: translate3d(-75%,0px,0px);
  9417. }
  9418. .nav-primary .dropdown-menu {
  9419. position: relative;
  9420. left: 0;
  9421. float: none;
  9422. display: block;
  9423. border: none;
  9424. background: transparent;
  9425. padding-bottom: 0;
  9426. -webkit-box-shadow: none;
  9427. box-shadow: none;
  9428. z-index: 0
  9429. }
  9430. .nav-primary>ul>li>a {
  9431. font-weight: bold;
  9432. }
  9433. .nav-primary .dropdown-menu a {
  9434. color: #8e9eae;
  9435. border-bottom: 1px solid #2a3b4c;
  9436. }
  9437. .nav-primary.bg-light .dropdown-menu a {
  9438. color: #3e4e5e;
  9439. border-bottom-color: #d1d4d7;
  9440. }
  9441. .nav-primary.bg-light .dropdown-menu a:hover {
  9442. color: #fff
  9443. }
  9444. .nav-primary .nav {
  9445. position: static;
  9446. }
  9447. .main.padder {
  9448. padding: 0 10px
  9449. }
  9450. .row,.row .row {
  9451. margin-left: -10px;
  9452. margin-right: -10px;
  9453. }
  9454. .row [class*="col-"] {
  9455. padding-left: 10px;
  9456. padding-right: 10px;
  9457. }
  9458. .shift {
  9459. display: none !important;
  9460. }
  9461. .shift.in {
  9462. display: block !important;
  9463. }
  9464. .row-2-phone [class*="col-"] {
  9465. width: 50%;
  9466. float: left
  9467. }
  9468. .row-2-phone .col-newline {
  9469. clear: none
  9470. }
  9471. .row-2-phone li:nth-child(odd) {
  9472. clear: left;
  9473. margin-left: 0
  9474. }
  9475. .visible-xs-inline {
  9476. display: inline-block !important;
  9477. }
  9478. .hidden-xs-only {
  9479. display: none !important;
  9480. }
  9481. .text-center-sm {
  9482. text-align: center;
  9483. }
  9484. .navbar {
  9485. padding: 0
  9486. }
  9487. .navbar-brand {
  9488. float: none;
  9489. display: block;
  9490. margin: 0;
  9491. padding-left: 48px;
  9492. }
  9493. .navbar-avatar .thumb-small {
  9494. margin: 0
  9495. }
  9496. .navbar-nav .open .dropdown-menu {
  9497. position: absolute;
  9498. background-color: #ffffff;
  9499. border: 1px solid #cccccc;
  9500. border: 1px solid rgba(0,0,0,0.15);
  9501. border-radius: 4px;
  9502. -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  9503. box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  9504. background-clip: padding-box;
  9505. }
  9506. .navbar>.btn {
  9507. padding: 11px;
  9508. }
  9509. .navbar-avatar>li>a {
  9510. padding: 5px
  9511. }
  9512. .navbar-form {
  9513. float: none !important;
  9514. float: none;
  9515. border: none;
  9516. }
  9517. .nav-toggle {
  9518. position: absolute;
  9519. left: 0;
  9520. top: 0
  9521. }
  9522. .padder-sm {
  9523. padding-left: 15px;
  9524. padding-right: 15px;
  9525. }
  9526. .h {
  9527. font-size: 150px
  9528. }
  9529. }
  9530. @media (max-width: 440px) {
  9531. .toolbar a {
  9532. width: 25%;
  9533. float: left;
  9534. margin-bottom: 10px
  9535. }
  9536. .toolbar a:nth-child(4n+1) {
  9537. clear: left
  9538. }
  9539. }