coreos.css 175 KB

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