style.min.css 259 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935
  1. /*!
  2. *
  3. * Twitter Bootstrap
  4. *
  5. */
  6. /*!
  7. * Bootstrap v3.3.7 (http://getbootstrap.com)
  8. * Copyright 2011-2016 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: 1px dotted;
  59. }
  60. b,
  61. strong {
  62. font-weight: bold;
  63. }
  64. dfn {
  65. font-style: italic;
  66. }
  67. h1 {
  68. font-size: 2em;
  69. margin: 0.67em 0;
  70. }
  71. mark {
  72. background: #ff0;
  73. color: #000;
  74. }
  75. small {
  76. font-size: 80%;
  77. }
  78. sub,
  79. sup {
  80. font-size: 75%;
  81. line-height: 0;
  82. position: relative;
  83. vertical-align: baseline;
  84. }
  85. sup {
  86. top: -0.5em;
  87. }
  88. sub {
  89. bottom: -0.25em;
  90. }
  91. img {
  92. border: 0;
  93. }
  94. svg:not(:root) {
  95. overflow: hidden;
  96. }
  97. figure {
  98. margin: 1em 40px;
  99. }
  100. hr {
  101. box-sizing: content-box;
  102. height: 0;
  103. }
  104. pre {
  105. overflow: auto;
  106. }
  107. code,
  108. kbd,
  109. pre,
  110. samp {
  111. font-family: monospace, monospace;
  112. font-size: 1em;
  113. }
  114. button,
  115. input,
  116. optgroup,
  117. select,
  118. textarea {
  119. color: inherit;
  120. font: inherit;
  121. margin: 0;
  122. }
  123. button {
  124. overflow: visible;
  125. }
  126. button,
  127. select {
  128. text-transform: none;
  129. }
  130. button,
  131. html input[type="button"],
  132. input[type="reset"],
  133. input[type="submit"] {
  134. -webkit-appearance: button;
  135. cursor: pointer;
  136. }
  137. button[disabled],
  138. html input[disabled] {
  139. cursor: default;
  140. }
  141. button::-moz-focus-inner,
  142. input::-moz-focus-inner {
  143. border: 0;
  144. padding: 0;
  145. }
  146. input {
  147. line-height: normal;
  148. }
  149. input[type="checkbox"],
  150. input[type="radio"] {
  151. box-sizing: border-box;
  152. padding: 0;
  153. }
  154. input[type="number"]::-webkit-inner-spin-button,
  155. input[type="number"]::-webkit-outer-spin-button {
  156. height: auto;
  157. }
  158. input[type="search"] {
  159. -webkit-appearance: textfield;
  160. box-sizing: content-box;
  161. }
  162. input[type="search"]::-webkit-search-cancel-button,
  163. input[type="search"]::-webkit-search-decoration {
  164. -webkit-appearance: none;
  165. }
  166. fieldset {
  167. border: 1px solid #c0c0c0;
  168. margin: 0 2px;
  169. padding: 0.35em 0.625em 0.75em;
  170. }
  171. legend {
  172. border: 0;
  173. padding: 0;
  174. }
  175. textarea {
  176. overflow: auto;
  177. }
  178. optgroup {
  179. font-weight: bold;
  180. }
  181. table {
  182. border-collapse: collapse;
  183. border-spacing: 0;
  184. }
  185. td,
  186. th {
  187. padding: 0;
  188. }
  189. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  190. @media print {
  191. *,
  192. *:before,
  193. *:after {
  194. background: transparent !important;
  195. box-shadow: none !important;
  196. text-shadow: none !important;
  197. }
  198. a,
  199. a:visited {
  200. text-decoration: underline;
  201. }
  202. a[href]:after {
  203. content: " (" attr(href) ")";
  204. }
  205. abbr[title]:after {
  206. content: " (" attr(title) ")";
  207. }
  208. a[href^="#"]:after,
  209. a[href^="javascript:"]:after {
  210. content: "";
  211. }
  212. pre,
  213. blockquote {
  214. border: 1px solid #999;
  215. page-break-inside: avoid;
  216. }
  217. thead {
  218. display: table-header-group;
  219. }
  220. tr,
  221. img {
  222. page-break-inside: avoid;
  223. }
  224. img {
  225. max-width: 100% !important;
  226. }
  227. p,
  228. h2,
  229. h3 {
  230. orphans: 3;
  231. widows: 3;
  232. }
  233. h2,
  234. h3 {
  235. page-break-after: avoid;
  236. }
  237. .navbar {
  238. display: none;
  239. }
  240. .btn > .caret,
  241. .dropup > .btn > .caret {
  242. border-top-color: #000 !important;
  243. }
  244. .label {
  245. border: 1px solid #000;
  246. }
  247. .table {
  248. border-collapse: collapse !important;
  249. }
  250. .table td,
  251. .table th {
  252. background-color: #fff !important;
  253. }
  254. .table-bordered th,
  255. .table-bordered td {
  256. border: 1px solid #ddd !important;
  257. }
  258. }
  259. @font-face {
  260. font-family: 'Glyphicons Halflings';
  261. src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');
  262. 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');
  263. }
  264. .glyphicon {
  265. position: relative;
  266. top: 1px;
  267. display: inline-block;
  268. font-family: 'Glyphicons Halflings';
  269. font-style: normal;
  270. font-weight: normal;
  271. line-height: 1;
  272. -webkit-font-smoothing: antialiased;
  273. -moz-osx-font-smoothing: grayscale;
  274. }
  275. .glyphicon-asterisk:before {
  276. content: "\002a";
  277. }
  278. .glyphicon-plus:before {
  279. content: "\002b";
  280. }
  281. .glyphicon-euro:before,
  282. .glyphicon-eur:before {
  283. content: "\20ac";
  284. }
  285. .glyphicon-minus:before {
  286. content: "\2212";
  287. }
  288. .glyphicon-cloud:before {
  289. content: "\2601";
  290. }
  291. .glyphicon-envelope:before {
  292. content: "\2709";
  293. }
  294. .glyphicon-pencil:before {
  295. content: "\270f";
  296. }
  297. .glyphicon-glass:before {
  298. content: "\e001";
  299. }
  300. .glyphicon-music:before {
  301. content: "\e002";
  302. }
  303. .glyphicon-search:before {
  304. content: "\e003";
  305. }
  306. .glyphicon-heart:before {
  307. content: "\e005";
  308. }
  309. .glyphicon-star:before {
  310. content: "\e006";
  311. }
  312. .glyphicon-star-empty:before {
  313. content: "\e007";
  314. }
  315. .glyphicon-user:before {
  316. content: "\e008";
  317. }
  318. .glyphicon-film:before {
  319. content: "\e009";
  320. }
  321. .glyphicon-th-large:before {
  322. content: "\e010";
  323. }
  324. .glyphicon-th:before {
  325. content: "\e011";
  326. }
  327. .glyphicon-th-list:before {
  328. content: "\e012";
  329. }
  330. .glyphicon-ok:before {
  331. content: "\e013";
  332. }
  333. .glyphicon-remove:before {
  334. content: "\e014";
  335. }
  336. .glyphicon-zoom-in:before {
  337. content: "\e015";
  338. }
  339. .glyphicon-zoom-out:before {
  340. content: "\e016";
  341. }
  342. .glyphicon-off:before {
  343. content: "\e017";
  344. }
  345. .glyphicon-signal:before {
  346. content: "\e018";
  347. }
  348. .glyphicon-cog:before {
  349. content: "\e019";
  350. }
  351. .glyphicon-trash:before {
  352. content: "\e020";
  353. }
  354. .glyphicon-home:before {
  355. content: "\e021";
  356. }
  357. .glyphicon-file:before {
  358. content: "\e022";
  359. }
  360. .glyphicon-time:before {
  361. content: "\e023";
  362. }
  363. .glyphicon-road:before {
  364. content: "\e024";
  365. }
  366. .glyphicon-download-alt:before {
  367. content: "\e025";
  368. }
  369. .glyphicon-download:before {
  370. content: "\e026";
  371. }
  372. .glyphicon-upload:before {
  373. content: "\e027";
  374. }
  375. .glyphicon-inbox:before {
  376. content: "\e028";
  377. }
  378. .glyphicon-play-circle:before {
  379. content: "\e029";
  380. }
  381. .glyphicon-repeat:before {
  382. content: "\e030";
  383. }
  384. .glyphicon-refresh:before {
  385. content: "\e031";
  386. }
  387. .glyphicon-list-alt:before {
  388. content: "\e032";
  389. }
  390. .glyphicon-lock:before {
  391. content: "\e033";
  392. }
  393. .glyphicon-flag:before {
  394. content: "\e034";
  395. }
  396. .glyphicon-headphones:before {
  397. content: "\e035";
  398. }
  399. .glyphicon-volume-off:before {
  400. content: "\e036";
  401. }
  402. .glyphicon-volume-down:before {
  403. content: "\e037";
  404. }
  405. .glyphicon-volume-up:before {
  406. content: "\e038";
  407. }
  408. .glyphicon-qrcode:before {
  409. content: "\e039";
  410. }
  411. .glyphicon-barcode:before {
  412. content: "\e040";
  413. }
  414. .glyphicon-tag:before {
  415. content: "\e041";
  416. }
  417. .glyphicon-tags:before {
  418. content: "\e042";
  419. }
  420. .glyphicon-book:before {
  421. content: "\e043";
  422. }
  423. .glyphicon-bookmark:before {
  424. content: "\e044";
  425. }
  426. .glyphicon-print:before {
  427. content: "\e045";
  428. }
  429. .glyphicon-camera:before {
  430. content: "\e046";
  431. }
  432. .glyphicon-font:before {
  433. content: "\e047";
  434. }
  435. .glyphicon-bold:before {
  436. content: "\e048";
  437. }
  438. .glyphicon-italic:before {
  439. content: "\e049";
  440. }
  441. .glyphicon-text-height:before {
  442. content: "\e050";
  443. }
  444. .glyphicon-text-width:before {
  445. content: "\e051";
  446. }
  447. .glyphicon-align-left:before {
  448. content: "\e052";
  449. }
  450. .glyphicon-align-center:before {
  451. content: "\e053";
  452. }
  453. .glyphicon-align-right:before {
  454. content: "\e054";
  455. }
  456. .glyphicon-align-justify:before {
  457. content: "\e055";
  458. }
  459. .glyphicon-list:before {
  460. content: "\e056";
  461. }
  462. .glyphicon-indent-left:before {
  463. content: "\e057";
  464. }
  465. .glyphicon-indent-right:before {
  466. content: "\e058";
  467. }
  468. .glyphicon-facetime-video:before {
  469. content: "\e059";
  470. }
  471. .glyphicon-picture:before {
  472. content: "\e060";
  473. }
  474. .glyphicon-map-marker:before {
  475. content: "\e062";
  476. }
  477. .glyphicon-adjust:before {
  478. content: "\e063";
  479. }
  480. .glyphicon-tint:before {
  481. content: "\e064";
  482. }
  483. .glyphicon-edit:before {
  484. content: "\e065";
  485. }
  486. .glyphicon-share:before {
  487. content: "\e066";
  488. }
  489. .glyphicon-check:before {
  490. content: "\e067";
  491. }
  492. .glyphicon-move:before {
  493. content: "\e068";
  494. }
  495. .glyphicon-step-backward:before {
  496. content: "\e069";
  497. }
  498. .glyphicon-fast-backward:before {
  499. content: "\e070";
  500. }
  501. .glyphicon-backward:before {
  502. content: "\e071";
  503. }
  504. .glyphicon-play:before {
  505. content: "\e072";
  506. }
  507. .glyphicon-pause:before {
  508. content: "\e073";
  509. }
  510. .glyphicon-stop:before {
  511. content: "\e074";
  512. }
  513. .glyphicon-forward:before {
  514. content: "\e075";
  515. }
  516. .glyphicon-fast-forward:before {
  517. content: "\e076";
  518. }
  519. .glyphicon-step-forward:before {
  520. content: "\e077";
  521. }
  522. .glyphicon-eject:before {
  523. content: "\e078";
  524. }
  525. .glyphicon-chevron-left:before {
  526. content: "\e079";
  527. }
  528. .glyphicon-chevron-right:before {
  529. content: "\e080";
  530. }
  531. .glyphicon-plus-sign:before {
  532. content: "\e081";
  533. }
  534. .glyphicon-minus-sign:before {
  535. content: "\e082";
  536. }
  537. .glyphicon-remove-sign:before {
  538. content: "\e083";
  539. }
  540. .glyphicon-ok-sign:before {
  541. content: "\e084";
  542. }
  543. .glyphicon-question-sign:before {
  544. content: "\e085";
  545. }
  546. .glyphicon-info-sign:before {
  547. content: "\e086";
  548. }
  549. .glyphicon-screenshot:before {
  550. content: "\e087";
  551. }
  552. .glyphicon-remove-circle:before {
  553. content: "\e088";
  554. }
  555. .glyphicon-ok-circle:before {
  556. content: "\e089";
  557. }
  558. .glyphicon-ban-circle:before {
  559. content: "\e090";
  560. }
  561. .glyphicon-arrow-left:before {
  562. content: "\e091";
  563. }
  564. .glyphicon-arrow-right:before {
  565. content: "\e092";
  566. }
  567. .glyphicon-arrow-up:before {
  568. content: "\e093";
  569. }
  570. .glyphicon-arrow-down:before {
  571. content: "\e094";
  572. }
  573. .glyphicon-share-alt:before {
  574. content: "\e095";
  575. }
  576. .glyphicon-resize-full:before {
  577. content: "\e096";
  578. }
  579. .glyphicon-resize-small:before {
  580. content: "\e097";
  581. }
  582. .glyphicon-exclamation-sign:before {
  583. content: "\e101";
  584. }
  585. .glyphicon-gift:before {
  586. content: "\e102";
  587. }
  588. .glyphicon-leaf:before {
  589. content: "\e103";
  590. }
  591. .glyphicon-fire:before {
  592. content: "\e104";
  593. }
  594. .glyphicon-eye-open:before {
  595. content: "\e105";
  596. }
  597. .glyphicon-eye-close:before {
  598. content: "\e106";
  599. }
  600. .glyphicon-warning-sign:before {
  601. content: "\e107";
  602. }
  603. .glyphicon-plane:before {
  604. content: "\e108";
  605. }
  606. .glyphicon-calendar:before {
  607. content: "\e109";
  608. }
  609. .glyphicon-random:before {
  610. content: "\e110";
  611. }
  612. .glyphicon-comment:before {
  613. content: "\e111";
  614. }
  615. .glyphicon-magnet:before {
  616. content: "\e112";
  617. }
  618. .glyphicon-chevron-up:before {
  619. content: "\e113";
  620. }
  621. .glyphicon-chevron-down:before {
  622. content: "\e114";
  623. }
  624. .glyphicon-retweet:before {
  625. content: "\e115";
  626. }
  627. .glyphicon-shopping-cart:before {
  628. content: "\e116";
  629. }
  630. .glyphicon-folder-close:before {
  631. content: "\e117";
  632. }
  633. .glyphicon-folder-open:before {
  634. content: "\e118";
  635. }
  636. .glyphicon-resize-vertical:before {
  637. content: "\e119";
  638. }
  639. .glyphicon-resize-horizontal:before {
  640. content: "\e120";
  641. }
  642. .glyphicon-hdd:before {
  643. content: "\e121";
  644. }
  645. .glyphicon-bullhorn:before {
  646. content: "\e122";
  647. }
  648. .glyphicon-bell:before {
  649. content: "\e123";
  650. }
  651. .glyphicon-certificate:before {
  652. content: "\e124";
  653. }
  654. .glyphicon-thumbs-up:before {
  655. content: "\e125";
  656. }
  657. .glyphicon-thumbs-down:before {
  658. content: "\e126";
  659. }
  660. .glyphicon-hand-right:before {
  661. content: "\e127";
  662. }
  663. .glyphicon-hand-left:before {
  664. content: "\e128";
  665. }
  666. .glyphicon-hand-up:before {
  667. content: "\e129";
  668. }
  669. .glyphicon-hand-down:before {
  670. content: "\e130";
  671. }
  672. .glyphicon-circle-arrow-right:before {
  673. content: "\e131";
  674. }
  675. .glyphicon-circle-arrow-left:before {
  676. content: "\e132";
  677. }
  678. .glyphicon-circle-arrow-up:before {
  679. content: "\e133";
  680. }
  681. .glyphicon-circle-arrow-down:before {
  682. content: "\e134";
  683. }
  684. .glyphicon-globe:before {
  685. content: "\e135";
  686. }
  687. .glyphicon-wrench:before {
  688. content: "\e136";
  689. }
  690. .glyphicon-tasks:before {
  691. content: "\e137";
  692. }
  693. .glyphicon-filter:before {
  694. content: "\e138";
  695. }
  696. .glyphicon-briefcase:before {
  697. content: "\e139";
  698. }
  699. .glyphicon-fullscreen:before {
  700. content: "\e140";
  701. }
  702. .glyphicon-dashboard:before {
  703. content: "\e141";
  704. }
  705. .glyphicon-paperclip:before {
  706. content: "\e142";
  707. }
  708. .glyphicon-heart-empty:before {
  709. content: "\e143";
  710. }
  711. .glyphicon-link:before {
  712. content: "\e144";
  713. }
  714. .glyphicon-phone:before {
  715. content: "\e145";
  716. }
  717. .glyphicon-pushpin:before {
  718. content: "\e146";
  719. }
  720. .glyphicon-usd:before {
  721. content: "\e148";
  722. }
  723. .glyphicon-gbp:before {
  724. content: "\e149";
  725. }
  726. .glyphicon-sort:before {
  727. content: "\e150";
  728. }
  729. .glyphicon-sort-by-alphabet:before {
  730. content: "\e151";
  731. }
  732. .glyphicon-sort-by-alphabet-alt:before {
  733. content: "\e152";
  734. }
  735. .glyphicon-sort-by-order:before {
  736. content: "\e153";
  737. }
  738. .glyphicon-sort-by-order-alt:before {
  739. content: "\e154";
  740. }
  741. .glyphicon-sort-by-attributes:before {
  742. content: "\e155";
  743. }
  744. .glyphicon-sort-by-attributes-alt:before {
  745. content: "\e156";
  746. }
  747. .glyphicon-unchecked:before {
  748. content: "\e157";
  749. }
  750. .glyphicon-expand:before {
  751. content: "\e158";
  752. }
  753. .glyphicon-collapse-down:before {
  754. content: "\e159";
  755. }
  756. .glyphicon-collapse-up:before {
  757. content: "\e160";
  758. }
  759. .glyphicon-log-in:before {
  760. content: "\e161";
  761. }
  762. .glyphicon-flash:before {
  763. content: "\e162";
  764. }
  765. .glyphicon-log-out:before {
  766. content: "\e163";
  767. }
  768. .glyphicon-new-window:before {
  769. content: "\e164";
  770. }
  771. .glyphicon-record:before {
  772. content: "\e165";
  773. }
  774. .glyphicon-save:before {
  775. content: "\e166";
  776. }
  777. .glyphicon-open:before {
  778. content: "\e167";
  779. }
  780. .glyphicon-saved:before {
  781. content: "\e168";
  782. }
  783. .glyphicon-import:before {
  784. content: "\e169";
  785. }
  786. .glyphicon-export:before {
  787. content: "\e170";
  788. }
  789. .glyphicon-send:before {
  790. content: "\e171";
  791. }
  792. .glyphicon-floppy-disk:before {
  793. content: "\e172";
  794. }
  795. .glyphicon-floppy-saved:before {
  796. content: "\e173";
  797. }
  798. .glyphicon-floppy-remove:before {
  799. content: "\e174";
  800. }
  801. .glyphicon-floppy-save:before {
  802. content: "\e175";
  803. }
  804. .glyphicon-floppy-open:before {
  805. content: "\e176";
  806. }
  807. .glyphicon-credit-card:before {
  808. content: "\e177";
  809. }
  810. .glyphicon-transfer:before {
  811. content: "\e178";
  812. }
  813. .glyphicon-cutlery:before {
  814. content: "\e179";
  815. }
  816. .glyphicon-header:before {
  817. content: "\e180";
  818. }
  819. .glyphicon-compressed:before {
  820. content: "\e181";
  821. }
  822. .glyphicon-earphone:before {
  823. content: "\e182";
  824. }
  825. .glyphicon-phone-alt:before {
  826. content: "\e183";
  827. }
  828. .glyphicon-tower:before {
  829. content: "\e184";
  830. }
  831. .glyphicon-stats:before {
  832. content: "\e185";
  833. }
  834. .glyphicon-sd-video:before {
  835. content: "\e186";
  836. }
  837. .glyphicon-hd-video:before {
  838. content: "\e187";
  839. }
  840. .glyphicon-subtitles:before {
  841. content: "\e188";
  842. }
  843. .glyphicon-sound-stereo:before {
  844. content: "\e189";
  845. }
  846. .glyphicon-sound-dolby:before {
  847. content: "\e190";
  848. }
  849. .glyphicon-sound-5-1:before {
  850. content: "\e191";
  851. }
  852. .glyphicon-sound-6-1:before {
  853. content: "\e192";
  854. }
  855. .glyphicon-sound-7-1:before {
  856. content: "\e193";
  857. }
  858. .glyphicon-copyright-mark:before {
  859. content: "\e194";
  860. }
  861. .glyphicon-registration-mark:before {
  862. content: "\e195";
  863. }
  864. .glyphicon-cloud-download:before {
  865. content: "\e197";
  866. }
  867. .glyphicon-cloud-upload:before {
  868. content: "\e198";
  869. }
  870. .glyphicon-tree-conifer:before {
  871. content: "\e199";
  872. }
  873. .glyphicon-tree-deciduous:before {
  874. content: "\e200";
  875. }
  876. .glyphicon-cd:before {
  877. content: "\e201";
  878. }
  879. .glyphicon-save-file:before {
  880. content: "\e202";
  881. }
  882. .glyphicon-open-file:before {
  883. content: "\e203";
  884. }
  885. .glyphicon-level-up:before {
  886. content: "\e204";
  887. }
  888. .glyphicon-copy:before {
  889. content: "\e205";
  890. }
  891. .glyphicon-paste:before {
  892. content: "\e206";
  893. }
  894. .glyphicon-alert:before {
  895. content: "\e209";
  896. }
  897. .glyphicon-equalizer:before {
  898. content: "\e210";
  899. }
  900. .glyphicon-king:before {
  901. content: "\e211";
  902. }
  903. .glyphicon-queen:before {
  904. content: "\e212";
  905. }
  906. .glyphicon-pawn:before {
  907. content: "\e213";
  908. }
  909. .glyphicon-bishop:before {
  910. content: "\e214";
  911. }
  912. .glyphicon-knight:before {
  913. content: "\e215";
  914. }
  915. .glyphicon-baby-formula:before {
  916. content: "\e216";
  917. }
  918. .glyphicon-tent:before {
  919. content: "\26fa";
  920. }
  921. .glyphicon-blackboard:before {
  922. content: "\e218";
  923. }
  924. .glyphicon-bed:before {
  925. content: "\e219";
  926. }
  927. .glyphicon-apple:before {
  928. content: "\f8ff";
  929. }
  930. .glyphicon-erase:before {
  931. content: "\e221";
  932. }
  933. .glyphicon-hourglass:before {
  934. content: "\231b";
  935. }
  936. .glyphicon-lamp:before {
  937. content: "\e223";
  938. }
  939. .glyphicon-duplicate:before {
  940. content: "\e224";
  941. }
  942. .glyphicon-piggy-bank:before {
  943. content: "\e225";
  944. }
  945. .glyphicon-scissors:before {
  946. content: "\e226";
  947. }
  948. .glyphicon-bitcoin:before {
  949. content: "\e227";
  950. }
  951. .glyphicon-btc:before {
  952. content: "\e227";
  953. }
  954. .glyphicon-xbt:before {
  955. content: "\e227";
  956. }
  957. .glyphicon-yen:before {
  958. content: "\00a5";
  959. }
  960. .glyphicon-jpy:before {
  961. content: "\00a5";
  962. }
  963. .glyphicon-ruble:before {
  964. content: "\20bd";
  965. }
  966. .glyphicon-rub:before {
  967. content: "\20bd";
  968. }
  969. .glyphicon-scale:before {
  970. content: "\e230";
  971. }
  972. .glyphicon-ice-lolly:before {
  973. content: "\e231";
  974. }
  975. .glyphicon-ice-lolly-tasted:before {
  976. content: "\e232";
  977. }
  978. .glyphicon-education:before {
  979. content: "\e233";
  980. }
  981. .glyphicon-option-horizontal:before {
  982. content: "\e234";
  983. }
  984. .glyphicon-option-vertical:before {
  985. content: "\e235";
  986. }
  987. .glyphicon-menu-hamburger:before {
  988. content: "\e236";
  989. }
  990. .glyphicon-modal-window:before {
  991. content: "\e237";
  992. }
  993. .glyphicon-oil:before {
  994. content: "\e238";
  995. }
  996. .glyphicon-grain:before {
  997. content: "\e239";
  998. }
  999. .glyphicon-sunglasses:before {
  1000. content: "\e240";
  1001. }
  1002. .glyphicon-text-size:before {
  1003. content: "\e241";
  1004. }
  1005. .glyphicon-text-color:before {
  1006. content: "\e242";
  1007. }
  1008. .glyphicon-text-background:before {
  1009. content: "\e243";
  1010. }
  1011. .glyphicon-object-align-top:before {
  1012. content: "\e244";
  1013. }
  1014. .glyphicon-object-align-bottom:before {
  1015. content: "\e245";
  1016. }
  1017. .glyphicon-object-align-horizontal:before {
  1018. content: "\e246";
  1019. }
  1020. .glyphicon-object-align-left:before {
  1021. content: "\e247";
  1022. }
  1023. .glyphicon-object-align-vertical:before {
  1024. content: "\e248";
  1025. }
  1026. .glyphicon-object-align-right:before {
  1027. content: "\e249";
  1028. }
  1029. .glyphicon-triangle-right:before {
  1030. content: "\e250";
  1031. }
  1032. .glyphicon-triangle-left:before {
  1033. content: "\e251";
  1034. }
  1035. .glyphicon-triangle-bottom:before {
  1036. content: "\e252";
  1037. }
  1038. .glyphicon-triangle-top:before {
  1039. content: "\e253";
  1040. }
  1041. .glyphicon-console:before {
  1042. content: "\e254";
  1043. }
  1044. .glyphicon-superscript:before {
  1045. content: "\e255";
  1046. }
  1047. .glyphicon-subscript:before {
  1048. content: "\e256";
  1049. }
  1050. .glyphicon-menu-left:before {
  1051. content: "\e257";
  1052. }
  1053. .glyphicon-menu-right:before {
  1054. content: "\e258";
  1055. }
  1056. .glyphicon-menu-down:before {
  1057. content: "\e259";
  1058. }
  1059. .glyphicon-menu-up:before {
  1060. content: "\e260";
  1061. }
  1062. * {
  1063. -webkit-box-sizing: border-box;
  1064. -moz-box-sizing: border-box;
  1065. box-sizing: border-box;
  1066. }
  1067. *:before,
  1068. *:after {
  1069. -webkit-box-sizing: border-box;
  1070. -moz-box-sizing: border-box;
  1071. box-sizing: border-box;
  1072. }
  1073. html {
  1074. font-size: 10px;
  1075. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1076. }
  1077. body {
  1078. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1079. font-size: 13px;
  1080. line-height: 1.42857143;
  1081. color: #000;
  1082. background-color: #fff;
  1083. }
  1084. input,
  1085. button,
  1086. select,
  1087. textarea {
  1088. font-family: inherit;
  1089. font-size: inherit;
  1090. line-height: inherit;
  1091. }
  1092. a {
  1093. color: #337ab7;
  1094. text-decoration: none;
  1095. }
  1096. a:hover,
  1097. a:focus {
  1098. color: #23527c;
  1099. text-decoration: underline;
  1100. }
  1101. a:focus {
  1102. outline: 5px auto -webkit-focus-ring-color;
  1103. outline-offset: -2px;
  1104. }
  1105. figure {
  1106. margin: 0;
  1107. }
  1108. img {
  1109. vertical-align: middle;
  1110. }
  1111. .img-responsive,
  1112. .thumbnail > img,
  1113. .thumbnail a > img,
  1114. .carousel-inner > .item > img,
  1115. .carousel-inner > .item > a > img {
  1116. display: block;
  1117. max-width: 100%;
  1118. height: auto;
  1119. }
  1120. .img-rounded {
  1121. border-radius: 3px;
  1122. }
  1123. .img-thumbnail {
  1124. padding: 4px;
  1125. line-height: 1.42857143;
  1126. background-color: #fff;
  1127. border: 1px solid #ddd;
  1128. border-radius: 2px;
  1129. -webkit-transition: all 0.2s ease-in-out;
  1130. -o-transition: all 0.2s ease-in-out;
  1131. transition: all 0.2s ease-in-out;
  1132. display: inline-block;
  1133. max-width: 100%;
  1134. height: auto;
  1135. }
  1136. .img-circle {
  1137. border-radius: 50%;
  1138. }
  1139. hr {
  1140. margin-top: 18px;
  1141. margin-bottom: 18px;
  1142. border: 0;
  1143. border-top: 1px solid #eeeeee;
  1144. }
  1145. .sr-only {
  1146. position: absolute;
  1147. width: 1px;
  1148. height: 1px;
  1149. margin: -1px;
  1150. padding: 0;
  1151. overflow: hidden;
  1152. clip: rect(0, 0, 0, 0);
  1153. border: 0;
  1154. }
  1155. .sr-only-focusable:active,
  1156. .sr-only-focusable:focus {
  1157. position: static;
  1158. width: auto;
  1159. height: auto;
  1160. margin: 0;
  1161. overflow: visible;
  1162. clip: auto;
  1163. }
  1164. [role="button"] {
  1165. cursor: pointer;
  1166. }
  1167. h1,
  1168. h2,
  1169. h3,
  1170. h4,
  1171. h5,
  1172. h6,
  1173. .h1,
  1174. .h2,
  1175. .h3,
  1176. .h4,
  1177. .h5,
  1178. .h6 {
  1179. font-family: inherit;
  1180. font-weight: 500;
  1181. line-height: 1.1;
  1182. color: inherit;
  1183. }
  1184. h1 small,
  1185. h2 small,
  1186. h3 small,
  1187. h4 small,
  1188. h5 small,
  1189. h6 small,
  1190. .h1 small,
  1191. .h2 small,
  1192. .h3 small,
  1193. .h4 small,
  1194. .h5 small,
  1195. .h6 small,
  1196. h1 .small,
  1197. h2 .small,
  1198. h3 .small,
  1199. h4 .small,
  1200. h5 .small,
  1201. h6 .small,
  1202. .h1 .small,
  1203. .h2 .small,
  1204. .h3 .small,
  1205. .h4 .small,
  1206. .h5 .small,
  1207. .h6 .small {
  1208. font-weight: normal;
  1209. line-height: 1;
  1210. color: #777777;
  1211. }
  1212. h1,
  1213. .h1,
  1214. h2,
  1215. .h2,
  1216. h3,
  1217. .h3 {
  1218. margin-top: 18px;
  1219. margin-bottom: 9px;
  1220. }
  1221. h1 small,
  1222. .h1 small,
  1223. h2 small,
  1224. .h2 small,
  1225. h3 small,
  1226. .h3 small,
  1227. h1 .small,
  1228. .h1 .small,
  1229. h2 .small,
  1230. .h2 .small,
  1231. h3 .small,
  1232. .h3 .small {
  1233. font-size: 65%;
  1234. }
  1235. h4,
  1236. .h4,
  1237. h5,
  1238. .h5,
  1239. h6,
  1240. .h6 {
  1241. margin-top: 9px;
  1242. margin-bottom: 9px;
  1243. }
  1244. h4 small,
  1245. .h4 small,
  1246. h5 small,
  1247. .h5 small,
  1248. h6 small,
  1249. .h6 small,
  1250. h4 .small,
  1251. .h4 .small,
  1252. h5 .small,
  1253. .h5 .small,
  1254. h6 .small,
  1255. .h6 .small {
  1256. font-size: 75%;
  1257. }
  1258. h1,
  1259. .h1 {
  1260. font-size: 33px;
  1261. }
  1262. h2,
  1263. .h2 {
  1264. font-size: 27px;
  1265. }
  1266. h3,
  1267. .h3 {
  1268. font-size: 23px;
  1269. }
  1270. h4,
  1271. .h4 {
  1272. font-size: 17px;
  1273. }
  1274. h5,
  1275. .h5 {
  1276. font-size: 13px;
  1277. }
  1278. h6,
  1279. .h6 {
  1280. font-size: 12px;
  1281. }
  1282. p {
  1283. margin: 0 0 9px;
  1284. }
  1285. .lead {
  1286. margin-bottom: 18px;
  1287. font-size: 14px;
  1288. font-weight: 300;
  1289. line-height: 1.4;
  1290. }
  1291. @media (min-width: 768px) {
  1292. .lead {
  1293. font-size: 19.5px;
  1294. }
  1295. }
  1296. small,
  1297. .small {
  1298. font-size: 92%;
  1299. }
  1300. mark,
  1301. .mark {
  1302. background-color: #fcf8e3;
  1303. padding: .2em;
  1304. }
  1305. .text-left {
  1306. text-align: left;
  1307. }
  1308. .text-right {
  1309. text-align: right;
  1310. }
  1311. .text-center {
  1312. text-align: center;
  1313. }
  1314. .text-justify {
  1315. text-align: justify;
  1316. }
  1317. .text-nowrap {
  1318. white-space: nowrap;
  1319. }
  1320. .text-lowercase {
  1321. text-transform: lowercase;
  1322. }
  1323. .text-uppercase {
  1324. text-transform: uppercase;
  1325. }
  1326. .text-capitalize {
  1327. text-transform: capitalize;
  1328. }
  1329. .text-muted {
  1330. color: #777777;
  1331. }
  1332. .text-primary {
  1333. color: #337ab7;
  1334. }
  1335. a.text-primary:hover,
  1336. a.text-primary:focus {
  1337. color: #286090;
  1338. }
  1339. .text-success {
  1340. color: #3c763d;
  1341. }
  1342. a.text-success:hover,
  1343. a.text-success:focus {
  1344. color: #2b542c;
  1345. }
  1346. .text-info {
  1347. color: #31708f;
  1348. }
  1349. a.text-info:hover,
  1350. a.text-info:focus {
  1351. color: #245269;
  1352. }
  1353. .text-warning {
  1354. color: #8a6d3b;
  1355. }
  1356. a.text-warning:hover,
  1357. a.text-warning:focus {
  1358. color: #66512c;
  1359. }
  1360. .text-danger {
  1361. color: #a94442;
  1362. }
  1363. a.text-danger:hover,
  1364. a.text-danger:focus {
  1365. color: #843534;
  1366. }
  1367. .bg-primary {
  1368. color: #fff;
  1369. background-color: #337ab7;
  1370. }
  1371. a.bg-primary:hover,
  1372. a.bg-primary:focus {
  1373. background-color: #286090;
  1374. }
  1375. .bg-success {
  1376. background-color: #dff0d8;
  1377. }
  1378. a.bg-success:hover,
  1379. a.bg-success:focus {
  1380. background-color: #c1e2b3;
  1381. }
  1382. .bg-info {
  1383. background-color: #d9edf7;
  1384. }
  1385. a.bg-info:hover,
  1386. a.bg-info:focus {
  1387. background-color: #afd9ee;
  1388. }
  1389. .bg-warning {
  1390. background-color: #fcf8e3;
  1391. }
  1392. a.bg-warning:hover,
  1393. a.bg-warning:focus {
  1394. background-color: #f7ecb5;
  1395. }
  1396. .bg-danger {
  1397. background-color: #f2dede;
  1398. }
  1399. a.bg-danger:hover,
  1400. a.bg-danger:focus {
  1401. background-color: #e4b9b9;
  1402. }
  1403. .page-header {
  1404. padding-bottom: 8px;
  1405. margin: 36px 0 18px;
  1406. border-bottom: 1px solid #eeeeee;
  1407. }
  1408. ul,
  1409. ol {
  1410. margin-top: 0;
  1411. margin-bottom: 9px;
  1412. }
  1413. ul ul,
  1414. ol ul,
  1415. ul ol,
  1416. ol ol {
  1417. margin-bottom: 0;
  1418. }
  1419. .list-unstyled {
  1420. padding-left: 0;
  1421. list-style: none;
  1422. }
  1423. .list-inline {
  1424. padding-left: 0;
  1425. list-style: none;
  1426. margin-left: -5px;
  1427. }
  1428. .list-inline > li {
  1429. display: inline-block;
  1430. padding-left: 5px;
  1431. padding-right: 5px;
  1432. }
  1433. dl {
  1434. margin-top: 0;
  1435. margin-bottom: 18px;
  1436. }
  1437. dt,
  1438. dd {
  1439. line-height: 1.42857143;
  1440. }
  1441. dt {
  1442. font-weight: bold;
  1443. }
  1444. dd {
  1445. margin-left: 0;
  1446. }
  1447. @media (min-width: 541px) {
  1448. .dl-horizontal dt {
  1449. float: left;
  1450. width: 160px;
  1451. clear: left;
  1452. text-align: right;
  1453. overflow: hidden;
  1454. text-overflow: ellipsis;
  1455. white-space: nowrap;
  1456. }
  1457. .dl-horizontal dd {
  1458. margin-left: 180px;
  1459. }
  1460. }
  1461. abbr[title],
  1462. abbr[data-original-title] {
  1463. cursor: help;
  1464. border-bottom: 1px dotted #777777;
  1465. }
  1466. .initialism {
  1467. font-size: 90%;
  1468. text-transform: uppercase;
  1469. }
  1470. blockquote {
  1471. padding: 9px 18px;
  1472. margin: 0 0 18px;
  1473. font-size: inherit;
  1474. border-left: 5px solid #eeeeee;
  1475. }
  1476. blockquote p:last-child,
  1477. blockquote ul:last-child,
  1478. blockquote ol:last-child {
  1479. margin-bottom: 0;
  1480. }
  1481. blockquote footer,
  1482. blockquote small,
  1483. blockquote .small {
  1484. display: block;
  1485. font-size: 80%;
  1486. line-height: 1.42857143;
  1487. color: #777777;
  1488. }
  1489. blockquote footer:before,
  1490. blockquote small:before,
  1491. blockquote .small:before {
  1492. content: '\2014 \00A0';
  1493. }
  1494. .blockquote-reverse,
  1495. blockquote.pull-right {
  1496. padding-right: 15px;
  1497. padding-left: 0;
  1498. border-right: 5px solid #eeeeee;
  1499. border-left: 0;
  1500. text-align: right;
  1501. }
  1502. .blockquote-reverse footer:before,
  1503. blockquote.pull-right footer:before,
  1504. .blockquote-reverse small:before,
  1505. blockquote.pull-right small:before,
  1506. .blockquote-reverse .small:before,
  1507. blockquote.pull-right .small:before {
  1508. content: '';
  1509. }
  1510. .blockquote-reverse footer:after,
  1511. blockquote.pull-right footer:after,
  1512. .blockquote-reverse small:after,
  1513. blockquote.pull-right small:after,
  1514. .blockquote-reverse .small:after,
  1515. blockquote.pull-right .small:after {
  1516. content: '\00A0 \2014';
  1517. }
  1518. address {
  1519. margin-bottom: 18px;
  1520. font-style: normal;
  1521. line-height: 1.42857143;
  1522. }
  1523. code,
  1524. kbd,
  1525. pre,
  1526. samp {
  1527. font-family: monospace;
  1528. }
  1529. code {
  1530. padding: 2px 4px;
  1531. font-size: 90%;
  1532. color: #c7254e;
  1533. background-color: #f9f2f4;
  1534. border-radius: 2px;
  1535. }
  1536. kbd {
  1537. padding: 2px 4px;
  1538. font-size: 90%;
  1539. color: #888;
  1540. background-color: transparent;
  1541. border-radius: 1px;
  1542. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1543. }
  1544. kbd kbd {
  1545. padding: 0;
  1546. font-size: 100%;
  1547. font-weight: bold;
  1548. box-shadow: none;
  1549. }
  1550. pre {
  1551. display: block;
  1552. padding: 8.5px;
  1553. margin: 0 0 9px;
  1554. font-size: 12px;
  1555. line-height: 1.42857143;
  1556. word-break: break-all;
  1557. word-wrap: break-word;
  1558. color: #333333;
  1559. background-color: #f5f5f5;
  1560. border: 1px solid #ccc;
  1561. border-radius: 2px;
  1562. }
  1563. pre code {
  1564. padding: 0;
  1565. font-size: inherit;
  1566. color: inherit;
  1567. white-space: pre-wrap;
  1568. background-color: transparent;
  1569. border-radius: 0;
  1570. }
  1571. .pre-scrollable {
  1572. max-height: 340px;
  1573. overflow-y: scroll;
  1574. }
  1575. .container {
  1576. margin-right: auto;
  1577. margin-left: auto;
  1578. padding-left: 0px;
  1579. padding-right: 0px;
  1580. }
  1581. @media (min-width: 768px) {
  1582. .container {
  1583. width: 768px;
  1584. }
  1585. }
  1586. @media (min-width: 992px) {
  1587. .container {
  1588. width: 940px;
  1589. }
  1590. }
  1591. @media (min-width: 1200px) {
  1592. .container {
  1593. width: 1140px;
  1594. }
  1595. }
  1596. .container-fluid {
  1597. margin-right: auto;
  1598. margin-left: auto;
  1599. padding-left: 0px;
  1600. padding-right: 0px;
  1601. }
  1602. .row {
  1603. margin-left: 0px;
  1604. margin-right: 0px;
  1605. }
  1606. .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 {
  1607. position: relative;
  1608. min-height: 1px;
  1609. padding-left: 0px;
  1610. padding-right: 0px;
  1611. }
  1612. .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 {
  1613. float: left;
  1614. }
  1615. .col-xs-12 {
  1616. width: 100%;
  1617. }
  1618. .col-xs-11 {
  1619. width: 91.66666667%;
  1620. }
  1621. .col-xs-10 {
  1622. width: 83.33333333%;
  1623. }
  1624. .col-xs-9 {
  1625. width: 75%;
  1626. }
  1627. .col-xs-8 {
  1628. width: 66.66666667%;
  1629. }
  1630. .col-xs-7 {
  1631. width: 58.33333333%;
  1632. }
  1633. .col-xs-6 {
  1634. width: 50%;
  1635. }
  1636. .col-xs-5 {
  1637. width: 41.66666667%;
  1638. }
  1639. .col-xs-4 {
  1640. width: 33.33333333%;
  1641. }
  1642. .col-xs-3 {
  1643. width: 25%;
  1644. }
  1645. .col-xs-2 {
  1646. width: 16.66666667%;
  1647. }
  1648. .col-xs-1 {
  1649. width: 8.33333333%;
  1650. }
  1651. .col-xs-pull-12 {
  1652. right: 100%;
  1653. }
  1654. .col-xs-pull-11 {
  1655. right: 91.66666667%;
  1656. }
  1657. .col-xs-pull-10 {
  1658. right: 83.33333333%;
  1659. }
  1660. .col-xs-pull-9 {
  1661. right: 75%;
  1662. }
  1663. .col-xs-pull-8 {
  1664. right: 66.66666667%;
  1665. }
  1666. .col-xs-pull-7 {
  1667. right: 58.33333333%;
  1668. }
  1669. .col-xs-pull-6 {
  1670. right: 50%;
  1671. }
  1672. .col-xs-pull-5 {
  1673. right: 41.66666667%;
  1674. }
  1675. .col-xs-pull-4 {
  1676. right: 33.33333333%;
  1677. }
  1678. .col-xs-pull-3 {
  1679. right: 25%;
  1680. }
  1681. .col-xs-pull-2 {
  1682. right: 16.66666667%;
  1683. }
  1684. .col-xs-pull-1 {
  1685. right: 8.33333333%;
  1686. }
  1687. .col-xs-pull-0 {
  1688. right: auto;
  1689. }
  1690. .col-xs-push-12 {
  1691. left: 100%;
  1692. }
  1693. .col-xs-push-11 {
  1694. left: 91.66666667%;
  1695. }
  1696. .col-xs-push-10 {
  1697. left: 83.33333333%;
  1698. }
  1699. .col-xs-push-9 {
  1700. left: 75%;
  1701. }
  1702. .col-xs-push-8 {
  1703. left: 66.66666667%;
  1704. }
  1705. .col-xs-push-7 {
  1706. left: 58.33333333%;
  1707. }
  1708. .col-xs-push-6 {
  1709. left: 50%;
  1710. }
  1711. .col-xs-push-5 {
  1712. left: 41.66666667%;
  1713. }
  1714. .col-xs-push-4 {
  1715. left: 33.33333333%;
  1716. }
  1717. .col-xs-push-3 {
  1718. left: 25%;
  1719. }
  1720. .col-xs-push-2 {
  1721. left: 16.66666667%;
  1722. }
  1723. .col-xs-push-1 {
  1724. left: 8.33333333%;
  1725. }
  1726. .col-xs-push-0 {
  1727. left: auto;
  1728. }
  1729. .col-xs-offset-12 {
  1730. margin-left: 100%;
  1731. }
  1732. .col-xs-offset-11 {
  1733. margin-left: 91.66666667%;
  1734. }
  1735. .col-xs-offset-10 {
  1736. margin-left: 83.33333333%;
  1737. }
  1738. .col-xs-offset-9 {
  1739. margin-left: 75%;
  1740. }
  1741. .col-xs-offset-8 {
  1742. margin-left: 66.66666667%;
  1743. }
  1744. .col-xs-offset-7 {
  1745. margin-left: 58.33333333%;
  1746. }
  1747. .col-xs-offset-6 {
  1748. margin-left: 50%;
  1749. }
  1750. .col-xs-offset-5 {
  1751. margin-left: 41.66666667%;
  1752. }
  1753. .col-xs-offset-4 {
  1754. margin-left: 33.33333333%;
  1755. }
  1756. .col-xs-offset-3 {
  1757. margin-left: 25%;
  1758. }
  1759. .col-xs-offset-2 {
  1760. margin-left: 16.66666667%;
  1761. }
  1762. .col-xs-offset-1 {
  1763. margin-left: 8.33333333%;
  1764. }
  1765. .col-xs-offset-0 {
  1766. margin-left: 0%;
  1767. }
  1768. @media (min-width: 768px) {
  1769. .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 {
  1770. float: left;
  1771. }
  1772. .col-sm-12 {
  1773. width: 100%;
  1774. }
  1775. .col-sm-11 {
  1776. width: 91.66666667%;
  1777. }
  1778. .col-sm-10 {
  1779. width: 83.33333333%;
  1780. }
  1781. .col-sm-9 {
  1782. width: 75%;
  1783. }
  1784. .col-sm-8 {
  1785. width: 66.66666667%;
  1786. }
  1787. .col-sm-7 {
  1788. width: 58.33333333%;
  1789. }
  1790. .col-sm-6 {
  1791. width: 50%;
  1792. }
  1793. .col-sm-5 {
  1794. width: 41.66666667%;
  1795. }
  1796. .col-sm-4 {
  1797. width: 33.33333333%;
  1798. }
  1799. .col-sm-3 {
  1800. width: 25%;
  1801. }
  1802. .col-sm-2 {
  1803. width: 16.66666667%;
  1804. }
  1805. .col-sm-1 {
  1806. width: 8.33333333%;
  1807. }
  1808. .col-sm-pull-12 {
  1809. right: 100%;
  1810. }
  1811. .col-sm-pull-11 {
  1812. right: 91.66666667%;
  1813. }
  1814. .col-sm-pull-10 {
  1815. right: 83.33333333%;
  1816. }
  1817. .col-sm-pull-9 {
  1818. right: 75%;
  1819. }
  1820. .col-sm-pull-8 {
  1821. right: 66.66666667%;
  1822. }
  1823. .col-sm-pull-7 {
  1824. right: 58.33333333%;
  1825. }
  1826. .col-sm-pull-6 {
  1827. right: 50%;
  1828. }
  1829. .col-sm-pull-5 {
  1830. right: 41.66666667%;
  1831. }
  1832. .col-sm-pull-4 {
  1833. right: 33.33333333%;
  1834. }
  1835. .col-sm-pull-3 {
  1836. right: 25%;
  1837. }
  1838. .col-sm-pull-2 {
  1839. right: 16.66666667%;
  1840. }
  1841. .col-sm-pull-1 {
  1842. right: 8.33333333%;
  1843. }
  1844. .col-sm-pull-0 {
  1845. right: auto;
  1846. }
  1847. .col-sm-push-12 {
  1848. left: 100%;
  1849. }
  1850. .col-sm-push-11 {
  1851. left: 91.66666667%;
  1852. }
  1853. .col-sm-push-10 {
  1854. left: 83.33333333%;
  1855. }
  1856. .col-sm-push-9 {
  1857. left: 75%;
  1858. }
  1859. .col-sm-push-8 {
  1860. left: 66.66666667%;
  1861. }
  1862. .col-sm-push-7 {
  1863. left: 58.33333333%;
  1864. }
  1865. .col-sm-push-6 {
  1866. left: 50%;
  1867. }
  1868. .col-sm-push-5 {
  1869. left: 41.66666667%;
  1870. }
  1871. .col-sm-push-4 {
  1872. left: 33.33333333%;
  1873. }
  1874. .col-sm-push-3 {
  1875. left: 25%;
  1876. }
  1877. .col-sm-push-2 {
  1878. left: 16.66666667%;
  1879. }
  1880. .col-sm-push-1 {
  1881. left: 8.33333333%;
  1882. }
  1883. .col-sm-push-0 {
  1884. left: auto;
  1885. }
  1886. .col-sm-offset-12 {
  1887. margin-left: 100%;
  1888. }
  1889. .col-sm-offset-11 {
  1890. margin-left: 91.66666667%;
  1891. }
  1892. .col-sm-offset-10 {
  1893. margin-left: 83.33333333%;
  1894. }
  1895. .col-sm-offset-9 {
  1896. margin-left: 75%;
  1897. }
  1898. .col-sm-offset-8 {
  1899. margin-left: 66.66666667%;
  1900. }
  1901. .col-sm-offset-7 {
  1902. margin-left: 58.33333333%;
  1903. }
  1904. .col-sm-offset-6 {
  1905. margin-left: 50%;
  1906. }
  1907. .col-sm-offset-5 {
  1908. margin-left: 41.66666667%;
  1909. }
  1910. .col-sm-offset-4 {
  1911. margin-left: 33.33333333%;
  1912. }
  1913. .col-sm-offset-3 {
  1914. margin-left: 25%;
  1915. }
  1916. .col-sm-offset-2 {
  1917. margin-left: 16.66666667%;
  1918. }
  1919. .col-sm-offset-1 {
  1920. margin-left: 8.33333333%;
  1921. }
  1922. .col-sm-offset-0 {
  1923. margin-left: 0%;
  1924. }
  1925. }
  1926. @media (min-width: 992px) {
  1927. .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 {
  1928. float: left;
  1929. }
  1930. .col-md-12 {
  1931. width: 100%;
  1932. }
  1933. .col-md-11 {
  1934. width: 91.66666667%;
  1935. }
  1936. .col-md-10 {
  1937. width: 83.33333333%;
  1938. }
  1939. .col-md-9 {
  1940. width: 75%;
  1941. }
  1942. .col-md-8 {
  1943. width: 66.66666667%;
  1944. }
  1945. .col-md-7 {
  1946. width: 58.33333333%;
  1947. }
  1948. .col-md-6 {
  1949. width: 50%;
  1950. }
  1951. .col-md-5 {
  1952. width: 41.66666667%;
  1953. }
  1954. .col-md-4 {
  1955. width: 33.33333333%;
  1956. }
  1957. .col-md-3 {
  1958. width: 25%;
  1959. }
  1960. .col-md-2 {
  1961. width: 16.66666667%;
  1962. }
  1963. .col-md-1 {
  1964. width: 8.33333333%;
  1965. }
  1966. .col-md-pull-12 {
  1967. right: 100%;
  1968. }
  1969. .col-md-pull-11 {
  1970. right: 91.66666667%;
  1971. }
  1972. .col-md-pull-10 {
  1973. right: 83.33333333%;
  1974. }
  1975. .col-md-pull-9 {
  1976. right: 75%;
  1977. }
  1978. .col-md-pull-8 {
  1979. right: 66.66666667%;
  1980. }
  1981. .col-md-pull-7 {
  1982. right: 58.33333333%;
  1983. }
  1984. .col-md-pull-6 {
  1985. right: 50%;
  1986. }
  1987. .col-md-pull-5 {
  1988. right: 41.66666667%;
  1989. }
  1990. .col-md-pull-4 {
  1991. right: 33.33333333%;
  1992. }
  1993. .col-md-pull-3 {
  1994. right: 25%;
  1995. }
  1996. .col-md-pull-2 {
  1997. right: 16.66666667%;
  1998. }
  1999. .col-md-pull-1 {
  2000. right: 8.33333333%;
  2001. }
  2002. .col-md-pull-0 {
  2003. right: auto;
  2004. }
  2005. .col-md-push-12 {
  2006. left: 100%;
  2007. }
  2008. .col-md-push-11 {
  2009. left: 91.66666667%;
  2010. }
  2011. .col-md-push-10 {
  2012. left: 83.33333333%;
  2013. }
  2014. .col-md-push-9 {
  2015. left: 75%;
  2016. }
  2017. .col-md-push-8 {
  2018. left: 66.66666667%;
  2019. }
  2020. .col-md-push-7 {
  2021. left: 58.33333333%;
  2022. }
  2023. .col-md-push-6 {
  2024. left: 50%;
  2025. }
  2026. .col-md-push-5 {
  2027. left: 41.66666667%;
  2028. }
  2029. .col-md-push-4 {
  2030. left: 33.33333333%;
  2031. }
  2032. .col-md-push-3 {
  2033. left: 25%;
  2034. }
  2035. .col-md-push-2 {
  2036. left: 16.66666667%;
  2037. }
  2038. .col-md-push-1 {
  2039. left: 8.33333333%;
  2040. }
  2041. .col-md-push-0 {
  2042. left: auto;
  2043. }
  2044. .col-md-offset-12 {
  2045. margin-left: 100%;
  2046. }
  2047. .col-md-offset-11 {
  2048. margin-left: 91.66666667%;
  2049. }
  2050. .col-md-offset-10 {
  2051. margin-left: 83.33333333%;
  2052. }
  2053. .col-md-offset-9 {
  2054. margin-left: 75%;
  2055. }
  2056. .col-md-offset-8 {
  2057. margin-left: 66.66666667%;
  2058. }
  2059. .col-md-offset-7 {
  2060. margin-left: 58.33333333%;
  2061. }
  2062. .col-md-offset-6 {
  2063. margin-left: 50%;
  2064. }
  2065. .col-md-offset-5 {
  2066. margin-left: 41.66666667%;
  2067. }
  2068. .col-md-offset-4 {
  2069. margin-left: 33.33333333%;
  2070. }
  2071. .col-md-offset-3 {
  2072. margin-left: 25%;
  2073. }
  2074. .col-md-offset-2 {
  2075. margin-left: 16.66666667%;
  2076. }
  2077. .col-md-offset-1 {
  2078. margin-left: 8.33333333%;
  2079. }
  2080. .col-md-offset-0 {
  2081. margin-left: 0%;
  2082. }
  2083. }
  2084. @media (min-width: 1200px) {
  2085. .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 {
  2086. float: left;
  2087. }
  2088. .col-lg-12 {
  2089. width: 100%;
  2090. }
  2091. .col-lg-11 {
  2092. width: 91.66666667%;
  2093. }
  2094. .col-lg-10 {
  2095. width: 83.33333333%;
  2096. }
  2097. .col-lg-9 {
  2098. width: 75%;
  2099. }
  2100. .col-lg-8 {
  2101. width: 66.66666667%;
  2102. }
  2103. .col-lg-7 {
  2104. width: 58.33333333%;
  2105. }
  2106. .col-lg-6 {
  2107. width: 50%;
  2108. }
  2109. .col-lg-5 {
  2110. width: 41.66666667%;
  2111. }
  2112. .col-lg-4 {
  2113. width: 33.33333333%;
  2114. }
  2115. .col-lg-3 {
  2116. width: 25%;
  2117. }
  2118. .col-lg-2 {
  2119. width: 16.66666667%;
  2120. }
  2121. .col-lg-1 {
  2122. width: 8.33333333%;
  2123. }
  2124. .col-lg-pull-12 {
  2125. right: 100%;
  2126. }
  2127. .col-lg-pull-11 {
  2128. right: 91.66666667%;
  2129. }
  2130. .col-lg-pull-10 {
  2131. right: 83.33333333%;
  2132. }
  2133. .col-lg-pull-9 {
  2134. right: 75%;
  2135. }
  2136. .col-lg-pull-8 {
  2137. right: 66.66666667%;
  2138. }
  2139. .col-lg-pull-7 {
  2140. right: 58.33333333%;
  2141. }
  2142. .col-lg-pull-6 {
  2143. right: 50%;
  2144. }
  2145. .col-lg-pull-5 {
  2146. right: 41.66666667%;
  2147. }
  2148. .col-lg-pull-4 {
  2149. right: 33.33333333%;
  2150. }
  2151. .col-lg-pull-3 {
  2152. right: 25%;
  2153. }
  2154. .col-lg-pull-2 {
  2155. right: 16.66666667%;
  2156. }
  2157. .col-lg-pull-1 {
  2158. right: 8.33333333%;
  2159. }
  2160. .col-lg-pull-0 {
  2161. right: auto;
  2162. }
  2163. .col-lg-push-12 {
  2164. left: 100%;
  2165. }
  2166. .col-lg-push-11 {
  2167. left: 91.66666667%;
  2168. }
  2169. .col-lg-push-10 {
  2170. left: 83.33333333%;
  2171. }
  2172. .col-lg-push-9 {
  2173. left: 75%;
  2174. }
  2175. .col-lg-push-8 {
  2176. left: 66.66666667%;
  2177. }
  2178. .col-lg-push-7 {
  2179. left: 58.33333333%;
  2180. }
  2181. .col-lg-push-6 {
  2182. left: 50%;
  2183. }
  2184. .col-lg-push-5 {
  2185. left: 41.66666667%;
  2186. }
  2187. .col-lg-push-4 {
  2188. left: 33.33333333%;
  2189. }
  2190. .col-lg-push-3 {
  2191. left: 25%;
  2192. }
  2193. .col-lg-push-2 {
  2194. left: 16.66666667%;
  2195. }
  2196. .col-lg-push-1 {
  2197. left: 8.33333333%;
  2198. }
  2199. .col-lg-push-0 {
  2200. left: auto;
  2201. }
  2202. .col-lg-offset-12 {
  2203. margin-left: 100%;
  2204. }
  2205. .col-lg-offset-11 {
  2206. margin-left: 91.66666667%;
  2207. }
  2208. .col-lg-offset-10 {
  2209. margin-left: 83.33333333%;
  2210. }
  2211. .col-lg-offset-9 {
  2212. margin-left: 75%;
  2213. }
  2214. .col-lg-offset-8 {
  2215. margin-left: 66.66666667%;
  2216. }
  2217. .col-lg-offset-7 {
  2218. margin-left: 58.33333333%;
  2219. }
  2220. .col-lg-offset-6 {
  2221. margin-left: 50%;
  2222. }
  2223. .col-lg-offset-5 {
  2224. margin-left: 41.66666667%;
  2225. }
  2226. .col-lg-offset-4 {
  2227. margin-left: 33.33333333%;
  2228. }
  2229. .col-lg-offset-3 {
  2230. margin-left: 25%;
  2231. }
  2232. .col-lg-offset-2 {
  2233. margin-left: 16.66666667%;
  2234. }
  2235. .col-lg-offset-1 {
  2236. margin-left: 8.33333333%;
  2237. }
  2238. .col-lg-offset-0 {
  2239. margin-left: 0%;
  2240. }
  2241. }
  2242. table {
  2243. background-color: transparent;
  2244. }
  2245. caption {
  2246. padding-top: 8px;
  2247. padding-bottom: 8px;
  2248. color: #777777;
  2249. text-align: left;
  2250. }
  2251. th {
  2252. text-align: left;
  2253. }
  2254. .table {
  2255. width: 100%;
  2256. max-width: 100%;
  2257. margin-bottom: 18px;
  2258. }
  2259. .table > thead > tr > th,
  2260. .table > tbody > tr > th,
  2261. .table > tfoot > tr > th,
  2262. .table > thead > tr > td,
  2263. .table > tbody > tr > td,
  2264. .table > tfoot > tr > td {
  2265. padding: 8px;
  2266. line-height: 1.42857143;
  2267. vertical-align: top;
  2268. border-top: 1px solid #ddd;
  2269. }
  2270. .table > thead > tr > th {
  2271. vertical-align: bottom;
  2272. border-bottom: 2px solid #ddd;
  2273. }
  2274. .table > caption + thead > tr:first-child > th,
  2275. .table > colgroup + thead > tr:first-child > th,
  2276. .table > thead:first-child > tr:first-child > th,
  2277. .table > caption + thead > tr:first-child > td,
  2278. .table > colgroup + thead > tr:first-child > td,
  2279. .table > thead:first-child > tr:first-child > td {
  2280. border-top: 0;
  2281. }
  2282. .table > tbody + tbody {
  2283. border-top: 2px solid #ddd;
  2284. }
  2285. .table .table {
  2286. background-color: #fff;
  2287. }
  2288. .table-condensed > thead > tr > th,
  2289. .table-condensed > tbody > tr > th,
  2290. .table-condensed > tfoot > tr > th,
  2291. .table-condensed > thead > tr > td,
  2292. .table-condensed > tbody > tr > td,
  2293. .table-condensed > tfoot > tr > td {
  2294. padding: 5px;
  2295. }
  2296. .table-bordered {
  2297. border: 1px solid #ddd;
  2298. }
  2299. .table-bordered > thead > tr > th,
  2300. .table-bordered > tbody > tr > th,
  2301. .table-bordered > tfoot > tr > th,
  2302. .table-bordered > thead > tr > td,
  2303. .table-bordered > tbody > tr > td,
  2304. .table-bordered > tfoot > tr > td {
  2305. border: 1px solid #ddd;
  2306. }
  2307. .table-bordered > thead > tr > th,
  2308. .table-bordered > thead > tr > td {
  2309. border-bottom-width: 2px;
  2310. }
  2311. .table-striped > tbody > tr:nth-of-type(odd) {
  2312. background-color: #f9f9f9;
  2313. }
  2314. .table-hover > tbody > tr:hover {
  2315. background-color: #f5f5f5;
  2316. }
  2317. table col[class*="col-"] {
  2318. position: static;
  2319. float: none;
  2320. display: table-column;
  2321. }
  2322. table td[class*="col-"],
  2323. table th[class*="col-"] {
  2324. position: static;
  2325. float: none;
  2326. display: table-cell;
  2327. }
  2328. .table > thead > tr > td.active,
  2329. .table > tbody > tr > td.active,
  2330. .table > tfoot > tr > td.active,
  2331. .table > thead > tr > th.active,
  2332. .table > tbody > tr > th.active,
  2333. .table > tfoot > tr > th.active,
  2334. .table > thead > tr.active > td,
  2335. .table > tbody > tr.active > td,
  2336. .table > tfoot > tr.active > td,
  2337. .table > thead > tr.active > th,
  2338. .table > tbody > tr.active > th,
  2339. .table > tfoot > tr.active > th {
  2340. background-color: #f5f5f5;
  2341. }
  2342. .table-hover > tbody > tr > td.active:hover,
  2343. .table-hover > tbody > tr > th.active:hover,
  2344. .table-hover > tbody > tr.active:hover > td,
  2345. .table-hover > tbody > tr:hover > .active,
  2346. .table-hover > tbody > tr.active:hover > th {
  2347. background-color: #e8e8e8;
  2348. }
  2349. .table > thead > tr > td.success,
  2350. .table > tbody > tr > td.success,
  2351. .table > tfoot > tr > td.success,
  2352. .table > thead > tr > th.success,
  2353. .table > tbody > tr > th.success,
  2354. .table > tfoot > tr > th.success,
  2355. .table > thead > tr.success > td,
  2356. .table > tbody > tr.success > td,
  2357. .table > tfoot > tr.success > td,
  2358. .table > thead > tr.success > th,
  2359. .table > tbody > tr.success > th,
  2360. .table > tfoot > tr.success > th {
  2361. background-color: #dff0d8;
  2362. }
  2363. .table-hover > tbody > tr > td.success:hover,
  2364. .table-hover > tbody > tr > th.success:hover,
  2365. .table-hover > tbody > tr.success:hover > td,
  2366. .table-hover > tbody > tr:hover > .success,
  2367. .table-hover > tbody > tr.success:hover > th {
  2368. background-color: #d0e9c6;
  2369. }
  2370. .table > thead > tr > td.info,
  2371. .table > tbody > tr > td.info,
  2372. .table > tfoot > tr > td.info,
  2373. .table > thead > tr > th.info,
  2374. .table > tbody > tr > th.info,
  2375. .table > tfoot > tr > th.info,
  2376. .table > thead > tr.info > td,
  2377. .table > tbody > tr.info > td,
  2378. .table > tfoot > tr.info > td,
  2379. .table > thead > tr.info > th,
  2380. .table > tbody > tr.info > th,
  2381. .table > tfoot > tr.info > th {
  2382. background-color: #d9edf7;
  2383. }
  2384. .table-hover > tbody > tr > td.info:hover,
  2385. .table-hover > tbody > tr > th.info:hover,
  2386. .table-hover > tbody > tr.info:hover > td,
  2387. .table-hover > tbody > tr:hover > .info,
  2388. .table-hover > tbody > tr.info:hover > th {
  2389. background-color: #c4e3f3;
  2390. }
  2391. .table > thead > tr > td.warning,
  2392. .table > tbody > tr > td.warning,
  2393. .table > tfoot > tr > td.warning,
  2394. .table > thead > tr > th.warning,
  2395. .table > tbody > tr > th.warning,
  2396. .table > tfoot > tr > th.warning,
  2397. .table > thead > tr.warning > td,
  2398. .table > tbody > tr.warning > td,
  2399. .table > tfoot > tr.warning > td,
  2400. .table > thead > tr.warning > th,
  2401. .table > tbody > tr.warning > th,
  2402. .table > tfoot > tr.warning > th {
  2403. background-color: #fcf8e3;
  2404. }
  2405. .table-hover > tbody > tr > td.warning:hover,
  2406. .table-hover > tbody > tr > th.warning:hover,
  2407. .table-hover > tbody > tr.warning:hover > td,
  2408. .table-hover > tbody > tr:hover > .warning,
  2409. .table-hover > tbody > tr.warning:hover > th {
  2410. background-color: #faf2cc;
  2411. }
  2412. .table > thead > tr > td.danger,
  2413. .table > tbody > tr > td.danger,
  2414. .table > tfoot > tr > td.danger,
  2415. .table > thead > tr > th.danger,
  2416. .table > tbody > tr > th.danger,
  2417. .table > tfoot > tr > th.danger,
  2418. .table > thead > tr.danger > td,
  2419. .table > tbody > tr.danger > td,
  2420. .table > tfoot > tr.danger > td,
  2421. .table > thead > tr.danger > th,
  2422. .table > tbody > tr.danger > th,
  2423. .table > tfoot > tr.danger > th {
  2424. background-color: #f2dede;
  2425. }
  2426. .table-hover > tbody > tr > td.danger:hover,
  2427. .table-hover > tbody > tr > th.danger:hover,
  2428. .table-hover > tbody > tr.danger:hover > td,
  2429. .table-hover > tbody > tr:hover > .danger,
  2430. .table-hover > tbody > tr.danger:hover > th {
  2431. background-color: #ebcccc;
  2432. }
  2433. .table-responsive {
  2434. overflow-x: auto;
  2435. min-height: 0.01%;
  2436. }
  2437. @media screen and (max-width: 767px) {
  2438. .table-responsive {
  2439. width: 100%;
  2440. margin-bottom: 13.5px;
  2441. overflow-y: hidden;
  2442. -ms-overflow-style: -ms-autohiding-scrollbar;
  2443. border: 1px solid #ddd;
  2444. }
  2445. .table-responsive > .table {
  2446. margin-bottom: 0;
  2447. }
  2448. .table-responsive > .table > thead > tr > th,
  2449. .table-responsive > .table > tbody > tr > th,
  2450. .table-responsive > .table > tfoot > tr > th,
  2451. .table-responsive > .table > thead > tr > td,
  2452. .table-responsive > .table > tbody > tr > td,
  2453. .table-responsive > .table > tfoot > tr > td {
  2454. white-space: nowrap;
  2455. }
  2456. .table-responsive > .table-bordered {
  2457. border: 0;
  2458. }
  2459. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2460. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2461. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2462. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2463. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2464. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2465. border-left: 0;
  2466. }
  2467. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2468. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2469. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2470. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2471. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2472. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2473. border-right: 0;
  2474. }
  2475. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2476. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2477. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2478. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2479. border-bottom: 0;
  2480. }
  2481. }
  2482. fieldset {
  2483. padding: 0;
  2484. margin: 0;
  2485. border: 0;
  2486. min-width: 0;
  2487. }
  2488. legend {
  2489. display: block;
  2490. width: 100%;
  2491. padding: 0;
  2492. margin-bottom: 18px;
  2493. font-size: 19.5px;
  2494. line-height: inherit;
  2495. color: #333333;
  2496. border: 0;
  2497. border-bottom: 1px solid #e5e5e5;
  2498. }
  2499. label {
  2500. display: inline-block;
  2501. max-width: 100%;
  2502. margin-bottom: 5px;
  2503. font-weight: bold;
  2504. }
  2505. input[type="search"] {
  2506. -webkit-box-sizing: border-box;
  2507. -moz-box-sizing: border-box;
  2508. box-sizing: border-box;
  2509. }
  2510. input[type="radio"],
  2511. input[type="checkbox"] {
  2512. margin: 4px 0 0;
  2513. margin-top: 1px \9;
  2514. line-height: normal;
  2515. }
  2516. input[type="file"] {
  2517. display: block;
  2518. }
  2519. input[type="range"] {
  2520. display: block;
  2521. width: 100%;
  2522. }
  2523. select[multiple],
  2524. select[size] {
  2525. height: auto;
  2526. }
  2527. input[type="file"]:focus,
  2528. input[type="radio"]:focus,
  2529. input[type="checkbox"]:focus {
  2530. outline: 5px auto -webkit-focus-ring-color;
  2531. outline-offset: -2px;
  2532. }
  2533. output {
  2534. display: block;
  2535. padding-top: 7px;
  2536. font-size: 13px;
  2537. line-height: 1.42857143;
  2538. color: #555555;
  2539. }
  2540. .form-control {
  2541. display: block;
  2542. width: 100%;
  2543. height: 32px;
  2544. padding: 6px 12px;
  2545. font-size: 13px;
  2546. line-height: 1.42857143;
  2547. color: #555555;
  2548. background-color: #fff;
  2549. background-image: none;
  2550. border: 1px solid #ccc;
  2551. border-radius: 2px;
  2552. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2553. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2554. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2555. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2556. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2557. }
  2558. .form-control:focus {
  2559. border-color: #66afe9;
  2560. outline: 0;
  2561. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2562. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2563. }
  2564. .form-control::-moz-placeholder {
  2565. color: #999;
  2566. opacity: 1;
  2567. }
  2568. .form-control:-ms-input-placeholder {
  2569. color: #999;
  2570. }
  2571. .form-control::-webkit-input-placeholder {
  2572. color: #999;
  2573. }
  2574. .form-control::-ms-expand {
  2575. border: 0;
  2576. background-color: transparent;
  2577. }
  2578. .form-control[disabled],
  2579. .form-control[readonly],
  2580. fieldset[disabled] .form-control {
  2581. background-color: #eeeeee;
  2582. opacity: 1;
  2583. }
  2584. .form-control[disabled],
  2585. fieldset[disabled] .form-control {
  2586. cursor: not-allowed;
  2587. }
  2588. textarea.form-control {
  2589. height: auto;
  2590. }
  2591. input[type="search"] {
  2592. -webkit-appearance: none;
  2593. }
  2594. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2595. input[type="date"].form-control,
  2596. input[type="time"].form-control,
  2597. input[type="datetime-local"].form-control,
  2598. input[type="month"].form-control {
  2599. line-height: 32px;
  2600. }
  2601. input[type="date"].input-sm,
  2602. input[type="time"].input-sm,
  2603. input[type="datetime-local"].input-sm,
  2604. input[type="month"].input-sm,
  2605. .input-group-sm input[type="date"],
  2606. .input-group-sm input[type="time"],
  2607. .input-group-sm input[type="datetime-local"],
  2608. .input-group-sm input[type="month"] {
  2609. line-height: 30px;
  2610. }
  2611. input[type="date"].input-lg,
  2612. input[type="time"].input-lg,
  2613. input[type="datetime-local"].input-lg,
  2614. input[type="month"].input-lg,
  2615. .input-group-lg input[type="date"],
  2616. .input-group-lg input[type="time"],
  2617. .input-group-lg input[type="datetime-local"],
  2618. .input-group-lg input[type="month"] {
  2619. line-height: 45px;
  2620. }
  2621. }
  2622. .form-group {
  2623. margin-bottom: 15px;
  2624. }
  2625. .radio,
  2626. .checkbox {
  2627. position: relative;
  2628. display: block;
  2629. margin-top: 10px;
  2630. margin-bottom: 10px;
  2631. }
  2632. .radio label,
  2633. .checkbox label {
  2634. min-height: 18px;
  2635. padding-left: 20px;
  2636. margin-bottom: 0;
  2637. font-weight: normal;
  2638. cursor: pointer;
  2639. }
  2640. .radio input[type="radio"],
  2641. .radio-inline input[type="radio"],
  2642. .checkbox input[type="checkbox"],
  2643. .checkbox-inline input[type="checkbox"] {
  2644. position: absolute;
  2645. margin-left: -20px;
  2646. margin-top: 4px \9;
  2647. }
  2648. .radio + .radio,
  2649. .checkbox + .checkbox {
  2650. margin-top: -5px;
  2651. }
  2652. .radio-inline,
  2653. .checkbox-inline {
  2654. position: relative;
  2655. display: inline-block;
  2656. padding-left: 20px;
  2657. margin-bottom: 0;
  2658. vertical-align: middle;
  2659. font-weight: normal;
  2660. cursor: pointer;
  2661. }
  2662. .radio-inline + .radio-inline,
  2663. .checkbox-inline + .checkbox-inline {
  2664. margin-top: 0;
  2665. margin-left: 10px;
  2666. }
  2667. input[type="radio"][disabled],
  2668. input[type="checkbox"][disabled],
  2669. input[type="radio"].disabled,
  2670. input[type="checkbox"].disabled,
  2671. fieldset[disabled] input[type="radio"],
  2672. fieldset[disabled] input[type="checkbox"] {
  2673. cursor: not-allowed;
  2674. }
  2675. .radio-inline.disabled,
  2676. .checkbox-inline.disabled,
  2677. fieldset[disabled] .radio-inline,
  2678. fieldset[disabled] .checkbox-inline {
  2679. cursor: not-allowed;
  2680. }
  2681. .radio.disabled label,
  2682. .checkbox.disabled label,
  2683. fieldset[disabled] .radio label,
  2684. fieldset[disabled] .checkbox label {
  2685. cursor: not-allowed;
  2686. }
  2687. .form-control-static {
  2688. padding-top: 7px;
  2689. padding-bottom: 7px;
  2690. margin-bottom: 0;
  2691. min-height: 31px;
  2692. }
  2693. .form-control-static.input-lg,
  2694. .form-control-static.input-sm {
  2695. padding-left: 0;
  2696. padding-right: 0;
  2697. }
  2698. .input-sm {
  2699. height: 30px;
  2700. padding: 5px 10px;
  2701. font-size: 12px;
  2702. line-height: 1.5;
  2703. border-radius: 1px;
  2704. }
  2705. select.input-sm {
  2706. height: 30px;
  2707. line-height: 30px;
  2708. }
  2709. textarea.input-sm,
  2710. select[multiple].input-sm {
  2711. height: auto;
  2712. }
  2713. .form-group-sm .form-control {
  2714. height: 30px;
  2715. padding: 5px 10px;
  2716. font-size: 12px;
  2717. line-height: 1.5;
  2718. border-radius: 1px;
  2719. }
  2720. .form-group-sm select.form-control {
  2721. height: 30px;
  2722. line-height: 30px;
  2723. }
  2724. .form-group-sm textarea.form-control,
  2725. .form-group-sm select[multiple].form-control {
  2726. height: auto;
  2727. }
  2728. .form-group-sm .form-control-static {
  2729. height: 30px;
  2730. min-height: 30px;
  2731. padding: 6px 10px;
  2732. font-size: 12px;
  2733. line-height: 1.5;
  2734. }
  2735. .input-lg {
  2736. height: 45px;
  2737. padding: 10px 16px;
  2738. font-size: 17px;
  2739. line-height: 1.3333333;
  2740. border-radius: 3px;
  2741. }
  2742. select.input-lg {
  2743. height: 45px;
  2744. line-height: 45px;
  2745. }
  2746. textarea.input-lg,
  2747. select[multiple].input-lg {
  2748. height: auto;
  2749. }
  2750. .form-group-lg .form-control {
  2751. height: 45px;
  2752. padding: 10px 16px;
  2753. font-size: 17px;
  2754. line-height: 1.3333333;
  2755. border-radius: 3px;
  2756. }
  2757. .form-group-lg select.form-control {
  2758. height: 45px;
  2759. line-height: 45px;
  2760. }
  2761. .form-group-lg textarea.form-control,
  2762. .form-group-lg select[multiple].form-control {
  2763. height: auto;
  2764. }
  2765. .form-group-lg .form-control-static {
  2766. height: 45px;
  2767. min-height: 35px;
  2768. padding: 11px 16px;
  2769. font-size: 17px;
  2770. line-height: 1.3333333;
  2771. }
  2772. .has-feedback {
  2773. position: relative;
  2774. }
  2775. .has-feedback .form-control {
  2776. padding-right: 40px;
  2777. }
  2778. .form-control-feedback {
  2779. position: absolute;
  2780. top: 0;
  2781. right: 0;
  2782. z-index: 2;
  2783. display: block;
  2784. width: 32px;
  2785. height: 32px;
  2786. line-height: 32px;
  2787. text-align: center;
  2788. pointer-events: none;
  2789. }
  2790. .input-lg + .form-control-feedback,
  2791. .input-group-lg + .form-control-feedback,
  2792. .form-group-lg .form-control + .form-control-feedback {
  2793. width: 45px;
  2794. height: 45px;
  2795. line-height: 45px;
  2796. }
  2797. .input-sm + .form-control-feedback,
  2798. .input-group-sm + .form-control-feedback,
  2799. .form-group-sm .form-control + .form-control-feedback {
  2800. width: 30px;
  2801. height: 30px;
  2802. line-height: 30px;
  2803. }
  2804. .has-success .help-block,
  2805. .has-success .control-label,
  2806. .has-success .radio,
  2807. .has-success .checkbox,
  2808. .has-success .radio-inline,
  2809. .has-success .checkbox-inline,
  2810. .has-success.radio label,
  2811. .has-success.checkbox label,
  2812. .has-success.radio-inline label,
  2813. .has-success.checkbox-inline label {
  2814. color: #3c763d;
  2815. }
  2816. .has-success .form-control {
  2817. border-color: #3c763d;
  2818. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2819. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2820. }
  2821. .has-success .form-control:focus {
  2822. border-color: #2b542c;
  2823. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2824. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2825. }
  2826. .has-success .input-group-addon {
  2827. color: #3c763d;
  2828. border-color: #3c763d;
  2829. background-color: #dff0d8;
  2830. }
  2831. .has-success .form-control-feedback {
  2832. color: #3c763d;
  2833. }
  2834. .has-warning .help-block,
  2835. .has-warning .control-label,
  2836. .has-warning .radio,
  2837. .has-warning .checkbox,
  2838. .has-warning .radio-inline,
  2839. .has-warning .checkbox-inline,
  2840. .has-warning.radio label,
  2841. .has-warning.checkbox label,
  2842. .has-warning.radio-inline label,
  2843. .has-warning.checkbox-inline label {
  2844. color: #8a6d3b;
  2845. }
  2846. .has-warning .form-control {
  2847. border-color: #8a6d3b;
  2848. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2849. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2850. }
  2851. .has-warning .form-control:focus {
  2852. border-color: #66512c;
  2853. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2854. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2855. }
  2856. .has-warning .input-group-addon {
  2857. color: #8a6d3b;
  2858. border-color: #8a6d3b;
  2859. background-color: #fcf8e3;
  2860. }
  2861. .has-warning .form-control-feedback {
  2862. color: #8a6d3b;
  2863. }
  2864. .has-error .help-block,
  2865. .has-error .control-label,
  2866. .has-error .radio,
  2867. .has-error .checkbox,
  2868. .has-error .radio-inline,
  2869. .has-error .checkbox-inline,
  2870. .has-error.radio label,
  2871. .has-error.checkbox label,
  2872. .has-error.radio-inline label,
  2873. .has-error.checkbox-inline label {
  2874. color: #a94442;
  2875. }
  2876. .has-error .form-control {
  2877. border-color: #a94442;
  2878. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2879. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2880. }
  2881. .has-error .form-control:focus {
  2882. border-color: #843534;
  2883. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2884. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2885. }
  2886. .has-error .input-group-addon {
  2887. color: #a94442;
  2888. border-color: #a94442;
  2889. background-color: #f2dede;
  2890. }
  2891. .has-error .form-control-feedback {
  2892. color: #a94442;
  2893. }
  2894. .has-feedback label ~ .form-control-feedback {
  2895. top: 23px;
  2896. }
  2897. .has-feedback label.sr-only ~ .form-control-feedback {
  2898. top: 0;
  2899. }
  2900. .help-block {
  2901. display: block;
  2902. margin-top: 5px;
  2903. margin-bottom: 10px;
  2904. color: #404040;
  2905. }
  2906. @media (min-width: 768px) {
  2907. .form-inline .form-group {
  2908. display: inline-block;
  2909. margin-bottom: 0;
  2910. vertical-align: middle;
  2911. }
  2912. .form-inline .form-control {
  2913. display: inline-block;
  2914. width: auto;
  2915. vertical-align: middle;
  2916. }
  2917. .form-inline .form-control-static {
  2918. display: inline-block;
  2919. }
  2920. .form-inline .input-group {
  2921. display: inline-table;
  2922. vertical-align: middle;
  2923. }
  2924. .form-inline .input-group .input-group-addon,
  2925. .form-inline .input-group .input-group-btn,
  2926. .form-inline .input-group .form-control {
  2927. width: auto;
  2928. }
  2929. .form-inline .input-group > .form-control {
  2930. width: 100%;
  2931. }
  2932. .form-inline .control-label {
  2933. margin-bottom: 0;
  2934. vertical-align: middle;
  2935. }
  2936. .form-inline .radio,
  2937. .form-inline .checkbox {
  2938. display: inline-block;
  2939. margin-top: 0;
  2940. margin-bottom: 0;
  2941. vertical-align: middle;
  2942. }
  2943. .form-inline .radio label,
  2944. .form-inline .checkbox label {
  2945. padding-left: 0;
  2946. }
  2947. .form-inline .radio input[type="radio"],
  2948. .form-inline .checkbox input[type="checkbox"] {
  2949. position: relative;
  2950. margin-left: 0;
  2951. }
  2952. .form-inline .has-feedback .form-control-feedback {
  2953. top: 0;
  2954. }
  2955. }
  2956. .form-horizontal .radio,
  2957. .form-horizontal .checkbox,
  2958. .form-horizontal .radio-inline,
  2959. .form-horizontal .checkbox-inline {
  2960. margin-top: 0;
  2961. margin-bottom: 0;
  2962. padding-top: 7px;
  2963. }
  2964. .form-horizontal .radio,
  2965. .form-horizontal .checkbox {
  2966. min-height: 25px;
  2967. }
  2968. .form-horizontal .form-group {
  2969. margin-left: 0px;
  2970. margin-right: 0px;
  2971. }
  2972. @media (min-width: 768px) {
  2973. .form-horizontal .control-label {
  2974. text-align: right;
  2975. margin-bottom: 0;
  2976. padding-top: 7px;
  2977. }
  2978. }
  2979. .form-horizontal .has-feedback .form-control-feedback {
  2980. right: 0px;
  2981. }
  2982. @media (min-width: 768px) {
  2983. .form-horizontal .form-group-lg .control-label {
  2984. padding-top: 11px;
  2985. font-size: 17px;
  2986. }
  2987. }
  2988. @media (min-width: 768px) {
  2989. .form-horizontal .form-group-sm .control-label {
  2990. padding-top: 6px;
  2991. font-size: 12px;
  2992. }
  2993. }
  2994. .btn {
  2995. display: inline-block;
  2996. margin-bottom: 0;
  2997. font-weight: normal;
  2998. text-align: center;
  2999. vertical-align: middle;
  3000. touch-action: manipulation;
  3001. cursor: pointer;
  3002. background-image: none;
  3003. border: 1px solid transparent;
  3004. white-space: nowrap;
  3005. padding: 6px 12px;
  3006. font-size: 13px;
  3007. line-height: 1.42857143;
  3008. border-radius: 2px;
  3009. -webkit-user-select: none;
  3010. -moz-user-select: none;
  3011. -ms-user-select: none;
  3012. user-select: none;
  3013. }
  3014. .btn:focus,
  3015. .btn:active:focus,
  3016. .btn.active:focus,
  3017. .btn.focus,
  3018. .btn:active.focus,
  3019. .btn.active.focus {
  3020. outline: 5px auto -webkit-focus-ring-color;
  3021. outline-offset: -2px;
  3022. }
  3023. .btn:hover,
  3024. .btn:focus,
  3025. .btn.focus {
  3026. color: #333;
  3027. text-decoration: none;
  3028. }
  3029. .btn:active,
  3030. .btn.active {
  3031. outline: 0;
  3032. background-image: none;
  3033. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3034. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3035. }
  3036. .btn.disabled,
  3037. .btn[disabled],
  3038. fieldset[disabled] .btn {
  3039. cursor: not-allowed;
  3040. opacity: 0.65;
  3041. filter: alpha(opacity=65);
  3042. -webkit-box-shadow: none;
  3043. box-shadow: none;
  3044. }
  3045. a.btn.disabled,
  3046. fieldset[disabled] a.btn {
  3047. pointer-events: none;
  3048. }
  3049. .btn-default {
  3050. color: #333;
  3051. background-color: #fff;
  3052. border-color: #ccc;
  3053. }
  3054. .btn-default:focus,
  3055. .btn-default.focus {
  3056. color: #333;
  3057. background-color: #e6e6e6;
  3058. border-color: #8c8c8c;
  3059. }
  3060. .btn-default:hover {
  3061. color: #333;
  3062. background-color: #e6e6e6;
  3063. border-color: #adadad;
  3064. }
  3065. .btn-default:active,
  3066. .btn-default.active,
  3067. .open > .dropdown-toggle.btn-default {
  3068. color: #333;
  3069. background-color: #e6e6e6;
  3070. border-color: #adadad;
  3071. }
  3072. .btn-default:active:hover,
  3073. .btn-default.active:hover,
  3074. .open > .dropdown-toggle.btn-default:hover,
  3075. .btn-default:active:focus,
  3076. .btn-default.active:focus,
  3077. .open > .dropdown-toggle.btn-default:focus,
  3078. .btn-default:active.focus,
  3079. .btn-default.active.focus,
  3080. .open > .dropdown-toggle.btn-default.focus {
  3081. color: #333;
  3082. background-color: #d4d4d4;
  3083. border-color: #8c8c8c;
  3084. }
  3085. .btn-default:active,
  3086. .btn-default.active,
  3087. .open > .dropdown-toggle.btn-default {
  3088. background-image: none;
  3089. }
  3090. .btn-default.disabled:hover,
  3091. .btn-default[disabled]:hover,
  3092. fieldset[disabled] .btn-default:hover,
  3093. .btn-default.disabled:focus,
  3094. .btn-default[disabled]:focus,
  3095. fieldset[disabled] .btn-default:focus,
  3096. .btn-default.disabled.focus,
  3097. .btn-default[disabled].focus,
  3098. fieldset[disabled] .btn-default.focus {
  3099. background-color: #fff;
  3100. border-color: #ccc;
  3101. }
  3102. .btn-default .badge {
  3103. color: #fff;
  3104. background-color: #333;
  3105. }
  3106. .btn-primary {
  3107. color: #fff;
  3108. background-color: #337ab7;
  3109. border-color: #2e6da4;
  3110. }
  3111. .btn-primary:focus,
  3112. .btn-primary.focus {
  3113. color: #fff;
  3114. background-color: #286090;
  3115. border-color: #122b40;
  3116. }
  3117. .btn-primary:hover {
  3118. color: #fff;
  3119. background-color: #286090;
  3120. border-color: #204d74;
  3121. }
  3122. .btn-primary:active,
  3123. .btn-primary.active,
  3124. .open > .dropdown-toggle.btn-primary {
  3125. color: #fff;
  3126. background-color: #286090;
  3127. border-color: #204d74;
  3128. }
  3129. .btn-primary:active:hover,
  3130. .btn-primary.active:hover,
  3131. .open > .dropdown-toggle.btn-primary:hover,
  3132. .btn-primary:active:focus,
  3133. .btn-primary.active:focus,
  3134. .open > .dropdown-toggle.btn-primary:focus,
  3135. .btn-primary:active.focus,
  3136. .btn-primary.active.focus,
  3137. .open > .dropdown-toggle.btn-primary.focus {
  3138. color: #fff;
  3139. background-color: #204d74;
  3140. border-color: #122b40;
  3141. }
  3142. .btn-primary:active,
  3143. .btn-primary.active,
  3144. .open > .dropdown-toggle.btn-primary {
  3145. background-image: none;
  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. border-color: #398439;
  3185. }
  3186. .btn-success:active:hover,
  3187. .btn-success.active:hover,
  3188. .open > .dropdown-toggle.btn-success:hover,
  3189. .btn-success:active:focus,
  3190. .btn-success.active:focus,
  3191. .open > .dropdown-toggle.btn-success:focus,
  3192. .btn-success:active.focus,
  3193. .btn-success.active.focus,
  3194. .open > .dropdown-toggle.btn-success.focus {
  3195. color: #fff;
  3196. background-color: #398439;
  3197. border-color: #255625;
  3198. }
  3199. .btn-success:active,
  3200. .btn-success.active,
  3201. .open > .dropdown-toggle.btn-success {
  3202. background-image: none;
  3203. }
  3204. .btn-success.disabled:hover,
  3205. .btn-success[disabled]:hover,
  3206. fieldset[disabled] .btn-success:hover,
  3207. .btn-success.disabled:focus,
  3208. .btn-success[disabled]:focus,
  3209. fieldset[disabled] .btn-success:focus,
  3210. .btn-success.disabled.focus,
  3211. .btn-success[disabled].focus,
  3212. fieldset[disabled] .btn-success.focus {
  3213. background-color: #5cb85c;
  3214. border-color: #4cae4c;
  3215. }
  3216. .btn-success .badge {
  3217. color: #5cb85c;
  3218. background-color: #fff;
  3219. }
  3220. .btn-info {
  3221. color: #fff;
  3222. background-color: #5bc0de;
  3223. border-color: #46b8da;
  3224. }
  3225. .btn-info:focus,
  3226. .btn-info.focus {
  3227. color: #fff;
  3228. background-color: #31b0d5;
  3229. border-color: #1b6d85;
  3230. }
  3231. .btn-info:hover {
  3232. color: #fff;
  3233. background-color: #31b0d5;
  3234. border-color: #269abc;
  3235. }
  3236. .btn-info:active,
  3237. .btn-info.active,
  3238. .open > .dropdown-toggle.btn-info {
  3239. color: #fff;
  3240. background-color: #31b0d5;
  3241. border-color: #269abc;
  3242. }
  3243. .btn-info:active:hover,
  3244. .btn-info.active:hover,
  3245. .open > .dropdown-toggle.btn-info:hover,
  3246. .btn-info:active:focus,
  3247. .btn-info.active:focus,
  3248. .open > .dropdown-toggle.btn-info:focus,
  3249. .btn-info:active.focus,
  3250. .btn-info.active.focus,
  3251. .open > .dropdown-toggle.btn-info.focus {
  3252. color: #fff;
  3253. background-color: #269abc;
  3254. border-color: #1b6d85;
  3255. }
  3256. .btn-info:active,
  3257. .btn-info.active,
  3258. .open > .dropdown-toggle.btn-info {
  3259. background-image: none;
  3260. }
  3261. .btn-info.disabled:hover,
  3262. .btn-info[disabled]:hover,
  3263. fieldset[disabled] .btn-info:hover,
  3264. .btn-info.disabled:focus,
  3265. .btn-info[disabled]:focus,
  3266. fieldset[disabled] .btn-info:focus,
  3267. .btn-info.disabled.focus,
  3268. .btn-info[disabled].focus,
  3269. fieldset[disabled] .btn-info.focus {
  3270. background-color: #5bc0de;
  3271. border-color: #46b8da;
  3272. }
  3273. .btn-info .badge {
  3274. color: #5bc0de;
  3275. background-color: #fff;
  3276. }
  3277. .btn-warning {
  3278. color: #fff;
  3279. background-color: #f0ad4e;
  3280. border-color: #eea236;
  3281. }
  3282. .btn-warning:focus,
  3283. .btn-warning.focus {
  3284. color: #fff;
  3285. background-color: #ec971f;
  3286. border-color: #985f0d;
  3287. }
  3288. .btn-warning:hover {
  3289. color: #fff;
  3290. background-color: #ec971f;
  3291. border-color: #d58512;
  3292. }
  3293. .btn-warning:active,
  3294. .btn-warning.active,
  3295. .open > .dropdown-toggle.btn-warning {
  3296. color: #fff;
  3297. background-color: #ec971f;
  3298. border-color: #d58512;
  3299. }
  3300. .btn-warning:active:hover,
  3301. .btn-warning.active:hover,
  3302. .open > .dropdown-toggle.btn-warning:hover,
  3303. .btn-warning:active:focus,
  3304. .btn-warning.active:focus,
  3305. .open > .dropdown-toggle.btn-warning:focus,
  3306. .btn-warning:active.focus,
  3307. .btn-warning.active.focus,
  3308. .open > .dropdown-toggle.btn-warning.focus {
  3309. color: #fff;
  3310. background-color: #d58512;
  3311. border-color: #985f0d;
  3312. }
  3313. .btn-warning:active,
  3314. .btn-warning.active,
  3315. .open > .dropdown-toggle.btn-warning {
  3316. background-image: none;
  3317. }
  3318. .btn-warning.disabled:hover,
  3319. .btn-warning[disabled]:hover,
  3320. fieldset[disabled] .btn-warning:hover,
  3321. .btn-warning.disabled:focus,
  3322. .btn-warning[disabled]:focus,
  3323. fieldset[disabled] .btn-warning:focus,
  3324. .btn-warning.disabled.focus,
  3325. .btn-warning[disabled].focus,
  3326. fieldset[disabled] .btn-warning.focus {
  3327. background-color: #f0ad4e;
  3328. border-color: #eea236;
  3329. }
  3330. .btn-warning .badge {
  3331. color: #f0ad4e;
  3332. background-color: #fff;
  3333. }
  3334. .btn-danger {
  3335. color: #fff;
  3336. background-color: #d9534f;
  3337. border-color: #d43f3a;
  3338. }
  3339. .btn-danger:focus,
  3340. .btn-danger.focus {
  3341. color: #fff;
  3342. background-color: #c9302c;
  3343. border-color: #761c19;
  3344. }
  3345. .btn-danger:hover {
  3346. color: #fff;
  3347. background-color: #c9302c;
  3348. border-color: #ac2925;
  3349. }
  3350. .btn-danger:active,
  3351. .btn-danger.active,
  3352. .open > .dropdown-toggle.btn-danger {
  3353. color: #fff;
  3354. background-color: #c9302c;
  3355. border-color: #ac2925;
  3356. }
  3357. .btn-danger:active:hover,
  3358. .btn-danger.active:hover,
  3359. .open > .dropdown-toggle.btn-danger:hover,
  3360. .btn-danger:active:focus,
  3361. .btn-danger.active:focus,
  3362. .open > .dropdown-toggle.btn-danger:focus,
  3363. .btn-danger:active.focus,
  3364. .btn-danger.active.focus,
  3365. .open > .dropdown-toggle.btn-danger.focus {
  3366. color: #fff;
  3367. background-color: #ac2925;
  3368. border-color: #761c19;
  3369. }
  3370. .btn-danger:active,
  3371. .btn-danger.active,
  3372. .open > .dropdown-toggle.btn-danger {
  3373. background-image: none;
  3374. }
  3375. .btn-danger.disabled:hover,
  3376. .btn-danger[disabled]:hover,
  3377. fieldset[disabled] .btn-danger:hover,
  3378. .btn-danger.disabled:focus,
  3379. .btn-danger[disabled]:focus,
  3380. fieldset[disabled] .btn-danger:focus,
  3381. .btn-danger.disabled.focus,
  3382. .btn-danger[disabled].focus,
  3383. fieldset[disabled] .btn-danger.focus {
  3384. background-color: #d9534f;
  3385. border-color: #d43f3a;
  3386. }
  3387. .btn-danger .badge {
  3388. color: #d9534f;
  3389. background-color: #fff;
  3390. }
  3391. .btn-link {
  3392. color: #337ab7;
  3393. font-weight: normal;
  3394. border-radius: 0;
  3395. }
  3396. .btn-link,
  3397. .btn-link:active,
  3398. .btn-link.active,
  3399. .btn-link[disabled],
  3400. fieldset[disabled] .btn-link {
  3401. background-color: transparent;
  3402. -webkit-box-shadow: none;
  3403. box-shadow: none;
  3404. }
  3405. .btn-link,
  3406. .btn-link:hover,
  3407. .btn-link:focus,
  3408. .btn-link:active {
  3409. border-color: transparent;
  3410. }
  3411. .btn-link:hover,
  3412. .btn-link:focus {
  3413. color: #23527c;
  3414. text-decoration: underline;
  3415. background-color: transparent;
  3416. }
  3417. .btn-link[disabled]:hover,
  3418. fieldset[disabled] .btn-link:hover,
  3419. .btn-link[disabled]:focus,
  3420. fieldset[disabled] .btn-link:focus {
  3421. color: #777777;
  3422. text-decoration: none;
  3423. }
  3424. .btn-lg,
  3425. .btn-group-lg > .btn {
  3426. padding: 10px 16px;
  3427. font-size: 17px;
  3428. line-height: 1.3333333;
  3429. border-radius: 3px;
  3430. }
  3431. .btn-sm,
  3432. .btn-group-sm > .btn {
  3433. padding: 5px 10px;
  3434. font-size: 12px;
  3435. line-height: 1.5;
  3436. border-radius: 1px;
  3437. }
  3438. .btn-xs,
  3439. .btn-group-xs > .btn {
  3440. padding: 1px 5px;
  3441. font-size: 12px;
  3442. line-height: 1.5;
  3443. border-radius: 1px;
  3444. }
  3445. .btn-block {
  3446. display: block;
  3447. width: 100%;
  3448. }
  3449. .btn-block + .btn-block {
  3450. margin-top: 5px;
  3451. }
  3452. input[type="submit"].btn-block,
  3453. input[type="reset"].btn-block,
  3454. input[type="button"].btn-block {
  3455. width: 100%;
  3456. }
  3457. .fade {
  3458. opacity: 0;
  3459. -webkit-transition: opacity 0.15s linear;
  3460. -o-transition: opacity 0.15s linear;
  3461. transition: opacity 0.15s linear;
  3462. }
  3463. .fade.in {
  3464. opacity: 1;
  3465. }
  3466. .collapse {
  3467. display: none;
  3468. }
  3469. .collapse.in {
  3470. display: block;
  3471. }
  3472. tr.collapse.in {
  3473. display: table-row;
  3474. }
  3475. tbody.collapse.in {
  3476. display: table-row-group;
  3477. }
  3478. .collapsing {
  3479. position: relative;
  3480. height: 0;
  3481. overflow: hidden;
  3482. -webkit-transition-property: height, visibility;
  3483. transition-property: height, visibility;
  3484. -webkit-transition-duration: 0.35s;
  3485. transition-duration: 0.35s;
  3486. -webkit-transition-timing-function: ease;
  3487. transition-timing-function: ease;
  3488. }
  3489. .caret {
  3490. display: inline-block;
  3491. width: 0;
  3492. height: 0;
  3493. margin-left: 2px;
  3494. vertical-align: middle;
  3495. border-top: 4px dashed;
  3496. border-top: 4px solid \9;
  3497. border-right: 4px solid transparent;
  3498. border-left: 4px solid transparent;
  3499. }
  3500. .dropup,
  3501. .dropdown {
  3502. position: relative;
  3503. }
  3504. .dropdown-toggle:focus {
  3505. outline: 0;
  3506. }
  3507. .dropdown-menu {
  3508. position: absolute;
  3509. top: 100%;
  3510. left: 0;
  3511. z-index: 1000;
  3512. display: none;
  3513. float: left;
  3514. min-width: 160px;
  3515. padding: 5px 0;
  3516. margin: 2px 0 0;
  3517. list-style: none;
  3518. font-size: 13px;
  3519. text-align: left;
  3520. background-color: #fff;
  3521. border: 1px solid #ccc;
  3522. border: 1px solid rgba(0, 0, 0, 0.15);
  3523. border-radius: 2px;
  3524. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3525. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3526. background-clip: padding-box;
  3527. }
  3528. .dropdown-menu.pull-right {
  3529. right: 0;
  3530. left: auto;
  3531. }
  3532. .dropdown-menu .divider {
  3533. height: 1px;
  3534. margin: 8px 0;
  3535. overflow: hidden;
  3536. background-color: #e5e5e5;
  3537. }
  3538. .dropdown-menu > li > a {
  3539. display: block;
  3540. padding: 3px 20px;
  3541. clear: both;
  3542. font-weight: normal;
  3543. line-height: 1.42857143;
  3544. color: #333333;
  3545. white-space: nowrap;
  3546. }
  3547. .dropdown-menu > li > a:hover,
  3548. .dropdown-menu > li > a:focus {
  3549. text-decoration: none;
  3550. color: #262626;
  3551. background-color: #f5f5f5;
  3552. }
  3553. .dropdown-menu > .active > a,
  3554. .dropdown-menu > .active > a:hover,
  3555. .dropdown-menu > .active > a:focus {
  3556. color: #fff;
  3557. text-decoration: none;
  3558. outline: 0;
  3559. background-color: #337ab7;
  3560. }
  3561. .dropdown-menu > .disabled > a,
  3562. .dropdown-menu > .disabled > a:hover,
  3563. .dropdown-menu > .disabled > a:focus {
  3564. color: #777777;
  3565. }
  3566. .dropdown-menu > .disabled > a:hover,
  3567. .dropdown-menu > .disabled > a:focus {
  3568. text-decoration: none;
  3569. background-color: transparent;
  3570. background-image: none;
  3571. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3572. cursor: not-allowed;
  3573. }
  3574. .open > .dropdown-menu {
  3575. display: block;
  3576. }
  3577. .open > a {
  3578. outline: 0;
  3579. }
  3580. .dropdown-menu-right {
  3581. left: auto;
  3582. right: 0;
  3583. }
  3584. .dropdown-menu-left {
  3585. left: 0;
  3586. right: auto;
  3587. }
  3588. .dropdown-header {
  3589. display: block;
  3590. padding: 3px 20px;
  3591. font-size: 12px;
  3592. line-height: 1.42857143;
  3593. color: #777777;
  3594. white-space: nowrap;
  3595. }
  3596. .dropdown-backdrop {
  3597. position: fixed;
  3598. left: 0;
  3599. right: 0;
  3600. bottom: 0;
  3601. top: 0;
  3602. z-index: 990;
  3603. }
  3604. .pull-right > .dropdown-menu {
  3605. right: 0;
  3606. left: auto;
  3607. }
  3608. .dropup .caret,
  3609. .navbar-fixed-bottom .dropdown .caret {
  3610. border-top: 0;
  3611. border-bottom: 4px dashed;
  3612. border-bottom: 4px solid \9;
  3613. content: "";
  3614. }
  3615. .dropup .dropdown-menu,
  3616. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3617. top: auto;
  3618. bottom: 100%;
  3619. margin-bottom: 2px;
  3620. }
  3621. @media (min-width: 541px) {
  3622. .navbar-right .dropdown-menu {
  3623. left: auto;
  3624. right: 0;
  3625. }
  3626. .navbar-right .dropdown-menu-left {
  3627. left: 0;
  3628. right: auto;
  3629. }
  3630. }
  3631. .btn-group,
  3632. .btn-group-vertical {
  3633. position: relative;
  3634. display: inline-block;
  3635. vertical-align: middle;
  3636. }
  3637. .btn-group > .btn,
  3638. .btn-group-vertical > .btn {
  3639. position: relative;
  3640. float: left;
  3641. }
  3642. .btn-group > .btn:hover,
  3643. .btn-group-vertical > .btn:hover,
  3644. .btn-group > .btn:focus,
  3645. .btn-group-vertical > .btn:focus,
  3646. .btn-group > .btn:active,
  3647. .btn-group-vertical > .btn:active,
  3648. .btn-group > .btn.active,
  3649. .btn-group-vertical > .btn.active {
  3650. z-index: 2;
  3651. }
  3652. .btn-group .btn + .btn,
  3653. .btn-group .btn + .btn-group,
  3654. .btn-group .btn-group + .btn,
  3655. .btn-group .btn-group + .btn-group {
  3656. margin-left: -1px;
  3657. }
  3658. .btn-toolbar {
  3659. margin-left: -5px;
  3660. }
  3661. .btn-toolbar .btn,
  3662. .btn-toolbar .btn-group,
  3663. .btn-toolbar .input-group {
  3664. float: left;
  3665. }
  3666. .btn-toolbar > .btn,
  3667. .btn-toolbar > .btn-group,
  3668. .btn-toolbar > .input-group {
  3669. margin-left: 5px;
  3670. }
  3671. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3672. border-radius: 0;
  3673. }
  3674. .btn-group > .btn:first-child {
  3675. margin-left: 0;
  3676. }
  3677. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3678. border-bottom-right-radius: 0;
  3679. border-top-right-radius: 0;
  3680. }
  3681. .btn-group > .btn:last-child:not(:first-child),
  3682. .btn-group > .dropdown-toggle:not(:first-child) {
  3683. border-bottom-left-radius: 0;
  3684. border-top-left-radius: 0;
  3685. }
  3686. .btn-group > .btn-group {
  3687. float: left;
  3688. }
  3689. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3690. border-radius: 0;
  3691. }
  3692. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3693. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3694. border-bottom-right-radius: 0;
  3695. border-top-right-radius: 0;
  3696. }
  3697. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3698. border-bottom-left-radius: 0;
  3699. border-top-left-radius: 0;
  3700. }
  3701. .btn-group .dropdown-toggle:active,
  3702. .btn-group.open .dropdown-toggle {
  3703. outline: 0;
  3704. }
  3705. .btn-group > .btn + .dropdown-toggle {
  3706. padding-left: 8px;
  3707. padding-right: 8px;
  3708. }
  3709. .btn-group > .btn-lg + .dropdown-toggle {
  3710. padding-left: 12px;
  3711. padding-right: 12px;
  3712. }
  3713. .btn-group.open .dropdown-toggle {
  3714. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3715. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3716. }
  3717. .btn-group.open .dropdown-toggle.btn-link {
  3718. -webkit-box-shadow: none;
  3719. box-shadow: none;
  3720. }
  3721. .btn .caret {
  3722. margin-left: 0;
  3723. }
  3724. .btn-lg .caret {
  3725. border-width: 5px 5px 0;
  3726. border-bottom-width: 0;
  3727. }
  3728. .dropup .btn-lg .caret {
  3729. border-width: 0 5px 5px;
  3730. }
  3731. .btn-group-vertical > .btn,
  3732. .btn-group-vertical > .btn-group,
  3733. .btn-group-vertical > .btn-group > .btn {
  3734. display: block;
  3735. float: none;
  3736. width: 100%;
  3737. max-width: 100%;
  3738. }
  3739. .btn-group-vertical > .btn-group > .btn {
  3740. float: none;
  3741. }
  3742. .btn-group-vertical > .btn + .btn,
  3743. .btn-group-vertical > .btn + .btn-group,
  3744. .btn-group-vertical > .btn-group + .btn,
  3745. .btn-group-vertical > .btn-group + .btn-group {
  3746. margin-top: -1px;
  3747. margin-left: 0;
  3748. }
  3749. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3750. border-radius: 0;
  3751. }
  3752. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3753. border-top-right-radius: 2px;
  3754. border-top-left-radius: 2px;
  3755. border-bottom-right-radius: 0;
  3756. border-bottom-left-radius: 0;
  3757. }
  3758. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3759. border-top-right-radius: 0;
  3760. border-top-left-radius: 0;
  3761. border-bottom-right-radius: 2px;
  3762. border-bottom-left-radius: 2px;
  3763. }
  3764. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3765. border-radius: 0;
  3766. }
  3767. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3768. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3769. border-bottom-right-radius: 0;
  3770. border-bottom-left-radius: 0;
  3771. }
  3772. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3773. border-top-right-radius: 0;
  3774. border-top-left-radius: 0;
  3775. }
  3776. .btn-group-justified {
  3777. display: table;
  3778. width: 100%;
  3779. table-layout: fixed;
  3780. border-collapse: separate;
  3781. }
  3782. .btn-group-justified > .btn,
  3783. .btn-group-justified > .btn-group {
  3784. float: none;
  3785. display: table-cell;
  3786. width: 1%;
  3787. }
  3788. .btn-group-justified > .btn-group .btn {
  3789. width: 100%;
  3790. }
  3791. .btn-group-justified > .btn-group .dropdown-menu {
  3792. left: auto;
  3793. }
  3794. [data-toggle="buttons"] > .btn input[type="radio"],
  3795. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3796. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3797. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3798. position: absolute;
  3799. clip: rect(0, 0, 0, 0);
  3800. pointer-events: none;
  3801. }
  3802. .input-group {
  3803. position: relative;
  3804. display: table;
  3805. border-collapse: separate;
  3806. }
  3807. .input-group[class*="col-"] {
  3808. float: none;
  3809. padding-left: 0;
  3810. padding-right: 0;
  3811. }
  3812. .input-group .form-control {
  3813. position: relative;
  3814. z-index: 2;
  3815. float: left;
  3816. width: 100%;
  3817. margin-bottom: 0;
  3818. }
  3819. .input-group .form-control:focus {
  3820. z-index: 3;
  3821. }
  3822. .input-group-lg > .form-control,
  3823. .input-group-lg > .input-group-addon,
  3824. .input-group-lg > .input-group-btn > .btn {
  3825. height: 45px;
  3826. padding: 10px 16px;
  3827. font-size: 17px;
  3828. line-height: 1.3333333;
  3829. border-radius: 3px;
  3830. }
  3831. select.input-group-lg > .form-control,
  3832. select.input-group-lg > .input-group-addon,
  3833. select.input-group-lg > .input-group-btn > .btn {
  3834. height: 45px;
  3835. line-height: 45px;
  3836. }
  3837. textarea.input-group-lg > .form-control,
  3838. textarea.input-group-lg > .input-group-addon,
  3839. textarea.input-group-lg > .input-group-btn > .btn,
  3840. select[multiple].input-group-lg > .form-control,
  3841. select[multiple].input-group-lg > .input-group-addon,
  3842. select[multiple].input-group-lg > .input-group-btn > .btn {
  3843. height: auto;
  3844. }
  3845. .input-group-sm > .form-control,
  3846. .input-group-sm > .input-group-addon,
  3847. .input-group-sm > .input-group-btn > .btn {
  3848. height: 30px;
  3849. padding: 5px 10px;
  3850. font-size: 12px;
  3851. line-height: 1.5;
  3852. border-radius: 1px;
  3853. }
  3854. select.input-group-sm > .form-control,
  3855. select.input-group-sm > .input-group-addon,
  3856. select.input-group-sm > .input-group-btn > .btn {
  3857. height: 30px;
  3858. line-height: 30px;
  3859. }
  3860. textarea.input-group-sm > .form-control,
  3861. textarea.input-group-sm > .input-group-addon,
  3862. textarea.input-group-sm > .input-group-btn > .btn,
  3863. select[multiple].input-group-sm > .form-control,
  3864. select[multiple].input-group-sm > .input-group-addon,
  3865. select[multiple].input-group-sm > .input-group-btn > .btn {
  3866. height: auto;
  3867. }
  3868. .input-group-addon,
  3869. .input-group-btn,
  3870. .input-group .form-control {
  3871. display: table-cell;
  3872. }
  3873. .input-group-addon:not(:first-child):not(:last-child),
  3874. .input-group-btn:not(:first-child):not(:last-child),
  3875. .input-group .form-control:not(:first-child):not(:last-child) {
  3876. border-radius: 0;
  3877. }
  3878. .input-group-addon,
  3879. .input-group-btn {
  3880. width: 1%;
  3881. white-space: nowrap;
  3882. vertical-align: middle;
  3883. }
  3884. .input-group-addon {
  3885. padding: 6px 12px;
  3886. font-size: 13px;
  3887. font-weight: normal;
  3888. line-height: 1;
  3889. color: #555555;
  3890. text-align: center;
  3891. background-color: #eeeeee;
  3892. border: 1px solid #ccc;
  3893. border-radius: 2px;
  3894. }
  3895. .input-group-addon.input-sm {
  3896. padding: 5px 10px;
  3897. font-size: 12px;
  3898. border-radius: 1px;
  3899. }
  3900. .input-group-addon.input-lg {
  3901. padding: 10px 16px;
  3902. font-size: 17px;
  3903. border-radius: 3px;
  3904. }
  3905. .input-group-addon input[type="radio"],
  3906. .input-group-addon input[type="checkbox"] {
  3907. margin-top: 0;
  3908. }
  3909. .input-group .form-control:first-child,
  3910. .input-group-addon:first-child,
  3911. .input-group-btn:first-child > .btn,
  3912. .input-group-btn:first-child > .btn-group > .btn,
  3913. .input-group-btn:first-child > .dropdown-toggle,
  3914. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3915. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3916. border-bottom-right-radius: 0;
  3917. border-top-right-radius: 0;
  3918. }
  3919. .input-group-addon:first-child {
  3920. border-right: 0;
  3921. }
  3922. .input-group .form-control:last-child,
  3923. .input-group-addon:last-child,
  3924. .input-group-btn:last-child > .btn,
  3925. .input-group-btn:last-child > .btn-group > .btn,
  3926. .input-group-btn:last-child > .dropdown-toggle,
  3927. .input-group-btn:first-child > .btn:not(:first-child),
  3928. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3929. border-bottom-left-radius: 0;
  3930. border-top-left-radius: 0;
  3931. }
  3932. .input-group-addon:last-child {
  3933. border-left: 0;
  3934. }
  3935. .input-group-btn {
  3936. position: relative;
  3937. font-size: 0;
  3938. white-space: nowrap;
  3939. }
  3940. .input-group-btn > .btn {
  3941. position: relative;
  3942. }
  3943. .input-group-btn > .btn + .btn {
  3944. margin-left: -1px;
  3945. }
  3946. .input-group-btn > .btn:hover,
  3947. .input-group-btn > .btn:focus,
  3948. .input-group-btn > .btn:active {
  3949. z-index: 2;
  3950. }
  3951. .input-group-btn:first-child > .btn,
  3952. .input-group-btn:first-child > .btn-group {
  3953. margin-right: -1px;
  3954. }
  3955. .input-group-btn:last-child > .btn,
  3956. .input-group-btn:last-child > .btn-group {
  3957. z-index: 2;
  3958. margin-left: -1px;
  3959. }
  3960. .nav {
  3961. margin-bottom: 0;
  3962. padding-left: 0;
  3963. list-style: none;
  3964. }
  3965. .nav > li {
  3966. position: relative;
  3967. display: block;
  3968. }
  3969. .nav > li > a {
  3970. position: relative;
  3971. display: block;
  3972. padding: 10px 15px;
  3973. }
  3974. .nav > li > a:hover,
  3975. .nav > li > a:focus {
  3976. text-decoration: none;
  3977. background-color: #eeeeee;
  3978. }
  3979. .nav > li.disabled > a {
  3980. color: #777777;
  3981. }
  3982. .nav > li.disabled > a:hover,
  3983. .nav > li.disabled > a:focus {
  3984. color: #777777;
  3985. text-decoration: none;
  3986. background-color: transparent;
  3987. cursor: not-allowed;
  3988. }
  3989. .nav .open > a,
  3990. .nav .open > a:hover,
  3991. .nav .open > a:focus {
  3992. background-color: #eeeeee;
  3993. border-color: #337ab7;
  3994. }
  3995. .nav .nav-divider {
  3996. height: 1px;
  3997. margin: 8px 0;
  3998. overflow: hidden;
  3999. background-color: #e5e5e5;
  4000. }
  4001. .nav > li > a > img {
  4002. max-width: none;
  4003. }
  4004. .nav-tabs {
  4005. border-bottom: 1px solid #ddd;
  4006. }
  4007. .nav-tabs > li {
  4008. float: left;
  4009. margin-bottom: -1px;
  4010. }
  4011. .nav-tabs > li > a {
  4012. margin-right: 2px;
  4013. line-height: 1.42857143;
  4014. border: 1px solid transparent;
  4015. border-radius: 2px 2px 0 0;
  4016. }
  4017. .nav-tabs > li > a:hover {
  4018. border-color: #eeeeee #eeeeee #ddd;
  4019. }
  4020. .nav-tabs > li.active > a,
  4021. .nav-tabs > li.active > a:hover,
  4022. .nav-tabs > li.active > a:focus {
  4023. color: #555555;
  4024. background-color: #fff;
  4025. border: 1px solid #ddd;
  4026. border-bottom-color: transparent;
  4027. cursor: default;
  4028. }
  4029. .nav-tabs.nav-justified {
  4030. width: 100%;
  4031. border-bottom: 0;
  4032. }
  4033. .nav-tabs.nav-justified > li {
  4034. float: none;
  4035. }
  4036. .nav-tabs.nav-justified > li > a {
  4037. text-align: center;
  4038. margin-bottom: 5px;
  4039. }
  4040. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4041. top: auto;
  4042. left: auto;
  4043. }
  4044. @media (min-width: 768px) {
  4045. .nav-tabs.nav-justified > li {
  4046. display: table-cell;
  4047. width: 1%;
  4048. }
  4049. .nav-tabs.nav-justified > li > a {
  4050. margin-bottom: 0;
  4051. }
  4052. }
  4053. .nav-tabs.nav-justified > li > a {
  4054. margin-right: 0;
  4055. border-radius: 2px;
  4056. }
  4057. .nav-tabs.nav-justified > .active > a,
  4058. .nav-tabs.nav-justified > .active > a:hover,
  4059. .nav-tabs.nav-justified > .active > a:focus {
  4060. border: 1px solid #ddd;
  4061. }
  4062. @media (min-width: 768px) {
  4063. .nav-tabs.nav-justified > li > a {
  4064. border-bottom: 1px solid #ddd;
  4065. border-radius: 2px 2px 0 0;
  4066. }
  4067. .nav-tabs.nav-justified > .active > a,
  4068. .nav-tabs.nav-justified > .active > a:hover,
  4069. .nav-tabs.nav-justified > .active > a:focus {
  4070. border-bottom-color: #fff;
  4071. }
  4072. }
  4073. .nav-pills > li {
  4074. float: left;
  4075. }
  4076. .nav-pills > li > a {
  4077. border-radius: 2px;
  4078. }
  4079. .nav-pills > li + li {
  4080. margin-left: 2px;
  4081. }
  4082. .nav-pills > li.active > a,
  4083. .nav-pills > li.active > a:hover,
  4084. .nav-pills > li.active > a:focus {
  4085. color: #fff;
  4086. background-color: #337ab7;
  4087. }
  4088. .nav-stacked > li {
  4089. float: none;
  4090. }
  4091. .nav-stacked > li + li {
  4092. margin-top: 2px;
  4093. margin-left: 0;
  4094. }
  4095. .nav-justified {
  4096. width: 100%;
  4097. }
  4098. .nav-justified > li {
  4099. float: none;
  4100. }
  4101. .nav-justified > li > a {
  4102. text-align: center;
  4103. margin-bottom: 5px;
  4104. }
  4105. .nav-justified > .dropdown .dropdown-menu {
  4106. top: auto;
  4107. left: auto;
  4108. }
  4109. @media (min-width: 768px) {
  4110. .nav-justified > li {
  4111. display: table-cell;
  4112. width: 1%;
  4113. }
  4114. .nav-justified > li > a {
  4115. margin-bottom: 0;
  4116. }
  4117. }
  4118. .nav-tabs-justified {
  4119. border-bottom: 0;
  4120. }
  4121. .nav-tabs-justified > li > a {
  4122. margin-right: 0;
  4123. border-radius: 2px;
  4124. }
  4125. .nav-tabs-justified > .active > a,
  4126. .nav-tabs-justified > .active > a:hover,
  4127. .nav-tabs-justified > .active > a:focus {
  4128. border: 1px solid #ddd;
  4129. }
  4130. @media (min-width: 768px) {
  4131. .nav-tabs-justified > li > a {
  4132. border-bottom: 1px solid #ddd;
  4133. border-radius: 2px 2px 0 0;
  4134. }
  4135. .nav-tabs-justified > .active > a,
  4136. .nav-tabs-justified > .active > a:hover,
  4137. .nav-tabs-justified > .active > a:focus {
  4138. border-bottom-color: #fff;
  4139. }
  4140. }
  4141. .tab-content > .tab-pane {
  4142. display: none;
  4143. }
  4144. .tab-content > .active {
  4145. display: block;
  4146. }
  4147. .nav-tabs .dropdown-menu {
  4148. margin-top: -1px;
  4149. border-top-right-radius: 0;
  4150. border-top-left-radius: 0;
  4151. }
  4152. .navbar {
  4153. position: relative;
  4154. min-height: 30px;
  4155. margin-bottom: 18px;
  4156. border: 1px solid transparent;
  4157. }
  4158. @media (min-width: 541px) {
  4159. .navbar {
  4160. border-radius: 2px;
  4161. }
  4162. }
  4163. @media (min-width: 541px) {
  4164. .navbar-header {
  4165. float: left;
  4166. }
  4167. }
  4168. .navbar-collapse {
  4169. overflow-x: visible;
  4170. padding-right: 0px;
  4171. padding-left: 0px;
  4172. border-top: 1px solid transparent;
  4173. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4174. -webkit-overflow-scrolling: touch;
  4175. }
  4176. .navbar-collapse.in {
  4177. overflow-y: auto;
  4178. }
  4179. @media (min-width: 541px) {
  4180. .navbar-collapse {
  4181. width: auto;
  4182. border-top: 0;
  4183. box-shadow: none;
  4184. }
  4185. .navbar-collapse.collapse {
  4186. display: block !important;
  4187. height: auto !important;
  4188. padding-bottom: 0;
  4189. overflow: visible !important;
  4190. }
  4191. .navbar-collapse.in {
  4192. overflow-y: visible;
  4193. }
  4194. .navbar-fixed-top .navbar-collapse,
  4195. .navbar-static-top .navbar-collapse,
  4196. .navbar-fixed-bottom .navbar-collapse {
  4197. padding-left: 0;
  4198. padding-right: 0;
  4199. }
  4200. }
  4201. .navbar-fixed-top .navbar-collapse,
  4202. .navbar-fixed-bottom .navbar-collapse {
  4203. max-height: 340px;
  4204. }
  4205. @media (max-device-width: 540px) and (orientation: landscape) {
  4206. .navbar-fixed-top .navbar-collapse,
  4207. .navbar-fixed-bottom .navbar-collapse {
  4208. max-height: 200px;
  4209. }
  4210. }
  4211. .container > .navbar-header,
  4212. .container-fluid > .navbar-header,
  4213. .container > .navbar-collapse,
  4214. .container-fluid > .navbar-collapse {
  4215. margin-right: 0px;
  4216. margin-left: 0px;
  4217. }
  4218. @media (min-width: 541px) {
  4219. .container > .navbar-header,
  4220. .container-fluid > .navbar-header,
  4221. .container > .navbar-collapse,
  4222. .container-fluid > .navbar-collapse {
  4223. margin-right: 0;
  4224. margin-left: 0;
  4225. }
  4226. }
  4227. .navbar-static-top {
  4228. z-index: 1000;
  4229. border-width: 0 0 1px;
  4230. }
  4231. @media (min-width: 541px) {
  4232. .navbar-static-top {
  4233. border-radius: 0;
  4234. }
  4235. }
  4236. .navbar-fixed-top,
  4237. .navbar-fixed-bottom {
  4238. position: fixed;
  4239. right: 0;
  4240. left: 0;
  4241. z-index: 1030;
  4242. }
  4243. @media (min-width: 541px) {
  4244. .navbar-fixed-top,
  4245. .navbar-fixed-bottom {
  4246. border-radius: 0;
  4247. }
  4248. }
  4249. .navbar-fixed-top {
  4250. top: 0;
  4251. border-width: 0 0 1px;
  4252. }
  4253. .navbar-fixed-bottom {
  4254. bottom: 0;
  4255. margin-bottom: 0;
  4256. border-width: 1px 0 0;
  4257. }
  4258. .navbar-brand {
  4259. float: left;
  4260. padding: 6px 0px;
  4261. font-size: 17px;
  4262. line-height: 18px;
  4263. height: 30px;
  4264. }
  4265. .navbar-brand:hover,
  4266. .navbar-brand:focus {
  4267. text-decoration: none;
  4268. }
  4269. .navbar-brand > img {
  4270. display: block;
  4271. }
  4272. @media (min-width: 541px) {
  4273. .navbar > .container .navbar-brand,
  4274. .navbar > .container-fluid .navbar-brand {
  4275. margin-left: 0px;
  4276. }
  4277. }
  4278. .navbar-toggle {
  4279. position: relative;
  4280. float: right;
  4281. margin-right: 0px;
  4282. padding: 9px 10px;
  4283. margin-top: -2px;
  4284. margin-bottom: -2px;
  4285. background-color: transparent;
  4286. background-image: none;
  4287. border: 1px solid transparent;
  4288. border-radius: 2px;
  4289. }
  4290. .navbar-toggle:focus {
  4291. outline: 0;
  4292. }
  4293. .navbar-toggle .icon-bar {
  4294. display: block;
  4295. width: 22px;
  4296. height: 2px;
  4297. border-radius: 1px;
  4298. }
  4299. .navbar-toggle .icon-bar + .icon-bar {
  4300. margin-top: 4px;
  4301. }
  4302. @media (min-width: 541px) {
  4303. .navbar-toggle {
  4304. display: none;
  4305. }
  4306. }
  4307. .navbar-nav {
  4308. margin: 3px 0px;
  4309. }
  4310. .navbar-nav > li > a {
  4311. padding-top: 10px;
  4312. padding-bottom: 10px;
  4313. line-height: 18px;
  4314. }
  4315. @media (max-width: 540px) {
  4316. .navbar-nav .open .dropdown-menu {
  4317. position: static;
  4318. float: none;
  4319. width: auto;
  4320. margin-top: 0;
  4321. background-color: transparent;
  4322. border: 0;
  4323. box-shadow: none;
  4324. }
  4325. .navbar-nav .open .dropdown-menu > li > a,
  4326. .navbar-nav .open .dropdown-menu .dropdown-header {
  4327. padding: 5px 15px 5px 25px;
  4328. }
  4329. .navbar-nav .open .dropdown-menu > li > a {
  4330. line-height: 18px;
  4331. }
  4332. .navbar-nav .open .dropdown-menu > li > a:hover,
  4333. .navbar-nav .open .dropdown-menu > li > a:focus {
  4334. background-image: none;
  4335. }
  4336. }
  4337. @media (min-width: 541px) {
  4338. .navbar-nav {
  4339. float: left;
  4340. margin: 0;
  4341. }
  4342. .navbar-nav > li {
  4343. float: left;
  4344. }
  4345. .navbar-nav > li > a {
  4346. padding-top: 6px;
  4347. padding-bottom: 6px;
  4348. }
  4349. }
  4350. .navbar-form {
  4351. margin-left: 0px;
  4352. margin-right: 0px;
  4353. padding: 10px 0px;
  4354. border-top: 1px solid transparent;
  4355. border-bottom: 1px solid transparent;
  4356. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4357. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4358. margin-top: -1px;
  4359. margin-bottom: -1px;
  4360. }
  4361. @media (min-width: 768px) {
  4362. .navbar-form .form-group {
  4363. display: inline-block;
  4364. margin-bottom: 0;
  4365. vertical-align: middle;
  4366. }
  4367. .navbar-form .form-control {
  4368. display: inline-block;
  4369. width: auto;
  4370. vertical-align: middle;
  4371. }
  4372. .navbar-form .form-control-static {
  4373. display: inline-block;
  4374. }
  4375. .navbar-form .input-group {
  4376. display: inline-table;
  4377. vertical-align: middle;
  4378. }
  4379. .navbar-form .input-group .input-group-addon,
  4380. .navbar-form .input-group .input-group-btn,
  4381. .navbar-form .input-group .form-control {
  4382. width: auto;
  4383. }
  4384. .navbar-form .input-group > .form-control {
  4385. width: 100%;
  4386. }
  4387. .navbar-form .control-label {
  4388. margin-bottom: 0;
  4389. vertical-align: middle;
  4390. }
  4391. .navbar-form .radio,
  4392. .navbar-form .checkbox {
  4393. display: inline-block;
  4394. margin-top: 0;
  4395. margin-bottom: 0;
  4396. vertical-align: middle;
  4397. }
  4398. .navbar-form .radio label,
  4399. .navbar-form .checkbox label {
  4400. padding-left: 0;
  4401. }
  4402. .navbar-form .radio input[type="radio"],
  4403. .navbar-form .checkbox input[type="checkbox"] {
  4404. position: relative;
  4405. margin-left: 0;
  4406. }
  4407. .navbar-form .has-feedback .form-control-feedback {
  4408. top: 0;
  4409. }
  4410. }
  4411. @media (max-width: 540px) {
  4412. .navbar-form .form-group {
  4413. margin-bottom: 5px;
  4414. }
  4415. .navbar-form .form-group:last-child {
  4416. margin-bottom: 0;
  4417. }
  4418. }
  4419. @media (min-width: 541px) {
  4420. .navbar-form {
  4421. width: auto;
  4422. border: 0;
  4423. margin-left: 0;
  4424. margin-right: 0;
  4425. padding-top: 0;
  4426. padding-bottom: 0;
  4427. -webkit-box-shadow: none;
  4428. box-shadow: none;
  4429. }
  4430. }
  4431. .navbar-nav > li > .dropdown-menu {
  4432. margin-top: 0;
  4433. border-top-right-radius: 0;
  4434. border-top-left-radius: 0;
  4435. }
  4436. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4437. margin-bottom: 0;
  4438. border-top-right-radius: 2px;
  4439. border-top-left-radius: 2px;
  4440. border-bottom-right-radius: 0;
  4441. border-bottom-left-radius: 0;
  4442. }
  4443. .navbar-btn {
  4444. margin-top: -1px;
  4445. margin-bottom: -1px;
  4446. }
  4447. .navbar-btn.btn-sm {
  4448. margin-top: 0px;
  4449. margin-bottom: 0px;
  4450. }
  4451. .navbar-btn.btn-xs {
  4452. margin-top: 4px;
  4453. margin-bottom: 4px;
  4454. }
  4455. .navbar-text {
  4456. margin-top: 6px;
  4457. margin-bottom: 6px;
  4458. }
  4459. @media (min-width: 541px) {
  4460. .navbar-text {
  4461. float: left;
  4462. margin-left: 0px;
  4463. margin-right: 0px;
  4464. }
  4465. }
  4466. @media (min-width: 541px) {
  4467. .navbar-left {
  4468. float: left !important;
  4469. float: left;
  4470. }
  4471. .navbar-right {
  4472. float: right !important;
  4473. float: right;
  4474. margin-right: 0px;
  4475. }
  4476. .navbar-right ~ .navbar-right {
  4477. margin-right: 0;
  4478. }
  4479. }
  4480. .navbar-default {
  4481. background-color: #f8f8f8;
  4482. border-color: #e7e7e7;
  4483. }
  4484. .navbar-default .navbar-brand {
  4485. color: #777;
  4486. }
  4487. .navbar-default .navbar-brand:hover,
  4488. .navbar-default .navbar-brand:focus {
  4489. color: #5e5e5e;
  4490. background-color: transparent;
  4491. }
  4492. .navbar-default .navbar-text {
  4493. color: #777;
  4494. }
  4495. .navbar-default .navbar-nav > li > a {
  4496. color: #777;
  4497. }
  4498. .navbar-default .navbar-nav > li > a:hover,
  4499. .navbar-default .navbar-nav > li > a:focus {
  4500. color: #333;
  4501. background-color: transparent;
  4502. }
  4503. .navbar-default .navbar-nav > .active > a,
  4504. .navbar-default .navbar-nav > .active > a:hover,
  4505. .navbar-default .navbar-nav > .active > a:focus {
  4506. color: #555;
  4507. background-color: #e7e7e7;
  4508. }
  4509. .navbar-default .navbar-nav > .disabled > a,
  4510. .navbar-default .navbar-nav > .disabled > a:hover,
  4511. .navbar-default .navbar-nav > .disabled > a:focus {
  4512. color: #ccc;
  4513. background-color: transparent;
  4514. }
  4515. .navbar-default .navbar-toggle {
  4516. border-color: #ddd;
  4517. }
  4518. .navbar-default .navbar-toggle:hover,
  4519. .navbar-default .navbar-toggle:focus {
  4520. background-color: #ddd;
  4521. }
  4522. .navbar-default .navbar-toggle .icon-bar {
  4523. background-color: #888;
  4524. }
  4525. .navbar-default .navbar-collapse,
  4526. .navbar-default .navbar-form {
  4527. border-color: #e7e7e7;
  4528. }
  4529. .navbar-default .navbar-nav > .open > a,
  4530. .navbar-default .navbar-nav > .open > a:hover,
  4531. .navbar-default .navbar-nav > .open > a:focus {
  4532. background-color: #e7e7e7;
  4533. color: #555;
  4534. }
  4535. @media (max-width: 540px) {
  4536. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4537. color: #777;
  4538. }
  4539. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4540. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4541. color: #333;
  4542. background-color: transparent;
  4543. }
  4544. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4545. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4546. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4547. color: #555;
  4548. background-color: #e7e7e7;
  4549. }
  4550. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4551. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4552. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4553. color: #ccc;
  4554. background-color: transparent;
  4555. }
  4556. }
  4557. .navbar-default .navbar-link {
  4558. color: #777;
  4559. }
  4560. .navbar-default .navbar-link:hover {
  4561. color: #333;
  4562. }
  4563. .navbar-default .btn-link {
  4564. color: #777;
  4565. }
  4566. .navbar-default .btn-link:hover,
  4567. .navbar-default .btn-link:focus {
  4568. color: #333;
  4569. }
  4570. .navbar-default .btn-link[disabled]:hover,
  4571. fieldset[disabled] .navbar-default .btn-link:hover,
  4572. .navbar-default .btn-link[disabled]:focus,
  4573. fieldset[disabled] .navbar-default .btn-link:focus {
  4574. color: #ccc;
  4575. }
  4576. .navbar-inverse {
  4577. background-color: #222;
  4578. border-color: #080808;
  4579. }
  4580. .navbar-inverse .navbar-brand {
  4581. color: #9d9d9d;
  4582. }
  4583. .navbar-inverse .navbar-brand:hover,
  4584. .navbar-inverse .navbar-brand:focus {
  4585. color: #fff;
  4586. background-color: transparent;
  4587. }
  4588. .navbar-inverse .navbar-text {
  4589. color: #9d9d9d;
  4590. }
  4591. .navbar-inverse .navbar-nav > li > a {
  4592. color: #9d9d9d;
  4593. }
  4594. .navbar-inverse .navbar-nav > li > a:hover,
  4595. .navbar-inverse .navbar-nav > li > a:focus {
  4596. color: #fff;
  4597. background-color: transparent;
  4598. }
  4599. .navbar-inverse .navbar-nav > .active > a,
  4600. .navbar-inverse .navbar-nav > .active > a:hover,
  4601. .navbar-inverse .navbar-nav > .active > a:focus {
  4602. color: #fff;
  4603. background-color: #080808;
  4604. }
  4605. .navbar-inverse .navbar-nav > .disabled > a,
  4606. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4607. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4608. color: #444;
  4609. background-color: transparent;
  4610. }
  4611. .navbar-inverse .navbar-toggle {
  4612. border-color: #333;
  4613. }
  4614. .navbar-inverse .navbar-toggle:hover,
  4615. .navbar-inverse .navbar-toggle:focus {
  4616. background-color: #333;
  4617. }
  4618. .navbar-inverse .navbar-toggle .icon-bar {
  4619. background-color: #fff;
  4620. }
  4621. .navbar-inverse .navbar-collapse,
  4622. .navbar-inverse .navbar-form {
  4623. border-color: #101010;
  4624. }
  4625. .navbar-inverse .navbar-nav > .open > a,
  4626. .navbar-inverse .navbar-nav > .open > a:hover,
  4627. .navbar-inverse .navbar-nav > .open > a:focus {
  4628. background-color: #080808;
  4629. color: #fff;
  4630. }
  4631. @media (max-width: 540px) {
  4632. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4633. border-color: #080808;
  4634. }
  4635. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4636. background-color: #080808;
  4637. }
  4638. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4639. color: #9d9d9d;
  4640. }
  4641. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4642. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4643. color: #fff;
  4644. background-color: transparent;
  4645. }
  4646. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4647. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4648. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4649. color: #fff;
  4650. background-color: #080808;
  4651. }
  4652. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4653. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4654. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4655. color: #444;
  4656. background-color: transparent;
  4657. }
  4658. }
  4659. .navbar-inverse .navbar-link {
  4660. color: #9d9d9d;
  4661. }
  4662. .navbar-inverse .navbar-link:hover {
  4663. color: #fff;
  4664. }
  4665. .navbar-inverse .btn-link {
  4666. color: #9d9d9d;
  4667. }
  4668. .navbar-inverse .btn-link:hover,
  4669. .navbar-inverse .btn-link:focus {
  4670. color: #fff;
  4671. }
  4672. .navbar-inverse .btn-link[disabled]:hover,
  4673. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4674. .navbar-inverse .btn-link[disabled]:focus,
  4675. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4676. color: #444;
  4677. }
  4678. .breadcrumb {
  4679. padding: 8px 15px;
  4680. margin-bottom: 18px;
  4681. list-style: none;
  4682. background-color: #f5f5f5;
  4683. border-radius: 2px;
  4684. }
  4685. .breadcrumb > li {
  4686. display: inline-block;
  4687. }
  4688. .breadcrumb > li + li:before {
  4689. content: "/\00a0";
  4690. padding: 0 5px;
  4691. color: #5e5e5e;
  4692. }
  4693. .breadcrumb > .active {
  4694. color: #777777;
  4695. }
  4696. .pagination {
  4697. display: inline-block;
  4698. padding-left: 0;
  4699. margin: 18px 0;
  4700. border-radius: 2px;
  4701. }
  4702. .pagination > li {
  4703. display: inline;
  4704. }
  4705. .pagination > li > a,
  4706. .pagination > li > span {
  4707. position: relative;
  4708. float: left;
  4709. padding: 6px 12px;
  4710. line-height: 1.42857143;
  4711. text-decoration: none;
  4712. color: #337ab7;
  4713. background-color: #fff;
  4714. border: 1px solid #ddd;
  4715. margin-left: -1px;
  4716. }
  4717. .pagination > li:first-child > a,
  4718. .pagination > li:first-child > span {
  4719. margin-left: 0;
  4720. border-bottom-left-radius: 2px;
  4721. border-top-left-radius: 2px;
  4722. }
  4723. .pagination > li:last-child > a,
  4724. .pagination > li:last-child > span {
  4725. border-bottom-right-radius: 2px;
  4726. border-top-right-radius: 2px;
  4727. }
  4728. .pagination > li > a:hover,
  4729. .pagination > li > span:hover,
  4730. .pagination > li > a:focus,
  4731. .pagination > li > span:focus {
  4732. z-index: 2;
  4733. color: #23527c;
  4734. background-color: #eeeeee;
  4735. border-color: #ddd;
  4736. }
  4737. .pagination > .active > a,
  4738. .pagination > .active > span,
  4739. .pagination > .active > a:hover,
  4740. .pagination > .active > span:hover,
  4741. .pagination > .active > a:focus,
  4742. .pagination > .active > span:focus {
  4743. z-index: 3;
  4744. color: #fff;
  4745. background-color: #337ab7;
  4746. border-color: #337ab7;
  4747. cursor: default;
  4748. }
  4749. .pagination > .disabled > span,
  4750. .pagination > .disabled > span:hover,
  4751. .pagination > .disabled > span:focus,
  4752. .pagination > .disabled > a,
  4753. .pagination > .disabled > a:hover,
  4754. .pagination > .disabled > a:focus {
  4755. color: #777777;
  4756. background-color: #fff;
  4757. border-color: #ddd;
  4758. cursor: not-allowed;
  4759. }
  4760. .pagination-lg > li > a,
  4761. .pagination-lg > li > span {
  4762. padding: 10px 16px;
  4763. font-size: 17px;
  4764. line-height: 1.3333333;
  4765. }
  4766. .pagination-lg > li:first-child > a,
  4767. .pagination-lg > li:first-child > span {
  4768. border-bottom-left-radius: 3px;
  4769. border-top-left-radius: 3px;
  4770. }
  4771. .pagination-lg > li:last-child > a,
  4772. .pagination-lg > li:last-child > span {
  4773. border-bottom-right-radius: 3px;
  4774. border-top-right-radius: 3px;
  4775. }
  4776. .pagination-sm > li > a,
  4777. .pagination-sm > li > span {
  4778. padding: 5px 10px;
  4779. font-size: 12px;
  4780. line-height: 1.5;
  4781. }
  4782. .pagination-sm > li:first-child > a,
  4783. .pagination-sm > li:first-child > span {
  4784. border-bottom-left-radius: 1px;
  4785. border-top-left-radius: 1px;
  4786. }
  4787. .pagination-sm > li:last-child > a,
  4788. .pagination-sm > li:last-child > span {
  4789. border-bottom-right-radius: 1px;
  4790. border-top-right-radius: 1px;
  4791. }
  4792. .pager {
  4793. padding-left: 0;
  4794. margin: 18px 0;
  4795. list-style: none;
  4796. text-align: center;
  4797. }
  4798. .pager li {
  4799. display: inline;
  4800. }
  4801. .pager li > a,
  4802. .pager li > span {
  4803. display: inline-block;
  4804. padding: 5px 14px;
  4805. background-color: #fff;
  4806. border: 1px solid #ddd;
  4807. border-radius: 15px;
  4808. }
  4809. .pager li > a:hover,
  4810. .pager li > a:focus {
  4811. text-decoration: none;
  4812. background-color: #eeeeee;
  4813. }
  4814. .pager .next > a,
  4815. .pager .next > span {
  4816. float: right;
  4817. }
  4818. .pager .previous > a,
  4819. .pager .previous > span {
  4820. float: left;
  4821. }
  4822. .pager .disabled > a,
  4823. .pager .disabled > a:hover,
  4824. .pager .disabled > a:focus,
  4825. .pager .disabled > span {
  4826. color: #777777;
  4827. background-color: #fff;
  4828. cursor: not-allowed;
  4829. }
  4830. .label {
  4831. display: inline;
  4832. padding: .2em .6em .3em;
  4833. font-size: 75%;
  4834. font-weight: bold;
  4835. line-height: 1;
  4836. color: #fff;
  4837. text-align: center;
  4838. white-space: nowrap;
  4839. vertical-align: baseline;
  4840. border-radius: .25em;
  4841. }
  4842. a.label:hover,
  4843. a.label:focus {
  4844. color: #fff;
  4845. text-decoration: none;
  4846. cursor: pointer;
  4847. }
  4848. .label:empty {
  4849. display: none;
  4850. }
  4851. .btn .label {
  4852. position: relative;
  4853. top: -1px;
  4854. }
  4855. .label-default {
  4856. background-color: #777777;
  4857. }
  4858. .label-default[href]:hover,
  4859. .label-default[href]:focus {
  4860. background-color: #5e5e5e;
  4861. }
  4862. .label-primary {
  4863. background-color: #337ab7;
  4864. }
  4865. .label-primary[href]:hover,
  4866. .label-primary[href]:focus {
  4867. background-color: #286090;
  4868. }
  4869. .label-success {
  4870. background-color: #5cb85c;
  4871. }
  4872. .label-success[href]:hover,
  4873. .label-success[href]:focus {
  4874. background-color: #449d44;
  4875. }
  4876. .label-info {
  4877. background-color: #5bc0de;
  4878. }
  4879. .label-info[href]:hover,
  4880. .label-info[href]:focus {
  4881. background-color: #31b0d5;
  4882. }
  4883. .label-warning {
  4884. background-color: #f0ad4e;
  4885. }
  4886. .label-warning[href]:hover,
  4887. .label-warning[href]:focus {
  4888. background-color: #ec971f;
  4889. }
  4890. .label-danger {
  4891. background-color: #d9534f;
  4892. }
  4893. .label-danger[href]:hover,
  4894. .label-danger[href]:focus {
  4895. background-color: #c9302c;
  4896. }
  4897. .badge {
  4898. display: inline-block;
  4899. min-width: 10px;
  4900. padding: 3px 7px;
  4901. font-size: 12px;
  4902. font-weight: bold;
  4903. color: #fff;
  4904. line-height: 1;
  4905. vertical-align: middle;
  4906. white-space: nowrap;
  4907. text-align: center;
  4908. background-color: #777777;
  4909. border-radius: 10px;
  4910. }
  4911. .badge:empty {
  4912. display: none;
  4913. }
  4914. .btn .badge {
  4915. position: relative;
  4916. top: -1px;
  4917. }
  4918. .btn-xs .badge,
  4919. .btn-group-xs > .btn .badge {
  4920. top: 0;
  4921. padding: 1px 5px;
  4922. }
  4923. a.badge:hover,
  4924. a.badge:focus {
  4925. color: #fff;
  4926. text-decoration: none;
  4927. cursor: pointer;
  4928. }
  4929. .list-group-item.active > .badge,
  4930. .nav-pills > .active > a > .badge {
  4931. color: #337ab7;
  4932. background-color: #fff;
  4933. }
  4934. .list-group-item > .badge {
  4935. float: right;
  4936. }
  4937. .list-group-item > .badge + .badge {
  4938. margin-right: 5px;
  4939. }
  4940. .nav-pills > li > a > .badge {
  4941. margin-left: 3px;
  4942. }
  4943. .jumbotron {
  4944. padding-top: 30px;
  4945. padding-bottom: 30px;
  4946. margin-bottom: 30px;
  4947. color: inherit;
  4948. background-color: #eeeeee;
  4949. }
  4950. .jumbotron h1,
  4951. .jumbotron .h1 {
  4952. color: inherit;
  4953. }
  4954. .jumbotron p {
  4955. margin-bottom: 15px;
  4956. font-size: 20px;
  4957. font-weight: 200;
  4958. }
  4959. .jumbotron > hr {
  4960. border-top-color: #d5d5d5;
  4961. }
  4962. .container .jumbotron,
  4963. .container-fluid .jumbotron {
  4964. border-radius: 3px;
  4965. padding-left: 0px;
  4966. padding-right: 0px;
  4967. }
  4968. .jumbotron .container {
  4969. max-width: 100%;
  4970. }
  4971. @media screen and (min-width: 768px) {
  4972. .jumbotron {
  4973. padding-top: 48px;
  4974. padding-bottom: 48px;
  4975. }
  4976. .container .jumbotron,
  4977. .container-fluid .jumbotron {
  4978. padding-left: 60px;
  4979. padding-right: 60px;
  4980. }
  4981. .jumbotron h1,
  4982. .jumbotron .h1 {
  4983. font-size: 59px;
  4984. }
  4985. }
  4986. .thumbnail {
  4987. display: block;
  4988. padding: 4px;
  4989. margin-bottom: 18px;
  4990. line-height: 1.42857143;
  4991. background-color: #fff;
  4992. border: 1px solid #ddd;
  4993. border-radius: 2px;
  4994. -webkit-transition: border 0.2s ease-in-out;
  4995. -o-transition: border 0.2s ease-in-out;
  4996. transition: border 0.2s ease-in-out;
  4997. }
  4998. .thumbnail > img,
  4999. .thumbnail a > img {
  5000. margin-left: auto;
  5001. margin-right: auto;
  5002. }
  5003. a.thumbnail:hover,
  5004. a.thumbnail:focus,
  5005. a.thumbnail.active {
  5006. border-color: #337ab7;
  5007. }
  5008. .thumbnail .caption {
  5009. padding: 9px;
  5010. color: #000;
  5011. }
  5012. .alert {
  5013. padding: 15px;
  5014. margin-bottom: 18px;
  5015. border: 1px solid transparent;
  5016. border-radius: 2px;
  5017. }
  5018. .alert h4 {
  5019. margin-top: 0;
  5020. color: inherit;
  5021. }
  5022. .alert .alert-link {
  5023. font-weight: bold;
  5024. }
  5025. .alert > p,
  5026. .alert > ul {
  5027. margin-bottom: 0;
  5028. }
  5029. .alert > p + p {
  5030. margin-top: 5px;
  5031. }
  5032. .alert-dismissable,
  5033. .alert-dismissible {
  5034. padding-right: 35px;
  5035. }
  5036. .alert-dismissable .close,
  5037. .alert-dismissible .close {
  5038. position: relative;
  5039. top: -2px;
  5040. right: -21px;
  5041. color: inherit;
  5042. }
  5043. .alert-success {
  5044. background-color: #dff0d8;
  5045. border-color: #d6e9c6;
  5046. color: #3c763d;
  5047. }
  5048. .alert-success hr {
  5049. border-top-color: #c9e2b3;
  5050. }
  5051. .alert-success .alert-link {
  5052. color: #2b542c;
  5053. }
  5054. .alert-info {
  5055. background-color: #d9edf7;
  5056. border-color: #bce8f1;
  5057. color: #31708f;
  5058. }
  5059. .alert-info hr {
  5060. border-top-color: #a6e1ec;
  5061. }
  5062. .alert-info .alert-link {
  5063. color: #245269;
  5064. }
  5065. .alert-warning {
  5066. background-color: #fcf8e3;
  5067. border-color: #faebcc;
  5068. color: #8a6d3b;
  5069. }
  5070. .alert-warning hr {
  5071. border-top-color: #f7e1b5;
  5072. }
  5073. .alert-warning .alert-link {
  5074. color: #66512c;
  5075. }
  5076. .alert-danger {
  5077. background-color: #f2dede;
  5078. border-color: #ebccd1;
  5079. color: #a94442;
  5080. }
  5081. .alert-danger hr {
  5082. border-top-color: #e4b9c0;
  5083. }
  5084. .alert-danger .alert-link {
  5085. color: #843534;
  5086. }
  5087. @-webkit-keyframes progress-bar-stripes {
  5088. from {
  5089. background-position: 40px 0;
  5090. }
  5091. to {
  5092. background-position: 0 0;
  5093. }
  5094. }
  5095. @keyframes progress-bar-stripes {
  5096. from {
  5097. background-position: 40px 0;
  5098. }
  5099. to {
  5100. background-position: 0 0;
  5101. }
  5102. }
  5103. .progress {
  5104. overflow: hidden;
  5105. height: 18px;
  5106. margin-bottom: 18px;
  5107. background-color: #f5f5f5;
  5108. border-radius: 2px;
  5109. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5110. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5111. }
  5112. .progress-bar {
  5113. float: left;
  5114. width: 0%;
  5115. height: 100%;
  5116. font-size: 12px;
  5117. line-height: 18px;
  5118. color: #fff;
  5119. text-align: center;
  5120. background-color: #337ab7;
  5121. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5122. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5123. -webkit-transition: width 0.6s ease;
  5124. -o-transition: width 0.6s ease;
  5125. transition: width 0.6s ease;
  5126. }
  5127. .progress-striped .progress-bar,
  5128. .progress-bar-striped {
  5129. 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);
  5130. 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);
  5131. 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);
  5132. background-size: 40px 40px;
  5133. }
  5134. .progress.active .progress-bar,
  5135. .progress-bar.active {
  5136. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5137. -o-animation: progress-bar-stripes 2s linear infinite;
  5138. animation: progress-bar-stripes 2s linear infinite;
  5139. }
  5140. .progress-bar-success {
  5141. background-color: #5cb85c;
  5142. }
  5143. .progress-striped .progress-bar-success {
  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-info {
  5149. background-color: #5bc0de;
  5150. }
  5151. .progress-striped .progress-bar-info {
  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. .progress-bar-warning {
  5157. background-color: #f0ad4e;
  5158. }
  5159. .progress-striped .progress-bar-warning {
  5160. 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);
  5161. 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);
  5162. 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);
  5163. }
  5164. .progress-bar-danger {
  5165. background-color: #d9534f;
  5166. }
  5167. .progress-striped .progress-bar-danger {
  5168. 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);
  5169. 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);
  5170. 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);
  5171. }
  5172. .media {
  5173. margin-top: 15px;
  5174. }
  5175. .media:first-child {
  5176. margin-top: 0;
  5177. }
  5178. .media,
  5179. .media-body {
  5180. zoom: 1;
  5181. overflow: hidden;
  5182. }
  5183. .media-body {
  5184. width: 10000px;
  5185. }
  5186. .media-object {
  5187. display: block;
  5188. }
  5189. .media-object.img-thumbnail {
  5190. max-width: none;
  5191. }
  5192. .media-right,
  5193. .media > .pull-right {
  5194. padding-left: 10px;
  5195. }
  5196. .media-left,
  5197. .media > .pull-left {
  5198. padding-right: 10px;
  5199. }
  5200. .media-left,
  5201. .media-right,
  5202. .media-body {
  5203. display: table-cell;
  5204. vertical-align: top;
  5205. }
  5206. .media-middle {
  5207. vertical-align: middle;
  5208. }
  5209. .media-bottom {
  5210. vertical-align: bottom;
  5211. }
  5212. .media-heading {
  5213. margin-top: 0;
  5214. margin-bottom: 5px;
  5215. }
  5216. .media-list {
  5217. padding-left: 0;
  5218. list-style: none;
  5219. }
  5220. .list-group {
  5221. margin-bottom: 20px;
  5222. padding-left: 0;
  5223. }
  5224. .list-group-item {
  5225. position: relative;
  5226. display: block;
  5227. padding: 10px 15px;
  5228. margin-bottom: -1px;
  5229. background-color: #fff;
  5230. border: 1px solid #ddd;
  5231. }
  5232. .list-group-item:first-child {
  5233. border-top-right-radius: 2px;
  5234. border-top-left-radius: 2px;
  5235. }
  5236. .list-group-item:last-child {
  5237. margin-bottom: 0;
  5238. border-bottom-right-radius: 2px;
  5239. border-bottom-left-radius: 2px;
  5240. }
  5241. a.list-group-item,
  5242. button.list-group-item {
  5243. color: #555;
  5244. }
  5245. a.list-group-item .list-group-item-heading,
  5246. button.list-group-item .list-group-item-heading {
  5247. color: #333;
  5248. }
  5249. a.list-group-item:hover,
  5250. button.list-group-item:hover,
  5251. a.list-group-item:focus,
  5252. button.list-group-item:focus {
  5253. text-decoration: none;
  5254. color: #555;
  5255. background-color: #f5f5f5;
  5256. }
  5257. button.list-group-item {
  5258. width: 100%;
  5259. text-align: left;
  5260. }
  5261. .list-group-item.disabled,
  5262. .list-group-item.disabled:hover,
  5263. .list-group-item.disabled:focus {
  5264. background-color: #eeeeee;
  5265. color: #777777;
  5266. cursor: not-allowed;
  5267. }
  5268. .list-group-item.disabled .list-group-item-heading,
  5269. .list-group-item.disabled:hover .list-group-item-heading,
  5270. .list-group-item.disabled:focus .list-group-item-heading {
  5271. color: inherit;
  5272. }
  5273. .list-group-item.disabled .list-group-item-text,
  5274. .list-group-item.disabled:hover .list-group-item-text,
  5275. .list-group-item.disabled:focus .list-group-item-text {
  5276. color: #777777;
  5277. }
  5278. .list-group-item.active,
  5279. .list-group-item.active:hover,
  5280. .list-group-item.active:focus {
  5281. z-index: 2;
  5282. color: #fff;
  5283. background-color: #337ab7;
  5284. border-color: #337ab7;
  5285. }
  5286. .list-group-item.active .list-group-item-heading,
  5287. .list-group-item.active:hover .list-group-item-heading,
  5288. .list-group-item.active:focus .list-group-item-heading,
  5289. .list-group-item.active .list-group-item-heading > small,
  5290. .list-group-item.active:hover .list-group-item-heading > small,
  5291. .list-group-item.active:focus .list-group-item-heading > small,
  5292. .list-group-item.active .list-group-item-heading > .small,
  5293. .list-group-item.active:hover .list-group-item-heading > .small,
  5294. .list-group-item.active:focus .list-group-item-heading > .small {
  5295. color: inherit;
  5296. }
  5297. .list-group-item.active .list-group-item-text,
  5298. .list-group-item.active:hover .list-group-item-text,
  5299. .list-group-item.active:focus .list-group-item-text {
  5300. color: #c7ddef;
  5301. }
  5302. .list-group-item-success {
  5303. color: #3c763d;
  5304. background-color: #dff0d8;
  5305. }
  5306. a.list-group-item-success,
  5307. button.list-group-item-success {
  5308. color: #3c763d;
  5309. }
  5310. a.list-group-item-success .list-group-item-heading,
  5311. button.list-group-item-success .list-group-item-heading {
  5312. color: inherit;
  5313. }
  5314. a.list-group-item-success:hover,
  5315. button.list-group-item-success:hover,
  5316. a.list-group-item-success:focus,
  5317. button.list-group-item-success:focus {
  5318. color: #3c763d;
  5319. background-color: #d0e9c6;
  5320. }
  5321. a.list-group-item-success.active,
  5322. button.list-group-item-success.active,
  5323. a.list-group-item-success.active:hover,
  5324. button.list-group-item-success.active:hover,
  5325. a.list-group-item-success.active:focus,
  5326. button.list-group-item-success.active:focus {
  5327. color: #fff;
  5328. background-color: #3c763d;
  5329. border-color: #3c763d;
  5330. }
  5331. .list-group-item-info {
  5332. color: #31708f;
  5333. background-color: #d9edf7;
  5334. }
  5335. a.list-group-item-info,
  5336. button.list-group-item-info {
  5337. color: #31708f;
  5338. }
  5339. a.list-group-item-info .list-group-item-heading,
  5340. button.list-group-item-info .list-group-item-heading {
  5341. color: inherit;
  5342. }
  5343. a.list-group-item-info:hover,
  5344. button.list-group-item-info:hover,
  5345. a.list-group-item-info:focus,
  5346. button.list-group-item-info:focus {
  5347. color: #31708f;
  5348. background-color: #c4e3f3;
  5349. }
  5350. a.list-group-item-info.active,
  5351. button.list-group-item-info.active,
  5352. a.list-group-item-info.active:hover,
  5353. button.list-group-item-info.active:hover,
  5354. a.list-group-item-info.active:focus,
  5355. button.list-group-item-info.active:focus {
  5356. color: #fff;
  5357. background-color: #31708f;
  5358. border-color: #31708f;
  5359. }
  5360. .list-group-item-warning {
  5361. color: #8a6d3b;
  5362. background-color: #fcf8e3;
  5363. }
  5364. a.list-group-item-warning,
  5365. button.list-group-item-warning {
  5366. color: #8a6d3b;
  5367. }
  5368. a.list-group-item-warning .list-group-item-heading,
  5369. button.list-group-item-warning .list-group-item-heading {
  5370. color: inherit;
  5371. }
  5372. a.list-group-item-warning:hover,
  5373. button.list-group-item-warning:hover,
  5374. a.list-group-item-warning:focus,
  5375. button.list-group-item-warning:focus {
  5376. color: #8a6d3b;
  5377. background-color: #faf2cc;
  5378. }
  5379. a.list-group-item-warning.active,
  5380. button.list-group-item-warning.active,
  5381. a.list-group-item-warning.active:hover,
  5382. button.list-group-item-warning.active:hover,
  5383. a.list-group-item-warning.active:focus,
  5384. button.list-group-item-warning.active:focus {
  5385. color: #fff;
  5386. background-color: #8a6d3b;
  5387. border-color: #8a6d3b;
  5388. }
  5389. .list-group-item-danger {
  5390. color: #a94442;
  5391. background-color: #f2dede;
  5392. }
  5393. a.list-group-item-danger,
  5394. button.list-group-item-danger {
  5395. color: #a94442;
  5396. }
  5397. a.list-group-item-danger .list-group-item-heading,
  5398. button.list-group-item-danger .list-group-item-heading {
  5399. color: inherit;
  5400. }
  5401. a.list-group-item-danger:hover,
  5402. button.list-group-item-danger:hover,
  5403. a.list-group-item-danger:focus,
  5404. button.list-group-item-danger:focus {
  5405. color: #a94442;
  5406. background-color: #ebcccc;
  5407. }
  5408. a.list-group-item-danger.active,
  5409. button.list-group-item-danger.active,
  5410. a.list-group-item-danger.active:hover,
  5411. button.list-group-item-danger.active:hover,
  5412. a.list-group-item-danger.active:focus,
  5413. button.list-group-item-danger.active:focus {
  5414. color: #fff;
  5415. background-color: #a94442;
  5416. border-color: #a94442;
  5417. }
  5418. .list-group-item-heading {
  5419. margin-top: 0;
  5420. margin-bottom: 5px;
  5421. }
  5422. .list-group-item-text {
  5423. margin-bottom: 0;
  5424. line-height: 1.3;
  5425. }
  5426. .panel {
  5427. margin-bottom: 18px;
  5428. background-color: #fff;
  5429. border: 1px solid transparent;
  5430. border-radius: 2px;
  5431. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5432. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5433. }
  5434. .panel-body {
  5435. padding: 15px;
  5436. }
  5437. .panel-heading {
  5438. padding: 10px 15px;
  5439. border-bottom: 1px solid transparent;
  5440. border-top-right-radius: 1px;
  5441. border-top-left-radius: 1px;
  5442. }
  5443. .panel-heading > .dropdown .dropdown-toggle {
  5444. color: inherit;
  5445. }
  5446. .panel-title {
  5447. margin-top: 0;
  5448. margin-bottom: 0;
  5449. font-size: 15px;
  5450. color: inherit;
  5451. }
  5452. .panel-title > a,
  5453. .panel-title > small,
  5454. .panel-title > .small,
  5455. .panel-title > small > a,
  5456. .panel-title > .small > a {
  5457. color: inherit;
  5458. }
  5459. .panel-footer {
  5460. padding: 10px 15px;
  5461. background-color: #f5f5f5;
  5462. border-top: 1px solid #ddd;
  5463. border-bottom-right-radius: 1px;
  5464. border-bottom-left-radius: 1px;
  5465. }
  5466. .panel > .list-group,
  5467. .panel > .panel-collapse > .list-group {
  5468. margin-bottom: 0;
  5469. }
  5470. .panel > .list-group .list-group-item,
  5471. .panel > .panel-collapse > .list-group .list-group-item {
  5472. border-width: 1px 0;
  5473. border-radius: 0;
  5474. }
  5475. .panel > .list-group:first-child .list-group-item:first-child,
  5476. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5477. border-top: 0;
  5478. border-top-right-radius: 1px;
  5479. border-top-left-radius: 1px;
  5480. }
  5481. .panel > .list-group:last-child .list-group-item:last-child,
  5482. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5483. border-bottom: 0;
  5484. border-bottom-right-radius: 1px;
  5485. border-bottom-left-radius: 1px;
  5486. }
  5487. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5488. border-top-right-radius: 0;
  5489. border-top-left-radius: 0;
  5490. }
  5491. .panel-heading + .list-group .list-group-item:first-child {
  5492. border-top-width: 0;
  5493. }
  5494. .list-group + .panel-footer {
  5495. border-top-width: 0;
  5496. }
  5497. .panel > .table,
  5498. .panel > .table-responsive > .table,
  5499. .panel > .panel-collapse > .table {
  5500. margin-bottom: 0;
  5501. }
  5502. .panel > .table caption,
  5503. .panel > .table-responsive > .table caption,
  5504. .panel > .panel-collapse > .table caption {
  5505. padding-left: 15px;
  5506. padding-right: 15px;
  5507. }
  5508. .panel > .table:first-child,
  5509. .panel > .table-responsive:first-child > .table:first-child {
  5510. border-top-right-radius: 1px;
  5511. border-top-left-radius: 1px;
  5512. }
  5513. .panel > .table:first-child > thead:first-child > tr:first-child,
  5514. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5515. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5516. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5517. border-top-left-radius: 1px;
  5518. border-top-right-radius: 1px;
  5519. }
  5520. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5521. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5522. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5523. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5524. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5525. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5526. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5527. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5528. border-top-left-radius: 1px;
  5529. }
  5530. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5531. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5532. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5533. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5534. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5535. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5536. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5537. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5538. border-top-right-radius: 1px;
  5539. }
  5540. .panel > .table:last-child,
  5541. .panel > .table-responsive:last-child > .table:last-child {
  5542. border-bottom-right-radius: 1px;
  5543. border-bottom-left-radius: 1px;
  5544. }
  5545. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5546. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5547. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5548. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5549. border-bottom-left-radius: 1px;
  5550. border-bottom-right-radius: 1px;
  5551. }
  5552. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5553. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5554. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5555. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5556. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5557. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5558. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5559. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5560. border-bottom-left-radius: 1px;
  5561. }
  5562. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5563. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5564. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5565. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5566. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5567. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5568. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5569. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5570. border-bottom-right-radius: 1px;
  5571. }
  5572. .panel > .panel-body + .table,
  5573. .panel > .panel-body + .table-responsive,
  5574. .panel > .table + .panel-body,
  5575. .panel > .table-responsive + .panel-body {
  5576. border-top: 1px solid #ddd;
  5577. }
  5578. .panel > .table > tbody:first-child > tr:first-child th,
  5579. .panel > .table > tbody:first-child > tr:first-child td {
  5580. border-top: 0;
  5581. }
  5582. .panel > .table-bordered,
  5583. .panel > .table-responsive > .table-bordered {
  5584. border: 0;
  5585. }
  5586. .panel > .table-bordered > thead > tr > th:first-child,
  5587. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5588. .panel > .table-bordered > tbody > tr > th:first-child,
  5589. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5590. .panel > .table-bordered > tfoot > tr > th:first-child,
  5591. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5592. .panel > .table-bordered > thead > tr > td:first-child,
  5593. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5594. .panel > .table-bordered > tbody > tr > td:first-child,
  5595. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5596. .panel > .table-bordered > tfoot > tr > td:first-child,
  5597. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5598. border-left: 0;
  5599. }
  5600. .panel > .table-bordered > thead > tr > th:last-child,
  5601. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5602. .panel > .table-bordered > tbody > tr > th:last-child,
  5603. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5604. .panel > .table-bordered > tfoot > tr > th:last-child,
  5605. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5606. .panel > .table-bordered > thead > tr > td:last-child,
  5607. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5608. .panel > .table-bordered > tbody > tr > td:last-child,
  5609. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5610. .panel > .table-bordered > tfoot > tr > td:last-child,
  5611. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5612. border-right: 0;
  5613. }
  5614. .panel > .table-bordered > thead > tr:first-child > td,
  5615. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5616. .panel > .table-bordered > tbody > tr:first-child > td,
  5617. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5618. .panel > .table-bordered > thead > tr:first-child > th,
  5619. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5620. .panel > .table-bordered > tbody > tr:first-child > th,
  5621. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5622. border-bottom: 0;
  5623. }
  5624. .panel > .table-bordered > tbody > tr:last-child > td,
  5625. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5626. .panel > .table-bordered > tfoot > tr:last-child > td,
  5627. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5628. .panel > .table-bordered > tbody > tr:last-child > th,
  5629. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5630. .panel > .table-bordered > tfoot > tr:last-child > th,
  5631. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5632. border-bottom: 0;
  5633. }
  5634. .panel > .table-responsive {
  5635. border: 0;
  5636. margin-bottom: 0;
  5637. }
  5638. .panel-group {
  5639. margin-bottom: 18px;
  5640. }
  5641. .panel-group .panel {
  5642. margin-bottom: 0;
  5643. border-radius: 2px;
  5644. }
  5645. .panel-group .panel + .panel {
  5646. margin-top: 5px;
  5647. }
  5648. .panel-group .panel-heading {
  5649. border-bottom: 0;
  5650. }
  5651. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5652. .panel-group .panel-heading + .panel-collapse > .list-group {
  5653. border-top: 1px solid #ddd;
  5654. }
  5655. .panel-group .panel-footer {
  5656. border-top: 0;
  5657. }
  5658. .panel-group .panel-footer + .panel-collapse .panel-body {
  5659. border-bottom: 1px solid #ddd;
  5660. }
  5661. .panel-default {
  5662. border-color: #ddd;
  5663. }
  5664. .panel-default > .panel-heading {
  5665. color: #333333;
  5666. background-color: #f5f5f5;
  5667. border-color: #ddd;
  5668. }
  5669. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5670. border-top-color: #ddd;
  5671. }
  5672. .panel-default > .panel-heading .badge {
  5673. color: #f5f5f5;
  5674. background-color: #333333;
  5675. }
  5676. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5677. border-bottom-color: #ddd;
  5678. }
  5679. .panel-primary {
  5680. border-color: #337ab7;
  5681. }
  5682. .panel-primary > .panel-heading {
  5683. color: #fff;
  5684. background-color: #337ab7;
  5685. border-color: #337ab7;
  5686. }
  5687. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5688. border-top-color: #337ab7;
  5689. }
  5690. .panel-primary > .panel-heading .badge {
  5691. color: #337ab7;
  5692. background-color: #fff;
  5693. }
  5694. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5695. border-bottom-color: #337ab7;
  5696. }
  5697. .panel-success {
  5698. border-color: #d6e9c6;
  5699. }
  5700. .panel-success > .panel-heading {
  5701. color: #3c763d;
  5702. background-color: #dff0d8;
  5703. border-color: #d6e9c6;
  5704. }
  5705. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5706. border-top-color: #d6e9c6;
  5707. }
  5708. .panel-success > .panel-heading .badge {
  5709. color: #dff0d8;
  5710. background-color: #3c763d;
  5711. }
  5712. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5713. border-bottom-color: #d6e9c6;
  5714. }
  5715. .panel-info {
  5716. border-color: #bce8f1;
  5717. }
  5718. .panel-info > .panel-heading {
  5719. color: #31708f;
  5720. background-color: #d9edf7;
  5721. border-color: #bce8f1;
  5722. }
  5723. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5724. border-top-color: #bce8f1;
  5725. }
  5726. .panel-info > .panel-heading .badge {
  5727. color: #d9edf7;
  5728. background-color: #31708f;
  5729. }
  5730. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5731. border-bottom-color: #bce8f1;
  5732. }
  5733. .panel-warning {
  5734. border-color: #faebcc;
  5735. }
  5736. .panel-warning > .panel-heading {
  5737. color: #8a6d3b;
  5738. background-color: #fcf8e3;
  5739. border-color: #faebcc;
  5740. }
  5741. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5742. border-top-color: #faebcc;
  5743. }
  5744. .panel-warning > .panel-heading .badge {
  5745. color: #fcf8e3;
  5746. background-color: #8a6d3b;
  5747. }
  5748. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5749. border-bottom-color: #faebcc;
  5750. }
  5751. .panel-danger {
  5752. border-color: #ebccd1;
  5753. }
  5754. .panel-danger > .panel-heading {
  5755. color: #a94442;
  5756. background-color: #f2dede;
  5757. border-color: #ebccd1;
  5758. }
  5759. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5760. border-top-color: #ebccd1;
  5761. }
  5762. .panel-danger > .panel-heading .badge {
  5763. color: #f2dede;
  5764. background-color: #a94442;
  5765. }
  5766. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5767. border-bottom-color: #ebccd1;
  5768. }
  5769. .embed-responsive {
  5770. position: relative;
  5771. display: block;
  5772. height: 0;
  5773. padding: 0;
  5774. overflow: hidden;
  5775. }
  5776. .embed-responsive .embed-responsive-item,
  5777. .embed-responsive iframe,
  5778. .embed-responsive embed,
  5779. .embed-responsive object,
  5780. .embed-responsive video {
  5781. position: absolute;
  5782. top: 0;
  5783. left: 0;
  5784. bottom: 0;
  5785. height: 100%;
  5786. width: 100%;
  5787. border: 0;
  5788. }
  5789. .embed-responsive-16by9 {
  5790. padding-bottom: 56.25%;
  5791. }
  5792. .embed-responsive-4by3 {
  5793. padding-bottom: 75%;
  5794. }
  5795. .well {
  5796. min-height: 20px;
  5797. padding: 19px;
  5798. margin-bottom: 20px;
  5799. background-color: #f5f5f5;
  5800. border: 1px solid #e3e3e3;
  5801. border-radius: 2px;
  5802. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5803. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5804. }
  5805. .well blockquote {
  5806. border-color: #ddd;
  5807. border-color: rgba(0, 0, 0, 0.15);
  5808. }
  5809. .well-lg {
  5810. padding: 24px;
  5811. border-radius: 3px;
  5812. }
  5813. .well-sm {
  5814. padding: 9px;
  5815. border-radius: 1px;
  5816. }
  5817. .close {
  5818. float: right;
  5819. font-size: 19.5px;
  5820. font-weight: bold;
  5821. line-height: 1;
  5822. color: #000;
  5823. text-shadow: 0 1px 0 #fff;
  5824. opacity: 0.2;
  5825. filter: alpha(opacity=20);
  5826. }
  5827. .close:hover,
  5828. .close:focus {
  5829. color: #000;
  5830. text-decoration: none;
  5831. cursor: pointer;
  5832. opacity: 0.5;
  5833. filter: alpha(opacity=50);
  5834. }
  5835. button.close {
  5836. padding: 0;
  5837. cursor: pointer;
  5838. background: transparent;
  5839. border: 0;
  5840. -webkit-appearance: none;
  5841. }
  5842. .modal-open {
  5843. overflow: hidden;
  5844. }
  5845. .modal {
  5846. display: none;
  5847. overflow: hidden;
  5848. position: fixed;
  5849. top: 0;
  5850. right: 0;
  5851. bottom: 0;
  5852. left: 0;
  5853. z-index: 1050;
  5854. -webkit-overflow-scrolling: touch;
  5855. outline: 0;
  5856. }
  5857. .modal.fade .modal-dialog {
  5858. -webkit-transform: translate(0, -25%);
  5859. -ms-transform: translate(0, -25%);
  5860. -o-transform: translate(0, -25%);
  5861. transform: translate(0, -25%);
  5862. -webkit-transition: -webkit-transform 0.3s ease-out;
  5863. -moz-transition: -moz-transform 0.3s ease-out;
  5864. -o-transition: -o-transform 0.3s ease-out;
  5865. transition: transform 0.3s ease-out;
  5866. }
  5867. .modal.in .modal-dialog {
  5868. -webkit-transform: translate(0, 0);
  5869. -ms-transform: translate(0, 0);
  5870. -o-transform: translate(0, 0);
  5871. transform: translate(0, 0);
  5872. }
  5873. .modal-open .modal {
  5874. overflow-x: hidden;
  5875. overflow-y: auto;
  5876. }
  5877. .modal-dialog {
  5878. position: relative;
  5879. width: auto;
  5880. margin: 10px;
  5881. }
  5882. .modal-content {
  5883. position: relative;
  5884. background-color: #fff;
  5885. border: 1px solid #999;
  5886. border: 1px solid rgba(0, 0, 0, 0.2);
  5887. border-radius: 3px;
  5888. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5889. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5890. background-clip: padding-box;
  5891. outline: 0;
  5892. }
  5893. .modal-backdrop {
  5894. position: fixed;
  5895. top: 0;
  5896. right: 0;
  5897. bottom: 0;
  5898. left: 0;
  5899. z-index: 1040;
  5900. background-color: #000;
  5901. }
  5902. .modal-backdrop.fade {
  5903. opacity: 0;
  5904. filter: alpha(opacity=0);
  5905. }
  5906. .modal-backdrop.in {
  5907. opacity: 0.5;
  5908. filter: alpha(opacity=50);
  5909. }
  5910. .modal-header {
  5911. padding: 15px;
  5912. border-bottom: 1px solid #e5e5e5;
  5913. }
  5914. .modal-header .close {
  5915. margin-top: -2px;
  5916. }
  5917. .modal-title {
  5918. margin: 0;
  5919. line-height: 1.42857143;
  5920. }
  5921. .modal-body {
  5922. position: relative;
  5923. padding: 15px;
  5924. }
  5925. .modal-footer {
  5926. padding: 15px;
  5927. text-align: right;
  5928. border-top: 1px solid #e5e5e5;
  5929. }
  5930. .modal-footer .btn + .btn {
  5931. margin-left: 5px;
  5932. margin-bottom: 0;
  5933. }
  5934. .modal-footer .btn-group .btn + .btn {
  5935. margin-left: -1px;
  5936. }
  5937. .modal-footer .btn-block + .btn-block {
  5938. margin-left: 0;
  5939. }
  5940. .modal-scrollbar-measure {
  5941. position: absolute;
  5942. top: -9999px;
  5943. width: 50px;
  5944. height: 50px;
  5945. overflow: scroll;
  5946. }
  5947. @media (min-width: 768px) {
  5948. .modal-dialog {
  5949. width: 600px;
  5950. margin: 30px auto;
  5951. }
  5952. .modal-content {
  5953. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5954. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5955. }
  5956. .modal-sm {
  5957. width: 300px;
  5958. }
  5959. }
  5960. @media (min-width: 992px) {
  5961. .modal-lg {
  5962. width: 900px;
  5963. }
  5964. }
  5965. .tooltip {
  5966. position: absolute;
  5967. z-index: 1070;
  5968. display: block;
  5969. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5970. font-style: normal;
  5971. font-weight: normal;
  5972. letter-spacing: normal;
  5973. line-break: auto;
  5974. line-height: 1.42857143;
  5975. text-align: left;
  5976. text-align: start;
  5977. text-decoration: none;
  5978. text-shadow: none;
  5979. text-transform: none;
  5980. white-space: normal;
  5981. word-break: normal;
  5982. word-spacing: normal;
  5983. word-wrap: normal;
  5984. font-size: 12px;
  5985. opacity: 0;
  5986. filter: alpha(opacity=0);
  5987. }
  5988. .tooltip.in {
  5989. opacity: 0.9;
  5990. filter: alpha(opacity=90);
  5991. }
  5992. .tooltip.top {
  5993. margin-top: -3px;
  5994. padding: 5px 0;
  5995. }
  5996. .tooltip.right {
  5997. margin-left: 3px;
  5998. padding: 0 5px;
  5999. }
  6000. .tooltip.bottom {
  6001. margin-top: 3px;
  6002. padding: 5px 0;
  6003. }
  6004. .tooltip.left {
  6005. margin-left: -3px;
  6006. padding: 0 5px;
  6007. }
  6008. .tooltip-inner {
  6009. max-width: 200px;
  6010. padding: 3px 8px;
  6011. color: #fff;
  6012. text-align: center;
  6013. background-color: #000;
  6014. border-radius: 2px;
  6015. }
  6016. .tooltip-arrow {
  6017. position: absolute;
  6018. width: 0;
  6019. height: 0;
  6020. border-color: transparent;
  6021. border-style: solid;
  6022. }
  6023. .tooltip.top .tooltip-arrow {
  6024. bottom: 0;
  6025. left: 50%;
  6026. margin-left: -5px;
  6027. border-width: 5px 5px 0;
  6028. border-top-color: #000;
  6029. }
  6030. .tooltip.top-left .tooltip-arrow {
  6031. bottom: 0;
  6032. right: 5px;
  6033. margin-bottom: -5px;
  6034. border-width: 5px 5px 0;
  6035. border-top-color: #000;
  6036. }
  6037. .tooltip.top-right .tooltip-arrow {
  6038. bottom: 0;
  6039. left: 5px;
  6040. margin-bottom: -5px;
  6041. border-width: 5px 5px 0;
  6042. border-top-color: #000;
  6043. }
  6044. .tooltip.right .tooltip-arrow {
  6045. top: 50%;
  6046. left: 0;
  6047. margin-top: -5px;
  6048. border-width: 5px 5px 5px 0;
  6049. border-right-color: #000;
  6050. }
  6051. .tooltip.left .tooltip-arrow {
  6052. top: 50%;
  6053. right: 0;
  6054. margin-top: -5px;
  6055. border-width: 5px 0 5px 5px;
  6056. border-left-color: #000;
  6057. }
  6058. .tooltip.bottom .tooltip-arrow {
  6059. top: 0;
  6060. left: 50%;
  6061. margin-left: -5px;
  6062. border-width: 0 5px 5px;
  6063. border-bottom-color: #000;
  6064. }
  6065. .tooltip.bottom-left .tooltip-arrow {
  6066. top: 0;
  6067. right: 5px;
  6068. margin-top: -5px;
  6069. border-width: 0 5px 5px;
  6070. border-bottom-color: #000;
  6071. }
  6072. .tooltip.bottom-right .tooltip-arrow {
  6073. top: 0;
  6074. left: 5px;
  6075. margin-top: -5px;
  6076. border-width: 0 5px 5px;
  6077. border-bottom-color: #000;
  6078. }
  6079. .popover {
  6080. position: absolute;
  6081. top: 0;
  6082. left: 0;
  6083. z-index: 1060;
  6084. display: none;
  6085. max-width: 276px;
  6086. padding: 1px;
  6087. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6088. font-style: normal;
  6089. font-weight: normal;
  6090. letter-spacing: normal;
  6091. line-break: auto;
  6092. line-height: 1.42857143;
  6093. text-align: left;
  6094. text-align: start;
  6095. text-decoration: none;
  6096. text-shadow: none;
  6097. text-transform: none;
  6098. white-space: normal;
  6099. word-break: normal;
  6100. word-spacing: normal;
  6101. word-wrap: normal;
  6102. font-size: 13px;
  6103. background-color: #fff;
  6104. background-clip: padding-box;
  6105. border: 1px solid #ccc;
  6106. border: 1px solid rgba(0, 0, 0, 0.2);
  6107. border-radius: 3px;
  6108. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6109. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6110. }
  6111. .popover.top {
  6112. margin-top: -10px;
  6113. }
  6114. .popover.right {
  6115. margin-left: 10px;
  6116. }
  6117. .popover.bottom {
  6118. margin-top: 10px;
  6119. }
  6120. .popover.left {
  6121. margin-left: -10px;
  6122. }
  6123. .popover-title {
  6124. margin: 0;
  6125. padding: 8px 14px;
  6126. font-size: 13px;
  6127. background-color: #f7f7f7;
  6128. border-bottom: 1px solid #ebebeb;
  6129. border-radius: 2px 2px 0 0;
  6130. }
  6131. .popover-content {
  6132. padding: 9px 14px;
  6133. }
  6134. .popover > .arrow,
  6135. .popover > .arrow:after {
  6136. position: absolute;
  6137. display: block;
  6138. width: 0;
  6139. height: 0;
  6140. border-color: transparent;
  6141. border-style: solid;
  6142. }
  6143. .popover > .arrow {
  6144. border-width: 11px;
  6145. }
  6146. .popover > .arrow:after {
  6147. border-width: 10px;
  6148. content: "";
  6149. }
  6150. .popover.top > .arrow {
  6151. left: 50%;
  6152. margin-left: -11px;
  6153. border-bottom-width: 0;
  6154. border-top-color: #999999;
  6155. border-top-color: rgba(0, 0, 0, 0.25);
  6156. bottom: -11px;
  6157. }
  6158. .popover.top > .arrow:after {
  6159. content: " ";
  6160. bottom: 1px;
  6161. margin-left: -10px;
  6162. border-bottom-width: 0;
  6163. border-top-color: #fff;
  6164. }
  6165. .popover.right > .arrow {
  6166. top: 50%;
  6167. left: -11px;
  6168. margin-top: -11px;
  6169. border-left-width: 0;
  6170. border-right-color: #999999;
  6171. border-right-color: rgba(0, 0, 0, 0.25);
  6172. }
  6173. .popover.right > .arrow:after {
  6174. content: " ";
  6175. left: 1px;
  6176. bottom: -10px;
  6177. border-left-width: 0;
  6178. border-right-color: #fff;
  6179. }
  6180. .popover.bottom > .arrow {
  6181. left: 50%;
  6182. margin-left: -11px;
  6183. border-top-width: 0;
  6184. border-bottom-color: #999999;
  6185. border-bottom-color: rgba(0, 0, 0, 0.25);
  6186. top: -11px;
  6187. }
  6188. .popover.bottom > .arrow:after {
  6189. content: " ";
  6190. top: 1px;
  6191. margin-left: -10px;
  6192. border-top-width: 0;
  6193. border-bottom-color: #fff;
  6194. }
  6195. .popover.left > .arrow {
  6196. top: 50%;
  6197. right: -11px;
  6198. margin-top: -11px;
  6199. border-right-width: 0;
  6200. border-left-color: #999999;
  6201. border-left-color: rgba(0, 0, 0, 0.25);
  6202. }
  6203. .popover.left > .arrow:after {
  6204. content: " ";
  6205. right: 1px;
  6206. border-right-width: 0;
  6207. border-left-color: #fff;
  6208. bottom: -10px;
  6209. }
  6210. .carousel {
  6211. position: relative;
  6212. }
  6213. .carousel-inner {
  6214. position: relative;
  6215. overflow: hidden;
  6216. width: 100%;
  6217. }
  6218. .carousel-inner > .item {
  6219. display: none;
  6220. position: relative;
  6221. -webkit-transition: 0.6s ease-in-out left;
  6222. -o-transition: 0.6s ease-in-out left;
  6223. transition: 0.6s ease-in-out left;
  6224. }
  6225. .carousel-inner > .item > img,
  6226. .carousel-inner > .item > a > img {
  6227. line-height: 1;
  6228. }
  6229. @media all and (transform-3d), (-webkit-transform-3d) {
  6230. .carousel-inner > .item {
  6231. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6232. -moz-transition: -moz-transform 0.6s ease-in-out;
  6233. -o-transition: -o-transform 0.6s ease-in-out;
  6234. transition: transform 0.6s ease-in-out;
  6235. -webkit-backface-visibility: hidden;
  6236. -moz-backface-visibility: hidden;
  6237. backface-visibility: hidden;
  6238. -webkit-perspective: 1000px;
  6239. -moz-perspective: 1000px;
  6240. perspective: 1000px;
  6241. }
  6242. .carousel-inner > .item.next,
  6243. .carousel-inner > .item.active.right {
  6244. -webkit-transform: translate3d(100%, 0, 0);
  6245. transform: translate3d(100%, 0, 0);
  6246. left: 0;
  6247. }
  6248. .carousel-inner > .item.prev,
  6249. .carousel-inner > .item.active.left {
  6250. -webkit-transform: translate3d(-100%, 0, 0);
  6251. transform: translate3d(-100%, 0, 0);
  6252. left: 0;
  6253. }
  6254. .carousel-inner > .item.next.left,
  6255. .carousel-inner > .item.prev.right,
  6256. .carousel-inner > .item.active {
  6257. -webkit-transform: translate3d(0, 0, 0);
  6258. transform: translate3d(0, 0, 0);
  6259. left: 0;
  6260. }
  6261. }
  6262. .carousel-inner > .active,
  6263. .carousel-inner > .next,
  6264. .carousel-inner > .prev {
  6265. display: block;
  6266. }
  6267. .carousel-inner > .active {
  6268. left: 0;
  6269. }
  6270. .carousel-inner > .next,
  6271. .carousel-inner > .prev {
  6272. position: absolute;
  6273. top: 0;
  6274. width: 100%;
  6275. }
  6276. .carousel-inner > .next {
  6277. left: 100%;
  6278. }
  6279. .carousel-inner > .prev {
  6280. left: -100%;
  6281. }
  6282. .carousel-inner > .next.left,
  6283. .carousel-inner > .prev.right {
  6284. left: 0;
  6285. }
  6286. .carousel-inner > .active.left {
  6287. left: -100%;
  6288. }
  6289. .carousel-inner > .active.right {
  6290. left: 100%;
  6291. }
  6292. .carousel-control {
  6293. position: absolute;
  6294. top: 0;
  6295. left: 0;
  6296. bottom: 0;
  6297. width: 15%;
  6298. opacity: 0.5;
  6299. filter: alpha(opacity=50);
  6300. font-size: 20px;
  6301. color: #fff;
  6302. text-align: center;
  6303. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6304. background-color: rgba(0, 0, 0, 0);
  6305. }
  6306. .carousel-control.left {
  6307. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6308. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6309. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6310. background-repeat: repeat-x;
  6311. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6312. }
  6313. .carousel-control.right {
  6314. left: auto;
  6315. right: 0;
  6316. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6317. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6318. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6319. background-repeat: repeat-x;
  6320. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6321. }
  6322. .carousel-control:hover,
  6323. .carousel-control:focus {
  6324. outline: 0;
  6325. color: #fff;
  6326. text-decoration: none;
  6327. opacity: 0.9;
  6328. filter: alpha(opacity=90);
  6329. }
  6330. .carousel-control .icon-prev,
  6331. .carousel-control .icon-next,
  6332. .carousel-control .glyphicon-chevron-left,
  6333. .carousel-control .glyphicon-chevron-right {
  6334. position: absolute;
  6335. top: 50%;
  6336. margin-top: -10px;
  6337. z-index: 5;
  6338. display: inline-block;
  6339. }
  6340. .carousel-control .icon-prev,
  6341. .carousel-control .glyphicon-chevron-left {
  6342. left: 50%;
  6343. margin-left: -10px;
  6344. }
  6345. .carousel-control .icon-next,
  6346. .carousel-control .glyphicon-chevron-right {
  6347. right: 50%;
  6348. margin-right: -10px;
  6349. }
  6350. .carousel-control .icon-prev,
  6351. .carousel-control .icon-next {
  6352. width: 20px;
  6353. height: 20px;
  6354. line-height: 1;
  6355. font-family: serif;
  6356. }
  6357. .carousel-control .icon-prev:before {
  6358. content: '\2039';
  6359. }
  6360. .carousel-control .icon-next:before {
  6361. content: '\203a';
  6362. }
  6363. .carousel-indicators {
  6364. position: absolute;
  6365. bottom: 10px;
  6366. left: 50%;
  6367. z-index: 15;
  6368. width: 60%;
  6369. margin-left: -30%;
  6370. padding-left: 0;
  6371. list-style: none;
  6372. text-align: center;
  6373. }
  6374. .carousel-indicators li {
  6375. display: inline-block;
  6376. width: 10px;
  6377. height: 10px;
  6378. margin: 1px;
  6379. text-indent: -999px;
  6380. border: 1px solid #fff;
  6381. border-radius: 10px;
  6382. cursor: pointer;
  6383. background-color: #000 \9;
  6384. background-color: rgba(0, 0, 0, 0);
  6385. }
  6386. .carousel-indicators .active {
  6387. margin: 0;
  6388. width: 12px;
  6389. height: 12px;
  6390. background-color: #fff;
  6391. }
  6392. .carousel-caption {
  6393. position: absolute;
  6394. left: 15%;
  6395. right: 15%;
  6396. bottom: 20px;
  6397. z-index: 10;
  6398. padding-top: 20px;
  6399. padding-bottom: 20px;
  6400. color: #fff;
  6401. text-align: center;
  6402. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6403. }
  6404. .carousel-caption .btn {
  6405. text-shadow: none;
  6406. }
  6407. @media screen and (min-width: 768px) {
  6408. .carousel-control .glyphicon-chevron-left,
  6409. .carousel-control .glyphicon-chevron-right,
  6410. .carousel-control .icon-prev,
  6411. .carousel-control .icon-next {
  6412. width: 30px;
  6413. height: 30px;
  6414. margin-top: -10px;
  6415. font-size: 30px;
  6416. }
  6417. .carousel-control .glyphicon-chevron-left,
  6418. .carousel-control .icon-prev {
  6419. margin-left: -10px;
  6420. }
  6421. .carousel-control .glyphicon-chevron-right,
  6422. .carousel-control .icon-next {
  6423. margin-right: -10px;
  6424. }
  6425. .carousel-caption {
  6426. left: 20%;
  6427. right: 20%;
  6428. padding-bottom: 30px;
  6429. }
  6430. .carousel-indicators {
  6431. bottom: 20px;
  6432. }
  6433. }
  6434. .clearfix:before,
  6435. .clearfix:after,
  6436. .dl-horizontal dd:before,
  6437. .dl-horizontal dd:after,
  6438. .container:before,
  6439. .container:after,
  6440. .container-fluid:before,
  6441. .container-fluid:after,
  6442. .row:before,
  6443. .row:after,
  6444. .form-horizontal .form-group:before,
  6445. .form-horizontal .form-group:after,
  6446. .btn-toolbar:before,
  6447. .btn-toolbar:after,
  6448. .btn-group-vertical > .btn-group:before,
  6449. .btn-group-vertical > .btn-group:after,
  6450. .nav:before,
  6451. .nav:after,
  6452. .navbar:before,
  6453. .navbar:after,
  6454. .navbar-header:before,
  6455. .navbar-header:after,
  6456. .navbar-collapse:before,
  6457. .navbar-collapse:after,
  6458. .pager:before,
  6459. .pager:after,
  6460. .panel-body:before,
  6461. .panel-body:after,
  6462. .modal-header:before,
  6463. .modal-header:after,
  6464. .modal-footer:before,
  6465. .modal-footer:after,
  6466. .item_buttons:before,
  6467. .item_buttons:after {
  6468. content: " ";
  6469. display: table;
  6470. }
  6471. .clearfix:after,
  6472. .dl-horizontal dd:after,
  6473. .container:after,
  6474. .container-fluid:after,
  6475. .row:after,
  6476. .form-horizontal .form-group:after,
  6477. .btn-toolbar:after,
  6478. .btn-group-vertical > .btn-group:after,
  6479. .nav:after,
  6480. .navbar:after,
  6481. .navbar-header:after,
  6482. .navbar-collapse:after,
  6483. .pager:after,
  6484. .panel-body:after,
  6485. .modal-header:after,
  6486. .modal-footer:after,
  6487. .item_buttons:after {
  6488. clear: both;
  6489. }
  6490. .center-block {
  6491. display: block;
  6492. margin-left: auto;
  6493. margin-right: auto;
  6494. }
  6495. .pull-right {
  6496. float: right !important;
  6497. }
  6498. .pull-left {
  6499. float: left !important;
  6500. }
  6501. .hide {
  6502. display: none !important;
  6503. }
  6504. .show {
  6505. display: block !important;
  6506. }
  6507. .invisible {
  6508. visibility: hidden;
  6509. }
  6510. .text-hide {
  6511. font: 0/0 a;
  6512. color: transparent;
  6513. text-shadow: none;
  6514. background-color: transparent;
  6515. border: 0;
  6516. }
  6517. .hidden {
  6518. display: none !important;
  6519. }
  6520. .affix {
  6521. position: fixed;
  6522. }
  6523. @-ms-viewport {
  6524. width: device-width;
  6525. }
  6526. .visible-xs,
  6527. .visible-sm,
  6528. .visible-md,
  6529. .visible-lg {
  6530. display: none !important;
  6531. }
  6532. .visible-xs-block,
  6533. .visible-xs-inline,
  6534. .visible-xs-inline-block,
  6535. .visible-sm-block,
  6536. .visible-sm-inline,
  6537. .visible-sm-inline-block,
  6538. .visible-md-block,
  6539. .visible-md-inline,
  6540. .visible-md-inline-block,
  6541. .visible-lg-block,
  6542. .visible-lg-inline,
  6543. .visible-lg-inline-block {
  6544. display: none !important;
  6545. }
  6546. @media (max-width: 767px) {
  6547. .visible-xs {
  6548. display: block !important;
  6549. }
  6550. table.visible-xs {
  6551. display: table !important;
  6552. }
  6553. tr.visible-xs {
  6554. display: table-row !important;
  6555. }
  6556. th.visible-xs,
  6557. td.visible-xs {
  6558. display: table-cell !important;
  6559. }
  6560. }
  6561. @media (max-width: 767px) {
  6562. .visible-xs-block {
  6563. display: block !important;
  6564. }
  6565. }
  6566. @media (max-width: 767px) {
  6567. .visible-xs-inline {
  6568. display: inline !important;
  6569. }
  6570. }
  6571. @media (max-width: 767px) {
  6572. .visible-xs-inline-block {
  6573. display: inline-block !important;
  6574. }
  6575. }
  6576. @media (min-width: 768px) and (max-width: 991px) {
  6577. .visible-sm {
  6578. display: block !important;
  6579. }
  6580. table.visible-sm {
  6581. display: table !important;
  6582. }
  6583. tr.visible-sm {
  6584. display: table-row !important;
  6585. }
  6586. th.visible-sm,
  6587. td.visible-sm {
  6588. display: table-cell !important;
  6589. }
  6590. }
  6591. @media (min-width: 768px) and (max-width: 991px) {
  6592. .visible-sm-block {
  6593. display: block !important;
  6594. }
  6595. }
  6596. @media (min-width: 768px) and (max-width: 991px) {
  6597. .visible-sm-inline {
  6598. display: inline !important;
  6599. }
  6600. }
  6601. @media (min-width: 768px) and (max-width: 991px) {
  6602. .visible-sm-inline-block {
  6603. display: inline-block !important;
  6604. }
  6605. }
  6606. @media (min-width: 992px) and (max-width: 1199px) {
  6607. .visible-md {
  6608. display: block !important;
  6609. }
  6610. table.visible-md {
  6611. display: table !important;
  6612. }
  6613. tr.visible-md {
  6614. display: table-row !important;
  6615. }
  6616. th.visible-md,
  6617. td.visible-md {
  6618. display: table-cell !important;
  6619. }
  6620. }
  6621. @media (min-width: 992px) and (max-width: 1199px) {
  6622. .visible-md-block {
  6623. display: block !important;
  6624. }
  6625. }
  6626. @media (min-width: 992px) and (max-width: 1199px) {
  6627. .visible-md-inline {
  6628. display: inline !important;
  6629. }
  6630. }
  6631. @media (min-width: 992px) and (max-width: 1199px) {
  6632. .visible-md-inline-block {
  6633. display: inline-block !important;
  6634. }
  6635. }
  6636. @media (min-width: 1200px) {
  6637. .visible-lg {
  6638. display: block !important;
  6639. }
  6640. table.visible-lg {
  6641. display: table !important;
  6642. }
  6643. tr.visible-lg {
  6644. display: table-row !important;
  6645. }
  6646. th.visible-lg,
  6647. td.visible-lg {
  6648. display: table-cell !important;
  6649. }
  6650. }
  6651. @media (min-width: 1200px) {
  6652. .visible-lg-block {
  6653. display: block !important;
  6654. }
  6655. }
  6656. @media (min-width: 1200px) {
  6657. .visible-lg-inline {
  6658. display: inline !important;
  6659. }
  6660. }
  6661. @media (min-width: 1200px) {
  6662. .visible-lg-inline-block {
  6663. display: inline-block !important;
  6664. }
  6665. }
  6666. @media (max-width: 767px) {
  6667. .hidden-xs {
  6668. display: none !important;
  6669. }
  6670. }
  6671. @media (min-width: 768px) and (max-width: 991px) {
  6672. .hidden-sm {
  6673. display: none !important;
  6674. }
  6675. }
  6676. @media (min-width: 992px) and (max-width: 1199px) {
  6677. .hidden-md {
  6678. display: none !important;
  6679. }
  6680. }
  6681. @media (min-width: 1200px) {
  6682. .hidden-lg {
  6683. display: none !important;
  6684. }
  6685. }
  6686. .visible-print {
  6687. display: none !important;
  6688. }
  6689. @media print {
  6690. .visible-print {
  6691. display: block !important;
  6692. }
  6693. table.visible-print {
  6694. display: table !important;
  6695. }
  6696. tr.visible-print {
  6697. display: table-row !important;
  6698. }
  6699. th.visible-print,
  6700. td.visible-print {
  6701. display: table-cell !important;
  6702. }
  6703. }
  6704. .visible-print-block {
  6705. display: none !important;
  6706. }
  6707. @media print {
  6708. .visible-print-block {
  6709. display: block !important;
  6710. }
  6711. }
  6712. .visible-print-inline {
  6713. display: none !important;
  6714. }
  6715. @media print {
  6716. .visible-print-inline {
  6717. display: inline !important;
  6718. }
  6719. }
  6720. .visible-print-inline-block {
  6721. display: none !important;
  6722. }
  6723. @media print {
  6724. .visible-print-inline-block {
  6725. display: inline-block !important;
  6726. }
  6727. }
  6728. @media print {
  6729. .hidden-print {
  6730. display: none !important;
  6731. }
  6732. }
  6733. /*!
  6734. *
  6735. * Font Awesome
  6736. *
  6737. */
  6738. /*!
  6739. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  6740. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  6741. */
  6742. /* FONT PATH
  6743. * -------------------------- */
  6744. @font-face {
  6745. font-family: 'FontAwesome';
  6746. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');
  6747. 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');
  6748. font-weight: normal;
  6749. font-style: normal;
  6750. }
  6751. .fa {
  6752. display: inline-block;
  6753. font: normal normal normal 14px/1 FontAwesome;
  6754. font-size: inherit;
  6755. text-rendering: auto;
  6756. -webkit-font-smoothing: antialiased;
  6757. -moz-osx-font-smoothing: grayscale;
  6758. }
  6759. /* makes the font 33% larger relative to the icon container */
  6760. .fa-lg {
  6761. font-size: 1.33333333em;
  6762. line-height: 0.75em;
  6763. vertical-align: -15%;
  6764. }
  6765. .fa-2x {
  6766. font-size: 2em;
  6767. }
  6768. .fa-3x {
  6769. font-size: 3em;
  6770. }
  6771. .fa-4x {
  6772. font-size: 4em;
  6773. }
  6774. .fa-5x {
  6775. font-size: 5em;
  6776. }
  6777. .fa-fw {
  6778. width: 1.28571429em;
  6779. text-align: center;
  6780. }
  6781. .fa-ul {
  6782. padding-left: 0;
  6783. margin-left: 2.14285714em;
  6784. list-style-type: none;
  6785. }
  6786. .fa-ul > li {
  6787. position: relative;
  6788. }
  6789. .fa-li {
  6790. position: absolute;
  6791. left: -2.14285714em;
  6792. width: 2.14285714em;
  6793. top: 0.14285714em;
  6794. text-align: center;
  6795. }
  6796. .fa-li.fa-lg {
  6797. left: -1.85714286em;
  6798. }
  6799. .fa-border {
  6800. padding: .2em .25em .15em;
  6801. border: solid 0.08em #eee;
  6802. border-radius: .1em;
  6803. }
  6804. .fa-pull-left {
  6805. float: left;
  6806. }
  6807. .fa-pull-right {
  6808. float: right;
  6809. }
  6810. .fa.fa-pull-left {
  6811. margin-right: .3em;
  6812. }
  6813. .fa.fa-pull-right {
  6814. margin-left: .3em;
  6815. }
  6816. /* Deprecated as of 4.4.0 */
  6817. .pull-right {
  6818. float: right;
  6819. }
  6820. .pull-left {
  6821. float: left;
  6822. }
  6823. .fa.pull-left {
  6824. margin-right: .3em;
  6825. }
  6826. .fa.pull-right {
  6827. margin-left: .3em;
  6828. }
  6829. .fa-spin {
  6830. -webkit-animation: fa-spin 2s infinite linear;
  6831. animation: fa-spin 2s infinite linear;
  6832. }
  6833. .fa-pulse {
  6834. -webkit-animation: fa-spin 1s infinite steps(8);
  6835. animation: fa-spin 1s infinite steps(8);
  6836. }
  6837. @-webkit-keyframes fa-spin {
  6838. 0% {
  6839. -webkit-transform: rotate(0deg);
  6840. transform: rotate(0deg);
  6841. }
  6842. 100% {
  6843. -webkit-transform: rotate(359deg);
  6844. transform: rotate(359deg);
  6845. }
  6846. }
  6847. @keyframes fa-spin {
  6848. 0% {
  6849. -webkit-transform: rotate(0deg);
  6850. transform: rotate(0deg);
  6851. }
  6852. 100% {
  6853. -webkit-transform: rotate(359deg);
  6854. transform: rotate(359deg);
  6855. }
  6856. }
  6857. .fa-rotate-90 {
  6858. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  6859. -webkit-transform: rotate(90deg);
  6860. -ms-transform: rotate(90deg);
  6861. transform: rotate(90deg);
  6862. }
  6863. .fa-rotate-180 {
  6864. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  6865. -webkit-transform: rotate(180deg);
  6866. -ms-transform: rotate(180deg);
  6867. transform: rotate(180deg);
  6868. }
  6869. .fa-rotate-270 {
  6870. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  6871. -webkit-transform: rotate(270deg);
  6872. -ms-transform: rotate(270deg);
  6873. transform: rotate(270deg);
  6874. }
  6875. .fa-flip-horizontal {
  6876. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  6877. -webkit-transform: scale(-1, 1);
  6878. -ms-transform: scale(-1, 1);
  6879. transform: scale(-1, 1);
  6880. }
  6881. .fa-flip-vertical {
  6882. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  6883. -webkit-transform: scale(1, -1);
  6884. -ms-transform: scale(1, -1);
  6885. transform: scale(1, -1);
  6886. }
  6887. :root .fa-rotate-90,
  6888. :root .fa-rotate-180,
  6889. :root .fa-rotate-270,
  6890. :root .fa-flip-horizontal,
  6891. :root .fa-flip-vertical {
  6892. filter: none;
  6893. }
  6894. .fa-stack {
  6895. position: relative;
  6896. display: inline-block;
  6897. width: 2em;
  6898. height: 2em;
  6899. line-height: 2em;
  6900. vertical-align: middle;
  6901. }
  6902. .fa-stack-1x,
  6903. .fa-stack-2x {
  6904. position: absolute;
  6905. left: 0;
  6906. width: 100%;
  6907. text-align: center;
  6908. }
  6909. .fa-stack-1x {
  6910. line-height: inherit;
  6911. }
  6912. .fa-stack-2x {
  6913. font-size: 2em;
  6914. }
  6915. .fa-inverse {
  6916. color: #fff;
  6917. }
  6918. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  6919. readers do not read off random characters that represent icons */
  6920. .fa-glass:before {
  6921. content: "\f000";
  6922. }
  6923. .fa-music:before {
  6924. content: "\f001";
  6925. }
  6926. .fa-search:before {
  6927. content: "\f002";
  6928. }
  6929. .fa-envelope-o:before {
  6930. content: "\f003";
  6931. }
  6932. .fa-heart:before {
  6933. content: "\f004";
  6934. }
  6935. .fa-star:before {
  6936. content: "\f005";
  6937. }
  6938. .fa-star-o:before {
  6939. content: "\f006";
  6940. }
  6941. .fa-user:before {
  6942. content: "\f007";
  6943. }
  6944. .fa-film:before {
  6945. content: "\f008";
  6946. }
  6947. .fa-th-large:before {
  6948. content: "\f009";
  6949. }
  6950. .fa-th:before {
  6951. content: "\f00a";
  6952. }
  6953. .fa-th-list:before {
  6954. content: "\f00b";
  6955. }
  6956. .fa-check:before {
  6957. content: "\f00c";
  6958. }
  6959. .fa-remove:before,
  6960. .fa-close:before,
  6961. .fa-times:before {
  6962. content: "\f00d";
  6963. }
  6964. .fa-search-plus:before {
  6965. content: "\f00e";
  6966. }
  6967. .fa-search-minus:before {
  6968. content: "\f010";
  6969. }
  6970. .fa-power-off:before {
  6971. content: "\f011";
  6972. }
  6973. .fa-signal:before {
  6974. content: "\f012";
  6975. }
  6976. .fa-gear:before,
  6977. .fa-cog:before {
  6978. content: "\f013";
  6979. }
  6980. .fa-trash-o:before {
  6981. content: "\f014";
  6982. }
  6983. .fa-home:before {
  6984. content: "\f015";
  6985. }
  6986. .fa-file-o:before {
  6987. content: "\f016";
  6988. }
  6989. .fa-clock-o:before {
  6990. content: "\f017";
  6991. }
  6992. .fa-road:before {
  6993. content: "\f018";
  6994. }
  6995. .fa-download:before {
  6996. content: "\f019";
  6997. }
  6998. .fa-arrow-circle-o-down:before {
  6999. content: "\f01a";
  7000. }
  7001. .fa-arrow-circle-o-up:before {
  7002. content: "\f01b";
  7003. }
  7004. .fa-inbox:before {
  7005. content: "\f01c";
  7006. }
  7007. .fa-play-circle-o:before {
  7008. content: "\f01d";
  7009. }
  7010. .fa-rotate-right:before,
  7011. .fa-repeat:before {
  7012. content: "\f01e";
  7013. }
  7014. .fa-refresh:before {
  7015. content: "\f021";
  7016. }
  7017. .fa-list-alt:before {
  7018. content: "\f022";
  7019. }
  7020. .fa-lock:before {
  7021. content: "\f023";
  7022. }
  7023. .fa-flag:before {
  7024. content: "\f024";
  7025. }
  7026. .fa-headphones:before {
  7027. content: "\f025";
  7028. }
  7029. .fa-volume-off:before {
  7030. content: "\f026";
  7031. }
  7032. .fa-volume-down:before {
  7033. content: "\f027";
  7034. }
  7035. .fa-volume-up:before {
  7036. content: "\f028";
  7037. }
  7038. .fa-qrcode:before {
  7039. content: "\f029";
  7040. }
  7041. .fa-barcode:before {
  7042. content: "\f02a";
  7043. }
  7044. .fa-tag:before {
  7045. content: "\f02b";
  7046. }
  7047. .fa-tags:before {
  7048. content: "\f02c";
  7049. }
  7050. .fa-book:before {
  7051. content: "\f02d";
  7052. }
  7053. .fa-bookmark:before {
  7054. content: "\f02e";
  7055. }
  7056. .fa-print:before {
  7057. content: "\f02f";
  7058. }
  7059. .fa-camera:before {
  7060. content: "\f030";
  7061. }
  7062. .fa-font:before {
  7063. content: "\f031";
  7064. }
  7065. .fa-bold:before {
  7066. content: "\f032";
  7067. }
  7068. .fa-italic:before {
  7069. content: "\f033";
  7070. }
  7071. .fa-text-height:before {
  7072. content: "\f034";
  7073. }
  7074. .fa-text-width:before {
  7075. content: "\f035";
  7076. }
  7077. .fa-align-left:before {
  7078. content: "\f036";
  7079. }
  7080. .fa-align-center:before {
  7081. content: "\f037";
  7082. }
  7083. .fa-align-right:before {
  7084. content: "\f038";
  7085. }
  7086. .fa-align-justify:before {
  7087. content: "\f039";
  7088. }
  7089. .fa-list:before {
  7090. content: "\f03a";
  7091. }
  7092. .fa-dedent:before,
  7093. .fa-outdent:before {
  7094. content: "\f03b";
  7095. }
  7096. .fa-indent:before {
  7097. content: "\f03c";
  7098. }
  7099. .fa-video-camera:before {
  7100. content: "\f03d";
  7101. }
  7102. .fa-photo:before,
  7103. .fa-image:before,
  7104. .fa-picture-o:before {
  7105. content: "\f03e";
  7106. }
  7107. .fa-pencil:before {
  7108. content: "\f040";
  7109. }
  7110. .fa-map-marker:before {
  7111. content: "\f041";
  7112. }
  7113. .fa-adjust:before {
  7114. content: "\f042";
  7115. }
  7116. .fa-tint:before {
  7117. content: "\f043";
  7118. }
  7119. .fa-edit:before,
  7120. .fa-pencil-square-o:before {
  7121. content: "\f044";
  7122. }
  7123. .fa-share-square-o:before {
  7124. content: "\f045";
  7125. }
  7126. .fa-check-square-o:before {
  7127. content: "\f046";
  7128. }
  7129. .fa-arrows:before {
  7130. content: "\f047";
  7131. }
  7132. .fa-step-backward:before {
  7133. content: "\f048";
  7134. }
  7135. .fa-fast-backward:before {
  7136. content: "\f049";
  7137. }
  7138. .fa-backward:before {
  7139. content: "\f04a";
  7140. }
  7141. .fa-play:before {
  7142. content: "\f04b";
  7143. }
  7144. .fa-pause:before {
  7145. content: "\f04c";
  7146. }
  7147. .fa-stop:before {
  7148. content: "\f04d";
  7149. }
  7150. .fa-forward:before {
  7151. content: "\f04e";
  7152. }
  7153. .fa-fast-forward:before {
  7154. content: "\f050";
  7155. }
  7156. .fa-step-forward:before {
  7157. content: "\f051";
  7158. }
  7159. .fa-eject:before {
  7160. content: "\f052";
  7161. }
  7162. .fa-chevron-left:before {
  7163. content: "\f053";
  7164. }
  7165. .fa-chevron-right:before {
  7166. content: "\f054";
  7167. }
  7168. .fa-plus-circle:before {
  7169. content: "\f055";
  7170. }
  7171. .fa-minus-circle:before {
  7172. content: "\f056";
  7173. }
  7174. .fa-times-circle:before {
  7175. content: "\f057";
  7176. }
  7177. .fa-check-circle:before {
  7178. content: "\f058";
  7179. }
  7180. .fa-question-circle:before {
  7181. content: "\f059";
  7182. }
  7183. .fa-info-circle:before {
  7184. content: "\f05a";
  7185. }
  7186. .fa-crosshairs:before {
  7187. content: "\f05b";
  7188. }
  7189. .fa-times-circle-o:before {
  7190. content: "\f05c";
  7191. }
  7192. .fa-check-circle-o:before {
  7193. content: "\f05d";
  7194. }
  7195. .fa-ban:before {
  7196. content: "\f05e";
  7197. }
  7198. .fa-arrow-left:before {
  7199. content: "\f060";
  7200. }
  7201. .fa-arrow-right:before {
  7202. content: "\f061";
  7203. }
  7204. .fa-arrow-up:before {
  7205. content: "\f062";
  7206. }
  7207. .fa-arrow-down:before {
  7208. content: "\f063";
  7209. }
  7210. .fa-mail-forward:before,
  7211. .fa-share:before {
  7212. content: "\f064";
  7213. }
  7214. .fa-expand:before {
  7215. content: "\f065";
  7216. }
  7217. .fa-compress:before {
  7218. content: "\f066";
  7219. }
  7220. .fa-plus:before {
  7221. content: "\f067";
  7222. }
  7223. .fa-minus:before {
  7224. content: "\f068";
  7225. }
  7226. .fa-asterisk:before {
  7227. content: "\f069";
  7228. }
  7229. .fa-exclamation-circle:before {
  7230. content: "\f06a";
  7231. }
  7232. .fa-gift:before {
  7233. content: "\f06b";
  7234. }
  7235. .fa-leaf:before {
  7236. content: "\f06c";
  7237. }
  7238. .fa-fire:before {
  7239. content: "\f06d";
  7240. }
  7241. .fa-eye:before {
  7242. content: "\f06e";
  7243. }
  7244. .fa-eye-slash:before {
  7245. content: "\f070";
  7246. }
  7247. .fa-warning:before,
  7248. .fa-exclamation-triangle:before {
  7249. content: "\f071";
  7250. }
  7251. .fa-plane:before {
  7252. content: "\f072";
  7253. }
  7254. .fa-calendar:before {
  7255. content: "\f073";
  7256. }
  7257. .fa-random:before {
  7258. content: "\f074";
  7259. }
  7260. .fa-comment:before {
  7261. content: "\f075";
  7262. }
  7263. .fa-magnet:before {
  7264. content: "\f076";
  7265. }
  7266. .fa-chevron-up:before {
  7267. content: "\f077";
  7268. }
  7269. .fa-chevron-down:before {
  7270. content: "\f078";
  7271. }
  7272. .fa-retweet:before {
  7273. content: "\f079";
  7274. }
  7275. .fa-shopping-cart:before {
  7276. content: "\f07a";
  7277. }
  7278. .fa-folder:before {
  7279. content: "\f07b";
  7280. }
  7281. .fa-folder-open:before {
  7282. content: "\f07c";
  7283. }
  7284. .fa-arrows-v:before {
  7285. content: "\f07d";
  7286. }
  7287. .fa-arrows-h:before {
  7288. content: "\f07e";
  7289. }
  7290. .fa-bar-chart-o:before,
  7291. .fa-bar-chart:before {
  7292. content: "\f080";
  7293. }
  7294. .fa-twitter-square:before {
  7295. content: "\f081";
  7296. }
  7297. .fa-facebook-square:before {
  7298. content: "\f082";
  7299. }
  7300. .fa-camera-retro:before {
  7301. content: "\f083";
  7302. }
  7303. .fa-key:before {
  7304. content: "\f084";
  7305. }
  7306. .fa-gears:before,
  7307. .fa-cogs:before {
  7308. content: "\f085";
  7309. }
  7310. .fa-comments:before {
  7311. content: "\f086";
  7312. }
  7313. .fa-thumbs-o-up:before {
  7314. content: "\f087";
  7315. }
  7316. .fa-thumbs-o-down:before {
  7317. content: "\f088";
  7318. }
  7319. .fa-star-half:before {
  7320. content: "\f089";
  7321. }
  7322. .fa-heart-o:before {
  7323. content: "\f08a";
  7324. }
  7325. .fa-sign-out:before {
  7326. content: "\f08b";
  7327. }
  7328. .fa-linkedin-square:before {
  7329. content: "\f08c";
  7330. }
  7331. .fa-thumb-tack:before {
  7332. content: "\f08d";
  7333. }
  7334. .fa-external-link:before {
  7335. content: "\f08e";
  7336. }
  7337. .fa-sign-in:before {
  7338. content: "\f090";
  7339. }
  7340. .fa-trophy:before {
  7341. content: "\f091";
  7342. }
  7343. .fa-github-square:before {
  7344. content: "\f092";
  7345. }
  7346. .fa-upload:before {
  7347. content: "\f093";
  7348. }
  7349. .fa-lemon-o:before {
  7350. content: "\f094";
  7351. }
  7352. .fa-phone:before {
  7353. content: "\f095";
  7354. }
  7355. .fa-square-o:before {
  7356. content: "\f096";
  7357. }
  7358. .fa-bookmark-o:before {
  7359. content: "\f097";
  7360. }
  7361. .fa-phone-square:before {
  7362. content: "\f098";
  7363. }
  7364. .fa-twitter:before {
  7365. content: "\f099";
  7366. }
  7367. .fa-facebook-f:before,
  7368. .fa-facebook:before {
  7369. content: "\f09a";
  7370. }
  7371. .fa-github:before {
  7372. content: "\f09b";
  7373. }
  7374. .fa-unlock:before {
  7375. content: "\f09c";
  7376. }
  7377. .fa-credit-card:before {
  7378. content: "\f09d";
  7379. }
  7380. .fa-feed:before,
  7381. .fa-rss:before {
  7382. content: "\f09e";
  7383. }
  7384. .fa-hdd-o:before {
  7385. content: "\f0a0";
  7386. }
  7387. .fa-bullhorn:before {
  7388. content: "\f0a1";
  7389. }
  7390. .fa-bell:before {
  7391. content: "\f0f3";
  7392. }
  7393. .fa-certificate:before {
  7394. content: "\f0a3";
  7395. }
  7396. .fa-hand-o-right:before {
  7397. content: "\f0a4";
  7398. }
  7399. .fa-hand-o-left:before {
  7400. content: "\f0a5";
  7401. }
  7402. .fa-hand-o-up:before {
  7403. content: "\f0a6";
  7404. }
  7405. .fa-hand-o-down:before {
  7406. content: "\f0a7";
  7407. }
  7408. .fa-arrow-circle-left:before {
  7409. content: "\f0a8";
  7410. }
  7411. .fa-arrow-circle-right:before {
  7412. content: "\f0a9";
  7413. }
  7414. .fa-arrow-circle-up:before {
  7415. content: "\f0aa";
  7416. }
  7417. .fa-arrow-circle-down:before {
  7418. content: "\f0ab";
  7419. }
  7420. .fa-globe:before {
  7421. content: "\f0ac";
  7422. }
  7423. .fa-wrench:before {
  7424. content: "\f0ad";
  7425. }
  7426. .fa-tasks:before {
  7427. content: "\f0ae";
  7428. }
  7429. .fa-filter:before {
  7430. content: "\f0b0";
  7431. }
  7432. .fa-briefcase:before {
  7433. content: "\f0b1";
  7434. }
  7435. .fa-arrows-alt:before {
  7436. content: "\f0b2";
  7437. }
  7438. .fa-group:before,
  7439. .fa-users:before {
  7440. content: "\f0c0";
  7441. }
  7442. .fa-chain:before,
  7443. .fa-link:before {
  7444. content: "\f0c1";
  7445. }
  7446. .fa-cloud:before {
  7447. content: "\f0c2";
  7448. }
  7449. .fa-flask:before {
  7450. content: "\f0c3";
  7451. }
  7452. .fa-cut:before,
  7453. .fa-scissors:before {
  7454. content: "\f0c4";
  7455. }
  7456. .fa-copy:before,
  7457. .fa-files-o:before {
  7458. content: "\f0c5";
  7459. }
  7460. .fa-paperclip:before {
  7461. content: "\f0c6";
  7462. }
  7463. .fa-save:before,
  7464. .fa-floppy-o:before {
  7465. content: "\f0c7";
  7466. }
  7467. .fa-square:before {
  7468. content: "\f0c8";
  7469. }
  7470. .fa-navicon:before,
  7471. .fa-reorder:before,
  7472. .fa-bars:before {
  7473. content: "\f0c9";
  7474. }
  7475. .fa-list-ul:before {
  7476. content: "\f0ca";
  7477. }
  7478. .fa-list-ol:before {
  7479. content: "\f0cb";
  7480. }
  7481. .fa-strikethrough:before {
  7482. content: "\f0cc";
  7483. }
  7484. .fa-underline:before {
  7485. content: "\f0cd";
  7486. }
  7487. .fa-table:before {
  7488. content: "\f0ce";
  7489. }
  7490. .fa-magic:before {
  7491. content: "\f0d0";
  7492. }
  7493. .fa-truck:before {
  7494. content: "\f0d1";
  7495. }
  7496. .fa-pinterest:before {
  7497. content: "\f0d2";
  7498. }
  7499. .fa-pinterest-square:before {
  7500. content: "\f0d3";
  7501. }
  7502. .fa-google-plus-square:before {
  7503. content: "\f0d4";
  7504. }
  7505. .fa-google-plus:before {
  7506. content: "\f0d5";
  7507. }
  7508. .fa-money:before {
  7509. content: "\f0d6";
  7510. }
  7511. .fa-caret-down:before {
  7512. content: "\f0d7";
  7513. }
  7514. .fa-caret-up:before {
  7515. content: "\f0d8";
  7516. }
  7517. .fa-caret-left:before {
  7518. content: "\f0d9";
  7519. }
  7520. .fa-caret-right:before {
  7521. content: "\f0da";
  7522. }
  7523. .fa-columns:before {
  7524. content: "\f0db";
  7525. }
  7526. .fa-unsorted:before,
  7527. .fa-sort:before {
  7528. content: "\f0dc";
  7529. }
  7530. .fa-sort-down:before,
  7531. .fa-sort-desc:before {
  7532. content: "\f0dd";
  7533. }
  7534. .fa-sort-up:before,
  7535. .fa-sort-asc:before {
  7536. content: "\f0de";
  7537. }
  7538. .fa-envelope:before {
  7539. content: "\f0e0";
  7540. }
  7541. .fa-linkedin:before {
  7542. content: "\f0e1";
  7543. }
  7544. .fa-rotate-left:before,
  7545. .fa-undo:before {
  7546. content: "\f0e2";
  7547. }
  7548. .fa-legal:before,
  7549. .fa-gavel:before {
  7550. content: "\f0e3";
  7551. }
  7552. .fa-dashboard:before,
  7553. .fa-tachometer:before {
  7554. content: "\f0e4";
  7555. }
  7556. .fa-comment-o:before {
  7557. content: "\f0e5";
  7558. }
  7559. .fa-comments-o:before {
  7560. content: "\f0e6";
  7561. }
  7562. .fa-flash:before,
  7563. .fa-bolt:before {
  7564. content: "\f0e7";
  7565. }
  7566. .fa-sitemap:before {
  7567. content: "\f0e8";
  7568. }
  7569. .fa-umbrella:before {
  7570. content: "\f0e9";
  7571. }
  7572. .fa-paste:before,
  7573. .fa-clipboard:before {
  7574. content: "\f0ea";
  7575. }
  7576. .fa-lightbulb-o:before {
  7577. content: "\f0eb";
  7578. }
  7579. .fa-exchange:before {
  7580. content: "\f0ec";
  7581. }
  7582. .fa-cloud-download:before {
  7583. content: "\f0ed";
  7584. }
  7585. .fa-cloud-upload:before {
  7586. content: "\f0ee";
  7587. }
  7588. .fa-user-md:before {
  7589. content: "\f0f0";
  7590. }
  7591. .fa-stethoscope:before {
  7592. content: "\f0f1";
  7593. }
  7594. .fa-suitcase:before {
  7595. content: "\f0f2";
  7596. }
  7597. .fa-bell-o:before {
  7598. content: "\f0a2";
  7599. }
  7600. .fa-coffee:before {
  7601. content: "\f0f4";
  7602. }
  7603. .fa-cutlery:before {
  7604. content: "\f0f5";
  7605. }
  7606. .fa-file-text-o:before {
  7607. content: "\f0f6";
  7608. }
  7609. .fa-building-o:before {
  7610. content: "\f0f7";
  7611. }
  7612. .fa-hospital-o:before {
  7613. content: "\f0f8";
  7614. }
  7615. .fa-ambulance:before {
  7616. content: "\f0f9";
  7617. }
  7618. .fa-medkit:before {
  7619. content: "\f0fa";
  7620. }
  7621. .fa-fighter-jet:before {
  7622. content: "\f0fb";
  7623. }
  7624. .fa-beer:before {
  7625. content: "\f0fc";
  7626. }
  7627. .fa-h-square:before {
  7628. content: "\f0fd";
  7629. }
  7630. .fa-plus-square:before {
  7631. content: "\f0fe";
  7632. }
  7633. .fa-angle-double-left:before {
  7634. content: "\f100";
  7635. }
  7636. .fa-angle-double-right:before {
  7637. content: "\f101";
  7638. }
  7639. .fa-angle-double-up:before {
  7640. content: "\f102";
  7641. }
  7642. .fa-angle-double-down:before {
  7643. content: "\f103";
  7644. }
  7645. .fa-angle-left:before {
  7646. content: "\f104";
  7647. }
  7648. .fa-angle-right:before {
  7649. content: "\f105";
  7650. }
  7651. .fa-angle-up:before {
  7652. content: "\f106";
  7653. }
  7654. .fa-angle-down:before {
  7655. content: "\f107";
  7656. }
  7657. .fa-desktop:before {
  7658. content: "\f108";
  7659. }
  7660. .fa-laptop:before {
  7661. content: "\f109";
  7662. }
  7663. .fa-tablet:before {
  7664. content: "\f10a";
  7665. }
  7666. .fa-mobile-phone:before,
  7667. .fa-mobile:before {
  7668. content: "\f10b";
  7669. }
  7670. .fa-circle-o:before {
  7671. content: "\f10c";
  7672. }
  7673. .fa-quote-left:before {
  7674. content: "\f10d";
  7675. }
  7676. .fa-quote-right:before {
  7677. content: "\f10e";
  7678. }
  7679. .fa-spinner:before {
  7680. content: "\f110";
  7681. }
  7682. .fa-circle:before {
  7683. content: "\f111";
  7684. }
  7685. .fa-mail-reply:before,
  7686. .fa-reply:before {
  7687. content: "\f112";
  7688. }
  7689. .fa-github-alt:before {
  7690. content: "\f113";
  7691. }
  7692. .fa-folder-o:before {
  7693. content: "\f114";
  7694. }
  7695. .fa-folder-open-o:before {
  7696. content: "\f115";
  7697. }
  7698. .fa-smile-o:before {
  7699. content: "\f118";
  7700. }
  7701. .fa-frown-o:before {
  7702. content: "\f119";
  7703. }
  7704. .fa-meh-o:before {
  7705. content: "\f11a";
  7706. }
  7707. .fa-gamepad:before {
  7708. content: "\f11b";
  7709. }
  7710. .fa-keyboard-o:before {
  7711. content: "\f11c";
  7712. }
  7713. .fa-flag-o:before {
  7714. content: "\f11d";
  7715. }
  7716. .fa-flag-checkered:before {
  7717. content: "\f11e";
  7718. }
  7719. .fa-terminal:before {
  7720. content: "\f120";
  7721. }
  7722. .fa-code:before {
  7723. content: "\f121";
  7724. }
  7725. .fa-mail-reply-all:before,
  7726. .fa-reply-all:before {
  7727. content: "\f122";
  7728. }
  7729. .fa-star-half-empty:before,
  7730. .fa-star-half-full:before,
  7731. .fa-star-half-o:before {
  7732. content: "\f123";
  7733. }
  7734. .fa-location-arrow:before {
  7735. content: "\f124";
  7736. }
  7737. .fa-crop:before {
  7738. content: "\f125";
  7739. }
  7740. .fa-code-fork:before {
  7741. content: "\f126";
  7742. }
  7743. .fa-unlink:before,
  7744. .fa-chain-broken:before {
  7745. content: "\f127";
  7746. }
  7747. .fa-question:before {
  7748. content: "\f128";
  7749. }
  7750. .fa-info:before {
  7751. content: "\f129";
  7752. }
  7753. .fa-exclamation:before {
  7754. content: "\f12a";
  7755. }
  7756. .fa-superscript:before {
  7757. content: "\f12b";
  7758. }
  7759. .fa-subscript:before {
  7760. content: "\f12c";
  7761. }
  7762. .fa-eraser:before {
  7763. content: "\f12d";
  7764. }
  7765. .fa-puzzle-piece:before {
  7766. content: "\f12e";
  7767. }
  7768. .fa-microphone:before {
  7769. content: "\f130";
  7770. }
  7771. .fa-microphone-slash:before {
  7772. content: "\f131";
  7773. }
  7774. .fa-shield:before {
  7775. content: "\f132";
  7776. }
  7777. .fa-calendar-o:before {
  7778. content: "\f133";
  7779. }
  7780. .fa-fire-extinguisher:before {
  7781. content: "\f134";
  7782. }
  7783. .fa-rocket:before {
  7784. content: "\f135";
  7785. }
  7786. .fa-maxcdn:before {
  7787. content: "\f136";
  7788. }
  7789. .fa-chevron-circle-left:before {
  7790. content: "\f137";
  7791. }
  7792. .fa-chevron-circle-right:before {
  7793. content: "\f138";
  7794. }
  7795. .fa-chevron-circle-up:before {
  7796. content: "\f139";
  7797. }
  7798. .fa-chevron-circle-down:before {
  7799. content: "\f13a";
  7800. }
  7801. .fa-html5:before {
  7802. content: "\f13b";
  7803. }
  7804. .fa-css3:before {
  7805. content: "\f13c";
  7806. }
  7807. .fa-anchor:before {
  7808. content: "\f13d";
  7809. }
  7810. .fa-unlock-alt:before {
  7811. content: "\f13e";
  7812. }
  7813. .fa-bullseye:before {
  7814. content: "\f140";
  7815. }
  7816. .fa-ellipsis-h:before {
  7817. content: "\f141";
  7818. }
  7819. .fa-ellipsis-v:before {
  7820. content: "\f142";
  7821. }
  7822. .fa-rss-square:before {
  7823. content: "\f143";
  7824. }
  7825. .fa-play-circle:before {
  7826. content: "\f144";
  7827. }
  7828. .fa-ticket:before {
  7829. content: "\f145";
  7830. }
  7831. .fa-minus-square:before {
  7832. content: "\f146";
  7833. }
  7834. .fa-minus-square-o:before {
  7835. content: "\f147";
  7836. }
  7837. .fa-level-up:before {
  7838. content: "\f148";
  7839. }
  7840. .fa-level-down:before {
  7841. content: "\f149";
  7842. }
  7843. .fa-check-square:before {
  7844. content: "\f14a";
  7845. }
  7846. .fa-pencil-square:before {
  7847. content: "\f14b";
  7848. }
  7849. .fa-external-link-square:before {
  7850. content: "\f14c";
  7851. }
  7852. .fa-share-square:before {
  7853. content: "\f14d";
  7854. }
  7855. .fa-compass:before {
  7856. content: "\f14e";
  7857. }
  7858. .fa-toggle-down:before,
  7859. .fa-caret-square-o-down:before {
  7860. content: "\f150";
  7861. }
  7862. .fa-toggle-up:before,
  7863. .fa-caret-square-o-up:before {
  7864. content: "\f151";
  7865. }
  7866. .fa-toggle-right:before,
  7867. .fa-caret-square-o-right:before {
  7868. content: "\f152";
  7869. }
  7870. .fa-euro:before,
  7871. .fa-eur:before {
  7872. content: "\f153";
  7873. }
  7874. .fa-gbp:before {
  7875. content: "\f154";
  7876. }
  7877. .fa-dollar:before,
  7878. .fa-usd:before {
  7879. content: "\f155";
  7880. }
  7881. .fa-rupee:before,
  7882. .fa-inr:before {
  7883. content: "\f156";
  7884. }
  7885. .fa-cny:before,
  7886. .fa-rmb:before,
  7887. .fa-yen:before,
  7888. .fa-jpy:before {
  7889. content: "\f157";
  7890. }
  7891. .fa-ruble:before,
  7892. .fa-rouble:before,
  7893. .fa-rub:before {
  7894. content: "\f158";
  7895. }
  7896. .fa-won:before,
  7897. .fa-krw:before {
  7898. content: "\f159";
  7899. }
  7900. .fa-bitcoin:before,
  7901. .fa-btc:before {
  7902. content: "\f15a";
  7903. }
  7904. .fa-file:before {
  7905. content: "\f15b";
  7906. }
  7907. .fa-file-text:before {
  7908. content: "\f15c";
  7909. }
  7910. .fa-sort-alpha-asc:before {
  7911. content: "\f15d";
  7912. }
  7913. .fa-sort-alpha-desc:before {
  7914. content: "\f15e";
  7915. }
  7916. .fa-sort-amount-asc:before {
  7917. content: "\f160";
  7918. }
  7919. .fa-sort-amount-desc:before {
  7920. content: "\f161";
  7921. }
  7922. .fa-sort-numeric-asc:before {
  7923. content: "\f162";
  7924. }
  7925. .fa-sort-numeric-desc:before {
  7926. content: "\f163";
  7927. }
  7928. .fa-thumbs-up:before {
  7929. content: "\f164";
  7930. }
  7931. .fa-thumbs-down:before {
  7932. content: "\f165";
  7933. }
  7934. .fa-youtube-square:before {
  7935. content: "\f166";
  7936. }
  7937. .fa-youtube:before {
  7938. content: "\f167";
  7939. }
  7940. .fa-xing:before {
  7941. content: "\f168";
  7942. }
  7943. .fa-xing-square:before {
  7944. content: "\f169";
  7945. }
  7946. .fa-youtube-play:before {
  7947. content: "\f16a";
  7948. }
  7949. .fa-dropbox:before {
  7950. content: "\f16b";
  7951. }
  7952. .fa-stack-overflow:before {
  7953. content: "\f16c";
  7954. }
  7955. .fa-instagram:before {
  7956. content: "\f16d";
  7957. }
  7958. .fa-flickr:before {
  7959. content: "\f16e";
  7960. }
  7961. .fa-adn:before {
  7962. content: "\f170";
  7963. }
  7964. .fa-bitbucket:before {
  7965. content: "\f171";
  7966. }
  7967. .fa-bitbucket-square:before {
  7968. content: "\f172";
  7969. }
  7970. .fa-tumblr:before {
  7971. content: "\f173";
  7972. }
  7973. .fa-tumblr-square:before {
  7974. content: "\f174";
  7975. }
  7976. .fa-long-arrow-down:before {
  7977. content: "\f175";
  7978. }
  7979. .fa-long-arrow-up:before {
  7980. content: "\f176";
  7981. }
  7982. .fa-long-arrow-left:before {
  7983. content: "\f177";
  7984. }
  7985. .fa-long-arrow-right:before {
  7986. content: "\f178";
  7987. }
  7988. .fa-apple:before {
  7989. content: "\f179";
  7990. }
  7991. .fa-windows:before {
  7992. content: "\f17a";
  7993. }
  7994. .fa-android:before {
  7995. content: "\f17b";
  7996. }
  7997. .fa-linux:before {
  7998. content: "\f17c";
  7999. }
  8000. .fa-dribbble:before {
  8001. content: "\f17d";
  8002. }
  8003. .fa-skype:before {
  8004. content: "\f17e";
  8005. }
  8006. .fa-foursquare:before {
  8007. content: "\f180";
  8008. }
  8009. .fa-trello:before {
  8010. content: "\f181";
  8011. }
  8012. .fa-female:before {
  8013. content: "\f182";
  8014. }
  8015. .fa-male:before {
  8016. content: "\f183";
  8017. }
  8018. .fa-gittip:before,
  8019. .fa-gratipay:before {
  8020. content: "\f184";
  8021. }
  8022. .fa-sun-o:before {
  8023. content: "\f185";
  8024. }
  8025. .fa-moon-o:before {
  8026. content: "\f186";
  8027. }
  8028. .fa-archive:before {
  8029. content: "\f187";
  8030. }
  8031. .fa-bug:before {
  8032. content: "\f188";
  8033. }
  8034. .fa-vk:before {
  8035. content: "\f189";
  8036. }
  8037. .fa-weibo:before {
  8038. content: "\f18a";
  8039. }
  8040. .fa-renren:before {
  8041. content: "\f18b";
  8042. }
  8043. .fa-pagelines:before {
  8044. content: "\f18c";
  8045. }
  8046. .fa-stack-exchange:before {
  8047. content: "\f18d";
  8048. }
  8049. .fa-arrow-circle-o-right:before {
  8050. content: "\f18e";
  8051. }
  8052. .fa-arrow-circle-o-left:before {
  8053. content: "\f190";
  8054. }
  8055. .fa-toggle-left:before,
  8056. .fa-caret-square-o-left:before {
  8057. content: "\f191";
  8058. }
  8059. .fa-dot-circle-o:before {
  8060. content: "\f192";
  8061. }
  8062. .fa-wheelchair:before {
  8063. content: "\f193";
  8064. }
  8065. .fa-vimeo-square:before {
  8066. content: "\f194";
  8067. }
  8068. .fa-turkish-lira:before,
  8069. .fa-try:before {
  8070. content: "\f195";
  8071. }
  8072. .fa-plus-square-o:before {
  8073. content: "\f196";
  8074. }
  8075. .fa-space-shuttle:before {
  8076. content: "\f197";
  8077. }
  8078. .fa-slack:before {
  8079. content: "\f198";
  8080. }
  8081. .fa-envelope-square:before {
  8082. content: "\f199";
  8083. }
  8084. .fa-wordpress:before {
  8085. content: "\f19a";
  8086. }
  8087. .fa-openid:before {
  8088. content: "\f19b";
  8089. }
  8090. .fa-institution:before,
  8091. .fa-bank:before,
  8092. .fa-university:before {
  8093. content: "\f19c";
  8094. }
  8095. .fa-mortar-board:before,
  8096. .fa-graduation-cap:before {
  8097. content: "\f19d";
  8098. }
  8099. .fa-yahoo:before {
  8100. content: "\f19e";
  8101. }
  8102. .fa-google:before {
  8103. content: "\f1a0";
  8104. }
  8105. .fa-reddit:before {
  8106. content: "\f1a1";
  8107. }
  8108. .fa-reddit-square:before {
  8109. content: "\f1a2";
  8110. }
  8111. .fa-stumbleupon-circle:before {
  8112. content: "\f1a3";
  8113. }
  8114. .fa-stumbleupon:before {
  8115. content: "\f1a4";
  8116. }
  8117. .fa-delicious:before {
  8118. content: "\f1a5";
  8119. }
  8120. .fa-digg:before {
  8121. content: "\f1a6";
  8122. }
  8123. .fa-pied-piper-pp:before {
  8124. content: "\f1a7";
  8125. }
  8126. .fa-pied-piper-alt:before {
  8127. content: "\f1a8";
  8128. }
  8129. .fa-drupal:before {
  8130. content: "\f1a9";
  8131. }
  8132. .fa-joomla:before {
  8133. content: "\f1aa";
  8134. }
  8135. .fa-language:before {
  8136. content: "\f1ab";
  8137. }
  8138. .fa-fax:before {
  8139. content: "\f1ac";
  8140. }
  8141. .fa-building:before {
  8142. content: "\f1ad";
  8143. }
  8144. .fa-child:before {
  8145. content: "\f1ae";
  8146. }
  8147. .fa-paw:before {
  8148. content: "\f1b0";
  8149. }
  8150. .fa-spoon:before {
  8151. content: "\f1b1";
  8152. }
  8153. .fa-cube:before {
  8154. content: "\f1b2";
  8155. }
  8156. .fa-cubes:before {
  8157. content: "\f1b3";
  8158. }
  8159. .fa-behance:before {
  8160. content: "\f1b4";
  8161. }
  8162. .fa-behance-square:before {
  8163. content: "\f1b5";
  8164. }
  8165. .fa-steam:before {
  8166. content: "\f1b6";
  8167. }
  8168. .fa-steam-square:before {
  8169. content: "\f1b7";
  8170. }
  8171. .fa-recycle:before {
  8172. content: "\f1b8";
  8173. }
  8174. .fa-automobile:before,
  8175. .fa-car:before {
  8176. content: "\f1b9";
  8177. }
  8178. .fa-cab:before,
  8179. .fa-taxi:before {
  8180. content: "\f1ba";
  8181. }
  8182. .fa-tree:before {
  8183. content: "\f1bb";
  8184. }
  8185. .fa-spotify:before {
  8186. content: "\f1bc";
  8187. }
  8188. .fa-deviantart:before {
  8189. content: "\f1bd";
  8190. }
  8191. .fa-soundcloud:before {
  8192. content: "\f1be";
  8193. }
  8194. .fa-database:before {
  8195. content: "\f1c0";
  8196. }
  8197. .fa-file-pdf-o:before {
  8198. content: "\f1c1";
  8199. }
  8200. .fa-file-word-o:before {
  8201. content: "\f1c2";
  8202. }
  8203. .fa-file-excel-o:before {
  8204. content: "\f1c3";
  8205. }
  8206. .fa-file-powerpoint-o:before {
  8207. content: "\f1c4";
  8208. }
  8209. .fa-file-photo-o:before,
  8210. .fa-file-picture-o:before,
  8211. .fa-file-image-o:before {
  8212. content: "\f1c5";
  8213. }
  8214. .fa-file-zip-o:before,
  8215. .fa-file-archive-o:before {
  8216. content: "\f1c6";
  8217. }
  8218. .fa-file-sound-o:before,
  8219. .fa-file-audio-o:before {
  8220. content: "\f1c7";
  8221. }
  8222. .fa-file-movie-o:before,
  8223. .fa-file-video-o:before {
  8224. content: "\f1c8";
  8225. }
  8226. .fa-file-code-o:before {
  8227. content: "\f1c9";
  8228. }
  8229. .fa-vine:before {
  8230. content: "\f1ca";
  8231. }
  8232. .fa-codepen:before {
  8233. content: "\f1cb";
  8234. }
  8235. .fa-jsfiddle:before {
  8236. content: "\f1cc";
  8237. }
  8238. .fa-life-bouy:before,
  8239. .fa-life-buoy:before,
  8240. .fa-life-saver:before,
  8241. .fa-support:before,
  8242. .fa-life-ring:before {
  8243. content: "\f1cd";
  8244. }
  8245. .fa-circle-o-notch:before {
  8246. content: "\f1ce";
  8247. }
  8248. .fa-ra:before,
  8249. .fa-resistance:before,
  8250. .fa-rebel:before {
  8251. content: "\f1d0";
  8252. }
  8253. .fa-ge:before,
  8254. .fa-empire:before {
  8255. content: "\f1d1";
  8256. }
  8257. .fa-git-square:before {
  8258. content: "\f1d2";
  8259. }
  8260. .fa-git:before {
  8261. content: "\f1d3";
  8262. }
  8263. .fa-y-combinator-square:before,
  8264. .fa-yc-square:before,
  8265. .fa-hacker-news:before {
  8266. content: "\f1d4";
  8267. }
  8268. .fa-tencent-weibo:before {
  8269. content: "\f1d5";
  8270. }
  8271. .fa-qq:before {
  8272. content: "\f1d6";
  8273. }
  8274. .fa-wechat:before,
  8275. .fa-weixin:before {
  8276. content: "\f1d7";
  8277. }
  8278. .fa-send:before,
  8279. .fa-paper-plane:before {
  8280. content: "\f1d8";
  8281. }
  8282. .fa-send-o:before,
  8283. .fa-paper-plane-o:before {
  8284. content: "\f1d9";
  8285. }
  8286. .fa-history:before {
  8287. content: "\f1da";
  8288. }
  8289. .fa-circle-thin:before {
  8290. content: "\f1db";
  8291. }
  8292. .fa-header:before {
  8293. content: "\f1dc";
  8294. }
  8295. .fa-paragraph:before {
  8296. content: "\f1dd";
  8297. }
  8298. .fa-sliders:before {
  8299. content: "\f1de";
  8300. }
  8301. .fa-share-alt:before {
  8302. content: "\f1e0";
  8303. }
  8304. .fa-share-alt-square:before {
  8305. content: "\f1e1";
  8306. }
  8307. .fa-bomb:before {
  8308. content: "\f1e2";
  8309. }
  8310. .fa-soccer-ball-o:before,
  8311. .fa-futbol-o:before {
  8312. content: "\f1e3";
  8313. }
  8314. .fa-tty:before {
  8315. content: "\f1e4";
  8316. }
  8317. .fa-binoculars:before {
  8318. content: "\f1e5";
  8319. }
  8320. .fa-plug:before {
  8321. content: "\f1e6";
  8322. }
  8323. .fa-slideshare:before {
  8324. content: "\f1e7";
  8325. }
  8326. .fa-twitch:before {
  8327. content: "\f1e8";
  8328. }
  8329. .fa-yelp:before {
  8330. content: "\f1e9";
  8331. }
  8332. .fa-newspaper-o:before {
  8333. content: "\f1ea";
  8334. }
  8335. .fa-wifi:before {
  8336. content: "\f1eb";
  8337. }
  8338. .fa-calculator:before {
  8339. content: "\f1ec";
  8340. }
  8341. .fa-paypal:before {
  8342. content: "\f1ed";
  8343. }
  8344. .fa-google-wallet:before {
  8345. content: "\f1ee";
  8346. }
  8347. .fa-cc-visa:before {
  8348. content: "\f1f0";
  8349. }
  8350. .fa-cc-mastercard:before {
  8351. content: "\f1f1";
  8352. }
  8353. .fa-cc-discover:before {
  8354. content: "\f1f2";
  8355. }
  8356. .fa-cc-amex:before {
  8357. content: "\f1f3";
  8358. }
  8359. .fa-cc-paypal:before {
  8360. content: "\f1f4";
  8361. }
  8362. .fa-cc-stripe:before {
  8363. content: "\f1f5";
  8364. }
  8365. .fa-bell-slash:before {
  8366. content: "\f1f6";
  8367. }
  8368. .fa-bell-slash-o:before {
  8369. content: "\f1f7";
  8370. }
  8371. .fa-trash:before {
  8372. content: "\f1f8";
  8373. }
  8374. .fa-copyright:before {
  8375. content: "\f1f9";
  8376. }
  8377. .fa-at:before {
  8378. content: "\f1fa";
  8379. }
  8380. .fa-eyedropper:before {
  8381. content: "\f1fb";
  8382. }
  8383. .fa-paint-brush:before {
  8384. content: "\f1fc";
  8385. }
  8386. .fa-birthday-cake:before {
  8387. content: "\f1fd";
  8388. }
  8389. .fa-area-chart:before {
  8390. content: "\f1fe";
  8391. }
  8392. .fa-pie-chart:before {
  8393. content: "\f200";
  8394. }
  8395. .fa-line-chart:before {
  8396. content: "\f201";
  8397. }
  8398. .fa-lastfm:before {
  8399. content: "\f202";
  8400. }
  8401. .fa-lastfm-square:before {
  8402. content: "\f203";
  8403. }
  8404. .fa-toggle-off:before {
  8405. content: "\f204";
  8406. }
  8407. .fa-toggle-on:before {
  8408. content: "\f205";
  8409. }
  8410. .fa-bicycle:before {
  8411. content: "\f206";
  8412. }
  8413. .fa-bus:before {
  8414. content: "\f207";
  8415. }
  8416. .fa-ioxhost:before {
  8417. content: "\f208";
  8418. }
  8419. .fa-angellist:before {
  8420. content: "\f209";
  8421. }
  8422. .fa-cc:before {
  8423. content: "\f20a";
  8424. }
  8425. .fa-shekel:before,
  8426. .fa-sheqel:before,
  8427. .fa-ils:before {
  8428. content: "\f20b";
  8429. }
  8430. .fa-meanpath:before {
  8431. content: "\f20c";
  8432. }
  8433. .fa-buysellads:before {
  8434. content: "\f20d";
  8435. }
  8436. .fa-connectdevelop:before {
  8437. content: "\f20e";
  8438. }
  8439. .fa-dashcube:before {
  8440. content: "\f210";
  8441. }
  8442. .fa-forumbee:before {
  8443. content: "\f211";
  8444. }
  8445. .fa-leanpub:before {
  8446. content: "\f212";
  8447. }
  8448. .fa-sellsy:before {
  8449. content: "\f213";
  8450. }
  8451. .fa-shirtsinbulk:before {
  8452. content: "\f214";
  8453. }
  8454. .fa-simplybuilt:before {
  8455. content: "\f215";
  8456. }
  8457. .fa-skyatlas:before {
  8458. content: "\f216";
  8459. }
  8460. .fa-cart-plus:before {
  8461. content: "\f217";
  8462. }
  8463. .fa-cart-arrow-down:before {
  8464. content: "\f218";
  8465. }
  8466. .fa-diamond:before {
  8467. content: "\f219";
  8468. }
  8469. .fa-ship:before {
  8470. content: "\f21a";
  8471. }
  8472. .fa-user-secret:before {
  8473. content: "\f21b";
  8474. }
  8475. .fa-motorcycle:before {
  8476. content: "\f21c";
  8477. }
  8478. .fa-street-view:before {
  8479. content: "\f21d";
  8480. }
  8481. .fa-heartbeat:before {
  8482. content: "\f21e";
  8483. }
  8484. .fa-venus:before {
  8485. content: "\f221";
  8486. }
  8487. .fa-mars:before {
  8488. content: "\f222";
  8489. }
  8490. .fa-mercury:before {
  8491. content: "\f223";
  8492. }
  8493. .fa-intersex:before,
  8494. .fa-transgender:before {
  8495. content: "\f224";
  8496. }
  8497. .fa-transgender-alt:before {
  8498. content: "\f225";
  8499. }
  8500. .fa-venus-double:before {
  8501. content: "\f226";
  8502. }
  8503. .fa-mars-double:before {
  8504. content: "\f227";
  8505. }
  8506. .fa-venus-mars:before {
  8507. content: "\f228";
  8508. }
  8509. .fa-mars-stroke:before {
  8510. content: "\f229";
  8511. }
  8512. .fa-mars-stroke-v:before {
  8513. content: "\f22a";
  8514. }
  8515. .fa-mars-stroke-h:before {
  8516. content: "\f22b";
  8517. }
  8518. .fa-neuter:before {
  8519. content: "\f22c";
  8520. }
  8521. .fa-genderless:before {
  8522. content: "\f22d";
  8523. }
  8524. .fa-facebook-official:before {
  8525. content: "\f230";
  8526. }
  8527. .fa-pinterest-p:before {
  8528. content: "\f231";
  8529. }
  8530. .fa-whatsapp:before {
  8531. content: "\f232";
  8532. }
  8533. .fa-server:before {
  8534. content: "\f233";
  8535. }
  8536. .fa-user-plus:before {
  8537. content: "\f234";
  8538. }
  8539. .fa-user-times:before {
  8540. content: "\f235";
  8541. }
  8542. .fa-hotel:before,
  8543. .fa-bed:before {
  8544. content: "\f236";
  8545. }
  8546. .fa-viacoin:before {
  8547. content: "\f237";
  8548. }
  8549. .fa-train:before {
  8550. content: "\f238";
  8551. }
  8552. .fa-subway:before {
  8553. content: "\f239";
  8554. }
  8555. .fa-medium:before {
  8556. content: "\f23a";
  8557. }
  8558. .fa-yc:before,
  8559. .fa-y-combinator:before {
  8560. content: "\f23b";
  8561. }
  8562. .fa-optin-monster:before {
  8563. content: "\f23c";
  8564. }
  8565. .fa-opencart:before {
  8566. content: "\f23d";
  8567. }
  8568. .fa-expeditedssl:before {
  8569. content: "\f23e";
  8570. }
  8571. .fa-battery-4:before,
  8572. .fa-battery:before,
  8573. .fa-battery-full:before {
  8574. content: "\f240";
  8575. }
  8576. .fa-battery-3:before,
  8577. .fa-battery-three-quarters:before {
  8578. content: "\f241";
  8579. }
  8580. .fa-battery-2:before,
  8581. .fa-battery-half:before {
  8582. content: "\f242";
  8583. }
  8584. .fa-battery-1:before,
  8585. .fa-battery-quarter:before {
  8586. content: "\f243";
  8587. }
  8588. .fa-battery-0:before,
  8589. .fa-battery-empty:before {
  8590. content: "\f244";
  8591. }
  8592. .fa-mouse-pointer:before {
  8593. content: "\f245";
  8594. }
  8595. .fa-i-cursor:before {
  8596. content: "\f246";
  8597. }
  8598. .fa-object-group:before {
  8599. content: "\f247";
  8600. }
  8601. .fa-object-ungroup:before {
  8602. content: "\f248";
  8603. }
  8604. .fa-sticky-note:before {
  8605. content: "\f249";
  8606. }
  8607. .fa-sticky-note-o:before {
  8608. content: "\f24a";
  8609. }
  8610. .fa-cc-jcb:before {
  8611. content: "\f24b";
  8612. }
  8613. .fa-cc-diners-club:before {
  8614. content: "\f24c";
  8615. }
  8616. .fa-clone:before {
  8617. content: "\f24d";
  8618. }
  8619. .fa-balance-scale:before {
  8620. content: "\f24e";
  8621. }
  8622. .fa-hourglass-o:before {
  8623. content: "\f250";
  8624. }
  8625. .fa-hourglass-1:before,
  8626. .fa-hourglass-start:before {
  8627. content: "\f251";
  8628. }
  8629. .fa-hourglass-2:before,
  8630. .fa-hourglass-half:before {
  8631. content: "\f252";
  8632. }
  8633. .fa-hourglass-3:before,
  8634. .fa-hourglass-end:before {
  8635. content: "\f253";
  8636. }
  8637. .fa-hourglass:before {
  8638. content: "\f254";
  8639. }
  8640. .fa-hand-grab-o:before,
  8641. .fa-hand-rock-o:before {
  8642. content: "\f255";
  8643. }
  8644. .fa-hand-stop-o:before,
  8645. .fa-hand-paper-o:before {
  8646. content: "\f256";
  8647. }
  8648. .fa-hand-scissors-o:before {
  8649. content: "\f257";
  8650. }
  8651. .fa-hand-lizard-o:before {
  8652. content: "\f258";
  8653. }
  8654. .fa-hand-spock-o:before {
  8655. content: "\f259";
  8656. }
  8657. .fa-hand-pointer-o:before {
  8658. content: "\f25a";
  8659. }
  8660. .fa-hand-peace-o:before {
  8661. content: "\f25b";
  8662. }
  8663. .fa-trademark:before {
  8664. content: "\f25c";
  8665. }
  8666. .fa-registered:before {
  8667. content: "\f25d";
  8668. }
  8669. .fa-creative-commons:before {
  8670. content: "\f25e";
  8671. }
  8672. .fa-gg:before {
  8673. content: "\f260";
  8674. }
  8675. .fa-gg-circle:before {
  8676. content: "\f261";
  8677. }
  8678. .fa-tripadvisor:before {
  8679. content: "\f262";
  8680. }
  8681. .fa-odnoklassniki:before {
  8682. content: "\f263";
  8683. }
  8684. .fa-odnoklassniki-square:before {
  8685. content: "\f264";
  8686. }
  8687. .fa-get-pocket:before {
  8688. content: "\f265";
  8689. }
  8690. .fa-wikipedia-w:before {
  8691. content: "\f266";
  8692. }
  8693. .fa-safari:before {
  8694. content: "\f267";
  8695. }
  8696. .fa-chrome:before {
  8697. content: "\f268";
  8698. }
  8699. .fa-firefox:before {
  8700. content: "\f269";
  8701. }
  8702. .fa-opera:before {
  8703. content: "\f26a";
  8704. }
  8705. .fa-internet-explorer:before {
  8706. content: "\f26b";
  8707. }
  8708. .fa-tv:before,
  8709. .fa-television:before {
  8710. content: "\f26c";
  8711. }
  8712. .fa-contao:before {
  8713. content: "\f26d";
  8714. }
  8715. .fa-500px:before {
  8716. content: "\f26e";
  8717. }
  8718. .fa-amazon:before {
  8719. content: "\f270";
  8720. }
  8721. .fa-calendar-plus-o:before {
  8722. content: "\f271";
  8723. }
  8724. .fa-calendar-minus-o:before {
  8725. content: "\f272";
  8726. }
  8727. .fa-calendar-times-o:before {
  8728. content: "\f273";
  8729. }
  8730. .fa-calendar-check-o:before {
  8731. content: "\f274";
  8732. }
  8733. .fa-industry:before {
  8734. content: "\f275";
  8735. }
  8736. .fa-map-pin:before {
  8737. content: "\f276";
  8738. }
  8739. .fa-map-signs:before {
  8740. content: "\f277";
  8741. }
  8742. .fa-map-o:before {
  8743. content: "\f278";
  8744. }
  8745. .fa-map:before {
  8746. content: "\f279";
  8747. }
  8748. .fa-commenting:before {
  8749. content: "\f27a";
  8750. }
  8751. .fa-commenting-o:before {
  8752. content: "\f27b";
  8753. }
  8754. .fa-houzz:before {
  8755. content: "\f27c";
  8756. }
  8757. .fa-vimeo:before {
  8758. content: "\f27d";
  8759. }
  8760. .fa-black-tie:before {
  8761. content: "\f27e";
  8762. }
  8763. .fa-fonticons:before {
  8764. content: "\f280";
  8765. }
  8766. .fa-reddit-alien:before {
  8767. content: "\f281";
  8768. }
  8769. .fa-edge:before {
  8770. content: "\f282";
  8771. }
  8772. .fa-credit-card-alt:before {
  8773. content: "\f283";
  8774. }
  8775. .fa-codiepie:before {
  8776. content: "\f284";
  8777. }
  8778. .fa-modx:before {
  8779. content: "\f285";
  8780. }
  8781. .fa-fort-awesome:before {
  8782. content: "\f286";
  8783. }
  8784. .fa-usb:before {
  8785. content: "\f287";
  8786. }
  8787. .fa-product-hunt:before {
  8788. content: "\f288";
  8789. }
  8790. .fa-mixcloud:before {
  8791. content: "\f289";
  8792. }
  8793. .fa-scribd:before {
  8794. content: "\f28a";
  8795. }
  8796. .fa-pause-circle:before {
  8797. content: "\f28b";
  8798. }
  8799. .fa-pause-circle-o:before {
  8800. content: "\f28c";
  8801. }
  8802. .fa-stop-circle:before {
  8803. content: "\f28d";
  8804. }
  8805. .fa-stop-circle-o:before {
  8806. content: "\f28e";
  8807. }
  8808. .fa-shopping-bag:before {
  8809. content: "\f290";
  8810. }
  8811. .fa-shopping-basket:before {
  8812. content: "\f291";
  8813. }
  8814. .fa-hashtag:before {
  8815. content: "\f292";
  8816. }
  8817. .fa-bluetooth:before {
  8818. content: "\f293";
  8819. }
  8820. .fa-bluetooth-b:before {
  8821. content: "\f294";
  8822. }
  8823. .fa-percent:before {
  8824. content: "\f295";
  8825. }
  8826. .fa-gitlab:before {
  8827. content: "\f296";
  8828. }
  8829. .fa-wpbeginner:before {
  8830. content: "\f297";
  8831. }
  8832. .fa-wpforms:before {
  8833. content: "\f298";
  8834. }
  8835. .fa-envira:before {
  8836. content: "\f299";
  8837. }
  8838. .fa-universal-access:before {
  8839. content: "\f29a";
  8840. }
  8841. .fa-wheelchair-alt:before {
  8842. content: "\f29b";
  8843. }
  8844. .fa-question-circle-o:before {
  8845. content: "\f29c";
  8846. }
  8847. .fa-blind:before {
  8848. content: "\f29d";
  8849. }
  8850. .fa-audio-description:before {
  8851. content: "\f29e";
  8852. }
  8853. .fa-volume-control-phone:before {
  8854. content: "\f2a0";
  8855. }
  8856. .fa-braille:before {
  8857. content: "\f2a1";
  8858. }
  8859. .fa-assistive-listening-systems:before {
  8860. content: "\f2a2";
  8861. }
  8862. .fa-asl-interpreting:before,
  8863. .fa-american-sign-language-interpreting:before {
  8864. content: "\f2a3";
  8865. }
  8866. .fa-deafness:before,
  8867. .fa-hard-of-hearing:before,
  8868. .fa-deaf:before {
  8869. content: "\f2a4";
  8870. }
  8871. .fa-glide:before {
  8872. content: "\f2a5";
  8873. }
  8874. .fa-glide-g:before {
  8875. content: "\f2a6";
  8876. }
  8877. .fa-signing:before,
  8878. .fa-sign-language:before {
  8879. content: "\f2a7";
  8880. }
  8881. .fa-low-vision:before {
  8882. content: "\f2a8";
  8883. }
  8884. .fa-viadeo:before {
  8885. content: "\f2a9";
  8886. }
  8887. .fa-viadeo-square:before {
  8888. content: "\f2aa";
  8889. }
  8890. .fa-snapchat:before {
  8891. content: "\f2ab";
  8892. }
  8893. .fa-snapchat-ghost:before {
  8894. content: "\f2ac";
  8895. }
  8896. .fa-snapchat-square:before {
  8897. content: "\f2ad";
  8898. }
  8899. .fa-pied-piper:before {
  8900. content: "\f2ae";
  8901. }
  8902. .fa-first-order:before {
  8903. content: "\f2b0";
  8904. }
  8905. .fa-yoast:before {
  8906. content: "\f2b1";
  8907. }
  8908. .fa-themeisle:before {
  8909. content: "\f2b2";
  8910. }
  8911. .fa-google-plus-circle:before,
  8912. .fa-google-plus-official:before {
  8913. content: "\f2b3";
  8914. }
  8915. .fa-fa:before,
  8916. .fa-font-awesome:before {
  8917. content: "\f2b4";
  8918. }
  8919. .fa-handshake-o:before {
  8920. content: "\f2b5";
  8921. }
  8922. .fa-envelope-open:before {
  8923. content: "\f2b6";
  8924. }
  8925. .fa-envelope-open-o:before {
  8926. content: "\f2b7";
  8927. }
  8928. .fa-linode:before {
  8929. content: "\f2b8";
  8930. }
  8931. .fa-address-book:before {
  8932. content: "\f2b9";
  8933. }
  8934. .fa-address-book-o:before {
  8935. content: "\f2ba";
  8936. }
  8937. .fa-vcard:before,
  8938. .fa-address-card:before {
  8939. content: "\f2bb";
  8940. }
  8941. .fa-vcard-o:before,
  8942. .fa-address-card-o:before {
  8943. content: "\f2bc";
  8944. }
  8945. .fa-user-circle:before {
  8946. content: "\f2bd";
  8947. }
  8948. .fa-user-circle-o:before {
  8949. content: "\f2be";
  8950. }
  8951. .fa-user-o:before {
  8952. content: "\f2c0";
  8953. }
  8954. .fa-id-badge:before {
  8955. content: "\f2c1";
  8956. }
  8957. .fa-drivers-license:before,
  8958. .fa-id-card:before {
  8959. content: "\f2c2";
  8960. }
  8961. .fa-drivers-license-o:before,
  8962. .fa-id-card-o:before {
  8963. content: "\f2c3";
  8964. }
  8965. .fa-quora:before {
  8966. content: "\f2c4";
  8967. }
  8968. .fa-free-code-camp:before {
  8969. content: "\f2c5";
  8970. }
  8971. .fa-telegram:before {
  8972. content: "\f2c6";
  8973. }
  8974. .fa-thermometer-4:before,
  8975. .fa-thermometer:before,
  8976. .fa-thermometer-full:before {
  8977. content: "\f2c7";
  8978. }
  8979. .fa-thermometer-3:before,
  8980. .fa-thermometer-three-quarters:before {
  8981. content: "\f2c8";
  8982. }
  8983. .fa-thermometer-2:before,
  8984. .fa-thermometer-half:before {
  8985. content: "\f2c9";
  8986. }
  8987. .fa-thermometer-1:before,
  8988. .fa-thermometer-quarter:before {
  8989. content: "\f2ca";
  8990. }
  8991. .fa-thermometer-0:before,
  8992. .fa-thermometer-empty:before {
  8993. content: "\f2cb";
  8994. }
  8995. .fa-shower:before {
  8996. content: "\f2cc";
  8997. }
  8998. .fa-bathtub:before,
  8999. .fa-s15:before,
  9000. .fa-bath:before {
  9001. content: "\f2cd";
  9002. }
  9003. .fa-podcast:before {
  9004. content: "\f2ce";
  9005. }
  9006. .fa-window-maximize:before {
  9007. content: "\f2d0";
  9008. }
  9009. .fa-window-minimize:before {
  9010. content: "\f2d1";
  9011. }
  9012. .fa-window-restore:before {
  9013. content: "\f2d2";
  9014. }
  9015. .fa-times-rectangle:before,
  9016. .fa-window-close:before {
  9017. content: "\f2d3";
  9018. }
  9019. .fa-times-rectangle-o:before,
  9020. .fa-window-close-o:before {
  9021. content: "\f2d4";
  9022. }
  9023. .fa-bandcamp:before {
  9024. content: "\f2d5";
  9025. }
  9026. .fa-grav:before {
  9027. content: "\f2d6";
  9028. }
  9029. .fa-etsy:before {
  9030. content: "\f2d7";
  9031. }
  9032. .fa-imdb:before {
  9033. content: "\f2d8";
  9034. }
  9035. .fa-ravelry:before {
  9036. content: "\f2d9";
  9037. }
  9038. .fa-eercast:before {
  9039. content: "\f2da";
  9040. }
  9041. .fa-microchip:before {
  9042. content: "\f2db";
  9043. }
  9044. .fa-snowflake-o:before {
  9045. content: "\f2dc";
  9046. }
  9047. .fa-superpowers:before {
  9048. content: "\f2dd";
  9049. }
  9050. .fa-wpexplorer:before {
  9051. content: "\f2de";
  9052. }
  9053. .fa-meetup:before {
  9054. content: "\f2e0";
  9055. }
  9056. .sr-only {
  9057. position: absolute;
  9058. width: 1px;
  9059. height: 1px;
  9060. padding: 0;
  9061. margin: -1px;
  9062. overflow: hidden;
  9063. clip: rect(0, 0, 0, 0);
  9064. border: 0;
  9065. }
  9066. .sr-only-focusable:active,
  9067. .sr-only-focusable:focus {
  9068. position: static;
  9069. width: auto;
  9070. height: auto;
  9071. margin: 0;
  9072. overflow: visible;
  9073. clip: auto;
  9074. }
  9075. .sr-only-focusable:active,
  9076. .sr-only-focusable:focus {
  9077. position: static;
  9078. width: auto;
  9079. height: auto;
  9080. margin: 0;
  9081. overflow: visible;
  9082. clip: auto;
  9083. }
  9084. /*!
  9085. *
  9086. * IPython base
  9087. *
  9088. */
  9089. .modal.fade .modal-dialog {
  9090. -webkit-transform: translate(0, 0);
  9091. -ms-transform: translate(0, 0);
  9092. -o-transform: translate(0, 0);
  9093. transform: translate(0, 0);
  9094. }
  9095. code {
  9096. color: #000;
  9097. }
  9098. pre {
  9099. font-size: inherit;
  9100. line-height: inherit;
  9101. }
  9102. label {
  9103. font-weight: normal;
  9104. }
  9105. /* Make the page background atleast 100% the height of the view port */
  9106. /* Make the page itself atleast 70% the height of the view port */
  9107. .border-box-sizing {
  9108. box-sizing: border-box;
  9109. -moz-box-sizing: border-box;
  9110. -webkit-box-sizing: border-box;
  9111. }
  9112. .corner-all {
  9113. border-radius: 2px;
  9114. }
  9115. .no-padding {
  9116. padding: 0px;
  9117. }
  9118. /* Flexible box model classes */
  9119. /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
  9120. /* This file is a compatability layer. It allows the usage of flexible box
  9121. model layouts accross multiple browsers, including older browsers. The newest,
  9122. universal implementation of the flexible box model is used when available (see
  9123. `Modern browsers` comments below). Browsers that are known to implement this
  9124. new spec completely include:
  9125. Firefox 28.0+
  9126. Chrome 29.0+
  9127. Internet Explorer 11+
  9128. Opera 17.0+
  9129. Browsers not listed, including Safari, are supported via the styling under the
  9130. `Old browsers` comments below.
  9131. */
  9132. .hbox {
  9133. /* Old browsers */
  9134. display: -webkit-box;
  9135. -webkit-box-orient: horizontal;
  9136. -webkit-box-align: stretch;
  9137. display: -moz-box;
  9138. -moz-box-orient: horizontal;
  9139. -moz-box-align: stretch;
  9140. display: box;
  9141. box-orient: horizontal;
  9142. box-align: stretch;
  9143. /* Modern browsers */
  9144. display: flex;
  9145. flex-direction: row;
  9146. align-items: stretch;
  9147. }
  9148. .hbox > * {
  9149. /* Old browsers */
  9150. -webkit-box-flex: 0;
  9151. -moz-box-flex: 0;
  9152. box-flex: 0;
  9153. /* Modern browsers */
  9154. flex: none;
  9155. }
  9156. .vbox {
  9157. /* Old browsers */
  9158. display: -webkit-box;
  9159. -webkit-box-orient: vertical;
  9160. -webkit-box-align: stretch;
  9161. display: -moz-box;
  9162. -moz-box-orient: vertical;
  9163. -moz-box-align: stretch;
  9164. display: box;
  9165. box-orient: vertical;
  9166. box-align: stretch;
  9167. /* Modern browsers */
  9168. display: flex;
  9169. flex-direction: column;
  9170. align-items: stretch;
  9171. }
  9172. .vbox > * {
  9173. /* Old browsers */
  9174. -webkit-box-flex: 0;
  9175. -moz-box-flex: 0;
  9176. box-flex: 0;
  9177. /* Modern browsers */
  9178. flex: none;
  9179. }
  9180. .hbox.reverse,
  9181. .vbox.reverse,
  9182. .reverse {
  9183. /* Old browsers */
  9184. -webkit-box-direction: reverse;
  9185. -moz-box-direction: reverse;
  9186. box-direction: reverse;
  9187. /* Modern browsers */
  9188. flex-direction: row-reverse;
  9189. }
  9190. .hbox.box-flex0,
  9191. .vbox.box-flex0,
  9192. .box-flex0 {
  9193. /* Old browsers */
  9194. -webkit-box-flex: 0;
  9195. -moz-box-flex: 0;
  9196. box-flex: 0;
  9197. /* Modern browsers */
  9198. flex: none;
  9199. width: auto;
  9200. }
  9201. .hbox.box-flex1,
  9202. .vbox.box-flex1,
  9203. .box-flex1 {
  9204. /* Old browsers */
  9205. -webkit-box-flex: 1;
  9206. -moz-box-flex: 1;
  9207. box-flex: 1;
  9208. /* Modern browsers */
  9209. flex: 1;
  9210. }
  9211. .hbox.box-flex,
  9212. .vbox.box-flex,
  9213. .box-flex {
  9214. /* Old browsers */
  9215. /* Old browsers */
  9216. -webkit-box-flex: 1;
  9217. -moz-box-flex: 1;
  9218. box-flex: 1;
  9219. /* Modern browsers */
  9220. flex: 1;
  9221. }
  9222. .hbox.box-flex2,
  9223. .vbox.box-flex2,
  9224. .box-flex2 {
  9225. /* Old browsers */
  9226. -webkit-box-flex: 2;
  9227. -moz-box-flex: 2;
  9228. box-flex: 2;
  9229. /* Modern browsers */
  9230. flex: 2;
  9231. }
  9232. .box-group1 {
  9233. /* Deprecated */
  9234. -webkit-box-flex-group: 1;
  9235. -moz-box-flex-group: 1;
  9236. box-flex-group: 1;
  9237. }
  9238. .box-group2 {
  9239. /* Deprecated */
  9240. -webkit-box-flex-group: 2;
  9241. -moz-box-flex-group: 2;
  9242. box-flex-group: 2;
  9243. }
  9244. .hbox.start,
  9245. .vbox.start,
  9246. .start {
  9247. /* Old browsers */
  9248. -webkit-box-pack: start;
  9249. -moz-box-pack: start;
  9250. box-pack: start;
  9251. /* Modern browsers */
  9252. justify-content: flex-start;
  9253. }
  9254. .hbox.end,
  9255. .vbox.end,
  9256. .end {
  9257. /* Old browsers */
  9258. -webkit-box-pack: end;
  9259. -moz-box-pack: end;
  9260. box-pack: end;
  9261. /* Modern browsers */
  9262. justify-content: flex-end;
  9263. }
  9264. .hbox.center,
  9265. .vbox.center,
  9266. .center {
  9267. /* Old browsers */
  9268. -webkit-box-pack: center;
  9269. -moz-box-pack: center;
  9270. box-pack: center;
  9271. /* Modern browsers */
  9272. justify-content: center;
  9273. }
  9274. .hbox.baseline,
  9275. .vbox.baseline,
  9276. .baseline {
  9277. /* Old browsers */
  9278. -webkit-box-pack: baseline;
  9279. -moz-box-pack: baseline;
  9280. box-pack: baseline;
  9281. /* Modern browsers */
  9282. justify-content: baseline;
  9283. }
  9284. .hbox.stretch,
  9285. .vbox.stretch,
  9286. .stretch {
  9287. /* Old browsers */
  9288. -webkit-box-pack: stretch;
  9289. -moz-box-pack: stretch;
  9290. box-pack: stretch;
  9291. /* Modern browsers */
  9292. justify-content: stretch;
  9293. }
  9294. .hbox.align-start,
  9295. .vbox.align-start,
  9296. .align-start {
  9297. /* Old browsers */
  9298. -webkit-box-align: start;
  9299. -moz-box-align: start;
  9300. box-align: start;
  9301. /* Modern browsers */
  9302. align-items: flex-start;
  9303. }
  9304. .hbox.align-end,
  9305. .vbox.align-end,
  9306. .align-end {
  9307. /* Old browsers */
  9308. -webkit-box-align: end;
  9309. -moz-box-align: end;
  9310. box-align: end;
  9311. /* Modern browsers */
  9312. align-items: flex-end;
  9313. }
  9314. .hbox.align-center,
  9315. .vbox.align-center,
  9316. .align-center {
  9317. /* Old browsers */
  9318. -webkit-box-align: center;
  9319. -moz-box-align: center;
  9320. box-align: center;
  9321. /* Modern browsers */
  9322. align-items: center;
  9323. }
  9324. .hbox.align-baseline,
  9325. .vbox.align-baseline,
  9326. .align-baseline {
  9327. /* Old browsers */
  9328. -webkit-box-align: baseline;
  9329. -moz-box-align: baseline;
  9330. box-align: baseline;
  9331. /* Modern browsers */
  9332. align-items: baseline;
  9333. }
  9334. .hbox.align-stretch,
  9335. .vbox.align-stretch,
  9336. .align-stretch {
  9337. /* Old browsers */
  9338. -webkit-box-align: stretch;
  9339. -moz-box-align: stretch;
  9340. box-align: stretch;
  9341. /* Modern browsers */
  9342. align-items: stretch;
  9343. }
  9344. div.error {
  9345. margin: 2em;
  9346. text-align: center;
  9347. }
  9348. div.error > h1 {
  9349. font-size: 500%;
  9350. line-height: normal;
  9351. }
  9352. div.error > p {
  9353. font-size: 200%;
  9354. line-height: normal;
  9355. }
  9356. div.traceback-wrapper {
  9357. text-align: left;
  9358. max-width: 800px;
  9359. margin: auto;
  9360. }
  9361. div.traceback-wrapper pre.traceback {
  9362. max-height: 600px;
  9363. overflow: auto;
  9364. }
  9365. /**
  9366. * Primary styles
  9367. *
  9368. * Author: Jupyter Development Team
  9369. */
  9370. body {
  9371. background-color: #fff;
  9372. /* This makes sure that the body covers the entire window and needs to
  9373. be in a different element than the display: box in wrapper below */
  9374. position: absolute;
  9375. left: 0px;
  9376. right: 0px;
  9377. top: 0px;
  9378. bottom: 0px;
  9379. overflow: visible;
  9380. }
  9381. body > #header {
  9382. /* Initially hidden to prevent FLOUC */
  9383. display: none;
  9384. background-color: #fff;
  9385. /* Display over codemirror */
  9386. position: relative;
  9387. z-index: 100;
  9388. }
  9389. body > #header #header-container {
  9390. display: flex;
  9391. flex-direction: row;
  9392. justify-content: space-between;
  9393. padding: 5px;
  9394. padding-bottom: 5px;
  9395. padding-top: 5px;
  9396. box-sizing: border-box;
  9397. -moz-box-sizing: border-box;
  9398. -webkit-box-sizing: border-box;
  9399. }
  9400. body > #header .header-bar {
  9401. width: 100%;
  9402. height: 1px;
  9403. background: #e7e7e7;
  9404. margin-bottom: -1px;
  9405. }
  9406. @media print {
  9407. body > #header {
  9408. display: none !important;
  9409. }
  9410. }
  9411. #header-spacer {
  9412. width: 100%;
  9413. visibility: hidden;
  9414. }
  9415. @media print {
  9416. #header-spacer {
  9417. display: none;
  9418. }
  9419. }
  9420. #ipython_notebook {
  9421. padding-left: 0px;
  9422. padding-top: 1px;
  9423. padding-bottom: 1px;
  9424. }
  9425. [dir="rtl"] #ipython_notebook {
  9426. margin-right: 10px;
  9427. margin-left: 0;
  9428. }
  9429. [dir="rtl"] #ipython_notebook.pull-left {
  9430. float: right !important;
  9431. float: right;
  9432. }
  9433. .flex-spacer {
  9434. flex: 1;
  9435. }
  9436. #noscript {
  9437. width: auto;
  9438. padding-top: 16px;
  9439. padding-bottom: 16px;
  9440. text-align: center;
  9441. font-size: 22px;
  9442. color: red;
  9443. font-weight: bold;
  9444. }
  9445. #ipython_notebook img {
  9446. height: 28px;
  9447. }
  9448. #site {
  9449. width: 100%;
  9450. display: none;
  9451. box-sizing: border-box;
  9452. -moz-box-sizing: border-box;
  9453. -webkit-box-sizing: border-box;
  9454. overflow: auto;
  9455. }
  9456. @media print {
  9457. #site {
  9458. height: auto !important;
  9459. }
  9460. }
  9461. /* Smaller buttons */
  9462. .ui-button .ui-button-text {
  9463. padding: 0.2em 0.8em;
  9464. font-size: 77%;
  9465. }
  9466. input.ui-button {
  9467. padding: 0.3em 0.9em;
  9468. }
  9469. span#kernel_logo_widget {
  9470. margin: 0 10px;
  9471. }
  9472. span#login_widget {
  9473. float: right;
  9474. }
  9475. [dir="rtl"] span#login_widget {
  9476. float: left;
  9477. }
  9478. span#login_widget > .button,
  9479. #logout {
  9480. color: #333;
  9481. background-color: #fff;
  9482. border-color: #ccc;
  9483. }
  9484. span#login_widget > .button:focus,
  9485. #logout:focus,
  9486. span#login_widget > .button.focus,
  9487. #logout.focus {
  9488. color: #333;
  9489. background-color: #e6e6e6;
  9490. border-color: #8c8c8c;
  9491. }
  9492. span#login_widget > .button:hover,
  9493. #logout:hover {
  9494. color: #333;
  9495. background-color: #e6e6e6;
  9496. border-color: #adadad;
  9497. }
  9498. span#login_widget > .button:active,
  9499. #logout:active,
  9500. span#login_widget > .button.active,
  9501. #logout.active,
  9502. .open > .dropdown-togglespan#login_widget > .button,
  9503. .open > .dropdown-toggle#logout {
  9504. color: #333;
  9505. background-color: #e6e6e6;
  9506. border-color: #adadad;
  9507. }
  9508. span#login_widget > .button:active:hover,
  9509. #logout:active:hover,
  9510. span#login_widget > .button.active:hover,
  9511. #logout.active:hover,
  9512. .open > .dropdown-togglespan#login_widget > .button:hover,
  9513. .open > .dropdown-toggle#logout:hover,
  9514. span#login_widget > .button:active:focus,
  9515. #logout:active:focus,
  9516. span#login_widget > .button.active:focus,
  9517. #logout.active:focus,
  9518. .open > .dropdown-togglespan#login_widget > .button:focus,
  9519. .open > .dropdown-toggle#logout:focus,
  9520. span#login_widget > .button:active.focus,
  9521. #logout:active.focus,
  9522. span#login_widget > .button.active.focus,
  9523. #logout.active.focus,
  9524. .open > .dropdown-togglespan#login_widget > .button.focus,
  9525. .open > .dropdown-toggle#logout.focus {
  9526. color: #333;
  9527. background-color: #d4d4d4;
  9528. border-color: #8c8c8c;
  9529. }
  9530. span#login_widget > .button:active,
  9531. #logout:active,
  9532. span#login_widget > .button.active,
  9533. #logout.active,
  9534. .open > .dropdown-togglespan#login_widget > .button,
  9535. .open > .dropdown-toggle#logout {
  9536. background-image: none;
  9537. }
  9538. span#login_widget > .button.disabled:hover,
  9539. #logout.disabled:hover,
  9540. span#login_widget > .button[disabled]:hover,
  9541. #logout[disabled]:hover,
  9542. fieldset[disabled] span#login_widget > .button:hover,
  9543. fieldset[disabled] #logout:hover,
  9544. span#login_widget > .button.disabled:focus,
  9545. #logout.disabled:focus,
  9546. span#login_widget > .button[disabled]:focus,
  9547. #logout[disabled]:focus,
  9548. fieldset[disabled] span#login_widget > .button:focus,
  9549. fieldset[disabled] #logout:focus,
  9550. span#login_widget > .button.disabled.focus,
  9551. #logout.disabled.focus,
  9552. span#login_widget > .button[disabled].focus,
  9553. #logout[disabled].focus,
  9554. fieldset[disabled] span#login_widget > .button.focus,
  9555. fieldset[disabled] #logout.focus {
  9556. background-color: #fff;
  9557. border-color: #ccc;
  9558. }
  9559. span#login_widget > .button .badge,
  9560. #logout .badge {
  9561. color: #fff;
  9562. background-color: #333;
  9563. }
  9564. .nav-header {
  9565. text-transform: none;
  9566. }
  9567. #header > span {
  9568. margin-top: 10px;
  9569. }
  9570. .modal_stretch .modal-dialog {
  9571. /* Old browsers */
  9572. display: -webkit-box;
  9573. -webkit-box-orient: vertical;
  9574. -webkit-box-align: stretch;
  9575. display: -moz-box;
  9576. -moz-box-orient: vertical;
  9577. -moz-box-align: stretch;
  9578. display: box;
  9579. box-orient: vertical;
  9580. box-align: stretch;
  9581. /* Modern browsers */
  9582. display: flex;
  9583. flex-direction: column;
  9584. align-items: stretch;
  9585. min-height: 80vh;
  9586. }
  9587. .modal_stretch .modal-dialog .modal-body {
  9588. max-height: calc(100vh - 200px);
  9589. overflow: auto;
  9590. flex: 1;
  9591. }
  9592. .modal-header {
  9593. cursor: move;
  9594. }
  9595. @media (min-width: 768px) {
  9596. .modal .modal-dialog {
  9597. width: 700px;
  9598. }
  9599. }
  9600. @media (min-width: 768px) {
  9601. select.form-control {
  9602. margin-left: 12px;
  9603. margin-right: 12px;
  9604. }
  9605. }
  9606. /*!
  9607. *
  9608. * IPython auth
  9609. *
  9610. */
  9611. .center-nav {
  9612. display: inline-block;
  9613. margin-bottom: -4px;
  9614. }
  9615. [dir="rtl"] .center-nav form.pull-left {
  9616. float: right !important;
  9617. float: right;
  9618. }
  9619. [dir="rtl"] .center-nav .navbar-text {
  9620. float: right;
  9621. }
  9622. [dir="rtl"] .navbar-inner {
  9623. text-align: right;
  9624. }
  9625. [dir="rtl"] div.text-left {
  9626. text-align: right;
  9627. }
  9628. /*!
  9629. *
  9630. * IPython tree view
  9631. *
  9632. */
  9633. /* We need an invisible input field on top of the sentense*/
  9634. /* "Drag file onto the list ..." */
  9635. .alternate_upload {
  9636. background-color: none;
  9637. display: inline;
  9638. }
  9639. .alternate_upload.form {
  9640. padding: 0;
  9641. margin: 0;
  9642. }
  9643. .alternate_upload input.fileinput {
  9644. position: absolute;
  9645. display: block;
  9646. width: 100%;
  9647. height: 100%;
  9648. overflow: hidden;
  9649. cursor: pointer;
  9650. opacity: 0;
  9651. z-index: 2;
  9652. }
  9653. .alternate_upload .btn-xs > input.fileinput {
  9654. margin: -1px -5px;
  9655. }
  9656. .alternate_upload .btn-upload {
  9657. position: relative;
  9658. height: 22px;
  9659. }
  9660. ::-webkit-file-upload-button {
  9661. cursor: pointer;
  9662. }
  9663. /**
  9664. * Primary styles
  9665. *
  9666. * Author: Jupyter Development Team
  9667. */
  9668. ul#tabs {
  9669. margin-bottom: 4px;
  9670. }
  9671. ul#tabs a {
  9672. padding-top: 6px;
  9673. padding-bottom: 4px;
  9674. }
  9675. [dir="rtl"] ul#tabs.nav-tabs > li {
  9676. float: right;
  9677. }
  9678. [dir="rtl"] ul#tabs.nav.nav-tabs {
  9679. padding-right: 0;
  9680. }
  9681. ul.breadcrumb a:focus,
  9682. ul.breadcrumb a:hover {
  9683. text-decoration: none;
  9684. }
  9685. ul.breadcrumb i.icon-home {
  9686. font-size: 16px;
  9687. margin-right: 4px;
  9688. }
  9689. ul.breadcrumb span {
  9690. color: #5e5e5e;
  9691. }
  9692. .list_toolbar {
  9693. padding: 4px 0 4px 0;
  9694. vertical-align: middle;
  9695. }
  9696. .list_toolbar .tree-buttons {
  9697. padding-top: 1px;
  9698. }
  9699. [dir="rtl"] .list_toolbar .tree-buttons .pull-right {
  9700. float: left !important;
  9701. float: left;
  9702. }
  9703. [dir="rtl"] .list_toolbar .col-sm-4,
  9704. [dir="rtl"] .list_toolbar .col-sm-8 {
  9705. float: right;
  9706. }
  9707. .dynamic-buttons {
  9708. padding-top: 3px;
  9709. display: inline-block;
  9710. }
  9711. .list_toolbar [class*="span"] {
  9712. min-height: 24px;
  9713. }
  9714. .list_header {
  9715. font-weight: bold;
  9716. background-color: #EEE;
  9717. }
  9718. .list_placeholder {
  9719. font-weight: bold;
  9720. padding-top: 4px;
  9721. padding-bottom: 4px;
  9722. padding-left: 7px;
  9723. padding-right: 7px;
  9724. }
  9725. .list_container {
  9726. margin-top: 4px;
  9727. margin-bottom: 20px;
  9728. border: 1px solid #ddd;
  9729. border-radius: 2px;
  9730. }
  9731. .list_container > div {
  9732. border-bottom: 1px solid #ddd;
  9733. }
  9734. .list_container > div:hover .list-item {
  9735. background-color: red;
  9736. }
  9737. .list_container > div:last-child {
  9738. border: none;
  9739. }
  9740. .list_item:hover .list_item {
  9741. background-color: #ddd;
  9742. }
  9743. .list_item a {
  9744. text-decoration: none;
  9745. }
  9746. .list_item:hover {
  9747. background-color: #fafafa;
  9748. }
  9749. .list_header > div,
  9750. .list_item > div {
  9751. padding-top: 4px;
  9752. padding-bottom: 4px;
  9753. padding-left: 7px;
  9754. padding-right: 7px;
  9755. line-height: 22px;
  9756. }
  9757. .list_header > div input,
  9758. .list_item > div input {
  9759. margin-right: 7px;
  9760. margin-left: 14px;
  9761. vertical-align: text-bottom;
  9762. line-height: 22px;
  9763. position: relative;
  9764. top: -1px;
  9765. }
  9766. .list_header > div .item_link,
  9767. .list_item > div .item_link {
  9768. margin-left: -1px;
  9769. vertical-align: baseline;
  9770. line-height: 22px;
  9771. }
  9772. [dir="rtl"] .list_item > div input {
  9773. margin-right: 0;
  9774. }
  9775. .new-file input[type=checkbox] {
  9776. visibility: hidden;
  9777. }
  9778. .item_name {
  9779. line-height: 22px;
  9780. height: 24px;
  9781. }
  9782. .item_icon {
  9783. font-size: 14px;
  9784. color: #5e5e5e;
  9785. margin-right: 7px;
  9786. margin-left: 7px;
  9787. line-height: 22px;
  9788. vertical-align: baseline;
  9789. }
  9790. .item_modified {
  9791. margin-right: 7px;
  9792. margin-left: 7px;
  9793. }
  9794. [dir="rtl"] .item_modified.pull-right {
  9795. float: left !important;
  9796. float: left;
  9797. }
  9798. .item_buttons {
  9799. line-height: 1em;
  9800. margin-left: -5px;
  9801. }
  9802. .item_buttons .btn,
  9803. .item_buttons .btn-group,
  9804. .item_buttons .input-group {
  9805. float: left;
  9806. }
  9807. .item_buttons > .btn,
  9808. .item_buttons > .btn-group,
  9809. .item_buttons > .input-group {
  9810. margin-left: 5px;
  9811. }
  9812. .item_buttons .btn {
  9813. min-width: 13ex;
  9814. }
  9815. .item_buttons .running-indicator {
  9816. padding-top: 4px;
  9817. color: #5cb85c;
  9818. }
  9819. .item_buttons .kernel-name {
  9820. padding-top: 4px;
  9821. color: #5bc0de;
  9822. margin-right: 7px;
  9823. float: left;
  9824. }
  9825. [dir="rtl"] .item_buttons.pull-right {
  9826. float: left !important;
  9827. float: left;
  9828. }
  9829. [dir="rtl"] .item_buttons .kernel-name {
  9830. margin-left: 7px;
  9831. float: right;
  9832. }
  9833. .toolbar_info {
  9834. height: 24px;
  9835. line-height: 24px;
  9836. }
  9837. .list_item input:not([type=checkbox]) {
  9838. padding-top: 3px;
  9839. padding-bottom: 3px;
  9840. height: 22px;
  9841. line-height: 14px;
  9842. margin: 0px;
  9843. }
  9844. .highlight_text {
  9845. color: blue;
  9846. }
  9847. #project_name {
  9848. display: inline-block;
  9849. padding-left: 7px;
  9850. margin-left: -2px;
  9851. }
  9852. #project_name > .breadcrumb {
  9853. padding: 0px;
  9854. margin-bottom: 0px;
  9855. background-color: transparent;
  9856. font-weight: bold;
  9857. }
  9858. .sort_button {
  9859. display: inline-block;
  9860. padding-left: 7px;
  9861. }
  9862. [dir="rtl"] .sort_button.pull-right {
  9863. float: left !important;
  9864. float: left;
  9865. }
  9866. #tree-selector {
  9867. padding-right: 0px;
  9868. }
  9869. #button-select-all {
  9870. min-width: 50px;
  9871. }
  9872. [dir="rtl"] #button-select-all.btn {
  9873. float: right ;
  9874. }
  9875. #select-all {
  9876. margin-left: 7px;
  9877. margin-right: 2px;
  9878. margin-top: 2px;
  9879. height: 16px;
  9880. }
  9881. [dir="rtl"] #select-all.pull-left {
  9882. float: right !important;
  9883. float: right;
  9884. }
  9885. .menu_icon {
  9886. margin-right: 2px;
  9887. }
  9888. .tab-content .row {
  9889. margin-left: 0px;
  9890. margin-right: 0px;
  9891. }
  9892. .folder_icon:before {
  9893. display: inline-block;
  9894. font: normal normal normal 14px/1 FontAwesome;
  9895. font-size: inherit;
  9896. text-rendering: auto;
  9897. -webkit-font-smoothing: antialiased;
  9898. -moz-osx-font-smoothing: grayscale;
  9899. content: "\f114";
  9900. }
  9901. .folder_icon:before.fa-pull-left {
  9902. margin-right: .3em;
  9903. }
  9904. .folder_icon:before.fa-pull-right {
  9905. margin-left: .3em;
  9906. }
  9907. .folder_icon:before.pull-left {
  9908. margin-right: .3em;
  9909. }
  9910. .folder_icon:before.pull-right {
  9911. margin-left: .3em;
  9912. }
  9913. .notebook_icon:before {
  9914. display: inline-block;
  9915. font: normal normal normal 14px/1 FontAwesome;
  9916. font-size: inherit;
  9917. text-rendering: auto;
  9918. -webkit-font-smoothing: antialiased;
  9919. -moz-osx-font-smoothing: grayscale;
  9920. content: "\f02d";
  9921. position: relative;
  9922. top: -1px;
  9923. }
  9924. .notebook_icon:before.fa-pull-left {
  9925. margin-right: .3em;
  9926. }
  9927. .notebook_icon:before.fa-pull-right {
  9928. margin-left: .3em;
  9929. }
  9930. .notebook_icon:before.pull-left {
  9931. margin-right: .3em;
  9932. }
  9933. .notebook_icon:before.pull-right {
  9934. margin-left: .3em;
  9935. }
  9936. .running_notebook_icon:before {
  9937. display: inline-block;
  9938. font: normal normal normal 14px/1 FontAwesome;
  9939. font-size: inherit;
  9940. text-rendering: auto;
  9941. -webkit-font-smoothing: antialiased;
  9942. -moz-osx-font-smoothing: grayscale;
  9943. content: "\f02d";
  9944. position: relative;
  9945. top: -1px;
  9946. color: #5cb85c;
  9947. }
  9948. .running_notebook_icon:before.fa-pull-left {
  9949. margin-right: .3em;
  9950. }
  9951. .running_notebook_icon:before.fa-pull-right {
  9952. margin-left: .3em;
  9953. }
  9954. .running_notebook_icon:before.pull-left {
  9955. margin-right: .3em;
  9956. }
  9957. .running_notebook_icon:before.pull-right {
  9958. margin-left: .3em;
  9959. }
  9960. .file_icon:before {
  9961. display: inline-block;
  9962. font: normal normal normal 14px/1 FontAwesome;
  9963. font-size: inherit;
  9964. text-rendering: auto;
  9965. -webkit-font-smoothing: antialiased;
  9966. -moz-osx-font-smoothing: grayscale;
  9967. content: "\f016";
  9968. position: relative;
  9969. top: -2px;
  9970. }
  9971. .file_icon:before.fa-pull-left {
  9972. margin-right: .3em;
  9973. }
  9974. .file_icon:before.fa-pull-right {
  9975. margin-left: .3em;
  9976. }
  9977. .file_icon:before.pull-left {
  9978. margin-right: .3em;
  9979. }
  9980. .file_icon:before.pull-right {
  9981. margin-left: .3em;
  9982. }
  9983. #notebook_toolbar .pull-right {
  9984. padding-top: 0px;
  9985. margin-right: -1px;
  9986. }
  9987. ul#new-menu {
  9988. left: auto;
  9989. right: 0;
  9990. }
  9991. #new-menu .dropdown-header {
  9992. font-size: 10px;
  9993. border-bottom: 1px solid #e5e5e5;
  9994. padding: 0 0 3px;
  9995. margin: -3px 20px 0;
  9996. }
  9997. .kernel-menu-icon {
  9998. padding-right: 12px;
  9999. width: 24px;
  10000. content: "\f096";
  10001. }
  10002. .kernel-menu-icon:before {
  10003. content: "\f096";
  10004. }
  10005. .kernel-menu-icon-current:before {
  10006. content: "\f00c";
  10007. }
  10008. #tab_content {
  10009. padding-top: 20px;
  10010. }
  10011. #running .panel-group .panel {
  10012. margin-top: 3px;
  10013. margin-bottom: 1em;
  10014. }
  10015. #running .panel-group .panel .panel-heading {
  10016. background-color: #EEE;
  10017. padding-top: 4px;
  10018. padding-bottom: 4px;
  10019. padding-left: 7px;
  10020. padding-right: 7px;
  10021. line-height: 22px;
  10022. }
  10023. #running .panel-group .panel .panel-heading a:focus,
  10024. #running .panel-group .panel .panel-heading a:hover {
  10025. text-decoration: none;
  10026. }
  10027. #running .panel-group .panel .panel-body {
  10028. padding: 0px;
  10029. }
  10030. #running .panel-group .panel .panel-body .list_container {
  10031. margin-top: 0px;
  10032. margin-bottom: 0px;
  10033. border: 0px;
  10034. border-radius: 0px;
  10035. }
  10036. #running .panel-group .panel .panel-body .list_container .list_item {
  10037. border-bottom: 1px solid #ddd;
  10038. }
  10039. #running .panel-group .panel .panel-body .list_container .list_item:last-child {
  10040. border-bottom: 0px;
  10041. }
  10042. .delete-button {
  10043. display: none;
  10044. }
  10045. .duplicate-button {
  10046. display: none;
  10047. }
  10048. .rename-button {
  10049. display: none;
  10050. }
  10051. .move-button {
  10052. display: none;
  10053. }
  10054. .download-button {
  10055. display: none;
  10056. }
  10057. .shutdown-button {
  10058. display: none;
  10059. }
  10060. .dynamic-instructions {
  10061. display: inline-block;
  10062. padding-top: 4px;
  10063. }
  10064. /*!
  10065. *
  10066. * IPython text editor webapp
  10067. *
  10068. */
  10069. .selected-keymap i.fa {
  10070. padding: 0px 5px;
  10071. }
  10072. .selected-keymap i.fa:before {
  10073. content: "\f00c";
  10074. }
  10075. #mode-menu {
  10076. overflow: auto;
  10077. max-height: 20em;
  10078. }
  10079. .edit_app #header {
  10080. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10081. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10082. }
  10083. .edit_app #menubar .navbar {
  10084. /* Use a negative 1 bottom margin, so the border overlaps the border of the
  10085. header */
  10086. margin-bottom: -1px;
  10087. }
  10088. .dirty-indicator {
  10089. display: inline-block;
  10090. font: normal normal normal 14px/1 FontAwesome;
  10091. font-size: inherit;
  10092. text-rendering: auto;
  10093. -webkit-font-smoothing: antialiased;
  10094. -moz-osx-font-smoothing: grayscale;
  10095. width: 20px;
  10096. }
  10097. .dirty-indicator.fa-pull-left {
  10098. margin-right: .3em;
  10099. }
  10100. .dirty-indicator.fa-pull-right {
  10101. margin-left: .3em;
  10102. }
  10103. .dirty-indicator.pull-left {
  10104. margin-right: .3em;
  10105. }
  10106. .dirty-indicator.pull-right {
  10107. margin-left: .3em;
  10108. }
  10109. .dirty-indicator-dirty {
  10110. display: inline-block;
  10111. font: normal normal normal 14px/1 FontAwesome;
  10112. font-size: inherit;
  10113. text-rendering: auto;
  10114. -webkit-font-smoothing: antialiased;
  10115. -moz-osx-font-smoothing: grayscale;
  10116. width: 20px;
  10117. }
  10118. .dirty-indicator-dirty.fa-pull-left {
  10119. margin-right: .3em;
  10120. }
  10121. .dirty-indicator-dirty.fa-pull-right {
  10122. margin-left: .3em;
  10123. }
  10124. .dirty-indicator-dirty.pull-left {
  10125. margin-right: .3em;
  10126. }
  10127. .dirty-indicator-dirty.pull-right {
  10128. margin-left: .3em;
  10129. }
  10130. .dirty-indicator-clean {
  10131. display: inline-block;
  10132. font: normal normal normal 14px/1 FontAwesome;
  10133. font-size: inherit;
  10134. text-rendering: auto;
  10135. -webkit-font-smoothing: antialiased;
  10136. -moz-osx-font-smoothing: grayscale;
  10137. width: 20px;
  10138. }
  10139. .dirty-indicator-clean.fa-pull-left {
  10140. margin-right: .3em;
  10141. }
  10142. .dirty-indicator-clean.fa-pull-right {
  10143. margin-left: .3em;
  10144. }
  10145. .dirty-indicator-clean.pull-left {
  10146. margin-right: .3em;
  10147. }
  10148. .dirty-indicator-clean.pull-right {
  10149. margin-left: .3em;
  10150. }
  10151. .dirty-indicator-clean:before {
  10152. display: inline-block;
  10153. font: normal normal normal 14px/1 FontAwesome;
  10154. font-size: inherit;
  10155. text-rendering: auto;
  10156. -webkit-font-smoothing: antialiased;
  10157. -moz-osx-font-smoothing: grayscale;
  10158. content: "\f00c";
  10159. }
  10160. .dirty-indicator-clean:before.fa-pull-left {
  10161. margin-right: .3em;
  10162. }
  10163. .dirty-indicator-clean:before.fa-pull-right {
  10164. margin-left: .3em;
  10165. }
  10166. .dirty-indicator-clean:before.pull-left {
  10167. margin-right: .3em;
  10168. }
  10169. .dirty-indicator-clean:before.pull-right {
  10170. margin-left: .3em;
  10171. }
  10172. #filename {
  10173. font-size: 16pt;
  10174. display: table;
  10175. padding: 0px 5px;
  10176. }
  10177. #current-mode {
  10178. padding-left: 5px;
  10179. padding-right: 5px;
  10180. }
  10181. #texteditor-backdrop {
  10182. padding-top: 20px;
  10183. padding-bottom: 20px;
  10184. }
  10185. @media not print {
  10186. #texteditor-backdrop {
  10187. background-color: #EEE;
  10188. }
  10189. }
  10190. @media print {
  10191. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  10192. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  10193. background-color: #fff;
  10194. }
  10195. }
  10196. @media not print {
  10197. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  10198. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  10199. background-color: #fff;
  10200. }
  10201. }
  10202. @media not print {
  10203. #texteditor-backdrop #texteditor-container {
  10204. padding: 0px;
  10205. background-color: #fff;
  10206. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10207. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10208. }
  10209. }
  10210. .CodeMirror-dialog {
  10211. background-color: #fff;
  10212. }
  10213. /*!
  10214. *
  10215. * IPython notebook
  10216. *
  10217. */
  10218. /* CSS font colors for translated ANSI escape sequences */
  10219. /* The color values are a mix of
  10220. http://www.xcolors.net/dl/baskerville-ivorylight and
  10221. http://www.xcolors.net/dl/euphrasia */
  10222. .ansi-black-fg {
  10223. color: #3E424D;
  10224. }
  10225. .ansi-black-bg {
  10226. background-color: #3E424D;
  10227. }
  10228. .ansi-black-intense-fg {
  10229. color: #282C36;
  10230. }
  10231. .ansi-black-intense-bg {
  10232. background-color: #282C36;
  10233. }
  10234. .ansi-red-fg {
  10235. color: #E75C58;
  10236. }
  10237. .ansi-red-bg {
  10238. background-color: #E75C58;
  10239. }
  10240. .ansi-red-intense-fg {
  10241. color: #B22B31;
  10242. }
  10243. .ansi-red-intense-bg {
  10244. background-color: #B22B31;
  10245. }
  10246. .ansi-green-fg {
  10247. color: #00A250;
  10248. }
  10249. .ansi-green-bg {
  10250. background-color: #00A250;
  10251. }
  10252. .ansi-green-intense-fg {
  10253. color: #007427;
  10254. }
  10255. .ansi-green-intense-bg {
  10256. background-color: #007427;
  10257. }
  10258. .ansi-yellow-fg {
  10259. color: #DDB62B;
  10260. }
  10261. .ansi-yellow-bg {
  10262. background-color: #DDB62B;
  10263. }
  10264. .ansi-yellow-intense-fg {
  10265. color: #B27D12;
  10266. }
  10267. .ansi-yellow-intense-bg {
  10268. background-color: #B27D12;
  10269. }
  10270. .ansi-blue-fg {
  10271. color: #208FFB;
  10272. }
  10273. .ansi-blue-bg {
  10274. background-color: #208FFB;
  10275. }
  10276. .ansi-blue-intense-fg {
  10277. color: #0065CA;
  10278. }
  10279. .ansi-blue-intense-bg {
  10280. background-color: #0065CA;
  10281. }
  10282. .ansi-magenta-fg {
  10283. color: #D160C4;
  10284. }
  10285. .ansi-magenta-bg {
  10286. background-color: #D160C4;
  10287. }
  10288. .ansi-magenta-intense-fg {
  10289. color: #A03196;
  10290. }
  10291. .ansi-magenta-intense-bg {
  10292. background-color: #A03196;
  10293. }
  10294. .ansi-cyan-fg {
  10295. color: #60C6C8;
  10296. }
  10297. .ansi-cyan-bg {
  10298. background-color: #60C6C8;
  10299. }
  10300. .ansi-cyan-intense-fg {
  10301. color: #258F8F;
  10302. }
  10303. .ansi-cyan-intense-bg {
  10304. background-color: #258F8F;
  10305. }
  10306. .ansi-white-fg {
  10307. color: #C5C1B4;
  10308. }
  10309. .ansi-white-bg {
  10310. background-color: #C5C1B4;
  10311. }
  10312. .ansi-white-intense-fg {
  10313. color: #A1A6B2;
  10314. }
  10315. .ansi-white-intense-bg {
  10316. background-color: #A1A6B2;
  10317. }
  10318. .ansi-default-inverse-fg {
  10319. color: #FFFFFF;
  10320. }
  10321. .ansi-default-inverse-bg {
  10322. background-color: #000000;
  10323. }
  10324. .ansi-bold {
  10325. font-weight: bold;
  10326. }
  10327. .ansi-underline {
  10328. text-decoration: underline;
  10329. }
  10330. /* The following styles are deprecated an will be removed in a future version */
  10331. .ansibold {
  10332. font-weight: bold;
  10333. }
  10334. .ansi-inverse {
  10335. outline: 0.5px dotted;
  10336. }
  10337. /* use dark versions for foreground, to improve visibility */
  10338. .ansiblack {
  10339. color: black;
  10340. }
  10341. .ansired {
  10342. color: darkred;
  10343. }
  10344. .ansigreen {
  10345. color: darkgreen;
  10346. }
  10347. .ansiyellow {
  10348. color: #c4a000;
  10349. }
  10350. .ansiblue {
  10351. color: darkblue;
  10352. }
  10353. .ansipurple {
  10354. color: darkviolet;
  10355. }
  10356. .ansicyan {
  10357. color: steelblue;
  10358. }
  10359. .ansigray {
  10360. color: gray;
  10361. }
  10362. /* and light for background, for the same reason */
  10363. .ansibgblack {
  10364. background-color: black;
  10365. }
  10366. .ansibgred {
  10367. background-color: red;
  10368. }
  10369. .ansibggreen {
  10370. background-color: green;
  10371. }
  10372. .ansibgyellow {
  10373. background-color: yellow;
  10374. }
  10375. .ansibgblue {
  10376. background-color: blue;
  10377. }
  10378. .ansibgpurple {
  10379. background-color: magenta;
  10380. }
  10381. .ansibgcyan {
  10382. background-color: cyan;
  10383. }
  10384. .ansibggray {
  10385. background-color: gray;
  10386. }
  10387. div.cell {
  10388. /* Old browsers */
  10389. display: -webkit-box;
  10390. -webkit-box-orient: vertical;
  10391. -webkit-box-align: stretch;
  10392. display: -moz-box;
  10393. -moz-box-orient: vertical;
  10394. -moz-box-align: stretch;
  10395. display: box;
  10396. box-orient: vertical;
  10397. box-align: stretch;
  10398. /* Modern browsers */
  10399. display: flex;
  10400. flex-direction: column;
  10401. align-items: stretch;
  10402. border-radius: 2px;
  10403. box-sizing: border-box;
  10404. -moz-box-sizing: border-box;
  10405. -webkit-box-sizing: border-box;
  10406. border-width: 1px;
  10407. border-style: solid;
  10408. border-color: transparent;
  10409. width: 100%;
  10410. padding: 5px;
  10411. /* This acts as a spacer between cells, that is outside the border */
  10412. margin: 0px;
  10413. outline: none;
  10414. position: relative;
  10415. overflow: visible;
  10416. }
  10417. div.cell:before {
  10418. position: absolute;
  10419. display: block;
  10420. top: -1px;
  10421. left: -1px;
  10422. width: 5px;
  10423. height: calc(100% + 2px);
  10424. content: '';
  10425. background: transparent;
  10426. }
  10427. div.cell.jupyter-soft-selected {
  10428. border-left-color: #E3F2FD;
  10429. border-left-width: 1px;
  10430. padding-left: 5px;
  10431. border-right-color: #E3F2FD;
  10432. border-right-width: 1px;
  10433. background: #E3F2FD;
  10434. }
  10435. @media print {
  10436. div.cell.jupyter-soft-selected {
  10437. border-color: transparent;
  10438. }
  10439. }
  10440. div.cell.selected,
  10441. div.cell.selected.jupyter-soft-selected {
  10442. border-color: #ababab;
  10443. }
  10444. div.cell.selected:before,
  10445. div.cell.selected.jupyter-soft-selected:before {
  10446. position: absolute;
  10447. display: block;
  10448. top: -1px;
  10449. left: -1px;
  10450. width: 5px;
  10451. height: calc(100% + 2px);
  10452. content: '';
  10453. background: #42A5F5;
  10454. }
  10455. @media print {
  10456. div.cell.selected,
  10457. div.cell.selected.jupyter-soft-selected {
  10458. border-color: transparent;
  10459. }
  10460. }
  10461. .edit_mode div.cell.selected {
  10462. border-color: #66BB6A;
  10463. }
  10464. .edit_mode div.cell.selected:before {
  10465. position: absolute;
  10466. display: block;
  10467. top: -1px;
  10468. left: -1px;
  10469. width: 5px;
  10470. height: calc(100% + 2px);
  10471. content: '';
  10472. background: #66BB6A;
  10473. }
  10474. @media print {
  10475. .edit_mode div.cell.selected {
  10476. border-color: transparent;
  10477. }
  10478. }
  10479. .prompt {
  10480. /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
  10481. min-width: 14ex;
  10482. /* This padding is tuned to match the padding on the CodeMirror editor. */
  10483. padding: 0.4em;
  10484. margin: 0px;
  10485. font-family: monospace;
  10486. text-align: right;
  10487. /* This has to match that of the the CodeMirror class line-height below */
  10488. line-height: 1.21429em;
  10489. /* Don't highlight prompt number selection */
  10490. -webkit-touch-callout: none;
  10491. -webkit-user-select: none;
  10492. -khtml-user-select: none;
  10493. -moz-user-select: none;
  10494. -ms-user-select: none;
  10495. user-select: none;
  10496. /* Use default cursor */
  10497. cursor: default;
  10498. }
  10499. @media (max-width: 540px) {
  10500. .prompt {
  10501. text-align: left;
  10502. }
  10503. }
  10504. div.inner_cell {
  10505. min-width: 0;
  10506. /* Old browsers */
  10507. display: -webkit-box;
  10508. -webkit-box-orient: vertical;
  10509. -webkit-box-align: stretch;
  10510. display: -moz-box;
  10511. -moz-box-orient: vertical;
  10512. -moz-box-align: stretch;
  10513. display: box;
  10514. box-orient: vertical;
  10515. box-align: stretch;
  10516. /* Modern browsers */
  10517. display: flex;
  10518. flex-direction: column;
  10519. align-items: stretch;
  10520. /* Old browsers */
  10521. -webkit-box-flex: 1;
  10522. -moz-box-flex: 1;
  10523. box-flex: 1;
  10524. /* Modern browsers */
  10525. flex: 1;
  10526. }
  10527. /* input_area and input_prompt must match in top border and margin for alignment */
  10528. div.input_area {
  10529. border: 1px solid #cfcfcf;
  10530. border-radius: 2px;
  10531. background: #f7f7f7;
  10532. line-height: 1.21429em;
  10533. }
  10534. /* This is needed so that empty prompt areas can collapse to zero height when there
  10535. is no content in the output_subarea and the prompt. The main purpose of this is
  10536. to make sure that empty JavaScript output_subareas have no height. */
  10537. div.prompt:empty {
  10538. padding-top: 0;
  10539. padding-bottom: 0;
  10540. }
  10541. div.unrecognized_cell {
  10542. padding: 5px 5px 5px 0px;
  10543. /* Old browsers */
  10544. display: -webkit-box;
  10545. -webkit-box-orient: horizontal;
  10546. -webkit-box-align: stretch;
  10547. display: -moz-box;
  10548. -moz-box-orient: horizontal;
  10549. -moz-box-align: stretch;
  10550. display: box;
  10551. box-orient: horizontal;
  10552. box-align: stretch;
  10553. /* Modern browsers */
  10554. display: flex;
  10555. flex-direction: row;
  10556. align-items: stretch;
  10557. }
  10558. div.unrecognized_cell .inner_cell {
  10559. border-radius: 2px;
  10560. padding: 5px;
  10561. font-weight: bold;
  10562. color: red;
  10563. border: 1px solid #cfcfcf;
  10564. background: #eaeaea;
  10565. }
  10566. div.unrecognized_cell .inner_cell a {
  10567. color: inherit;
  10568. text-decoration: none;
  10569. }
  10570. div.unrecognized_cell .inner_cell a:hover {
  10571. color: inherit;
  10572. text-decoration: none;
  10573. }
  10574. @media (max-width: 540px) {
  10575. div.unrecognized_cell > div.prompt {
  10576. display: none;
  10577. }
  10578. }
  10579. div.code_cell {
  10580. /* avoid page breaking on code cells when printing */
  10581. }
  10582. @media print {
  10583. div.code_cell {
  10584. page-break-inside: avoid;
  10585. }
  10586. }
  10587. /* any special styling for code cells that are currently running goes here */
  10588. div.input {
  10589. page-break-inside: avoid;
  10590. /* Old browsers */
  10591. display: -webkit-box;
  10592. -webkit-box-orient: horizontal;
  10593. -webkit-box-align: stretch;
  10594. display: -moz-box;
  10595. -moz-box-orient: horizontal;
  10596. -moz-box-align: stretch;
  10597. display: box;
  10598. box-orient: horizontal;
  10599. box-align: stretch;
  10600. /* Modern browsers */
  10601. display: flex;
  10602. flex-direction: row;
  10603. align-items: stretch;
  10604. }
  10605. @media (max-width: 540px) {
  10606. div.input {
  10607. /* Old browsers */
  10608. display: -webkit-box;
  10609. -webkit-box-orient: vertical;
  10610. -webkit-box-align: stretch;
  10611. display: -moz-box;
  10612. -moz-box-orient: vertical;
  10613. -moz-box-align: stretch;
  10614. display: box;
  10615. box-orient: vertical;
  10616. box-align: stretch;
  10617. /* Modern browsers */
  10618. display: flex;
  10619. flex-direction: column;
  10620. align-items: stretch;
  10621. }
  10622. }
  10623. /* input_area and input_prompt must match in top border and margin for alignment */
  10624. div.input_prompt {
  10625. color: #303F9F;
  10626. border-top: 1px solid transparent;
  10627. }
  10628. div.input_area > div.highlight {
  10629. margin: 0.4em;
  10630. border: none;
  10631. padding: 0px;
  10632. background-color: transparent;
  10633. }
  10634. div.input_area > div.highlight > pre {
  10635. margin: 0px;
  10636. border: none;
  10637. padding: 0px;
  10638. background-color: transparent;
  10639. }
  10640. /* The following gets added to the <head> if it is detected that the user has a
  10641. * monospace font with inconsistent normal/bold/italic height. See
  10642. * notebookmain.js. Such fonts will have keywords vertically offset with
  10643. * respect to the rest of the text. The user should select a better font.
  10644. * See: https://github.com/ipython/ipython/issues/1503
  10645. *
  10646. * .CodeMirror span {
  10647. * vertical-align: bottom;
  10648. * }
  10649. */
  10650. .CodeMirror {
  10651. line-height: 1.21429em;
  10652. /* Changed from 1em to our global default */
  10653. font-size: 14px;
  10654. height: auto;
  10655. /* Changed to auto to autogrow */
  10656. background: none;
  10657. /* Changed from white to allow our bg to show through */
  10658. }
  10659. .CodeMirror-scroll {
  10660. /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
  10661. /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
  10662. overflow-y: hidden;
  10663. overflow-x: auto;
  10664. }
  10665. .CodeMirror-lines {
  10666. /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
  10667. /* we have set a different line-height and want this to scale with that. */
  10668. /* Note that this should set vertical padding only, since CodeMirror assumes
  10669. that horizontal padding will be set on CodeMirror pre */
  10670. padding: 0.4em 0;
  10671. }
  10672. .CodeMirror-linenumber {
  10673. padding: 0 8px 0 4px;
  10674. }
  10675. .CodeMirror-gutters {
  10676. border-bottom-left-radius: 2px;
  10677. border-top-left-radius: 2px;
  10678. }
  10679. .CodeMirror pre {
  10680. /* In CM3 this went to 4px from 0 in CM2. This sets horizontal padding only,
  10681. use .CodeMirror-lines for vertical */
  10682. padding: 0 0.4em;
  10683. border: 0;
  10684. border-radius: 0;
  10685. }
  10686. .CodeMirror-cursor {
  10687. border-left: 1.4px solid black;
  10688. }
  10689. @media screen and (min-width: 2138px) and (max-width: 4319px) {
  10690. .CodeMirror-cursor {
  10691. border-left: 2px solid black;
  10692. }
  10693. }
  10694. @media screen and (min-width: 4320px) {
  10695. .CodeMirror-cursor {
  10696. border-left: 4px solid black;
  10697. }
  10698. }
  10699. /*
  10700. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  10701. Adapted from GitHub theme
  10702. */
  10703. .highlight-base {
  10704. color: #000;
  10705. }
  10706. .highlight-variable {
  10707. color: #000;
  10708. }
  10709. .highlight-variable-2 {
  10710. color: #1a1a1a;
  10711. }
  10712. .highlight-variable-3 {
  10713. color: #333333;
  10714. }
  10715. .highlight-string {
  10716. color: #BA2121;
  10717. }
  10718. .highlight-comment {
  10719. color: #408080;
  10720. font-style: italic;
  10721. }
  10722. .highlight-number {
  10723. color: #080;
  10724. }
  10725. .highlight-atom {
  10726. color: #88F;
  10727. }
  10728. .highlight-keyword {
  10729. color: #008000;
  10730. font-weight: bold;
  10731. }
  10732. .highlight-builtin {
  10733. color: #008000;
  10734. }
  10735. .highlight-error {
  10736. color: #f00;
  10737. }
  10738. .highlight-operator {
  10739. color: #AA22FF;
  10740. font-weight: bold;
  10741. }
  10742. .highlight-meta {
  10743. color: #AA22FF;
  10744. }
  10745. /* previously not defined, copying from default codemirror */
  10746. .highlight-def {
  10747. color: #00f;
  10748. }
  10749. .highlight-string-2 {
  10750. color: #f50;
  10751. }
  10752. .highlight-qualifier {
  10753. color: #555;
  10754. }
  10755. .highlight-bracket {
  10756. color: #997;
  10757. }
  10758. .highlight-tag {
  10759. color: #170;
  10760. }
  10761. .highlight-attribute {
  10762. color: #00c;
  10763. }
  10764. .highlight-header {
  10765. color: blue;
  10766. }
  10767. .highlight-quote {
  10768. color: #090;
  10769. }
  10770. .highlight-link {
  10771. color: #00c;
  10772. }
  10773. /* apply the same style to codemirror */
  10774. .cm-s-ipython span.cm-keyword {
  10775. color: #008000;
  10776. font-weight: bold;
  10777. }
  10778. .cm-s-ipython span.cm-atom {
  10779. color: #88F;
  10780. }
  10781. .cm-s-ipython span.cm-number {
  10782. color: #080;
  10783. }
  10784. .cm-s-ipython span.cm-def {
  10785. color: #00f;
  10786. }
  10787. .cm-s-ipython span.cm-variable {
  10788. color: #000;
  10789. }
  10790. .cm-s-ipython span.cm-operator {
  10791. color: #AA22FF;
  10792. font-weight: bold;
  10793. }
  10794. .cm-s-ipython span.cm-variable-2 {
  10795. color: #1a1a1a;
  10796. }
  10797. .cm-s-ipython span.cm-variable-3 {
  10798. color: #333333;
  10799. }
  10800. .cm-s-ipython span.cm-comment {
  10801. color: #408080;
  10802. font-style: italic;
  10803. }
  10804. .cm-s-ipython span.cm-string {
  10805. color: #BA2121;
  10806. }
  10807. .cm-s-ipython span.cm-string-2 {
  10808. color: #f50;
  10809. }
  10810. .cm-s-ipython span.cm-meta {
  10811. color: #AA22FF;
  10812. }
  10813. .cm-s-ipython span.cm-qualifier {
  10814. color: #555;
  10815. }
  10816. .cm-s-ipython span.cm-builtin {
  10817. color: #008000;
  10818. }
  10819. .cm-s-ipython span.cm-bracket {
  10820. color: #997;
  10821. }
  10822. .cm-s-ipython span.cm-tag {
  10823. color: #170;
  10824. }
  10825. .cm-s-ipython span.cm-attribute {
  10826. color: #00c;
  10827. }
  10828. .cm-s-ipython span.cm-header {
  10829. color: blue;
  10830. }
  10831. .cm-s-ipython span.cm-quote {
  10832. color: #090;
  10833. }
  10834. .cm-s-ipython span.cm-link {
  10835. color: #00c;
  10836. }
  10837. .cm-s-ipython span.cm-error {
  10838. color: #f00;
  10839. }
  10840. .cm-s-ipython span.cm-tab {
  10841. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  10842. background-position: right;
  10843. background-repeat: no-repeat;
  10844. }
  10845. div.output_wrapper {
  10846. /* this position must be relative to enable descendents to be absolute within it */
  10847. position: relative;
  10848. /* Old browsers */
  10849. display: -webkit-box;
  10850. -webkit-box-orient: vertical;
  10851. -webkit-box-align: stretch;
  10852. display: -moz-box;
  10853. -moz-box-orient: vertical;
  10854. -moz-box-align: stretch;
  10855. display: box;
  10856. box-orient: vertical;
  10857. box-align: stretch;
  10858. /* Modern browsers */
  10859. display: flex;
  10860. flex-direction: column;
  10861. align-items: stretch;
  10862. z-index: 1;
  10863. }
  10864. /* class for the output area when it should be height-limited */
  10865. div.output_scroll {
  10866. /* ideally, this would be max-height, but FF barfs all over that */
  10867. height: 24em;
  10868. /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
  10869. width: 100%;
  10870. overflow: auto;
  10871. border-radius: 2px;
  10872. -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  10873. box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  10874. display: block;
  10875. }
  10876. /* output div while it is collapsed */
  10877. div.output_collapsed {
  10878. margin: 0px;
  10879. padding: 0px;
  10880. /* Old browsers */
  10881. display: -webkit-box;
  10882. -webkit-box-orient: vertical;
  10883. -webkit-box-align: stretch;
  10884. display: -moz-box;
  10885. -moz-box-orient: vertical;
  10886. -moz-box-align: stretch;
  10887. display: box;
  10888. box-orient: vertical;
  10889. box-align: stretch;
  10890. /* Modern browsers */
  10891. display: flex;
  10892. flex-direction: column;
  10893. align-items: stretch;
  10894. }
  10895. div.out_prompt_overlay {
  10896. height: 100%;
  10897. padding: 0px 0.4em;
  10898. position: absolute;
  10899. border-radius: 2px;
  10900. }
  10901. div.out_prompt_overlay:hover {
  10902. /* use inner shadow to get border that is computed the same on WebKit/FF */
  10903. -webkit-box-shadow: inset 0 0 1px #000;
  10904. box-shadow: inset 0 0 1px #000;
  10905. background: rgba(240, 240, 240, 0.5);
  10906. }
  10907. div.output_prompt {
  10908. color: #D84315;
  10909. }
  10910. /* This class is the outer container of all output sections. */
  10911. div.output_area {
  10912. padding: 0px;
  10913. page-break-inside: avoid;
  10914. /* Old browsers */
  10915. display: -webkit-box;
  10916. -webkit-box-orient: horizontal;
  10917. -webkit-box-align: stretch;
  10918. display: -moz-box;
  10919. -moz-box-orient: horizontal;
  10920. -moz-box-align: stretch;
  10921. display: box;
  10922. box-orient: horizontal;
  10923. box-align: stretch;
  10924. /* Modern browsers */
  10925. display: flex;
  10926. flex-direction: row;
  10927. align-items: stretch;
  10928. }
  10929. div.output_area .MathJax_Display {
  10930. text-align: left !important;
  10931. }
  10932. div.output_area .rendered_html table {
  10933. margin-left: 0;
  10934. margin-right: 0;
  10935. }
  10936. div.output_area .rendered_html img {
  10937. margin-left: 0;
  10938. margin-right: 0;
  10939. }
  10940. div.output_area img,
  10941. div.output_area svg {
  10942. max-width: 100%;
  10943. height: auto;
  10944. }
  10945. div.output_area img.unconfined,
  10946. div.output_area svg.unconfined {
  10947. max-width: none;
  10948. }
  10949. div.output_area .mglyph > img {
  10950. max-width: none;
  10951. }
  10952. /* This is needed to protect the pre formating from global settings such
  10953. as that of bootstrap */
  10954. .output {
  10955. /* Old browsers */
  10956. display: -webkit-box;
  10957. -webkit-box-orient: vertical;
  10958. -webkit-box-align: stretch;
  10959. display: -moz-box;
  10960. -moz-box-orient: vertical;
  10961. -moz-box-align: stretch;
  10962. display: box;
  10963. box-orient: vertical;
  10964. box-align: stretch;
  10965. /* Modern browsers */
  10966. display: flex;
  10967. flex-direction: column;
  10968. align-items: stretch;
  10969. }
  10970. @media (max-width: 540px) {
  10971. div.output_area {
  10972. /* Old browsers */
  10973. display: -webkit-box;
  10974. -webkit-box-orient: vertical;
  10975. -webkit-box-align: stretch;
  10976. display: -moz-box;
  10977. -moz-box-orient: vertical;
  10978. -moz-box-align: stretch;
  10979. display: box;
  10980. box-orient: vertical;
  10981. box-align: stretch;
  10982. /* Modern browsers */
  10983. display: flex;
  10984. flex-direction: column;
  10985. align-items: stretch;
  10986. }
  10987. }
  10988. div.output_area pre {
  10989. margin: 0;
  10990. padding: 1px 0 1px 0;
  10991. border: 0;
  10992. vertical-align: baseline;
  10993. color: black;
  10994. background-color: transparent;
  10995. border-radius: 0;
  10996. }
  10997. /* This class is for the output subarea inside the output_area and after
  10998. the prompt div. */
  10999. div.output_subarea {
  11000. overflow-x: auto;
  11001. padding: 0.4em;
  11002. /* Old browsers */
  11003. -webkit-box-flex: 1;
  11004. -moz-box-flex: 1;
  11005. box-flex: 1;
  11006. /* Modern browsers */
  11007. flex: 1;
  11008. max-width: calc(100% - 14ex);
  11009. }
  11010. div.output_scroll div.output_subarea {
  11011. overflow-x: visible;
  11012. }
  11013. /* The rest of the output_* classes are for special styling of the different
  11014. output types */
  11015. /* all text output has this class: */
  11016. div.output_text {
  11017. text-align: left;
  11018. color: #000;
  11019. /* This has to match that of the the CodeMirror class line-height below */
  11020. line-height: 1.21429em;
  11021. }
  11022. /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
  11023. div.output_stderr {
  11024. background: #fdd;
  11025. /* very light red background for stderr */
  11026. }
  11027. div.output_latex {
  11028. text-align: left;
  11029. }
  11030. /* Empty output_javascript divs should have no height */
  11031. div.output_javascript:empty {
  11032. padding: 0;
  11033. }
  11034. .js-error {
  11035. color: darkred;
  11036. }
  11037. /* raw_input styles */
  11038. div.raw_input_container {
  11039. line-height: 1.21429em;
  11040. padding-top: 5px;
  11041. }
  11042. pre.raw_input_prompt {
  11043. /* nothing needed here. */
  11044. }
  11045. input.raw_input {
  11046. font-family: monospace;
  11047. font-size: inherit;
  11048. color: inherit;
  11049. width: auto;
  11050. /* make sure input baseline aligns with prompt */
  11051. vertical-align: baseline;
  11052. /* padding + margin = 0.5em between prompt and cursor */
  11053. padding: 0em 0.25em;
  11054. margin: 0em 0.25em;
  11055. }
  11056. input.raw_input:focus {
  11057. box-shadow: none;
  11058. }
  11059. p.p-space {
  11060. margin-bottom: 10px;
  11061. }
  11062. div.output_unrecognized {
  11063. padding: 5px;
  11064. font-weight: bold;
  11065. color: red;
  11066. }
  11067. div.output_unrecognized a {
  11068. color: inherit;
  11069. text-decoration: none;
  11070. }
  11071. div.output_unrecognized a:hover {
  11072. color: inherit;
  11073. text-decoration: none;
  11074. }
  11075. .rendered_html {
  11076. color: #000;
  11077. /* any extras will just be numbers: */
  11078. }
  11079. .rendered_html em {
  11080. font-style: italic;
  11081. }
  11082. .rendered_html strong {
  11083. font-weight: bold;
  11084. }
  11085. .rendered_html u {
  11086. text-decoration: underline;
  11087. }
  11088. .rendered_html :link {
  11089. text-decoration: underline;
  11090. }
  11091. .rendered_html :visited {
  11092. text-decoration: underline;
  11093. }
  11094. .rendered_html h1 {
  11095. font-size: 185.7%;
  11096. margin: 1.08em 0 0 0;
  11097. font-weight: bold;
  11098. line-height: 1.0;
  11099. }
  11100. .rendered_html h2 {
  11101. font-size: 157.1%;
  11102. margin: 1.27em 0 0 0;
  11103. font-weight: bold;
  11104. line-height: 1.0;
  11105. }
  11106. .rendered_html h3 {
  11107. font-size: 128.6%;
  11108. margin: 1.55em 0 0 0;
  11109. font-weight: bold;
  11110. line-height: 1.0;
  11111. }
  11112. .rendered_html h4 {
  11113. font-size: 100%;
  11114. margin: 2em 0 0 0;
  11115. font-weight: bold;
  11116. line-height: 1.0;
  11117. }
  11118. .rendered_html h5 {
  11119. font-size: 100%;
  11120. margin: 2em 0 0 0;
  11121. font-weight: bold;
  11122. line-height: 1.0;
  11123. font-style: italic;
  11124. }
  11125. .rendered_html h6 {
  11126. font-size: 100%;
  11127. margin: 2em 0 0 0;
  11128. font-weight: bold;
  11129. line-height: 1.0;
  11130. font-style: italic;
  11131. }
  11132. .rendered_html h1:first-child {
  11133. margin-top: 0.538em;
  11134. }
  11135. .rendered_html h2:first-child {
  11136. margin-top: 0.636em;
  11137. }
  11138. .rendered_html h3:first-child {
  11139. margin-top: 0.777em;
  11140. }
  11141. .rendered_html h4:first-child {
  11142. margin-top: 1em;
  11143. }
  11144. .rendered_html h5:first-child {
  11145. margin-top: 1em;
  11146. }
  11147. .rendered_html h6:first-child {
  11148. margin-top: 1em;
  11149. }
  11150. .rendered_html ul:not(.list-inline),
  11151. .rendered_html ol:not(.list-inline) {
  11152. padding-left: 2em;
  11153. }
  11154. .rendered_html ul {
  11155. list-style: disc;
  11156. }
  11157. .rendered_html ul ul {
  11158. list-style: square;
  11159. margin-top: 0;
  11160. }
  11161. .rendered_html ul ul ul {
  11162. list-style: circle;
  11163. }
  11164. .rendered_html ol {
  11165. list-style: decimal;
  11166. }
  11167. .rendered_html ol ol {
  11168. list-style: upper-alpha;
  11169. margin-top: 0;
  11170. }
  11171. .rendered_html ol ol ol {
  11172. list-style: lower-alpha;
  11173. }
  11174. .rendered_html ol ol ol ol {
  11175. list-style: lower-roman;
  11176. }
  11177. .rendered_html ol ol ol ol ol {
  11178. list-style: decimal;
  11179. }
  11180. .rendered_html * + ul {
  11181. margin-top: 1em;
  11182. }
  11183. .rendered_html * + ol {
  11184. margin-top: 1em;
  11185. }
  11186. .rendered_html hr {
  11187. color: black;
  11188. background-color: black;
  11189. }
  11190. .rendered_html pre {
  11191. margin: 1em 2em;
  11192. padding: 0px;
  11193. background-color: #fff;
  11194. }
  11195. .rendered_html code {
  11196. background-color: #eff0f1;
  11197. }
  11198. .rendered_html p code {
  11199. padding: 1px 5px;
  11200. }
  11201. .rendered_html pre code {
  11202. background-color: #fff;
  11203. }
  11204. .rendered_html pre,
  11205. .rendered_html code {
  11206. border: 0;
  11207. color: #000;
  11208. font-size: 100%;
  11209. }
  11210. .rendered_html blockquote {
  11211. margin: 1em 2em;
  11212. }
  11213. .rendered_html table {
  11214. margin-left: auto;
  11215. margin-right: auto;
  11216. border: none;
  11217. border-collapse: collapse;
  11218. border-spacing: 0;
  11219. color: black;
  11220. font-size: 12px;
  11221. table-layout: fixed;
  11222. }
  11223. .rendered_html thead {
  11224. border-bottom: 1px solid black;
  11225. vertical-align: bottom;
  11226. }
  11227. .rendered_html tr,
  11228. .rendered_html th,
  11229. .rendered_html td {
  11230. text-align: right;
  11231. vertical-align: middle;
  11232. padding: 0.5em 0.5em;
  11233. line-height: normal;
  11234. white-space: normal;
  11235. max-width: none;
  11236. border: none;
  11237. }
  11238. .rendered_html th {
  11239. font-weight: bold;
  11240. }
  11241. .rendered_html tbody tr:nth-child(odd) {
  11242. background: #f5f5f5;
  11243. }
  11244. .rendered_html tbody tr:hover {
  11245. background: rgba(66, 165, 245, 0.2);
  11246. }
  11247. .rendered_html * + table {
  11248. margin-top: 1em;
  11249. }
  11250. .rendered_html p {
  11251. text-align: left;
  11252. }
  11253. .rendered_html * + p {
  11254. margin-top: 1em;
  11255. }
  11256. .rendered_html img {
  11257. display: block;
  11258. margin-left: auto;
  11259. margin-right: auto;
  11260. }
  11261. .rendered_html * + img {
  11262. margin-top: 1em;
  11263. }
  11264. .rendered_html img,
  11265. .rendered_html svg {
  11266. max-width: 100%;
  11267. height: auto;
  11268. }
  11269. .rendered_html img.unconfined,
  11270. .rendered_html svg.unconfined {
  11271. max-width: none;
  11272. }
  11273. .rendered_html .alert {
  11274. margin-bottom: initial;
  11275. }
  11276. .rendered_html * + .alert {
  11277. margin-top: 1em;
  11278. }
  11279. [dir="rtl"] .rendered_html p {
  11280. text-align: right;
  11281. }
  11282. div.text_cell {
  11283. /* Old browsers */
  11284. display: -webkit-box;
  11285. -webkit-box-orient: horizontal;
  11286. -webkit-box-align: stretch;
  11287. display: -moz-box;
  11288. -moz-box-orient: horizontal;
  11289. -moz-box-align: stretch;
  11290. display: box;
  11291. box-orient: horizontal;
  11292. box-align: stretch;
  11293. /* Modern browsers */
  11294. display: flex;
  11295. flex-direction: row;
  11296. align-items: stretch;
  11297. }
  11298. @media (max-width: 540px) {
  11299. div.text_cell > div.prompt {
  11300. display: none;
  11301. }
  11302. }
  11303. div.text_cell_render {
  11304. /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
  11305. outline: none;
  11306. resize: none;
  11307. width: inherit;
  11308. border-style: none;
  11309. padding: 0.5em 0.5em 0.5em 0.4em;
  11310. color: #000;
  11311. box-sizing: border-box;
  11312. -moz-box-sizing: border-box;
  11313. -webkit-box-sizing: border-box;
  11314. }
  11315. a.anchor-link:link {
  11316. text-decoration: none;
  11317. padding: 0px 20px;
  11318. visibility: hidden;
  11319. }
  11320. h1:hover .anchor-link,
  11321. h2:hover .anchor-link,
  11322. h3:hover .anchor-link,
  11323. h4:hover .anchor-link,
  11324. h5:hover .anchor-link,
  11325. h6:hover .anchor-link {
  11326. visibility: visible;
  11327. }
  11328. .text_cell.rendered .input_area {
  11329. display: none;
  11330. }
  11331. .text_cell.rendered .rendered_html {
  11332. overflow-x: auto;
  11333. overflow-y: hidden;
  11334. }
  11335. .text_cell.rendered .rendered_html tr,
  11336. .text_cell.rendered .rendered_html th,
  11337. .text_cell.rendered .rendered_html td {
  11338. max-width: none;
  11339. }
  11340. .text_cell.unrendered .text_cell_render {
  11341. display: none;
  11342. }
  11343. .text_cell .dropzone .input_area {
  11344. border: 2px dashed #bababa;
  11345. margin: -1px;
  11346. }
  11347. .cm-header-1,
  11348. .cm-header-2,
  11349. .cm-header-3,
  11350. .cm-header-4,
  11351. .cm-header-5,
  11352. .cm-header-6 {
  11353. font-weight: bold;
  11354. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  11355. }
  11356. .cm-header-1 {
  11357. font-size: 185.7%;
  11358. }
  11359. .cm-header-2 {
  11360. font-size: 157.1%;
  11361. }
  11362. .cm-header-3 {
  11363. font-size: 128.6%;
  11364. }
  11365. .cm-header-4 {
  11366. font-size: 110%;
  11367. }
  11368. .cm-header-5 {
  11369. font-size: 100%;
  11370. font-style: italic;
  11371. }
  11372. .cm-header-6 {
  11373. font-size: 100%;
  11374. font-style: italic;
  11375. }
  11376. /*!
  11377. *
  11378. * IPython notebook webapp
  11379. *
  11380. */
  11381. @media (max-width: 767px) {
  11382. .notebook_app {
  11383. padding-left: 0px;
  11384. padding-right: 0px;
  11385. }
  11386. }
  11387. #ipython-main-app {
  11388. box-sizing: border-box;
  11389. -moz-box-sizing: border-box;
  11390. -webkit-box-sizing: border-box;
  11391. height: 100%;
  11392. }
  11393. div#notebook_panel {
  11394. margin: 0px;
  11395. padding: 0px;
  11396. box-sizing: border-box;
  11397. -moz-box-sizing: border-box;
  11398. -webkit-box-sizing: border-box;
  11399. height: 100%;
  11400. }
  11401. div#notebook {
  11402. font-size: 14px;
  11403. line-height: 20px;
  11404. overflow-y: hidden;
  11405. overflow-x: auto;
  11406. width: 100%;
  11407. /* This spaces the page away from the edge of the notebook area */
  11408. padding-top: 20px;
  11409. margin: 0px;
  11410. outline: none;
  11411. box-sizing: border-box;
  11412. -moz-box-sizing: border-box;
  11413. -webkit-box-sizing: border-box;
  11414. min-height: 100%;
  11415. }
  11416. @media not print {
  11417. #notebook-container {
  11418. padding: 15px;
  11419. background-color: #fff;
  11420. min-height: 0;
  11421. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11422. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11423. }
  11424. }
  11425. @media print {
  11426. #notebook-container {
  11427. width: 100%;
  11428. }
  11429. }
  11430. div.ui-widget-content {
  11431. border: 1px solid #ababab;
  11432. outline: none;
  11433. }
  11434. pre.dialog {
  11435. background-color: #f7f7f7;
  11436. border: 1px solid #ddd;
  11437. border-radius: 2px;
  11438. padding: 0.4em;
  11439. padding-left: 2em;
  11440. }
  11441. p.dialog {
  11442. padding: 0.2em;
  11443. }
  11444. /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
  11445. to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
  11446. */
  11447. pre,
  11448. code,
  11449. kbd,
  11450. samp {
  11451. white-space: pre-wrap;
  11452. }
  11453. #fonttest {
  11454. font-family: monospace;
  11455. }
  11456. p {
  11457. margin-bottom: 0;
  11458. }
  11459. .end_space {
  11460. min-height: 100px;
  11461. transition: height .2s ease;
  11462. }
  11463. .notebook_app > #header {
  11464. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11465. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11466. }
  11467. @media not print {
  11468. .notebook_app {
  11469. background-color: #EEE;
  11470. }
  11471. }
  11472. kbd {
  11473. border-style: solid;
  11474. border-width: 1px;
  11475. box-shadow: none;
  11476. margin: 2px;
  11477. padding-left: 2px;
  11478. padding-right: 2px;
  11479. padding-top: 1px;
  11480. padding-bottom: 1px;
  11481. }
  11482. .jupyter-keybindings {
  11483. padding: 1px;
  11484. line-height: 24px;
  11485. border-bottom: 1px solid gray;
  11486. }
  11487. .jupyter-keybindings input {
  11488. margin: 0;
  11489. padding: 0;
  11490. border: none;
  11491. }
  11492. .jupyter-keybindings i {
  11493. padding: 6px;
  11494. }
  11495. .well code {
  11496. background-color: #ffffff;
  11497. border-color: #ababab;
  11498. border-width: 1px;
  11499. border-style: solid;
  11500. padding: 2px;
  11501. padding-top: 1px;
  11502. padding-bottom: 1px;
  11503. }
  11504. /* CSS for the cell toolbar */
  11505. .celltoolbar {
  11506. border: thin solid #CFCFCF;
  11507. border-bottom: none;
  11508. background: #EEE;
  11509. border-radius: 2px 2px 0px 0px;
  11510. width: 100%;
  11511. height: 29px;
  11512. padding-right: 4px;
  11513. /* Old browsers */
  11514. display: -webkit-box;
  11515. -webkit-box-orient: horizontal;
  11516. -webkit-box-align: stretch;
  11517. display: -moz-box;
  11518. -moz-box-orient: horizontal;
  11519. -moz-box-align: stretch;
  11520. display: box;
  11521. box-orient: horizontal;
  11522. box-align: stretch;
  11523. /* Modern browsers */
  11524. display: flex;
  11525. flex-direction: row;
  11526. align-items: stretch;
  11527. /* Old browsers */
  11528. -webkit-box-pack: end;
  11529. -moz-box-pack: end;
  11530. box-pack: end;
  11531. /* Modern browsers */
  11532. justify-content: flex-end;
  11533. display: -webkit-flex;
  11534. }
  11535. @media print {
  11536. .celltoolbar {
  11537. display: none;
  11538. }
  11539. }
  11540. .ctb_hideshow {
  11541. display: none;
  11542. vertical-align: bottom;
  11543. }
  11544. /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
  11545. Cell toolbars are only shown when the ctb_global_show class is also set.
  11546. */
  11547. .ctb_global_show .ctb_show.ctb_hideshow {
  11548. display: block;
  11549. }
  11550. .ctb_global_show .ctb_show + .input_area,
  11551. .ctb_global_show .ctb_show + div.text_cell_input,
  11552. .ctb_global_show .ctb_show ~ div.text_cell_render {
  11553. border-top-right-radius: 0px;
  11554. border-top-left-radius: 0px;
  11555. }
  11556. .ctb_global_show .ctb_show ~ div.text_cell_render {
  11557. border: 1px solid #cfcfcf;
  11558. }
  11559. .celltoolbar {
  11560. font-size: 87%;
  11561. padding-top: 3px;
  11562. }
  11563. .celltoolbar select {
  11564. display: block;
  11565. width: 100%;
  11566. height: 32px;
  11567. padding: 6px 12px;
  11568. font-size: 13px;
  11569. line-height: 1.42857143;
  11570. color: #555555;
  11571. background-color: #fff;
  11572. background-image: none;
  11573. border: 1px solid #ccc;
  11574. border-radius: 2px;
  11575. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11576. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11577. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11578. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11579. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11580. height: 30px;
  11581. padding: 5px 10px;
  11582. font-size: 12px;
  11583. line-height: 1.5;
  11584. border-radius: 1px;
  11585. width: inherit;
  11586. font-size: inherit;
  11587. height: 22px;
  11588. padding: 0px;
  11589. display: inline-block;
  11590. }
  11591. .celltoolbar select:focus {
  11592. border-color: #66afe9;
  11593. outline: 0;
  11594. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  11595. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  11596. }
  11597. .celltoolbar select::-moz-placeholder {
  11598. color: #999;
  11599. opacity: 1;
  11600. }
  11601. .celltoolbar select:-ms-input-placeholder {
  11602. color: #999;
  11603. }
  11604. .celltoolbar select::-webkit-input-placeholder {
  11605. color: #999;
  11606. }
  11607. .celltoolbar select::-ms-expand {
  11608. border: 0;
  11609. background-color: transparent;
  11610. }
  11611. .celltoolbar select[disabled],
  11612. .celltoolbar select[readonly],
  11613. fieldset[disabled] .celltoolbar select {
  11614. background-color: #eeeeee;
  11615. opacity: 1;
  11616. }
  11617. .celltoolbar select[disabled],
  11618. fieldset[disabled] .celltoolbar select {
  11619. cursor: not-allowed;
  11620. }
  11621. textarea.celltoolbar select {
  11622. height: auto;
  11623. }
  11624. select.celltoolbar select {
  11625. height: 30px;
  11626. line-height: 30px;
  11627. }
  11628. textarea.celltoolbar select,
  11629. select[multiple].celltoolbar select {
  11630. height: auto;
  11631. }
  11632. .celltoolbar label {
  11633. margin-left: 5px;
  11634. margin-right: 5px;
  11635. }
  11636. .tags_button_container {
  11637. width: 100%;
  11638. display: flex;
  11639. }
  11640. .tag-container {
  11641. display: flex;
  11642. flex-direction: row;
  11643. flex-grow: 1;
  11644. overflow: hidden;
  11645. position: relative;
  11646. }
  11647. .tag-container > * {
  11648. margin: 0 4px;
  11649. }
  11650. .remove-tag-btn {
  11651. margin-left: 4px;
  11652. }
  11653. .tags-input {
  11654. display: flex;
  11655. }
  11656. .cell-tag:last-child:after {
  11657. content: "";
  11658. position: absolute;
  11659. right: 0;
  11660. width: 40px;
  11661. height: 100%;
  11662. /* Fade to background color of cell toolbar */
  11663. background: linear-gradient(to right, rgba(0, 0, 0, 0), #EEE);
  11664. }
  11665. .tags-input > * {
  11666. margin-left: 4px;
  11667. }
  11668. .cell-tag,
  11669. .tags-input input,
  11670. .tags-input button {
  11671. display: block;
  11672. width: 100%;
  11673. height: 32px;
  11674. padding: 6px 12px;
  11675. font-size: 13px;
  11676. line-height: 1.42857143;
  11677. color: #555555;
  11678. background-color: #fff;
  11679. background-image: none;
  11680. border: 1px solid #ccc;
  11681. border-radius: 2px;
  11682. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11683. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11684. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11685. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11686. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11687. height: 30px;
  11688. padding: 5px 10px;
  11689. font-size: 12px;
  11690. line-height: 1.5;
  11691. border-radius: 1px;
  11692. box-shadow: none;
  11693. width: inherit;
  11694. font-size: inherit;
  11695. height: 22px;
  11696. line-height: 22px;
  11697. padding: 0px 4px;
  11698. display: inline-block;
  11699. }
  11700. .cell-tag:focus,
  11701. .tags-input input:focus,
  11702. .tags-input button:focus {
  11703. border-color: #66afe9;
  11704. outline: 0;
  11705. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  11706. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  11707. }
  11708. .cell-tag::-moz-placeholder,
  11709. .tags-input input::-moz-placeholder,
  11710. .tags-input button::-moz-placeholder {
  11711. color: #999;
  11712. opacity: 1;
  11713. }
  11714. .cell-tag:-ms-input-placeholder,
  11715. .tags-input input:-ms-input-placeholder,
  11716. .tags-input button:-ms-input-placeholder {
  11717. color: #999;
  11718. }
  11719. .cell-tag::-webkit-input-placeholder,
  11720. .tags-input input::-webkit-input-placeholder,
  11721. .tags-input button::-webkit-input-placeholder {
  11722. color: #999;
  11723. }
  11724. .cell-tag::-ms-expand,
  11725. .tags-input input::-ms-expand,
  11726. .tags-input button::-ms-expand {
  11727. border: 0;
  11728. background-color: transparent;
  11729. }
  11730. .cell-tag[disabled],
  11731. .tags-input input[disabled],
  11732. .tags-input button[disabled],
  11733. .cell-tag[readonly],
  11734. .tags-input input[readonly],
  11735. .tags-input button[readonly],
  11736. fieldset[disabled] .cell-tag,
  11737. fieldset[disabled] .tags-input input,
  11738. fieldset[disabled] .tags-input button {
  11739. background-color: #eeeeee;
  11740. opacity: 1;
  11741. }
  11742. .cell-tag[disabled],
  11743. .tags-input input[disabled],
  11744. .tags-input button[disabled],
  11745. fieldset[disabled] .cell-tag,
  11746. fieldset[disabled] .tags-input input,
  11747. fieldset[disabled] .tags-input button {
  11748. cursor: not-allowed;
  11749. }
  11750. textarea.cell-tag,
  11751. textarea.tags-input input,
  11752. textarea.tags-input button {
  11753. height: auto;
  11754. }
  11755. select.cell-tag,
  11756. select.tags-input input,
  11757. select.tags-input button {
  11758. height: 30px;
  11759. line-height: 30px;
  11760. }
  11761. textarea.cell-tag,
  11762. textarea.tags-input input,
  11763. textarea.tags-input button,
  11764. select[multiple].cell-tag,
  11765. select[multiple].tags-input input,
  11766. select[multiple].tags-input button {
  11767. height: auto;
  11768. }
  11769. .cell-tag,
  11770. .tags-input button {
  11771. padding: 0px 4px;
  11772. }
  11773. .cell-tag {
  11774. background-color: #fff;
  11775. white-space: nowrap;
  11776. }
  11777. .tags-input input[type=text]:focus {
  11778. outline: none;
  11779. box-shadow: none;
  11780. border-color: #ccc;
  11781. }
  11782. .completions {
  11783. position: absolute;
  11784. z-index: 110;
  11785. overflow: hidden;
  11786. border: 1px solid #ababab;
  11787. border-radius: 2px;
  11788. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  11789. box-shadow: 0px 6px 10px -1px #adadad;
  11790. line-height: 1;
  11791. }
  11792. .completions select {
  11793. background: white;
  11794. outline: none;
  11795. border: none;
  11796. padding: 0px;
  11797. margin: 0px;
  11798. overflow: auto;
  11799. font-family: monospace;
  11800. font-size: 110%;
  11801. color: #000;
  11802. width: auto;
  11803. }
  11804. .completions select option.context {
  11805. color: #286090;
  11806. }
  11807. #kernel_logo_widget .current_kernel_logo {
  11808. display: none;
  11809. margin-top: -1px;
  11810. margin-bottom: -1px;
  11811. width: 32px;
  11812. height: 32px;
  11813. }
  11814. [dir="rtl"] #kernel_logo_widget {
  11815. float: left !important;
  11816. float: left;
  11817. }
  11818. .modal .modal-body .move-path {
  11819. display: flex;
  11820. flex-direction: row;
  11821. justify-content: space;
  11822. align-items: center;
  11823. }
  11824. .modal .modal-body .move-path .server-root {
  11825. padding-right: 20px;
  11826. }
  11827. .modal .modal-body .move-path .path-input {
  11828. flex: 1;
  11829. }
  11830. #menubar {
  11831. box-sizing: border-box;
  11832. -moz-box-sizing: border-box;
  11833. -webkit-box-sizing: border-box;
  11834. margin-top: 1px;
  11835. }
  11836. #menubar .navbar {
  11837. border-top: 1px;
  11838. border-radius: 0px 0px 2px 2px;
  11839. margin-bottom: 0px;
  11840. }
  11841. #menubar .navbar-toggle {
  11842. float: left;
  11843. padding-top: 7px;
  11844. padding-bottom: 7px;
  11845. border: none;
  11846. }
  11847. #menubar .navbar-collapse {
  11848. clear: left;
  11849. }
  11850. [dir="rtl"] #menubar .navbar-toggle {
  11851. float: right;
  11852. }
  11853. [dir="rtl"] #menubar .navbar-collapse {
  11854. clear: right;
  11855. }
  11856. [dir="rtl"] #menubar .navbar-nav {
  11857. float: right;
  11858. }
  11859. [dir="rtl"] #menubar .nav {
  11860. padding-right: 0px;
  11861. }
  11862. [dir="rtl"] #menubar .navbar-nav > li {
  11863. float: right;
  11864. }
  11865. [dir="rtl"] #menubar .navbar-right {
  11866. float: left !important;
  11867. }
  11868. [dir="rtl"] ul.dropdown-menu {
  11869. text-align: right;
  11870. left: auto;
  11871. }
  11872. [dir="rtl"] ul#new-menu.dropdown-menu {
  11873. right: auto;
  11874. left: 0;
  11875. }
  11876. .nav-wrapper {
  11877. border-bottom: 1px solid #e7e7e7;
  11878. }
  11879. i.menu-icon {
  11880. padding-top: 4px;
  11881. }
  11882. [dir="rtl"] i.menu-icon.pull-right {
  11883. float: left !important;
  11884. float: left;
  11885. }
  11886. ul#help_menu li a {
  11887. overflow: hidden;
  11888. padding-right: 2.2em;
  11889. }
  11890. ul#help_menu li a i {
  11891. margin-right: -1.2em;
  11892. }
  11893. [dir="rtl"] ul#help_menu li a {
  11894. padding-left: 2.2em;
  11895. }
  11896. [dir="rtl"] ul#help_menu li a i {
  11897. margin-right: 0;
  11898. margin-left: -1.2em;
  11899. }
  11900. [dir="rtl"] ul#help_menu li a i.pull-right {
  11901. float: left !important;
  11902. float: left;
  11903. }
  11904. .dropdown-submenu {
  11905. position: relative;
  11906. }
  11907. .dropdown-submenu > .dropdown-menu {
  11908. top: 0;
  11909. left: 100%;
  11910. margin-top: -6px;
  11911. margin-left: -1px;
  11912. }
  11913. [dir="rtl"] .dropdown-submenu > .dropdown-menu {
  11914. right: 100%;
  11915. margin-right: -1px;
  11916. }
  11917. .dropdown-submenu:hover > .dropdown-menu {
  11918. display: block;
  11919. }
  11920. .dropdown-submenu > a:after {
  11921. display: inline-block;
  11922. font: normal normal normal 14px/1 FontAwesome;
  11923. font-size: inherit;
  11924. text-rendering: auto;
  11925. -webkit-font-smoothing: antialiased;
  11926. -moz-osx-font-smoothing: grayscale;
  11927. display: block;
  11928. content: "\f0da";
  11929. float: right;
  11930. color: #333333;
  11931. margin-top: 2px;
  11932. margin-right: -10px;
  11933. }
  11934. .dropdown-submenu > a:after.fa-pull-left {
  11935. margin-right: .3em;
  11936. }
  11937. .dropdown-submenu > a:after.fa-pull-right {
  11938. margin-left: .3em;
  11939. }
  11940. .dropdown-submenu > a:after.pull-left {
  11941. margin-right: .3em;
  11942. }
  11943. .dropdown-submenu > a:after.pull-right {
  11944. margin-left: .3em;
  11945. }
  11946. [dir="rtl"] .dropdown-submenu > a:after {
  11947. float: left;
  11948. content: "\f0d9";
  11949. margin-right: 0;
  11950. margin-left: -10px;
  11951. }
  11952. .dropdown-submenu:hover > a:after {
  11953. color: #262626;
  11954. }
  11955. .dropdown-submenu.pull-left {
  11956. float: none;
  11957. }
  11958. .dropdown-submenu.pull-left > .dropdown-menu {
  11959. left: -100%;
  11960. margin-left: 10px;
  11961. }
  11962. #notification_area {
  11963. float: right !important;
  11964. float: right;
  11965. z-index: 10;
  11966. }
  11967. [dir="rtl"] #notification_area {
  11968. float: left !important;
  11969. float: left;
  11970. }
  11971. .indicator_area {
  11972. float: right !important;
  11973. float: right;
  11974. color: #777;
  11975. margin-left: 5px;
  11976. margin-right: 5px;
  11977. width: 11px;
  11978. z-index: 10;
  11979. text-align: center;
  11980. width: auto;
  11981. }
  11982. [dir="rtl"] .indicator_area {
  11983. float: left !important;
  11984. float: left;
  11985. }
  11986. #kernel_indicator {
  11987. float: right !important;
  11988. float: right;
  11989. color: #777;
  11990. margin-left: 5px;
  11991. margin-right: 5px;
  11992. width: 11px;
  11993. z-index: 10;
  11994. text-align: center;
  11995. width: auto;
  11996. border-left: 1px solid;
  11997. }
  11998. #kernel_indicator .kernel_indicator_name {
  11999. padding-left: 5px;
  12000. padding-right: 5px;
  12001. }
  12002. [dir="rtl"] #kernel_indicator {
  12003. float: left !important;
  12004. float: left;
  12005. border-left: 0;
  12006. border-right: 1px solid;
  12007. }
  12008. #modal_indicator {
  12009. float: right !important;
  12010. float: right;
  12011. color: #777;
  12012. margin-left: 5px;
  12013. margin-right: 5px;
  12014. width: 11px;
  12015. z-index: 10;
  12016. text-align: center;
  12017. width: auto;
  12018. }
  12019. [dir="rtl"] #modal_indicator {
  12020. float: left !important;
  12021. float: left;
  12022. }
  12023. #readonly-indicator {
  12024. float: right !important;
  12025. float: right;
  12026. color: #777;
  12027. margin-left: 5px;
  12028. margin-right: 5px;
  12029. width: 11px;
  12030. z-index: 10;
  12031. text-align: center;
  12032. width: auto;
  12033. margin-top: 2px;
  12034. margin-bottom: 0px;
  12035. margin-left: 0px;
  12036. margin-right: 0px;
  12037. display: none;
  12038. }
  12039. .modal_indicator:before {
  12040. width: 1.28571429em;
  12041. text-align: center;
  12042. }
  12043. .edit_mode .modal_indicator:before {
  12044. display: inline-block;
  12045. font: normal normal normal 14px/1 FontAwesome;
  12046. font-size: inherit;
  12047. text-rendering: auto;
  12048. -webkit-font-smoothing: antialiased;
  12049. -moz-osx-font-smoothing: grayscale;
  12050. content: "\f040";
  12051. }
  12052. .edit_mode .modal_indicator:before.fa-pull-left {
  12053. margin-right: .3em;
  12054. }
  12055. .edit_mode .modal_indicator:before.fa-pull-right {
  12056. margin-left: .3em;
  12057. }
  12058. .edit_mode .modal_indicator:before.pull-left {
  12059. margin-right: .3em;
  12060. }
  12061. .edit_mode .modal_indicator:before.pull-right {
  12062. margin-left: .3em;
  12063. }
  12064. .command_mode .modal_indicator:before {
  12065. display: inline-block;
  12066. font: normal normal normal 14px/1 FontAwesome;
  12067. font-size: inherit;
  12068. text-rendering: auto;
  12069. -webkit-font-smoothing: antialiased;
  12070. -moz-osx-font-smoothing: grayscale;
  12071. content: ' ';
  12072. }
  12073. .command_mode .modal_indicator:before.fa-pull-left {
  12074. margin-right: .3em;
  12075. }
  12076. .command_mode .modal_indicator:before.fa-pull-right {
  12077. margin-left: .3em;
  12078. }
  12079. .command_mode .modal_indicator:before.pull-left {
  12080. margin-right: .3em;
  12081. }
  12082. .command_mode .modal_indicator:before.pull-right {
  12083. margin-left: .3em;
  12084. }
  12085. .kernel_idle_icon:before {
  12086. display: inline-block;
  12087. font: normal normal normal 14px/1 FontAwesome;
  12088. font-size: inherit;
  12089. text-rendering: auto;
  12090. -webkit-font-smoothing: antialiased;
  12091. -moz-osx-font-smoothing: grayscale;
  12092. content: "\f10c";
  12093. }
  12094. .kernel_idle_icon:before.fa-pull-left {
  12095. margin-right: .3em;
  12096. }
  12097. .kernel_idle_icon:before.fa-pull-right {
  12098. margin-left: .3em;
  12099. }
  12100. .kernel_idle_icon:before.pull-left {
  12101. margin-right: .3em;
  12102. }
  12103. .kernel_idle_icon:before.pull-right {
  12104. margin-left: .3em;
  12105. }
  12106. .kernel_busy_icon:before {
  12107. display: inline-block;
  12108. font: normal normal normal 14px/1 FontAwesome;
  12109. font-size: inherit;
  12110. text-rendering: auto;
  12111. -webkit-font-smoothing: antialiased;
  12112. -moz-osx-font-smoothing: grayscale;
  12113. content: "\f111";
  12114. }
  12115. .kernel_busy_icon:before.fa-pull-left {
  12116. margin-right: .3em;
  12117. }
  12118. .kernel_busy_icon:before.fa-pull-right {
  12119. margin-left: .3em;
  12120. }
  12121. .kernel_busy_icon:before.pull-left {
  12122. margin-right: .3em;
  12123. }
  12124. .kernel_busy_icon:before.pull-right {
  12125. margin-left: .3em;
  12126. }
  12127. .kernel_dead_icon:before {
  12128. display: inline-block;
  12129. font: normal normal normal 14px/1 FontAwesome;
  12130. font-size: inherit;
  12131. text-rendering: auto;
  12132. -webkit-font-smoothing: antialiased;
  12133. -moz-osx-font-smoothing: grayscale;
  12134. content: "\f1e2";
  12135. }
  12136. .kernel_dead_icon:before.fa-pull-left {
  12137. margin-right: .3em;
  12138. }
  12139. .kernel_dead_icon:before.fa-pull-right {
  12140. margin-left: .3em;
  12141. }
  12142. .kernel_dead_icon:before.pull-left {
  12143. margin-right: .3em;
  12144. }
  12145. .kernel_dead_icon:before.pull-right {
  12146. margin-left: .3em;
  12147. }
  12148. .kernel_disconnected_icon:before {
  12149. display: inline-block;
  12150. font: normal normal normal 14px/1 FontAwesome;
  12151. font-size: inherit;
  12152. text-rendering: auto;
  12153. -webkit-font-smoothing: antialiased;
  12154. -moz-osx-font-smoothing: grayscale;
  12155. content: "\f127";
  12156. }
  12157. .kernel_disconnected_icon:before.fa-pull-left {
  12158. margin-right: .3em;
  12159. }
  12160. .kernel_disconnected_icon:before.fa-pull-right {
  12161. margin-left: .3em;
  12162. }
  12163. .kernel_disconnected_icon:before.pull-left {
  12164. margin-right: .3em;
  12165. }
  12166. .kernel_disconnected_icon:before.pull-right {
  12167. margin-left: .3em;
  12168. }
  12169. .notification_widget {
  12170. color: #777;
  12171. z-index: 10;
  12172. background: rgba(240, 240, 240, 0.5);
  12173. margin-right: 4px;
  12174. color: #333;
  12175. background-color: #fff;
  12176. border-color: #ccc;
  12177. }
  12178. .notification_widget:focus,
  12179. .notification_widget.focus {
  12180. color: #333;
  12181. background-color: #e6e6e6;
  12182. border-color: #8c8c8c;
  12183. }
  12184. .notification_widget:hover {
  12185. color: #333;
  12186. background-color: #e6e6e6;
  12187. border-color: #adadad;
  12188. }
  12189. .notification_widget:active,
  12190. .notification_widget.active,
  12191. .open > .dropdown-toggle.notification_widget {
  12192. color: #333;
  12193. background-color: #e6e6e6;
  12194. border-color: #adadad;
  12195. }
  12196. .notification_widget:active:hover,
  12197. .notification_widget.active:hover,
  12198. .open > .dropdown-toggle.notification_widget:hover,
  12199. .notification_widget:active:focus,
  12200. .notification_widget.active:focus,
  12201. .open > .dropdown-toggle.notification_widget:focus,
  12202. .notification_widget:active.focus,
  12203. .notification_widget.active.focus,
  12204. .open > .dropdown-toggle.notification_widget.focus {
  12205. color: #333;
  12206. background-color: #d4d4d4;
  12207. border-color: #8c8c8c;
  12208. }
  12209. .notification_widget:active,
  12210. .notification_widget.active,
  12211. .open > .dropdown-toggle.notification_widget {
  12212. background-image: none;
  12213. }
  12214. .notification_widget.disabled:hover,
  12215. .notification_widget[disabled]:hover,
  12216. fieldset[disabled] .notification_widget:hover,
  12217. .notification_widget.disabled:focus,
  12218. .notification_widget[disabled]:focus,
  12219. fieldset[disabled] .notification_widget:focus,
  12220. .notification_widget.disabled.focus,
  12221. .notification_widget[disabled].focus,
  12222. fieldset[disabled] .notification_widget.focus {
  12223. background-color: #fff;
  12224. border-color: #ccc;
  12225. }
  12226. .notification_widget .badge {
  12227. color: #fff;
  12228. background-color: #333;
  12229. }
  12230. .notification_widget.warning {
  12231. color: #fff;
  12232. background-color: #f0ad4e;
  12233. border-color: #eea236;
  12234. }
  12235. .notification_widget.warning:focus,
  12236. .notification_widget.warning.focus {
  12237. color: #fff;
  12238. background-color: #ec971f;
  12239. border-color: #985f0d;
  12240. }
  12241. .notification_widget.warning:hover {
  12242. color: #fff;
  12243. background-color: #ec971f;
  12244. border-color: #d58512;
  12245. }
  12246. .notification_widget.warning:active,
  12247. .notification_widget.warning.active,
  12248. .open > .dropdown-toggle.notification_widget.warning {
  12249. color: #fff;
  12250. background-color: #ec971f;
  12251. border-color: #d58512;
  12252. }
  12253. .notification_widget.warning:active:hover,
  12254. .notification_widget.warning.active:hover,
  12255. .open > .dropdown-toggle.notification_widget.warning:hover,
  12256. .notification_widget.warning:active:focus,
  12257. .notification_widget.warning.active:focus,
  12258. .open > .dropdown-toggle.notification_widget.warning:focus,
  12259. .notification_widget.warning:active.focus,
  12260. .notification_widget.warning.active.focus,
  12261. .open > .dropdown-toggle.notification_widget.warning.focus {
  12262. color: #fff;
  12263. background-color: #d58512;
  12264. border-color: #985f0d;
  12265. }
  12266. .notification_widget.warning:active,
  12267. .notification_widget.warning.active,
  12268. .open > .dropdown-toggle.notification_widget.warning {
  12269. background-image: none;
  12270. }
  12271. .notification_widget.warning.disabled:hover,
  12272. .notification_widget.warning[disabled]:hover,
  12273. fieldset[disabled] .notification_widget.warning:hover,
  12274. .notification_widget.warning.disabled:focus,
  12275. .notification_widget.warning[disabled]:focus,
  12276. fieldset[disabled] .notification_widget.warning:focus,
  12277. .notification_widget.warning.disabled.focus,
  12278. .notification_widget.warning[disabled].focus,
  12279. fieldset[disabled] .notification_widget.warning.focus {
  12280. background-color: #f0ad4e;
  12281. border-color: #eea236;
  12282. }
  12283. .notification_widget.warning .badge {
  12284. color: #f0ad4e;
  12285. background-color: #fff;
  12286. }
  12287. .notification_widget.success {
  12288. color: #fff;
  12289. background-color: #5cb85c;
  12290. border-color: #4cae4c;
  12291. }
  12292. .notification_widget.success:focus,
  12293. .notification_widget.success.focus {
  12294. color: #fff;
  12295. background-color: #449d44;
  12296. border-color: #255625;
  12297. }
  12298. .notification_widget.success:hover {
  12299. color: #fff;
  12300. background-color: #449d44;
  12301. border-color: #398439;
  12302. }
  12303. .notification_widget.success:active,
  12304. .notification_widget.success.active,
  12305. .open > .dropdown-toggle.notification_widget.success {
  12306. color: #fff;
  12307. background-color: #449d44;
  12308. border-color: #398439;
  12309. }
  12310. .notification_widget.success:active:hover,
  12311. .notification_widget.success.active:hover,
  12312. .open > .dropdown-toggle.notification_widget.success:hover,
  12313. .notification_widget.success:active:focus,
  12314. .notification_widget.success.active:focus,
  12315. .open > .dropdown-toggle.notification_widget.success:focus,
  12316. .notification_widget.success:active.focus,
  12317. .notification_widget.success.active.focus,
  12318. .open > .dropdown-toggle.notification_widget.success.focus {
  12319. color: #fff;
  12320. background-color: #398439;
  12321. border-color: #255625;
  12322. }
  12323. .notification_widget.success:active,
  12324. .notification_widget.success.active,
  12325. .open > .dropdown-toggle.notification_widget.success {
  12326. background-image: none;
  12327. }
  12328. .notification_widget.success.disabled:hover,
  12329. .notification_widget.success[disabled]:hover,
  12330. fieldset[disabled] .notification_widget.success:hover,
  12331. .notification_widget.success.disabled:focus,
  12332. .notification_widget.success[disabled]:focus,
  12333. fieldset[disabled] .notification_widget.success:focus,
  12334. .notification_widget.success.disabled.focus,
  12335. .notification_widget.success[disabled].focus,
  12336. fieldset[disabled] .notification_widget.success.focus {
  12337. background-color: #5cb85c;
  12338. border-color: #4cae4c;
  12339. }
  12340. .notification_widget.success .badge {
  12341. color: #5cb85c;
  12342. background-color: #fff;
  12343. }
  12344. .notification_widget.info {
  12345. color: #fff;
  12346. background-color: #5bc0de;
  12347. border-color: #46b8da;
  12348. }
  12349. .notification_widget.info:focus,
  12350. .notification_widget.info.focus {
  12351. color: #fff;
  12352. background-color: #31b0d5;
  12353. border-color: #1b6d85;
  12354. }
  12355. .notification_widget.info:hover {
  12356. color: #fff;
  12357. background-color: #31b0d5;
  12358. border-color: #269abc;
  12359. }
  12360. .notification_widget.info:active,
  12361. .notification_widget.info.active,
  12362. .open > .dropdown-toggle.notification_widget.info {
  12363. color: #fff;
  12364. background-color: #31b0d5;
  12365. border-color: #269abc;
  12366. }
  12367. .notification_widget.info:active:hover,
  12368. .notification_widget.info.active:hover,
  12369. .open > .dropdown-toggle.notification_widget.info:hover,
  12370. .notification_widget.info:active:focus,
  12371. .notification_widget.info.active:focus,
  12372. .open > .dropdown-toggle.notification_widget.info:focus,
  12373. .notification_widget.info:active.focus,
  12374. .notification_widget.info.active.focus,
  12375. .open > .dropdown-toggle.notification_widget.info.focus {
  12376. color: #fff;
  12377. background-color: #269abc;
  12378. border-color: #1b6d85;
  12379. }
  12380. .notification_widget.info:active,
  12381. .notification_widget.info.active,
  12382. .open > .dropdown-toggle.notification_widget.info {
  12383. background-image: none;
  12384. }
  12385. .notification_widget.info.disabled:hover,
  12386. .notification_widget.info[disabled]:hover,
  12387. fieldset[disabled] .notification_widget.info:hover,
  12388. .notification_widget.info.disabled:focus,
  12389. .notification_widget.info[disabled]:focus,
  12390. fieldset[disabled] .notification_widget.info:focus,
  12391. .notification_widget.info.disabled.focus,
  12392. .notification_widget.info[disabled].focus,
  12393. fieldset[disabled] .notification_widget.info.focus {
  12394. background-color: #5bc0de;
  12395. border-color: #46b8da;
  12396. }
  12397. .notification_widget.info .badge {
  12398. color: #5bc0de;
  12399. background-color: #fff;
  12400. }
  12401. .notification_widget.danger {
  12402. color: #fff;
  12403. background-color: #d9534f;
  12404. border-color: #d43f3a;
  12405. }
  12406. .notification_widget.danger:focus,
  12407. .notification_widget.danger.focus {
  12408. color: #fff;
  12409. background-color: #c9302c;
  12410. border-color: #761c19;
  12411. }
  12412. .notification_widget.danger:hover {
  12413. color: #fff;
  12414. background-color: #c9302c;
  12415. border-color: #ac2925;
  12416. }
  12417. .notification_widget.danger:active,
  12418. .notification_widget.danger.active,
  12419. .open > .dropdown-toggle.notification_widget.danger {
  12420. color: #fff;
  12421. background-color: #c9302c;
  12422. border-color: #ac2925;
  12423. }
  12424. .notification_widget.danger:active:hover,
  12425. .notification_widget.danger.active:hover,
  12426. .open > .dropdown-toggle.notification_widget.danger:hover,
  12427. .notification_widget.danger:active:focus,
  12428. .notification_widget.danger.active:focus,
  12429. .open > .dropdown-toggle.notification_widget.danger:focus,
  12430. .notification_widget.danger:active.focus,
  12431. .notification_widget.danger.active.focus,
  12432. .open > .dropdown-toggle.notification_widget.danger.focus {
  12433. color: #fff;
  12434. background-color: #ac2925;
  12435. border-color: #761c19;
  12436. }
  12437. .notification_widget.danger:active,
  12438. .notification_widget.danger.active,
  12439. .open > .dropdown-toggle.notification_widget.danger {
  12440. background-image: none;
  12441. }
  12442. .notification_widget.danger.disabled:hover,
  12443. .notification_widget.danger[disabled]:hover,
  12444. fieldset[disabled] .notification_widget.danger:hover,
  12445. .notification_widget.danger.disabled:focus,
  12446. .notification_widget.danger[disabled]:focus,
  12447. fieldset[disabled] .notification_widget.danger:focus,
  12448. .notification_widget.danger.disabled.focus,
  12449. .notification_widget.danger[disabled].focus,
  12450. fieldset[disabled] .notification_widget.danger.focus {
  12451. background-color: #d9534f;
  12452. border-color: #d43f3a;
  12453. }
  12454. .notification_widget.danger .badge {
  12455. color: #d9534f;
  12456. background-color: #fff;
  12457. }
  12458. div#pager {
  12459. background-color: #fff;
  12460. font-size: 14px;
  12461. line-height: 20px;
  12462. overflow: hidden;
  12463. display: none;
  12464. position: fixed;
  12465. bottom: 0px;
  12466. width: 100%;
  12467. max-height: 50%;
  12468. padding-top: 8px;
  12469. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12470. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12471. /* Display over codemirror */
  12472. z-index: 100;
  12473. /* Hack which prevents jquery ui resizable from changing top. */
  12474. top: auto !important;
  12475. }
  12476. div#pager pre {
  12477. line-height: 1.21429em;
  12478. color: #000;
  12479. background-color: #f7f7f7;
  12480. padding: 0.4em;
  12481. }
  12482. div#pager #pager-button-area {
  12483. position: absolute;
  12484. top: 8px;
  12485. right: 20px;
  12486. }
  12487. div#pager #pager-contents {
  12488. position: relative;
  12489. overflow: auto;
  12490. width: 100%;
  12491. height: 100%;
  12492. }
  12493. div#pager #pager-contents #pager-container {
  12494. position: relative;
  12495. padding: 15px 0px;
  12496. box-sizing: border-box;
  12497. -moz-box-sizing: border-box;
  12498. -webkit-box-sizing: border-box;
  12499. }
  12500. div#pager .ui-resizable-handle {
  12501. top: 0px;
  12502. height: 8px;
  12503. background: #f7f7f7;
  12504. border-top: 1px solid #cfcfcf;
  12505. border-bottom: 1px solid #cfcfcf;
  12506. /* This injects handle bars (a short, wide = symbol) for
  12507. the resize handle. */
  12508. }
  12509. div#pager .ui-resizable-handle::after {
  12510. content: '';
  12511. top: 2px;
  12512. left: 50%;
  12513. height: 3px;
  12514. width: 30px;
  12515. margin-left: -15px;
  12516. position: absolute;
  12517. border-top: 1px solid #cfcfcf;
  12518. }
  12519. .quickhelp {
  12520. /* Old browsers */
  12521. display: -webkit-box;
  12522. -webkit-box-orient: horizontal;
  12523. -webkit-box-align: stretch;
  12524. display: -moz-box;
  12525. -moz-box-orient: horizontal;
  12526. -moz-box-align: stretch;
  12527. display: box;
  12528. box-orient: horizontal;
  12529. box-align: stretch;
  12530. /* Modern browsers */
  12531. display: flex;
  12532. flex-direction: row;
  12533. align-items: stretch;
  12534. line-height: 1.8em;
  12535. }
  12536. .shortcut_key {
  12537. display: inline-block;
  12538. width: 21ex;
  12539. text-align: right;
  12540. font-family: monospace;
  12541. }
  12542. .shortcut_descr {
  12543. display: inline-block;
  12544. /* Old browsers */
  12545. -webkit-box-flex: 1;
  12546. -moz-box-flex: 1;
  12547. box-flex: 1;
  12548. /* Modern browsers */
  12549. flex: 1;
  12550. }
  12551. span.save_widget {
  12552. height: 30px;
  12553. margin-top: 4px;
  12554. display: flex;
  12555. justify-content: flex-start;
  12556. align-items: baseline;
  12557. width: 50%;
  12558. flex: 1;
  12559. }
  12560. span.save_widget span.filename {
  12561. height: 100%;
  12562. line-height: 1em;
  12563. margin-left: 16px;
  12564. border: none;
  12565. font-size: 146.5%;
  12566. text-overflow: ellipsis;
  12567. overflow: hidden;
  12568. white-space: nowrap;
  12569. border-radius: 2px;
  12570. }
  12571. span.save_widget span.filename:hover {
  12572. background-color: #e6e6e6;
  12573. }
  12574. [dir="rtl"] span.save_widget.pull-left {
  12575. float: right !important;
  12576. float: right;
  12577. }
  12578. [dir="rtl"] span.save_widget span.filename {
  12579. margin-left: 0;
  12580. margin-right: 16px;
  12581. }
  12582. span.checkpoint_status,
  12583. span.autosave_status {
  12584. font-size: small;
  12585. white-space: nowrap;
  12586. padding: 0 5px;
  12587. }
  12588. @media (max-width: 767px) {
  12589. span.save_widget {
  12590. font-size: small;
  12591. padding: 0 0 0 5px;
  12592. }
  12593. span.checkpoint_status,
  12594. span.autosave_status {
  12595. display: none;
  12596. }
  12597. }
  12598. @media (min-width: 768px) and (max-width: 991px) {
  12599. span.checkpoint_status {
  12600. display: none;
  12601. }
  12602. span.autosave_status {
  12603. font-size: x-small;
  12604. }
  12605. }
  12606. .toolbar {
  12607. padding: 0px;
  12608. margin-left: -5px;
  12609. margin-top: 2px;
  12610. margin-bottom: 5px;
  12611. box-sizing: border-box;
  12612. -moz-box-sizing: border-box;
  12613. -webkit-box-sizing: border-box;
  12614. }
  12615. .toolbar select,
  12616. .toolbar label {
  12617. width: auto;
  12618. vertical-align: middle;
  12619. margin-right: 2px;
  12620. margin-bottom: 0px;
  12621. display: inline;
  12622. font-size: 92%;
  12623. margin-left: 0.3em;
  12624. margin-right: 0.3em;
  12625. padding: 0px;
  12626. padding-top: 3px;
  12627. }
  12628. .toolbar .btn {
  12629. padding: 2px 8px;
  12630. }
  12631. .toolbar .btn-group {
  12632. margin-top: 0px;
  12633. margin-left: 5px;
  12634. }
  12635. .toolbar-btn-label {
  12636. margin-left: 6px;
  12637. }
  12638. #maintoolbar {
  12639. margin-bottom: -3px;
  12640. margin-top: -8px;
  12641. border: 0px;
  12642. min-height: 27px;
  12643. margin-left: 0px;
  12644. padding-top: 11px;
  12645. padding-bottom: 3px;
  12646. }
  12647. #maintoolbar .navbar-text {
  12648. float: none;
  12649. vertical-align: middle;
  12650. text-align: right;
  12651. margin-left: 5px;
  12652. margin-right: 0px;
  12653. margin-top: 0px;
  12654. }
  12655. .select-xs {
  12656. height: 24px;
  12657. }
  12658. [dir="rtl"] .btn-group > .btn,
  12659. .btn-group-vertical > .btn {
  12660. float: right;
  12661. }
  12662. .pulse,
  12663. .dropdown-menu > li > a.pulse,
  12664. li.pulse > a.dropdown-toggle,
  12665. li.pulse.open > a.dropdown-toggle {
  12666. background-color: #F37626;
  12667. color: white;
  12668. }
  12669. /**
  12670. * Primary styles
  12671. *
  12672. * Author: Jupyter Development Team
  12673. */
  12674. /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
  12675. * of chance of beeing generated from the ../less/[samename].less file, you can
  12676. * try to get back the less file by reverting somme commit in history
  12677. **/
  12678. /*
  12679. * We'll try to get something pretty, so we
  12680. * have some strange css to have the scroll bar on
  12681. * the left with fix button on the top right of the tooltip
  12682. */
  12683. @-moz-keyframes fadeOut {
  12684. from {
  12685. opacity: 1;
  12686. }
  12687. to {
  12688. opacity: 0;
  12689. }
  12690. }
  12691. @-webkit-keyframes fadeOut {
  12692. from {
  12693. opacity: 1;
  12694. }
  12695. to {
  12696. opacity: 0;
  12697. }
  12698. }
  12699. @-moz-keyframes fadeIn {
  12700. from {
  12701. opacity: 0;
  12702. }
  12703. to {
  12704. opacity: 1;
  12705. }
  12706. }
  12707. @-webkit-keyframes fadeIn {
  12708. from {
  12709. opacity: 0;
  12710. }
  12711. to {
  12712. opacity: 1;
  12713. }
  12714. }
  12715. /*properties of tooltip after "expand"*/
  12716. .bigtooltip {
  12717. overflow: auto;
  12718. height: 200px;
  12719. -webkit-transition-property: height;
  12720. -webkit-transition-duration: 500ms;
  12721. -moz-transition-property: height;
  12722. -moz-transition-duration: 500ms;
  12723. transition-property: height;
  12724. transition-duration: 500ms;
  12725. }
  12726. /*properties of tooltip before "expand"*/
  12727. .smalltooltip {
  12728. -webkit-transition-property: height;
  12729. -webkit-transition-duration: 500ms;
  12730. -moz-transition-property: height;
  12731. -moz-transition-duration: 500ms;
  12732. transition-property: height;
  12733. transition-duration: 500ms;
  12734. text-overflow: ellipsis;
  12735. overflow: hidden;
  12736. height: 80px;
  12737. }
  12738. .tooltipbuttons {
  12739. position: absolute;
  12740. padding-right: 15px;
  12741. top: 0px;
  12742. right: 0px;
  12743. }
  12744. .tooltiptext {
  12745. /*avoid the button to overlap on some docstring*/
  12746. padding-right: 30px;
  12747. }
  12748. .ipython_tooltip {
  12749. max-width: 700px;
  12750. /*fade-in animation when inserted*/
  12751. -webkit-animation: fadeOut 400ms;
  12752. -moz-animation: fadeOut 400ms;
  12753. animation: fadeOut 400ms;
  12754. -webkit-animation: fadeIn 400ms;
  12755. -moz-animation: fadeIn 400ms;
  12756. animation: fadeIn 400ms;
  12757. vertical-align: middle;
  12758. background-color: #f7f7f7;
  12759. overflow: visible;
  12760. border: #ababab 1px solid;
  12761. outline: none;
  12762. padding: 3px;
  12763. margin: 0px;
  12764. padding-left: 7px;
  12765. font-family: monospace;
  12766. min-height: 50px;
  12767. -moz-box-shadow: 0px 6px 10px -1px #adadad;
  12768. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  12769. box-shadow: 0px 6px 10px -1px #adadad;
  12770. border-radius: 2px;
  12771. position: absolute;
  12772. z-index: 1000;
  12773. }
  12774. .ipython_tooltip a {
  12775. float: right;
  12776. }
  12777. .ipython_tooltip .tooltiptext pre {
  12778. border: 0;
  12779. border-radius: 0;
  12780. font-size: 100%;
  12781. background-color: #f7f7f7;
  12782. }
  12783. .pretooltiparrow {
  12784. left: 0px;
  12785. margin: 0px;
  12786. top: -16px;
  12787. width: 40px;
  12788. height: 16px;
  12789. overflow: hidden;
  12790. position: absolute;
  12791. }
  12792. .pretooltiparrow:before {
  12793. background-color: #f7f7f7;
  12794. border: 1px #ababab solid;
  12795. z-index: 11;
  12796. content: "";
  12797. position: absolute;
  12798. left: 15px;
  12799. top: 10px;
  12800. width: 25px;
  12801. height: 25px;
  12802. -webkit-transform: rotate(45deg);
  12803. -moz-transform: rotate(45deg);
  12804. -ms-transform: rotate(45deg);
  12805. -o-transform: rotate(45deg);
  12806. }
  12807. ul.typeahead-list i {
  12808. margin-left: -10px;
  12809. width: 18px;
  12810. }
  12811. [dir="rtl"] ul.typeahead-list i {
  12812. margin-left: 0;
  12813. margin-right: -10px;
  12814. }
  12815. ul.typeahead-list {
  12816. max-height: 80vh;
  12817. overflow: auto;
  12818. }
  12819. ul.typeahead-list > li > a {
  12820. /** Firefox bug **/
  12821. /* see https://github.com/jupyter/notebook/issues/559 */
  12822. white-space: normal;
  12823. }
  12824. ul.typeahead-list > li > a.pull-right {
  12825. float: left !important;
  12826. float: left;
  12827. }
  12828. [dir="rtl"] .typeahead-list {
  12829. text-align: right;
  12830. }
  12831. .cmd-palette .modal-body {
  12832. padding: 7px;
  12833. }
  12834. .cmd-palette form {
  12835. background: white;
  12836. }
  12837. .cmd-palette input {
  12838. outline: none;
  12839. }
  12840. .no-shortcut {
  12841. min-width: 20px;
  12842. color: transparent;
  12843. }
  12844. [dir="rtl"] .no-shortcut.pull-right {
  12845. float: left !important;
  12846. float: left;
  12847. }
  12848. [dir="rtl"] .command-shortcut.pull-right {
  12849. float: left !important;
  12850. float: left;
  12851. }
  12852. .command-shortcut:before {
  12853. content: "(command mode)";
  12854. padding-right: 3px;
  12855. color: #777777;
  12856. }
  12857. .edit-shortcut:before {
  12858. content: "(edit)";
  12859. padding-right: 3px;
  12860. color: #777777;
  12861. }
  12862. [dir="rtl"] .edit-shortcut.pull-right {
  12863. float: left !important;
  12864. float: left;
  12865. }
  12866. #find-and-replace #replace-preview .match,
  12867. #find-and-replace #replace-preview .insert {
  12868. background-color: #BBDEFB;
  12869. border-color: #90CAF9;
  12870. border-style: solid;
  12871. border-width: 1px;
  12872. border-radius: 0px;
  12873. }
  12874. [dir="ltr"] #find-and-replace .input-group-btn + .form-control {
  12875. border-left: none;
  12876. }
  12877. [dir="rtl"] #find-and-replace .input-group-btn + .form-control {
  12878. border-right: none;
  12879. }
  12880. #find-and-replace #replace-preview .replace .match {
  12881. background-color: #FFCDD2;
  12882. border-color: #EF9A9A;
  12883. border-radius: 0px;
  12884. }
  12885. #find-and-replace #replace-preview .replace .insert {
  12886. background-color: #C8E6C9;
  12887. border-color: #A5D6A7;
  12888. border-radius: 0px;
  12889. }
  12890. #find-and-replace #replace-preview {
  12891. max-height: 60vh;
  12892. overflow: auto;
  12893. }
  12894. #find-and-replace #replace-preview pre {
  12895. padding: 5px 10px;
  12896. }
  12897. .terminal-app {
  12898. background: #EEE;
  12899. }
  12900. .terminal-app #header {
  12901. background: #fff;
  12902. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12903. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12904. }
  12905. .terminal-app .terminal {
  12906. width: 100%;
  12907. float: left;
  12908. font-family: monospace;
  12909. color: white;
  12910. background: black;
  12911. padding: 0.4em;
  12912. border-radius: 2px;
  12913. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  12914. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  12915. }
  12916. .terminal-app .terminal,
  12917. .terminal-app .terminal dummy-screen {
  12918. line-height: 1em;
  12919. font-size: 14px;
  12920. }
  12921. .terminal-app .terminal .xterm-rows {
  12922. padding: 10px;
  12923. }
  12924. .terminal-app .terminal-cursor {
  12925. color: black;
  12926. background: white;
  12927. }
  12928. .terminal-app #terminado-container {
  12929. margin-top: 20px;
  12930. }
  12931. /*# sourceMappingURL=style.min.css.map */