style.min.css 259 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950
  1. /*!
  2. *
  3. * Twitter Bootstrap
  4. *
  5. */
  6. /*!
  7. * Bootstrap v3.4.1 (https://getbootstrap.com/)
  8. * Copyright 2011-2019 Twitter, Inc.
  9. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  10. */
  11. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  12. html {
  13. font-family: sans-serif;
  14. -ms-text-size-adjust: 100%;
  15. -webkit-text-size-adjust: 100%;
  16. }
  17. body {
  18. margin: 0;
  19. }
  20. article,
  21. aside,
  22. details,
  23. figcaption,
  24. figure,
  25. footer,
  26. header,
  27. hgroup,
  28. main,
  29. menu,
  30. nav,
  31. section,
  32. summary {
  33. display: block;
  34. }
  35. audio,
  36. canvas,
  37. progress,
  38. video {
  39. display: inline-block;
  40. vertical-align: baseline;
  41. }
  42. audio:not([controls]) {
  43. display: none;
  44. height: 0;
  45. }
  46. [hidden],
  47. template {
  48. display: none;
  49. }
  50. a {
  51. background-color: transparent;
  52. }
  53. a:active,
  54. a:hover {
  55. outline: 0;
  56. }
  57. abbr[title] {
  58. border-bottom: none;
  59. text-decoration: underline;
  60. text-decoration: underline dotted;
  61. }
  62. b,
  63. strong {
  64. font-weight: bold;
  65. }
  66. dfn {
  67. font-style: italic;
  68. }
  69. h1 {
  70. font-size: 2em;
  71. margin: 0.67em 0;
  72. }
  73. mark {
  74. background: #ff0;
  75. color: #000;
  76. }
  77. small {
  78. font-size: 80%;
  79. }
  80. sub,
  81. sup {
  82. font-size: 75%;
  83. line-height: 0;
  84. position: relative;
  85. vertical-align: baseline;
  86. }
  87. sup {
  88. top: -0.5em;
  89. }
  90. sub {
  91. bottom: -0.25em;
  92. }
  93. img {
  94. border: 0;
  95. }
  96. svg:not(:root) {
  97. overflow: hidden;
  98. }
  99. figure {
  100. margin: 1em 40px;
  101. }
  102. hr {
  103. box-sizing: content-box;
  104. height: 0;
  105. }
  106. pre {
  107. overflow: auto;
  108. }
  109. code,
  110. kbd,
  111. pre,
  112. samp {
  113. font-family: monospace, monospace;
  114. font-size: 1em;
  115. }
  116. button,
  117. input,
  118. optgroup,
  119. select,
  120. textarea {
  121. color: inherit;
  122. font: inherit;
  123. margin: 0;
  124. }
  125. button {
  126. overflow: visible;
  127. }
  128. button,
  129. select {
  130. text-transform: none;
  131. }
  132. button,
  133. html input[type="button"],
  134. input[type="reset"],
  135. input[type="submit"] {
  136. -webkit-appearance: button;
  137. cursor: pointer;
  138. }
  139. button[disabled],
  140. html input[disabled] {
  141. cursor: default;
  142. }
  143. button::-moz-focus-inner,
  144. input::-moz-focus-inner {
  145. border: 0;
  146. padding: 0;
  147. }
  148. input {
  149. line-height: normal;
  150. }
  151. input[type="checkbox"],
  152. input[type="radio"] {
  153. box-sizing: border-box;
  154. padding: 0;
  155. }
  156. input[type="number"]::-webkit-inner-spin-button,
  157. input[type="number"]::-webkit-outer-spin-button {
  158. height: auto;
  159. }
  160. input[type="search"] {
  161. -webkit-appearance: textfield;
  162. box-sizing: content-box;
  163. }
  164. input[type="search"]::-webkit-search-cancel-button,
  165. input[type="search"]::-webkit-search-decoration {
  166. -webkit-appearance: none;
  167. }
  168. fieldset {
  169. border: 1px solid #c0c0c0;
  170. margin: 0 2px;
  171. padding: 0.35em 0.625em 0.75em;
  172. }
  173. legend {
  174. border: 0;
  175. padding: 0;
  176. }
  177. textarea {
  178. overflow: auto;
  179. }
  180. optgroup {
  181. font-weight: bold;
  182. }
  183. table {
  184. border-collapse: collapse;
  185. border-spacing: 0;
  186. }
  187. td,
  188. th {
  189. padding: 0;
  190. }
  191. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  192. @media print {
  193. *,
  194. *:before,
  195. *:after {
  196. text-shadow: none !important;
  197. background: transparent !important;
  198. box-shadow: none !important;
  199. }
  200. a,
  201. a:visited {
  202. text-decoration: underline;
  203. }
  204. a[href]:after {
  205. content: " (" attr(href) ")";
  206. }
  207. abbr[title]:after {
  208. content: " (" attr(title) ")";
  209. }
  210. a[href^="#"]:after,
  211. a[href^="javascript:"]:after {
  212. content: "";
  213. }
  214. pre,
  215. blockquote {
  216. border: 1px solid #999;
  217. page-break-inside: avoid;
  218. }
  219. thead {
  220. display: table-header-group;
  221. }
  222. tr,
  223. img {
  224. page-break-inside: avoid;
  225. }
  226. img {
  227. max-width: 100% !important;
  228. }
  229. p,
  230. h2,
  231. h3 {
  232. orphans: 3;
  233. widows: 3;
  234. }
  235. h2,
  236. h3 {
  237. page-break-after: avoid;
  238. }
  239. .navbar {
  240. display: none;
  241. }
  242. .btn > .caret,
  243. .dropup > .btn > .caret {
  244. border-top-color: #000 !important;
  245. }
  246. .label {
  247. border: 1px solid #000;
  248. }
  249. .table {
  250. border-collapse: collapse !important;
  251. }
  252. .table td,
  253. .table th {
  254. background-color: #fff !important;
  255. }
  256. .table-bordered th,
  257. .table-bordered td {
  258. border: 1px solid #ddd !important;
  259. }
  260. }
  261. @font-face {
  262. font-family: "Glyphicons Halflings";
  263. src: url("../components/bootstrap/fonts/glyphicons-halflings-regular.eot");
  264. src: url("../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.woff") format("woff"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
  265. }
  266. .glyphicon {
  267. position: relative;
  268. top: 1px;
  269. display: inline-block;
  270. font-family: "Glyphicons Halflings";
  271. font-style: normal;
  272. font-weight: 400;
  273. line-height: 1;
  274. -webkit-font-smoothing: antialiased;
  275. -moz-osx-font-smoothing: grayscale;
  276. }
  277. .glyphicon-asterisk:before {
  278. content: "\002a";
  279. }
  280. .glyphicon-plus:before {
  281. content: "\002b";
  282. }
  283. .glyphicon-euro:before,
  284. .glyphicon-eur:before {
  285. content: "\20ac";
  286. }
  287. .glyphicon-minus:before {
  288. content: "\2212";
  289. }
  290. .glyphicon-cloud:before {
  291. content: "\2601";
  292. }
  293. .glyphicon-envelope:before {
  294. content: "\2709";
  295. }
  296. .glyphicon-pencil:before {
  297. content: "\270f";
  298. }
  299. .glyphicon-glass:before {
  300. content: "\e001";
  301. }
  302. .glyphicon-music:before {
  303. content: "\e002";
  304. }
  305. .glyphicon-search:before {
  306. content: "\e003";
  307. }
  308. .glyphicon-heart:before {
  309. content: "\e005";
  310. }
  311. .glyphicon-star:before {
  312. content: "\e006";
  313. }
  314. .glyphicon-star-empty:before {
  315. content: "\e007";
  316. }
  317. .glyphicon-user:before {
  318. content: "\e008";
  319. }
  320. .glyphicon-film:before {
  321. content: "\e009";
  322. }
  323. .glyphicon-th-large:before {
  324. content: "\e010";
  325. }
  326. .glyphicon-th:before {
  327. content: "\e011";
  328. }
  329. .glyphicon-th-list:before {
  330. content: "\e012";
  331. }
  332. .glyphicon-ok:before {
  333. content: "\e013";
  334. }
  335. .glyphicon-remove:before {
  336. content: "\e014";
  337. }
  338. .glyphicon-zoom-in:before {
  339. content: "\e015";
  340. }
  341. .glyphicon-zoom-out:before {
  342. content: "\e016";
  343. }
  344. .glyphicon-off:before {
  345. content: "\e017";
  346. }
  347. .glyphicon-signal:before {
  348. content: "\e018";
  349. }
  350. .glyphicon-cog:before {
  351. content: "\e019";
  352. }
  353. .glyphicon-trash:before {
  354. content: "\e020";
  355. }
  356. .glyphicon-home:before {
  357. content: "\e021";
  358. }
  359. .glyphicon-file:before {
  360. content: "\e022";
  361. }
  362. .glyphicon-time:before {
  363. content: "\e023";
  364. }
  365. .glyphicon-road:before {
  366. content: "\e024";
  367. }
  368. .glyphicon-download-alt:before {
  369. content: "\e025";
  370. }
  371. .glyphicon-download:before {
  372. content: "\e026";
  373. }
  374. .glyphicon-upload:before {
  375. content: "\e027";
  376. }
  377. .glyphicon-inbox:before {
  378. content: "\e028";
  379. }
  380. .glyphicon-play-circle:before {
  381. content: "\e029";
  382. }
  383. .glyphicon-repeat:before {
  384. content: "\e030";
  385. }
  386. .glyphicon-refresh:before {
  387. content: "\e031";
  388. }
  389. .glyphicon-list-alt:before {
  390. content: "\e032";
  391. }
  392. .glyphicon-lock:before {
  393. content: "\e033";
  394. }
  395. .glyphicon-flag:before {
  396. content: "\e034";
  397. }
  398. .glyphicon-headphones:before {
  399. content: "\e035";
  400. }
  401. .glyphicon-volume-off:before {
  402. content: "\e036";
  403. }
  404. .glyphicon-volume-down:before {
  405. content: "\e037";
  406. }
  407. .glyphicon-volume-up:before {
  408. content: "\e038";
  409. }
  410. .glyphicon-qrcode:before {
  411. content: "\e039";
  412. }
  413. .glyphicon-barcode:before {
  414. content: "\e040";
  415. }
  416. .glyphicon-tag:before {
  417. content: "\e041";
  418. }
  419. .glyphicon-tags:before {
  420. content: "\e042";
  421. }
  422. .glyphicon-book:before {
  423. content: "\e043";
  424. }
  425. .glyphicon-bookmark:before {
  426. content: "\e044";
  427. }
  428. .glyphicon-print:before {
  429. content: "\e045";
  430. }
  431. .glyphicon-camera:before {
  432. content: "\e046";
  433. }
  434. .glyphicon-font:before {
  435. content: "\e047";
  436. }
  437. .glyphicon-bold:before {
  438. content: "\e048";
  439. }
  440. .glyphicon-italic:before {
  441. content: "\e049";
  442. }
  443. .glyphicon-text-height:before {
  444. content: "\e050";
  445. }
  446. .glyphicon-text-width:before {
  447. content: "\e051";
  448. }
  449. .glyphicon-align-left:before {
  450. content: "\e052";
  451. }
  452. .glyphicon-align-center:before {
  453. content: "\e053";
  454. }
  455. .glyphicon-align-right:before {
  456. content: "\e054";
  457. }
  458. .glyphicon-align-justify:before {
  459. content: "\e055";
  460. }
  461. .glyphicon-list:before {
  462. content: "\e056";
  463. }
  464. .glyphicon-indent-left:before {
  465. content: "\e057";
  466. }
  467. .glyphicon-indent-right:before {
  468. content: "\e058";
  469. }
  470. .glyphicon-facetime-video:before {
  471. content: "\e059";
  472. }
  473. .glyphicon-picture:before {
  474. content: "\e060";
  475. }
  476. .glyphicon-map-marker:before {
  477. content: "\e062";
  478. }
  479. .glyphicon-adjust:before {
  480. content: "\e063";
  481. }
  482. .glyphicon-tint:before {
  483. content: "\e064";
  484. }
  485. .glyphicon-edit:before {
  486. content: "\e065";
  487. }
  488. .glyphicon-share:before {
  489. content: "\e066";
  490. }
  491. .glyphicon-check:before {
  492. content: "\e067";
  493. }
  494. .glyphicon-move:before {
  495. content: "\e068";
  496. }
  497. .glyphicon-step-backward:before {
  498. content: "\e069";
  499. }
  500. .glyphicon-fast-backward:before {
  501. content: "\e070";
  502. }
  503. .glyphicon-backward:before {
  504. content: "\e071";
  505. }
  506. .glyphicon-play:before {
  507. content: "\e072";
  508. }
  509. .glyphicon-pause:before {
  510. content: "\e073";
  511. }
  512. .glyphicon-stop:before {
  513. content: "\e074";
  514. }
  515. .glyphicon-forward:before {
  516. content: "\e075";
  517. }
  518. .glyphicon-fast-forward:before {
  519. content: "\e076";
  520. }
  521. .glyphicon-step-forward:before {
  522. content: "\e077";
  523. }
  524. .glyphicon-eject:before {
  525. content: "\e078";
  526. }
  527. .glyphicon-chevron-left:before {
  528. content: "\e079";
  529. }
  530. .glyphicon-chevron-right:before {
  531. content: "\e080";
  532. }
  533. .glyphicon-plus-sign:before {
  534. content: "\e081";
  535. }
  536. .glyphicon-minus-sign:before {
  537. content: "\e082";
  538. }
  539. .glyphicon-remove-sign:before {
  540. content: "\e083";
  541. }
  542. .glyphicon-ok-sign:before {
  543. content: "\e084";
  544. }
  545. .glyphicon-question-sign:before {
  546. content: "\e085";
  547. }
  548. .glyphicon-info-sign:before {
  549. content: "\e086";
  550. }
  551. .glyphicon-screenshot:before {
  552. content: "\e087";
  553. }
  554. .glyphicon-remove-circle:before {
  555. content: "\e088";
  556. }
  557. .glyphicon-ok-circle:before {
  558. content: "\e089";
  559. }
  560. .glyphicon-ban-circle:before {
  561. content: "\e090";
  562. }
  563. .glyphicon-arrow-left:before {
  564. content: "\e091";
  565. }
  566. .glyphicon-arrow-right:before {
  567. content: "\e092";
  568. }
  569. .glyphicon-arrow-up:before {
  570. content: "\e093";
  571. }
  572. .glyphicon-arrow-down:before {
  573. content: "\e094";
  574. }
  575. .glyphicon-share-alt:before {
  576. content: "\e095";
  577. }
  578. .glyphicon-resize-full:before {
  579. content: "\e096";
  580. }
  581. .glyphicon-resize-small:before {
  582. content: "\e097";
  583. }
  584. .glyphicon-exclamation-sign:before {
  585. content: "\e101";
  586. }
  587. .glyphicon-gift:before {
  588. content: "\e102";
  589. }
  590. .glyphicon-leaf:before {
  591. content: "\e103";
  592. }
  593. .glyphicon-fire:before {
  594. content: "\e104";
  595. }
  596. .glyphicon-eye-open:before {
  597. content: "\e105";
  598. }
  599. .glyphicon-eye-close:before {
  600. content: "\e106";
  601. }
  602. .glyphicon-warning-sign:before {
  603. content: "\e107";
  604. }
  605. .glyphicon-plane:before {
  606. content: "\e108";
  607. }
  608. .glyphicon-calendar:before {
  609. content: "\e109";
  610. }
  611. .glyphicon-random:before {
  612. content: "\e110";
  613. }
  614. .glyphicon-comment:before {
  615. content: "\e111";
  616. }
  617. .glyphicon-magnet:before {
  618. content: "\e112";
  619. }
  620. .glyphicon-chevron-up:before {
  621. content: "\e113";
  622. }
  623. .glyphicon-chevron-down:before {
  624. content: "\e114";
  625. }
  626. .glyphicon-retweet:before {
  627. content: "\e115";
  628. }
  629. .glyphicon-shopping-cart:before {
  630. content: "\e116";
  631. }
  632. .glyphicon-folder-close:before {
  633. content: "\e117";
  634. }
  635. .glyphicon-folder-open:before {
  636. content: "\e118";
  637. }
  638. .glyphicon-resize-vertical:before {
  639. content: "\e119";
  640. }
  641. .glyphicon-resize-horizontal:before {
  642. content: "\e120";
  643. }
  644. .glyphicon-hdd:before {
  645. content: "\e121";
  646. }
  647. .glyphicon-bullhorn:before {
  648. content: "\e122";
  649. }
  650. .glyphicon-bell:before {
  651. content: "\e123";
  652. }
  653. .glyphicon-certificate:before {
  654. content: "\e124";
  655. }
  656. .glyphicon-thumbs-up:before {
  657. content: "\e125";
  658. }
  659. .glyphicon-thumbs-down:before {
  660. content: "\e126";
  661. }
  662. .glyphicon-hand-right:before {
  663. content: "\e127";
  664. }
  665. .glyphicon-hand-left:before {
  666. content: "\e128";
  667. }
  668. .glyphicon-hand-up:before {
  669. content: "\e129";
  670. }
  671. .glyphicon-hand-down:before {
  672. content: "\e130";
  673. }
  674. .glyphicon-circle-arrow-right:before {
  675. content: "\e131";
  676. }
  677. .glyphicon-circle-arrow-left:before {
  678. content: "\e132";
  679. }
  680. .glyphicon-circle-arrow-up:before {
  681. content: "\e133";
  682. }
  683. .glyphicon-circle-arrow-down:before {
  684. content: "\e134";
  685. }
  686. .glyphicon-globe:before {
  687. content: "\e135";
  688. }
  689. .glyphicon-wrench:before {
  690. content: "\e136";
  691. }
  692. .glyphicon-tasks:before {
  693. content: "\e137";
  694. }
  695. .glyphicon-filter:before {
  696. content: "\e138";
  697. }
  698. .glyphicon-briefcase:before {
  699. content: "\e139";
  700. }
  701. .glyphicon-fullscreen:before {
  702. content: "\e140";
  703. }
  704. .glyphicon-dashboard:before {
  705. content: "\e141";
  706. }
  707. .glyphicon-paperclip:before {
  708. content: "\e142";
  709. }
  710. .glyphicon-heart-empty:before {
  711. content: "\e143";
  712. }
  713. .glyphicon-link:before {
  714. content: "\e144";
  715. }
  716. .glyphicon-phone:before {
  717. content: "\e145";
  718. }
  719. .glyphicon-pushpin:before {
  720. content: "\e146";
  721. }
  722. .glyphicon-usd:before {
  723. content: "\e148";
  724. }
  725. .glyphicon-gbp:before {
  726. content: "\e149";
  727. }
  728. .glyphicon-sort:before {
  729. content: "\e150";
  730. }
  731. .glyphicon-sort-by-alphabet:before {
  732. content: "\e151";
  733. }
  734. .glyphicon-sort-by-alphabet-alt:before {
  735. content: "\e152";
  736. }
  737. .glyphicon-sort-by-order:before {
  738. content: "\e153";
  739. }
  740. .glyphicon-sort-by-order-alt:before {
  741. content: "\e154";
  742. }
  743. .glyphicon-sort-by-attributes:before {
  744. content: "\e155";
  745. }
  746. .glyphicon-sort-by-attributes-alt:before {
  747. content: "\e156";
  748. }
  749. .glyphicon-unchecked:before {
  750. content: "\e157";
  751. }
  752. .glyphicon-expand:before {
  753. content: "\e158";
  754. }
  755. .glyphicon-collapse-down:before {
  756. content: "\e159";
  757. }
  758. .glyphicon-collapse-up:before {
  759. content: "\e160";
  760. }
  761. .glyphicon-log-in:before {
  762. content: "\e161";
  763. }
  764. .glyphicon-flash:before {
  765. content: "\e162";
  766. }
  767. .glyphicon-log-out:before {
  768. content: "\e163";
  769. }
  770. .glyphicon-new-window:before {
  771. content: "\e164";
  772. }
  773. .glyphicon-record:before {
  774. content: "\e165";
  775. }
  776. .glyphicon-save:before {
  777. content: "\e166";
  778. }
  779. .glyphicon-open:before {
  780. content: "\e167";
  781. }
  782. .glyphicon-saved:before {
  783. content: "\e168";
  784. }
  785. .glyphicon-import:before {
  786. content: "\e169";
  787. }
  788. .glyphicon-export:before {
  789. content: "\e170";
  790. }
  791. .glyphicon-send:before {
  792. content: "\e171";
  793. }
  794. .glyphicon-floppy-disk:before {
  795. content: "\e172";
  796. }
  797. .glyphicon-floppy-saved:before {
  798. content: "\e173";
  799. }
  800. .glyphicon-floppy-remove:before {
  801. content: "\e174";
  802. }
  803. .glyphicon-floppy-save:before {
  804. content: "\e175";
  805. }
  806. .glyphicon-floppy-open:before {
  807. content: "\e176";
  808. }
  809. .glyphicon-credit-card:before {
  810. content: "\e177";
  811. }
  812. .glyphicon-transfer:before {
  813. content: "\e178";
  814. }
  815. .glyphicon-cutlery:before {
  816. content: "\e179";
  817. }
  818. .glyphicon-header:before {
  819. content: "\e180";
  820. }
  821. .glyphicon-compressed:before {
  822. content: "\e181";
  823. }
  824. .glyphicon-earphone:before {
  825. content: "\e182";
  826. }
  827. .glyphicon-phone-alt:before {
  828. content: "\e183";
  829. }
  830. .glyphicon-tower:before {
  831. content: "\e184";
  832. }
  833. .glyphicon-stats:before {
  834. content: "\e185";
  835. }
  836. .glyphicon-sd-video:before {
  837. content: "\e186";
  838. }
  839. .glyphicon-hd-video:before {
  840. content: "\e187";
  841. }
  842. .glyphicon-subtitles:before {
  843. content: "\e188";
  844. }
  845. .glyphicon-sound-stereo:before {
  846. content: "\e189";
  847. }
  848. .glyphicon-sound-dolby:before {
  849. content: "\e190";
  850. }
  851. .glyphicon-sound-5-1:before {
  852. content: "\e191";
  853. }
  854. .glyphicon-sound-6-1:before {
  855. content: "\e192";
  856. }
  857. .glyphicon-sound-7-1:before {
  858. content: "\e193";
  859. }
  860. .glyphicon-copyright-mark:before {
  861. content: "\e194";
  862. }
  863. .glyphicon-registration-mark:before {
  864. content: "\e195";
  865. }
  866. .glyphicon-cloud-download:before {
  867. content: "\e197";
  868. }
  869. .glyphicon-cloud-upload:before {
  870. content: "\e198";
  871. }
  872. .glyphicon-tree-conifer:before {
  873. content: "\e199";
  874. }
  875. .glyphicon-tree-deciduous:before {
  876. content: "\e200";
  877. }
  878. .glyphicon-cd:before {
  879. content: "\e201";
  880. }
  881. .glyphicon-save-file:before {
  882. content: "\e202";
  883. }
  884. .glyphicon-open-file:before {
  885. content: "\e203";
  886. }
  887. .glyphicon-level-up:before {
  888. content: "\e204";
  889. }
  890. .glyphicon-copy:before {
  891. content: "\e205";
  892. }
  893. .glyphicon-paste:before {
  894. content: "\e206";
  895. }
  896. .glyphicon-alert:before {
  897. content: "\e209";
  898. }
  899. .glyphicon-equalizer:before {
  900. content: "\e210";
  901. }
  902. .glyphicon-king:before {
  903. content: "\e211";
  904. }
  905. .glyphicon-queen:before {
  906. content: "\e212";
  907. }
  908. .glyphicon-pawn:before {
  909. content: "\e213";
  910. }
  911. .glyphicon-bishop:before {
  912. content: "\e214";
  913. }
  914. .glyphicon-knight:before {
  915. content: "\e215";
  916. }
  917. .glyphicon-baby-formula:before {
  918. content: "\e216";
  919. }
  920. .glyphicon-tent:before {
  921. content: "\26fa";
  922. }
  923. .glyphicon-blackboard:before {
  924. content: "\e218";
  925. }
  926. .glyphicon-bed:before {
  927. content: "\e219";
  928. }
  929. .glyphicon-apple:before {
  930. content: "\f8ff";
  931. }
  932. .glyphicon-erase:before {
  933. content: "\e221";
  934. }
  935. .glyphicon-hourglass:before {
  936. content: "\231b";
  937. }
  938. .glyphicon-lamp:before {
  939. content: "\e223";
  940. }
  941. .glyphicon-duplicate:before {
  942. content: "\e224";
  943. }
  944. .glyphicon-piggy-bank:before {
  945. content: "\e225";
  946. }
  947. .glyphicon-scissors:before {
  948. content: "\e226";
  949. }
  950. .glyphicon-bitcoin:before {
  951. content: "\e227";
  952. }
  953. .glyphicon-btc:before {
  954. content: "\e227";
  955. }
  956. .glyphicon-xbt:before {
  957. content: "\e227";
  958. }
  959. .glyphicon-yen:before {
  960. content: "\00a5";
  961. }
  962. .glyphicon-jpy:before {
  963. content: "\00a5";
  964. }
  965. .glyphicon-ruble:before {
  966. content: "\20bd";
  967. }
  968. .glyphicon-rub:before {
  969. content: "\20bd";
  970. }
  971. .glyphicon-scale:before {
  972. content: "\e230";
  973. }
  974. .glyphicon-ice-lolly:before {
  975. content: "\e231";
  976. }
  977. .glyphicon-ice-lolly-tasted:before {
  978. content: "\e232";
  979. }
  980. .glyphicon-education:before {
  981. content: "\e233";
  982. }
  983. .glyphicon-option-horizontal:before {
  984. content: "\e234";
  985. }
  986. .glyphicon-option-vertical:before {
  987. content: "\e235";
  988. }
  989. .glyphicon-menu-hamburger:before {
  990. content: "\e236";
  991. }
  992. .glyphicon-modal-window:before {
  993. content: "\e237";
  994. }
  995. .glyphicon-oil:before {
  996. content: "\e238";
  997. }
  998. .glyphicon-grain:before {
  999. content: "\e239";
  1000. }
  1001. .glyphicon-sunglasses:before {
  1002. content: "\e240";
  1003. }
  1004. .glyphicon-text-size:before {
  1005. content: "\e241";
  1006. }
  1007. .glyphicon-text-color:before {
  1008. content: "\e242";
  1009. }
  1010. .glyphicon-text-background:before {
  1011. content: "\e243";
  1012. }
  1013. .glyphicon-object-align-top:before {
  1014. content: "\e244";
  1015. }
  1016. .glyphicon-object-align-bottom:before {
  1017. content: "\e245";
  1018. }
  1019. .glyphicon-object-align-horizontal:before {
  1020. content: "\e246";
  1021. }
  1022. .glyphicon-object-align-left:before {
  1023. content: "\e247";
  1024. }
  1025. .glyphicon-object-align-vertical:before {
  1026. content: "\e248";
  1027. }
  1028. .glyphicon-object-align-right:before {
  1029. content: "\e249";
  1030. }
  1031. .glyphicon-triangle-right:before {
  1032. content: "\e250";
  1033. }
  1034. .glyphicon-triangle-left:before {
  1035. content: "\e251";
  1036. }
  1037. .glyphicon-triangle-bottom:before {
  1038. content: "\e252";
  1039. }
  1040. .glyphicon-triangle-top:before {
  1041. content: "\e253";
  1042. }
  1043. .glyphicon-console:before {
  1044. content: "\e254";
  1045. }
  1046. .glyphicon-superscript:before {
  1047. content: "\e255";
  1048. }
  1049. .glyphicon-subscript:before {
  1050. content: "\e256";
  1051. }
  1052. .glyphicon-menu-left:before {
  1053. content: "\e257";
  1054. }
  1055. .glyphicon-menu-right:before {
  1056. content: "\e258";
  1057. }
  1058. .glyphicon-menu-down:before {
  1059. content: "\e259";
  1060. }
  1061. .glyphicon-menu-up:before {
  1062. content: "\e260";
  1063. }
  1064. * {
  1065. -webkit-box-sizing: border-box;
  1066. -moz-box-sizing: border-box;
  1067. box-sizing: border-box;
  1068. }
  1069. *:before,
  1070. *:after {
  1071. -webkit-box-sizing: border-box;
  1072. -moz-box-sizing: border-box;
  1073. box-sizing: border-box;
  1074. }
  1075. html {
  1076. font-size: 10px;
  1077. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1078. }
  1079. body {
  1080. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1081. font-size: 13px;
  1082. line-height: 1.42857143;
  1083. color: #000;
  1084. background-color: #fff;
  1085. }
  1086. input,
  1087. button,
  1088. select,
  1089. textarea {
  1090. font-family: inherit;
  1091. font-size: inherit;
  1092. line-height: inherit;
  1093. }
  1094. a {
  1095. color: #337ab7;
  1096. text-decoration: none;
  1097. }
  1098. a:hover,
  1099. a:focus {
  1100. color: #23527c;
  1101. text-decoration: underline;
  1102. }
  1103. a:focus {
  1104. outline: 5px auto -webkit-focus-ring-color;
  1105. outline-offset: -2px;
  1106. }
  1107. figure {
  1108. margin: 0;
  1109. }
  1110. img {
  1111. vertical-align: middle;
  1112. }
  1113. .img-responsive,
  1114. .thumbnail > img,
  1115. .thumbnail a > img,
  1116. .carousel-inner > .item > img,
  1117. .carousel-inner > .item > a > img {
  1118. display: block;
  1119. max-width: 100%;
  1120. height: auto;
  1121. }
  1122. .img-rounded {
  1123. border-radius: 3px;
  1124. }
  1125. .img-thumbnail {
  1126. padding: 4px;
  1127. line-height: 1.42857143;
  1128. background-color: #fff;
  1129. border: 1px solid #ddd;
  1130. border-radius: 2px;
  1131. -webkit-transition: all 0.2s ease-in-out;
  1132. -o-transition: all 0.2s ease-in-out;
  1133. transition: all 0.2s ease-in-out;
  1134. display: inline-block;
  1135. max-width: 100%;
  1136. height: auto;
  1137. }
  1138. .img-circle {
  1139. border-radius: 50%;
  1140. }
  1141. hr {
  1142. margin-top: 18px;
  1143. margin-bottom: 18px;
  1144. border: 0;
  1145. border-top: 1px solid #eeeeee;
  1146. }
  1147. .sr-only {
  1148. position: absolute;
  1149. width: 1px;
  1150. height: 1px;
  1151. padding: 0;
  1152. margin: -1px;
  1153. overflow: hidden;
  1154. clip: rect(0, 0, 0, 0);
  1155. border: 0;
  1156. }
  1157. .sr-only-focusable:active,
  1158. .sr-only-focusable:focus {
  1159. position: static;
  1160. width: auto;
  1161. height: auto;
  1162. margin: 0;
  1163. overflow: visible;
  1164. clip: auto;
  1165. }
  1166. [role="button"] {
  1167. cursor: pointer;
  1168. }
  1169. h1,
  1170. h2,
  1171. h3,
  1172. h4,
  1173. h5,
  1174. h6,
  1175. .h1,
  1176. .h2,
  1177. .h3,
  1178. .h4,
  1179. .h5,
  1180. .h6 {
  1181. font-family: inherit;
  1182. font-weight: 500;
  1183. line-height: 1.1;
  1184. color: inherit;
  1185. }
  1186. h1 small,
  1187. h2 small,
  1188. h3 small,
  1189. h4 small,
  1190. h5 small,
  1191. h6 small,
  1192. .h1 small,
  1193. .h2 small,
  1194. .h3 small,
  1195. .h4 small,
  1196. .h5 small,
  1197. .h6 small,
  1198. h1 .small,
  1199. h2 .small,
  1200. h3 .small,
  1201. h4 .small,
  1202. h5 .small,
  1203. h6 .small,
  1204. .h1 .small,
  1205. .h2 .small,
  1206. .h3 .small,
  1207. .h4 .small,
  1208. .h5 .small,
  1209. .h6 .small {
  1210. font-weight: 400;
  1211. line-height: 1;
  1212. color: #777777;
  1213. }
  1214. h1,
  1215. .h1,
  1216. h2,
  1217. .h2,
  1218. h3,
  1219. .h3 {
  1220. margin-top: 18px;
  1221. margin-bottom: 9px;
  1222. }
  1223. h1 small,
  1224. .h1 small,
  1225. h2 small,
  1226. .h2 small,
  1227. h3 small,
  1228. .h3 small,
  1229. h1 .small,
  1230. .h1 .small,
  1231. h2 .small,
  1232. .h2 .small,
  1233. h3 .small,
  1234. .h3 .small {
  1235. font-size: 65%;
  1236. }
  1237. h4,
  1238. .h4,
  1239. h5,
  1240. .h5,
  1241. h6,
  1242. .h6 {
  1243. margin-top: 9px;
  1244. margin-bottom: 9px;
  1245. }
  1246. h4 small,
  1247. .h4 small,
  1248. h5 small,
  1249. .h5 small,
  1250. h6 small,
  1251. .h6 small,
  1252. h4 .small,
  1253. .h4 .small,
  1254. h5 .small,
  1255. .h5 .small,
  1256. h6 .small,
  1257. .h6 .small {
  1258. font-size: 75%;
  1259. }
  1260. h1,
  1261. .h1 {
  1262. font-size: 33px;
  1263. }
  1264. h2,
  1265. .h2 {
  1266. font-size: 27px;
  1267. }
  1268. h3,
  1269. .h3 {
  1270. font-size: 23px;
  1271. }
  1272. h4,
  1273. .h4 {
  1274. font-size: 17px;
  1275. }
  1276. h5,
  1277. .h5 {
  1278. font-size: 13px;
  1279. }
  1280. h6,
  1281. .h6 {
  1282. font-size: 12px;
  1283. }
  1284. p {
  1285. margin: 0 0 9px;
  1286. }
  1287. .lead {
  1288. margin-bottom: 18px;
  1289. font-size: 14px;
  1290. font-weight: 300;
  1291. line-height: 1.4;
  1292. }
  1293. @media (min-width: 768px) {
  1294. .lead {
  1295. font-size: 19.5px;
  1296. }
  1297. }
  1298. small,
  1299. .small {
  1300. font-size: 92%;
  1301. }
  1302. mark,
  1303. .mark {
  1304. padding: .2em;
  1305. background-color: #fcf8e3;
  1306. }
  1307. .text-left {
  1308. text-align: left;
  1309. }
  1310. .text-right {
  1311. text-align: right;
  1312. }
  1313. .text-center {
  1314. text-align: center;
  1315. }
  1316. .text-justify {
  1317. text-align: justify;
  1318. }
  1319. .text-nowrap {
  1320. white-space: nowrap;
  1321. }
  1322. .text-lowercase {
  1323. text-transform: lowercase;
  1324. }
  1325. .text-uppercase {
  1326. text-transform: uppercase;
  1327. }
  1328. .text-capitalize {
  1329. text-transform: capitalize;
  1330. }
  1331. .text-muted {
  1332. color: #777777;
  1333. }
  1334. .text-primary {
  1335. color: #337ab7;
  1336. }
  1337. a.text-primary:hover,
  1338. a.text-primary:focus {
  1339. color: #286090;
  1340. }
  1341. .text-success {
  1342. color: #3c763d;
  1343. }
  1344. a.text-success:hover,
  1345. a.text-success:focus {
  1346. color: #2b542c;
  1347. }
  1348. .text-info {
  1349. color: #31708f;
  1350. }
  1351. a.text-info:hover,
  1352. a.text-info:focus {
  1353. color: #245269;
  1354. }
  1355. .text-warning {
  1356. color: #8a6d3b;
  1357. }
  1358. a.text-warning:hover,
  1359. a.text-warning:focus {
  1360. color: #66512c;
  1361. }
  1362. .text-danger {
  1363. color: #a94442;
  1364. }
  1365. a.text-danger:hover,
  1366. a.text-danger:focus {
  1367. color: #843534;
  1368. }
  1369. .bg-primary {
  1370. color: #fff;
  1371. background-color: #337ab7;
  1372. }
  1373. a.bg-primary:hover,
  1374. a.bg-primary:focus {
  1375. background-color: #286090;
  1376. }
  1377. .bg-success {
  1378. background-color: #dff0d8;
  1379. }
  1380. a.bg-success:hover,
  1381. a.bg-success:focus {
  1382. background-color: #c1e2b3;
  1383. }
  1384. .bg-info {
  1385. background-color: #d9edf7;
  1386. }
  1387. a.bg-info:hover,
  1388. a.bg-info:focus {
  1389. background-color: #afd9ee;
  1390. }
  1391. .bg-warning {
  1392. background-color: #fcf8e3;
  1393. }
  1394. a.bg-warning:hover,
  1395. a.bg-warning:focus {
  1396. background-color: #f7ecb5;
  1397. }
  1398. .bg-danger {
  1399. background-color: #f2dede;
  1400. }
  1401. a.bg-danger:hover,
  1402. a.bg-danger:focus {
  1403. background-color: #e4b9b9;
  1404. }
  1405. .page-header {
  1406. padding-bottom: 8px;
  1407. margin: 36px 0 18px;
  1408. border-bottom: 1px solid #eeeeee;
  1409. }
  1410. ul,
  1411. ol {
  1412. margin-top: 0;
  1413. margin-bottom: 9px;
  1414. }
  1415. ul ul,
  1416. ol ul,
  1417. ul ol,
  1418. ol ol {
  1419. margin-bottom: 0;
  1420. }
  1421. .list-unstyled {
  1422. padding-left: 0;
  1423. list-style: none;
  1424. }
  1425. .list-inline {
  1426. padding-left: 0;
  1427. list-style: none;
  1428. margin-left: -5px;
  1429. }
  1430. .list-inline > li {
  1431. display: inline-block;
  1432. padding-right: 5px;
  1433. padding-left: 5px;
  1434. }
  1435. dl {
  1436. margin-top: 0;
  1437. margin-bottom: 18px;
  1438. }
  1439. dt,
  1440. dd {
  1441. line-height: 1.42857143;
  1442. }
  1443. dt {
  1444. font-weight: 700;
  1445. }
  1446. dd {
  1447. margin-left: 0;
  1448. }
  1449. @media (min-width: 541px) {
  1450. .dl-horizontal dt {
  1451. float: left;
  1452. width: 160px;
  1453. clear: left;
  1454. text-align: right;
  1455. overflow: hidden;
  1456. text-overflow: ellipsis;
  1457. white-space: nowrap;
  1458. }
  1459. .dl-horizontal dd {
  1460. margin-left: 180px;
  1461. }
  1462. }
  1463. abbr[title],
  1464. abbr[data-original-title] {
  1465. cursor: help;
  1466. }
  1467. .initialism {
  1468. font-size: 90%;
  1469. text-transform: uppercase;
  1470. }
  1471. blockquote {
  1472. padding: 9px 18px;
  1473. margin: 0 0 18px;
  1474. font-size: inherit;
  1475. border-left: 5px solid #eeeeee;
  1476. }
  1477. blockquote p:last-child,
  1478. blockquote ul:last-child,
  1479. blockquote ol:last-child {
  1480. margin-bottom: 0;
  1481. }
  1482. blockquote footer,
  1483. blockquote small,
  1484. blockquote .small {
  1485. display: block;
  1486. font-size: 80%;
  1487. line-height: 1.42857143;
  1488. color: #777777;
  1489. }
  1490. blockquote footer:before,
  1491. blockquote small:before,
  1492. blockquote .small:before {
  1493. content: "\2014 \00A0";
  1494. }
  1495. .blockquote-reverse,
  1496. blockquote.pull-right {
  1497. padding-right: 15px;
  1498. padding-left: 0;
  1499. text-align: right;
  1500. border-right: 5px solid #eeeeee;
  1501. border-left: 0;
  1502. }
  1503. .blockquote-reverse footer:before,
  1504. blockquote.pull-right footer:before,
  1505. .blockquote-reverse small:before,
  1506. blockquote.pull-right small:before,
  1507. .blockquote-reverse .small:before,
  1508. blockquote.pull-right .small:before {
  1509. content: "";
  1510. }
  1511. .blockquote-reverse footer:after,
  1512. blockquote.pull-right footer:after,
  1513. .blockquote-reverse small:after,
  1514. blockquote.pull-right small:after,
  1515. .blockquote-reverse .small:after,
  1516. blockquote.pull-right .small:after {
  1517. content: "\00A0 \2014";
  1518. }
  1519. address {
  1520. margin-bottom: 18px;
  1521. font-style: normal;
  1522. line-height: 1.42857143;
  1523. }
  1524. code,
  1525. kbd,
  1526. pre,
  1527. samp {
  1528. font-family: monospace;
  1529. }
  1530. code {
  1531. padding: 2px 4px;
  1532. font-size: 90%;
  1533. color: #c7254e;
  1534. background-color: #f9f2f4;
  1535. border-radius: 2px;
  1536. }
  1537. kbd {
  1538. padding: 2px 4px;
  1539. font-size: 90%;
  1540. color: #888;
  1541. background-color: transparent;
  1542. border-radius: 1px;
  1543. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1544. }
  1545. kbd kbd {
  1546. padding: 0;
  1547. font-size: 100%;
  1548. font-weight: 700;
  1549. box-shadow: none;
  1550. }
  1551. pre {
  1552. display: block;
  1553. padding: 8.5px;
  1554. margin: 0 0 9px;
  1555. font-size: 12px;
  1556. line-height: 1.42857143;
  1557. color: #333333;
  1558. word-break: break-all;
  1559. word-wrap: break-word;
  1560. background-color: #f5f5f5;
  1561. border: 1px solid #ccc;
  1562. border-radius: 2px;
  1563. }
  1564. pre code {
  1565. padding: 0;
  1566. font-size: inherit;
  1567. color: inherit;
  1568. white-space: pre-wrap;
  1569. background-color: transparent;
  1570. border-radius: 0;
  1571. }
  1572. .pre-scrollable {
  1573. max-height: 340px;
  1574. overflow-y: scroll;
  1575. }
  1576. .container {
  1577. padding-right: 0px;
  1578. padding-left: 0px;
  1579. margin-right: auto;
  1580. margin-left: auto;
  1581. }
  1582. @media (min-width: 768px) {
  1583. .container {
  1584. width: 768px;
  1585. }
  1586. }
  1587. @media (min-width: 992px) {
  1588. .container {
  1589. width: 940px;
  1590. }
  1591. }
  1592. @media (min-width: 1200px) {
  1593. .container {
  1594. width: 1140px;
  1595. }
  1596. }
  1597. .container-fluid {
  1598. padding-right: 0px;
  1599. padding-left: 0px;
  1600. margin-right: auto;
  1601. margin-left: auto;
  1602. }
  1603. .row {
  1604. margin-right: 0px;
  1605. margin-left: 0px;
  1606. }
  1607. .row-no-gutters {
  1608. margin-right: 0;
  1609. margin-left: 0;
  1610. }
  1611. .row-no-gutters [class*="col-"] {
  1612. padding-right: 0;
  1613. padding-left: 0;
  1614. }
  1615. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1616. position: relative;
  1617. min-height: 1px;
  1618. padding-right: 0px;
  1619. padding-left: 0px;
  1620. }
  1621. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  1622. float: left;
  1623. }
  1624. .col-xs-12 {
  1625. width: 100%;
  1626. }
  1627. .col-xs-11 {
  1628. width: 91.66666667%;
  1629. }
  1630. .col-xs-10 {
  1631. width: 83.33333333%;
  1632. }
  1633. .col-xs-9 {
  1634. width: 75%;
  1635. }
  1636. .col-xs-8 {
  1637. width: 66.66666667%;
  1638. }
  1639. .col-xs-7 {
  1640. width: 58.33333333%;
  1641. }
  1642. .col-xs-6 {
  1643. width: 50%;
  1644. }
  1645. .col-xs-5 {
  1646. width: 41.66666667%;
  1647. }
  1648. .col-xs-4 {
  1649. width: 33.33333333%;
  1650. }
  1651. .col-xs-3 {
  1652. width: 25%;
  1653. }
  1654. .col-xs-2 {
  1655. width: 16.66666667%;
  1656. }
  1657. .col-xs-1 {
  1658. width: 8.33333333%;
  1659. }
  1660. .col-xs-pull-12 {
  1661. right: 100%;
  1662. }
  1663. .col-xs-pull-11 {
  1664. right: 91.66666667%;
  1665. }
  1666. .col-xs-pull-10 {
  1667. right: 83.33333333%;
  1668. }
  1669. .col-xs-pull-9 {
  1670. right: 75%;
  1671. }
  1672. .col-xs-pull-8 {
  1673. right: 66.66666667%;
  1674. }
  1675. .col-xs-pull-7 {
  1676. right: 58.33333333%;
  1677. }
  1678. .col-xs-pull-6 {
  1679. right: 50%;
  1680. }
  1681. .col-xs-pull-5 {
  1682. right: 41.66666667%;
  1683. }
  1684. .col-xs-pull-4 {
  1685. right: 33.33333333%;
  1686. }
  1687. .col-xs-pull-3 {
  1688. right: 25%;
  1689. }
  1690. .col-xs-pull-2 {
  1691. right: 16.66666667%;
  1692. }
  1693. .col-xs-pull-1 {
  1694. right: 8.33333333%;
  1695. }
  1696. .col-xs-pull-0 {
  1697. right: auto;
  1698. }
  1699. .col-xs-push-12 {
  1700. left: 100%;
  1701. }
  1702. .col-xs-push-11 {
  1703. left: 91.66666667%;
  1704. }
  1705. .col-xs-push-10 {
  1706. left: 83.33333333%;
  1707. }
  1708. .col-xs-push-9 {
  1709. left: 75%;
  1710. }
  1711. .col-xs-push-8 {
  1712. left: 66.66666667%;
  1713. }
  1714. .col-xs-push-7 {
  1715. left: 58.33333333%;
  1716. }
  1717. .col-xs-push-6 {
  1718. left: 50%;
  1719. }
  1720. .col-xs-push-5 {
  1721. left: 41.66666667%;
  1722. }
  1723. .col-xs-push-4 {
  1724. left: 33.33333333%;
  1725. }
  1726. .col-xs-push-3 {
  1727. left: 25%;
  1728. }
  1729. .col-xs-push-2 {
  1730. left: 16.66666667%;
  1731. }
  1732. .col-xs-push-1 {
  1733. left: 8.33333333%;
  1734. }
  1735. .col-xs-push-0 {
  1736. left: auto;
  1737. }
  1738. .col-xs-offset-12 {
  1739. margin-left: 100%;
  1740. }
  1741. .col-xs-offset-11 {
  1742. margin-left: 91.66666667%;
  1743. }
  1744. .col-xs-offset-10 {
  1745. margin-left: 83.33333333%;
  1746. }
  1747. .col-xs-offset-9 {
  1748. margin-left: 75%;
  1749. }
  1750. .col-xs-offset-8 {
  1751. margin-left: 66.66666667%;
  1752. }
  1753. .col-xs-offset-7 {
  1754. margin-left: 58.33333333%;
  1755. }
  1756. .col-xs-offset-6 {
  1757. margin-left: 50%;
  1758. }
  1759. .col-xs-offset-5 {
  1760. margin-left: 41.66666667%;
  1761. }
  1762. .col-xs-offset-4 {
  1763. margin-left: 33.33333333%;
  1764. }
  1765. .col-xs-offset-3 {
  1766. margin-left: 25%;
  1767. }
  1768. .col-xs-offset-2 {
  1769. margin-left: 16.66666667%;
  1770. }
  1771. .col-xs-offset-1 {
  1772. margin-left: 8.33333333%;
  1773. }
  1774. .col-xs-offset-0 {
  1775. margin-left: 0%;
  1776. }
  1777. @media (min-width: 768px) {
  1778. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  1779. float: left;
  1780. }
  1781. .col-sm-12 {
  1782. width: 100%;
  1783. }
  1784. .col-sm-11 {
  1785. width: 91.66666667%;
  1786. }
  1787. .col-sm-10 {
  1788. width: 83.33333333%;
  1789. }
  1790. .col-sm-9 {
  1791. width: 75%;
  1792. }
  1793. .col-sm-8 {
  1794. width: 66.66666667%;
  1795. }
  1796. .col-sm-7 {
  1797. width: 58.33333333%;
  1798. }
  1799. .col-sm-6 {
  1800. width: 50%;
  1801. }
  1802. .col-sm-5 {
  1803. width: 41.66666667%;
  1804. }
  1805. .col-sm-4 {
  1806. width: 33.33333333%;
  1807. }
  1808. .col-sm-3 {
  1809. width: 25%;
  1810. }
  1811. .col-sm-2 {
  1812. width: 16.66666667%;
  1813. }
  1814. .col-sm-1 {
  1815. width: 8.33333333%;
  1816. }
  1817. .col-sm-pull-12 {
  1818. right: 100%;
  1819. }
  1820. .col-sm-pull-11 {
  1821. right: 91.66666667%;
  1822. }
  1823. .col-sm-pull-10 {
  1824. right: 83.33333333%;
  1825. }
  1826. .col-sm-pull-9 {
  1827. right: 75%;
  1828. }
  1829. .col-sm-pull-8 {
  1830. right: 66.66666667%;
  1831. }
  1832. .col-sm-pull-7 {
  1833. right: 58.33333333%;
  1834. }
  1835. .col-sm-pull-6 {
  1836. right: 50%;
  1837. }
  1838. .col-sm-pull-5 {
  1839. right: 41.66666667%;
  1840. }
  1841. .col-sm-pull-4 {
  1842. right: 33.33333333%;
  1843. }
  1844. .col-sm-pull-3 {
  1845. right: 25%;
  1846. }
  1847. .col-sm-pull-2 {
  1848. right: 16.66666667%;
  1849. }
  1850. .col-sm-pull-1 {
  1851. right: 8.33333333%;
  1852. }
  1853. .col-sm-pull-0 {
  1854. right: auto;
  1855. }
  1856. .col-sm-push-12 {
  1857. left: 100%;
  1858. }
  1859. .col-sm-push-11 {
  1860. left: 91.66666667%;
  1861. }
  1862. .col-sm-push-10 {
  1863. left: 83.33333333%;
  1864. }
  1865. .col-sm-push-9 {
  1866. left: 75%;
  1867. }
  1868. .col-sm-push-8 {
  1869. left: 66.66666667%;
  1870. }
  1871. .col-sm-push-7 {
  1872. left: 58.33333333%;
  1873. }
  1874. .col-sm-push-6 {
  1875. left: 50%;
  1876. }
  1877. .col-sm-push-5 {
  1878. left: 41.66666667%;
  1879. }
  1880. .col-sm-push-4 {
  1881. left: 33.33333333%;
  1882. }
  1883. .col-sm-push-3 {
  1884. left: 25%;
  1885. }
  1886. .col-sm-push-2 {
  1887. left: 16.66666667%;
  1888. }
  1889. .col-sm-push-1 {
  1890. left: 8.33333333%;
  1891. }
  1892. .col-sm-push-0 {
  1893. left: auto;
  1894. }
  1895. .col-sm-offset-12 {
  1896. margin-left: 100%;
  1897. }
  1898. .col-sm-offset-11 {
  1899. margin-left: 91.66666667%;
  1900. }
  1901. .col-sm-offset-10 {
  1902. margin-left: 83.33333333%;
  1903. }
  1904. .col-sm-offset-9 {
  1905. margin-left: 75%;
  1906. }
  1907. .col-sm-offset-8 {
  1908. margin-left: 66.66666667%;
  1909. }
  1910. .col-sm-offset-7 {
  1911. margin-left: 58.33333333%;
  1912. }
  1913. .col-sm-offset-6 {
  1914. margin-left: 50%;
  1915. }
  1916. .col-sm-offset-5 {
  1917. margin-left: 41.66666667%;
  1918. }
  1919. .col-sm-offset-4 {
  1920. margin-left: 33.33333333%;
  1921. }
  1922. .col-sm-offset-3 {
  1923. margin-left: 25%;
  1924. }
  1925. .col-sm-offset-2 {
  1926. margin-left: 16.66666667%;
  1927. }
  1928. .col-sm-offset-1 {
  1929. margin-left: 8.33333333%;
  1930. }
  1931. .col-sm-offset-0 {
  1932. margin-left: 0%;
  1933. }
  1934. }
  1935. @media (min-width: 992px) {
  1936. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1937. float: left;
  1938. }
  1939. .col-md-12 {
  1940. width: 100%;
  1941. }
  1942. .col-md-11 {
  1943. width: 91.66666667%;
  1944. }
  1945. .col-md-10 {
  1946. width: 83.33333333%;
  1947. }
  1948. .col-md-9 {
  1949. width: 75%;
  1950. }
  1951. .col-md-8 {
  1952. width: 66.66666667%;
  1953. }
  1954. .col-md-7 {
  1955. width: 58.33333333%;
  1956. }
  1957. .col-md-6 {
  1958. width: 50%;
  1959. }
  1960. .col-md-5 {
  1961. width: 41.66666667%;
  1962. }
  1963. .col-md-4 {
  1964. width: 33.33333333%;
  1965. }
  1966. .col-md-3 {
  1967. width: 25%;
  1968. }
  1969. .col-md-2 {
  1970. width: 16.66666667%;
  1971. }
  1972. .col-md-1 {
  1973. width: 8.33333333%;
  1974. }
  1975. .col-md-pull-12 {
  1976. right: 100%;
  1977. }
  1978. .col-md-pull-11 {
  1979. right: 91.66666667%;
  1980. }
  1981. .col-md-pull-10 {
  1982. right: 83.33333333%;
  1983. }
  1984. .col-md-pull-9 {
  1985. right: 75%;
  1986. }
  1987. .col-md-pull-8 {
  1988. right: 66.66666667%;
  1989. }
  1990. .col-md-pull-7 {
  1991. right: 58.33333333%;
  1992. }
  1993. .col-md-pull-6 {
  1994. right: 50%;
  1995. }
  1996. .col-md-pull-5 {
  1997. right: 41.66666667%;
  1998. }
  1999. .col-md-pull-4 {
  2000. right: 33.33333333%;
  2001. }
  2002. .col-md-pull-3 {
  2003. right: 25%;
  2004. }
  2005. .col-md-pull-2 {
  2006. right: 16.66666667%;
  2007. }
  2008. .col-md-pull-1 {
  2009. right: 8.33333333%;
  2010. }
  2011. .col-md-pull-0 {
  2012. right: auto;
  2013. }
  2014. .col-md-push-12 {
  2015. left: 100%;
  2016. }
  2017. .col-md-push-11 {
  2018. left: 91.66666667%;
  2019. }
  2020. .col-md-push-10 {
  2021. left: 83.33333333%;
  2022. }
  2023. .col-md-push-9 {
  2024. left: 75%;
  2025. }
  2026. .col-md-push-8 {
  2027. left: 66.66666667%;
  2028. }
  2029. .col-md-push-7 {
  2030. left: 58.33333333%;
  2031. }
  2032. .col-md-push-6 {
  2033. left: 50%;
  2034. }
  2035. .col-md-push-5 {
  2036. left: 41.66666667%;
  2037. }
  2038. .col-md-push-4 {
  2039. left: 33.33333333%;
  2040. }
  2041. .col-md-push-3 {
  2042. left: 25%;
  2043. }
  2044. .col-md-push-2 {
  2045. left: 16.66666667%;
  2046. }
  2047. .col-md-push-1 {
  2048. left: 8.33333333%;
  2049. }
  2050. .col-md-push-0 {
  2051. left: auto;
  2052. }
  2053. .col-md-offset-12 {
  2054. margin-left: 100%;
  2055. }
  2056. .col-md-offset-11 {
  2057. margin-left: 91.66666667%;
  2058. }
  2059. .col-md-offset-10 {
  2060. margin-left: 83.33333333%;
  2061. }
  2062. .col-md-offset-9 {
  2063. margin-left: 75%;
  2064. }
  2065. .col-md-offset-8 {
  2066. margin-left: 66.66666667%;
  2067. }
  2068. .col-md-offset-7 {
  2069. margin-left: 58.33333333%;
  2070. }
  2071. .col-md-offset-6 {
  2072. margin-left: 50%;
  2073. }
  2074. .col-md-offset-5 {
  2075. margin-left: 41.66666667%;
  2076. }
  2077. .col-md-offset-4 {
  2078. margin-left: 33.33333333%;
  2079. }
  2080. .col-md-offset-3 {
  2081. margin-left: 25%;
  2082. }
  2083. .col-md-offset-2 {
  2084. margin-left: 16.66666667%;
  2085. }
  2086. .col-md-offset-1 {
  2087. margin-left: 8.33333333%;
  2088. }
  2089. .col-md-offset-0 {
  2090. margin-left: 0%;
  2091. }
  2092. }
  2093. @media (min-width: 1200px) {
  2094. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  2095. float: left;
  2096. }
  2097. .col-lg-12 {
  2098. width: 100%;
  2099. }
  2100. .col-lg-11 {
  2101. width: 91.66666667%;
  2102. }
  2103. .col-lg-10 {
  2104. width: 83.33333333%;
  2105. }
  2106. .col-lg-9 {
  2107. width: 75%;
  2108. }
  2109. .col-lg-8 {
  2110. width: 66.66666667%;
  2111. }
  2112. .col-lg-7 {
  2113. width: 58.33333333%;
  2114. }
  2115. .col-lg-6 {
  2116. width: 50%;
  2117. }
  2118. .col-lg-5 {
  2119. width: 41.66666667%;
  2120. }
  2121. .col-lg-4 {
  2122. width: 33.33333333%;
  2123. }
  2124. .col-lg-3 {
  2125. width: 25%;
  2126. }
  2127. .col-lg-2 {
  2128. width: 16.66666667%;
  2129. }
  2130. .col-lg-1 {
  2131. width: 8.33333333%;
  2132. }
  2133. .col-lg-pull-12 {
  2134. right: 100%;
  2135. }
  2136. .col-lg-pull-11 {
  2137. right: 91.66666667%;
  2138. }
  2139. .col-lg-pull-10 {
  2140. right: 83.33333333%;
  2141. }
  2142. .col-lg-pull-9 {
  2143. right: 75%;
  2144. }
  2145. .col-lg-pull-8 {
  2146. right: 66.66666667%;
  2147. }
  2148. .col-lg-pull-7 {
  2149. right: 58.33333333%;
  2150. }
  2151. .col-lg-pull-6 {
  2152. right: 50%;
  2153. }
  2154. .col-lg-pull-5 {
  2155. right: 41.66666667%;
  2156. }
  2157. .col-lg-pull-4 {
  2158. right: 33.33333333%;
  2159. }
  2160. .col-lg-pull-3 {
  2161. right: 25%;
  2162. }
  2163. .col-lg-pull-2 {
  2164. right: 16.66666667%;
  2165. }
  2166. .col-lg-pull-1 {
  2167. right: 8.33333333%;
  2168. }
  2169. .col-lg-pull-0 {
  2170. right: auto;
  2171. }
  2172. .col-lg-push-12 {
  2173. left: 100%;
  2174. }
  2175. .col-lg-push-11 {
  2176. left: 91.66666667%;
  2177. }
  2178. .col-lg-push-10 {
  2179. left: 83.33333333%;
  2180. }
  2181. .col-lg-push-9 {
  2182. left: 75%;
  2183. }
  2184. .col-lg-push-8 {
  2185. left: 66.66666667%;
  2186. }
  2187. .col-lg-push-7 {
  2188. left: 58.33333333%;
  2189. }
  2190. .col-lg-push-6 {
  2191. left: 50%;
  2192. }
  2193. .col-lg-push-5 {
  2194. left: 41.66666667%;
  2195. }
  2196. .col-lg-push-4 {
  2197. left: 33.33333333%;
  2198. }
  2199. .col-lg-push-3 {
  2200. left: 25%;
  2201. }
  2202. .col-lg-push-2 {
  2203. left: 16.66666667%;
  2204. }
  2205. .col-lg-push-1 {
  2206. left: 8.33333333%;
  2207. }
  2208. .col-lg-push-0 {
  2209. left: auto;
  2210. }
  2211. .col-lg-offset-12 {
  2212. margin-left: 100%;
  2213. }
  2214. .col-lg-offset-11 {
  2215. margin-left: 91.66666667%;
  2216. }
  2217. .col-lg-offset-10 {
  2218. margin-left: 83.33333333%;
  2219. }
  2220. .col-lg-offset-9 {
  2221. margin-left: 75%;
  2222. }
  2223. .col-lg-offset-8 {
  2224. margin-left: 66.66666667%;
  2225. }
  2226. .col-lg-offset-7 {
  2227. margin-left: 58.33333333%;
  2228. }
  2229. .col-lg-offset-6 {
  2230. margin-left: 50%;
  2231. }
  2232. .col-lg-offset-5 {
  2233. margin-left: 41.66666667%;
  2234. }
  2235. .col-lg-offset-4 {
  2236. margin-left: 33.33333333%;
  2237. }
  2238. .col-lg-offset-3 {
  2239. margin-left: 25%;
  2240. }
  2241. .col-lg-offset-2 {
  2242. margin-left: 16.66666667%;
  2243. }
  2244. .col-lg-offset-1 {
  2245. margin-left: 8.33333333%;
  2246. }
  2247. .col-lg-offset-0 {
  2248. margin-left: 0%;
  2249. }
  2250. }
  2251. table {
  2252. background-color: transparent;
  2253. }
  2254. table col[class*="col-"] {
  2255. position: static;
  2256. display: table-column;
  2257. float: none;
  2258. }
  2259. table td[class*="col-"],
  2260. table th[class*="col-"] {
  2261. position: static;
  2262. display: table-cell;
  2263. float: none;
  2264. }
  2265. caption {
  2266. padding-top: 8px;
  2267. padding-bottom: 8px;
  2268. color: #777777;
  2269. text-align: left;
  2270. }
  2271. th {
  2272. text-align: left;
  2273. }
  2274. .table {
  2275. width: 100%;
  2276. max-width: 100%;
  2277. margin-bottom: 18px;
  2278. }
  2279. .table > thead > tr > th,
  2280. .table > tbody > tr > th,
  2281. .table > tfoot > tr > th,
  2282. .table > thead > tr > td,
  2283. .table > tbody > tr > td,
  2284. .table > tfoot > tr > td {
  2285. padding: 8px;
  2286. line-height: 1.42857143;
  2287. vertical-align: top;
  2288. border-top: 1px solid #ddd;
  2289. }
  2290. .table > thead > tr > th {
  2291. vertical-align: bottom;
  2292. border-bottom: 2px solid #ddd;
  2293. }
  2294. .table > caption + thead > tr:first-child > th,
  2295. .table > colgroup + thead > tr:first-child > th,
  2296. .table > thead:first-child > tr:first-child > th,
  2297. .table > caption + thead > tr:first-child > td,
  2298. .table > colgroup + thead > tr:first-child > td,
  2299. .table > thead:first-child > tr:first-child > td {
  2300. border-top: 0;
  2301. }
  2302. .table > tbody + tbody {
  2303. border-top: 2px solid #ddd;
  2304. }
  2305. .table .table {
  2306. background-color: #fff;
  2307. }
  2308. .table-condensed > thead > tr > th,
  2309. .table-condensed > tbody > tr > th,
  2310. .table-condensed > tfoot > tr > th,
  2311. .table-condensed > thead > tr > td,
  2312. .table-condensed > tbody > tr > td,
  2313. .table-condensed > tfoot > tr > td {
  2314. padding: 5px;
  2315. }
  2316. .table-bordered {
  2317. border: 1px solid #ddd;
  2318. }
  2319. .table-bordered > thead > tr > th,
  2320. .table-bordered > tbody > tr > th,
  2321. .table-bordered > tfoot > tr > th,
  2322. .table-bordered > thead > tr > td,
  2323. .table-bordered > tbody > tr > td,
  2324. .table-bordered > tfoot > tr > td {
  2325. border: 1px solid #ddd;
  2326. }
  2327. .table-bordered > thead > tr > th,
  2328. .table-bordered > thead > tr > td {
  2329. border-bottom-width: 2px;
  2330. }
  2331. .table-striped > tbody > tr:nth-of-type(odd) {
  2332. background-color: #f9f9f9;
  2333. }
  2334. .table-hover > tbody > tr:hover {
  2335. background-color: #f5f5f5;
  2336. }
  2337. .table > thead > tr > td.active,
  2338. .table > tbody > tr > td.active,
  2339. .table > tfoot > tr > td.active,
  2340. .table > thead > tr > th.active,
  2341. .table > tbody > tr > th.active,
  2342. .table > tfoot > tr > th.active,
  2343. .table > thead > tr.active > td,
  2344. .table > tbody > tr.active > td,
  2345. .table > tfoot > tr.active > td,
  2346. .table > thead > tr.active > th,
  2347. .table > tbody > tr.active > th,
  2348. .table > tfoot > tr.active > th {
  2349. background-color: #f5f5f5;
  2350. }
  2351. .table-hover > tbody > tr > td.active:hover,
  2352. .table-hover > tbody > tr > th.active:hover,
  2353. .table-hover > tbody > tr.active:hover > td,
  2354. .table-hover > tbody > tr:hover > .active,
  2355. .table-hover > tbody > tr.active:hover > th {
  2356. background-color: #e8e8e8;
  2357. }
  2358. .table > thead > tr > td.success,
  2359. .table > tbody > tr > td.success,
  2360. .table > tfoot > tr > td.success,
  2361. .table > thead > tr > th.success,
  2362. .table > tbody > tr > th.success,
  2363. .table > tfoot > tr > th.success,
  2364. .table > thead > tr.success > td,
  2365. .table > tbody > tr.success > td,
  2366. .table > tfoot > tr.success > td,
  2367. .table > thead > tr.success > th,
  2368. .table > tbody > tr.success > th,
  2369. .table > tfoot > tr.success > th {
  2370. background-color: #dff0d8;
  2371. }
  2372. .table-hover > tbody > tr > td.success:hover,
  2373. .table-hover > tbody > tr > th.success:hover,
  2374. .table-hover > tbody > tr.success:hover > td,
  2375. .table-hover > tbody > tr:hover > .success,
  2376. .table-hover > tbody > tr.success:hover > th {
  2377. background-color: #d0e9c6;
  2378. }
  2379. .table > thead > tr > td.info,
  2380. .table > tbody > tr > td.info,
  2381. .table > tfoot > tr > td.info,
  2382. .table > thead > tr > th.info,
  2383. .table > tbody > tr > th.info,
  2384. .table > tfoot > tr > th.info,
  2385. .table > thead > tr.info > td,
  2386. .table > tbody > tr.info > td,
  2387. .table > tfoot > tr.info > td,
  2388. .table > thead > tr.info > th,
  2389. .table > tbody > tr.info > th,
  2390. .table > tfoot > tr.info > th {
  2391. background-color: #d9edf7;
  2392. }
  2393. .table-hover > tbody > tr > td.info:hover,
  2394. .table-hover > tbody > tr > th.info:hover,
  2395. .table-hover > tbody > tr.info:hover > td,
  2396. .table-hover > tbody > tr:hover > .info,
  2397. .table-hover > tbody > tr.info:hover > th {
  2398. background-color: #c4e3f3;
  2399. }
  2400. .table > thead > tr > td.warning,
  2401. .table > tbody > tr > td.warning,
  2402. .table > tfoot > tr > td.warning,
  2403. .table > thead > tr > th.warning,
  2404. .table > tbody > tr > th.warning,
  2405. .table > tfoot > tr > th.warning,
  2406. .table > thead > tr.warning > td,
  2407. .table > tbody > tr.warning > td,
  2408. .table > tfoot > tr.warning > td,
  2409. .table > thead > tr.warning > th,
  2410. .table > tbody > tr.warning > th,
  2411. .table > tfoot > tr.warning > th {
  2412. background-color: #fcf8e3;
  2413. }
  2414. .table-hover > tbody > tr > td.warning:hover,
  2415. .table-hover > tbody > tr > th.warning:hover,
  2416. .table-hover > tbody > tr.warning:hover > td,
  2417. .table-hover > tbody > tr:hover > .warning,
  2418. .table-hover > tbody > tr.warning:hover > th {
  2419. background-color: #faf2cc;
  2420. }
  2421. .table > thead > tr > td.danger,
  2422. .table > tbody > tr > td.danger,
  2423. .table > tfoot > tr > td.danger,
  2424. .table > thead > tr > th.danger,
  2425. .table > tbody > tr > th.danger,
  2426. .table > tfoot > tr > th.danger,
  2427. .table > thead > tr.danger > td,
  2428. .table > tbody > tr.danger > td,
  2429. .table > tfoot > tr.danger > td,
  2430. .table > thead > tr.danger > th,
  2431. .table > tbody > tr.danger > th,
  2432. .table > tfoot > tr.danger > th {
  2433. background-color: #f2dede;
  2434. }
  2435. .table-hover > tbody > tr > td.danger:hover,
  2436. .table-hover > tbody > tr > th.danger:hover,
  2437. .table-hover > tbody > tr.danger:hover > td,
  2438. .table-hover > tbody > tr:hover > .danger,
  2439. .table-hover > tbody > tr.danger:hover > th {
  2440. background-color: #ebcccc;
  2441. }
  2442. .table-responsive {
  2443. min-height: .01%;
  2444. overflow-x: auto;
  2445. }
  2446. @media screen and (max-width: 767px) {
  2447. .table-responsive {
  2448. width: 100%;
  2449. margin-bottom: 13.5px;
  2450. overflow-y: hidden;
  2451. -ms-overflow-style: -ms-autohiding-scrollbar;
  2452. border: 1px solid #ddd;
  2453. }
  2454. .table-responsive > .table {
  2455. margin-bottom: 0;
  2456. }
  2457. .table-responsive > .table > thead > tr > th,
  2458. .table-responsive > .table > tbody > tr > th,
  2459. .table-responsive > .table > tfoot > tr > th,
  2460. .table-responsive > .table > thead > tr > td,
  2461. .table-responsive > .table > tbody > tr > td,
  2462. .table-responsive > .table > tfoot > tr > td {
  2463. white-space: nowrap;
  2464. }
  2465. .table-responsive > .table-bordered {
  2466. border: 0;
  2467. }
  2468. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2469. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2470. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2471. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2472. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2473. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2474. border-left: 0;
  2475. }
  2476. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2477. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2478. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2479. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2480. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2481. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2482. border-right: 0;
  2483. }
  2484. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2485. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2486. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2487. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2488. border-bottom: 0;
  2489. }
  2490. }
  2491. fieldset {
  2492. min-width: 0;
  2493. padding: 0;
  2494. margin: 0;
  2495. border: 0;
  2496. }
  2497. legend {
  2498. display: block;
  2499. width: 100%;
  2500. padding: 0;
  2501. margin-bottom: 18px;
  2502. font-size: 19.5px;
  2503. line-height: inherit;
  2504. color: #333333;
  2505. border: 0;
  2506. border-bottom: 1px solid #e5e5e5;
  2507. }
  2508. label {
  2509. display: inline-block;
  2510. max-width: 100%;
  2511. margin-bottom: 5px;
  2512. font-weight: 700;
  2513. }
  2514. input[type="search"] {
  2515. -webkit-box-sizing: border-box;
  2516. -moz-box-sizing: border-box;
  2517. box-sizing: border-box;
  2518. -webkit-appearance: none;
  2519. appearance: none;
  2520. }
  2521. input[type="radio"],
  2522. input[type="checkbox"] {
  2523. margin: 4px 0 0;
  2524. margin-top: 1px \9;
  2525. line-height: normal;
  2526. }
  2527. input[type="radio"][disabled],
  2528. input[type="checkbox"][disabled],
  2529. input[type="radio"].disabled,
  2530. input[type="checkbox"].disabled,
  2531. fieldset[disabled] input[type="radio"],
  2532. fieldset[disabled] input[type="checkbox"] {
  2533. cursor: not-allowed;
  2534. }
  2535. input[type="file"] {
  2536. display: block;
  2537. }
  2538. input[type="range"] {
  2539. display: block;
  2540. width: 100%;
  2541. }
  2542. select[multiple],
  2543. select[size] {
  2544. height: auto;
  2545. }
  2546. input[type="file"]:focus,
  2547. input[type="radio"]:focus,
  2548. input[type="checkbox"]:focus {
  2549. outline: 5px auto -webkit-focus-ring-color;
  2550. outline-offset: -2px;
  2551. }
  2552. output {
  2553. display: block;
  2554. padding-top: 7px;
  2555. font-size: 13px;
  2556. line-height: 1.42857143;
  2557. color: #555555;
  2558. }
  2559. .form-control {
  2560. display: block;
  2561. width: 100%;
  2562. height: 32px;
  2563. padding: 6px 12px;
  2564. font-size: 13px;
  2565. line-height: 1.42857143;
  2566. color: #555555;
  2567. background-color: #fff;
  2568. background-image: none;
  2569. border: 1px solid #ccc;
  2570. border-radius: 2px;
  2571. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2572. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2573. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2574. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2575. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2576. }
  2577. .form-control:focus {
  2578. border-color: #66afe9;
  2579. outline: 0;
  2580. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  2581. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  2582. }
  2583. .form-control::-moz-placeholder {
  2584. color: #999;
  2585. opacity: 1;
  2586. }
  2587. .form-control:-ms-input-placeholder {
  2588. color: #999;
  2589. }
  2590. .form-control::-webkit-input-placeholder {
  2591. color: #999;
  2592. }
  2593. .form-control::-ms-expand {
  2594. background-color: transparent;
  2595. border: 0;
  2596. }
  2597. .form-control[disabled],
  2598. .form-control[readonly],
  2599. fieldset[disabled] .form-control {
  2600. background-color: #eeeeee;
  2601. opacity: 1;
  2602. }
  2603. .form-control[disabled],
  2604. fieldset[disabled] .form-control {
  2605. cursor: not-allowed;
  2606. }
  2607. textarea.form-control {
  2608. height: auto;
  2609. }
  2610. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2611. input[type="date"].form-control,
  2612. input[type="time"].form-control,
  2613. input[type="datetime-local"].form-control,
  2614. input[type="month"].form-control {
  2615. line-height: 32px;
  2616. }
  2617. input[type="date"].input-sm,
  2618. input[type="time"].input-sm,
  2619. input[type="datetime-local"].input-sm,
  2620. input[type="month"].input-sm,
  2621. .input-group-sm input[type="date"],
  2622. .input-group-sm input[type="time"],
  2623. .input-group-sm input[type="datetime-local"],
  2624. .input-group-sm input[type="month"] {
  2625. line-height: 30px;
  2626. }
  2627. input[type="date"].input-lg,
  2628. input[type="time"].input-lg,
  2629. input[type="datetime-local"].input-lg,
  2630. input[type="month"].input-lg,
  2631. .input-group-lg input[type="date"],
  2632. .input-group-lg input[type="time"],
  2633. .input-group-lg input[type="datetime-local"],
  2634. .input-group-lg input[type="month"] {
  2635. line-height: 45px;
  2636. }
  2637. }
  2638. .form-group {
  2639. margin-bottom: 15px;
  2640. }
  2641. .radio,
  2642. .checkbox {
  2643. position: relative;
  2644. display: block;
  2645. margin-top: 10px;
  2646. margin-bottom: 10px;
  2647. }
  2648. .radio.disabled label,
  2649. .checkbox.disabled label,
  2650. fieldset[disabled] .radio label,
  2651. fieldset[disabled] .checkbox label {
  2652. cursor: not-allowed;
  2653. }
  2654. .radio label,
  2655. .checkbox label {
  2656. min-height: 18px;
  2657. padding-left: 20px;
  2658. margin-bottom: 0;
  2659. font-weight: 400;
  2660. cursor: pointer;
  2661. }
  2662. .radio input[type="radio"],
  2663. .radio-inline input[type="radio"],
  2664. .checkbox input[type="checkbox"],
  2665. .checkbox-inline input[type="checkbox"] {
  2666. position: absolute;
  2667. margin-top: 4px \9;
  2668. margin-left: -20px;
  2669. }
  2670. .radio + .radio,
  2671. .checkbox + .checkbox {
  2672. margin-top: -5px;
  2673. }
  2674. .radio-inline,
  2675. .checkbox-inline {
  2676. position: relative;
  2677. display: inline-block;
  2678. padding-left: 20px;
  2679. margin-bottom: 0;
  2680. font-weight: 400;
  2681. vertical-align: middle;
  2682. cursor: pointer;
  2683. }
  2684. .radio-inline.disabled,
  2685. .checkbox-inline.disabled,
  2686. fieldset[disabled] .radio-inline,
  2687. fieldset[disabled] .checkbox-inline {
  2688. cursor: not-allowed;
  2689. }
  2690. .radio-inline + .radio-inline,
  2691. .checkbox-inline + .checkbox-inline {
  2692. margin-top: 0;
  2693. margin-left: 10px;
  2694. }
  2695. .form-control-static {
  2696. min-height: 31px;
  2697. padding-top: 7px;
  2698. padding-bottom: 7px;
  2699. margin-bottom: 0;
  2700. }
  2701. .form-control-static.input-lg,
  2702. .form-control-static.input-sm {
  2703. padding-right: 0;
  2704. padding-left: 0;
  2705. }
  2706. .input-sm {
  2707. height: 30px;
  2708. padding: 5px 10px;
  2709. font-size: 12px;
  2710. line-height: 1.5;
  2711. border-radius: 1px;
  2712. }
  2713. select.input-sm {
  2714. height: 30px;
  2715. line-height: 30px;
  2716. }
  2717. textarea.input-sm,
  2718. select[multiple].input-sm {
  2719. height: auto;
  2720. }
  2721. .form-group-sm .form-control {
  2722. height: 30px;
  2723. padding: 5px 10px;
  2724. font-size: 12px;
  2725. line-height: 1.5;
  2726. border-radius: 1px;
  2727. }
  2728. .form-group-sm select.form-control {
  2729. height: 30px;
  2730. line-height: 30px;
  2731. }
  2732. .form-group-sm textarea.form-control,
  2733. .form-group-sm select[multiple].form-control {
  2734. height: auto;
  2735. }
  2736. .form-group-sm .form-control-static {
  2737. height: 30px;
  2738. min-height: 30px;
  2739. padding: 6px 10px;
  2740. font-size: 12px;
  2741. line-height: 1.5;
  2742. }
  2743. .input-lg {
  2744. height: 45px;
  2745. padding: 10px 16px;
  2746. font-size: 17px;
  2747. line-height: 1.3333333;
  2748. border-radius: 3px;
  2749. }
  2750. select.input-lg {
  2751. height: 45px;
  2752. line-height: 45px;
  2753. }
  2754. textarea.input-lg,
  2755. select[multiple].input-lg {
  2756. height: auto;
  2757. }
  2758. .form-group-lg .form-control {
  2759. height: 45px;
  2760. padding: 10px 16px;
  2761. font-size: 17px;
  2762. line-height: 1.3333333;
  2763. border-radius: 3px;
  2764. }
  2765. .form-group-lg select.form-control {
  2766. height: 45px;
  2767. line-height: 45px;
  2768. }
  2769. .form-group-lg textarea.form-control,
  2770. .form-group-lg select[multiple].form-control {
  2771. height: auto;
  2772. }
  2773. .form-group-lg .form-control-static {
  2774. height: 45px;
  2775. min-height: 35px;
  2776. padding: 11px 16px;
  2777. font-size: 17px;
  2778. line-height: 1.3333333;
  2779. }
  2780. .has-feedback {
  2781. position: relative;
  2782. }
  2783. .has-feedback .form-control {
  2784. padding-right: 40px;
  2785. }
  2786. .form-control-feedback {
  2787. position: absolute;
  2788. top: 0;
  2789. right: 0;
  2790. z-index: 2;
  2791. display: block;
  2792. width: 32px;
  2793. height: 32px;
  2794. line-height: 32px;
  2795. text-align: center;
  2796. pointer-events: none;
  2797. }
  2798. .input-lg + .form-control-feedback,
  2799. .input-group-lg + .form-control-feedback,
  2800. .form-group-lg .form-control + .form-control-feedback {
  2801. width: 45px;
  2802. height: 45px;
  2803. line-height: 45px;
  2804. }
  2805. .input-sm + .form-control-feedback,
  2806. .input-group-sm + .form-control-feedback,
  2807. .form-group-sm .form-control + .form-control-feedback {
  2808. width: 30px;
  2809. height: 30px;
  2810. line-height: 30px;
  2811. }
  2812. .has-success .help-block,
  2813. .has-success .control-label,
  2814. .has-success .radio,
  2815. .has-success .checkbox,
  2816. .has-success .radio-inline,
  2817. .has-success .checkbox-inline,
  2818. .has-success.radio label,
  2819. .has-success.checkbox label,
  2820. .has-success.radio-inline label,
  2821. .has-success.checkbox-inline label {
  2822. color: #3c763d;
  2823. }
  2824. .has-success .form-control {
  2825. border-color: #3c763d;
  2826. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2827. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2828. }
  2829. .has-success .form-control:focus {
  2830. border-color: #2b542c;
  2831. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2832. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2833. }
  2834. .has-success .input-group-addon {
  2835. color: #3c763d;
  2836. background-color: #dff0d8;
  2837. border-color: #3c763d;
  2838. }
  2839. .has-success .form-control-feedback {
  2840. color: #3c763d;
  2841. }
  2842. .has-warning .help-block,
  2843. .has-warning .control-label,
  2844. .has-warning .radio,
  2845. .has-warning .checkbox,
  2846. .has-warning .radio-inline,
  2847. .has-warning .checkbox-inline,
  2848. .has-warning.radio label,
  2849. .has-warning.checkbox label,
  2850. .has-warning.radio-inline label,
  2851. .has-warning.checkbox-inline label {
  2852. color: #8a6d3b;
  2853. }
  2854. .has-warning .form-control {
  2855. border-color: #8a6d3b;
  2856. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2857. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2858. }
  2859. .has-warning .form-control:focus {
  2860. border-color: #66512c;
  2861. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2862. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2863. }
  2864. .has-warning .input-group-addon {
  2865. color: #8a6d3b;
  2866. background-color: #fcf8e3;
  2867. border-color: #8a6d3b;
  2868. }
  2869. .has-warning .form-control-feedback {
  2870. color: #8a6d3b;
  2871. }
  2872. .has-error .help-block,
  2873. .has-error .control-label,
  2874. .has-error .radio,
  2875. .has-error .checkbox,
  2876. .has-error .radio-inline,
  2877. .has-error .checkbox-inline,
  2878. .has-error.radio label,
  2879. .has-error.checkbox label,
  2880. .has-error.radio-inline label,
  2881. .has-error.checkbox-inline label {
  2882. color: #a94442;
  2883. }
  2884. .has-error .form-control {
  2885. border-color: #a94442;
  2886. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2887. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2888. }
  2889. .has-error .form-control:focus {
  2890. border-color: #843534;
  2891. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2892. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2893. }
  2894. .has-error .input-group-addon {
  2895. color: #a94442;
  2896. background-color: #f2dede;
  2897. border-color: #a94442;
  2898. }
  2899. .has-error .form-control-feedback {
  2900. color: #a94442;
  2901. }
  2902. .has-feedback label ~ .form-control-feedback {
  2903. top: 23px;
  2904. }
  2905. .has-feedback label.sr-only ~ .form-control-feedback {
  2906. top: 0;
  2907. }
  2908. .help-block {
  2909. display: block;
  2910. margin-top: 5px;
  2911. margin-bottom: 10px;
  2912. color: #404040;
  2913. }
  2914. @media (min-width: 768px) {
  2915. .form-inline .form-group {
  2916. display: inline-block;
  2917. margin-bottom: 0;
  2918. vertical-align: middle;
  2919. }
  2920. .form-inline .form-control {
  2921. display: inline-block;
  2922. width: auto;
  2923. vertical-align: middle;
  2924. }
  2925. .form-inline .form-control-static {
  2926. display: inline-block;
  2927. }
  2928. .form-inline .input-group {
  2929. display: inline-table;
  2930. vertical-align: middle;
  2931. }
  2932. .form-inline .input-group .input-group-addon,
  2933. .form-inline .input-group .input-group-btn,
  2934. .form-inline .input-group .form-control {
  2935. width: auto;
  2936. }
  2937. .form-inline .input-group > .form-control {
  2938. width: 100%;
  2939. }
  2940. .form-inline .control-label {
  2941. margin-bottom: 0;
  2942. vertical-align: middle;
  2943. }
  2944. .form-inline .radio,
  2945. .form-inline .checkbox {
  2946. display: inline-block;
  2947. margin-top: 0;
  2948. margin-bottom: 0;
  2949. vertical-align: middle;
  2950. }
  2951. .form-inline .radio label,
  2952. .form-inline .checkbox label {
  2953. padding-left: 0;
  2954. }
  2955. .form-inline .radio input[type="radio"],
  2956. .form-inline .checkbox input[type="checkbox"] {
  2957. position: relative;
  2958. margin-left: 0;
  2959. }
  2960. .form-inline .has-feedback .form-control-feedback {
  2961. top: 0;
  2962. }
  2963. }
  2964. .form-horizontal .radio,
  2965. .form-horizontal .checkbox,
  2966. .form-horizontal .radio-inline,
  2967. .form-horizontal .checkbox-inline {
  2968. padding-top: 7px;
  2969. margin-top: 0;
  2970. margin-bottom: 0;
  2971. }
  2972. .form-horizontal .radio,
  2973. .form-horizontal .checkbox {
  2974. min-height: 25px;
  2975. }
  2976. .form-horizontal .form-group {
  2977. margin-right: 0px;
  2978. margin-left: 0px;
  2979. }
  2980. @media (min-width: 768px) {
  2981. .form-horizontal .control-label {
  2982. padding-top: 7px;
  2983. margin-bottom: 0;
  2984. text-align: right;
  2985. }
  2986. }
  2987. .form-horizontal .has-feedback .form-control-feedback {
  2988. right: 0px;
  2989. }
  2990. @media (min-width: 768px) {
  2991. .form-horizontal .form-group-lg .control-label {
  2992. padding-top: 11px;
  2993. font-size: 17px;
  2994. }
  2995. }
  2996. @media (min-width: 768px) {
  2997. .form-horizontal .form-group-sm .control-label {
  2998. padding-top: 6px;
  2999. font-size: 12px;
  3000. }
  3001. }
  3002. .btn {
  3003. display: inline-block;
  3004. margin-bottom: 0;
  3005. font-weight: normal;
  3006. text-align: center;
  3007. white-space: nowrap;
  3008. vertical-align: middle;
  3009. touch-action: manipulation;
  3010. cursor: pointer;
  3011. background-image: none;
  3012. border: 1px solid transparent;
  3013. padding: 6px 12px;
  3014. font-size: 13px;
  3015. line-height: 1.42857143;
  3016. border-radius: 2px;
  3017. -webkit-user-select: none;
  3018. -moz-user-select: none;
  3019. -ms-user-select: none;
  3020. user-select: none;
  3021. }
  3022. .btn:focus,
  3023. .btn:active:focus,
  3024. .btn.active:focus,
  3025. .btn.focus,
  3026. .btn:active.focus,
  3027. .btn.active.focus {
  3028. outline: 5px auto -webkit-focus-ring-color;
  3029. outline-offset: -2px;
  3030. }
  3031. .btn:hover,
  3032. .btn:focus,
  3033. .btn.focus {
  3034. color: #333;
  3035. text-decoration: none;
  3036. }
  3037. .btn:active,
  3038. .btn.active {
  3039. background-image: none;
  3040. outline: 0;
  3041. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3042. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3043. }
  3044. .btn.disabled,
  3045. .btn[disabled],
  3046. fieldset[disabled] .btn {
  3047. cursor: not-allowed;
  3048. filter: alpha(opacity=65);
  3049. opacity: 0.65;
  3050. -webkit-box-shadow: none;
  3051. box-shadow: none;
  3052. }
  3053. a.btn.disabled,
  3054. fieldset[disabled] a.btn {
  3055. pointer-events: none;
  3056. }
  3057. .btn-default {
  3058. color: #333;
  3059. background-color: #fff;
  3060. border-color: #ccc;
  3061. }
  3062. .btn-default:focus,
  3063. .btn-default.focus {
  3064. color: #333;
  3065. background-color: #e6e6e6;
  3066. border-color: #8c8c8c;
  3067. }
  3068. .btn-default:hover {
  3069. color: #333;
  3070. background-color: #e6e6e6;
  3071. border-color: #adadad;
  3072. }
  3073. .btn-default:active,
  3074. .btn-default.active,
  3075. .open > .dropdown-toggle.btn-default {
  3076. color: #333;
  3077. background-color: #e6e6e6;
  3078. background-image: none;
  3079. border-color: #adadad;
  3080. }
  3081. .btn-default:active:hover,
  3082. .btn-default.active:hover,
  3083. .open > .dropdown-toggle.btn-default:hover,
  3084. .btn-default:active:focus,
  3085. .btn-default.active:focus,
  3086. .open > .dropdown-toggle.btn-default:focus,
  3087. .btn-default:active.focus,
  3088. .btn-default.active.focus,
  3089. .open > .dropdown-toggle.btn-default.focus {
  3090. color: #333;
  3091. background-color: #d4d4d4;
  3092. border-color: #8c8c8c;
  3093. }
  3094. .btn-default.disabled:hover,
  3095. .btn-default[disabled]:hover,
  3096. fieldset[disabled] .btn-default:hover,
  3097. .btn-default.disabled:focus,
  3098. .btn-default[disabled]:focus,
  3099. fieldset[disabled] .btn-default:focus,
  3100. .btn-default.disabled.focus,
  3101. .btn-default[disabled].focus,
  3102. fieldset[disabled] .btn-default.focus {
  3103. background-color: #fff;
  3104. border-color: #ccc;
  3105. }
  3106. .btn-default .badge {
  3107. color: #fff;
  3108. background-color: #333;
  3109. }
  3110. .btn-primary {
  3111. color: #fff;
  3112. background-color: #337ab7;
  3113. border-color: #2e6da4;
  3114. }
  3115. .btn-primary:focus,
  3116. .btn-primary.focus {
  3117. color: #fff;
  3118. background-color: #286090;
  3119. border-color: #122b40;
  3120. }
  3121. .btn-primary:hover {
  3122. color: #fff;
  3123. background-color: #286090;
  3124. border-color: #204d74;
  3125. }
  3126. .btn-primary:active,
  3127. .btn-primary.active,
  3128. .open > .dropdown-toggle.btn-primary {
  3129. color: #fff;
  3130. background-color: #286090;
  3131. background-image: none;
  3132. border-color: #204d74;
  3133. }
  3134. .btn-primary:active:hover,
  3135. .btn-primary.active:hover,
  3136. .open > .dropdown-toggle.btn-primary:hover,
  3137. .btn-primary:active:focus,
  3138. .btn-primary.active:focus,
  3139. .open > .dropdown-toggle.btn-primary:focus,
  3140. .btn-primary:active.focus,
  3141. .btn-primary.active.focus,
  3142. .open > .dropdown-toggle.btn-primary.focus {
  3143. color: #fff;
  3144. background-color: #204d74;
  3145. border-color: #122b40;
  3146. }
  3147. .btn-primary.disabled:hover,
  3148. .btn-primary[disabled]:hover,
  3149. fieldset[disabled] .btn-primary:hover,
  3150. .btn-primary.disabled:focus,
  3151. .btn-primary[disabled]:focus,
  3152. fieldset[disabled] .btn-primary:focus,
  3153. .btn-primary.disabled.focus,
  3154. .btn-primary[disabled].focus,
  3155. fieldset[disabled] .btn-primary.focus {
  3156. background-color: #337ab7;
  3157. border-color: #2e6da4;
  3158. }
  3159. .btn-primary .badge {
  3160. color: #337ab7;
  3161. background-color: #fff;
  3162. }
  3163. .btn-success {
  3164. color: #fff;
  3165. background-color: #5cb85c;
  3166. border-color: #4cae4c;
  3167. }
  3168. .btn-success:focus,
  3169. .btn-success.focus {
  3170. color: #fff;
  3171. background-color: #449d44;
  3172. border-color: #255625;
  3173. }
  3174. .btn-success:hover {
  3175. color: #fff;
  3176. background-color: #449d44;
  3177. border-color: #398439;
  3178. }
  3179. .btn-success:active,
  3180. .btn-success.active,
  3181. .open > .dropdown-toggle.btn-success {
  3182. color: #fff;
  3183. background-color: #449d44;
  3184. background-image: none;
  3185. border-color: #398439;
  3186. }
  3187. .btn-success:active:hover,
  3188. .btn-success.active:hover,
  3189. .open > .dropdown-toggle.btn-success:hover,
  3190. .btn-success:active:focus,
  3191. .btn-success.active:focus,
  3192. .open > .dropdown-toggle.btn-success:focus,
  3193. .btn-success:active.focus,
  3194. .btn-success.active.focus,
  3195. .open > .dropdown-toggle.btn-success.focus {
  3196. color: #fff;
  3197. background-color: #398439;
  3198. border-color: #255625;
  3199. }
  3200. .btn-success.disabled:hover,
  3201. .btn-success[disabled]:hover,
  3202. fieldset[disabled] .btn-success:hover,
  3203. .btn-success.disabled:focus,
  3204. .btn-success[disabled]:focus,
  3205. fieldset[disabled] .btn-success:focus,
  3206. .btn-success.disabled.focus,
  3207. .btn-success[disabled].focus,
  3208. fieldset[disabled] .btn-success.focus {
  3209. background-color: #5cb85c;
  3210. border-color: #4cae4c;
  3211. }
  3212. .btn-success .badge {
  3213. color: #5cb85c;
  3214. background-color: #fff;
  3215. }
  3216. .btn-info {
  3217. color: #fff;
  3218. background-color: #5bc0de;
  3219. border-color: #46b8da;
  3220. }
  3221. .btn-info:focus,
  3222. .btn-info.focus {
  3223. color: #fff;
  3224. background-color: #31b0d5;
  3225. border-color: #1b6d85;
  3226. }
  3227. .btn-info:hover {
  3228. color: #fff;
  3229. background-color: #31b0d5;
  3230. border-color: #269abc;
  3231. }
  3232. .btn-info:active,
  3233. .btn-info.active,
  3234. .open > .dropdown-toggle.btn-info {
  3235. color: #fff;
  3236. background-color: #31b0d5;
  3237. background-image: none;
  3238. border-color: #269abc;
  3239. }
  3240. .btn-info:active:hover,
  3241. .btn-info.active:hover,
  3242. .open > .dropdown-toggle.btn-info:hover,
  3243. .btn-info:active:focus,
  3244. .btn-info.active:focus,
  3245. .open > .dropdown-toggle.btn-info:focus,
  3246. .btn-info:active.focus,
  3247. .btn-info.active.focus,
  3248. .open > .dropdown-toggle.btn-info.focus {
  3249. color: #fff;
  3250. background-color: #269abc;
  3251. border-color: #1b6d85;
  3252. }
  3253. .btn-info.disabled:hover,
  3254. .btn-info[disabled]:hover,
  3255. fieldset[disabled] .btn-info:hover,
  3256. .btn-info.disabled:focus,
  3257. .btn-info[disabled]:focus,
  3258. fieldset[disabled] .btn-info:focus,
  3259. .btn-info.disabled.focus,
  3260. .btn-info[disabled].focus,
  3261. fieldset[disabled] .btn-info.focus {
  3262. background-color: #5bc0de;
  3263. border-color: #46b8da;
  3264. }
  3265. .btn-info .badge {
  3266. color: #5bc0de;
  3267. background-color: #fff;
  3268. }
  3269. .btn-warning {
  3270. color: #fff;
  3271. background-color: #f0ad4e;
  3272. border-color: #eea236;
  3273. }
  3274. .btn-warning:focus,
  3275. .btn-warning.focus {
  3276. color: #fff;
  3277. background-color: #ec971f;
  3278. border-color: #985f0d;
  3279. }
  3280. .btn-warning:hover {
  3281. color: #fff;
  3282. background-color: #ec971f;
  3283. border-color: #d58512;
  3284. }
  3285. .btn-warning:active,
  3286. .btn-warning.active,
  3287. .open > .dropdown-toggle.btn-warning {
  3288. color: #fff;
  3289. background-color: #ec971f;
  3290. background-image: none;
  3291. border-color: #d58512;
  3292. }
  3293. .btn-warning:active:hover,
  3294. .btn-warning.active:hover,
  3295. .open > .dropdown-toggle.btn-warning:hover,
  3296. .btn-warning:active:focus,
  3297. .btn-warning.active:focus,
  3298. .open > .dropdown-toggle.btn-warning:focus,
  3299. .btn-warning:active.focus,
  3300. .btn-warning.active.focus,
  3301. .open > .dropdown-toggle.btn-warning.focus {
  3302. color: #fff;
  3303. background-color: #d58512;
  3304. border-color: #985f0d;
  3305. }
  3306. .btn-warning.disabled:hover,
  3307. .btn-warning[disabled]:hover,
  3308. fieldset[disabled] .btn-warning:hover,
  3309. .btn-warning.disabled:focus,
  3310. .btn-warning[disabled]:focus,
  3311. fieldset[disabled] .btn-warning:focus,
  3312. .btn-warning.disabled.focus,
  3313. .btn-warning[disabled].focus,
  3314. fieldset[disabled] .btn-warning.focus {
  3315. background-color: #f0ad4e;
  3316. border-color: #eea236;
  3317. }
  3318. .btn-warning .badge {
  3319. color: #f0ad4e;
  3320. background-color: #fff;
  3321. }
  3322. .btn-danger {
  3323. color: #fff;
  3324. background-color: #d9534f;
  3325. border-color: #d43f3a;
  3326. }
  3327. .btn-danger:focus,
  3328. .btn-danger.focus {
  3329. color: #fff;
  3330. background-color: #c9302c;
  3331. border-color: #761c19;
  3332. }
  3333. .btn-danger:hover {
  3334. color: #fff;
  3335. background-color: #c9302c;
  3336. border-color: #ac2925;
  3337. }
  3338. .btn-danger:active,
  3339. .btn-danger.active,
  3340. .open > .dropdown-toggle.btn-danger {
  3341. color: #fff;
  3342. background-color: #c9302c;
  3343. background-image: none;
  3344. border-color: #ac2925;
  3345. }
  3346. .btn-danger:active:hover,
  3347. .btn-danger.active:hover,
  3348. .open > .dropdown-toggle.btn-danger:hover,
  3349. .btn-danger:active:focus,
  3350. .btn-danger.active:focus,
  3351. .open > .dropdown-toggle.btn-danger:focus,
  3352. .btn-danger:active.focus,
  3353. .btn-danger.active.focus,
  3354. .open > .dropdown-toggle.btn-danger.focus {
  3355. color: #fff;
  3356. background-color: #ac2925;
  3357. border-color: #761c19;
  3358. }
  3359. .btn-danger.disabled:hover,
  3360. .btn-danger[disabled]:hover,
  3361. fieldset[disabled] .btn-danger:hover,
  3362. .btn-danger.disabled:focus,
  3363. .btn-danger[disabled]:focus,
  3364. fieldset[disabled] .btn-danger:focus,
  3365. .btn-danger.disabled.focus,
  3366. .btn-danger[disabled].focus,
  3367. fieldset[disabled] .btn-danger.focus {
  3368. background-color: #d9534f;
  3369. border-color: #d43f3a;
  3370. }
  3371. .btn-danger .badge {
  3372. color: #d9534f;
  3373. background-color: #fff;
  3374. }
  3375. .btn-link {
  3376. font-weight: 400;
  3377. color: #337ab7;
  3378. border-radius: 0;
  3379. }
  3380. .btn-link,
  3381. .btn-link:active,
  3382. .btn-link.active,
  3383. .btn-link[disabled],
  3384. fieldset[disabled] .btn-link {
  3385. background-color: transparent;
  3386. -webkit-box-shadow: none;
  3387. box-shadow: none;
  3388. }
  3389. .btn-link,
  3390. .btn-link:hover,
  3391. .btn-link:focus,
  3392. .btn-link:active {
  3393. border-color: transparent;
  3394. }
  3395. .btn-link:hover,
  3396. .btn-link:focus {
  3397. color: #23527c;
  3398. text-decoration: underline;
  3399. background-color: transparent;
  3400. }
  3401. .btn-link[disabled]:hover,
  3402. fieldset[disabled] .btn-link:hover,
  3403. .btn-link[disabled]:focus,
  3404. fieldset[disabled] .btn-link:focus {
  3405. color: #777777;
  3406. text-decoration: none;
  3407. }
  3408. .btn-lg,
  3409. .btn-group-lg > .btn {
  3410. padding: 10px 16px;
  3411. font-size: 17px;
  3412. line-height: 1.3333333;
  3413. border-radius: 3px;
  3414. }
  3415. .btn-sm,
  3416. .btn-group-sm > .btn {
  3417. padding: 5px 10px;
  3418. font-size: 12px;
  3419. line-height: 1.5;
  3420. border-radius: 1px;
  3421. }
  3422. .btn-xs,
  3423. .btn-group-xs > .btn {
  3424. padding: 1px 5px;
  3425. font-size: 12px;
  3426. line-height: 1.5;
  3427. border-radius: 1px;
  3428. }
  3429. .btn-block {
  3430. display: block;
  3431. width: 100%;
  3432. }
  3433. .btn-block + .btn-block {
  3434. margin-top: 5px;
  3435. }
  3436. input[type="submit"].btn-block,
  3437. input[type="reset"].btn-block,
  3438. input[type="button"].btn-block {
  3439. width: 100%;
  3440. }
  3441. .fade {
  3442. opacity: 0;
  3443. -webkit-transition: opacity 0.15s linear;
  3444. -o-transition: opacity 0.15s linear;
  3445. transition: opacity 0.15s linear;
  3446. }
  3447. .fade.in {
  3448. opacity: 1;
  3449. }
  3450. .collapse {
  3451. display: none;
  3452. }
  3453. .collapse.in {
  3454. display: block;
  3455. }
  3456. tr.collapse.in {
  3457. display: table-row;
  3458. }
  3459. tbody.collapse.in {
  3460. display: table-row-group;
  3461. }
  3462. .collapsing {
  3463. position: relative;
  3464. height: 0;
  3465. overflow: hidden;
  3466. -webkit-transition-property: height, visibility;
  3467. transition-property: height, visibility;
  3468. -webkit-transition-duration: 0.35s;
  3469. transition-duration: 0.35s;
  3470. -webkit-transition-timing-function: ease;
  3471. transition-timing-function: ease;
  3472. }
  3473. .caret {
  3474. display: inline-block;
  3475. width: 0;
  3476. height: 0;
  3477. margin-left: 2px;
  3478. vertical-align: middle;
  3479. border-top: 4px dashed;
  3480. border-top: 4px solid \9;
  3481. border-right: 4px solid transparent;
  3482. border-left: 4px solid transparent;
  3483. }
  3484. .dropup,
  3485. .dropdown {
  3486. position: relative;
  3487. }
  3488. .dropdown-toggle:focus {
  3489. outline: 0;
  3490. }
  3491. .dropdown-menu {
  3492. position: absolute;
  3493. top: 100%;
  3494. left: 0;
  3495. z-index: 1000;
  3496. display: none;
  3497. float: left;
  3498. min-width: 160px;
  3499. padding: 5px 0;
  3500. margin: 2px 0 0;
  3501. font-size: 13px;
  3502. text-align: left;
  3503. list-style: none;
  3504. background-color: #fff;
  3505. background-clip: padding-box;
  3506. border: 1px solid #ccc;
  3507. border: 1px solid rgba(0, 0, 0, 0.15);
  3508. border-radius: 2px;
  3509. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3510. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3511. }
  3512. .dropdown-menu.pull-right {
  3513. right: 0;
  3514. left: auto;
  3515. }
  3516. .dropdown-menu .divider {
  3517. height: 1px;
  3518. margin: 8px 0;
  3519. overflow: hidden;
  3520. background-color: #e5e5e5;
  3521. }
  3522. .dropdown-menu > li > a {
  3523. display: block;
  3524. padding: 3px 20px;
  3525. clear: both;
  3526. font-weight: 400;
  3527. line-height: 1.42857143;
  3528. color: #333333;
  3529. white-space: nowrap;
  3530. }
  3531. .dropdown-menu > li > a:hover,
  3532. .dropdown-menu > li > a:focus {
  3533. color: #262626;
  3534. text-decoration: none;
  3535. background-color: #f5f5f5;
  3536. }
  3537. .dropdown-menu > .active > a,
  3538. .dropdown-menu > .active > a:hover,
  3539. .dropdown-menu > .active > a:focus {
  3540. color: #fff;
  3541. text-decoration: none;
  3542. background-color: #337ab7;
  3543. outline: 0;
  3544. }
  3545. .dropdown-menu > .disabled > a,
  3546. .dropdown-menu > .disabled > a:hover,
  3547. .dropdown-menu > .disabled > a:focus {
  3548. color: #777777;
  3549. }
  3550. .dropdown-menu > .disabled > a:hover,
  3551. .dropdown-menu > .disabled > a:focus {
  3552. text-decoration: none;
  3553. cursor: not-allowed;
  3554. background-color: transparent;
  3555. background-image: none;
  3556. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3557. }
  3558. .open > .dropdown-menu {
  3559. display: block;
  3560. }
  3561. .open > a {
  3562. outline: 0;
  3563. }
  3564. .dropdown-menu-right {
  3565. right: 0;
  3566. left: auto;
  3567. }
  3568. .dropdown-menu-left {
  3569. right: auto;
  3570. left: 0;
  3571. }
  3572. .dropdown-header {
  3573. display: block;
  3574. padding: 3px 20px;
  3575. font-size: 12px;
  3576. line-height: 1.42857143;
  3577. color: #777777;
  3578. white-space: nowrap;
  3579. }
  3580. .dropdown-backdrop {
  3581. position: fixed;
  3582. top: 0;
  3583. right: 0;
  3584. bottom: 0;
  3585. left: 0;
  3586. z-index: 990;
  3587. }
  3588. .pull-right > .dropdown-menu {
  3589. right: 0;
  3590. left: auto;
  3591. }
  3592. .dropup .caret,
  3593. .navbar-fixed-bottom .dropdown .caret {
  3594. content: "";
  3595. border-top: 0;
  3596. border-bottom: 4px dashed;
  3597. border-bottom: 4px solid \9;
  3598. }
  3599. .dropup .dropdown-menu,
  3600. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3601. top: auto;
  3602. bottom: 100%;
  3603. margin-bottom: 2px;
  3604. }
  3605. @media (min-width: 541px) {
  3606. .navbar-right .dropdown-menu {
  3607. right: 0;
  3608. left: auto;
  3609. }
  3610. .navbar-right .dropdown-menu-left {
  3611. right: auto;
  3612. left: 0;
  3613. }
  3614. }
  3615. .btn-group,
  3616. .btn-group-vertical {
  3617. position: relative;
  3618. display: inline-block;
  3619. vertical-align: middle;
  3620. }
  3621. .btn-group > .btn,
  3622. .btn-group-vertical > .btn {
  3623. position: relative;
  3624. float: left;
  3625. }
  3626. .btn-group > .btn:hover,
  3627. .btn-group-vertical > .btn:hover,
  3628. .btn-group > .btn:focus,
  3629. .btn-group-vertical > .btn:focus,
  3630. .btn-group > .btn:active,
  3631. .btn-group-vertical > .btn:active,
  3632. .btn-group > .btn.active,
  3633. .btn-group-vertical > .btn.active {
  3634. z-index: 2;
  3635. }
  3636. .btn-group .btn + .btn,
  3637. .btn-group .btn + .btn-group,
  3638. .btn-group .btn-group + .btn,
  3639. .btn-group .btn-group + .btn-group {
  3640. margin-left: -1px;
  3641. }
  3642. .btn-toolbar {
  3643. margin-left: -5px;
  3644. }
  3645. .btn-toolbar .btn,
  3646. .btn-toolbar .btn-group,
  3647. .btn-toolbar .input-group {
  3648. float: left;
  3649. }
  3650. .btn-toolbar > .btn,
  3651. .btn-toolbar > .btn-group,
  3652. .btn-toolbar > .input-group {
  3653. margin-left: 5px;
  3654. }
  3655. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3656. border-radius: 0;
  3657. }
  3658. .btn-group > .btn:first-child {
  3659. margin-left: 0;
  3660. }
  3661. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3662. border-top-right-radius: 0;
  3663. border-bottom-right-radius: 0;
  3664. }
  3665. .btn-group > .btn:last-child:not(:first-child),
  3666. .btn-group > .dropdown-toggle:not(:first-child) {
  3667. border-top-left-radius: 0;
  3668. border-bottom-left-radius: 0;
  3669. }
  3670. .btn-group > .btn-group {
  3671. float: left;
  3672. }
  3673. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3674. border-radius: 0;
  3675. }
  3676. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3677. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3678. border-top-right-radius: 0;
  3679. border-bottom-right-radius: 0;
  3680. }
  3681. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3682. border-top-left-radius: 0;
  3683. border-bottom-left-radius: 0;
  3684. }
  3685. .btn-group .dropdown-toggle:active,
  3686. .btn-group.open .dropdown-toggle {
  3687. outline: 0;
  3688. }
  3689. .btn-group > .btn + .dropdown-toggle {
  3690. padding-right: 8px;
  3691. padding-left: 8px;
  3692. }
  3693. .btn-group > .btn-lg + .dropdown-toggle {
  3694. padding-right: 12px;
  3695. padding-left: 12px;
  3696. }
  3697. .btn-group.open .dropdown-toggle {
  3698. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3699. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3700. }
  3701. .btn-group.open .dropdown-toggle.btn-link {
  3702. -webkit-box-shadow: none;
  3703. box-shadow: none;
  3704. }
  3705. .btn .caret {
  3706. margin-left: 0;
  3707. }
  3708. .btn-lg .caret {
  3709. border-width: 5px 5px 0;
  3710. border-bottom-width: 0;
  3711. }
  3712. .dropup .btn-lg .caret {
  3713. border-width: 0 5px 5px;
  3714. }
  3715. .btn-group-vertical > .btn,
  3716. .btn-group-vertical > .btn-group,
  3717. .btn-group-vertical > .btn-group > .btn {
  3718. display: block;
  3719. float: none;
  3720. width: 100%;
  3721. max-width: 100%;
  3722. }
  3723. .btn-group-vertical > .btn-group > .btn {
  3724. float: none;
  3725. }
  3726. .btn-group-vertical > .btn + .btn,
  3727. .btn-group-vertical > .btn + .btn-group,
  3728. .btn-group-vertical > .btn-group + .btn,
  3729. .btn-group-vertical > .btn-group + .btn-group {
  3730. margin-top: -1px;
  3731. margin-left: 0;
  3732. }
  3733. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3734. border-radius: 0;
  3735. }
  3736. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3737. border-top-left-radius: 2px;
  3738. border-top-right-radius: 2px;
  3739. border-bottom-right-radius: 0;
  3740. border-bottom-left-radius: 0;
  3741. }
  3742. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3743. border-top-left-radius: 0;
  3744. border-top-right-radius: 0;
  3745. border-bottom-right-radius: 2px;
  3746. border-bottom-left-radius: 2px;
  3747. }
  3748. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3749. border-radius: 0;
  3750. }
  3751. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3752. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3753. border-bottom-right-radius: 0;
  3754. border-bottom-left-radius: 0;
  3755. }
  3756. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3757. border-top-left-radius: 0;
  3758. border-top-right-radius: 0;
  3759. }
  3760. .btn-group-justified {
  3761. display: table;
  3762. width: 100%;
  3763. table-layout: fixed;
  3764. border-collapse: separate;
  3765. }
  3766. .btn-group-justified > .btn,
  3767. .btn-group-justified > .btn-group {
  3768. display: table-cell;
  3769. float: none;
  3770. width: 1%;
  3771. }
  3772. .btn-group-justified > .btn-group .btn {
  3773. width: 100%;
  3774. }
  3775. .btn-group-justified > .btn-group .dropdown-menu {
  3776. left: auto;
  3777. }
  3778. [data-toggle="buttons"] > .btn input[type="radio"],
  3779. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3780. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3781. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3782. position: absolute;
  3783. clip: rect(0, 0, 0, 0);
  3784. pointer-events: none;
  3785. }
  3786. .input-group {
  3787. position: relative;
  3788. display: table;
  3789. border-collapse: separate;
  3790. }
  3791. .input-group[class*="col-"] {
  3792. float: none;
  3793. padding-right: 0;
  3794. padding-left: 0;
  3795. }
  3796. .input-group .form-control {
  3797. position: relative;
  3798. z-index: 2;
  3799. float: left;
  3800. width: 100%;
  3801. margin-bottom: 0;
  3802. }
  3803. .input-group .form-control:focus {
  3804. z-index: 3;
  3805. }
  3806. .input-group-lg > .form-control,
  3807. .input-group-lg > .input-group-addon,
  3808. .input-group-lg > .input-group-btn > .btn {
  3809. height: 45px;
  3810. padding: 10px 16px;
  3811. font-size: 17px;
  3812. line-height: 1.3333333;
  3813. border-radius: 3px;
  3814. }
  3815. select.input-group-lg > .form-control,
  3816. select.input-group-lg > .input-group-addon,
  3817. select.input-group-lg > .input-group-btn > .btn {
  3818. height: 45px;
  3819. line-height: 45px;
  3820. }
  3821. textarea.input-group-lg > .form-control,
  3822. textarea.input-group-lg > .input-group-addon,
  3823. textarea.input-group-lg > .input-group-btn > .btn,
  3824. select[multiple].input-group-lg > .form-control,
  3825. select[multiple].input-group-lg > .input-group-addon,
  3826. select[multiple].input-group-lg > .input-group-btn > .btn {
  3827. height: auto;
  3828. }
  3829. .input-group-sm > .form-control,
  3830. .input-group-sm > .input-group-addon,
  3831. .input-group-sm > .input-group-btn > .btn {
  3832. height: 30px;
  3833. padding: 5px 10px;
  3834. font-size: 12px;
  3835. line-height: 1.5;
  3836. border-radius: 1px;
  3837. }
  3838. select.input-group-sm > .form-control,
  3839. select.input-group-sm > .input-group-addon,
  3840. select.input-group-sm > .input-group-btn > .btn {
  3841. height: 30px;
  3842. line-height: 30px;
  3843. }
  3844. textarea.input-group-sm > .form-control,
  3845. textarea.input-group-sm > .input-group-addon,
  3846. textarea.input-group-sm > .input-group-btn > .btn,
  3847. select[multiple].input-group-sm > .form-control,
  3848. select[multiple].input-group-sm > .input-group-addon,
  3849. select[multiple].input-group-sm > .input-group-btn > .btn {
  3850. height: auto;
  3851. }
  3852. .input-group-addon,
  3853. .input-group-btn,
  3854. .input-group .form-control {
  3855. display: table-cell;
  3856. }
  3857. .input-group-addon:not(:first-child):not(:last-child),
  3858. .input-group-btn:not(:first-child):not(:last-child),
  3859. .input-group .form-control:not(:first-child):not(:last-child) {
  3860. border-radius: 0;
  3861. }
  3862. .input-group-addon,
  3863. .input-group-btn {
  3864. width: 1%;
  3865. white-space: nowrap;
  3866. vertical-align: middle;
  3867. }
  3868. .input-group-addon {
  3869. padding: 6px 12px;
  3870. font-size: 13px;
  3871. font-weight: 400;
  3872. line-height: 1;
  3873. color: #555555;
  3874. text-align: center;
  3875. background-color: #eeeeee;
  3876. border: 1px solid #ccc;
  3877. border-radius: 2px;
  3878. }
  3879. .input-group-addon.input-sm {
  3880. padding: 5px 10px;
  3881. font-size: 12px;
  3882. border-radius: 1px;
  3883. }
  3884. .input-group-addon.input-lg {
  3885. padding: 10px 16px;
  3886. font-size: 17px;
  3887. border-radius: 3px;
  3888. }
  3889. .input-group-addon input[type="radio"],
  3890. .input-group-addon input[type="checkbox"] {
  3891. margin-top: 0;
  3892. }
  3893. .input-group .form-control:first-child,
  3894. .input-group-addon:first-child,
  3895. .input-group-btn:first-child > .btn,
  3896. .input-group-btn:first-child > .btn-group > .btn,
  3897. .input-group-btn:first-child > .dropdown-toggle,
  3898. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3899. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3900. border-top-right-radius: 0;
  3901. border-bottom-right-radius: 0;
  3902. }
  3903. .input-group-addon:first-child {
  3904. border-right: 0;
  3905. }
  3906. .input-group .form-control:last-child,
  3907. .input-group-addon:last-child,
  3908. .input-group-btn:last-child > .btn,
  3909. .input-group-btn:last-child > .btn-group > .btn,
  3910. .input-group-btn:last-child > .dropdown-toggle,
  3911. .input-group-btn:first-child > .btn:not(:first-child),
  3912. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3913. border-top-left-radius: 0;
  3914. border-bottom-left-radius: 0;
  3915. }
  3916. .input-group-addon:last-child {
  3917. border-left: 0;
  3918. }
  3919. .input-group-btn {
  3920. position: relative;
  3921. font-size: 0;
  3922. white-space: nowrap;
  3923. }
  3924. .input-group-btn > .btn {
  3925. position: relative;
  3926. }
  3927. .input-group-btn > .btn + .btn {
  3928. margin-left: -1px;
  3929. }
  3930. .input-group-btn > .btn:hover,
  3931. .input-group-btn > .btn:focus,
  3932. .input-group-btn > .btn:active {
  3933. z-index: 2;
  3934. }
  3935. .input-group-btn:first-child > .btn,
  3936. .input-group-btn:first-child > .btn-group {
  3937. margin-right: -1px;
  3938. }
  3939. .input-group-btn:last-child > .btn,
  3940. .input-group-btn:last-child > .btn-group {
  3941. z-index: 2;
  3942. margin-left: -1px;
  3943. }
  3944. .nav {
  3945. padding-left: 0;
  3946. margin-bottom: 0;
  3947. list-style: none;
  3948. }
  3949. .nav > li {
  3950. position: relative;
  3951. display: block;
  3952. }
  3953. .nav > li > a {
  3954. position: relative;
  3955. display: block;
  3956. padding: 10px 15px;
  3957. }
  3958. .nav > li > a:hover,
  3959. .nav > li > a:focus {
  3960. text-decoration: none;
  3961. background-color: #eeeeee;
  3962. }
  3963. .nav > li.disabled > a {
  3964. color: #777777;
  3965. }
  3966. .nav > li.disabled > a:hover,
  3967. .nav > li.disabled > a:focus {
  3968. color: #777777;
  3969. text-decoration: none;
  3970. cursor: not-allowed;
  3971. background-color: transparent;
  3972. }
  3973. .nav .open > a,
  3974. .nav .open > a:hover,
  3975. .nav .open > a:focus {
  3976. background-color: #eeeeee;
  3977. border-color: #337ab7;
  3978. }
  3979. .nav .nav-divider {
  3980. height: 1px;
  3981. margin: 8px 0;
  3982. overflow: hidden;
  3983. background-color: #e5e5e5;
  3984. }
  3985. .nav > li > a > img {
  3986. max-width: none;
  3987. }
  3988. .nav-tabs {
  3989. border-bottom: 1px solid #ddd;
  3990. }
  3991. .nav-tabs > li {
  3992. float: left;
  3993. margin-bottom: -1px;
  3994. }
  3995. .nav-tabs > li > a {
  3996. margin-right: 2px;
  3997. line-height: 1.42857143;
  3998. border: 1px solid transparent;
  3999. border-radius: 2px 2px 0 0;
  4000. }
  4001. .nav-tabs > li > a:hover {
  4002. border-color: #eeeeee #eeeeee #ddd;
  4003. }
  4004. .nav-tabs > li.active > a,
  4005. .nav-tabs > li.active > a:hover,
  4006. .nav-tabs > li.active > a:focus {
  4007. color: #555555;
  4008. cursor: default;
  4009. background-color: #fff;
  4010. border: 1px solid #ddd;
  4011. border-bottom-color: transparent;
  4012. }
  4013. .nav-tabs.nav-justified {
  4014. width: 100%;
  4015. border-bottom: 0;
  4016. }
  4017. .nav-tabs.nav-justified > li {
  4018. float: none;
  4019. }
  4020. .nav-tabs.nav-justified > li > a {
  4021. margin-bottom: 5px;
  4022. text-align: center;
  4023. }
  4024. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4025. top: auto;
  4026. left: auto;
  4027. }
  4028. @media (min-width: 768px) {
  4029. .nav-tabs.nav-justified > li {
  4030. display: table-cell;
  4031. width: 1%;
  4032. }
  4033. .nav-tabs.nav-justified > li > a {
  4034. margin-bottom: 0;
  4035. }
  4036. }
  4037. .nav-tabs.nav-justified > li > a {
  4038. margin-right: 0;
  4039. border-radius: 2px;
  4040. }
  4041. .nav-tabs.nav-justified > .active > a,
  4042. .nav-tabs.nav-justified > .active > a:hover,
  4043. .nav-tabs.nav-justified > .active > a:focus {
  4044. border: 1px solid #ddd;
  4045. }
  4046. @media (min-width: 768px) {
  4047. .nav-tabs.nav-justified > li > a {
  4048. border-bottom: 1px solid #ddd;
  4049. border-radius: 2px 2px 0 0;
  4050. }
  4051. .nav-tabs.nav-justified > .active > a,
  4052. .nav-tabs.nav-justified > .active > a:hover,
  4053. .nav-tabs.nav-justified > .active > a:focus {
  4054. border-bottom-color: #fff;
  4055. }
  4056. }
  4057. .nav-pills > li {
  4058. float: left;
  4059. }
  4060. .nav-pills > li > a {
  4061. border-radius: 2px;
  4062. }
  4063. .nav-pills > li + li {
  4064. margin-left: 2px;
  4065. }
  4066. .nav-pills > li.active > a,
  4067. .nav-pills > li.active > a:hover,
  4068. .nav-pills > li.active > a:focus {
  4069. color: #fff;
  4070. background-color: #337ab7;
  4071. }
  4072. .nav-stacked > li {
  4073. float: none;
  4074. }
  4075. .nav-stacked > li + li {
  4076. margin-top: 2px;
  4077. margin-left: 0;
  4078. }
  4079. .nav-justified {
  4080. width: 100%;
  4081. }
  4082. .nav-justified > li {
  4083. float: none;
  4084. }
  4085. .nav-justified > li > a {
  4086. margin-bottom: 5px;
  4087. text-align: center;
  4088. }
  4089. .nav-justified > .dropdown .dropdown-menu {
  4090. top: auto;
  4091. left: auto;
  4092. }
  4093. @media (min-width: 768px) {
  4094. .nav-justified > li {
  4095. display: table-cell;
  4096. width: 1%;
  4097. }
  4098. .nav-justified > li > a {
  4099. margin-bottom: 0;
  4100. }
  4101. }
  4102. .nav-tabs-justified {
  4103. border-bottom: 0;
  4104. }
  4105. .nav-tabs-justified > li > a {
  4106. margin-right: 0;
  4107. border-radius: 2px;
  4108. }
  4109. .nav-tabs-justified > .active > a,
  4110. .nav-tabs-justified > .active > a:hover,
  4111. .nav-tabs-justified > .active > a:focus {
  4112. border: 1px solid #ddd;
  4113. }
  4114. @media (min-width: 768px) {
  4115. .nav-tabs-justified > li > a {
  4116. border-bottom: 1px solid #ddd;
  4117. border-radius: 2px 2px 0 0;
  4118. }
  4119. .nav-tabs-justified > .active > a,
  4120. .nav-tabs-justified > .active > a:hover,
  4121. .nav-tabs-justified > .active > a:focus {
  4122. border-bottom-color: #fff;
  4123. }
  4124. }
  4125. .tab-content > .tab-pane {
  4126. display: none;
  4127. }
  4128. .tab-content > .active {
  4129. display: block;
  4130. }
  4131. .nav-tabs .dropdown-menu {
  4132. margin-top: -1px;
  4133. border-top-left-radius: 0;
  4134. border-top-right-radius: 0;
  4135. }
  4136. .navbar {
  4137. position: relative;
  4138. min-height: 30px;
  4139. margin-bottom: 18px;
  4140. border: 1px solid transparent;
  4141. }
  4142. @media (min-width: 541px) {
  4143. .navbar {
  4144. border-radius: 2px;
  4145. }
  4146. }
  4147. @media (min-width: 541px) {
  4148. .navbar-header {
  4149. float: left;
  4150. }
  4151. }
  4152. .navbar-collapse {
  4153. padding-right: 0px;
  4154. padding-left: 0px;
  4155. overflow-x: visible;
  4156. border-top: 1px solid transparent;
  4157. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4158. -webkit-overflow-scrolling: touch;
  4159. }
  4160. .navbar-collapse.in {
  4161. overflow-y: auto;
  4162. }
  4163. @media (min-width: 541px) {
  4164. .navbar-collapse {
  4165. width: auto;
  4166. border-top: 0;
  4167. box-shadow: none;
  4168. }
  4169. .navbar-collapse.collapse {
  4170. display: block !important;
  4171. height: auto !important;
  4172. padding-bottom: 0;
  4173. overflow: visible !important;
  4174. }
  4175. .navbar-collapse.in {
  4176. overflow-y: visible;
  4177. }
  4178. .navbar-fixed-top .navbar-collapse,
  4179. .navbar-static-top .navbar-collapse,
  4180. .navbar-fixed-bottom .navbar-collapse {
  4181. padding-right: 0;
  4182. padding-left: 0;
  4183. }
  4184. }
  4185. .navbar-fixed-top,
  4186. .navbar-fixed-bottom {
  4187. position: fixed;
  4188. right: 0;
  4189. left: 0;
  4190. z-index: 1030;
  4191. }
  4192. .navbar-fixed-top .navbar-collapse,
  4193. .navbar-fixed-bottom .navbar-collapse {
  4194. max-height: 340px;
  4195. }
  4196. @media (max-device-width: 540px) and (orientation: landscape) {
  4197. .navbar-fixed-top .navbar-collapse,
  4198. .navbar-fixed-bottom .navbar-collapse {
  4199. max-height: 200px;
  4200. }
  4201. }
  4202. @media (min-width: 541px) {
  4203. .navbar-fixed-top,
  4204. .navbar-fixed-bottom {
  4205. border-radius: 0;
  4206. }
  4207. }
  4208. .navbar-fixed-top {
  4209. top: 0;
  4210. border-width: 0 0 1px;
  4211. }
  4212. .navbar-fixed-bottom {
  4213. bottom: 0;
  4214. margin-bottom: 0;
  4215. border-width: 1px 0 0;
  4216. }
  4217. .container > .navbar-header,
  4218. .container-fluid > .navbar-header,
  4219. .container > .navbar-collapse,
  4220. .container-fluid > .navbar-collapse {
  4221. margin-right: 0px;
  4222. margin-left: 0px;
  4223. }
  4224. @media (min-width: 541px) {
  4225. .container > .navbar-header,
  4226. .container-fluid > .navbar-header,
  4227. .container > .navbar-collapse,
  4228. .container-fluid > .navbar-collapse {
  4229. margin-right: 0;
  4230. margin-left: 0;
  4231. }
  4232. }
  4233. .navbar-static-top {
  4234. z-index: 1000;
  4235. border-width: 0 0 1px;
  4236. }
  4237. @media (min-width: 541px) {
  4238. .navbar-static-top {
  4239. border-radius: 0;
  4240. }
  4241. }
  4242. .navbar-brand {
  4243. float: left;
  4244. height: 30px;
  4245. padding: 6px 0px;
  4246. font-size: 17px;
  4247. line-height: 18px;
  4248. }
  4249. .navbar-brand:hover,
  4250. .navbar-brand:focus {
  4251. text-decoration: none;
  4252. }
  4253. .navbar-brand > img {
  4254. display: block;
  4255. }
  4256. @media (min-width: 541px) {
  4257. .navbar > .container .navbar-brand,
  4258. .navbar > .container-fluid .navbar-brand {
  4259. margin-left: 0px;
  4260. }
  4261. }
  4262. .navbar-toggle {
  4263. position: relative;
  4264. float: right;
  4265. padding: 9px 10px;
  4266. margin-right: 0px;
  4267. margin-top: -2px;
  4268. margin-bottom: -2px;
  4269. background-color: transparent;
  4270. background-image: none;
  4271. border: 1px solid transparent;
  4272. border-radius: 2px;
  4273. }
  4274. .navbar-toggle:focus {
  4275. outline: 0;
  4276. }
  4277. .navbar-toggle .icon-bar {
  4278. display: block;
  4279. width: 22px;
  4280. height: 2px;
  4281. border-radius: 1px;
  4282. }
  4283. .navbar-toggle .icon-bar + .icon-bar {
  4284. margin-top: 4px;
  4285. }
  4286. @media (min-width: 541px) {
  4287. .navbar-toggle {
  4288. display: none;
  4289. }
  4290. }
  4291. .navbar-nav {
  4292. margin: 3px 0px;
  4293. }
  4294. .navbar-nav > li > a {
  4295. padding-top: 10px;
  4296. padding-bottom: 10px;
  4297. line-height: 18px;
  4298. }
  4299. @media (max-width: 540px) {
  4300. .navbar-nav .open .dropdown-menu {
  4301. position: static;
  4302. float: none;
  4303. width: auto;
  4304. margin-top: 0;
  4305. background-color: transparent;
  4306. border: 0;
  4307. box-shadow: none;
  4308. }
  4309. .navbar-nav .open .dropdown-menu > li > a,
  4310. .navbar-nav .open .dropdown-menu .dropdown-header {
  4311. padding: 5px 15px 5px 25px;
  4312. }
  4313. .navbar-nav .open .dropdown-menu > li > a {
  4314. line-height: 18px;
  4315. }
  4316. .navbar-nav .open .dropdown-menu > li > a:hover,
  4317. .navbar-nav .open .dropdown-menu > li > a:focus {
  4318. background-image: none;
  4319. }
  4320. }
  4321. @media (min-width: 541px) {
  4322. .navbar-nav {
  4323. float: left;
  4324. margin: 0;
  4325. }
  4326. .navbar-nav > li {
  4327. float: left;
  4328. }
  4329. .navbar-nav > li > a {
  4330. padding-top: 6px;
  4331. padding-bottom: 6px;
  4332. }
  4333. }
  4334. .navbar-form {
  4335. padding: 10px 0px;
  4336. margin-right: 0px;
  4337. margin-left: 0px;
  4338. border-top: 1px solid transparent;
  4339. border-bottom: 1px solid transparent;
  4340. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4341. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4342. margin-top: -1px;
  4343. margin-bottom: -1px;
  4344. }
  4345. @media (min-width: 768px) {
  4346. .navbar-form .form-group {
  4347. display: inline-block;
  4348. margin-bottom: 0;
  4349. vertical-align: middle;
  4350. }
  4351. .navbar-form .form-control {
  4352. display: inline-block;
  4353. width: auto;
  4354. vertical-align: middle;
  4355. }
  4356. .navbar-form .form-control-static {
  4357. display: inline-block;
  4358. }
  4359. .navbar-form .input-group {
  4360. display: inline-table;
  4361. vertical-align: middle;
  4362. }
  4363. .navbar-form .input-group .input-group-addon,
  4364. .navbar-form .input-group .input-group-btn,
  4365. .navbar-form .input-group .form-control {
  4366. width: auto;
  4367. }
  4368. .navbar-form .input-group > .form-control {
  4369. width: 100%;
  4370. }
  4371. .navbar-form .control-label {
  4372. margin-bottom: 0;
  4373. vertical-align: middle;
  4374. }
  4375. .navbar-form .radio,
  4376. .navbar-form .checkbox {
  4377. display: inline-block;
  4378. margin-top: 0;
  4379. margin-bottom: 0;
  4380. vertical-align: middle;
  4381. }
  4382. .navbar-form .radio label,
  4383. .navbar-form .checkbox label {
  4384. padding-left: 0;
  4385. }
  4386. .navbar-form .radio input[type="radio"],
  4387. .navbar-form .checkbox input[type="checkbox"] {
  4388. position: relative;
  4389. margin-left: 0;
  4390. }
  4391. .navbar-form .has-feedback .form-control-feedback {
  4392. top: 0;
  4393. }
  4394. }
  4395. @media (max-width: 540px) {
  4396. .navbar-form .form-group {
  4397. margin-bottom: 5px;
  4398. }
  4399. .navbar-form .form-group:last-child {
  4400. margin-bottom: 0;
  4401. }
  4402. }
  4403. @media (min-width: 541px) {
  4404. .navbar-form {
  4405. width: auto;
  4406. padding-top: 0;
  4407. padding-bottom: 0;
  4408. margin-right: 0;
  4409. margin-left: 0;
  4410. border: 0;
  4411. -webkit-box-shadow: none;
  4412. box-shadow: none;
  4413. }
  4414. }
  4415. .navbar-nav > li > .dropdown-menu {
  4416. margin-top: 0;
  4417. border-top-left-radius: 0;
  4418. border-top-right-radius: 0;
  4419. }
  4420. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4421. margin-bottom: 0;
  4422. border-top-left-radius: 2px;
  4423. border-top-right-radius: 2px;
  4424. border-bottom-right-radius: 0;
  4425. border-bottom-left-radius: 0;
  4426. }
  4427. .navbar-btn {
  4428. margin-top: -1px;
  4429. margin-bottom: -1px;
  4430. }
  4431. .navbar-btn.btn-sm {
  4432. margin-top: 0px;
  4433. margin-bottom: 0px;
  4434. }
  4435. .navbar-btn.btn-xs {
  4436. margin-top: 4px;
  4437. margin-bottom: 4px;
  4438. }
  4439. .navbar-text {
  4440. margin-top: 6px;
  4441. margin-bottom: 6px;
  4442. }
  4443. @media (min-width: 541px) {
  4444. .navbar-text {
  4445. float: left;
  4446. margin-right: 0px;
  4447. margin-left: 0px;
  4448. }
  4449. }
  4450. @media (min-width: 541px) {
  4451. .navbar-left {
  4452. float: left !important;
  4453. float: left;
  4454. }
  4455. .navbar-right {
  4456. float: right !important;
  4457. float: right;
  4458. margin-right: 0px;
  4459. }
  4460. .navbar-right ~ .navbar-right {
  4461. margin-right: 0;
  4462. }
  4463. }
  4464. .navbar-default {
  4465. background-color: #f8f8f8;
  4466. border-color: #e7e7e7;
  4467. }
  4468. .navbar-default .navbar-brand {
  4469. color: #777;
  4470. }
  4471. .navbar-default .navbar-brand:hover,
  4472. .navbar-default .navbar-brand:focus {
  4473. color: #5e5e5e;
  4474. background-color: transparent;
  4475. }
  4476. .navbar-default .navbar-text {
  4477. color: #777;
  4478. }
  4479. .navbar-default .navbar-nav > li > a {
  4480. color: #777;
  4481. }
  4482. .navbar-default .navbar-nav > li > a:hover,
  4483. .navbar-default .navbar-nav > li > a:focus {
  4484. color: #333;
  4485. background-color: transparent;
  4486. }
  4487. .navbar-default .navbar-nav > .active > a,
  4488. .navbar-default .navbar-nav > .active > a:hover,
  4489. .navbar-default .navbar-nav > .active > a:focus {
  4490. color: #555;
  4491. background-color: #e7e7e7;
  4492. }
  4493. .navbar-default .navbar-nav > .disabled > a,
  4494. .navbar-default .navbar-nav > .disabled > a:hover,
  4495. .navbar-default .navbar-nav > .disabled > a:focus {
  4496. color: #ccc;
  4497. background-color: transparent;
  4498. }
  4499. .navbar-default .navbar-nav > .open > a,
  4500. .navbar-default .navbar-nav > .open > a:hover,
  4501. .navbar-default .navbar-nav > .open > a:focus {
  4502. color: #555;
  4503. background-color: #e7e7e7;
  4504. }
  4505. @media (max-width: 540px) {
  4506. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4507. color: #777;
  4508. }
  4509. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4510. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4511. color: #333;
  4512. background-color: transparent;
  4513. }
  4514. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4515. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4516. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4517. color: #555;
  4518. background-color: #e7e7e7;
  4519. }
  4520. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4521. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4522. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4523. color: #ccc;
  4524. background-color: transparent;
  4525. }
  4526. }
  4527. .navbar-default .navbar-toggle {
  4528. border-color: #ddd;
  4529. }
  4530. .navbar-default .navbar-toggle:hover,
  4531. .navbar-default .navbar-toggle:focus {
  4532. background-color: #ddd;
  4533. }
  4534. .navbar-default .navbar-toggle .icon-bar {
  4535. background-color: #888;
  4536. }
  4537. .navbar-default .navbar-collapse,
  4538. .navbar-default .navbar-form {
  4539. border-color: #e7e7e7;
  4540. }
  4541. .navbar-default .navbar-link {
  4542. color: #777;
  4543. }
  4544. .navbar-default .navbar-link:hover {
  4545. color: #333;
  4546. }
  4547. .navbar-default .btn-link {
  4548. color: #777;
  4549. }
  4550. .navbar-default .btn-link:hover,
  4551. .navbar-default .btn-link:focus {
  4552. color: #333;
  4553. }
  4554. .navbar-default .btn-link[disabled]:hover,
  4555. fieldset[disabled] .navbar-default .btn-link:hover,
  4556. .navbar-default .btn-link[disabled]:focus,
  4557. fieldset[disabled] .navbar-default .btn-link:focus {
  4558. color: #ccc;
  4559. }
  4560. .navbar-inverse {
  4561. background-color: #222;
  4562. border-color: #080808;
  4563. }
  4564. .navbar-inverse .navbar-brand {
  4565. color: #9d9d9d;
  4566. }
  4567. .navbar-inverse .navbar-brand:hover,
  4568. .navbar-inverse .navbar-brand:focus {
  4569. color: #fff;
  4570. background-color: transparent;
  4571. }
  4572. .navbar-inverse .navbar-text {
  4573. color: #9d9d9d;
  4574. }
  4575. .navbar-inverse .navbar-nav > li > a {
  4576. color: #9d9d9d;
  4577. }
  4578. .navbar-inverse .navbar-nav > li > a:hover,
  4579. .navbar-inverse .navbar-nav > li > a:focus {
  4580. color: #fff;
  4581. background-color: transparent;
  4582. }
  4583. .navbar-inverse .navbar-nav > .active > a,
  4584. .navbar-inverse .navbar-nav > .active > a:hover,
  4585. .navbar-inverse .navbar-nav > .active > a:focus {
  4586. color: #fff;
  4587. background-color: #080808;
  4588. }
  4589. .navbar-inverse .navbar-nav > .disabled > a,
  4590. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4591. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4592. color: #444;
  4593. background-color: transparent;
  4594. }
  4595. .navbar-inverse .navbar-nav > .open > a,
  4596. .navbar-inverse .navbar-nav > .open > a:hover,
  4597. .navbar-inverse .navbar-nav > .open > a:focus {
  4598. color: #fff;
  4599. background-color: #080808;
  4600. }
  4601. @media (max-width: 540px) {
  4602. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4603. border-color: #080808;
  4604. }
  4605. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4606. background-color: #080808;
  4607. }
  4608. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4609. color: #9d9d9d;
  4610. }
  4611. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4612. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4613. color: #fff;
  4614. background-color: transparent;
  4615. }
  4616. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4617. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4618. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4619. color: #fff;
  4620. background-color: #080808;
  4621. }
  4622. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4623. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4624. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4625. color: #444;
  4626. background-color: transparent;
  4627. }
  4628. }
  4629. .navbar-inverse .navbar-toggle {
  4630. border-color: #333;
  4631. }
  4632. .navbar-inverse .navbar-toggle:hover,
  4633. .navbar-inverse .navbar-toggle:focus {
  4634. background-color: #333;
  4635. }
  4636. .navbar-inverse .navbar-toggle .icon-bar {
  4637. background-color: #fff;
  4638. }
  4639. .navbar-inverse .navbar-collapse,
  4640. .navbar-inverse .navbar-form {
  4641. border-color: #101010;
  4642. }
  4643. .navbar-inverse .navbar-link {
  4644. color: #9d9d9d;
  4645. }
  4646. .navbar-inverse .navbar-link:hover {
  4647. color: #fff;
  4648. }
  4649. .navbar-inverse .btn-link {
  4650. color: #9d9d9d;
  4651. }
  4652. .navbar-inverse .btn-link:hover,
  4653. .navbar-inverse .btn-link:focus {
  4654. color: #fff;
  4655. }
  4656. .navbar-inverse .btn-link[disabled]:hover,
  4657. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4658. .navbar-inverse .btn-link[disabled]:focus,
  4659. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4660. color: #444;
  4661. }
  4662. .breadcrumb {
  4663. padding: 8px 15px;
  4664. margin-bottom: 18px;
  4665. list-style: none;
  4666. background-color: #f5f5f5;
  4667. border-radius: 2px;
  4668. }
  4669. .breadcrumb > li {
  4670. display: inline-block;
  4671. }
  4672. .breadcrumb > li + li:before {
  4673. padding: 0 5px;
  4674. color: #5e5e5e;
  4675. content: "/\00a0";
  4676. }
  4677. .breadcrumb > .active {
  4678. color: #777777;
  4679. }
  4680. .pagination {
  4681. display: inline-block;
  4682. padding-left: 0;
  4683. margin: 18px 0;
  4684. border-radius: 2px;
  4685. }
  4686. .pagination > li {
  4687. display: inline;
  4688. }
  4689. .pagination > li > a,
  4690. .pagination > li > span {
  4691. position: relative;
  4692. float: left;
  4693. padding: 6px 12px;
  4694. margin-left: -1px;
  4695. line-height: 1.42857143;
  4696. color: #337ab7;
  4697. text-decoration: none;
  4698. background-color: #fff;
  4699. border: 1px solid #ddd;
  4700. }
  4701. .pagination > li > a:hover,
  4702. .pagination > li > span:hover,
  4703. .pagination > li > a:focus,
  4704. .pagination > li > span:focus {
  4705. z-index: 2;
  4706. color: #23527c;
  4707. background-color: #eeeeee;
  4708. border-color: #ddd;
  4709. }
  4710. .pagination > li:first-child > a,
  4711. .pagination > li:first-child > span {
  4712. margin-left: 0;
  4713. border-top-left-radius: 2px;
  4714. border-bottom-left-radius: 2px;
  4715. }
  4716. .pagination > li:last-child > a,
  4717. .pagination > li:last-child > span {
  4718. border-top-right-radius: 2px;
  4719. border-bottom-right-radius: 2px;
  4720. }
  4721. .pagination > .active > a,
  4722. .pagination > .active > span,
  4723. .pagination > .active > a:hover,
  4724. .pagination > .active > span:hover,
  4725. .pagination > .active > a:focus,
  4726. .pagination > .active > span:focus {
  4727. z-index: 3;
  4728. color: #fff;
  4729. cursor: default;
  4730. background-color: #337ab7;
  4731. border-color: #337ab7;
  4732. }
  4733. .pagination > .disabled > span,
  4734. .pagination > .disabled > span:hover,
  4735. .pagination > .disabled > span:focus,
  4736. .pagination > .disabled > a,
  4737. .pagination > .disabled > a:hover,
  4738. .pagination > .disabled > a:focus {
  4739. color: #777777;
  4740. cursor: not-allowed;
  4741. background-color: #fff;
  4742. border-color: #ddd;
  4743. }
  4744. .pagination-lg > li > a,
  4745. .pagination-lg > li > span {
  4746. padding: 10px 16px;
  4747. font-size: 17px;
  4748. line-height: 1.3333333;
  4749. }
  4750. .pagination-lg > li:first-child > a,
  4751. .pagination-lg > li:first-child > span {
  4752. border-top-left-radius: 3px;
  4753. border-bottom-left-radius: 3px;
  4754. }
  4755. .pagination-lg > li:last-child > a,
  4756. .pagination-lg > li:last-child > span {
  4757. border-top-right-radius: 3px;
  4758. border-bottom-right-radius: 3px;
  4759. }
  4760. .pagination-sm > li > a,
  4761. .pagination-sm > li > span {
  4762. padding: 5px 10px;
  4763. font-size: 12px;
  4764. line-height: 1.5;
  4765. }
  4766. .pagination-sm > li:first-child > a,
  4767. .pagination-sm > li:first-child > span {
  4768. border-top-left-radius: 1px;
  4769. border-bottom-left-radius: 1px;
  4770. }
  4771. .pagination-sm > li:last-child > a,
  4772. .pagination-sm > li:last-child > span {
  4773. border-top-right-radius: 1px;
  4774. border-bottom-right-radius: 1px;
  4775. }
  4776. .pager {
  4777. padding-left: 0;
  4778. margin: 18px 0;
  4779. text-align: center;
  4780. list-style: none;
  4781. }
  4782. .pager li {
  4783. display: inline;
  4784. }
  4785. .pager li > a,
  4786. .pager li > span {
  4787. display: inline-block;
  4788. padding: 5px 14px;
  4789. background-color: #fff;
  4790. border: 1px solid #ddd;
  4791. border-radius: 15px;
  4792. }
  4793. .pager li > a:hover,
  4794. .pager li > a:focus {
  4795. text-decoration: none;
  4796. background-color: #eeeeee;
  4797. }
  4798. .pager .next > a,
  4799. .pager .next > span {
  4800. float: right;
  4801. }
  4802. .pager .previous > a,
  4803. .pager .previous > span {
  4804. float: left;
  4805. }
  4806. .pager .disabled > a,
  4807. .pager .disabled > a:hover,
  4808. .pager .disabled > a:focus,
  4809. .pager .disabled > span {
  4810. color: #777777;
  4811. cursor: not-allowed;
  4812. background-color: #fff;
  4813. }
  4814. .label {
  4815. display: inline;
  4816. padding: .2em .6em .3em;
  4817. font-size: 75%;
  4818. font-weight: 700;
  4819. line-height: 1;
  4820. color: #fff;
  4821. text-align: center;
  4822. white-space: nowrap;
  4823. vertical-align: baseline;
  4824. border-radius: .25em;
  4825. }
  4826. a.label:hover,
  4827. a.label:focus {
  4828. color: #fff;
  4829. text-decoration: none;
  4830. cursor: pointer;
  4831. }
  4832. .label:empty {
  4833. display: none;
  4834. }
  4835. .btn .label {
  4836. position: relative;
  4837. top: -1px;
  4838. }
  4839. .label-default {
  4840. background-color: #777777;
  4841. }
  4842. .label-default[href]:hover,
  4843. .label-default[href]:focus {
  4844. background-color: #5e5e5e;
  4845. }
  4846. .label-primary {
  4847. background-color: #337ab7;
  4848. }
  4849. .label-primary[href]:hover,
  4850. .label-primary[href]:focus {
  4851. background-color: #286090;
  4852. }
  4853. .label-success {
  4854. background-color: #5cb85c;
  4855. }
  4856. .label-success[href]:hover,
  4857. .label-success[href]:focus {
  4858. background-color: #449d44;
  4859. }
  4860. .label-info {
  4861. background-color: #5bc0de;
  4862. }
  4863. .label-info[href]:hover,
  4864. .label-info[href]:focus {
  4865. background-color: #31b0d5;
  4866. }
  4867. .label-warning {
  4868. background-color: #f0ad4e;
  4869. }
  4870. .label-warning[href]:hover,
  4871. .label-warning[href]:focus {
  4872. background-color: #ec971f;
  4873. }
  4874. .label-danger {
  4875. background-color: #d9534f;
  4876. }
  4877. .label-danger[href]:hover,
  4878. .label-danger[href]:focus {
  4879. background-color: #c9302c;
  4880. }
  4881. .badge {
  4882. display: inline-block;
  4883. min-width: 10px;
  4884. padding: 3px 7px;
  4885. font-size: 12px;
  4886. font-weight: bold;
  4887. line-height: 1;
  4888. color: #fff;
  4889. text-align: center;
  4890. white-space: nowrap;
  4891. vertical-align: middle;
  4892. background-color: #777777;
  4893. border-radius: 10px;
  4894. }
  4895. .badge:empty {
  4896. display: none;
  4897. }
  4898. .btn .badge {
  4899. position: relative;
  4900. top: -1px;
  4901. }
  4902. .btn-xs .badge,
  4903. .btn-group-xs > .btn .badge {
  4904. top: 0;
  4905. padding: 1px 5px;
  4906. }
  4907. a.badge:hover,
  4908. a.badge:focus {
  4909. color: #fff;
  4910. text-decoration: none;
  4911. cursor: pointer;
  4912. }
  4913. .list-group-item.active > .badge,
  4914. .nav-pills > .active > a > .badge {
  4915. color: #337ab7;
  4916. background-color: #fff;
  4917. }
  4918. .list-group-item > .badge {
  4919. float: right;
  4920. }
  4921. .list-group-item > .badge + .badge {
  4922. margin-right: 5px;
  4923. }
  4924. .nav-pills > li > a > .badge {
  4925. margin-left: 3px;
  4926. }
  4927. .jumbotron {
  4928. padding-top: 30px;
  4929. padding-bottom: 30px;
  4930. margin-bottom: 30px;
  4931. color: inherit;
  4932. background-color: #eeeeee;
  4933. }
  4934. .jumbotron h1,
  4935. .jumbotron .h1 {
  4936. color: inherit;
  4937. }
  4938. .jumbotron p {
  4939. margin-bottom: 15px;
  4940. font-size: 20px;
  4941. font-weight: 200;
  4942. }
  4943. .jumbotron > hr {
  4944. border-top-color: #d5d5d5;
  4945. }
  4946. .container .jumbotron,
  4947. .container-fluid .jumbotron {
  4948. padding-right: 0px;
  4949. padding-left: 0px;
  4950. border-radius: 3px;
  4951. }
  4952. .jumbotron .container {
  4953. max-width: 100%;
  4954. }
  4955. @media screen and (min-width: 768px) {
  4956. .jumbotron {
  4957. padding-top: 48px;
  4958. padding-bottom: 48px;
  4959. }
  4960. .container .jumbotron,
  4961. .container-fluid .jumbotron {
  4962. padding-right: 60px;
  4963. padding-left: 60px;
  4964. }
  4965. .jumbotron h1,
  4966. .jumbotron .h1 {
  4967. font-size: 59px;
  4968. }
  4969. }
  4970. .thumbnail {
  4971. display: block;
  4972. padding: 4px;
  4973. margin-bottom: 18px;
  4974. line-height: 1.42857143;
  4975. background-color: #fff;
  4976. border: 1px solid #ddd;
  4977. border-radius: 2px;
  4978. -webkit-transition: border 0.2s ease-in-out;
  4979. -o-transition: border 0.2s ease-in-out;
  4980. transition: border 0.2s ease-in-out;
  4981. }
  4982. .thumbnail > img,
  4983. .thumbnail a > img {
  4984. margin-right: auto;
  4985. margin-left: auto;
  4986. }
  4987. a.thumbnail:hover,
  4988. a.thumbnail:focus,
  4989. a.thumbnail.active {
  4990. border-color: #337ab7;
  4991. }
  4992. .thumbnail .caption {
  4993. padding: 9px;
  4994. color: #000;
  4995. }
  4996. .alert {
  4997. padding: 15px;
  4998. margin-bottom: 18px;
  4999. border: 1px solid transparent;
  5000. border-radius: 2px;
  5001. }
  5002. .alert h4 {
  5003. margin-top: 0;
  5004. color: inherit;
  5005. }
  5006. .alert .alert-link {
  5007. font-weight: bold;
  5008. }
  5009. .alert > p,
  5010. .alert > ul {
  5011. margin-bottom: 0;
  5012. }
  5013. .alert > p + p {
  5014. margin-top: 5px;
  5015. }
  5016. .alert-dismissable,
  5017. .alert-dismissible {
  5018. padding-right: 35px;
  5019. }
  5020. .alert-dismissable .close,
  5021. .alert-dismissible .close {
  5022. position: relative;
  5023. top: -2px;
  5024. right: -21px;
  5025. color: inherit;
  5026. }
  5027. .alert-success {
  5028. color: #3c763d;
  5029. background-color: #dff0d8;
  5030. border-color: #d6e9c6;
  5031. }
  5032. .alert-success hr {
  5033. border-top-color: #c9e2b3;
  5034. }
  5035. .alert-success .alert-link {
  5036. color: #2b542c;
  5037. }
  5038. .alert-info {
  5039. color: #31708f;
  5040. background-color: #d9edf7;
  5041. border-color: #bce8f1;
  5042. }
  5043. .alert-info hr {
  5044. border-top-color: #a6e1ec;
  5045. }
  5046. .alert-info .alert-link {
  5047. color: #245269;
  5048. }
  5049. .alert-warning {
  5050. color: #8a6d3b;
  5051. background-color: #fcf8e3;
  5052. border-color: #faebcc;
  5053. }
  5054. .alert-warning hr {
  5055. border-top-color: #f7e1b5;
  5056. }
  5057. .alert-warning .alert-link {
  5058. color: #66512c;
  5059. }
  5060. .alert-danger {
  5061. color: #a94442;
  5062. background-color: #f2dede;
  5063. border-color: #ebccd1;
  5064. }
  5065. .alert-danger hr {
  5066. border-top-color: #e4b9c0;
  5067. }
  5068. .alert-danger .alert-link {
  5069. color: #843534;
  5070. }
  5071. @-webkit-keyframes progress-bar-stripes {
  5072. from {
  5073. background-position: 40px 0;
  5074. }
  5075. to {
  5076. background-position: 0 0;
  5077. }
  5078. }
  5079. @keyframes progress-bar-stripes {
  5080. from {
  5081. background-position: 40px 0;
  5082. }
  5083. to {
  5084. background-position: 0 0;
  5085. }
  5086. }
  5087. .progress {
  5088. height: 18px;
  5089. margin-bottom: 18px;
  5090. overflow: hidden;
  5091. background-color: #f5f5f5;
  5092. border-radius: 2px;
  5093. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5094. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5095. }
  5096. .progress-bar {
  5097. float: left;
  5098. width: 0%;
  5099. height: 100%;
  5100. font-size: 12px;
  5101. line-height: 18px;
  5102. color: #fff;
  5103. text-align: center;
  5104. background-color: #337ab7;
  5105. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5106. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5107. -webkit-transition: width 0.6s ease;
  5108. -o-transition: width 0.6s ease;
  5109. transition: width 0.6s ease;
  5110. }
  5111. .progress-striped .progress-bar,
  5112. .progress-bar-striped {
  5113. 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);
  5114. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5115. 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);
  5116. background-size: 40px 40px;
  5117. }
  5118. .progress.active .progress-bar,
  5119. .progress-bar.active {
  5120. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5121. -o-animation: progress-bar-stripes 2s linear infinite;
  5122. animation: progress-bar-stripes 2s linear infinite;
  5123. }
  5124. .progress-bar-success {
  5125. background-color: #5cb85c;
  5126. }
  5127. .progress-striped .progress-bar-success {
  5128. 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);
  5129. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5130. 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);
  5131. }
  5132. .progress-bar-info {
  5133. background-color: #5bc0de;
  5134. }
  5135. .progress-striped .progress-bar-info {
  5136. 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);
  5137. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5138. 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);
  5139. }
  5140. .progress-bar-warning {
  5141. background-color: #f0ad4e;
  5142. }
  5143. .progress-striped .progress-bar-warning {
  5144. 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);
  5145. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5146. 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);
  5147. }
  5148. .progress-bar-danger {
  5149. background-color: #d9534f;
  5150. }
  5151. .progress-striped .progress-bar-danger {
  5152. 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);
  5153. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5154. 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);
  5155. }
  5156. .media {
  5157. margin-top: 15px;
  5158. }
  5159. .media:first-child {
  5160. margin-top: 0;
  5161. }
  5162. .media,
  5163. .media-body {
  5164. overflow: hidden;
  5165. zoom: 1;
  5166. }
  5167. .media-body {
  5168. width: 10000px;
  5169. }
  5170. .media-object {
  5171. display: block;
  5172. }
  5173. .media-object.img-thumbnail {
  5174. max-width: none;
  5175. }
  5176. .media-right,
  5177. .media > .pull-right {
  5178. padding-left: 10px;
  5179. }
  5180. .media-left,
  5181. .media > .pull-left {
  5182. padding-right: 10px;
  5183. }
  5184. .media-left,
  5185. .media-right,
  5186. .media-body {
  5187. display: table-cell;
  5188. vertical-align: top;
  5189. }
  5190. .media-middle {
  5191. vertical-align: middle;
  5192. }
  5193. .media-bottom {
  5194. vertical-align: bottom;
  5195. }
  5196. .media-heading {
  5197. margin-top: 0;
  5198. margin-bottom: 5px;
  5199. }
  5200. .media-list {
  5201. padding-left: 0;
  5202. list-style: none;
  5203. }
  5204. .list-group {
  5205. padding-left: 0;
  5206. margin-bottom: 20px;
  5207. }
  5208. .list-group-item {
  5209. position: relative;
  5210. display: block;
  5211. padding: 10px 15px;
  5212. margin-bottom: -1px;
  5213. background-color: #fff;
  5214. border: 1px solid #ddd;
  5215. }
  5216. .list-group-item:first-child {
  5217. border-top-left-radius: 2px;
  5218. border-top-right-radius: 2px;
  5219. }
  5220. .list-group-item:last-child {
  5221. margin-bottom: 0;
  5222. border-bottom-right-radius: 2px;
  5223. border-bottom-left-radius: 2px;
  5224. }
  5225. .list-group-item.disabled,
  5226. .list-group-item.disabled:hover,
  5227. .list-group-item.disabled:focus {
  5228. color: #777777;
  5229. cursor: not-allowed;
  5230. background-color: #eeeeee;
  5231. }
  5232. .list-group-item.disabled .list-group-item-heading,
  5233. .list-group-item.disabled:hover .list-group-item-heading,
  5234. .list-group-item.disabled:focus .list-group-item-heading {
  5235. color: inherit;
  5236. }
  5237. .list-group-item.disabled .list-group-item-text,
  5238. .list-group-item.disabled:hover .list-group-item-text,
  5239. .list-group-item.disabled:focus .list-group-item-text {
  5240. color: #777777;
  5241. }
  5242. .list-group-item.active,
  5243. .list-group-item.active:hover,
  5244. .list-group-item.active:focus {
  5245. z-index: 2;
  5246. color: #fff;
  5247. background-color: #337ab7;
  5248. border-color: #337ab7;
  5249. }
  5250. .list-group-item.active .list-group-item-heading,
  5251. .list-group-item.active:hover .list-group-item-heading,
  5252. .list-group-item.active:focus .list-group-item-heading,
  5253. .list-group-item.active .list-group-item-heading > small,
  5254. .list-group-item.active:hover .list-group-item-heading > small,
  5255. .list-group-item.active:focus .list-group-item-heading > small,
  5256. .list-group-item.active .list-group-item-heading > .small,
  5257. .list-group-item.active:hover .list-group-item-heading > .small,
  5258. .list-group-item.active:focus .list-group-item-heading > .small {
  5259. color: inherit;
  5260. }
  5261. .list-group-item.active .list-group-item-text,
  5262. .list-group-item.active:hover .list-group-item-text,
  5263. .list-group-item.active:focus .list-group-item-text {
  5264. color: #c7ddef;
  5265. }
  5266. a.list-group-item,
  5267. button.list-group-item {
  5268. color: #555;
  5269. }
  5270. a.list-group-item .list-group-item-heading,
  5271. button.list-group-item .list-group-item-heading {
  5272. color: #333;
  5273. }
  5274. a.list-group-item:hover,
  5275. button.list-group-item:hover,
  5276. a.list-group-item:focus,
  5277. button.list-group-item:focus {
  5278. color: #555;
  5279. text-decoration: none;
  5280. background-color: #f5f5f5;
  5281. }
  5282. button.list-group-item {
  5283. width: 100%;
  5284. text-align: left;
  5285. }
  5286. .list-group-item-success {
  5287. color: #3c763d;
  5288. background-color: #dff0d8;
  5289. }
  5290. a.list-group-item-success,
  5291. button.list-group-item-success {
  5292. color: #3c763d;
  5293. }
  5294. a.list-group-item-success .list-group-item-heading,
  5295. button.list-group-item-success .list-group-item-heading {
  5296. color: inherit;
  5297. }
  5298. a.list-group-item-success:hover,
  5299. button.list-group-item-success:hover,
  5300. a.list-group-item-success:focus,
  5301. button.list-group-item-success:focus {
  5302. color: #3c763d;
  5303. background-color: #d0e9c6;
  5304. }
  5305. a.list-group-item-success.active,
  5306. button.list-group-item-success.active,
  5307. a.list-group-item-success.active:hover,
  5308. button.list-group-item-success.active:hover,
  5309. a.list-group-item-success.active:focus,
  5310. button.list-group-item-success.active:focus {
  5311. color: #fff;
  5312. background-color: #3c763d;
  5313. border-color: #3c763d;
  5314. }
  5315. .list-group-item-info {
  5316. color: #31708f;
  5317. background-color: #d9edf7;
  5318. }
  5319. a.list-group-item-info,
  5320. button.list-group-item-info {
  5321. color: #31708f;
  5322. }
  5323. a.list-group-item-info .list-group-item-heading,
  5324. button.list-group-item-info .list-group-item-heading {
  5325. color: inherit;
  5326. }
  5327. a.list-group-item-info:hover,
  5328. button.list-group-item-info:hover,
  5329. a.list-group-item-info:focus,
  5330. button.list-group-item-info:focus {
  5331. color: #31708f;
  5332. background-color: #c4e3f3;
  5333. }
  5334. a.list-group-item-info.active,
  5335. button.list-group-item-info.active,
  5336. a.list-group-item-info.active:hover,
  5337. button.list-group-item-info.active:hover,
  5338. a.list-group-item-info.active:focus,
  5339. button.list-group-item-info.active:focus {
  5340. color: #fff;
  5341. background-color: #31708f;
  5342. border-color: #31708f;
  5343. }
  5344. .list-group-item-warning {
  5345. color: #8a6d3b;
  5346. background-color: #fcf8e3;
  5347. }
  5348. a.list-group-item-warning,
  5349. button.list-group-item-warning {
  5350. color: #8a6d3b;
  5351. }
  5352. a.list-group-item-warning .list-group-item-heading,
  5353. button.list-group-item-warning .list-group-item-heading {
  5354. color: inherit;
  5355. }
  5356. a.list-group-item-warning:hover,
  5357. button.list-group-item-warning:hover,
  5358. a.list-group-item-warning:focus,
  5359. button.list-group-item-warning:focus {
  5360. color: #8a6d3b;
  5361. background-color: #faf2cc;
  5362. }
  5363. a.list-group-item-warning.active,
  5364. button.list-group-item-warning.active,
  5365. a.list-group-item-warning.active:hover,
  5366. button.list-group-item-warning.active:hover,
  5367. a.list-group-item-warning.active:focus,
  5368. button.list-group-item-warning.active:focus {
  5369. color: #fff;
  5370. background-color: #8a6d3b;
  5371. border-color: #8a6d3b;
  5372. }
  5373. .list-group-item-danger {
  5374. color: #a94442;
  5375. background-color: #f2dede;
  5376. }
  5377. a.list-group-item-danger,
  5378. button.list-group-item-danger {
  5379. color: #a94442;
  5380. }
  5381. a.list-group-item-danger .list-group-item-heading,
  5382. button.list-group-item-danger .list-group-item-heading {
  5383. color: inherit;
  5384. }
  5385. a.list-group-item-danger:hover,
  5386. button.list-group-item-danger:hover,
  5387. a.list-group-item-danger:focus,
  5388. button.list-group-item-danger:focus {
  5389. color: #a94442;
  5390. background-color: #ebcccc;
  5391. }
  5392. a.list-group-item-danger.active,
  5393. button.list-group-item-danger.active,
  5394. a.list-group-item-danger.active:hover,
  5395. button.list-group-item-danger.active:hover,
  5396. a.list-group-item-danger.active:focus,
  5397. button.list-group-item-danger.active:focus {
  5398. color: #fff;
  5399. background-color: #a94442;
  5400. border-color: #a94442;
  5401. }
  5402. .list-group-item-heading {
  5403. margin-top: 0;
  5404. margin-bottom: 5px;
  5405. }
  5406. .list-group-item-text {
  5407. margin-bottom: 0;
  5408. line-height: 1.3;
  5409. }
  5410. .panel {
  5411. margin-bottom: 18px;
  5412. background-color: #fff;
  5413. border: 1px solid transparent;
  5414. border-radius: 2px;
  5415. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5416. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5417. }
  5418. .panel-body {
  5419. padding: 15px;
  5420. }
  5421. .panel-heading {
  5422. padding: 10px 15px;
  5423. border-bottom: 1px solid transparent;
  5424. border-top-left-radius: 1px;
  5425. border-top-right-radius: 1px;
  5426. }
  5427. .panel-heading > .dropdown .dropdown-toggle {
  5428. color: inherit;
  5429. }
  5430. .panel-title {
  5431. margin-top: 0;
  5432. margin-bottom: 0;
  5433. font-size: 15px;
  5434. color: inherit;
  5435. }
  5436. .panel-title > a,
  5437. .panel-title > small,
  5438. .panel-title > .small,
  5439. .panel-title > small > a,
  5440. .panel-title > .small > a {
  5441. color: inherit;
  5442. }
  5443. .panel-footer {
  5444. padding: 10px 15px;
  5445. background-color: #f5f5f5;
  5446. border-top: 1px solid #ddd;
  5447. border-bottom-right-radius: 1px;
  5448. border-bottom-left-radius: 1px;
  5449. }
  5450. .panel > .list-group,
  5451. .panel > .panel-collapse > .list-group {
  5452. margin-bottom: 0;
  5453. }
  5454. .panel > .list-group .list-group-item,
  5455. .panel > .panel-collapse > .list-group .list-group-item {
  5456. border-width: 1px 0;
  5457. border-radius: 0;
  5458. }
  5459. .panel > .list-group:first-child .list-group-item:first-child,
  5460. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5461. border-top: 0;
  5462. border-top-left-radius: 1px;
  5463. border-top-right-radius: 1px;
  5464. }
  5465. .panel > .list-group:last-child .list-group-item:last-child,
  5466. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5467. border-bottom: 0;
  5468. border-bottom-right-radius: 1px;
  5469. border-bottom-left-radius: 1px;
  5470. }
  5471. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5472. border-top-left-radius: 0;
  5473. border-top-right-radius: 0;
  5474. }
  5475. .panel-heading + .list-group .list-group-item:first-child {
  5476. border-top-width: 0;
  5477. }
  5478. .list-group + .panel-footer {
  5479. border-top-width: 0;
  5480. }
  5481. .panel > .table,
  5482. .panel > .table-responsive > .table,
  5483. .panel > .panel-collapse > .table {
  5484. margin-bottom: 0;
  5485. }
  5486. .panel > .table caption,
  5487. .panel > .table-responsive > .table caption,
  5488. .panel > .panel-collapse > .table caption {
  5489. padding-right: 15px;
  5490. padding-left: 15px;
  5491. }
  5492. .panel > .table:first-child,
  5493. .panel > .table-responsive:first-child > .table:first-child {
  5494. border-top-left-radius: 1px;
  5495. border-top-right-radius: 1px;
  5496. }
  5497. .panel > .table:first-child > thead:first-child > tr:first-child,
  5498. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5499. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5500. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5501. border-top-left-radius: 1px;
  5502. border-top-right-radius: 1px;
  5503. }
  5504. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5505. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5506. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5507. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5508. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5509. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5510. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5511. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5512. border-top-left-radius: 1px;
  5513. }
  5514. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5515. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5516. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5517. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5518. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5519. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5520. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5521. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5522. border-top-right-radius: 1px;
  5523. }
  5524. .panel > .table:last-child,
  5525. .panel > .table-responsive:last-child > .table:last-child {
  5526. border-bottom-right-radius: 1px;
  5527. border-bottom-left-radius: 1px;
  5528. }
  5529. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5530. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5531. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5532. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5533. border-bottom-right-radius: 1px;
  5534. border-bottom-left-radius: 1px;
  5535. }
  5536. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5537. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5538. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5539. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5540. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5541. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5542. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5543. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5544. border-bottom-left-radius: 1px;
  5545. }
  5546. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5547. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5548. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5549. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5550. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5551. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5552. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5553. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5554. border-bottom-right-radius: 1px;
  5555. }
  5556. .panel > .panel-body + .table,
  5557. .panel > .panel-body + .table-responsive,
  5558. .panel > .table + .panel-body,
  5559. .panel > .table-responsive + .panel-body {
  5560. border-top: 1px solid #ddd;
  5561. }
  5562. .panel > .table > tbody:first-child > tr:first-child th,
  5563. .panel > .table > tbody:first-child > tr:first-child td {
  5564. border-top: 0;
  5565. }
  5566. .panel > .table-bordered,
  5567. .panel > .table-responsive > .table-bordered {
  5568. border: 0;
  5569. }
  5570. .panel > .table-bordered > thead > tr > th:first-child,
  5571. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5572. .panel > .table-bordered > tbody > tr > th:first-child,
  5573. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5574. .panel > .table-bordered > tfoot > tr > th:first-child,
  5575. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5576. .panel > .table-bordered > thead > tr > td:first-child,
  5577. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5578. .panel > .table-bordered > tbody > tr > td:first-child,
  5579. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5580. .panel > .table-bordered > tfoot > tr > td:first-child,
  5581. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5582. border-left: 0;
  5583. }
  5584. .panel > .table-bordered > thead > tr > th:last-child,
  5585. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5586. .panel > .table-bordered > tbody > tr > th:last-child,
  5587. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5588. .panel > .table-bordered > tfoot > tr > th:last-child,
  5589. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5590. .panel > .table-bordered > thead > tr > td:last-child,
  5591. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5592. .panel > .table-bordered > tbody > tr > td:last-child,
  5593. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5594. .panel > .table-bordered > tfoot > tr > td:last-child,
  5595. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5596. border-right: 0;
  5597. }
  5598. .panel > .table-bordered > thead > tr:first-child > td,
  5599. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5600. .panel > .table-bordered > tbody > tr:first-child > td,
  5601. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5602. .panel > .table-bordered > thead > tr:first-child > th,
  5603. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5604. .panel > .table-bordered > tbody > tr:first-child > th,
  5605. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5606. border-bottom: 0;
  5607. }
  5608. .panel > .table-bordered > tbody > tr:last-child > td,
  5609. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5610. .panel > .table-bordered > tfoot > tr:last-child > td,
  5611. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5612. .panel > .table-bordered > tbody > tr:last-child > th,
  5613. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5614. .panel > .table-bordered > tfoot > tr:last-child > th,
  5615. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5616. border-bottom: 0;
  5617. }
  5618. .panel > .table-responsive {
  5619. margin-bottom: 0;
  5620. border: 0;
  5621. }
  5622. .panel-group {
  5623. margin-bottom: 18px;
  5624. }
  5625. .panel-group .panel {
  5626. margin-bottom: 0;
  5627. border-radius: 2px;
  5628. }
  5629. .panel-group .panel + .panel {
  5630. margin-top: 5px;
  5631. }
  5632. .panel-group .panel-heading {
  5633. border-bottom: 0;
  5634. }
  5635. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5636. .panel-group .panel-heading + .panel-collapse > .list-group {
  5637. border-top: 1px solid #ddd;
  5638. }
  5639. .panel-group .panel-footer {
  5640. border-top: 0;
  5641. }
  5642. .panel-group .panel-footer + .panel-collapse .panel-body {
  5643. border-bottom: 1px solid #ddd;
  5644. }
  5645. .panel-default {
  5646. border-color: #ddd;
  5647. }
  5648. .panel-default > .panel-heading {
  5649. color: #333333;
  5650. background-color: #f5f5f5;
  5651. border-color: #ddd;
  5652. }
  5653. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5654. border-top-color: #ddd;
  5655. }
  5656. .panel-default > .panel-heading .badge {
  5657. color: #f5f5f5;
  5658. background-color: #333333;
  5659. }
  5660. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5661. border-bottom-color: #ddd;
  5662. }
  5663. .panel-primary {
  5664. border-color: #337ab7;
  5665. }
  5666. .panel-primary > .panel-heading {
  5667. color: #fff;
  5668. background-color: #337ab7;
  5669. border-color: #337ab7;
  5670. }
  5671. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5672. border-top-color: #337ab7;
  5673. }
  5674. .panel-primary > .panel-heading .badge {
  5675. color: #337ab7;
  5676. background-color: #fff;
  5677. }
  5678. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5679. border-bottom-color: #337ab7;
  5680. }
  5681. .panel-success {
  5682. border-color: #d6e9c6;
  5683. }
  5684. .panel-success > .panel-heading {
  5685. color: #3c763d;
  5686. background-color: #dff0d8;
  5687. border-color: #d6e9c6;
  5688. }
  5689. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5690. border-top-color: #d6e9c6;
  5691. }
  5692. .panel-success > .panel-heading .badge {
  5693. color: #dff0d8;
  5694. background-color: #3c763d;
  5695. }
  5696. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5697. border-bottom-color: #d6e9c6;
  5698. }
  5699. .panel-info {
  5700. border-color: #bce8f1;
  5701. }
  5702. .panel-info > .panel-heading {
  5703. color: #31708f;
  5704. background-color: #d9edf7;
  5705. border-color: #bce8f1;
  5706. }
  5707. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5708. border-top-color: #bce8f1;
  5709. }
  5710. .panel-info > .panel-heading .badge {
  5711. color: #d9edf7;
  5712. background-color: #31708f;
  5713. }
  5714. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5715. border-bottom-color: #bce8f1;
  5716. }
  5717. .panel-warning {
  5718. border-color: #faebcc;
  5719. }
  5720. .panel-warning > .panel-heading {
  5721. color: #8a6d3b;
  5722. background-color: #fcf8e3;
  5723. border-color: #faebcc;
  5724. }
  5725. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5726. border-top-color: #faebcc;
  5727. }
  5728. .panel-warning > .panel-heading .badge {
  5729. color: #fcf8e3;
  5730. background-color: #8a6d3b;
  5731. }
  5732. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5733. border-bottom-color: #faebcc;
  5734. }
  5735. .panel-danger {
  5736. border-color: #ebccd1;
  5737. }
  5738. .panel-danger > .panel-heading {
  5739. color: #a94442;
  5740. background-color: #f2dede;
  5741. border-color: #ebccd1;
  5742. }
  5743. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5744. border-top-color: #ebccd1;
  5745. }
  5746. .panel-danger > .panel-heading .badge {
  5747. color: #f2dede;
  5748. background-color: #a94442;
  5749. }
  5750. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5751. border-bottom-color: #ebccd1;
  5752. }
  5753. .embed-responsive {
  5754. position: relative;
  5755. display: block;
  5756. height: 0;
  5757. padding: 0;
  5758. overflow: hidden;
  5759. }
  5760. .embed-responsive .embed-responsive-item,
  5761. .embed-responsive iframe,
  5762. .embed-responsive embed,
  5763. .embed-responsive object,
  5764. .embed-responsive video {
  5765. position: absolute;
  5766. top: 0;
  5767. bottom: 0;
  5768. left: 0;
  5769. width: 100%;
  5770. height: 100%;
  5771. border: 0;
  5772. }
  5773. .embed-responsive-16by9 {
  5774. padding-bottom: 56.25%;
  5775. }
  5776. .embed-responsive-4by3 {
  5777. padding-bottom: 75%;
  5778. }
  5779. .well {
  5780. min-height: 20px;
  5781. padding: 19px;
  5782. margin-bottom: 20px;
  5783. background-color: #f5f5f5;
  5784. border: 1px solid #e3e3e3;
  5785. border-radius: 2px;
  5786. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5787. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5788. }
  5789. .well blockquote {
  5790. border-color: #ddd;
  5791. border-color: rgba(0, 0, 0, 0.15);
  5792. }
  5793. .well-lg {
  5794. padding: 24px;
  5795. border-radius: 3px;
  5796. }
  5797. .well-sm {
  5798. padding: 9px;
  5799. border-radius: 1px;
  5800. }
  5801. .close {
  5802. float: right;
  5803. font-size: 19.5px;
  5804. font-weight: bold;
  5805. line-height: 1;
  5806. color: #000;
  5807. text-shadow: 0 1px 0 #fff;
  5808. filter: alpha(opacity=20);
  5809. opacity: 0.2;
  5810. }
  5811. .close:hover,
  5812. .close:focus {
  5813. color: #000;
  5814. text-decoration: none;
  5815. cursor: pointer;
  5816. filter: alpha(opacity=50);
  5817. opacity: 0.5;
  5818. }
  5819. button.close {
  5820. padding: 0;
  5821. cursor: pointer;
  5822. background: transparent;
  5823. border: 0;
  5824. -webkit-appearance: none;
  5825. appearance: none;
  5826. }
  5827. .modal-open {
  5828. overflow: hidden;
  5829. }
  5830. .modal {
  5831. position: fixed;
  5832. top: 0;
  5833. right: 0;
  5834. bottom: 0;
  5835. left: 0;
  5836. z-index: 1050;
  5837. display: none;
  5838. overflow: hidden;
  5839. -webkit-overflow-scrolling: touch;
  5840. outline: 0;
  5841. }
  5842. .modal.fade .modal-dialog {
  5843. -webkit-transform: translate(0, -25%);
  5844. -ms-transform: translate(0, -25%);
  5845. -o-transform: translate(0, -25%);
  5846. transform: translate(0, -25%);
  5847. -webkit-transition: -webkit-transform 0.3s ease-out;
  5848. -moz-transition: -moz-transform 0.3s ease-out;
  5849. -o-transition: -o-transform 0.3s ease-out;
  5850. transition: transform 0.3s ease-out;
  5851. }
  5852. .modal.in .modal-dialog {
  5853. -webkit-transform: translate(0, 0);
  5854. -ms-transform: translate(0, 0);
  5855. -o-transform: translate(0, 0);
  5856. transform: translate(0, 0);
  5857. }
  5858. .modal-open .modal {
  5859. overflow-x: hidden;
  5860. overflow-y: auto;
  5861. }
  5862. .modal-dialog {
  5863. position: relative;
  5864. width: auto;
  5865. margin: 10px;
  5866. }
  5867. .modal-content {
  5868. position: relative;
  5869. background-color: #fff;
  5870. background-clip: padding-box;
  5871. border: 1px solid #999;
  5872. border: 1px solid rgba(0, 0, 0, 0.2);
  5873. border-radius: 3px;
  5874. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5875. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5876. outline: 0;
  5877. }
  5878. .modal-backdrop {
  5879. position: fixed;
  5880. top: 0;
  5881. right: 0;
  5882. bottom: 0;
  5883. left: 0;
  5884. z-index: 1040;
  5885. background-color: #000;
  5886. }
  5887. .modal-backdrop.fade {
  5888. filter: alpha(opacity=0);
  5889. opacity: 0;
  5890. }
  5891. .modal-backdrop.in {
  5892. filter: alpha(opacity=50);
  5893. opacity: 0.5;
  5894. }
  5895. .modal-header {
  5896. padding: 15px;
  5897. border-bottom: 1px solid #e5e5e5;
  5898. }
  5899. .modal-header .close {
  5900. margin-top: -2px;
  5901. }
  5902. .modal-title {
  5903. margin: 0;
  5904. line-height: 1.42857143;
  5905. }
  5906. .modal-body {
  5907. position: relative;
  5908. padding: 15px;
  5909. }
  5910. .modal-footer {
  5911. padding: 15px;
  5912. text-align: right;
  5913. border-top: 1px solid #e5e5e5;
  5914. }
  5915. .modal-footer .btn + .btn {
  5916. margin-bottom: 0;
  5917. margin-left: 5px;
  5918. }
  5919. .modal-footer .btn-group .btn + .btn {
  5920. margin-left: -1px;
  5921. }
  5922. .modal-footer .btn-block + .btn-block {
  5923. margin-left: 0;
  5924. }
  5925. .modal-scrollbar-measure {
  5926. position: absolute;
  5927. top: -9999px;
  5928. width: 50px;
  5929. height: 50px;
  5930. overflow: scroll;
  5931. }
  5932. @media (min-width: 768px) {
  5933. .modal-dialog {
  5934. width: 600px;
  5935. margin: 30px auto;
  5936. }
  5937. .modal-content {
  5938. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5939. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5940. }
  5941. .modal-sm {
  5942. width: 300px;
  5943. }
  5944. }
  5945. @media (min-width: 992px) {
  5946. .modal-lg {
  5947. width: 900px;
  5948. }
  5949. }
  5950. .tooltip {
  5951. position: absolute;
  5952. z-index: 1070;
  5953. display: block;
  5954. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5955. font-style: normal;
  5956. font-weight: 400;
  5957. line-height: 1.42857143;
  5958. line-break: auto;
  5959. text-align: left;
  5960. text-align: start;
  5961. text-decoration: none;
  5962. text-shadow: none;
  5963. text-transform: none;
  5964. letter-spacing: normal;
  5965. word-break: normal;
  5966. word-spacing: normal;
  5967. word-wrap: normal;
  5968. white-space: normal;
  5969. font-size: 12px;
  5970. filter: alpha(opacity=0);
  5971. opacity: 0;
  5972. }
  5973. .tooltip.in {
  5974. filter: alpha(opacity=90);
  5975. opacity: 0.9;
  5976. }
  5977. .tooltip.top {
  5978. padding: 5px 0;
  5979. margin-top: -3px;
  5980. }
  5981. .tooltip.right {
  5982. padding: 0 5px;
  5983. margin-left: 3px;
  5984. }
  5985. .tooltip.bottom {
  5986. padding: 5px 0;
  5987. margin-top: 3px;
  5988. }
  5989. .tooltip.left {
  5990. padding: 0 5px;
  5991. margin-left: -3px;
  5992. }
  5993. .tooltip.top .tooltip-arrow {
  5994. bottom: 0;
  5995. left: 50%;
  5996. margin-left: -5px;
  5997. border-width: 5px 5px 0;
  5998. border-top-color: #000;
  5999. }
  6000. .tooltip.top-left .tooltip-arrow {
  6001. right: 5px;
  6002. bottom: 0;
  6003. margin-bottom: -5px;
  6004. border-width: 5px 5px 0;
  6005. border-top-color: #000;
  6006. }
  6007. .tooltip.top-right .tooltip-arrow {
  6008. bottom: 0;
  6009. left: 5px;
  6010. margin-bottom: -5px;
  6011. border-width: 5px 5px 0;
  6012. border-top-color: #000;
  6013. }
  6014. .tooltip.right .tooltip-arrow {
  6015. top: 50%;
  6016. left: 0;
  6017. margin-top: -5px;
  6018. border-width: 5px 5px 5px 0;
  6019. border-right-color: #000;
  6020. }
  6021. .tooltip.left .tooltip-arrow {
  6022. top: 50%;
  6023. right: 0;
  6024. margin-top: -5px;
  6025. border-width: 5px 0 5px 5px;
  6026. border-left-color: #000;
  6027. }
  6028. .tooltip.bottom .tooltip-arrow {
  6029. top: 0;
  6030. left: 50%;
  6031. margin-left: -5px;
  6032. border-width: 0 5px 5px;
  6033. border-bottom-color: #000;
  6034. }
  6035. .tooltip.bottom-left .tooltip-arrow {
  6036. top: 0;
  6037. right: 5px;
  6038. margin-top: -5px;
  6039. border-width: 0 5px 5px;
  6040. border-bottom-color: #000;
  6041. }
  6042. .tooltip.bottom-right .tooltip-arrow {
  6043. top: 0;
  6044. left: 5px;
  6045. margin-top: -5px;
  6046. border-width: 0 5px 5px;
  6047. border-bottom-color: #000;
  6048. }
  6049. .tooltip-inner {
  6050. max-width: 200px;
  6051. padding: 3px 8px;
  6052. color: #fff;
  6053. text-align: center;
  6054. background-color: #000;
  6055. border-radius: 2px;
  6056. }
  6057. .tooltip-arrow {
  6058. position: absolute;
  6059. width: 0;
  6060. height: 0;
  6061. border-color: transparent;
  6062. border-style: solid;
  6063. }
  6064. .popover {
  6065. position: absolute;
  6066. top: 0;
  6067. left: 0;
  6068. z-index: 1060;
  6069. display: none;
  6070. max-width: 276px;
  6071. padding: 1px;
  6072. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6073. font-style: normal;
  6074. font-weight: 400;
  6075. line-height: 1.42857143;
  6076. line-break: auto;
  6077. text-align: left;
  6078. text-align: start;
  6079. text-decoration: none;
  6080. text-shadow: none;
  6081. text-transform: none;
  6082. letter-spacing: normal;
  6083. word-break: normal;
  6084. word-spacing: normal;
  6085. word-wrap: normal;
  6086. white-space: normal;
  6087. font-size: 13px;
  6088. background-color: #fff;
  6089. background-clip: padding-box;
  6090. border: 1px solid #ccc;
  6091. border: 1px solid rgba(0, 0, 0, 0.2);
  6092. border-radius: 3px;
  6093. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6094. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6095. }
  6096. .popover.top {
  6097. margin-top: -10px;
  6098. }
  6099. .popover.right {
  6100. margin-left: 10px;
  6101. }
  6102. .popover.bottom {
  6103. margin-top: 10px;
  6104. }
  6105. .popover.left {
  6106. margin-left: -10px;
  6107. }
  6108. .popover > .arrow {
  6109. border-width: 11px;
  6110. }
  6111. .popover > .arrow,
  6112. .popover > .arrow:after {
  6113. position: absolute;
  6114. display: block;
  6115. width: 0;
  6116. height: 0;
  6117. border-color: transparent;
  6118. border-style: solid;
  6119. }
  6120. .popover > .arrow:after {
  6121. content: "";
  6122. border-width: 10px;
  6123. }
  6124. .popover.top > .arrow {
  6125. bottom: -11px;
  6126. left: 50%;
  6127. margin-left: -11px;
  6128. border-top-color: #999999;
  6129. border-top-color: rgba(0, 0, 0, 0.25);
  6130. border-bottom-width: 0;
  6131. }
  6132. .popover.top > .arrow:after {
  6133. bottom: 1px;
  6134. margin-left: -10px;
  6135. content: " ";
  6136. border-top-color: #fff;
  6137. border-bottom-width: 0;
  6138. }
  6139. .popover.right > .arrow {
  6140. top: 50%;
  6141. left: -11px;
  6142. margin-top: -11px;
  6143. border-right-color: #999999;
  6144. border-right-color: rgba(0, 0, 0, 0.25);
  6145. border-left-width: 0;
  6146. }
  6147. .popover.right > .arrow:after {
  6148. bottom: -10px;
  6149. left: 1px;
  6150. content: " ";
  6151. border-right-color: #fff;
  6152. border-left-width: 0;
  6153. }
  6154. .popover.bottom > .arrow {
  6155. top: -11px;
  6156. left: 50%;
  6157. margin-left: -11px;
  6158. border-top-width: 0;
  6159. border-bottom-color: #999999;
  6160. border-bottom-color: rgba(0, 0, 0, 0.25);
  6161. }
  6162. .popover.bottom > .arrow:after {
  6163. top: 1px;
  6164. margin-left: -10px;
  6165. content: " ";
  6166. border-top-width: 0;
  6167. border-bottom-color: #fff;
  6168. }
  6169. .popover.left > .arrow {
  6170. top: 50%;
  6171. right: -11px;
  6172. margin-top: -11px;
  6173. border-right-width: 0;
  6174. border-left-color: #999999;
  6175. border-left-color: rgba(0, 0, 0, 0.25);
  6176. }
  6177. .popover.left > .arrow:after {
  6178. right: 1px;
  6179. bottom: -10px;
  6180. content: " ";
  6181. border-right-width: 0;
  6182. border-left-color: #fff;
  6183. }
  6184. .popover-title {
  6185. padding: 8px 14px;
  6186. margin: 0;
  6187. font-size: 13px;
  6188. background-color: #f7f7f7;
  6189. border-bottom: 1px solid #ebebeb;
  6190. border-radius: 2px 2px 0 0;
  6191. }
  6192. .popover-content {
  6193. padding: 9px 14px;
  6194. }
  6195. .carousel {
  6196. position: relative;
  6197. }
  6198. .carousel-inner {
  6199. position: relative;
  6200. width: 100%;
  6201. overflow: hidden;
  6202. }
  6203. .carousel-inner > .item {
  6204. position: relative;
  6205. display: none;
  6206. -webkit-transition: 0.6s ease-in-out left;
  6207. -o-transition: 0.6s ease-in-out left;
  6208. transition: 0.6s ease-in-out left;
  6209. }
  6210. .carousel-inner > .item > img,
  6211. .carousel-inner > .item > a > img {
  6212. line-height: 1;
  6213. }
  6214. @media all and (transform-3d), (-webkit-transform-3d) {
  6215. .carousel-inner > .item {
  6216. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6217. -moz-transition: -moz-transform 0.6s ease-in-out;
  6218. -o-transition: -o-transform 0.6s ease-in-out;
  6219. transition: transform 0.6s ease-in-out;
  6220. -webkit-backface-visibility: hidden;
  6221. -moz-backface-visibility: hidden;
  6222. backface-visibility: hidden;
  6223. -webkit-perspective: 1000px;
  6224. -moz-perspective: 1000px;
  6225. perspective: 1000px;
  6226. }
  6227. .carousel-inner > .item.next,
  6228. .carousel-inner > .item.active.right {
  6229. -webkit-transform: translate3d(100%, 0, 0);
  6230. transform: translate3d(100%, 0, 0);
  6231. left: 0;
  6232. }
  6233. .carousel-inner > .item.prev,
  6234. .carousel-inner > .item.active.left {
  6235. -webkit-transform: translate3d(-100%, 0, 0);
  6236. transform: translate3d(-100%, 0, 0);
  6237. left: 0;
  6238. }
  6239. .carousel-inner > .item.next.left,
  6240. .carousel-inner > .item.prev.right,
  6241. .carousel-inner > .item.active {
  6242. -webkit-transform: translate3d(0, 0, 0);
  6243. transform: translate3d(0, 0, 0);
  6244. left: 0;
  6245. }
  6246. }
  6247. .carousel-inner > .active,
  6248. .carousel-inner > .next,
  6249. .carousel-inner > .prev {
  6250. display: block;
  6251. }
  6252. .carousel-inner > .active {
  6253. left: 0;
  6254. }
  6255. .carousel-inner > .next,
  6256. .carousel-inner > .prev {
  6257. position: absolute;
  6258. top: 0;
  6259. width: 100%;
  6260. }
  6261. .carousel-inner > .next {
  6262. left: 100%;
  6263. }
  6264. .carousel-inner > .prev {
  6265. left: -100%;
  6266. }
  6267. .carousel-inner > .next.left,
  6268. .carousel-inner > .prev.right {
  6269. left: 0;
  6270. }
  6271. .carousel-inner > .active.left {
  6272. left: -100%;
  6273. }
  6274. .carousel-inner > .active.right {
  6275. left: 100%;
  6276. }
  6277. .carousel-control {
  6278. position: absolute;
  6279. top: 0;
  6280. bottom: 0;
  6281. left: 0;
  6282. width: 15%;
  6283. font-size: 20px;
  6284. color: #fff;
  6285. text-align: center;
  6286. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6287. background-color: rgba(0, 0, 0, 0);
  6288. filter: alpha(opacity=50);
  6289. opacity: 0.5;
  6290. }
  6291. .carousel-control.left {
  6292. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6293. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6294. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6295. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6296. background-repeat: repeat-x;
  6297. }
  6298. .carousel-control.right {
  6299. right: 0;
  6300. left: auto;
  6301. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6302. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6303. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6304. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6305. background-repeat: repeat-x;
  6306. }
  6307. .carousel-control:hover,
  6308. .carousel-control:focus {
  6309. color: #fff;
  6310. text-decoration: none;
  6311. outline: 0;
  6312. filter: alpha(opacity=90);
  6313. opacity: 0.9;
  6314. }
  6315. .carousel-control .icon-prev,
  6316. .carousel-control .icon-next,
  6317. .carousel-control .glyphicon-chevron-left,
  6318. .carousel-control .glyphicon-chevron-right {
  6319. position: absolute;
  6320. top: 50%;
  6321. z-index: 5;
  6322. display: inline-block;
  6323. margin-top: -10px;
  6324. }
  6325. .carousel-control .icon-prev,
  6326. .carousel-control .glyphicon-chevron-left {
  6327. left: 50%;
  6328. margin-left: -10px;
  6329. }
  6330. .carousel-control .icon-next,
  6331. .carousel-control .glyphicon-chevron-right {
  6332. right: 50%;
  6333. margin-right: -10px;
  6334. }
  6335. .carousel-control .icon-prev,
  6336. .carousel-control .icon-next {
  6337. width: 20px;
  6338. height: 20px;
  6339. font-family: serif;
  6340. line-height: 1;
  6341. }
  6342. .carousel-control .icon-prev:before {
  6343. content: "\2039";
  6344. }
  6345. .carousel-control .icon-next:before {
  6346. content: "\203a";
  6347. }
  6348. .carousel-indicators {
  6349. position: absolute;
  6350. bottom: 10px;
  6351. left: 50%;
  6352. z-index: 15;
  6353. width: 60%;
  6354. padding-left: 0;
  6355. margin-left: -30%;
  6356. text-align: center;
  6357. list-style: none;
  6358. }
  6359. .carousel-indicators li {
  6360. display: inline-block;
  6361. width: 10px;
  6362. height: 10px;
  6363. margin: 1px;
  6364. text-indent: -999px;
  6365. cursor: pointer;
  6366. background-color: #000 \9;
  6367. background-color: rgba(0, 0, 0, 0);
  6368. border: 1px solid #fff;
  6369. border-radius: 10px;
  6370. }
  6371. .carousel-indicators .active {
  6372. width: 12px;
  6373. height: 12px;
  6374. margin: 0;
  6375. background-color: #fff;
  6376. }
  6377. .carousel-caption {
  6378. position: absolute;
  6379. right: 15%;
  6380. bottom: 20px;
  6381. left: 15%;
  6382. z-index: 10;
  6383. padding-top: 20px;
  6384. padding-bottom: 20px;
  6385. color: #fff;
  6386. text-align: center;
  6387. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6388. }
  6389. .carousel-caption .btn {
  6390. text-shadow: none;
  6391. }
  6392. @media screen and (min-width: 768px) {
  6393. .carousel-control .glyphicon-chevron-left,
  6394. .carousel-control .glyphicon-chevron-right,
  6395. .carousel-control .icon-prev,
  6396. .carousel-control .icon-next {
  6397. width: 30px;
  6398. height: 30px;
  6399. margin-top: -10px;
  6400. font-size: 30px;
  6401. }
  6402. .carousel-control .glyphicon-chevron-left,
  6403. .carousel-control .icon-prev {
  6404. margin-left: -10px;
  6405. }
  6406. .carousel-control .glyphicon-chevron-right,
  6407. .carousel-control .icon-next {
  6408. margin-right: -10px;
  6409. }
  6410. .carousel-caption {
  6411. right: 20%;
  6412. left: 20%;
  6413. padding-bottom: 30px;
  6414. }
  6415. .carousel-indicators {
  6416. bottom: 20px;
  6417. }
  6418. }
  6419. .clearfix:before,
  6420. .clearfix:after,
  6421. .dl-horizontal dd:before,
  6422. .dl-horizontal dd:after,
  6423. .container:before,
  6424. .container:after,
  6425. .container-fluid:before,
  6426. .container-fluid:after,
  6427. .row:before,
  6428. .row:after,
  6429. .form-horizontal .form-group:before,
  6430. .form-horizontal .form-group:after,
  6431. .btn-toolbar:before,
  6432. .btn-toolbar:after,
  6433. .btn-group-vertical > .btn-group:before,
  6434. .btn-group-vertical > .btn-group:after,
  6435. .nav:before,
  6436. .nav:after,
  6437. .navbar:before,
  6438. .navbar:after,
  6439. .navbar-header:before,
  6440. .navbar-header:after,
  6441. .navbar-collapse:before,
  6442. .navbar-collapse:after,
  6443. .pager:before,
  6444. .pager:after,
  6445. .panel-body:before,
  6446. .panel-body:after,
  6447. .modal-header:before,
  6448. .modal-header:after,
  6449. .modal-footer:before,
  6450. .modal-footer:after,
  6451. .item_buttons:before,
  6452. .item_buttons:after {
  6453. display: table;
  6454. content: " ";
  6455. }
  6456. .clearfix:after,
  6457. .dl-horizontal dd:after,
  6458. .container:after,
  6459. .container-fluid:after,
  6460. .row:after,
  6461. .form-horizontal .form-group:after,
  6462. .btn-toolbar:after,
  6463. .btn-group-vertical > .btn-group:after,
  6464. .nav:after,
  6465. .navbar:after,
  6466. .navbar-header:after,
  6467. .navbar-collapse:after,
  6468. .pager:after,
  6469. .panel-body:after,
  6470. .modal-header:after,
  6471. .modal-footer:after,
  6472. .item_buttons:after {
  6473. clear: both;
  6474. }
  6475. .center-block {
  6476. display: block;
  6477. margin-right: auto;
  6478. margin-left: auto;
  6479. }
  6480. .pull-right {
  6481. float: right !important;
  6482. }
  6483. .pull-left {
  6484. float: left !important;
  6485. }
  6486. .hide {
  6487. display: none !important;
  6488. }
  6489. .show {
  6490. display: block !important;
  6491. }
  6492. .invisible {
  6493. visibility: hidden;
  6494. }
  6495. .text-hide {
  6496. font: 0/0 a;
  6497. color: transparent;
  6498. text-shadow: none;
  6499. background-color: transparent;
  6500. border: 0;
  6501. }
  6502. .hidden {
  6503. display: none !important;
  6504. }
  6505. .affix {
  6506. position: fixed;
  6507. }
  6508. @-ms-viewport {
  6509. width: device-width;
  6510. }
  6511. .visible-xs,
  6512. .visible-sm,
  6513. .visible-md,
  6514. .visible-lg {
  6515. display: none !important;
  6516. }
  6517. .visible-xs-block,
  6518. .visible-xs-inline,
  6519. .visible-xs-inline-block,
  6520. .visible-sm-block,
  6521. .visible-sm-inline,
  6522. .visible-sm-inline-block,
  6523. .visible-md-block,
  6524. .visible-md-inline,
  6525. .visible-md-inline-block,
  6526. .visible-lg-block,
  6527. .visible-lg-inline,
  6528. .visible-lg-inline-block {
  6529. display: none !important;
  6530. }
  6531. @media (max-width: 767px) {
  6532. .visible-xs {
  6533. display: block !important;
  6534. }
  6535. table.visible-xs {
  6536. display: table !important;
  6537. }
  6538. tr.visible-xs {
  6539. display: table-row !important;
  6540. }
  6541. th.visible-xs,
  6542. td.visible-xs {
  6543. display: table-cell !important;
  6544. }
  6545. }
  6546. @media (max-width: 767px) {
  6547. .visible-xs-block {
  6548. display: block !important;
  6549. }
  6550. }
  6551. @media (max-width: 767px) {
  6552. .visible-xs-inline {
  6553. display: inline !important;
  6554. }
  6555. }
  6556. @media (max-width: 767px) {
  6557. .visible-xs-inline-block {
  6558. display: inline-block !important;
  6559. }
  6560. }
  6561. @media (min-width: 768px) and (max-width: 991px) {
  6562. .visible-sm {
  6563. display: block !important;
  6564. }
  6565. table.visible-sm {
  6566. display: table !important;
  6567. }
  6568. tr.visible-sm {
  6569. display: table-row !important;
  6570. }
  6571. th.visible-sm,
  6572. td.visible-sm {
  6573. display: table-cell !important;
  6574. }
  6575. }
  6576. @media (min-width: 768px) and (max-width: 991px) {
  6577. .visible-sm-block {
  6578. display: block !important;
  6579. }
  6580. }
  6581. @media (min-width: 768px) and (max-width: 991px) {
  6582. .visible-sm-inline {
  6583. display: inline !important;
  6584. }
  6585. }
  6586. @media (min-width: 768px) and (max-width: 991px) {
  6587. .visible-sm-inline-block {
  6588. display: inline-block !important;
  6589. }
  6590. }
  6591. @media (min-width: 992px) and (max-width: 1199px) {
  6592. .visible-md {
  6593. display: block !important;
  6594. }
  6595. table.visible-md {
  6596. display: table !important;
  6597. }
  6598. tr.visible-md {
  6599. display: table-row !important;
  6600. }
  6601. th.visible-md,
  6602. td.visible-md {
  6603. display: table-cell !important;
  6604. }
  6605. }
  6606. @media (min-width: 992px) and (max-width: 1199px) {
  6607. .visible-md-block {
  6608. display: block !important;
  6609. }
  6610. }
  6611. @media (min-width: 992px) and (max-width: 1199px) {
  6612. .visible-md-inline {
  6613. display: inline !important;
  6614. }
  6615. }
  6616. @media (min-width: 992px) and (max-width: 1199px) {
  6617. .visible-md-inline-block {
  6618. display: inline-block !important;
  6619. }
  6620. }
  6621. @media (min-width: 1200px) {
  6622. .visible-lg {
  6623. display: block !important;
  6624. }
  6625. table.visible-lg {
  6626. display: table !important;
  6627. }
  6628. tr.visible-lg {
  6629. display: table-row !important;
  6630. }
  6631. th.visible-lg,
  6632. td.visible-lg {
  6633. display: table-cell !important;
  6634. }
  6635. }
  6636. @media (min-width: 1200px) {
  6637. .visible-lg-block {
  6638. display: block !important;
  6639. }
  6640. }
  6641. @media (min-width: 1200px) {
  6642. .visible-lg-inline {
  6643. display: inline !important;
  6644. }
  6645. }
  6646. @media (min-width: 1200px) {
  6647. .visible-lg-inline-block {
  6648. display: inline-block !important;
  6649. }
  6650. }
  6651. @media (max-width: 767px) {
  6652. .hidden-xs {
  6653. display: none !important;
  6654. }
  6655. }
  6656. @media (min-width: 768px) and (max-width: 991px) {
  6657. .hidden-sm {
  6658. display: none !important;
  6659. }
  6660. }
  6661. @media (min-width: 992px) and (max-width: 1199px) {
  6662. .hidden-md {
  6663. display: none !important;
  6664. }
  6665. }
  6666. @media (min-width: 1200px) {
  6667. .hidden-lg {
  6668. display: none !important;
  6669. }
  6670. }
  6671. .visible-print {
  6672. display: none !important;
  6673. }
  6674. @media print {
  6675. .visible-print {
  6676. display: block !important;
  6677. }
  6678. table.visible-print {
  6679. display: table !important;
  6680. }
  6681. tr.visible-print {
  6682. display: table-row !important;
  6683. }
  6684. th.visible-print,
  6685. td.visible-print {
  6686. display: table-cell !important;
  6687. }
  6688. }
  6689. .visible-print-block {
  6690. display: none !important;
  6691. }
  6692. @media print {
  6693. .visible-print-block {
  6694. display: block !important;
  6695. }
  6696. }
  6697. .visible-print-inline {
  6698. display: none !important;
  6699. }
  6700. @media print {
  6701. .visible-print-inline {
  6702. display: inline !important;
  6703. }
  6704. }
  6705. .visible-print-inline-block {
  6706. display: none !important;
  6707. }
  6708. @media print {
  6709. .visible-print-inline-block {
  6710. display: inline-block !important;
  6711. }
  6712. }
  6713. @media print {
  6714. .hidden-print {
  6715. display: none !important;
  6716. }
  6717. }
  6718. /*!
  6719. *
  6720. * Font Awesome
  6721. *
  6722. */
  6723. /*!
  6724. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  6725. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  6726. */
  6727. /* FONT PATH
  6728. * -------------------------- */
  6729. @font-face {
  6730. font-family: 'FontAwesome';
  6731. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');
  6732. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  6733. font-weight: normal;
  6734. font-style: normal;
  6735. }
  6736. .fa {
  6737. display: inline-block;
  6738. font: normal normal normal 14px/1 FontAwesome;
  6739. font-size: inherit;
  6740. text-rendering: auto;
  6741. -webkit-font-smoothing: antialiased;
  6742. -moz-osx-font-smoothing: grayscale;
  6743. }
  6744. /* makes the font 33% larger relative to the icon container */
  6745. .fa-lg {
  6746. font-size: 1.33333333em;
  6747. line-height: 0.75em;
  6748. vertical-align: -15%;
  6749. }
  6750. .fa-2x {
  6751. font-size: 2em;
  6752. }
  6753. .fa-3x {
  6754. font-size: 3em;
  6755. }
  6756. .fa-4x {
  6757. font-size: 4em;
  6758. }
  6759. .fa-5x {
  6760. font-size: 5em;
  6761. }
  6762. .fa-fw {
  6763. width: 1.28571429em;
  6764. text-align: center;
  6765. }
  6766. .fa-ul {
  6767. padding-left: 0;
  6768. margin-left: 2.14285714em;
  6769. list-style-type: none;
  6770. }
  6771. .fa-ul > li {
  6772. position: relative;
  6773. }
  6774. .fa-li {
  6775. position: absolute;
  6776. left: -2.14285714em;
  6777. width: 2.14285714em;
  6778. top: 0.14285714em;
  6779. text-align: center;
  6780. }
  6781. .fa-li.fa-lg {
  6782. left: -1.85714286em;
  6783. }
  6784. .fa-border {
  6785. padding: .2em .25em .15em;
  6786. border: solid 0.08em #eee;
  6787. border-radius: .1em;
  6788. }
  6789. .fa-pull-left {
  6790. float: left;
  6791. }
  6792. .fa-pull-right {
  6793. float: right;
  6794. }
  6795. .fa.fa-pull-left {
  6796. margin-right: .3em;
  6797. }
  6798. .fa.fa-pull-right {
  6799. margin-left: .3em;
  6800. }
  6801. /* Deprecated as of 4.4.0 */
  6802. .pull-right {
  6803. float: right;
  6804. }
  6805. .pull-left {
  6806. float: left;
  6807. }
  6808. .fa.pull-left {
  6809. margin-right: .3em;
  6810. }
  6811. .fa.pull-right {
  6812. margin-left: .3em;
  6813. }
  6814. .fa-spin {
  6815. -webkit-animation: fa-spin 2s infinite linear;
  6816. animation: fa-spin 2s infinite linear;
  6817. }
  6818. .fa-pulse {
  6819. -webkit-animation: fa-spin 1s infinite steps(8);
  6820. animation: fa-spin 1s infinite steps(8);
  6821. }
  6822. @-webkit-keyframes fa-spin {
  6823. 0% {
  6824. -webkit-transform: rotate(0deg);
  6825. transform: rotate(0deg);
  6826. }
  6827. 100% {
  6828. -webkit-transform: rotate(359deg);
  6829. transform: rotate(359deg);
  6830. }
  6831. }
  6832. @keyframes fa-spin {
  6833. 0% {
  6834. -webkit-transform: rotate(0deg);
  6835. transform: rotate(0deg);
  6836. }
  6837. 100% {
  6838. -webkit-transform: rotate(359deg);
  6839. transform: rotate(359deg);
  6840. }
  6841. }
  6842. .fa-rotate-90 {
  6843. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  6844. -webkit-transform: rotate(90deg);
  6845. -ms-transform: rotate(90deg);
  6846. transform: rotate(90deg);
  6847. }
  6848. .fa-rotate-180 {
  6849. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  6850. -webkit-transform: rotate(180deg);
  6851. -ms-transform: rotate(180deg);
  6852. transform: rotate(180deg);
  6853. }
  6854. .fa-rotate-270 {
  6855. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  6856. -webkit-transform: rotate(270deg);
  6857. -ms-transform: rotate(270deg);
  6858. transform: rotate(270deg);
  6859. }
  6860. .fa-flip-horizontal {
  6861. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  6862. -webkit-transform: scale(-1, 1);
  6863. -ms-transform: scale(-1, 1);
  6864. transform: scale(-1, 1);
  6865. }
  6866. .fa-flip-vertical {
  6867. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  6868. -webkit-transform: scale(1, -1);
  6869. -ms-transform: scale(1, -1);
  6870. transform: scale(1, -1);
  6871. }
  6872. :root .fa-rotate-90,
  6873. :root .fa-rotate-180,
  6874. :root .fa-rotate-270,
  6875. :root .fa-flip-horizontal,
  6876. :root .fa-flip-vertical {
  6877. filter: none;
  6878. }
  6879. .fa-stack {
  6880. position: relative;
  6881. display: inline-block;
  6882. width: 2em;
  6883. height: 2em;
  6884. line-height: 2em;
  6885. vertical-align: middle;
  6886. }
  6887. .fa-stack-1x,
  6888. .fa-stack-2x {
  6889. position: absolute;
  6890. left: 0;
  6891. width: 100%;
  6892. text-align: center;
  6893. }
  6894. .fa-stack-1x {
  6895. line-height: inherit;
  6896. }
  6897. .fa-stack-2x {
  6898. font-size: 2em;
  6899. }
  6900. .fa-inverse {
  6901. color: #fff;
  6902. }
  6903. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  6904. readers do not read off random characters that represent icons */
  6905. .fa-glass:before {
  6906. content: "\f000";
  6907. }
  6908. .fa-music:before {
  6909. content: "\f001";
  6910. }
  6911. .fa-search:before {
  6912. content: "\f002";
  6913. }
  6914. .fa-envelope-o:before {
  6915. content: "\f003";
  6916. }
  6917. .fa-heart:before {
  6918. content: "\f004";
  6919. }
  6920. .fa-star:before {
  6921. content: "\f005";
  6922. }
  6923. .fa-star-o:before {
  6924. content: "\f006";
  6925. }
  6926. .fa-user:before {
  6927. content: "\f007";
  6928. }
  6929. .fa-film:before {
  6930. content: "\f008";
  6931. }
  6932. .fa-th-large:before {
  6933. content: "\f009";
  6934. }
  6935. .fa-th:before {
  6936. content: "\f00a";
  6937. }
  6938. .fa-th-list:before {
  6939. content: "\f00b";
  6940. }
  6941. .fa-check:before {
  6942. content: "\f00c";
  6943. }
  6944. .fa-remove:before,
  6945. .fa-close:before,
  6946. .fa-times:before {
  6947. content: "\f00d";
  6948. }
  6949. .fa-search-plus:before {
  6950. content: "\f00e";
  6951. }
  6952. .fa-search-minus:before {
  6953. content: "\f010";
  6954. }
  6955. .fa-power-off:before {
  6956. content: "\f011";
  6957. }
  6958. .fa-signal:before {
  6959. content: "\f012";
  6960. }
  6961. .fa-gear:before,
  6962. .fa-cog:before {
  6963. content: "\f013";
  6964. }
  6965. .fa-trash-o:before {
  6966. content: "\f014";
  6967. }
  6968. .fa-home:before {
  6969. content: "\f015";
  6970. }
  6971. .fa-file-o:before {
  6972. content: "\f016";
  6973. }
  6974. .fa-clock-o:before {
  6975. content: "\f017";
  6976. }
  6977. .fa-road:before {
  6978. content: "\f018";
  6979. }
  6980. .fa-download:before {
  6981. content: "\f019";
  6982. }
  6983. .fa-arrow-circle-o-down:before {
  6984. content: "\f01a";
  6985. }
  6986. .fa-arrow-circle-o-up:before {
  6987. content: "\f01b";
  6988. }
  6989. .fa-inbox:before {
  6990. content: "\f01c";
  6991. }
  6992. .fa-play-circle-o:before {
  6993. content: "\f01d";
  6994. }
  6995. .fa-rotate-right:before,
  6996. .fa-repeat:before {
  6997. content: "\f01e";
  6998. }
  6999. .fa-refresh:before {
  7000. content: "\f021";
  7001. }
  7002. .fa-list-alt:before {
  7003. content: "\f022";
  7004. }
  7005. .fa-lock:before {
  7006. content: "\f023";
  7007. }
  7008. .fa-flag:before {
  7009. content: "\f024";
  7010. }
  7011. .fa-headphones:before {
  7012. content: "\f025";
  7013. }
  7014. .fa-volume-off:before {
  7015. content: "\f026";
  7016. }
  7017. .fa-volume-down:before {
  7018. content: "\f027";
  7019. }
  7020. .fa-volume-up:before {
  7021. content: "\f028";
  7022. }
  7023. .fa-qrcode:before {
  7024. content: "\f029";
  7025. }
  7026. .fa-barcode:before {
  7027. content: "\f02a";
  7028. }
  7029. .fa-tag:before {
  7030. content: "\f02b";
  7031. }
  7032. .fa-tags:before {
  7033. content: "\f02c";
  7034. }
  7035. .fa-book:before {
  7036. content: "\f02d";
  7037. }
  7038. .fa-bookmark:before {
  7039. content: "\f02e";
  7040. }
  7041. .fa-print:before {
  7042. content: "\f02f";
  7043. }
  7044. .fa-camera:before {
  7045. content: "\f030";
  7046. }
  7047. .fa-font:before {
  7048. content: "\f031";
  7049. }
  7050. .fa-bold:before {
  7051. content: "\f032";
  7052. }
  7053. .fa-italic:before {
  7054. content: "\f033";
  7055. }
  7056. .fa-text-height:before {
  7057. content: "\f034";
  7058. }
  7059. .fa-text-width:before {
  7060. content: "\f035";
  7061. }
  7062. .fa-align-left:before {
  7063. content: "\f036";
  7064. }
  7065. .fa-align-center:before {
  7066. content: "\f037";
  7067. }
  7068. .fa-align-right:before {
  7069. content: "\f038";
  7070. }
  7071. .fa-align-justify:before {
  7072. content: "\f039";
  7073. }
  7074. .fa-list:before {
  7075. content: "\f03a";
  7076. }
  7077. .fa-dedent:before,
  7078. .fa-outdent:before {
  7079. content: "\f03b";
  7080. }
  7081. .fa-indent:before {
  7082. content: "\f03c";
  7083. }
  7084. .fa-video-camera:before {
  7085. content: "\f03d";
  7086. }
  7087. .fa-photo:before,
  7088. .fa-image:before,
  7089. .fa-picture-o:before {
  7090. content: "\f03e";
  7091. }
  7092. .fa-pencil:before {
  7093. content: "\f040";
  7094. }
  7095. .fa-map-marker:before {
  7096. content: "\f041";
  7097. }
  7098. .fa-adjust:before {
  7099. content: "\f042";
  7100. }
  7101. .fa-tint:before {
  7102. content: "\f043";
  7103. }
  7104. .fa-edit:before,
  7105. .fa-pencil-square-o:before {
  7106. content: "\f044";
  7107. }
  7108. .fa-share-square-o:before {
  7109. content: "\f045";
  7110. }
  7111. .fa-check-square-o:before {
  7112. content: "\f046";
  7113. }
  7114. .fa-arrows:before {
  7115. content: "\f047";
  7116. }
  7117. .fa-step-backward:before {
  7118. content: "\f048";
  7119. }
  7120. .fa-fast-backward:before {
  7121. content: "\f049";
  7122. }
  7123. .fa-backward:before {
  7124. content: "\f04a";
  7125. }
  7126. .fa-play:before {
  7127. content: "\f04b";
  7128. }
  7129. .fa-pause:before {
  7130. content: "\f04c";
  7131. }
  7132. .fa-stop:before {
  7133. content: "\f04d";
  7134. }
  7135. .fa-forward:before {
  7136. content: "\f04e";
  7137. }
  7138. .fa-fast-forward:before {
  7139. content: "\f050";
  7140. }
  7141. .fa-step-forward:before {
  7142. content: "\f051";
  7143. }
  7144. .fa-eject:before {
  7145. content: "\f052";
  7146. }
  7147. .fa-chevron-left:before {
  7148. content: "\f053";
  7149. }
  7150. .fa-chevron-right:before {
  7151. content: "\f054";
  7152. }
  7153. .fa-plus-circle:before {
  7154. content: "\f055";
  7155. }
  7156. .fa-minus-circle:before {
  7157. content: "\f056";
  7158. }
  7159. .fa-times-circle:before {
  7160. content: "\f057";
  7161. }
  7162. .fa-check-circle:before {
  7163. content: "\f058";
  7164. }
  7165. .fa-question-circle:before {
  7166. content: "\f059";
  7167. }
  7168. .fa-info-circle:before {
  7169. content: "\f05a";
  7170. }
  7171. .fa-crosshairs:before {
  7172. content: "\f05b";
  7173. }
  7174. .fa-times-circle-o:before {
  7175. content: "\f05c";
  7176. }
  7177. .fa-check-circle-o:before {
  7178. content: "\f05d";
  7179. }
  7180. .fa-ban:before {
  7181. content: "\f05e";
  7182. }
  7183. .fa-arrow-left:before {
  7184. content: "\f060";
  7185. }
  7186. .fa-arrow-right:before {
  7187. content: "\f061";
  7188. }
  7189. .fa-arrow-up:before {
  7190. content: "\f062";
  7191. }
  7192. .fa-arrow-down:before {
  7193. content: "\f063";
  7194. }
  7195. .fa-mail-forward:before,
  7196. .fa-share:before {
  7197. content: "\f064";
  7198. }
  7199. .fa-expand:before {
  7200. content: "\f065";
  7201. }
  7202. .fa-compress:before {
  7203. content: "\f066";
  7204. }
  7205. .fa-plus:before {
  7206. content: "\f067";
  7207. }
  7208. .fa-minus:before {
  7209. content: "\f068";
  7210. }
  7211. .fa-asterisk:before {
  7212. content: "\f069";
  7213. }
  7214. .fa-exclamation-circle:before {
  7215. content: "\f06a";
  7216. }
  7217. .fa-gift:before {
  7218. content: "\f06b";
  7219. }
  7220. .fa-leaf:before {
  7221. content: "\f06c";
  7222. }
  7223. .fa-fire:before {
  7224. content: "\f06d";
  7225. }
  7226. .fa-eye:before {
  7227. content: "\f06e";
  7228. }
  7229. .fa-eye-slash:before {
  7230. content: "\f070";
  7231. }
  7232. .fa-warning:before,
  7233. .fa-exclamation-triangle:before {
  7234. content: "\f071";
  7235. }
  7236. .fa-plane:before {
  7237. content: "\f072";
  7238. }
  7239. .fa-calendar:before {
  7240. content: "\f073";
  7241. }
  7242. .fa-random:before {
  7243. content: "\f074";
  7244. }
  7245. .fa-comment:before {
  7246. content: "\f075";
  7247. }
  7248. .fa-magnet:before {
  7249. content: "\f076";
  7250. }
  7251. .fa-chevron-up:before {
  7252. content: "\f077";
  7253. }
  7254. .fa-chevron-down:before {
  7255. content: "\f078";
  7256. }
  7257. .fa-retweet:before {
  7258. content: "\f079";
  7259. }
  7260. .fa-shopping-cart:before {
  7261. content: "\f07a";
  7262. }
  7263. .fa-folder:before {
  7264. content: "\f07b";
  7265. }
  7266. .fa-folder-open:before {
  7267. content: "\f07c";
  7268. }
  7269. .fa-arrows-v:before {
  7270. content: "\f07d";
  7271. }
  7272. .fa-arrows-h:before {
  7273. content: "\f07e";
  7274. }
  7275. .fa-bar-chart-o:before,
  7276. .fa-bar-chart:before {
  7277. content: "\f080";
  7278. }
  7279. .fa-twitter-square:before {
  7280. content: "\f081";
  7281. }
  7282. .fa-facebook-square:before {
  7283. content: "\f082";
  7284. }
  7285. .fa-camera-retro:before {
  7286. content: "\f083";
  7287. }
  7288. .fa-key:before {
  7289. content: "\f084";
  7290. }
  7291. .fa-gears:before,
  7292. .fa-cogs:before {
  7293. content: "\f085";
  7294. }
  7295. .fa-comments:before {
  7296. content: "\f086";
  7297. }
  7298. .fa-thumbs-o-up:before {
  7299. content: "\f087";
  7300. }
  7301. .fa-thumbs-o-down:before {
  7302. content: "\f088";
  7303. }
  7304. .fa-star-half:before {
  7305. content: "\f089";
  7306. }
  7307. .fa-heart-o:before {
  7308. content: "\f08a";
  7309. }
  7310. .fa-sign-out:before {
  7311. content: "\f08b";
  7312. }
  7313. .fa-linkedin-square:before {
  7314. content: "\f08c";
  7315. }
  7316. .fa-thumb-tack:before {
  7317. content: "\f08d";
  7318. }
  7319. .fa-external-link:before {
  7320. content: "\f08e";
  7321. }
  7322. .fa-sign-in:before {
  7323. content: "\f090";
  7324. }
  7325. .fa-trophy:before {
  7326. content: "\f091";
  7327. }
  7328. .fa-github-square:before {
  7329. content: "\f092";
  7330. }
  7331. .fa-upload:before {
  7332. content: "\f093";
  7333. }
  7334. .fa-lemon-o:before {
  7335. content: "\f094";
  7336. }
  7337. .fa-phone:before {
  7338. content: "\f095";
  7339. }
  7340. .fa-square-o:before {
  7341. content: "\f096";
  7342. }
  7343. .fa-bookmark-o:before {
  7344. content: "\f097";
  7345. }
  7346. .fa-phone-square:before {
  7347. content: "\f098";
  7348. }
  7349. .fa-twitter:before {
  7350. content: "\f099";
  7351. }
  7352. .fa-facebook-f:before,
  7353. .fa-facebook:before {
  7354. content: "\f09a";
  7355. }
  7356. .fa-github:before {
  7357. content: "\f09b";
  7358. }
  7359. .fa-unlock:before {
  7360. content: "\f09c";
  7361. }
  7362. .fa-credit-card:before {
  7363. content: "\f09d";
  7364. }
  7365. .fa-feed:before,
  7366. .fa-rss:before {
  7367. content: "\f09e";
  7368. }
  7369. .fa-hdd-o:before {
  7370. content: "\f0a0";
  7371. }
  7372. .fa-bullhorn:before {
  7373. content: "\f0a1";
  7374. }
  7375. .fa-bell:before {
  7376. content: "\f0f3";
  7377. }
  7378. .fa-certificate:before {
  7379. content: "\f0a3";
  7380. }
  7381. .fa-hand-o-right:before {
  7382. content: "\f0a4";
  7383. }
  7384. .fa-hand-o-left:before {
  7385. content: "\f0a5";
  7386. }
  7387. .fa-hand-o-up:before {
  7388. content: "\f0a6";
  7389. }
  7390. .fa-hand-o-down:before {
  7391. content: "\f0a7";
  7392. }
  7393. .fa-arrow-circle-left:before {
  7394. content: "\f0a8";
  7395. }
  7396. .fa-arrow-circle-right:before {
  7397. content: "\f0a9";
  7398. }
  7399. .fa-arrow-circle-up:before {
  7400. content: "\f0aa";
  7401. }
  7402. .fa-arrow-circle-down:before {
  7403. content: "\f0ab";
  7404. }
  7405. .fa-globe:before {
  7406. content: "\f0ac";
  7407. }
  7408. .fa-wrench:before {
  7409. content: "\f0ad";
  7410. }
  7411. .fa-tasks:before {
  7412. content: "\f0ae";
  7413. }
  7414. .fa-filter:before {
  7415. content: "\f0b0";
  7416. }
  7417. .fa-briefcase:before {
  7418. content: "\f0b1";
  7419. }
  7420. .fa-arrows-alt:before {
  7421. content: "\f0b2";
  7422. }
  7423. .fa-group:before,
  7424. .fa-users:before {
  7425. content: "\f0c0";
  7426. }
  7427. .fa-chain:before,
  7428. .fa-link:before {
  7429. content: "\f0c1";
  7430. }
  7431. .fa-cloud:before {
  7432. content: "\f0c2";
  7433. }
  7434. .fa-flask:before {
  7435. content: "\f0c3";
  7436. }
  7437. .fa-cut:before,
  7438. .fa-scissors:before {
  7439. content: "\f0c4";
  7440. }
  7441. .fa-copy:before,
  7442. .fa-files-o:before {
  7443. content: "\f0c5";
  7444. }
  7445. .fa-paperclip:before {
  7446. content: "\f0c6";
  7447. }
  7448. .fa-save:before,
  7449. .fa-floppy-o:before {
  7450. content: "\f0c7";
  7451. }
  7452. .fa-square:before {
  7453. content: "\f0c8";
  7454. }
  7455. .fa-navicon:before,
  7456. .fa-reorder:before,
  7457. .fa-bars:before {
  7458. content: "\f0c9";
  7459. }
  7460. .fa-list-ul:before {
  7461. content: "\f0ca";
  7462. }
  7463. .fa-list-ol:before {
  7464. content: "\f0cb";
  7465. }
  7466. .fa-strikethrough:before {
  7467. content: "\f0cc";
  7468. }
  7469. .fa-underline:before {
  7470. content: "\f0cd";
  7471. }
  7472. .fa-table:before {
  7473. content: "\f0ce";
  7474. }
  7475. .fa-magic:before {
  7476. content: "\f0d0";
  7477. }
  7478. .fa-truck:before {
  7479. content: "\f0d1";
  7480. }
  7481. .fa-pinterest:before {
  7482. content: "\f0d2";
  7483. }
  7484. .fa-pinterest-square:before {
  7485. content: "\f0d3";
  7486. }
  7487. .fa-google-plus-square:before {
  7488. content: "\f0d4";
  7489. }
  7490. .fa-google-plus:before {
  7491. content: "\f0d5";
  7492. }
  7493. .fa-money:before {
  7494. content: "\f0d6";
  7495. }
  7496. .fa-caret-down:before {
  7497. content: "\f0d7";
  7498. }
  7499. .fa-caret-up:before {
  7500. content: "\f0d8";
  7501. }
  7502. .fa-caret-left:before {
  7503. content: "\f0d9";
  7504. }
  7505. .fa-caret-right:before {
  7506. content: "\f0da";
  7507. }
  7508. .fa-columns:before {
  7509. content: "\f0db";
  7510. }
  7511. .fa-unsorted:before,
  7512. .fa-sort:before {
  7513. content: "\f0dc";
  7514. }
  7515. .fa-sort-down:before,
  7516. .fa-sort-desc:before {
  7517. content: "\f0dd";
  7518. }
  7519. .fa-sort-up:before,
  7520. .fa-sort-asc:before {
  7521. content: "\f0de";
  7522. }
  7523. .fa-envelope:before {
  7524. content: "\f0e0";
  7525. }
  7526. .fa-linkedin:before {
  7527. content: "\f0e1";
  7528. }
  7529. .fa-rotate-left:before,
  7530. .fa-undo:before {
  7531. content: "\f0e2";
  7532. }
  7533. .fa-legal:before,
  7534. .fa-gavel:before {
  7535. content: "\f0e3";
  7536. }
  7537. .fa-dashboard:before,
  7538. .fa-tachometer:before {
  7539. content: "\f0e4";
  7540. }
  7541. .fa-comment-o:before {
  7542. content: "\f0e5";
  7543. }
  7544. .fa-comments-o:before {
  7545. content: "\f0e6";
  7546. }
  7547. .fa-flash:before,
  7548. .fa-bolt:before {
  7549. content: "\f0e7";
  7550. }
  7551. .fa-sitemap:before {
  7552. content: "\f0e8";
  7553. }
  7554. .fa-umbrella:before {
  7555. content: "\f0e9";
  7556. }
  7557. .fa-paste:before,
  7558. .fa-clipboard:before {
  7559. content: "\f0ea";
  7560. }
  7561. .fa-lightbulb-o:before {
  7562. content: "\f0eb";
  7563. }
  7564. .fa-exchange:before {
  7565. content: "\f0ec";
  7566. }
  7567. .fa-cloud-download:before {
  7568. content: "\f0ed";
  7569. }
  7570. .fa-cloud-upload:before {
  7571. content: "\f0ee";
  7572. }
  7573. .fa-user-md:before {
  7574. content: "\f0f0";
  7575. }
  7576. .fa-stethoscope:before {
  7577. content: "\f0f1";
  7578. }
  7579. .fa-suitcase:before {
  7580. content: "\f0f2";
  7581. }
  7582. .fa-bell-o:before {
  7583. content: "\f0a2";
  7584. }
  7585. .fa-coffee:before {
  7586. content: "\f0f4";
  7587. }
  7588. .fa-cutlery:before {
  7589. content: "\f0f5";
  7590. }
  7591. .fa-file-text-o:before {
  7592. content: "\f0f6";
  7593. }
  7594. .fa-building-o:before {
  7595. content: "\f0f7";
  7596. }
  7597. .fa-hospital-o:before {
  7598. content: "\f0f8";
  7599. }
  7600. .fa-ambulance:before {
  7601. content: "\f0f9";
  7602. }
  7603. .fa-medkit:before {
  7604. content: "\f0fa";
  7605. }
  7606. .fa-fighter-jet:before {
  7607. content: "\f0fb";
  7608. }
  7609. .fa-beer:before {
  7610. content: "\f0fc";
  7611. }
  7612. .fa-h-square:before {
  7613. content: "\f0fd";
  7614. }
  7615. .fa-plus-square:before {
  7616. content: "\f0fe";
  7617. }
  7618. .fa-angle-double-left:before {
  7619. content: "\f100";
  7620. }
  7621. .fa-angle-double-right:before {
  7622. content: "\f101";
  7623. }
  7624. .fa-angle-double-up:before {
  7625. content: "\f102";
  7626. }
  7627. .fa-angle-double-down:before {
  7628. content: "\f103";
  7629. }
  7630. .fa-angle-left:before {
  7631. content: "\f104";
  7632. }
  7633. .fa-angle-right:before {
  7634. content: "\f105";
  7635. }
  7636. .fa-angle-up:before {
  7637. content: "\f106";
  7638. }
  7639. .fa-angle-down:before {
  7640. content: "\f107";
  7641. }
  7642. .fa-desktop:before {
  7643. content: "\f108";
  7644. }
  7645. .fa-laptop:before {
  7646. content: "\f109";
  7647. }
  7648. .fa-tablet:before {
  7649. content: "\f10a";
  7650. }
  7651. .fa-mobile-phone:before,
  7652. .fa-mobile:before {
  7653. content: "\f10b";
  7654. }
  7655. .fa-circle-o:before {
  7656. content: "\f10c";
  7657. }
  7658. .fa-quote-left:before {
  7659. content: "\f10d";
  7660. }
  7661. .fa-quote-right:before {
  7662. content: "\f10e";
  7663. }
  7664. .fa-spinner:before {
  7665. content: "\f110";
  7666. }
  7667. .fa-circle:before {
  7668. content: "\f111";
  7669. }
  7670. .fa-mail-reply:before,
  7671. .fa-reply:before {
  7672. content: "\f112";
  7673. }
  7674. .fa-github-alt:before {
  7675. content: "\f113";
  7676. }
  7677. .fa-folder-o:before {
  7678. content: "\f114";
  7679. }
  7680. .fa-folder-open-o:before {
  7681. content: "\f115";
  7682. }
  7683. .fa-smile-o:before {
  7684. content: "\f118";
  7685. }
  7686. .fa-frown-o:before {
  7687. content: "\f119";
  7688. }
  7689. .fa-meh-o:before {
  7690. content: "\f11a";
  7691. }
  7692. .fa-gamepad:before {
  7693. content: "\f11b";
  7694. }
  7695. .fa-keyboard-o:before {
  7696. content: "\f11c";
  7697. }
  7698. .fa-flag-o:before {
  7699. content: "\f11d";
  7700. }
  7701. .fa-flag-checkered:before {
  7702. content: "\f11e";
  7703. }
  7704. .fa-terminal:before {
  7705. content: "\f120";
  7706. }
  7707. .fa-code:before {
  7708. content: "\f121";
  7709. }
  7710. .fa-mail-reply-all:before,
  7711. .fa-reply-all:before {
  7712. content: "\f122";
  7713. }
  7714. .fa-star-half-empty:before,
  7715. .fa-star-half-full:before,
  7716. .fa-star-half-o:before {
  7717. content: "\f123";
  7718. }
  7719. .fa-location-arrow:before {
  7720. content: "\f124";
  7721. }
  7722. .fa-crop:before {
  7723. content: "\f125";
  7724. }
  7725. .fa-code-fork:before {
  7726. content: "\f126";
  7727. }
  7728. .fa-unlink:before,
  7729. .fa-chain-broken:before {
  7730. content: "\f127";
  7731. }
  7732. .fa-question:before {
  7733. content: "\f128";
  7734. }
  7735. .fa-info:before {
  7736. content: "\f129";
  7737. }
  7738. .fa-exclamation:before {
  7739. content: "\f12a";
  7740. }
  7741. .fa-superscript:before {
  7742. content: "\f12b";
  7743. }
  7744. .fa-subscript:before {
  7745. content: "\f12c";
  7746. }
  7747. .fa-eraser:before {
  7748. content: "\f12d";
  7749. }
  7750. .fa-puzzle-piece:before {
  7751. content: "\f12e";
  7752. }
  7753. .fa-microphone:before {
  7754. content: "\f130";
  7755. }
  7756. .fa-microphone-slash:before {
  7757. content: "\f131";
  7758. }
  7759. .fa-shield:before {
  7760. content: "\f132";
  7761. }
  7762. .fa-calendar-o:before {
  7763. content: "\f133";
  7764. }
  7765. .fa-fire-extinguisher:before {
  7766. content: "\f134";
  7767. }
  7768. .fa-rocket:before {
  7769. content: "\f135";
  7770. }
  7771. .fa-maxcdn:before {
  7772. content: "\f136";
  7773. }
  7774. .fa-chevron-circle-left:before {
  7775. content: "\f137";
  7776. }
  7777. .fa-chevron-circle-right:before {
  7778. content: "\f138";
  7779. }
  7780. .fa-chevron-circle-up:before {
  7781. content: "\f139";
  7782. }
  7783. .fa-chevron-circle-down:before {
  7784. content: "\f13a";
  7785. }
  7786. .fa-html5:before {
  7787. content: "\f13b";
  7788. }
  7789. .fa-css3:before {
  7790. content: "\f13c";
  7791. }
  7792. .fa-anchor:before {
  7793. content: "\f13d";
  7794. }
  7795. .fa-unlock-alt:before {
  7796. content: "\f13e";
  7797. }
  7798. .fa-bullseye:before {
  7799. content: "\f140";
  7800. }
  7801. .fa-ellipsis-h:before {
  7802. content: "\f141";
  7803. }
  7804. .fa-ellipsis-v:before {
  7805. content: "\f142";
  7806. }
  7807. .fa-rss-square:before {
  7808. content: "\f143";
  7809. }
  7810. .fa-play-circle:before {
  7811. content: "\f144";
  7812. }
  7813. .fa-ticket:before {
  7814. content: "\f145";
  7815. }
  7816. .fa-minus-square:before {
  7817. content: "\f146";
  7818. }
  7819. .fa-minus-square-o:before {
  7820. content: "\f147";
  7821. }
  7822. .fa-level-up:before {
  7823. content: "\f148";
  7824. }
  7825. .fa-level-down:before {
  7826. content: "\f149";
  7827. }
  7828. .fa-check-square:before {
  7829. content: "\f14a";
  7830. }
  7831. .fa-pencil-square:before {
  7832. content: "\f14b";
  7833. }
  7834. .fa-external-link-square:before {
  7835. content: "\f14c";
  7836. }
  7837. .fa-share-square:before {
  7838. content: "\f14d";
  7839. }
  7840. .fa-compass:before {
  7841. content: "\f14e";
  7842. }
  7843. .fa-toggle-down:before,
  7844. .fa-caret-square-o-down:before {
  7845. content: "\f150";
  7846. }
  7847. .fa-toggle-up:before,
  7848. .fa-caret-square-o-up:before {
  7849. content: "\f151";
  7850. }
  7851. .fa-toggle-right:before,
  7852. .fa-caret-square-o-right:before {
  7853. content: "\f152";
  7854. }
  7855. .fa-euro:before,
  7856. .fa-eur:before {
  7857. content: "\f153";
  7858. }
  7859. .fa-gbp:before {
  7860. content: "\f154";
  7861. }
  7862. .fa-dollar:before,
  7863. .fa-usd:before {
  7864. content: "\f155";
  7865. }
  7866. .fa-rupee:before,
  7867. .fa-inr:before {
  7868. content: "\f156";
  7869. }
  7870. .fa-cny:before,
  7871. .fa-rmb:before,
  7872. .fa-yen:before,
  7873. .fa-jpy:before {
  7874. content: "\f157";
  7875. }
  7876. .fa-ruble:before,
  7877. .fa-rouble:before,
  7878. .fa-rub:before {
  7879. content: "\f158";
  7880. }
  7881. .fa-won:before,
  7882. .fa-krw:before {
  7883. content: "\f159";
  7884. }
  7885. .fa-bitcoin:before,
  7886. .fa-btc:before {
  7887. content: "\f15a";
  7888. }
  7889. .fa-file:before {
  7890. content: "\f15b";
  7891. }
  7892. .fa-file-text:before {
  7893. content: "\f15c";
  7894. }
  7895. .fa-sort-alpha-asc:before {
  7896. content: "\f15d";
  7897. }
  7898. .fa-sort-alpha-desc:before {
  7899. content: "\f15e";
  7900. }
  7901. .fa-sort-amount-asc:before {
  7902. content: "\f160";
  7903. }
  7904. .fa-sort-amount-desc:before {
  7905. content: "\f161";
  7906. }
  7907. .fa-sort-numeric-asc:before {
  7908. content: "\f162";
  7909. }
  7910. .fa-sort-numeric-desc:before {
  7911. content: "\f163";
  7912. }
  7913. .fa-thumbs-up:before {
  7914. content: "\f164";
  7915. }
  7916. .fa-thumbs-down:before {
  7917. content: "\f165";
  7918. }
  7919. .fa-youtube-square:before {
  7920. content: "\f166";
  7921. }
  7922. .fa-youtube:before {
  7923. content: "\f167";
  7924. }
  7925. .fa-xing:before {
  7926. content: "\f168";
  7927. }
  7928. .fa-xing-square:before {
  7929. content: "\f169";
  7930. }
  7931. .fa-youtube-play:before {
  7932. content: "\f16a";
  7933. }
  7934. .fa-dropbox:before {
  7935. content: "\f16b";
  7936. }
  7937. .fa-stack-overflow:before {
  7938. content: "\f16c";
  7939. }
  7940. .fa-instagram:before {
  7941. content: "\f16d";
  7942. }
  7943. .fa-flickr:before {
  7944. content: "\f16e";
  7945. }
  7946. .fa-adn:before {
  7947. content: "\f170";
  7948. }
  7949. .fa-bitbucket:before {
  7950. content: "\f171";
  7951. }
  7952. .fa-bitbucket-square:before {
  7953. content: "\f172";
  7954. }
  7955. .fa-tumblr:before {
  7956. content: "\f173";
  7957. }
  7958. .fa-tumblr-square:before {
  7959. content: "\f174";
  7960. }
  7961. .fa-long-arrow-down:before {
  7962. content: "\f175";
  7963. }
  7964. .fa-long-arrow-up:before {
  7965. content: "\f176";
  7966. }
  7967. .fa-long-arrow-left:before {
  7968. content: "\f177";
  7969. }
  7970. .fa-long-arrow-right:before {
  7971. content: "\f178";
  7972. }
  7973. .fa-apple:before {
  7974. content: "\f179";
  7975. }
  7976. .fa-windows:before {
  7977. content: "\f17a";
  7978. }
  7979. .fa-android:before {
  7980. content: "\f17b";
  7981. }
  7982. .fa-linux:before {
  7983. content: "\f17c";
  7984. }
  7985. .fa-dribbble:before {
  7986. content: "\f17d";
  7987. }
  7988. .fa-skype:before {
  7989. content: "\f17e";
  7990. }
  7991. .fa-foursquare:before {
  7992. content: "\f180";
  7993. }
  7994. .fa-trello:before {
  7995. content: "\f181";
  7996. }
  7997. .fa-female:before {
  7998. content: "\f182";
  7999. }
  8000. .fa-male:before {
  8001. content: "\f183";
  8002. }
  8003. .fa-gittip:before,
  8004. .fa-gratipay:before {
  8005. content: "\f184";
  8006. }
  8007. .fa-sun-o:before {
  8008. content: "\f185";
  8009. }
  8010. .fa-moon-o:before {
  8011. content: "\f186";
  8012. }
  8013. .fa-archive:before {
  8014. content: "\f187";
  8015. }
  8016. .fa-bug:before {
  8017. content: "\f188";
  8018. }
  8019. .fa-vk:before {
  8020. content: "\f189";
  8021. }
  8022. .fa-weibo:before {
  8023. content: "\f18a";
  8024. }
  8025. .fa-renren:before {
  8026. content: "\f18b";
  8027. }
  8028. .fa-pagelines:before {
  8029. content: "\f18c";
  8030. }
  8031. .fa-stack-exchange:before {
  8032. content: "\f18d";
  8033. }
  8034. .fa-arrow-circle-o-right:before {
  8035. content: "\f18e";
  8036. }
  8037. .fa-arrow-circle-o-left:before {
  8038. content: "\f190";
  8039. }
  8040. .fa-toggle-left:before,
  8041. .fa-caret-square-o-left:before {
  8042. content: "\f191";
  8043. }
  8044. .fa-dot-circle-o:before {
  8045. content: "\f192";
  8046. }
  8047. .fa-wheelchair:before {
  8048. content: "\f193";
  8049. }
  8050. .fa-vimeo-square:before {
  8051. content: "\f194";
  8052. }
  8053. .fa-turkish-lira:before,
  8054. .fa-try:before {
  8055. content: "\f195";
  8056. }
  8057. .fa-plus-square-o:before {
  8058. content: "\f196";
  8059. }
  8060. .fa-space-shuttle:before {
  8061. content: "\f197";
  8062. }
  8063. .fa-slack:before {
  8064. content: "\f198";
  8065. }
  8066. .fa-envelope-square:before {
  8067. content: "\f199";
  8068. }
  8069. .fa-wordpress:before {
  8070. content: "\f19a";
  8071. }
  8072. .fa-openid:before {
  8073. content: "\f19b";
  8074. }
  8075. .fa-institution:before,
  8076. .fa-bank:before,
  8077. .fa-university:before {
  8078. content: "\f19c";
  8079. }
  8080. .fa-mortar-board:before,
  8081. .fa-graduation-cap:before {
  8082. content: "\f19d";
  8083. }
  8084. .fa-yahoo:before {
  8085. content: "\f19e";
  8086. }
  8087. .fa-google:before {
  8088. content: "\f1a0";
  8089. }
  8090. .fa-reddit:before {
  8091. content: "\f1a1";
  8092. }
  8093. .fa-reddit-square:before {
  8094. content: "\f1a2";
  8095. }
  8096. .fa-stumbleupon-circle:before {
  8097. content: "\f1a3";
  8098. }
  8099. .fa-stumbleupon:before {
  8100. content: "\f1a4";
  8101. }
  8102. .fa-delicious:before {
  8103. content: "\f1a5";
  8104. }
  8105. .fa-digg:before {
  8106. content: "\f1a6";
  8107. }
  8108. .fa-pied-piper-pp:before {
  8109. content: "\f1a7";
  8110. }
  8111. .fa-pied-piper-alt:before {
  8112. content: "\f1a8";
  8113. }
  8114. .fa-drupal:before {
  8115. content: "\f1a9";
  8116. }
  8117. .fa-joomla:before {
  8118. content: "\f1aa";
  8119. }
  8120. .fa-language:before {
  8121. content: "\f1ab";
  8122. }
  8123. .fa-fax:before {
  8124. content: "\f1ac";
  8125. }
  8126. .fa-building:before {
  8127. content: "\f1ad";
  8128. }
  8129. .fa-child:before {
  8130. content: "\f1ae";
  8131. }
  8132. .fa-paw:before {
  8133. content: "\f1b0";
  8134. }
  8135. .fa-spoon:before {
  8136. content: "\f1b1";
  8137. }
  8138. .fa-cube:before {
  8139. content: "\f1b2";
  8140. }
  8141. .fa-cubes:before {
  8142. content: "\f1b3";
  8143. }
  8144. .fa-behance:before {
  8145. content: "\f1b4";
  8146. }
  8147. .fa-behance-square:before {
  8148. content: "\f1b5";
  8149. }
  8150. .fa-steam:before {
  8151. content: "\f1b6";
  8152. }
  8153. .fa-steam-square:before {
  8154. content: "\f1b7";
  8155. }
  8156. .fa-recycle:before {
  8157. content: "\f1b8";
  8158. }
  8159. .fa-automobile:before,
  8160. .fa-car:before {
  8161. content: "\f1b9";
  8162. }
  8163. .fa-cab:before,
  8164. .fa-taxi:before {
  8165. content: "\f1ba";
  8166. }
  8167. .fa-tree:before {
  8168. content: "\f1bb";
  8169. }
  8170. .fa-spotify:before {
  8171. content: "\f1bc";
  8172. }
  8173. .fa-deviantart:before {
  8174. content: "\f1bd";
  8175. }
  8176. .fa-soundcloud:before {
  8177. content: "\f1be";
  8178. }
  8179. .fa-database:before {
  8180. content: "\f1c0";
  8181. }
  8182. .fa-file-pdf-o:before {
  8183. content: "\f1c1";
  8184. }
  8185. .fa-file-word-o:before {
  8186. content: "\f1c2";
  8187. }
  8188. .fa-file-excel-o:before {
  8189. content: "\f1c3";
  8190. }
  8191. .fa-file-powerpoint-o:before {
  8192. content: "\f1c4";
  8193. }
  8194. .fa-file-photo-o:before,
  8195. .fa-file-picture-o:before,
  8196. .fa-file-image-o:before {
  8197. content: "\f1c5";
  8198. }
  8199. .fa-file-zip-o:before,
  8200. .fa-file-archive-o:before {
  8201. content: "\f1c6";
  8202. }
  8203. .fa-file-sound-o:before,
  8204. .fa-file-audio-o:before {
  8205. content: "\f1c7";
  8206. }
  8207. .fa-file-movie-o:before,
  8208. .fa-file-video-o:before {
  8209. content: "\f1c8";
  8210. }
  8211. .fa-file-code-o:before {
  8212. content: "\f1c9";
  8213. }
  8214. .fa-vine:before {
  8215. content: "\f1ca";
  8216. }
  8217. .fa-codepen:before {
  8218. content: "\f1cb";
  8219. }
  8220. .fa-jsfiddle:before {
  8221. content: "\f1cc";
  8222. }
  8223. .fa-life-bouy:before,
  8224. .fa-life-buoy:before,
  8225. .fa-life-saver:before,
  8226. .fa-support:before,
  8227. .fa-life-ring:before {
  8228. content: "\f1cd";
  8229. }
  8230. .fa-circle-o-notch:before {
  8231. content: "\f1ce";
  8232. }
  8233. .fa-ra:before,
  8234. .fa-resistance:before,
  8235. .fa-rebel:before {
  8236. content: "\f1d0";
  8237. }
  8238. .fa-ge:before,
  8239. .fa-empire:before {
  8240. content: "\f1d1";
  8241. }
  8242. .fa-git-square:before {
  8243. content: "\f1d2";
  8244. }
  8245. .fa-git:before {
  8246. content: "\f1d3";
  8247. }
  8248. .fa-y-combinator-square:before,
  8249. .fa-yc-square:before,
  8250. .fa-hacker-news:before {
  8251. content: "\f1d4";
  8252. }
  8253. .fa-tencent-weibo:before {
  8254. content: "\f1d5";
  8255. }
  8256. .fa-qq:before {
  8257. content: "\f1d6";
  8258. }
  8259. .fa-wechat:before,
  8260. .fa-weixin:before {
  8261. content: "\f1d7";
  8262. }
  8263. .fa-send:before,
  8264. .fa-paper-plane:before {
  8265. content: "\f1d8";
  8266. }
  8267. .fa-send-o:before,
  8268. .fa-paper-plane-o:before {
  8269. content: "\f1d9";
  8270. }
  8271. .fa-history:before {
  8272. content: "\f1da";
  8273. }
  8274. .fa-circle-thin:before {
  8275. content: "\f1db";
  8276. }
  8277. .fa-header:before {
  8278. content: "\f1dc";
  8279. }
  8280. .fa-paragraph:before {
  8281. content: "\f1dd";
  8282. }
  8283. .fa-sliders:before {
  8284. content: "\f1de";
  8285. }
  8286. .fa-share-alt:before {
  8287. content: "\f1e0";
  8288. }
  8289. .fa-share-alt-square:before {
  8290. content: "\f1e1";
  8291. }
  8292. .fa-bomb:before {
  8293. content: "\f1e2";
  8294. }
  8295. .fa-soccer-ball-o:before,
  8296. .fa-futbol-o:before {
  8297. content: "\f1e3";
  8298. }
  8299. .fa-tty:before {
  8300. content: "\f1e4";
  8301. }
  8302. .fa-binoculars:before {
  8303. content: "\f1e5";
  8304. }
  8305. .fa-plug:before {
  8306. content: "\f1e6";
  8307. }
  8308. .fa-slideshare:before {
  8309. content: "\f1e7";
  8310. }
  8311. .fa-twitch:before {
  8312. content: "\f1e8";
  8313. }
  8314. .fa-yelp:before {
  8315. content: "\f1e9";
  8316. }
  8317. .fa-newspaper-o:before {
  8318. content: "\f1ea";
  8319. }
  8320. .fa-wifi:before {
  8321. content: "\f1eb";
  8322. }
  8323. .fa-calculator:before {
  8324. content: "\f1ec";
  8325. }
  8326. .fa-paypal:before {
  8327. content: "\f1ed";
  8328. }
  8329. .fa-google-wallet:before {
  8330. content: "\f1ee";
  8331. }
  8332. .fa-cc-visa:before {
  8333. content: "\f1f0";
  8334. }
  8335. .fa-cc-mastercard:before {
  8336. content: "\f1f1";
  8337. }
  8338. .fa-cc-discover:before {
  8339. content: "\f1f2";
  8340. }
  8341. .fa-cc-amex:before {
  8342. content: "\f1f3";
  8343. }
  8344. .fa-cc-paypal:before {
  8345. content: "\f1f4";
  8346. }
  8347. .fa-cc-stripe:before {
  8348. content: "\f1f5";
  8349. }
  8350. .fa-bell-slash:before {
  8351. content: "\f1f6";
  8352. }
  8353. .fa-bell-slash-o:before {
  8354. content: "\f1f7";
  8355. }
  8356. .fa-trash:before {
  8357. content: "\f1f8";
  8358. }
  8359. .fa-copyright:before {
  8360. content: "\f1f9";
  8361. }
  8362. .fa-at:before {
  8363. content: "\f1fa";
  8364. }
  8365. .fa-eyedropper:before {
  8366. content: "\f1fb";
  8367. }
  8368. .fa-paint-brush:before {
  8369. content: "\f1fc";
  8370. }
  8371. .fa-birthday-cake:before {
  8372. content: "\f1fd";
  8373. }
  8374. .fa-area-chart:before {
  8375. content: "\f1fe";
  8376. }
  8377. .fa-pie-chart:before {
  8378. content: "\f200";
  8379. }
  8380. .fa-line-chart:before {
  8381. content: "\f201";
  8382. }
  8383. .fa-lastfm:before {
  8384. content: "\f202";
  8385. }
  8386. .fa-lastfm-square:before {
  8387. content: "\f203";
  8388. }
  8389. .fa-toggle-off:before {
  8390. content: "\f204";
  8391. }
  8392. .fa-toggle-on:before {
  8393. content: "\f205";
  8394. }
  8395. .fa-bicycle:before {
  8396. content: "\f206";
  8397. }
  8398. .fa-bus:before {
  8399. content: "\f207";
  8400. }
  8401. .fa-ioxhost:before {
  8402. content: "\f208";
  8403. }
  8404. .fa-angellist:before {
  8405. content: "\f209";
  8406. }
  8407. .fa-cc:before {
  8408. content: "\f20a";
  8409. }
  8410. .fa-shekel:before,
  8411. .fa-sheqel:before,
  8412. .fa-ils:before {
  8413. content: "\f20b";
  8414. }
  8415. .fa-meanpath:before {
  8416. content: "\f20c";
  8417. }
  8418. .fa-buysellads:before {
  8419. content: "\f20d";
  8420. }
  8421. .fa-connectdevelop:before {
  8422. content: "\f20e";
  8423. }
  8424. .fa-dashcube:before {
  8425. content: "\f210";
  8426. }
  8427. .fa-forumbee:before {
  8428. content: "\f211";
  8429. }
  8430. .fa-leanpub:before {
  8431. content: "\f212";
  8432. }
  8433. .fa-sellsy:before {
  8434. content: "\f213";
  8435. }
  8436. .fa-shirtsinbulk:before {
  8437. content: "\f214";
  8438. }
  8439. .fa-simplybuilt:before {
  8440. content: "\f215";
  8441. }
  8442. .fa-skyatlas:before {
  8443. content: "\f216";
  8444. }
  8445. .fa-cart-plus:before {
  8446. content: "\f217";
  8447. }
  8448. .fa-cart-arrow-down:before {
  8449. content: "\f218";
  8450. }
  8451. .fa-diamond:before {
  8452. content: "\f219";
  8453. }
  8454. .fa-ship:before {
  8455. content: "\f21a";
  8456. }
  8457. .fa-user-secret:before {
  8458. content: "\f21b";
  8459. }
  8460. .fa-motorcycle:before {
  8461. content: "\f21c";
  8462. }
  8463. .fa-street-view:before {
  8464. content: "\f21d";
  8465. }
  8466. .fa-heartbeat:before {
  8467. content: "\f21e";
  8468. }
  8469. .fa-venus:before {
  8470. content: "\f221";
  8471. }
  8472. .fa-mars:before {
  8473. content: "\f222";
  8474. }
  8475. .fa-mercury:before {
  8476. content: "\f223";
  8477. }
  8478. .fa-intersex:before,
  8479. .fa-transgender:before {
  8480. content: "\f224";
  8481. }
  8482. .fa-transgender-alt:before {
  8483. content: "\f225";
  8484. }
  8485. .fa-venus-double:before {
  8486. content: "\f226";
  8487. }
  8488. .fa-mars-double:before {
  8489. content: "\f227";
  8490. }
  8491. .fa-venus-mars:before {
  8492. content: "\f228";
  8493. }
  8494. .fa-mars-stroke:before {
  8495. content: "\f229";
  8496. }
  8497. .fa-mars-stroke-v:before {
  8498. content: "\f22a";
  8499. }
  8500. .fa-mars-stroke-h:before {
  8501. content: "\f22b";
  8502. }
  8503. .fa-neuter:before {
  8504. content: "\f22c";
  8505. }
  8506. .fa-genderless:before {
  8507. content: "\f22d";
  8508. }
  8509. .fa-facebook-official:before {
  8510. content: "\f230";
  8511. }
  8512. .fa-pinterest-p:before {
  8513. content: "\f231";
  8514. }
  8515. .fa-whatsapp:before {
  8516. content: "\f232";
  8517. }
  8518. .fa-server:before {
  8519. content: "\f233";
  8520. }
  8521. .fa-user-plus:before {
  8522. content: "\f234";
  8523. }
  8524. .fa-user-times:before {
  8525. content: "\f235";
  8526. }
  8527. .fa-hotel:before,
  8528. .fa-bed:before {
  8529. content: "\f236";
  8530. }
  8531. .fa-viacoin:before {
  8532. content: "\f237";
  8533. }
  8534. .fa-train:before {
  8535. content: "\f238";
  8536. }
  8537. .fa-subway:before {
  8538. content: "\f239";
  8539. }
  8540. .fa-medium:before {
  8541. content: "\f23a";
  8542. }
  8543. .fa-yc:before,
  8544. .fa-y-combinator:before {
  8545. content: "\f23b";
  8546. }
  8547. .fa-optin-monster:before {
  8548. content: "\f23c";
  8549. }
  8550. .fa-opencart:before {
  8551. content: "\f23d";
  8552. }
  8553. .fa-expeditedssl:before {
  8554. content: "\f23e";
  8555. }
  8556. .fa-battery-4:before,
  8557. .fa-battery:before,
  8558. .fa-battery-full:before {
  8559. content: "\f240";
  8560. }
  8561. .fa-battery-3:before,
  8562. .fa-battery-three-quarters:before {
  8563. content: "\f241";
  8564. }
  8565. .fa-battery-2:before,
  8566. .fa-battery-half:before {
  8567. content: "\f242";
  8568. }
  8569. .fa-battery-1:before,
  8570. .fa-battery-quarter:before {
  8571. content: "\f243";
  8572. }
  8573. .fa-battery-0:before,
  8574. .fa-battery-empty:before {
  8575. content: "\f244";
  8576. }
  8577. .fa-mouse-pointer:before {
  8578. content: "\f245";
  8579. }
  8580. .fa-i-cursor:before {
  8581. content: "\f246";
  8582. }
  8583. .fa-object-group:before {
  8584. content: "\f247";
  8585. }
  8586. .fa-object-ungroup:before {
  8587. content: "\f248";
  8588. }
  8589. .fa-sticky-note:before {
  8590. content: "\f249";
  8591. }
  8592. .fa-sticky-note-o:before {
  8593. content: "\f24a";
  8594. }
  8595. .fa-cc-jcb:before {
  8596. content: "\f24b";
  8597. }
  8598. .fa-cc-diners-club:before {
  8599. content: "\f24c";
  8600. }
  8601. .fa-clone:before {
  8602. content: "\f24d";
  8603. }
  8604. .fa-balance-scale:before {
  8605. content: "\f24e";
  8606. }
  8607. .fa-hourglass-o:before {
  8608. content: "\f250";
  8609. }
  8610. .fa-hourglass-1:before,
  8611. .fa-hourglass-start:before {
  8612. content: "\f251";
  8613. }
  8614. .fa-hourglass-2:before,
  8615. .fa-hourglass-half:before {
  8616. content: "\f252";
  8617. }
  8618. .fa-hourglass-3:before,
  8619. .fa-hourglass-end:before {
  8620. content: "\f253";
  8621. }
  8622. .fa-hourglass:before {
  8623. content: "\f254";
  8624. }
  8625. .fa-hand-grab-o:before,
  8626. .fa-hand-rock-o:before {
  8627. content: "\f255";
  8628. }
  8629. .fa-hand-stop-o:before,
  8630. .fa-hand-paper-o:before {
  8631. content: "\f256";
  8632. }
  8633. .fa-hand-scissors-o:before {
  8634. content: "\f257";
  8635. }
  8636. .fa-hand-lizard-o:before {
  8637. content: "\f258";
  8638. }
  8639. .fa-hand-spock-o:before {
  8640. content: "\f259";
  8641. }
  8642. .fa-hand-pointer-o:before {
  8643. content: "\f25a";
  8644. }
  8645. .fa-hand-peace-o:before {
  8646. content: "\f25b";
  8647. }
  8648. .fa-trademark:before {
  8649. content: "\f25c";
  8650. }
  8651. .fa-registered:before {
  8652. content: "\f25d";
  8653. }
  8654. .fa-creative-commons:before {
  8655. content: "\f25e";
  8656. }
  8657. .fa-gg:before {
  8658. content: "\f260";
  8659. }
  8660. .fa-gg-circle:before {
  8661. content: "\f261";
  8662. }
  8663. .fa-tripadvisor:before {
  8664. content: "\f262";
  8665. }
  8666. .fa-odnoklassniki:before {
  8667. content: "\f263";
  8668. }
  8669. .fa-odnoklassniki-square:before {
  8670. content: "\f264";
  8671. }
  8672. .fa-get-pocket:before {
  8673. content: "\f265";
  8674. }
  8675. .fa-wikipedia-w:before {
  8676. content: "\f266";
  8677. }
  8678. .fa-safari:before {
  8679. content: "\f267";
  8680. }
  8681. .fa-chrome:before {
  8682. content: "\f268";
  8683. }
  8684. .fa-firefox:before {
  8685. content: "\f269";
  8686. }
  8687. .fa-opera:before {
  8688. content: "\f26a";
  8689. }
  8690. .fa-internet-explorer:before {
  8691. content: "\f26b";
  8692. }
  8693. .fa-tv:before,
  8694. .fa-television:before {
  8695. content: "\f26c";
  8696. }
  8697. .fa-contao:before {
  8698. content: "\f26d";
  8699. }
  8700. .fa-500px:before {
  8701. content: "\f26e";
  8702. }
  8703. .fa-amazon:before {
  8704. content: "\f270";
  8705. }
  8706. .fa-calendar-plus-o:before {
  8707. content: "\f271";
  8708. }
  8709. .fa-calendar-minus-o:before {
  8710. content: "\f272";
  8711. }
  8712. .fa-calendar-times-o:before {
  8713. content: "\f273";
  8714. }
  8715. .fa-calendar-check-o:before {
  8716. content: "\f274";
  8717. }
  8718. .fa-industry:before {
  8719. content: "\f275";
  8720. }
  8721. .fa-map-pin:before {
  8722. content: "\f276";
  8723. }
  8724. .fa-map-signs:before {
  8725. content: "\f277";
  8726. }
  8727. .fa-map-o:before {
  8728. content: "\f278";
  8729. }
  8730. .fa-map:before {
  8731. content: "\f279";
  8732. }
  8733. .fa-commenting:before {
  8734. content: "\f27a";
  8735. }
  8736. .fa-commenting-o:before {
  8737. content: "\f27b";
  8738. }
  8739. .fa-houzz:before {
  8740. content: "\f27c";
  8741. }
  8742. .fa-vimeo:before {
  8743. content: "\f27d";
  8744. }
  8745. .fa-black-tie:before {
  8746. content: "\f27e";
  8747. }
  8748. .fa-fonticons:before {
  8749. content: "\f280";
  8750. }
  8751. .fa-reddit-alien:before {
  8752. content: "\f281";
  8753. }
  8754. .fa-edge:before {
  8755. content: "\f282";
  8756. }
  8757. .fa-credit-card-alt:before {
  8758. content: "\f283";
  8759. }
  8760. .fa-codiepie:before {
  8761. content: "\f284";
  8762. }
  8763. .fa-modx:before {
  8764. content: "\f285";
  8765. }
  8766. .fa-fort-awesome:before {
  8767. content: "\f286";
  8768. }
  8769. .fa-usb:before {
  8770. content: "\f287";
  8771. }
  8772. .fa-product-hunt:before {
  8773. content: "\f288";
  8774. }
  8775. .fa-mixcloud:before {
  8776. content: "\f289";
  8777. }
  8778. .fa-scribd:before {
  8779. content: "\f28a";
  8780. }
  8781. .fa-pause-circle:before {
  8782. content: "\f28b";
  8783. }
  8784. .fa-pause-circle-o:before {
  8785. content: "\f28c";
  8786. }
  8787. .fa-stop-circle:before {
  8788. content: "\f28d";
  8789. }
  8790. .fa-stop-circle-o:before {
  8791. content: "\f28e";
  8792. }
  8793. .fa-shopping-bag:before {
  8794. content: "\f290";
  8795. }
  8796. .fa-shopping-basket:before {
  8797. content: "\f291";
  8798. }
  8799. .fa-hashtag:before {
  8800. content: "\f292";
  8801. }
  8802. .fa-bluetooth:before {
  8803. content: "\f293";
  8804. }
  8805. .fa-bluetooth-b:before {
  8806. content: "\f294";
  8807. }
  8808. .fa-percent:before {
  8809. content: "\f295";
  8810. }
  8811. .fa-gitlab:before {
  8812. content: "\f296";
  8813. }
  8814. .fa-wpbeginner:before {
  8815. content: "\f297";
  8816. }
  8817. .fa-wpforms:before {
  8818. content: "\f298";
  8819. }
  8820. .fa-envira:before {
  8821. content: "\f299";
  8822. }
  8823. .fa-universal-access:before {
  8824. content: "\f29a";
  8825. }
  8826. .fa-wheelchair-alt:before {
  8827. content: "\f29b";
  8828. }
  8829. .fa-question-circle-o:before {
  8830. content: "\f29c";
  8831. }
  8832. .fa-blind:before {
  8833. content: "\f29d";
  8834. }
  8835. .fa-audio-description:before {
  8836. content: "\f29e";
  8837. }
  8838. .fa-volume-control-phone:before {
  8839. content: "\f2a0";
  8840. }
  8841. .fa-braille:before {
  8842. content: "\f2a1";
  8843. }
  8844. .fa-assistive-listening-systems:before {
  8845. content: "\f2a2";
  8846. }
  8847. .fa-asl-interpreting:before,
  8848. .fa-american-sign-language-interpreting:before {
  8849. content: "\f2a3";
  8850. }
  8851. .fa-deafness:before,
  8852. .fa-hard-of-hearing:before,
  8853. .fa-deaf:before {
  8854. content: "\f2a4";
  8855. }
  8856. .fa-glide:before {
  8857. content: "\f2a5";
  8858. }
  8859. .fa-glide-g:before {
  8860. content: "\f2a6";
  8861. }
  8862. .fa-signing:before,
  8863. .fa-sign-language:before {
  8864. content: "\f2a7";
  8865. }
  8866. .fa-low-vision:before {
  8867. content: "\f2a8";
  8868. }
  8869. .fa-viadeo:before {
  8870. content: "\f2a9";
  8871. }
  8872. .fa-viadeo-square:before {
  8873. content: "\f2aa";
  8874. }
  8875. .fa-snapchat:before {
  8876. content: "\f2ab";
  8877. }
  8878. .fa-snapchat-ghost:before {
  8879. content: "\f2ac";
  8880. }
  8881. .fa-snapchat-square:before {
  8882. content: "\f2ad";
  8883. }
  8884. .fa-pied-piper:before {
  8885. content: "\f2ae";
  8886. }
  8887. .fa-first-order:before {
  8888. content: "\f2b0";
  8889. }
  8890. .fa-yoast:before {
  8891. content: "\f2b1";
  8892. }
  8893. .fa-themeisle:before {
  8894. content: "\f2b2";
  8895. }
  8896. .fa-google-plus-circle:before,
  8897. .fa-google-plus-official:before {
  8898. content: "\f2b3";
  8899. }
  8900. .fa-fa:before,
  8901. .fa-font-awesome:before {
  8902. content: "\f2b4";
  8903. }
  8904. .fa-handshake-o:before {
  8905. content: "\f2b5";
  8906. }
  8907. .fa-envelope-open:before {
  8908. content: "\f2b6";
  8909. }
  8910. .fa-envelope-open-o:before {
  8911. content: "\f2b7";
  8912. }
  8913. .fa-linode:before {
  8914. content: "\f2b8";
  8915. }
  8916. .fa-address-book:before {
  8917. content: "\f2b9";
  8918. }
  8919. .fa-address-book-o:before {
  8920. content: "\f2ba";
  8921. }
  8922. .fa-vcard:before,
  8923. .fa-address-card:before {
  8924. content: "\f2bb";
  8925. }
  8926. .fa-vcard-o:before,
  8927. .fa-address-card-o:before {
  8928. content: "\f2bc";
  8929. }
  8930. .fa-user-circle:before {
  8931. content: "\f2bd";
  8932. }
  8933. .fa-user-circle-o:before {
  8934. content: "\f2be";
  8935. }
  8936. .fa-user-o:before {
  8937. content: "\f2c0";
  8938. }
  8939. .fa-id-badge:before {
  8940. content: "\f2c1";
  8941. }
  8942. .fa-drivers-license:before,
  8943. .fa-id-card:before {
  8944. content: "\f2c2";
  8945. }
  8946. .fa-drivers-license-o:before,
  8947. .fa-id-card-o:before {
  8948. content: "\f2c3";
  8949. }
  8950. .fa-quora:before {
  8951. content: "\f2c4";
  8952. }
  8953. .fa-free-code-camp:before {
  8954. content: "\f2c5";
  8955. }
  8956. .fa-telegram:before {
  8957. content: "\f2c6";
  8958. }
  8959. .fa-thermometer-4:before,
  8960. .fa-thermometer:before,
  8961. .fa-thermometer-full:before {
  8962. content: "\f2c7";
  8963. }
  8964. .fa-thermometer-3:before,
  8965. .fa-thermometer-three-quarters:before {
  8966. content: "\f2c8";
  8967. }
  8968. .fa-thermometer-2:before,
  8969. .fa-thermometer-half:before {
  8970. content: "\f2c9";
  8971. }
  8972. .fa-thermometer-1:before,
  8973. .fa-thermometer-quarter:before {
  8974. content: "\f2ca";
  8975. }
  8976. .fa-thermometer-0:before,
  8977. .fa-thermometer-empty:before {
  8978. content: "\f2cb";
  8979. }
  8980. .fa-shower:before {
  8981. content: "\f2cc";
  8982. }
  8983. .fa-bathtub:before,
  8984. .fa-s15:before,
  8985. .fa-bath:before {
  8986. content: "\f2cd";
  8987. }
  8988. .fa-podcast:before {
  8989. content: "\f2ce";
  8990. }
  8991. .fa-window-maximize:before {
  8992. content: "\f2d0";
  8993. }
  8994. .fa-window-minimize:before {
  8995. content: "\f2d1";
  8996. }
  8997. .fa-window-restore:before {
  8998. content: "\f2d2";
  8999. }
  9000. .fa-times-rectangle:before,
  9001. .fa-window-close:before {
  9002. content: "\f2d3";
  9003. }
  9004. .fa-times-rectangle-o:before,
  9005. .fa-window-close-o:before {
  9006. content: "\f2d4";
  9007. }
  9008. .fa-bandcamp:before {
  9009. content: "\f2d5";
  9010. }
  9011. .fa-grav:before {
  9012. content: "\f2d6";
  9013. }
  9014. .fa-etsy:before {
  9015. content: "\f2d7";
  9016. }
  9017. .fa-imdb:before {
  9018. content: "\f2d8";
  9019. }
  9020. .fa-ravelry:before {
  9021. content: "\f2d9";
  9022. }
  9023. .fa-eercast:before {
  9024. content: "\f2da";
  9025. }
  9026. .fa-microchip:before {
  9027. content: "\f2db";
  9028. }
  9029. .fa-snowflake-o:before {
  9030. content: "\f2dc";
  9031. }
  9032. .fa-superpowers:before {
  9033. content: "\f2dd";
  9034. }
  9035. .fa-wpexplorer:before {
  9036. content: "\f2de";
  9037. }
  9038. .fa-meetup:before {
  9039. content: "\f2e0";
  9040. }
  9041. .sr-only {
  9042. position: absolute;
  9043. width: 1px;
  9044. height: 1px;
  9045. padding: 0;
  9046. margin: -1px;
  9047. overflow: hidden;
  9048. clip: rect(0, 0, 0, 0);
  9049. border: 0;
  9050. }
  9051. .sr-only-focusable:active,
  9052. .sr-only-focusable:focus {
  9053. position: static;
  9054. width: auto;
  9055. height: auto;
  9056. margin: 0;
  9057. overflow: visible;
  9058. clip: auto;
  9059. }
  9060. .sr-only-focusable:active,
  9061. .sr-only-focusable:focus {
  9062. position: static;
  9063. width: auto;
  9064. height: auto;
  9065. margin: 0;
  9066. overflow: visible;
  9067. clip: auto;
  9068. }
  9069. /*!
  9070. *
  9071. * IPython base
  9072. *
  9073. */
  9074. .modal.fade .modal-dialog {
  9075. -webkit-transform: translate(0, 0);
  9076. -ms-transform: translate(0, 0);
  9077. -o-transform: translate(0, 0);
  9078. transform: translate(0, 0);
  9079. }
  9080. code {
  9081. color: #000;
  9082. }
  9083. pre {
  9084. font-size: inherit;
  9085. line-height: inherit;
  9086. }
  9087. label {
  9088. font-weight: normal;
  9089. }
  9090. /* Make the page background atleast 100% the height of the view port */
  9091. /* Make the page itself atleast 70% the height of the view port */
  9092. .border-box-sizing {
  9093. box-sizing: border-box;
  9094. -moz-box-sizing: border-box;
  9095. -webkit-box-sizing: border-box;
  9096. }
  9097. .corner-all {
  9098. border-radius: 2px;
  9099. }
  9100. .no-padding {
  9101. padding: 0px;
  9102. }
  9103. /* Flexible box model classes */
  9104. /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
  9105. /* This file is a compatability layer. It allows the usage of flexible box
  9106. model layouts accross multiple browsers, including older browsers. The newest,
  9107. universal implementation of the flexible box model is used when available (see
  9108. `Modern browsers` comments below). Browsers that are known to implement this
  9109. new spec completely include:
  9110. Firefox 28.0+
  9111. Chrome 29.0+
  9112. Internet Explorer 11+
  9113. Opera 17.0+
  9114. Browsers not listed, including Safari, are supported via the styling under the
  9115. `Old browsers` comments below.
  9116. */
  9117. .hbox {
  9118. /* Old browsers */
  9119. display: -webkit-box;
  9120. -webkit-box-orient: horizontal;
  9121. -webkit-box-align: stretch;
  9122. display: -moz-box;
  9123. -moz-box-orient: horizontal;
  9124. -moz-box-align: stretch;
  9125. display: box;
  9126. box-orient: horizontal;
  9127. box-align: stretch;
  9128. /* Modern browsers */
  9129. display: flex;
  9130. flex-direction: row;
  9131. align-items: stretch;
  9132. }
  9133. .hbox > * {
  9134. /* Old browsers */
  9135. -webkit-box-flex: 0;
  9136. -moz-box-flex: 0;
  9137. box-flex: 0;
  9138. /* Modern browsers */
  9139. flex: none;
  9140. }
  9141. .vbox {
  9142. /* Old browsers */
  9143. display: -webkit-box;
  9144. -webkit-box-orient: vertical;
  9145. -webkit-box-align: stretch;
  9146. display: -moz-box;
  9147. -moz-box-orient: vertical;
  9148. -moz-box-align: stretch;
  9149. display: box;
  9150. box-orient: vertical;
  9151. box-align: stretch;
  9152. /* Modern browsers */
  9153. display: flex;
  9154. flex-direction: column;
  9155. align-items: stretch;
  9156. }
  9157. .vbox > * {
  9158. /* Old browsers */
  9159. -webkit-box-flex: 0;
  9160. -moz-box-flex: 0;
  9161. box-flex: 0;
  9162. /* Modern browsers */
  9163. flex: none;
  9164. }
  9165. .hbox.reverse,
  9166. .vbox.reverse,
  9167. .reverse {
  9168. /* Old browsers */
  9169. -webkit-box-direction: reverse;
  9170. -moz-box-direction: reverse;
  9171. box-direction: reverse;
  9172. /* Modern browsers */
  9173. flex-direction: row-reverse;
  9174. }
  9175. .hbox.box-flex0,
  9176. .vbox.box-flex0,
  9177. .box-flex0 {
  9178. /* Old browsers */
  9179. -webkit-box-flex: 0;
  9180. -moz-box-flex: 0;
  9181. box-flex: 0;
  9182. /* Modern browsers */
  9183. flex: none;
  9184. width: auto;
  9185. }
  9186. .hbox.box-flex1,
  9187. .vbox.box-flex1,
  9188. .box-flex1 {
  9189. /* Old browsers */
  9190. -webkit-box-flex: 1;
  9191. -moz-box-flex: 1;
  9192. box-flex: 1;
  9193. /* Modern browsers */
  9194. flex: 1;
  9195. }
  9196. .hbox.box-flex,
  9197. .vbox.box-flex,
  9198. .box-flex {
  9199. /* Old browsers */
  9200. /* Old browsers */
  9201. -webkit-box-flex: 1;
  9202. -moz-box-flex: 1;
  9203. box-flex: 1;
  9204. /* Modern browsers */
  9205. flex: 1;
  9206. }
  9207. .hbox.box-flex2,
  9208. .vbox.box-flex2,
  9209. .box-flex2 {
  9210. /* Old browsers */
  9211. -webkit-box-flex: 2;
  9212. -moz-box-flex: 2;
  9213. box-flex: 2;
  9214. /* Modern browsers */
  9215. flex: 2;
  9216. }
  9217. .box-group1 {
  9218. /* Deprecated */
  9219. -webkit-box-flex-group: 1;
  9220. -moz-box-flex-group: 1;
  9221. box-flex-group: 1;
  9222. }
  9223. .box-group2 {
  9224. /* Deprecated */
  9225. -webkit-box-flex-group: 2;
  9226. -moz-box-flex-group: 2;
  9227. box-flex-group: 2;
  9228. }
  9229. .hbox.start,
  9230. .vbox.start,
  9231. .start {
  9232. /* Old browsers */
  9233. -webkit-box-pack: start;
  9234. -moz-box-pack: start;
  9235. box-pack: start;
  9236. /* Modern browsers */
  9237. justify-content: flex-start;
  9238. }
  9239. .hbox.end,
  9240. .vbox.end,
  9241. .end {
  9242. /* Old browsers */
  9243. -webkit-box-pack: end;
  9244. -moz-box-pack: end;
  9245. box-pack: end;
  9246. /* Modern browsers */
  9247. justify-content: flex-end;
  9248. }
  9249. .hbox.center,
  9250. .vbox.center,
  9251. .center {
  9252. /* Old browsers */
  9253. -webkit-box-pack: center;
  9254. -moz-box-pack: center;
  9255. box-pack: center;
  9256. /* Modern browsers */
  9257. justify-content: center;
  9258. }
  9259. .hbox.baseline,
  9260. .vbox.baseline,
  9261. .baseline {
  9262. /* Old browsers */
  9263. -webkit-box-pack: baseline;
  9264. -moz-box-pack: baseline;
  9265. box-pack: baseline;
  9266. /* Modern browsers */
  9267. justify-content: baseline;
  9268. }
  9269. .hbox.stretch,
  9270. .vbox.stretch,
  9271. .stretch {
  9272. /* Old browsers */
  9273. -webkit-box-pack: stretch;
  9274. -moz-box-pack: stretch;
  9275. box-pack: stretch;
  9276. /* Modern browsers */
  9277. justify-content: stretch;
  9278. }
  9279. .hbox.align-start,
  9280. .vbox.align-start,
  9281. .align-start {
  9282. /* Old browsers */
  9283. -webkit-box-align: start;
  9284. -moz-box-align: start;
  9285. box-align: start;
  9286. /* Modern browsers */
  9287. align-items: flex-start;
  9288. }
  9289. .hbox.align-end,
  9290. .vbox.align-end,
  9291. .align-end {
  9292. /* Old browsers */
  9293. -webkit-box-align: end;
  9294. -moz-box-align: end;
  9295. box-align: end;
  9296. /* Modern browsers */
  9297. align-items: flex-end;
  9298. }
  9299. .hbox.align-center,
  9300. .vbox.align-center,
  9301. .align-center {
  9302. /* Old browsers */
  9303. -webkit-box-align: center;
  9304. -moz-box-align: center;
  9305. box-align: center;
  9306. /* Modern browsers */
  9307. align-items: center;
  9308. }
  9309. .hbox.align-baseline,
  9310. .vbox.align-baseline,
  9311. .align-baseline {
  9312. /* Old browsers */
  9313. -webkit-box-align: baseline;
  9314. -moz-box-align: baseline;
  9315. box-align: baseline;
  9316. /* Modern browsers */
  9317. align-items: baseline;
  9318. }
  9319. .hbox.align-stretch,
  9320. .vbox.align-stretch,
  9321. .align-stretch {
  9322. /* Old browsers */
  9323. -webkit-box-align: stretch;
  9324. -moz-box-align: stretch;
  9325. box-align: stretch;
  9326. /* Modern browsers */
  9327. align-items: stretch;
  9328. }
  9329. div.error {
  9330. margin: 2em;
  9331. text-align: center;
  9332. }
  9333. div.error > h1 {
  9334. font-size: 500%;
  9335. line-height: normal;
  9336. }
  9337. div.error > p {
  9338. font-size: 200%;
  9339. line-height: normal;
  9340. }
  9341. div.traceback-wrapper {
  9342. text-align: left;
  9343. max-width: 800px;
  9344. margin: auto;
  9345. }
  9346. div.traceback-wrapper pre.traceback {
  9347. max-height: 600px;
  9348. overflow: auto;
  9349. }
  9350. /**
  9351. * Primary styles
  9352. *
  9353. * Author: Jupyter Development Team
  9354. */
  9355. body {
  9356. background-color: #fff;
  9357. /* This makes sure that the body covers the entire window and needs to
  9358. be in a different element than the display: box in wrapper below */
  9359. position: absolute;
  9360. left: 0px;
  9361. right: 0px;
  9362. top: 0px;
  9363. bottom: 0px;
  9364. overflow: visible;
  9365. }
  9366. body > #header {
  9367. /* Initially hidden to prevent FLOUC */
  9368. display: none;
  9369. background-color: #fff;
  9370. /* Display over codemirror */
  9371. position: relative;
  9372. z-index: 100;
  9373. }
  9374. body > #header #header-container {
  9375. display: flex;
  9376. flex-direction: row;
  9377. justify-content: space-between;
  9378. padding: 5px;
  9379. padding-bottom: 5px;
  9380. padding-top: 5px;
  9381. box-sizing: border-box;
  9382. -moz-box-sizing: border-box;
  9383. -webkit-box-sizing: border-box;
  9384. }
  9385. body > #header .header-bar {
  9386. width: 100%;
  9387. height: 1px;
  9388. background: #e7e7e7;
  9389. margin-bottom: -1px;
  9390. }
  9391. @media print {
  9392. body > #header {
  9393. display: none !important;
  9394. }
  9395. }
  9396. #header-spacer {
  9397. width: 100%;
  9398. visibility: hidden;
  9399. }
  9400. @media print {
  9401. #header-spacer {
  9402. display: none;
  9403. }
  9404. }
  9405. #ipython_notebook {
  9406. padding-left: 0px;
  9407. padding-top: 1px;
  9408. padding-bottom: 1px;
  9409. }
  9410. [dir="rtl"] #ipython_notebook {
  9411. margin-right: 10px;
  9412. margin-left: 0;
  9413. }
  9414. [dir="rtl"] #ipython_notebook.pull-left {
  9415. float: right !important;
  9416. float: right;
  9417. }
  9418. .flex-spacer {
  9419. flex: 1;
  9420. }
  9421. #noscript {
  9422. width: auto;
  9423. padding-top: 16px;
  9424. padding-bottom: 16px;
  9425. text-align: center;
  9426. font-size: 22px;
  9427. color: red;
  9428. font-weight: bold;
  9429. }
  9430. #ipython_notebook img {
  9431. height: 28px;
  9432. }
  9433. #site {
  9434. width: 100%;
  9435. display: none;
  9436. box-sizing: border-box;
  9437. -moz-box-sizing: border-box;
  9438. -webkit-box-sizing: border-box;
  9439. overflow: auto;
  9440. }
  9441. @media print {
  9442. #site {
  9443. height: auto !important;
  9444. }
  9445. }
  9446. /* Smaller buttons */
  9447. .ui-button .ui-button-text {
  9448. padding: 0.2em 0.8em;
  9449. font-size: 77%;
  9450. }
  9451. input.ui-button {
  9452. padding: 0.3em 0.9em;
  9453. }
  9454. span#kernel_logo_widget {
  9455. margin: 0 10px;
  9456. }
  9457. span#login_widget {
  9458. float: right;
  9459. }
  9460. [dir="rtl"] span#login_widget {
  9461. float: left;
  9462. }
  9463. span#login_widget > .button,
  9464. #logout,
  9465. #shutdown {
  9466. color: #333;
  9467. background-color: #fff;
  9468. border-color: #ccc;
  9469. margin-left: 10px;
  9470. }
  9471. span#login_widget > .button:focus,
  9472. #logout:focus,
  9473. #shutdown:focus,
  9474. span#login_widget > .button.focus,
  9475. #logout.focus,
  9476. #shutdown.focus {
  9477. color: #333;
  9478. background-color: #e6e6e6;
  9479. border-color: #8c8c8c;
  9480. }
  9481. span#login_widget > .button:hover,
  9482. #logout:hover,
  9483. #shutdown:hover {
  9484. color: #333;
  9485. background-color: #e6e6e6;
  9486. border-color: #adadad;
  9487. }
  9488. span#login_widget > .button:active,
  9489. #logout:active,
  9490. #shutdown:active,
  9491. span#login_widget > .button.active,
  9492. #logout.active,
  9493. #shutdown.active,
  9494. .open > .dropdown-togglespan#login_widget > .button,
  9495. .open > .dropdown-toggle#logout,
  9496. .open > .dropdown-toggle#shutdown {
  9497. color: #333;
  9498. background-color: #e6e6e6;
  9499. background-image: none;
  9500. border-color: #adadad;
  9501. }
  9502. span#login_widget > .button:active:hover,
  9503. #logout:active:hover,
  9504. #shutdown:active:hover,
  9505. span#login_widget > .button.active:hover,
  9506. #logout.active:hover,
  9507. #shutdown.active:hover,
  9508. .open > .dropdown-togglespan#login_widget > .button:hover,
  9509. .open > .dropdown-toggle#logout:hover,
  9510. .open > .dropdown-toggle#shutdown:hover,
  9511. span#login_widget > .button:active:focus,
  9512. #logout:active:focus,
  9513. #shutdown:active:focus,
  9514. span#login_widget > .button.active:focus,
  9515. #logout.active:focus,
  9516. #shutdown.active:focus,
  9517. .open > .dropdown-togglespan#login_widget > .button:focus,
  9518. .open > .dropdown-toggle#logout:focus,
  9519. .open > .dropdown-toggle#shutdown:focus,
  9520. span#login_widget > .button:active.focus,
  9521. #logout:active.focus,
  9522. #shutdown:active.focus,
  9523. span#login_widget > .button.active.focus,
  9524. #logout.active.focus,
  9525. #shutdown.active.focus,
  9526. .open > .dropdown-togglespan#login_widget > .button.focus,
  9527. .open > .dropdown-toggle#logout.focus,
  9528. .open > .dropdown-toggle#shutdown.focus {
  9529. color: #333;
  9530. background-color: #d4d4d4;
  9531. border-color: #8c8c8c;
  9532. }
  9533. span#login_widget > .button.disabled:hover,
  9534. #logout.disabled:hover,
  9535. #shutdown.disabled:hover,
  9536. span#login_widget > .button[disabled]:hover,
  9537. #logout[disabled]:hover,
  9538. #shutdown[disabled]:hover,
  9539. fieldset[disabled] span#login_widget > .button:hover,
  9540. fieldset[disabled] #logout:hover,
  9541. fieldset[disabled] #shutdown:hover,
  9542. span#login_widget > .button.disabled:focus,
  9543. #logout.disabled:focus,
  9544. #shutdown.disabled:focus,
  9545. span#login_widget > .button[disabled]:focus,
  9546. #logout[disabled]:focus,
  9547. #shutdown[disabled]:focus,
  9548. fieldset[disabled] span#login_widget > .button:focus,
  9549. fieldset[disabled] #logout:focus,
  9550. fieldset[disabled] #shutdown:focus,
  9551. span#login_widget > .button.disabled.focus,
  9552. #logout.disabled.focus,
  9553. #shutdown.disabled.focus,
  9554. span#login_widget > .button[disabled].focus,
  9555. #logout[disabled].focus,
  9556. #shutdown[disabled].focus,
  9557. fieldset[disabled] span#login_widget > .button.focus,
  9558. fieldset[disabled] #logout.focus,
  9559. fieldset[disabled] #shutdown.focus {
  9560. background-color: #fff;
  9561. border-color: #ccc;
  9562. }
  9563. span#login_widget > .button .badge,
  9564. #logout .badge,
  9565. #shutdown .badge {
  9566. color: #fff;
  9567. background-color: #333;
  9568. }
  9569. .nav-header {
  9570. text-transform: none;
  9571. }
  9572. #header > span {
  9573. margin-top: 10px;
  9574. }
  9575. .modal_stretch .modal-dialog {
  9576. /* Old browsers */
  9577. display: -webkit-box;
  9578. -webkit-box-orient: vertical;
  9579. -webkit-box-align: stretch;
  9580. display: -moz-box;
  9581. -moz-box-orient: vertical;
  9582. -moz-box-align: stretch;
  9583. display: box;
  9584. box-orient: vertical;
  9585. box-align: stretch;
  9586. /* Modern browsers */
  9587. display: flex;
  9588. flex-direction: column;
  9589. align-items: stretch;
  9590. min-height: 80vh;
  9591. }
  9592. .modal_stretch .modal-dialog .modal-body {
  9593. max-height: calc(100vh - 200px);
  9594. overflow: auto;
  9595. flex: 1;
  9596. }
  9597. .modal-header {
  9598. cursor: move;
  9599. }
  9600. @media (min-width: 768px) {
  9601. .modal .modal-dialog {
  9602. width: 700px;
  9603. }
  9604. }
  9605. @media (min-width: 768px) {
  9606. select.form-control {
  9607. margin-left: 12px;
  9608. margin-right: 12px;
  9609. }
  9610. }
  9611. /*!
  9612. *
  9613. * IPython auth
  9614. *
  9615. */
  9616. .center-nav {
  9617. display: inline-block;
  9618. margin-bottom: -4px;
  9619. }
  9620. [dir="rtl"] .center-nav form.pull-left {
  9621. float: right !important;
  9622. float: right;
  9623. }
  9624. [dir="rtl"] .center-nav .navbar-text {
  9625. float: right;
  9626. }
  9627. [dir="rtl"] .navbar-inner {
  9628. text-align: right;
  9629. }
  9630. [dir="rtl"] div.text-left {
  9631. text-align: right;
  9632. }
  9633. /*!
  9634. *
  9635. * IPython tree view
  9636. *
  9637. */
  9638. /* We need an invisible input field on top of the sentense*/
  9639. /* "Drag file onto the list ..." */
  9640. .alternate_upload {
  9641. background-color: none;
  9642. display: inline;
  9643. }
  9644. .alternate_upload.form {
  9645. padding: 0;
  9646. margin: 0;
  9647. }
  9648. .alternate_upload input.fileinput {
  9649. position: absolute;
  9650. display: block;
  9651. width: 100%;
  9652. height: 100%;
  9653. overflow: hidden;
  9654. cursor: pointer;
  9655. opacity: 0;
  9656. z-index: 2;
  9657. }
  9658. .alternate_upload .btn-xs > input.fileinput {
  9659. margin: -1px -5px;
  9660. }
  9661. .alternate_upload .btn-upload {
  9662. position: relative;
  9663. height: 22px;
  9664. }
  9665. ::-webkit-file-upload-button {
  9666. cursor: pointer;
  9667. }
  9668. /**
  9669. * Primary styles
  9670. *
  9671. * Author: Jupyter Development Team
  9672. */
  9673. ul#tabs {
  9674. margin-bottom: 4px;
  9675. }
  9676. ul#tabs a {
  9677. padding-top: 6px;
  9678. padding-bottom: 4px;
  9679. }
  9680. [dir="rtl"] ul#tabs.nav-tabs > li {
  9681. float: right;
  9682. }
  9683. [dir="rtl"] ul#tabs.nav.nav-tabs {
  9684. padding-right: 0;
  9685. }
  9686. ul.breadcrumb a:focus,
  9687. ul.breadcrumb a:hover {
  9688. text-decoration: none;
  9689. }
  9690. ul.breadcrumb i.icon-home {
  9691. font-size: 16px;
  9692. margin-right: 4px;
  9693. }
  9694. ul.breadcrumb span {
  9695. color: #5e5e5e;
  9696. }
  9697. .list_toolbar {
  9698. padding: 4px 0 4px 0;
  9699. vertical-align: middle;
  9700. }
  9701. .list_toolbar .tree-buttons {
  9702. padding-top: 1px;
  9703. }
  9704. [dir="rtl"] .list_toolbar .tree-buttons .pull-right {
  9705. float: left !important;
  9706. float: left;
  9707. }
  9708. [dir="rtl"] .list_toolbar .col-sm-4,
  9709. [dir="rtl"] .list_toolbar .col-sm-8 {
  9710. float: right;
  9711. }
  9712. .dynamic-buttons {
  9713. padding-top: 3px;
  9714. display: inline-block;
  9715. }
  9716. .list_toolbar [class*="span"] {
  9717. min-height: 24px;
  9718. }
  9719. .list_header {
  9720. font-weight: bold;
  9721. background-color: #EEE;
  9722. }
  9723. .list_placeholder {
  9724. font-weight: bold;
  9725. padding-top: 4px;
  9726. padding-bottom: 4px;
  9727. padding-left: 7px;
  9728. padding-right: 7px;
  9729. }
  9730. .list_container {
  9731. margin-top: 4px;
  9732. margin-bottom: 20px;
  9733. border: 1px solid #ddd;
  9734. border-radius: 2px;
  9735. }
  9736. .list_container > div {
  9737. border-bottom: 1px solid #ddd;
  9738. }
  9739. .list_container > div:hover .list-item {
  9740. background-color: red;
  9741. }
  9742. .list_container > div:last-child {
  9743. border: none;
  9744. }
  9745. .list_item:hover .list_item {
  9746. background-color: #ddd;
  9747. }
  9748. .list_item a {
  9749. text-decoration: none;
  9750. }
  9751. .list_item:hover {
  9752. background-color: #fafafa;
  9753. }
  9754. .list_header > div,
  9755. .list_item > div {
  9756. padding-top: 4px;
  9757. padding-bottom: 4px;
  9758. padding-left: 7px;
  9759. padding-right: 7px;
  9760. line-height: 22px;
  9761. }
  9762. .list_header > div input,
  9763. .list_item > div input {
  9764. margin-right: 7px;
  9765. margin-left: 14px;
  9766. vertical-align: text-bottom;
  9767. line-height: 22px;
  9768. position: relative;
  9769. top: -1px;
  9770. }
  9771. .list_header > div .item_link,
  9772. .list_item > div .item_link {
  9773. margin-left: -1px;
  9774. vertical-align: baseline;
  9775. line-height: 22px;
  9776. }
  9777. [dir="rtl"] .list_item > div input {
  9778. margin-right: 0;
  9779. }
  9780. .new-file input[type=checkbox] {
  9781. visibility: hidden;
  9782. }
  9783. .item_name {
  9784. line-height: 22px;
  9785. height: 24px;
  9786. }
  9787. .item_icon {
  9788. font-size: 14px;
  9789. color: #5e5e5e;
  9790. margin-right: 7px;
  9791. margin-left: 7px;
  9792. line-height: 22px;
  9793. vertical-align: baseline;
  9794. }
  9795. .item_modified {
  9796. margin-right: 7px;
  9797. margin-left: 7px;
  9798. }
  9799. .file_size {
  9800. width: 65px;
  9801. text-align: right;
  9802. }
  9803. [dir="rtl"] .item_modified.pull-right {
  9804. float: left !important;
  9805. float: left;
  9806. }
  9807. .item_buttons {
  9808. line-height: 1em;
  9809. margin-left: -5px;
  9810. }
  9811. .item_buttons .btn,
  9812. .item_buttons .btn-group,
  9813. .item_buttons .input-group {
  9814. float: left;
  9815. }
  9816. .item_buttons > .btn,
  9817. .item_buttons > .btn-group,
  9818. .item_buttons > .input-group {
  9819. margin-left: 5px;
  9820. }
  9821. .item_buttons .btn {
  9822. min-width: 13ex;
  9823. }
  9824. .item_buttons .running-indicator {
  9825. padding-top: 4px;
  9826. color: #357935;
  9827. }
  9828. .item_buttons .kernel-name {
  9829. padding-top: 4px;
  9830. color: #5bc0de;
  9831. margin-right: 7px;
  9832. float: left;
  9833. }
  9834. [dir="rtl"] .item_buttons.pull-right {
  9835. float: left !important;
  9836. float: left;
  9837. }
  9838. [dir="rtl"] .item_buttons .kernel-name {
  9839. margin-left: 7px;
  9840. float: right;
  9841. }
  9842. .toolbar_info {
  9843. height: 24px;
  9844. line-height: 24px;
  9845. }
  9846. .list_item input:not([type=checkbox]) {
  9847. padding-top: 3px;
  9848. padding-bottom: 3px;
  9849. height: 22px;
  9850. line-height: 14px;
  9851. margin: 0px;
  9852. }
  9853. .highlight_text {
  9854. color: blue;
  9855. }
  9856. #project_name {
  9857. display: inline-block;
  9858. padding-left: 7px;
  9859. margin-left: -2px;
  9860. }
  9861. #project_name > .breadcrumb {
  9862. padding: 0px;
  9863. margin-bottom: 0px;
  9864. background-color: transparent;
  9865. font-weight: bold;
  9866. }
  9867. .sort_button {
  9868. display: inline-block;
  9869. padding-left: 7px;
  9870. }
  9871. [dir="rtl"] .sort_button.pull-right {
  9872. float: left !important;
  9873. float: left;
  9874. }
  9875. #tree-selector {
  9876. padding-right: 0px;
  9877. }
  9878. #button-select-all {
  9879. min-width: 50px;
  9880. }
  9881. [dir="rtl"] #button-select-all.btn {
  9882. float: right ;
  9883. }
  9884. #select-all {
  9885. margin-left: 7px;
  9886. margin-right: 2px;
  9887. margin-top: 2px;
  9888. height: 16px;
  9889. }
  9890. [dir="rtl"] #select-all.pull-left {
  9891. float: right !important;
  9892. float: right;
  9893. }
  9894. .menu_icon {
  9895. margin-right: 2px;
  9896. }
  9897. .tab-content .row {
  9898. margin-left: 0px;
  9899. margin-right: 0px;
  9900. }
  9901. .folder_icon:before {
  9902. display: inline-block;
  9903. font: normal normal normal 14px/1 FontAwesome;
  9904. font-size: inherit;
  9905. text-rendering: auto;
  9906. -webkit-font-smoothing: antialiased;
  9907. -moz-osx-font-smoothing: grayscale;
  9908. content: "\f114";
  9909. }
  9910. .folder_icon:before.fa-pull-left {
  9911. margin-right: .3em;
  9912. }
  9913. .folder_icon:before.fa-pull-right {
  9914. margin-left: .3em;
  9915. }
  9916. .folder_icon:before.pull-left {
  9917. margin-right: .3em;
  9918. }
  9919. .folder_icon:before.pull-right {
  9920. margin-left: .3em;
  9921. }
  9922. .notebook_icon:before {
  9923. display: inline-block;
  9924. font: normal normal normal 14px/1 FontAwesome;
  9925. font-size: inherit;
  9926. text-rendering: auto;
  9927. -webkit-font-smoothing: antialiased;
  9928. -moz-osx-font-smoothing: grayscale;
  9929. content: "\f02d";
  9930. position: relative;
  9931. top: -1px;
  9932. }
  9933. .notebook_icon:before.fa-pull-left {
  9934. margin-right: .3em;
  9935. }
  9936. .notebook_icon:before.fa-pull-right {
  9937. margin-left: .3em;
  9938. }
  9939. .notebook_icon:before.pull-left {
  9940. margin-right: .3em;
  9941. }
  9942. .notebook_icon:before.pull-right {
  9943. margin-left: .3em;
  9944. }
  9945. .running_notebook_icon:before {
  9946. display: inline-block;
  9947. font: normal normal normal 14px/1 FontAwesome;
  9948. font-size: inherit;
  9949. text-rendering: auto;
  9950. -webkit-font-smoothing: antialiased;
  9951. -moz-osx-font-smoothing: grayscale;
  9952. content: "\f02d";
  9953. position: relative;
  9954. top: -1px;
  9955. color: #5cb85c;
  9956. }
  9957. .running_notebook_icon:before.fa-pull-left {
  9958. margin-right: .3em;
  9959. }
  9960. .running_notebook_icon:before.fa-pull-right {
  9961. margin-left: .3em;
  9962. }
  9963. .running_notebook_icon:before.pull-left {
  9964. margin-right: .3em;
  9965. }
  9966. .running_notebook_icon:before.pull-right {
  9967. margin-left: .3em;
  9968. }
  9969. .file_icon:before {
  9970. display: inline-block;
  9971. font: normal normal normal 14px/1 FontAwesome;
  9972. font-size: inherit;
  9973. text-rendering: auto;
  9974. -webkit-font-smoothing: antialiased;
  9975. -moz-osx-font-smoothing: grayscale;
  9976. content: "\f016";
  9977. position: relative;
  9978. top: -2px;
  9979. }
  9980. .file_icon:before.fa-pull-left {
  9981. margin-right: .3em;
  9982. }
  9983. .file_icon:before.fa-pull-right {
  9984. margin-left: .3em;
  9985. }
  9986. .file_icon:before.pull-left {
  9987. margin-right: .3em;
  9988. }
  9989. .file_icon:before.pull-right {
  9990. margin-left: .3em;
  9991. }
  9992. #notebook_toolbar .pull-right {
  9993. padding-top: 0px;
  9994. margin-right: -1px;
  9995. }
  9996. ul#new-menu {
  9997. left: auto;
  9998. right: 0;
  9999. }
  10000. #new-menu .dropdown-header {
  10001. font-size: 10px;
  10002. border-bottom: 1px solid #e5e5e5;
  10003. padding: 0 0 3px;
  10004. margin: -3px 20px 0;
  10005. }
  10006. .kernel-menu-icon {
  10007. padding-right: 12px;
  10008. width: 24px;
  10009. content: "\f096";
  10010. }
  10011. .kernel-menu-icon:before {
  10012. content: "\f096";
  10013. }
  10014. .kernel-menu-icon-current:before {
  10015. content: "\f00c";
  10016. }
  10017. #tab_content {
  10018. padding-top: 20px;
  10019. }
  10020. #running .panel-group .panel {
  10021. margin-top: 3px;
  10022. margin-bottom: 1em;
  10023. }
  10024. #running .panel-group .panel .panel-heading {
  10025. background-color: #EEE;
  10026. padding-top: 4px;
  10027. padding-bottom: 4px;
  10028. padding-left: 7px;
  10029. padding-right: 7px;
  10030. line-height: 22px;
  10031. }
  10032. #running .panel-group .panel .panel-heading a:focus,
  10033. #running .panel-group .panel .panel-heading a:hover {
  10034. text-decoration: none;
  10035. }
  10036. #running .panel-group .panel .panel-body {
  10037. padding: 0px;
  10038. }
  10039. #running .panel-group .panel .panel-body .list_container {
  10040. margin-top: 0px;
  10041. margin-bottom: 0px;
  10042. border: 0px;
  10043. border-radius: 0px;
  10044. }
  10045. #running .panel-group .panel .panel-body .list_container .list_item {
  10046. border-bottom: 1px solid #ddd;
  10047. }
  10048. #running .panel-group .panel .panel-body .list_container .list_item:last-child {
  10049. border-bottom: 0px;
  10050. }
  10051. .delete-button {
  10052. display: none;
  10053. }
  10054. .duplicate-button {
  10055. display: none;
  10056. }
  10057. .rename-button {
  10058. display: none;
  10059. }
  10060. .move-button {
  10061. display: none;
  10062. }
  10063. .download-button {
  10064. display: none;
  10065. }
  10066. .shutdown-button {
  10067. display: none;
  10068. }
  10069. .dynamic-instructions {
  10070. display: inline-block;
  10071. padding-top: 4px;
  10072. }
  10073. /*!
  10074. *
  10075. * IPython text editor webapp
  10076. *
  10077. */
  10078. .selected-keymap i.fa {
  10079. padding: 0px 5px;
  10080. }
  10081. .selected-keymap i.fa:before {
  10082. content: "\f00c";
  10083. }
  10084. #mode-menu {
  10085. overflow: auto;
  10086. max-height: 20em;
  10087. }
  10088. .edit_app #header {
  10089. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10090. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10091. }
  10092. .edit_app #menubar .navbar {
  10093. /* Use a negative 1 bottom margin, so the border overlaps the border of the
  10094. header */
  10095. margin-bottom: -1px;
  10096. }
  10097. .dirty-indicator {
  10098. display: inline-block;
  10099. font: normal normal normal 14px/1 FontAwesome;
  10100. font-size: inherit;
  10101. text-rendering: auto;
  10102. -webkit-font-smoothing: antialiased;
  10103. -moz-osx-font-smoothing: grayscale;
  10104. width: 20px;
  10105. }
  10106. .dirty-indicator.fa-pull-left {
  10107. margin-right: .3em;
  10108. }
  10109. .dirty-indicator.fa-pull-right {
  10110. margin-left: .3em;
  10111. }
  10112. .dirty-indicator.pull-left {
  10113. margin-right: .3em;
  10114. }
  10115. .dirty-indicator.pull-right {
  10116. margin-left: .3em;
  10117. }
  10118. .dirty-indicator-dirty {
  10119. display: inline-block;
  10120. font: normal normal normal 14px/1 FontAwesome;
  10121. font-size: inherit;
  10122. text-rendering: auto;
  10123. -webkit-font-smoothing: antialiased;
  10124. -moz-osx-font-smoothing: grayscale;
  10125. width: 20px;
  10126. }
  10127. .dirty-indicator-dirty.fa-pull-left {
  10128. margin-right: .3em;
  10129. }
  10130. .dirty-indicator-dirty.fa-pull-right {
  10131. margin-left: .3em;
  10132. }
  10133. .dirty-indicator-dirty.pull-left {
  10134. margin-right: .3em;
  10135. }
  10136. .dirty-indicator-dirty.pull-right {
  10137. margin-left: .3em;
  10138. }
  10139. .dirty-indicator-clean {
  10140. display: inline-block;
  10141. font: normal normal normal 14px/1 FontAwesome;
  10142. font-size: inherit;
  10143. text-rendering: auto;
  10144. -webkit-font-smoothing: antialiased;
  10145. -moz-osx-font-smoothing: grayscale;
  10146. width: 20px;
  10147. }
  10148. .dirty-indicator-clean.fa-pull-left {
  10149. margin-right: .3em;
  10150. }
  10151. .dirty-indicator-clean.fa-pull-right {
  10152. margin-left: .3em;
  10153. }
  10154. .dirty-indicator-clean.pull-left {
  10155. margin-right: .3em;
  10156. }
  10157. .dirty-indicator-clean.pull-right {
  10158. margin-left: .3em;
  10159. }
  10160. .dirty-indicator-clean:before {
  10161. display: inline-block;
  10162. font: normal normal normal 14px/1 FontAwesome;
  10163. font-size: inherit;
  10164. text-rendering: auto;
  10165. -webkit-font-smoothing: antialiased;
  10166. -moz-osx-font-smoothing: grayscale;
  10167. content: "\f00c";
  10168. }
  10169. .dirty-indicator-clean:before.fa-pull-left {
  10170. margin-right: .3em;
  10171. }
  10172. .dirty-indicator-clean:before.fa-pull-right {
  10173. margin-left: .3em;
  10174. }
  10175. .dirty-indicator-clean:before.pull-left {
  10176. margin-right: .3em;
  10177. }
  10178. .dirty-indicator-clean:before.pull-right {
  10179. margin-left: .3em;
  10180. }
  10181. #filename {
  10182. font-size: 16pt;
  10183. display: table;
  10184. padding: 0px 5px;
  10185. }
  10186. #current-mode {
  10187. padding-left: 5px;
  10188. padding-right: 5px;
  10189. }
  10190. #texteditor-backdrop {
  10191. padding-top: 20px;
  10192. padding-bottom: 20px;
  10193. }
  10194. @media not print {
  10195. #texteditor-backdrop {
  10196. background-color: #EEE;
  10197. }
  10198. }
  10199. @media print {
  10200. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  10201. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  10202. background-color: #fff;
  10203. }
  10204. }
  10205. @media not print {
  10206. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  10207. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  10208. background-color: #fff;
  10209. }
  10210. }
  10211. @media not print {
  10212. #texteditor-backdrop #texteditor-container {
  10213. padding: 0px;
  10214. background-color: #fff;
  10215. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10216. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10217. }
  10218. }
  10219. .CodeMirror-dialog {
  10220. background-color: #fff;
  10221. }
  10222. /*!
  10223. *
  10224. * IPython notebook
  10225. *
  10226. */
  10227. /* CSS font colors for translated ANSI escape sequences */
  10228. /* The color values are a mix of
  10229. http://www.xcolors.net/dl/baskerville-ivorylight and
  10230. http://www.xcolors.net/dl/euphrasia */
  10231. .ansi-black-fg {
  10232. color: #3E424D;
  10233. }
  10234. .ansi-black-bg {
  10235. background-color: #3E424D;
  10236. }
  10237. .ansi-black-intense-fg {
  10238. color: #282C36;
  10239. }
  10240. .ansi-black-intense-bg {
  10241. background-color: #282C36;
  10242. }
  10243. .ansi-red-fg {
  10244. color: #E75C58;
  10245. }
  10246. .ansi-red-bg {
  10247. background-color: #E75C58;
  10248. }
  10249. .ansi-red-intense-fg {
  10250. color: #B22B31;
  10251. }
  10252. .ansi-red-intense-bg {
  10253. background-color: #B22B31;
  10254. }
  10255. .ansi-green-fg {
  10256. color: #00A250;
  10257. }
  10258. .ansi-green-bg {
  10259. background-color: #00A250;
  10260. }
  10261. .ansi-green-intense-fg {
  10262. color: #007427;
  10263. }
  10264. .ansi-green-intense-bg {
  10265. background-color: #007427;
  10266. }
  10267. .ansi-yellow-fg {
  10268. color: #DDB62B;
  10269. }
  10270. .ansi-yellow-bg {
  10271. background-color: #DDB62B;
  10272. }
  10273. .ansi-yellow-intense-fg {
  10274. color: #B27D12;
  10275. }
  10276. .ansi-yellow-intense-bg {
  10277. background-color: #B27D12;
  10278. }
  10279. .ansi-blue-fg {
  10280. color: #208FFB;
  10281. }
  10282. .ansi-blue-bg {
  10283. background-color: #208FFB;
  10284. }
  10285. .ansi-blue-intense-fg {
  10286. color: #0065CA;
  10287. }
  10288. .ansi-blue-intense-bg {
  10289. background-color: #0065CA;
  10290. }
  10291. .ansi-magenta-fg {
  10292. color: #D160C4;
  10293. }
  10294. .ansi-magenta-bg {
  10295. background-color: #D160C4;
  10296. }
  10297. .ansi-magenta-intense-fg {
  10298. color: #A03196;
  10299. }
  10300. .ansi-magenta-intense-bg {
  10301. background-color: #A03196;
  10302. }
  10303. .ansi-cyan-fg {
  10304. color: #60C6C8;
  10305. }
  10306. .ansi-cyan-bg {
  10307. background-color: #60C6C8;
  10308. }
  10309. .ansi-cyan-intense-fg {
  10310. color: #258F8F;
  10311. }
  10312. .ansi-cyan-intense-bg {
  10313. background-color: #258F8F;
  10314. }
  10315. .ansi-white-fg {
  10316. color: #C5C1B4;
  10317. }
  10318. .ansi-white-bg {
  10319. background-color: #C5C1B4;
  10320. }
  10321. .ansi-white-intense-fg {
  10322. color: #A1A6B2;
  10323. }
  10324. .ansi-white-intense-bg {
  10325. background-color: #A1A6B2;
  10326. }
  10327. .ansi-default-inverse-fg {
  10328. color: #FFFFFF;
  10329. }
  10330. .ansi-default-inverse-bg {
  10331. background-color: #000000;
  10332. }
  10333. .ansi-bold {
  10334. font-weight: bold;
  10335. }
  10336. .ansi-underline {
  10337. text-decoration: underline;
  10338. }
  10339. /* The following styles are deprecated an will be removed in a future version */
  10340. .ansibold {
  10341. font-weight: bold;
  10342. }
  10343. .ansi-inverse {
  10344. outline: 0.5px dotted;
  10345. }
  10346. /* use dark versions for foreground, to improve visibility */
  10347. .ansiblack {
  10348. color: black;
  10349. }
  10350. .ansired {
  10351. color: darkred;
  10352. }
  10353. .ansigreen {
  10354. color: darkgreen;
  10355. }
  10356. .ansiyellow {
  10357. color: #c4a000;
  10358. }
  10359. .ansiblue {
  10360. color: darkblue;
  10361. }
  10362. .ansipurple {
  10363. color: darkviolet;
  10364. }
  10365. .ansicyan {
  10366. color: steelblue;
  10367. }
  10368. .ansigray {
  10369. color: gray;
  10370. }
  10371. /* and light for background, for the same reason */
  10372. .ansibgblack {
  10373. background-color: black;
  10374. }
  10375. .ansibgred {
  10376. background-color: red;
  10377. }
  10378. .ansibggreen {
  10379. background-color: green;
  10380. }
  10381. .ansibgyellow {
  10382. background-color: yellow;
  10383. }
  10384. .ansibgblue {
  10385. background-color: blue;
  10386. }
  10387. .ansibgpurple {
  10388. background-color: magenta;
  10389. }
  10390. .ansibgcyan {
  10391. background-color: cyan;
  10392. }
  10393. .ansibggray {
  10394. background-color: gray;
  10395. }
  10396. div.cell {
  10397. /* Old browsers */
  10398. display: -webkit-box;
  10399. -webkit-box-orient: vertical;
  10400. -webkit-box-align: stretch;
  10401. display: -moz-box;
  10402. -moz-box-orient: vertical;
  10403. -moz-box-align: stretch;
  10404. display: box;
  10405. box-orient: vertical;
  10406. box-align: stretch;
  10407. /* Modern browsers */
  10408. display: flex;
  10409. flex-direction: column;
  10410. align-items: stretch;
  10411. border-radius: 2px;
  10412. box-sizing: border-box;
  10413. -moz-box-sizing: border-box;
  10414. -webkit-box-sizing: border-box;
  10415. border-width: 1px;
  10416. border-style: solid;
  10417. border-color: transparent;
  10418. width: 100%;
  10419. padding: 5px;
  10420. /* This acts as a spacer between cells, that is outside the border */
  10421. margin: 0px;
  10422. outline: none;
  10423. position: relative;
  10424. overflow: visible;
  10425. }
  10426. div.cell:before {
  10427. position: absolute;
  10428. display: block;
  10429. top: -1px;
  10430. left: -1px;
  10431. width: 5px;
  10432. height: calc(100% + 2px);
  10433. content: '';
  10434. background: transparent;
  10435. }
  10436. div.cell.jupyter-soft-selected {
  10437. border-left-color: #E3F2FD;
  10438. border-left-width: 1px;
  10439. padding-left: 5px;
  10440. border-right-color: #E3F2FD;
  10441. border-right-width: 1px;
  10442. background: #E3F2FD;
  10443. }
  10444. @media print {
  10445. div.cell.jupyter-soft-selected {
  10446. border-color: transparent;
  10447. }
  10448. }
  10449. div.cell.selected,
  10450. div.cell.selected.jupyter-soft-selected {
  10451. border-color: #ababab;
  10452. }
  10453. div.cell.selected:before,
  10454. div.cell.selected.jupyter-soft-selected:before {
  10455. position: absolute;
  10456. display: block;
  10457. top: -1px;
  10458. left: -1px;
  10459. width: 5px;
  10460. height: calc(100% + 2px);
  10461. content: '';
  10462. background: #42A5F5;
  10463. }
  10464. @media print {
  10465. div.cell.selected,
  10466. div.cell.selected.jupyter-soft-selected {
  10467. border-color: transparent;
  10468. }
  10469. }
  10470. .edit_mode div.cell.selected {
  10471. border-color: #66BB6A;
  10472. }
  10473. .edit_mode div.cell.selected:before {
  10474. position: absolute;
  10475. display: block;
  10476. top: -1px;
  10477. left: -1px;
  10478. width: 5px;
  10479. height: calc(100% + 2px);
  10480. content: '';
  10481. background: #66BB6A;
  10482. }
  10483. @media print {
  10484. .edit_mode div.cell.selected {
  10485. border-color: transparent;
  10486. }
  10487. }
  10488. .prompt {
  10489. /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
  10490. min-width: 14ex;
  10491. /* This padding is tuned to match the padding on the CodeMirror editor. */
  10492. padding: 0.4em;
  10493. margin: 0px;
  10494. font-family: monospace;
  10495. text-align: right;
  10496. /* This has to match that of the the CodeMirror class line-height below */
  10497. line-height: 1.21429em;
  10498. /* Don't highlight prompt number selection */
  10499. -webkit-touch-callout: none;
  10500. -webkit-user-select: none;
  10501. -khtml-user-select: none;
  10502. -moz-user-select: none;
  10503. -ms-user-select: none;
  10504. user-select: none;
  10505. /* Use default cursor */
  10506. cursor: default;
  10507. }
  10508. @media (max-width: 540px) {
  10509. .prompt {
  10510. text-align: left;
  10511. }
  10512. }
  10513. div.inner_cell {
  10514. min-width: 0;
  10515. /* Old browsers */
  10516. display: -webkit-box;
  10517. -webkit-box-orient: vertical;
  10518. -webkit-box-align: stretch;
  10519. display: -moz-box;
  10520. -moz-box-orient: vertical;
  10521. -moz-box-align: stretch;
  10522. display: box;
  10523. box-orient: vertical;
  10524. box-align: stretch;
  10525. /* Modern browsers */
  10526. display: flex;
  10527. flex-direction: column;
  10528. align-items: stretch;
  10529. /* Old browsers */
  10530. -webkit-box-flex: 1;
  10531. -moz-box-flex: 1;
  10532. box-flex: 1;
  10533. /* Modern browsers */
  10534. flex: 1;
  10535. }
  10536. /* input_area and input_prompt must match in top border and margin for alignment */
  10537. div.input_area {
  10538. border: 1px solid #cfcfcf;
  10539. border-radius: 2px;
  10540. background: #f7f7f7;
  10541. line-height: 1.21429em;
  10542. }
  10543. /* This is needed so that empty prompt areas can collapse to zero height when there
  10544. is no content in the output_subarea and the prompt. The main purpose of this is
  10545. to make sure that empty JavaScript output_subareas have no height. */
  10546. div.prompt:empty {
  10547. padding-top: 0;
  10548. padding-bottom: 0;
  10549. }
  10550. div.unrecognized_cell {
  10551. padding: 5px 5px 5px 0px;
  10552. /* Old browsers */
  10553. display: -webkit-box;
  10554. -webkit-box-orient: horizontal;
  10555. -webkit-box-align: stretch;
  10556. display: -moz-box;
  10557. -moz-box-orient: horizontal;
  10558. -moz-box-align: stretch;
  10559. display: box;
  10560. box-orient: horizontal;
  10561. box-align: stretch;
  10562. /* Modern browsers */
  10563. display: flex;
  10564. flex-direction: row;
  10565. align-items: stretch;
  10566. }
  10567. div.unrecognized_cell .inner_cell {
  10568. border-radius: 2px;
  10569. padding: 5px;
  10570. font-weight: bold;
  10571. color: red;
  10572. border: 1px solid #cfcfcf;
  10573. background: #eaeaea;
  10574. }
  10575. div.unrecognized_cell .inner_cell a {
  10576. color: inherit;
  10577. text-decoration: none;
  10578. }
  10579. div.unrecognized_cell .inner_cell a:hover {
  10580. color: inherit;
  10581. text-decoration: none;
  10582. }
  10583. @media (max-width: 540px) {
  10584. div.unrecognized_cell > div.prompt {
  10585. display: none;
  10586. }
  10587. }
  10588. div.code_cell {
  10589. /* avoid page breaking on code cells when printing */
  10590. }
  10591. @media print {
  10592. div.code_cell {
  10593. page-break-inside: avoid;
  10594. }
  10595. }
  10596. /* any special styling for code cells that are currently running goes here */
  10597. div.input {
  10598. page-break-inside: avoid;
  10599. /* Old browsers */
  10600. display: -webkit-box;
  10601. -webkit-box-orient: horizontal;
  10602. -webkit-box-align: stretch;
  10603. display: -moz-box;
  10604. -moz-box-orient: horizontal;
  10605. -moz-box-align: stretch;
  10606. display: box;
  10607. box-orient: horizontal;
  10608. box-align: stretch;
  10609. /* Modern browsers */
  10610. display: flex;
  10611. flex-direction: row;
  10612. align-items: stretch;
  10613. }
  10614. @media (max-width: 540px) {
  10615. div.input {
  10616. /* Old browsers */
  10617. display: -webkit-box;
  10618. -webkit-box-orient: vertical;
  10619. -webkit-box-align: stretch;
  10620. display: -moz-box;
  10621. -moz-box-orient: vertical;
  10622. -moz-box-align: stretch;
  10623. display: box;
  10624. box-orient: vertical;
  10625. box-align: stretch;
  10626. /* Modern browsers */
  10627. display: flex;
  10628. flex-direction: column;
  10629. align-items: stretch;
  10630. }
  10631. }
  10632. div.prompt_container {
  10633. display: flex;
  10634. flex-direction: row;
  10635. justify-content: space-between;
  10636. align-items: flex-start;
  10637. text-align: right;
  10638. }
  10639. /* input_area and input_prompt must match in top border and margin for alignment */
  10640. div.input_prompt {
  10641. color: #303F9F;
  10642. border-top: 1px solid transparent;
  10643. }
  10644. div.run_this_cell {
  10645. display: none;
  10646. cursor: pointer;
  10647. color: #333;
  10648. padding-top: 5px;
  10649. padding-bottom: 5px;
  10650. padding-left: 2ex;
  10651. padding-right: 2ex;
  10652. width: 1ex;
  10653. }
  10654. div.prompt {
  10655. min-width: 15ex;
  10656. }
  10657. @media (-moz-touch-enabled: 1), (any-pointer: coarse) {
  10658. div.run_this_cell {
  10659. display: block;
  10660. }
  10661. }
  10662. div.input_area > div.highlight {
  10663. margin: 0.4em;
  10664. border: none;
  10665. padding: 0px;
  10666. background-color: transparent;
  10667. }
  10668. div.input_area > div.highlight > pre {
  10669. margin: 0px;
  10670. border: none;
  10671. padding: 0px;
  10672. background-color: transparent;
  10673. }
  10674. /* The following gets added to the <head> if it is detected that the user has a
  10675. * monospace font with inconsistent normal/bold/italic height. See
  10676. * notebookmain.js. Such fonts will have keywords vertically offset with
  10677. * respect to the rest of the text. The user should select a better font.
  10678. * See: https://github.com/ipython/ipython/issues/1503
  10679. *
  10680. * .CodeMirror span {
  10681. * vertical-align: bottom;
  10682. * }
  10683. */
  10684. .CodeMirror {
  10685. line-height: 1.21429em;
  10686. /* Changed from 1em to our global default */
  10687. font-size: 14px;
  10688. height: auto;
  10689. /* Changed to auto to autogrow */
  10690. background: none;
  10691. /* Changed from white to allow our bg to show through */
  10692. }
  10693. .CodeMirror-scroll {
  10694. /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
  10695. /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
  10696. overflow-y: hidden;
  10697. overflow-x: auto;
  10698. }
  10699. .CodeMirror-lines {
  10700. /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
  10701. /* we have set a different line-height and want this to scale with that. */
  10702. /* Note that this should set vertical padding only, since CodeMirror assumes
  10703. that horizontal padding will be set on CodeMirror pre */
  10704. padding: 0.4em 0;
  10705. }
  10706. .CodeMirror-linenumber {
  10707. padding: 0 8px 0 4px;
  10708. }
  10709. .CodeMirror-gutters {
  10710. border-bottom-left-radius: 2px;
  10711. border-top-left-radius: 2px;
  10712. }
  10713. .CodeMirror pre {
  10714. /* In CM3 this went to 4px from 0 in CM2. This sets horizontal padding only,
  10715. use .CodeMirror-lines for vertical */
  10716. padding: 0 0.4em;
  10717. border: 0;
  10718. border-radius: 0;
  10719. }
  10720. .CodeMirror-cursor {
  10721. border-left: 1.4px solid black;
  10722. }
  10723. @media screen and (min-width: 2138px) and (max-width: 4319px) {
  10724. .CodeMirror-cursor {
  10725. border-left: 2px solid black;
  10726. }
  10727. }
  10728. @media screen and (min-width: 4320px) {
  10729. .CodeMirror-cursor {
  10730. border-left: 4px solid black;
  10731. }
  10732. }
  10733. /*
  10734. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  10735. Adapted from GitHub theme
  10736. */
  10737. .highlight-base {
  10738. color: #000;
  10739. }
  10740. .highlight-variable {
  10741. color: #000;
  10742. }
  10743. .highlight-variable-2 {
  10744. color: #1a1a1a;
  10745. }
  10746. .highlight-variable-3 {
  10747. color: #333333;
  10748. }
  10749. .highlight-string {
  10750. color: #BA2121;
  10751. }
  10752. .highlight-comment {
  10753. color: #408080;
  10754. font-style: italic;
  10755. }
  10756. .highlight-number {
  10757. color: #080;
  10758. }
  10759. .highlight-atom {
  10760. color: #88F;
  10761. }
  10762. .highlight-keyword {
  10763. color: #008000;
  10764. font-weight: bold;
  10765. }
  10766. .highlight-builtin {
  10767. color: #008000;
  10768. }
  10769. .highlight-error {
  10770. color: #f00;
  10771. }
  10772. .highlight-operator {
  10773. color: #AA22FF;
  10774. font-weight: bold;
  10775. }
  10776. .highlight-meta {
  10777. color: #AA22FF;
  10778. }
  10779. /* previously not defined, copying from default codemirror */
  10780. .highlight-def {
  10781. color: #00f;
  10782. }
  10783. .highlight-string-2 {
  10784. color: #f50;
  10785. }
  10786. .highlight-qualifier {
  10787. color: #555;
  10788. }
  10789. .highlight-bracket {
  10790. color: #997;
  10791. }
  10792. .highlight-tag {
  10793. color: #170;
  10794. }
  10795. .highlight-attribute {
  10796. color: #00c;
  10797. }
  10798. .highlight-header {
  10799. color: blue;
  10800. }
  10801. .highlight-quote {
  10802. color: #090;
  10803. }
  10804. .highlight-link {
  10805. color: #00c;
  10806. }
  10807. /* apply the same style to codemirror */
  10808. .cm-s-ipython span.cm-keyword {
  10809. color: #008000;
  10810. font-weight: bold;
  10811. }
  10812. .cm-s-ipython span.cm-atom {
  10813. color: #88F;
  10814. }
  10815. .cm-s-ipython span.cm-number {
  10816. color: #080;
  10817. }
  10818. .cm-s-ipython span.cm-def {
  10819. color: #00f;
  10820. }
  10821. .cm-s-ipython span.cm-variable {
  10822. color: #000;
  10823. }
  10824. .cm-s-ipython span.cm-operator {
  10825. color: #AA22FF;
  10826. font-weight: bold;
  10827. }
  10828. .cm-s-ipython span.cm-variable-2 {
  10829. color: #1a1a1a;
  10830. }
  10831. .cm-s-ipython span.cm-variable-3 {
  10832. color: #333333;
  10833. }
  10834. .cm-s-ipython span.cm-comment {
  10835. color: #408080;
  10836. font-style: italic;
  10837. }
  10838. .cm-s-ipython span.cm-string {
  10839. color: #BA2121;
  10840. }
  10841. .cm-s-ipython span.cm-string-2 {
  10842. color: #f50;
  10843. }
  10844. .cm-s-ipython span.cm-meta {
  10845. color: #AA22FF;
  10846. }
  10847. .cm-s-ipython span.cm-qualifier {
  10848. color: #555;
  10849. }
  10850. .cm-s-ipython span.cm-builtin {
  10851. color: #008000;
  10852. }
  10853. .cm-s-ipython span.cm-bracket {
  10854. color: #997;
  10855. }
  10856. .cm-s-ipython span.cm-tag {
  10857. color: #170;
  10858. }
  10859. .cm-s-ipython span.cm-attribute {
  10860. color: #00c;
  10861. }
  10862. .cm-s-ipython span.cm-header {
  10863. color: blue;
  10864. }
  10865. .cm-s-ipython span.cm-quote {
  10866. color: #090;
  10867. }
  10868. .cm-s-ipython span.cm-link {
  10869. color: #00c;
  10870. }
  10871. .cm-s-ipython span.cm-error {
  10872. color: #f00;
  10873. }
  10874. .cm-s-ipython span.cm-tab {
  10875. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  10876. background-position: right;
  10877. background-repeat: no-repeat;
  10878. }
  10879. div.output_wrapper {
  10880. /* this position must be relative to enable descendents to be absolute within it */
  10881. position: relative;
  10882. /* Old browsers */
  10883. display: -webkit-box;
  10884. -webkit-box-orient: vertical;
  10885. -webkit-box-align: stretch;
  10886. display: -moz-box;
  10887. -moz-box-orient: vertical;
  10888. -moz-box-align: stretch;
  10889. display: box;
  10890. box-orient: vertical;
  10891. box-align: stretch;
  10892. /* Modern browsers */
  10893. display: flex;
  10894. flex-direction: column;
  10895. align-items: stretch;
  10896. z-index: 1;
  10897. }
  10898. /* class for the output area when it should be height-limited */
  10899. div.output_scroll {
  10900. /* ideally, this would be max-height, but FF barfs all over that */
  10901. height: 24em;
  10902. /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
  10903. width: 100%;
  10904. overflow: auto;
  10905. border-radius: 2px;
  10906. -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  10907. box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  10908. display: block;
  10909. }
  10910. /* output div while it is collapsed */
  10911. div.output_collapsed {
  10912. margin: 0px;
  10913. padding: 0px;
  10914. /* Old browsers */
  10915. display: -webkit-box;
  10916. -webkit-box-orient: vertical;
  10917. -webkit-box-align: stretch;
  10918. display: -moz-box;
  10919. -moz-box-orient: vertical;
  10920. -moz-box-align: stretch;
  10921. display: box;
  10922. box-orient: vertical;
  10923. box-align: stretch;
  10924. /* Modern browsers */
  10925. display: flex;
  10926. flex-direction: column;
  10927. align-items: stretch;
  10928. }
  10929. div.out_prompt_overlay {
  10930. height: 100%;
  10931. padding: 0px 0.4em;
  10932. position: absolute;
  10933. border-radius: 2px;
  10934. }
  10935. div.out_prompt_overlay:hover {
  10936. /* use inner shadow to get border that is computed the same on WebKit/FF */
  10937. -webkit-box-shadow: inset 0 0 1px #000;
  10938. box-shadow: inset 0 0 1px #000;
  10939. background: rgba(240, 240, 240, 0.5);
  10940. }
  10941. div.output_prompt {
  10942. color: #D84315;
  10943. }
  10944. /* This class is the outer container of all output sections. */
  10945. div.output_area {
  10946. padding: 0px;
  10947. page-break-inside: avoid;
  10948. /* Old browsers */
  10949. display: -webkit-box;
  10950. -webkit-box-orient: horizontal;
  10951. -webkit-box-align: stretch;
  10952. display: -moz-box;
  10953. -moz-box-orient: horizontal;
  10954. -moz-box-align: stretch;
  10955. display: box;
  10956. box-orient: horizontal;
  10957. box-align: stretch;
  10958. /* Modern browsers */
  10959. display: flex;
  10960. flex-direction: row;
  10961. align-items: stretch;
  10962. }
  10963. div.output_area .MathJax_Display {
  10964. text-align: left !important;
  10965. }
  10966. div.output_area .rendered_html table {
  10967. margin-left: 0;
  10968. margin-right: 0;
  10969. }
  10970. div.output_area .rendered_html img {
  10971. margin-left: 0;
  10972. margin-right: 0;
  10973. }
  10974. div.output_area img,
  10975. div.output_area svg {
  10976. max-width: 100%;
  10977. height: auto;
  10978. }
  10979. div.output_area img.unconfined,
  10980. div.output_area svg.unconfined {
  10981. max-width: none;
  10982. }
  10983. div.output_area .mglyph > img {
  10984. max-width: none;
  10985. }
  10986. /* This is needed to protect the pre formating from global settings such
  10987. as that of bootstrap */
  10988. .output {
  10989. /* Old browsers */
  10990. display: -webkit-box;
  10991. -webkit-box-orient: vertical;
  10992. -webkit-box-align: stretch;
  10993. display: -moz-box;
  10994. -moz-box-orient: vertical;
  10995. -moz-box-align: stretch;
  10996. display: box;
  10997. box-orient: vertical;
  10998. box-align: stretch;
  10999. /* Modern browsers */
  11000. display: flex;
  11001. flex-direction: column;
  11002. align-items: stretch;
  11003. }
  11004. @media (max-width: 540px) {
  11005. div.output_area {
  11006. /* Old browsers */
  11007. display: -webkit-box;
  11008. -webkit-box-orient: vertical;
  11009. -webkit-box-align: stretch;
  11010. display: -moz-box;
  11011. -moz-box-orient: vertical;
  11012. -moz-box-align: stretch;
  11013. display: box;
  11014. box-orient: vertical;
  11015. box-align: stretch;
  11016. /* Modern browsers */
  11017. display: flex;
  11018. flex-direction: column;
  11019. align-items: stretch;
  11020. }
  11021. }
  11022. div.output_area pre {
  11023. margin: 0;
  11024. padding: 1px 0 1px 0;
  11025. border: 0;
  11026. vertical-align: baseline;
  11027. color: black;
  11028. background-color: transparent;
  11029. border-radius: 0;
  11030. }
  11031. /* This class is for the output subarea inside the output_area and after
  11032. the prompt div. */
  11033. div.output_subarea {
  11034. overflow-x: auto;
  11035. padding: 0.4em;
  11036. /* Old browsers */
  11037. -webkit-box-flex: 1;
  11038. -moz-box-flex: 1;
  11039. box-flex: 1;
  11040. /* Modern browsers */
  11041. flex: 1;
  11042. max-width: calc(100% - 14ex);
  11043. }
  11044. div.output_scroll div.output_subarea {
  11045. overflow-x: visible;
  11046. }
  11047. /* The rest of the output_* classes are for special styling of the different
  11048. output types */
  11049. /* all text output has this class: */
  11050. div.output_text {
  11051. text-align: left;
  11052. color: #000;
  11053. /* This has to match that of the the CodeMirror class line-height below */
  11054. line-height: 1.21429em;
  11055. }
  11056. /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
  11057. div.output_stderr {
  11058. background: #fdd;
  11059. /* very light red background for stderr */
  11060. }
  11061. div.output_latex {
  11062. text-align: left;
  11063. }
  11064. /* Empty output_javascript divs should have no height */
  11065. div.output_javascript:empty {
  11066. padding: 0;
  11067. }
  11068. .js-error {
  11069. color: darkred;
  11070. }
  11071. /* raw_input styles */
  11072. div.raw_input_container {
  11073. line-height: 1.21429em;
  11074. padding-top: 5px;
  11075. }
  11076. pre.raw_input_prompt {
  11077. /* nothing needed here. */
  11078. }
  11079. input.raw_input {
  11080. font-family: monospace;
  11081. font-size: inherit;
  11082. color: inherit;
  11083. width: auto;
  11084. /* make sure input baseline aligns with prompt */
  11085. vertical-align: baseline;
  11086. /* padding + margin = 0.5em between prompt and cursor */
  11087. padding: 0em 0.25em;
  11088. margin: 0em 0.25em;
  11089. }
  11090. input.raw_input:focus {
  11091. box-shadow: none;
  11092. }
  11093. p.p-space {
  11094. margin-bottom: 10px;
  11095. }
  11096. div.output_unrecognized {
  11097. padding: 5px;
  11098. font-weight: bold;
  11099. color: red;
  11100. }
  11101. div.output_unrecognized a {
  11102. color: inherit;
  11103. text-decoration: none;
  11104. }
  11105. div.output_unrecognized a:hover {
  11106. color: inherit;
  11107. text-decoration: none;
  11108. }
  11109. .rendered_html {
  11110. color: #000;
  11111. /* any extras will just be numbers: */
  11112. }
  11113. .rendered_html em {
  11114. font-style: italic;
  11115. }
  11116. .rendered_html strong {
  11117. font-weight: bold;
  11118. }
  11119. .rendered_html u {
  11120. text-decoration: underline;
  11121. }
  11122. .rendered_html :link {
  11123. text-decoration: underline;
  11124. }
  11125. .rendered_html :visited {
  11126. text-decoration: underline;
  11127. }
  11128. .rendered_html h1 {
  11129. font-size: 185.7%;
  11130. margin: 1.08em 0 0 0;
  11131. font-weight: bold;
  11132. line-height: 1.0;
  11133. }
  11134. .rendered_html h2 {
  11135. font-size: 157.1%;
  11136. margin: 1.27em 0 0 0;
  11137. font-weight: bold;
  11138. line-height: 1.0;
  11139. }
  11140. .rendered_html h3 {
  11141. font-size: 128.6%;
  11142. margin: 1.55em 0 0 0;
  11143. font-weight: bold;
  11144. line-height: 1.0;
  11145. }
  11146. .rendered_html h4 {
  11147. font-size: 100%;
  11148. margin: 2em 0 0 0;
  11149. font-weight: bold;
  11150. line-height: 1.0;
  11151. }
  11152. .rendered_html h5 {
  11153. font-size: 100%;
  11154. margin: 2em 0 0 0;
  11155. font-weight: bold;
  11156. line-height: 1.0;
  11157. font-style: italic;
  11158. }
  11159. .rendered_html h6 {
  11160. font-size: 100%;
  11161. margin: 2em 0 0 0;
  11162. font-weight: bold;
  11163. line-height: 1.0;
  11164. font-style: italic;
  11165. }
  11166. .rendered_html h1:first-child {
  11167. margin-top: 0.538em;
  11168. }
  11169. .rendered_html h2:first-child {
  11170. margin-top: 0.636em;
  11171. }
  11172. .rendered_html h3:first-child {
  11173. margin-top: 0.777em;
  11174. }
  11175. .rendered_html h4:first-child {
  11176. margin-top: 1em;
  11177. }
  11178. .rendered_html h5:first-child {
  11179. margin-top: 1em;
  11180. }
  11181. .rendered_html h6:first-child {
  11182. margin-top: 1em;
  11183. }
  11184. .rendered_html ul:not(.list-inline),
  11185. .rendered_html ol:not(.list-inline) {
  11186. padding-left: 2em;
  11187. }
  11188. .rendered_html ul {
  11189. list-style: disc;
  11190. }
  11191. .rendered_html ul ul {
  11192. list-style: square;
  11193. margin-top: 0;
  11194. }
  11195. .rendered_html ul ul ul {
  11196. list-style: circle;
  11197. }
  11198. .rendered_html ol {
  11199. list-style: decimal;
  11200. }
  11201. .rendered_html ol ol {
  11202. list-style: upper-alpha;
  11203. margin-top: 0;
  11204. }
  11205. .rendered_html ol ol ol {
  11206. list-style: lower-alpha;
  11207. }
  11208. .rendered_html ol ol ol ol {
  11209. list-style: lower-roman;
  11210. }
  11211. .rendered_html ol ol ol ol ol {
  11212. list-style: decimal;
  11213. }
  11214. .rendered_html * + ul {
  11215. margin-top: 1em;
  11216. }
  11217. .rendered_html * + ol {
  11218. margin-top: 1em;
  11219. }
  11220. .rendered_html hr {
  11221. color: black;
  11222. background-color: black;
  11223. }
  11224. .rendered_html pre {
  11225. margin: 1em 2em;
  11226. padding: 0px;
  11227. background-color: #fff;
  11228. }
  11229. .rendered_html code {
  11230. background-color: #eff0f1;
  11231. }
  11232. .rendered_html p code {
  11233. padding: 1px 5px;
  11234. }
  11235. .rendered_html pre code {
  11236. background-color: #fff;
  11237. }
  11238. .rendered_html pre,
  11239. .rendered_html code {
  11240. border: 0;
  11241. color: #000;
  11242. font-size: 100%;
  11243. }
  11244. .rendered_html blockquote {
  11245. margin: 1em 2em;
  11246. }
  11247. .rendered_html table {
  11248. margin-left: auto;
  11249. margin-right: auto;
  11250. border: none;
  11251. border-collapse: collapse;
  11252. border-spacing: 0;
  11253. color: black;
  11254. font-size: 12px;
  11255. table-layout: fixed;
  11256. }
  11257. .rendered_html thead {
  11258. border-bottom: 1px solid black;
  11259. vertical-align: bottom;
  11260. }
  11261. .rendered_html tr,
  11262. .rendered_html th,
  11263. .rendered_html td {
  11264. text-align: right;
  11265. vertical-align: middle;
  11266. padding: 0.5em 0.5em;
  11267. line-height: normal;
  11268. white-space: normal;
  11269. max-width: none;
  11270. border: none;
  11271. }
  11272. .rendered_html th {
  11273. font-weight: bold;
  11274. }
  11275. .rendered_html tbody tr:nth-child(odd) {
  11276. background: #f5f5f5;
  11277. }
  11278. .rendered_html tbody tr:hover {
  11279. background: rgba(66, 165, 245, 0.2);
  11280. }
  11281. .rendered_html * + table {
  11282. margin-top: 1em;
  11283. }
  11284. .rendered_html p {
  11285. text-align: left;
  11286. }
  11287. .rendered_html * + p {
  11288. margin-top: 1em;
  11289. }
  11290. .rendered_html img {
  11291. display: block;
  11292. margin-left: auto;
  11293. margin-right: auto;
  11294. }
  11295. .rendered_html * + img {
  11296. margin-top: 1em;
  11297. }
  11298. .rendered_html img,
  11299. .rendered_html svg {
  11300. max-width: 100%;
  11301. height: auto;
  11302. }
  11303. .rendered_html img.unconfined,
  11304. .rendered_html svg.unconfined {
  11305. max-width: none;
  11306. }
  11307. .rendered_html .alert {
  11308. margin-bottom: initial;
  11309. }
  11310. .rendered_html * + .alert {
  11311. margin-top: 1em;
  11312. }
  11313. [dir="rtl"] .rendered_html p {
  11314. text-align: right;
  11315. }
  11316. div.text_cell {
  11317. /* Old browsers */
  11318. display: -webkit-box;
  11319. -webkit-box-orient: horizontal;
  11320. -webkit-box-align: stretch;
  11321. display: -moz-box;
  11322. -moz-box-orient: horizontal;
  11323. -moz-box-align: stretch;
  11324. display: box;
  11325. box-orient: horizontal;
  11326. box-align: stretch;
  11327. /* Modern browsers */
  11328. display: flex;
  11329. flex-direction: row;
  11330. align-items: stretch;
  11331. }
  11332. @media (max-width: 540px) {
  11333. div.text_cell > div.prompt {
  11334. display: none;
  11335. }
  11336. }
  11337. div.text_cell_render {
  11338. /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
  11339. outline: none;
  11340. resize: none;
  11341. width: inherit;
  11342. border-style: none;
  11343. padding: 0.5em 0.5em 0.5em 0.4em;
  11344. color: #000;
  11345. box-sizing: border-box;
  11346. -moz-box-sizing: border-box;
  11347. -webkit-box-sizing: border-box;
  11348. }
  11349. a.anchor-link:link {
  11350. text-decoration: none;
  11351. padding: 0px 20px;
  11352. visibility: hidden;
  11353. }
  11354. h1:hover .anchor-link,
  11355. h2:hover .anchor-link,
  11356. h3:hover .anchor-link,
  11357. h4:hover .anchor-link,
  11358. h5:hover .anchor-link,
  11359. h6:hover .anchor-link {
  11360. visibility: visible;
  11361. }
  11362. .text_cell.rendered .input_area {
  11363. display: none;
  11364. }
  11365. .text_cell.rendered .rendered_html {
  11366. overflow-x: auto;
  11367. overflow-y: hidden;
  11368. }
  11369. .text_cell.rendered .rendered_html tr,
  11370. .text_cell.rendered .rendered_html th,
  11371. .text_cell.rendered .rendered_html td {
  11372. max-width: none;
  11373. }
  11374. .text_cell.unrendered .text_cell_render {
  11375. display: none;
  11376. }
  11377. .text_cell .dropzone .input_area {
  11378. border: 2px dashed #bababa;
  11379. margin: -1px;
  11380. }
  11381. .cm-header-1,
  11382. .cm-header-2,
  11383. .cm-header-3,
  11384. .cm-header-4,
  11385. .cm-header-5,
  11386. .cm-header-6 {
  11387. font-weight: bold;
  11388. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  11389. }
  11390. .cm-header-1 {
  11391. font-size: 185.7%;
  11392. }
  11393. .cm-header-2 {
  11394. font-size: 157.1%;
  11395. }
  11396. .cm-header-3 {
  11397. font-size: 128.6%;
  11398. }
  11399. .cm-header-4 {
  11400. font-size: 110%;
  11401. }
  11402. .cm-header-5 {
  11403. font-size: 100%;
  11404. font-style: italic;
  11405. }
  11406. .cm-header-6 {
  11407. font-size: 100%;
  11408. font-style: italic;
  11409. }
  11410. /*!
  11411. *
  11412. * IPython notebook webapp
  11413. *
  11414. */
  11415. @media (max-width: 767px) {
  11416. .notebook_app {
  11417. padding-left: 0px;
  11418. padding-right: 0px;
  11419. }
  11420. }
  11421. #ipython-main-app {
  11422. box-sizing: border-box;
  11423. -moz-box-sizing: border-box;
  11424. -webkit-box-sizing: border-box;
  11425. height: 100%;
  11426. }
  11427. div#notebook_panel {
  11428. margin: 0px;
  11429. padding: 0px;
  11430. box-sizing: border-box;
  11431. -moz-box-sizing: border-box;
  11432. -webkit-box-sizing: border-box;
  11433. height: 100%;
  11434. }
  11435. div#notebook {
  11436. font-size: 14px;
  11437. line-height: 20px;
  11438. overflow-y: hidden;
  11439. overflow-x: auto;
  11440. width: 100%;
  11441. /* This spaces the page away from the edge of the notebook area */
  11442. padding-top: 20px;
  11443. margin: 0px;
  11444. outline: none;
  11445. box-sizing: border-box;
  11446. -moz-box-sizing: border-box;
  11447. -webkit-box-sizing: border-box;
  11448. min-height: 100%;
  11449. }
  11450. @media not print {
  11451. #notebook-container {
  11452. padding: 15px;
  11453. background-color: #fff;
  11454. min-height: 0;
  11455. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11456. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11457. }
  11458. }
  11459. @media print {
  11460. #notebook-container {
  11461. width: 100%;
  11462. }
  11463. }
  11464. div.ui-widget-content {
  11465. border: 1px solid #ababab;
  11466. outline: none;
  11467. }
  11468. pre.dialog {
  11469. background-color: #f7f7f7;
  11470. border: 1px solid #ddd;
  11471. border-radius: 2px;
  11472. padding: 0.4em;
  11473. padding-left: 2em;
  11474. }
  11475. p.dialog {
  11476. padding: 0.2em;
  11477. }
  11478. /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
  11479. to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
  11480. */
  11481. pre,
  11482. code,
  11483. kbd,
  11484. samp {
  11485. white-space: pre-wrap;
  11486. }
  11487. #fonttest {
  11488. font-family: monospace;
  11489. }
  11490. p {
  11491. margin-bottom: 0;
  11492. }
  11493. .end_space {
  11494. min-height: 100px;
  11495. transition: height .2s ease;
  11496. }
  11497. .notebook_app > #header {
  11498. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11499. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11500. }
  11501. @media not print {
  11502. .notebook_app {
  11503. background-color: #EEE;
  11504. }
  11505. }
  11506. kbd {
  11507. border-style: solid;
  11508. border-width: 1px;
  11509. box-shadow: none;
  11510. margin: 2px;
  11511. padding-left: 2px;
  11512. padding-right: 2px;
  11513. padding-top: 1px;
  11514. padding-bottom: 1px;
  11515. }
  11516. .jupyter-keybindings {
  11517. padding: 1px;
  11518. line-height: 24px;
  11519. border-bottom: 1px solid gray;
  11520. }
  11521. .jupyter-keybindings input {
  11522. margin: 0;
  11523. padding: 0;
  11524. border: none;
  11525. }
  11526. .jupyter-keybindings i {
  11527. padding: 6px;
  11528. }
  11529. .well code {
  11530. background-color: #ffffff;
  11531. border-color: #ababab;
  11532. border-width: 1px;
  11533. border-style: solid;
  11534. padding: 2px;
  11535. padding-top: 1px;
  11536. padding-bottom: 1px;
  11537. }
  11538. /* CSS for the cell toolbar */
  11539. .celltoolbar {
  11540. border: thin solid #CFCFCF;
  11541. border-bottom: none;
  11542. background: #EEE;
  11543. border-radius: 2px 2px 0px 0px;
  11544. width: 100%;
  11545. height: 29px;
  11546. padding-right: 4px;
  11547. /* Old browsers */
  11548. display: -webkit-box;
  11549. -webkit-box-orient: horizontal;
  11550. -webkit-box-align: stretch;
  11551. display: -moz-box;
  11552. -moz-box-orient: horizontal;
  11553. -moz-box-align: stretch;
  11554. display: box;
  11555. box-orient: horizontal;
  11556. box-align: stretch;
  11557. /* Modern browsers */
  11558. display: flex;
  11559. flex-direction: row;
  11560. align-items: stretch;
  11561. /* Old browsers */
  11562. -webkit-box-pack: end;
  11563. -moz-box-pack: end;
  11564. box-pack: end;
  11565. /* Modern browsers */
  11566. justify-content: flex-end;
  11567. display: -webkit-flex;
  11568. }
  11569. @media print {
  11570. .celltoolbar {
  11571. display: none;
  11572. }
  11573. }
  11574. .ctb_hideshow {
  11575. display: none;
  11576. vertical-align: bottom;
  11577. }
  11578. /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
  11579. Cell toolbars are only shown when the ctb_global_show class is also set.
  11580. */
  11581. .ctb_global_show .ctb_show.ctb_hideshow {
  11582. display: block;
  11583. }
  11584. .ctb_global_show .ctb_show + .input_area,
  11585. .ctb_global_show .ctb_show + div.text_cell_input,
  11586. .ctb_global_show .ctb_show ~ div.text_cell_render {
  11587. border-top-right-radius: 0px;
  11588. border-top-left-radius: 0px;
  11589. }
  11590. .ctb_global_show .ctb_show ~ div.text_cell_render {
  11591. border: 1px solid #cfcfcf;
  11592. }
  11593. .celltoolbar {
  11594. font-size: 87%;
  11595. padding-top: 3px;
  11596. }
  11597. .celltoolbar select {
  11598. display: block;
  11599. width: 100%;
  11600. height: 32px;
  11601. padding: 6px 12px;
  11602. font-size: 13px;
  11603. line-height: 1.42857143;
  11604. color: #555555;
  11605. background-color: #fff;
  11606. background-image: none;
  11607. border: 1px solid #ccc;
  11608. border-radius: 2px;
  11609. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11610. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11611. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11612. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11613. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11614. height: 30px;
  11615. padding: 5px 10px;
  11616. font-size: 12px;
  11617. line-height: 1.5;
  11618. border-radius: 1px;
  11619. width: inherit;
  11620. font-size: inherit;
  11621. height: 22px;
  11622. padding: 0px;
  11623. display: inline-block;
  11624. }
  11625. .celltoolbar select:focus {
  11626. border-color: #66afe9;
  11627. outline: 0;
  11628. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11629. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11630. }
  11631. .celltoolbar select::-moz-placeholder {
  11632. color: #999;
  11633. opacity: 1;
  11634. }
  11635. .celltoolbar select:-ms-input-placeholder {
  11636. color: #999;
  11637. }
  11638. .celltoolbar select::-webkit-input-placeholder {
  11639. color: #999;
  11640. }
  11641. .celltoolbar select::-ms-expand {
  11642. background-color: transparent;
  11643. border: 0;
  11644. }
  11645. .celltoolbar select[disabled],
  11646. .celltoolbar select[readonly],
  11647. fieldset[disabled] .celltoolbar select {
  11648. background-color: #eeeeee;
  11649. opacity: 1;
  11650. }
  11651. .celltoolbar select[disabled],
  11652. fieldset[disabled] .celltoolbar select {
  11653. cursor: not-allowed;
  11654. }
  11655. textarea.celltoolbar select {
  11656. height: auto;
  11657. }
  11658. select.celltoolbar select {
  11659. height: 30px;
  11660. line-height: 30px;
  11661. }
  11662. textarea.celltoolbar select,
  11663. select[multiple].celltoolbar select {
  11664. height: auto;
  11665. }
  11666. .celltoolbar label {
  11667. margin-left: 5px;
  11668. margin-right: 5px;
  11669. }
  11670. .tags_button_container {
  11671. width: 100%;
  11672. display: flex;
  11673. }
  11674. .tag-container {
  11675. display: flex;
  11676. flex-direction: row;
  11677. flex-grow: 1;
  11678. overflow: hidden;
  11679. position: relative;
  11680. }
  11681. .tag-container > * {
  11682. margin: 0 4px;
  11683. }
  11684. .remove-tag-btn {
  11685. margin-left: 4px;
  11686. }
  11687. .tags-input {
  11688. display: flex;
  11689. }
  11690. .cell-tag:last-child:after {
  11691. content: "";
  11692. position: absolute;
  11693. right: 0;
  11694. width: 40px;
  11695. height: 100%;
  11696. /* Fade to background color of cell toolbar */
  11697. background: linear-gradient(to right, rgba(0, 0, 0, 0), #EEE);
  11698. }
  11699. .tags-input > * {
  11700. margin-left: 4px;
  11701. }
  11702. .cell-tag,
  11703. .tags-input input,
  11704. .tags-input button {
  11705. display: block;
  11706. width: 100%;
  11707. height: 32px;
  11708. padding: 6px 12px;
  11709. font-size: 13px;
  11710. line-height: 1.42857143;
  11711. color: #555555;
  11712. background-color: #fff;
  11713. background-image: none;
  11714. border: 1px solid #ccc;
  11715. border-radius: 2px;
  11716. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11717. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11718. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11719. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11720. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11721. height: 30px;
  11722. padding: 5px 10px;
  11723. font-size: 12px;
  11724. line-height: 1.5;
  11725. border-radius: 1px;
  11726. box-shadow: none;
  11727. width: inherit;
  11728. font-size: inherit;
  11729. height: 22px;
  11730. line-height: 22px;
  11731. padding: 0px 4px;
  11732. display: inline-block;
  11733. }
  11734. .cell-tag:focus,
  11735. .tags-input input:focus,
  11736. .tags-input button:focus {
  11737. border-color: #66afe9;
  11738. outline: 0;
  11739. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11740. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11741. }
  11742. .cell-tag::-moz-placeholder,
  11743. .tags-input input::-moz-placeholder,
  11744. .tags-input button::-moz-placeholder {
  11745. color: #999;
  11746. opacity: 1;
  11747. }
  11748. .cell-tag:-ms-input-placeholder,
  11749. .tags-input input:-ms-input-placeholder,
  11750. .tags-input button:-ms-input-placeholder {
  11751. color: #999;
  11752. }
  11753. .cell-tag::-webkit-input-placeholder,
  11754. .tags-input input::-webkit-input-placeholder,
  11755. .tags-input button::-webkit-input-placeholder {
  11756. color: #999;
  11757. }
  11758. .cell-tag::-ms-expand,
  11759. .tags-input input::-ms-expand,
  11760. .tags-input button::-ms-expand {
  11761. background-color: transparent;
  11762. border: 0;
  11763. }
  11764. .cell-tag[disabled],
  11765. .tags-input input[disabled],
  11766. .tags-input button[disabled],
  11767. .cell-tag[readonly],
  11768. .tags-input input[readonly],
  11769. .tags-input button[readonly],
  11770. fieldset[disabled] .cell-tag,
  11771. fieldset[disabled] .tags-input input,
  11772. fieldset[disabled] .tags-input button {
  11773. background-color: #eeeeee;
  11774. opacity: 1;
  11775. }
  11776. .cell-tag[disabled],
  11777. .tags-input input[disabled],
  11778. .tags-input button[disabled],
  11779. fieldset[disabled] .cell-tag,
  11780. fieldset[disabled] .tags-input input,
  11781. fieldset[disabled] .tags-input button {
  11782. cursor: not-allowed;
  11783. }
  11784. textarea.cell-tag,
  11785. textarea.tags-input input,
  11786. textarea.tags-input button {
  11787. height: auto;
  11788. }
  11789. select.cell-tag,
  11790. select.tags-input input,
  11791. select.tags-input button {
  11792. height: 30px;
  11793. line-height: 30px;
  11794. }
  11795. textarea.cell-tag,
  11796. textarea.tags-input input,
  11797. textarea.tags-input button,
  11798. select[multiple].cell-tag,
  11799. select[multiple].tags-input input,
  11800. select[multiple].tags-input button {
  11801. height: auto;
  11802. }
  11803. .cell-tag,
  11804. .tags-input button {
  11805. padding: 0px 4px;
  11806. }
  11807. .cell-tag {
  11808. background-color: #fff;
  11809. white-space: nowrap;
  11810. }
  11811. .tags-input input[type=text]:focus {
  11812. outline: none;
  11813. box-shadow: none;
  11814. border-color: #ccc;
  11815. }
  11816. .completions {
  11817. position: absolute;
  11818. z-index: 110;
  11819. overflow: hidden;
  11820. border: 1px solid #ababab;
  11821. border-radius: 2px;
  11822. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  11823. box-shadow: 0px 6px 10px -1px #adadad;
  11824. line-height: 1;
  11825. }
  11826. .completions select {
  11827. background: white;
  11828. outline: none;
  11829. border: none;
  11830. padding: 0px;
  11831. margin: 0px;
  11832. overflow: auto;
  11833. font-family: monospace;
  11834. font-size: 110%;
  11835. color: #000;
  11836. width: auto;
  11837. }
  11838. .completions select option.context {
  11839. color: #286090;
  11840. }
  11841. #kernel_logo_widget .current_kernel_logo {
  11842. display: none;
  11843. margin-top: -1px;
  11844. margin-bottom: -1px;
  11845. width: 32px;
  11846. height: 32px;
  11847. }
  11848. [dir="rtl"] #kernel_logo_widget {
  11849. float: left !important;
  11850. float: left;
  11851. }
  11852. .modal .modal-body .move-path {
  11853. display: flex;
  11854. flex-direction: row;
  11855. justify-content: space;
  11856. align-items: center;
  11857. }
  11858. .modal .modal-body .move-path .server-root {
  11859. padding-right: 20px;
  11860. }
  11861. .modal .modal-body .move-path .path-input {
  11862. flex: 1;
  11863. }
  11864. #menubar {
  11865. box-sizing: border-box;
  11866. -moz-box-sizing: border-box;
  11867. -webkit-box-sizing: border-box;
  11868. margin-top: 1px;
  11869. }
  11870. #menubar .navbar {
  11871. border-top: 1px;
  11872. border-radius: 0px 0px 2px 2px;
  11873. margin-bottom: 0px;
  11874. }
  11875. #menubar .navbar-toggle {
  11876. float: left;
  11877. padding-top: 7px;
  11878. padding-bottom: 7px;
  11879. border: none;
  11880. }
  11881. #menubar .navbar-collapse {
  11882. clear: left;
  11883. }
  11884. [dir="rtl"] #menubar .navbar-toggle {
  11885. float: right;
  11886. }
  11887. [dir="rtl"] #menubar .navbar-collapse {
  11888. clear: right;
  11889. }
  11890. [dir="rtl"] #menubar .navbar-nav {
  11891. float: right;
  11892. }
  11893. [dir="rtl"] #menubar .nav {
  11894. padding-right: 0px;
  11895. }
  11896. [dir="rtl"] #menubar .navbar-nav > li {
  11897. float: right;
  11898. }
  11899. [dir="rtl"] #menubar .navbar-right {
  11900. float: left !important;
  11901. }
  11902. [dir="rtl"] ul.dropdown-menu {
  11903. text-align: right;
  11904. left: auto;
  11905. }
  11906. [dir="rtl"] ul#new-menu.dropdown-menu {
  11907. right: auto;
  11908. left: 0;
  11909. }
  11910. .nav-wrapper {
  11911. border-bottom: 1px solid #e7e7e7;
  11912. }
  11913. i.menu-icon {
  11914. padding-top: 4px;
  11915. }
  11916. [dir="rtl"] i.menu-icon.pull-right {
  11917. float: left !important;
  11918. float: left;
  11919. }
  11920. ul#help_menu li a {
  11921. overflow: hidden;
  11922. padding-right: 2.2em;
  11923. }
  11924. ul#help_menu li a i {
  11925. margin-right: -1.2em;
  11926. }
  11927. [dir="rtl"] ul#help_menu li a {
  11928. padding-left: 2.2em;
  11929. }
  11930. [dir="rtl"] ul#help_menu li a i {
  11931. margin-right: 0;
  11932. margin-left: -1.2em;
  11933. }
  11934. [dir="rtl"] ul#help_menu li a i.pull-right {
  11935. float: left !important;
  11936. float: left;
  11937. }
  11938. .dropdown-submenu {
  11939. position: relative;
  11940. }
  11941. .dropdown-submenu > .dropdown-menu {
  11942. top: 0;
  11943. left: 100%;
  11944. margin-top: -6px;
  11945. margin-left: -1px;
  11946. }
  11947. [dir="rtl"] .dropdown-submenu > .dropdown-menu {
  11948. right: 100%;
  11949. margin-right: -1px;
  11950. }
  11951. .dropdown-submenu:hover > .dropdown-menu {
  11952. display: block;
  11953. }
  11954. .dropdown-submenu > a:after {
  11955. display: inline-block;
  11956. font: normal normal normal 14px/1 FontAwesome;
  11957. font-size: inherit;
  11958. text-rendering: auto;
  11959. -webkit-font-smoothing: antialiased;
  11960. -moz-osx-font-smoothing: grayscale;
  11961. display: block;
  11962. content: "\f0da";
  11963. float: right;
  11964. color: #333333;
  11965. margin-top: 2px;
  11966. margin-right: -10px;
  11967. }
  11968. .dropdown-submenu > a:after.fa-pull-left {
  11969. margin-right: .3em;
  11970. }
  11971. .dropdown-submenu > a:after.fa-pull-right {
  11972. margin-left: .3em;
  11973. }
  11974. .dropdown-submenu > a:after.pull-left {
  11975. margin-right: .3em;
  11976. }
  11977. .dropdown-submenu > a:after.pull-right {
  11978. margin-left: .3em;
  11979. }
  11980. [dir="rtl"] .dropdown-submenu > a:after {
  11981. float: left;
  11982. content: "\f0d9";
  11983. margin-right: 0;
  11984. margin-left: -10px;
  11985. }
  11986. .dropdown-submenu:hover > a:after {
  11987. color: #262626;
  11988. }
  11989. .dropdown-submenu.pull-left {
  11990. float: none;
  11991. }
  11992. .dropdown-submenu.pull-left > .dropdown-menu {
  11993. left: -100%;
  11994. margin-left: 10px;
  11995. }
  11996. #notification_area {
  11997. float: right !important;
  11998. float: right;
  11999. z-index: 10;
  12000. }
  12001. [dir="rtl"] #notification_area {
  12002. float: left !important;
  12003. float: left;
  12004. }
  12005. .indicator_area {
  12006. float: right !important;
  12007. float: right;
  12008. color: #777;
  12009. margin-left: 5px;
  12010. margin-right: 5px;
  12011. width: 11px;
  12012. z-index: 10;
  12013. text-align: center;
  12014. width: auto;
  12015. }
  12016. [dir="rtl"] .indicator_area {
  12017. float: left !important;
  12018. float: left;
  12019. }
  12020. #kernel_indicator {
  12021. float: right !important;
  12022. float: right;
  12023. color: #777;
  12024. margin-left: 5px;
  12025. margin-right: 5px;
  12026. width: 11px;
  12027. z-index: 10;
  12028. text-align: center;
  12029. width: auto;
  12030. border-left: 1px solid;
  12031. }
  12032. #kernel_indicator .kernel_indicator_name {
  12033. padding-left: 5px;
  12034. padding-right: 5px;
  12035. }
  12036. [dir="rtl"] #kernel_indicator {
  12037. float: left !important;
  12038. float: left;
  12039. border-left: 0;
  12040. border-right: 1px solid;
  12041. }
  12042. #modal_indicator {
  12043. float: right !important;
  12044. float: right;
  12045. color: #777;
  12046. margin-left: 5px;
  12047. margin-right: 5px;
  12048. width: 11px;
  12049. z-index: 10;
  12050. text-align: center;
  12051. width: auto;
  12052. }
  12053. [dir="rtl"] #modal_indicator {
  12054. float: left !important;
  12055. float: left;
  12056. }
  12057. #readonly-indicator {
  12058. float: right !important;
  12059. float: right;
  12060. color: #777;
  12061. margin-left: 5px;
  12062. margin-right: 5px;
  12063. width: 11px;
  12064. z-index: 10;
  12065. text-align: center;
  12066. width: auto;
  12067. margin-top: 2px;
  12068. margin-bottom: 0px;
  12069. margin-left: 0px;
  12070. margin-right: 0px;
  12071. display: none;
  12072. }
  12073. .modal_indicator:before {
  12074. width: 1.28571429em;
  12075. text-align: center;
  12076. }
  12077. .edit_mode .modal_indicator:before {
  12078. display: inline-block;
  12079. font: normal normal normal 14px/1 FontAwesome;
  12080. font-size: inherit;
  12081. text-rendering: auto;
  12082. -webkit-font-smoothing: antialiased;
  12083. -moz-osx-font-smoothing: grayscale;
  12084. content: "\f040";
  12085. }
  12086. .edit_mode .modal_indicator:before.fa-pull-left {
  12087. margin-right: .3em;
  12088. }
  12089. .edit_mode .modal_indicator:before.fa-pull-right {
  12090. margin-left: .3em;
  12091. }
  12092. .edit_mode .modal_indicator:before.pull-left {
  12093. margin-right: .3em;
  12094. }
  12095. .edit_mode .modal_indicator:before.pull-right {
  12096. margin-left: .3em;
  12097. }
  12098. .command_mode .modal_indicator:before {
  12099. display: inline-block;
  12100. font: normal normal normal 14px/1 FontAwesome;
  12101. font-size: inherit;
  12102. text-rendering: auto;
  12103. -webkit-font-smoothing: antialiased;
  12104. -moz-osx-font-smoothing: grayscale;
  12105. content: ' ';
  12106. }
  12107. .command_mode .modal_indicator:before.fa-pull-left {
  12108. margin-right: .3em;
  12109. }
  12110. .command_mode .modal_indicator:before.fa-pull-right {
  12111. margin-left: .3em;
  12112. }
  12113. .command_mode .modal_indicator:before.pull-left {
  12114. margin-right: .3em;
  12115. }
  12116. .command_mode .modal_indicator:before.pull-right {
  12117. margin-left: .3em;
  12118. }
  12119. .kernel_idle_icon:before {
  12120. display: inline-block;
  12121. font: normal normal normal 14px/1 FontAwesome;
  12122. font-size: inherit;
  12123. text-rendering: auto;
  12124. -webkit-font-smoothing: antialiased;
  12125. -moz-osx-font-smoothing: grayscale;
  12126. content: "\f10c";
  12127. }
  12128. .kernel_idle_icon:before.fa-pull-left {
  12129. margin-right: .3em;
  12130. }
  12131. .kernel_idle_icon:before.fa-pull-right {
  12132. margin-left: .3em;
  12133. }
  12134. .kernel_idle_icon:before.pull-left {
  12135. margin-right: .3em;
  12136. }
  12137. .kernel_idle_icon:before.pull-right {
  12138. margin-left: .3em;
  12139. }
  12140. .kernel_busy_icon:before {
  12141. display: inline-block;
  12142. font: normal normal normal 14px/1 FontAwesome;
  12143. font-size: inherit;
  12144. text-rendering: auto;
  12145. -webkit-font-smoothing: antialiased;
  12146. -moz-osx-font-smoothing: grayscale;
  12147. content: "\f111";
  12148. }
  12149. .kernel_busy_icon:before.fa-pull-left {
  12150. margin-right: .3em;
  12151. }
  12152. .kernel_busy_icon:before.fa-pull-right {
  12153. margin-left: .3em;
  12154. }
  12155. .kernel_busy_icon:before.pull-left {
  12156. margin-right: .3em;
  12157. }
  12158. .kernel_busy_icon:before.pull-right {
  12159. margin-left: .3em;
  12160. }
  12161. .kernel_dead_icon:before {
  12162. display: inline-block;
  12163. font: normal normal normal 14px/1 FontAwesome;
  12164. font-size: inherit;
  12165. text-rendering: auto;
  12166. -webkit-font-smoothing: antialiased;
  12167. -moz-osx-font-smoothing: grayscale;
  12168. content: "\f1e2";
  12169. }
  12170. .kernel_dead_icon:before.fa-pull-left {
  12171. margin-right: .3em;
  12172. }
  12173. .kernel_dead_icon:before.fa-pull-right {
  12174. margin-left: .3em;
  12175. }
  12176. .kernel_dead_icon:before.pull-left {
  12177. margin-right: .3em;
  12178. }
  12179. .kernel_dead_icon:before.pull-right {
  12180. margin-left: .3em;
  12181. }
  12182. .kernel_disconnected_icon:before {
  12183. display: inline-block;
  12184. font: normal normal normal 14px/1 FontAwesome;
  12185. font-size: inherit;
  12186. text-rendering: auto;
  12187. -webkit-font-smoothing: antialiased;
  12188. -moz-osx-font-smoothing: grayscale;
  12189. content: "\f127";
  12190. }
  12191. .kernel_disconnected_icon:before.fa-pull-left {
  12192. margin-right: .3em;
  12193. }
  12194. .kernel_disconnected_icon:before.fa-pull-right {
  12195. margin-left: .3em;
  12196. }
  12197. .kernel_disconnected_icon:before.pull-left {
  12198. margin-right: .3em;
  12199. }
  12200. .kernel_disconnected_icon:before.pull-right {
  12201. margin-left: .3em;
  12202. }
  12203. .notification_widget {
  12204. color: #777;
  12205. z-index: 10;
  12206. background: rgba(240, 240, 240, 0.5);
  12207. margin-right: 4px;
  12208. color: #333;
  12209. background-color: #fff;
  12210. border-color: #ccc;
  12211. }
  12212. .notification_widget:focus,
  12213. .notification_widget.focus {
  12214. color: #333;
  12215. background-color: #e6e6e6;
  12216. border-color: #8c8c8c;
  12217. }
  12218. .notification_widget:hover {
  12219. color: #333;
  12220. background-color: #e6e6e6;
  12221. border-color: #adadad;
  12222. }
  12223. .notification_widget:active,
  12224. .notification_widget.active,
  12225. .open > .dropdown-toggle.notification_widget {
  12226. color: #333;
  12227. background-color: #e6e6e6;
  12228. background-image: none;
  12229. border-color: #adadad;
  12230. }
  12231. .notification_widget:active:hover,
  12232. .notification_widget.active:hover,
  12233. .open > .dropdown-toggle.notification_widget:hover,
  12234. .notification_widget:active:focus,
  12235. .notification_widget.active:focus,
  12236. .open > .dropdown-toggle.notification_widget:focus,
  12237. .notification_widget:active.focus,
  12238. .notification_widget.active.focus,
  12239. .open > .dropdown-toggle.notification_widget.focus {
  12240. color: #333;
  12241. background-color: #d4d4d4;
  12242. border-color: #8c8c8c;
  12243. }
  12244. .notification_widget.disabled:hover,
  12245. .notification_widget[disabled]:hover,
  12246. fieldset[disabled] .notification_widget:hover,
  12247. .notification_widget.disabled:focus,
  12248. .notification_widget[disabled]:focus,
  12249. fieldset[disabled] .notification_widget:focus,
  12250. .notification_widget.disabled.focus,
  12251. .notification_widget[disabled].focus,
  12252. fieldset[disabled] .notification_widget.focus {
  12253. background-color: #fff;
  12254. border-color: #ccc;
  12255. }
  12256. .notification_widget .badge {
  12257. color: #fff;
  12258. background-color: #333;
  12259. }
  12260. .notification_widget.warning {
  12261. color: #fff;
  12262. background-color: #f0ad4e;
  12263. border-color: #eea236;
  12264. }
  12265. .notification_widget.warning:focus,
  12266. .notification_widget.warning.focus {
  12267. color: #fff;
  12268. background-color: #ec971f;
  12269. border-color: #985f0d;
  12270. }
  12271. .notification_widget.warning:hover {
  12272. color: #fff;
  12273. background-color: #ec971f;
  12274. border-color: #d58512;
  12275. }
  12276. .notification_widget.warning:active,
  12277. .notification_widget.warning.active,
  12278. .open > .dropdown-toggle.notification_widget.warning {
  12279. color: #fff;
  12280. background-color: #ec971f;
  12281. background-image: none;
  12282. border-color: #d58512;
  12283. }
  12284. .notification_widget.warning:active:hover,
  12285. .notification_widget.warning.active:hover,
  12286. .open > .dropdown-toggle.notification_widget.warning:hover,
  12287. .notification_widget.warning:active:focus,
  12288. .notification_widget.warning.active:focus,
  12289. .open > .dropdown-toggle.notification_widget.warning:focus,
  12290. .notification_widget.warning:active.focus,
  12291. .notification_widget.warning.active.focus,
  12292. .open > .dropdown-toggle.notification_widget.warning.focus {
  12293. color: #fff;
  12294. background-color: #d58512;
  12295. border-color: #985f0d;
  12296. }
  12297. .notification_widget.warning.disabled:hover,
  12298. .notification_widget.warning[disabled]:hover,
  12299. fieldset[disabled] .notification_widget.warning:hover,
  12300. .notification_widget.warning.disabled:focus,
  12301. .notification_widget.warning[disabled]:focus,
  12302. fieldset[disabled] .notification_widget.warning:focus,
  12303. .notification_widget.warning.disabled.focus,
  12304. .notification_widget.warning[disabled].focus,
  12305. fieldset[disabled] .notification_widget.warning.focus {
  12306. background-color: #f0ad4e;
  12307. border-color: #eea236;
  12308. }
  12309. .notification_widget.warning .badge {
  12310. color: #f0ad4e;
  12311. background-color: #fff;
  12312. }
  12313. .notification_widget.success {
  12314. color: #fff;
  12315. background-color: #5cb85c;
  12316. border-color: #4cae4c;
  12317. }
  12318. .notification_widget.success:focus,
  12319. .notification_widget.success.focus {
  12320. color: #fff;
  12321. background-color: #449d44;
  12322. border-color: #255625;
  12323. }
  12324. .notification_widget.success:hover {
  12325. color: #fff;
  12326. background-color: #449d44;
  12327. border-color: #398439;
  12328. }
  12329. .notification_widget.success:active,
  12330. .notification_widget.success.active,
  12331. .open > .dropdown-toggle.notification_widget.success {
  12332. color: #fff;
  12333. background-color: #449d44;
  12334. background-image: none;
  12335. border-color: #398439;
  12336. }
  12337. .notification_widget.success:active:hover,
  12338. .notification_widget.success.active:hover,
  12339. .open > .dropdown-toggle.notification_widget.success:hover,
  12340. .notification_widget.success:active:focus,
  12341. .notification_widget.success.active:focus,
  12342. .open > .dropdown-toggle.notification_widget.success:focus,
  12343. .notification_widget.success:active.focus,
  12344. .notification_widget.success.active.focus,
  12345. .open > .dropdown-toggle.notification_widget.success.focus {
  12346. color: #fff;
  12347. background-color: #398439;
  12348. border-color: #255625;
  12349. }
  12350. .notification_widget.success.disabled:hover,
  12351. .notification_widget.success[disabled]:hover,
  12352. fieldset[disabled] .notification_widget.success:hover,
  12353. .notification_widget.success.disabled:focus,
  12354. .notification_widget.success[disabled]:focus,
  12355. fieldset[disabled] .notification_widget.success:focus,
  12356. .notification_widget.success.disabled.focus,
  12357. .notification_widget.success[disabled].focus,
  12358. fieldset[disabled] .notification_widget.success.focus {
  12359. background-color: #5cb85c;
  12360. border-color: #4cae4c;
  12361. }
  12362. .notification_widget.success .badge {
  12363. color: #5cb85c;
  12364. background-color: #fff;
  12365. }
  12366. .notification_widget.info {
  12367. color: #fff;
  12368. background-color: #5bc0de;
  12369. border-color: #46b8da;
  12370. }
  12371. .notification_widget.info:focus,
  12372. .notification_widget.info.focus {
  12373. color: #fff;
  12374. background-color: #31b0d5;
  12375. border-color: #1b6d85;
  12376. }
  12377. .notification_widget.info:hover {
  12378. color: #fff;
  12379. background-color: #31b0d5;
  12380. border-color: #269abc;
  12381. }
  12382. .notification_widget.info:active,
  12383. .notification_widget.info.active,
  12384. .open > .dropdown-toggle.notification_widget.info {
  12385. color: #fff;
  12386. background-color: #31b0d5;
  12387. background-image: none;
  12388. border-color: #269abc;
  12389. }
  12390. .notification_widget.info:active:hover,
  12391. .notification_widget.info.active:hover,
  12392. .open > .dropdown-toggle.notification_widget.info:hover,
  12393. .notification_widget.info:active:focus,
  12394. .notification_widget.info.active:focus,
  12395. .open > .dropdown-toggle.notification_widget.info:focus,
  12396. .notification_widget.info:active.focus,
  12397. .notification_widget.info.active.focus,
  12398. .open > .dropdown-toggle.notification_widget.info.focus {
  12399. color: #fff;
  12400. background-color: #269abc;
  12401. border-color: #1b6d85;
  12402. }
  12403. .notification_widget.info.disabled:hover,
  12404. .notification_widget.info[disabled]:hover,
  12405. fieldset[disabled] .notification_widget.info:hover,
  12406. .notification_widget.info.disabled:focus,
  12407. .notification_widget.info[disabled]:focus,
  12408. fieldset[disabled] .notification_widget.info:focus,
  12409. .notification_widget.info.disabled.focus,
  12410. .notification_widget.info[disabled].focus,
  12411. fieldset[disabled] .notification_widget.info.focus {
  12412. background-color: #5bc0de;
  12413. border-color: #46b8da;
  12414. }
  12415. .notification_widget.info .badge {
  12416. color: #5bc0de;
  12417. background-color: #fff;
  12418. }
  12419. .notification_widget.danger {
  12420. color: #fff;
  12421. background-color: #d9534f;
  12422. border-color: #d43f3a;
  12423. }
  12424. .notification_widget.danger:focus,
  12425. .notification_widget.danger.focus {
  12426. color: #fff;
  12427. background-color: #c9302c;
  12428. border-color: #761c19;
  12429. }
  12430. .notification_widget.danger:hover {
  12431. color: #fff;
  12432. background-color: #c9302c;
  12433. border-color: #ac2925;
  12434. }
  12435. .notification_widget.danger:active,
  12436. .notification_widget.danger.active,
  12437. .open > .dropdown-toggle.notification_widget.danger {
  12438. color: #fff;
  12439. background-color: #c9302c;
  12440. background-image: none;
  12441. border-color: #ac2925;
  12442. }
  12443. .notification_widget.danger:active:hover,
  12444. .notification_widget.danger.active:hover,
  12445. .open > .dropdown-toggle.notification_widget.danger:hover,
  12446. .notification_widget.danger:active:focus,
  12447. .notification_widget.danger.active:focus,
  12448. .open > .dropdown-toggle.notification_widget.danger:focus,
  12449. .notification_widget.danger:active.focus,
  12450. .notification_widget.danger.active.focus,
  12451. .open > .dropdown-toggle.notification_widget.danger.focus {
  12452. color: #fff;
  12453. background-color: #ac2925;
  12454. border-color: #761c19;
  12455. }
  12456. .notification_widget.danger.disabled:hover,
  12457. .notification_widget.danger[disabled]:hover,
  12458. fieldset[disabled] .notification_widget.danger:hover,
  12459. .notification_widget.danger.disabled:focus,
  12460. .notification_widget.danger[disabled]:focus,
  12461. fieldset[disabled] .notification_widget.danger:focus,
  12462. .notification_widget.danger.disabled.focus,
  12463. .notification_widget.danger[disabled].focus,
  12464. fieldset[disabled] .notification_widget.danger.focus {
  12465. background-color: #d9534f;
  12466. border-color: #d43f3a;
  12467. }
  12468. .notification_widget.danger .badge {
  12469. color: #d9534f;
  12470. background-color: #fff;
  12471. }
  12472. div#pager {
  12473. background-color: #fff;
  12474. font-size: 14px;
  12475. line-height: 20px;
  12476. overflow: hidden;
  12477. display: none;
  12478. position: fixed;
  12479. bottom: 0px;
  12480. width: 100%;
  12481. max-height: 50%;
  12482. padding-top: 8px;
  12483. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12484. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12485. /* Display over codemirror */
  12486. z-index: 100;
  12487. /* Hack which prevents jquery ui resizable from changing top. */
  12488. top: auto !important;
  12489. }
  12490. div#pager pre {
  12491. line-height: 1.21429em;
  12492. color: #000;
  12493. background-color: #f7f7f7;
  12494. padding: 0.4em;
  12495. }
  12496. div#pager #pager-button-area {
  12497. position: absolute;
  12498. top: 8px;
  12499. right: 20px;
  12500. }
  12501. div#pager #pager-contents {
  12502. position: relative;
  12503. overflow: auto;
  12504. width: 100%;
  12505. height: 100%;
  12506. }
  12507. div#pager #pager-contents #pager-container {
  12508. position: relative;
  12509. padding: 15px 0px;
  12510. box-sizing: border-box;
  12511. -moz-box-sizing: border-box;
  12512. -webkit-box-sizing: border-box;
  12513. }
  12514. div#pager .ui-resizable-handle {
  12515. top: 0px;
  12516. height: 8px;
  12517. background: #f7f7f7;
  12518. border-top: 1px solid #cfcfcf;
  12519. border-bottom: 1px solid #cfcfcf;
  12520. /* This injects handle bars (a short, wide = symbol) for
  12521. the resize handle. */
  12522. }
  12523. div#pager .ui-resizable-handle::after {
  12524. content: '';
  12525. top: 2px;
  12526. left: 50%;
  12527. height: 3px;
  12528. width: 30px;
  12529. margin-left: -15px;
  12530. position: absolute;
  12531. border-top: 1px solid #cfcfcf;
  12532. }
  12533. .quickhelp {
  12534. /* Old browsers */
  12535. display: -webkit-box;
  12536. -webkit-box-orient: horizontal;
  12537. -webkit-box-align: stretch;
  12538. display: -moz-box;
  12539. -moz-box-orient: horizontal;
  12540. -moz-box-align: stretch;
  12541. display: box;
  12542. box-orient: horizontal;
  12543. box-align: stretch;
  12544. /* Modern browsers */
  12545. display: flex;
  12546. flex-direction: row;
  12547. align-items: stretch;
  12548. line-height: 1.8em;
  12549. }
  12550. .shortcut_key {
  12551. display: inline-block;
  12552. width: 21ex;
  12553. text-align: right;
  12554. font-family: monospace;
  12555. }
  12556. .shortcut_descr {
  12557. display: inline-block;
  12558. /* Old browsers */
  12559. -webkit-box-flex: 1;
  12560. -moz-box-flex: 1;
  12561. box-flex: 1;
  12562. /* Modern browsers */
  12563. flex: 1;
  12564. }
  12565. span.save_widget {
  12566. height: 30px;
  12567. margin-top: 4px;
  12568. display: flex;
  12569. justify-content: flex-start;
  12570. align-items: baseline;
  12571. width: 50%;
  12572. flex: 1;
  12573. }
  12574. span.save_widget span.filename {
  12575. height: 100%;
  12576. line-height: 1em;
  12577. margin-left: 16px;
  12578. border: none;
  12579. font-size: 146.5%;
  12580. text-overflow: ellipsis;
  12581. overflow: hidden;
  12582. white-space: nowrap;
  12583. border-radius: 2px;
  12584. }
  12585. span.save_widget span.filename:hover {
  12586. background-color: #e6e6e6;
  12587. }
  12588. [dir="rtl"] span.save_widget.pull-left {
  12589. float: right !important;
  12590. float: right;
  12591. }
  12592. [dir="rtl"] span.save_widget span.filename {
  12593. margin-left: 0;
  12594. margin-right: 16px;
  12595. }
  12596. span.checkpoint_status,
  12597. span.autosave_status {
  12598. font-size: small;
  12599. white-space: nowrap;
  12600. padding: 0 5px;
  12601. }
  12602. @media (max-width: 767px) {
  12603. span.save_widget {
  12604. font-size: small;
  12605. padding: 0 0 0 5px;
  12606. }
  12607. span.checkpoint_status,
  12608. span.autosave_status {
  12609. display: none;
  12610. }
  12611. }
  12612. @media (min-width: 768px) and (max-width: 991px) {
  12613. span.checkpoint_status {
  12614. display: none;
  12615. }
  12616. span.autosave_status {
  12617. font-size: x-small;
  12618. }
  12619. }
  12620. .toolbar {
  12621. padding: 0px;
  12622. margin-left: -5px;
  12623. margin-top: 2px;
  12624. margin-bottom: 5px;
  12625. box-sizing: border-box;
  12626. -moz-box-sizing: border-box;
  12627. -webkit-box-sizing: border-box;
  12628. }
  12629. .toolbar select,
  12630. .toolbar label {
  12631. width: auto;
  12632. vertical-align: middle;
  12633. margin-right: 2px;
  12634. margin-bottom: 0px;
  12635. display: inline;
  12636. font-size: 92%;
  12637. margin-left: 0.3em;
  12638. margin-right: 0.3em;
  12639. padding: 0px;
  12640. padding-top: 3px;
  12641. }
  12642. .toolbar .btn {
  12643. padding: 2px 8px;
  12644. }
  12645. .toolbar .btn-group {
  12646. margin-top: 0px;
  12647. margin-left: 5px;
  12648. }
  12649. .toolbar-btn-label {
  12650. margin-left: 6px;
  12651. }
  12652. #maintoolbar {
  12653. margin-bottom: -3px;
  12654. margin-top: -8px;
  12655. border: 0px;
  12656. min-height: 27px;
  12657. margin-left: 0px;
  12658. padding-top: 11px;
  12659. padding-bottom: 3px;
  12660. }
  12661. #maintoolbar .navbar-text {
  12662. float: none;
  12663. vertical-align: middle;
  12664. text-align: right;
  12665. margin-left: 5px;
  12666. margin-right: 0px;
  12667. margin-top: 0px;
  12668. }
  12669. .select-xs {
  12670. height: 24px;
  12671. }
  12672. [dir="rtl"] .btn-group > .btn,
  12673. .btn-group-vertical > .btn {
  12674. float: right;
  12675. }
  12676. .pulse,
  12677. .dropdown-menu > li > a.pulse,
  12678. li.pulse > a.dropdown-toggle,
  12679. li.pulse.open > a.dropdown-toggle {
  12680. background-color: #F37626;
  12681. color: white;
  12682. }
  12683. /**
  12684. * Primary styles
  12685. *
  12686. * Author: Jupyter Development Team
  12687. */
  12688. /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
  12689. * of chance of beeing generated from the ../less/[samename].less file, you can
  12690. * try to get back the less file by reverting somme commit in history
  12691. **/
  12692. /*
  12693. * We'll try to get something pretty, so we
  12694. * have some strange css to have the scroll bar on
  12695. * the left with fix button on the top right of the tooltip
  12696. */
  12697. @-moz-keyframes fadeOut {
  12698. from {
  12699. opacity: 1;
  12700. }
  12701. to {
  12702. opacity: 0;
  12703. }
  12704. }
  12705. @-webkit-keyframes fadeOut {
  12706. from {
  12707. opacity: 1;
  12708. }
  12709. to {
  12710. opacity: 0;
  12711. }
  12712. }
  12713. @-moz-keyframes fadeIn {
  12714. from {
  12715. opacity: 0;
  12716. }
  12717. to {
  12718. opacity: 1;
  12719. }
  12720. }
  12721. @-webkit-keyframes fadeIn {
  12722. from {
  12723. opacity: 0;
  12724. }
  12725. to {
  12726. opacity: 1;
  12727. }
  12728. }
  12729. /*properties of tooltip after "expand"*/
  12730. .bigtooltip {
  12731. overflow: auto;
  12732. height: 200px;
  12733. -webkit-transition-property: height;
  12734. -webkit-transition-duration: 500ms;
  12735. -moz-transition-property: height;
  12736. -moz-transition-duration: 500ms;
  12737. transition-property: height;
  12738. transition-duration: 500ms;
  12739. }
  12740. /*properties of tooltip before "expand"*/
  12741. .smalltooltip {
  12742. -webkit-transition-property: height;
  12743. -webkit-transition-duration: 500ms;
  12744. -moz-transition-property: height;
  12745. -moz-transition-duration: 500ms;
  12746. transition-property: height;
  12747. transition-duration: 500ms;
  12748. text-overflow: ellipsis;
  12749. overflow: hidden;
  12750. height: 80px;
  12751. }
  12752. .tooltipbuttons {
  12753. position: absolute;
  12754. padding-right: 15px;
  12755. top: 0px;
  12756. right: 0px;
  12757. }
  12758. .tooltiptext {
  12759. /*avoid the button to overlap on some docstring*/
  12760. padding-right: 30px;
  12761. }
  12762. .ipython_tooltip {
  12763. max-width: 700px;
  12764. /*fade-in animation when inserted*/
  12765. -webkit-animation: fadeOut 400ms;
  12766. -moz-animation: fadeOut 400ms;
  12767. animation: fadeOut 400ms;
  12768. -webkit-animation: fadeIn 400ms;
  12769. -moz-animation: fadeIn 400ms;
  12770. animation: fadeIn 400ms;
  12771. vertical-align: middle;
  12772. background-color: #f7f7f7;
  12773. overflow: visible;
  12774. border: #ababab 1px solid;
  12775. outline: none;
  12776. padding: 3px;
  12777. margin: 0px;
  12778. padding-left: 7px;
  12779. font-family: monospace;
  12780. min-height: 50px;
  12781. -moz-box-shadow: 0px 6px 10px -1px #adadad;
  12782. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  12783. box-shadow: 0px 6px 10px -1px #adadad;
  12784. border-radius: 2px;
  12785. position: absolute;
  12786. z-index: 1000;
  12787. }
  12788. .ipython_tooltip a {
  12789. float: right;
  12790. }
  12791. .ipython_tooltip .tooltiptext pre {
  12792. border: 0;
  12793. border-radius: 0;
  12794. font-size: 100%;
  12795. background-color: #f7f7f7;
  12796. }
  12797. .pretooltiparrow {
  12798. left: 0px;
  12799. margin: 0px;
  12800. top: -16px;
  12801. width: 40px;
  12802. height: 16px;
  12803. overflow: hidden;
  12804. position: absolute;
  12805. }
  12806. .pretooltiparrow:before {
  12807. background-color: #f7f7f7;
  12808. border: 1px #ababab solid;
  12809. z-index: 11;
  12810. content: "";
  12811. position: absolute;
  12812. left: 15px;
  12813. top: 10px;
  12814. width: 25px;
  12815. height: 25px;
  12816. -webkit-transform: rotate(45deg);
  12817. -moz-transform: rotate(45deg);
  12818. -ms-transform: rotate(45deg);
  12819. -o-transform: rotate(45deg);
  12820. }
  12821. ul.typeahead-list i {
  12822. margin-left: -10px;
  12823. width: 18px;
  12824. }
  12825. [dir="rtl"] ul.typeahead-list i {
  12826. margin-left: 0;
  12827. margin-right: -10px;
  12828. }
  12829. ul.typeahead-list {
  12830. max-height: 80vh;
  12831. overflow: auto;
  12832. }
  12833. ul.typeahead-list > li > a {
  12834. /** Firefox bug **/
  12835. /* see https://github.com/jupyter/notebook/issues/559 */
  12836. white-space: normal;
  12837. }
  12838. ul.typeahead-list > li > a.pull-right {
  12839. float: left !important;
  12840. float: left;
  12841. }
  12842. [dir="rtl"] .typeahead-list {
  12843. text-align: right;
  12844. }
  12845. .cmd-palette .modal-body {
  12846. padding: 7px;
  12847. }
  12848. .cmd-palette form {
  12849. background: white;
  12850. }
  12851. .cmd-palette input {
  12852. outline: none;
  12853. }
  12854. .no-shortcut {
  12855. min-width: 20px;
  12856. color: transparent;
  12857. }
  12858. [dir="rtl"] .no-shortcut.pull-right {
  12859. float: left !important;
  12860. float: left;
  12861. }
  12862. [dir="rtl"] .command-shortcut.pull-right {
  12863. float: left !important;
  12864. float: left;
  12865. }
  12866. .command-shortcut:before {
  12867. content: "(command mode)";
  12868. padding-right: 3px;
  12869. color: #777777;
  12870. }
  12871. .edit-shortcut:before {
  12872. content: "(edit)";
  12873. padding-right: 3px;
  12874. color: #777777;
  12875. }
  12876. [dir="rtl"] .edit-shortcut.pull-right {
  12877. float: left !important;
  12878. float: left;
  12879. }
  12880. #find-and-replace #replace-preview .match,
  12881. #find-and-replace #replace-preview .insert {
  12882. background-color: #BBDEFB;
  12883. border-color: #90CAF9;
  12884. border-style: solid;
  12885. border-width: 1px;
  12886. border-radius: 0px;
  12887. }
  12888. [dir="ltr"] #find-and-replace .input-group-btn + .form-control {
  12889. border-left: none;
  12890. }
  12891. [dir="rtl"] #find-and-replace .input-group-btn + .form-control {
  12892. border-right: none;
  12893. }
  12894. #find-and-replace #replace-preview .replace .match {
  12895. background-color: #FFCDD2;
  12896. border-color: #EF9A9A;
  12897. border-radius: 0px;
  12898. }
  12899. #find-and-replace #replace-preview .replace .insert {
  12900. background-color: #C8E6C9;
  12901. border-color: #A5D6A7;
  12902. border-radius: 0px;
  12903. }
  12904. #find-and-replace #replace-preview {
  12905. max-height: 60vh;
  12906. overflow: auto;
  12907. }
  12908. #find-and-replace #replace-preview pre {
  12909. padding: 5px 10px;
  12910. }
  12911. .terminal-app {
  12912. background: #EEE;
  12913. }
  12914. .terminal-app #header {
  12915. background: #fff;
  12916. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12917. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12918. }
  12919. .terminal-app .terminal {
  12920. width: 100%;
  12921. float: left;
  12922. font-family: monospace;
  12923. color: white;
  12924. background: black;
  12925. padding: 0.4em;
  12926. border-radius: 2px;
  12927. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  12928. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  12929. line-height: 1em;
  12930. font-size: 14px;
  12931. }
  12932. .terminal-app .terminal .xterm-rows {
  12933. padding: 10px;
  12934. }
  12935. .terminal-app .terminal-cursor {
  12936. color: black;
  12937. background: white;
  12938. }
  12939. .terminal-app .terminado-container-container {
  12940. padding-top: 20px;
  12941. height: 100%;
  12942. }
  12943. .terminal-app #terminado-container {
  12944. height: 100%;
  12945. }
  12946. /*# sourceMappingURL=style.min.css.map */