zui.css 168 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170
  1. /*!
  2. * ZUI - v1.2.1 - 2015-01-13
  3. * http://zui.sexy
  4. * GitHub: https://github.com/easysoft/zui.git
  5. * Copyright (c) 2015 cnezsoft.com; Licensed MIT
  6. */
  7. /* Some code copy from Bootstrap v3.0.0 by @fat and @mdo. (Copyright 2013 Twitter, Inc. Licensed under http://www.apache.org/licenses/)*/
  8. /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
  9. article,
  10. aside,
  11. details,
  12. figcaption,
  13. figure,
  14. footer,
  15. header,
  16. hgroup,
  17. main,
  18. nav,
  19. section,
  20. summary {
  21. display: block;
  22. }
  23. audio,
  24. canvas,
  25. video {
  26. display: inline-block;
  27. }
  28. audio:not([controls]) {
  29. display: none;
  30. height: 0;
  31. }
  32. [hidden],
  33. template {
  34. display: none;
  35. }
  36. html {
  37. font-family: sans-serif;
  38. -ms-text-size-adjust: 100%;
  39. -webkit-text-size-adjust: 100%;
  40. }
  41. body {
  42. margin: 0;
  43. }
  44. a {
  45. background: transparent;
  46. }
  47. a:focus {
  48. outline: thin dotted;
  49. }
  50. a:active,
  51. a:hover {
  52. outline: 0;
  53. }
  54. h1 {
  55. margin: .67em 0;
  56. font-size: 2em;
  57. }
  58. abbr[title] {
  59. border-bottom: 1px dotted;
  60. }
  61. b,
  62. strong {
  63. font-weight: bold;
  64. }
  65. dfn {
  66. font-style: italic;
  67. }
  68. hr {
  69. height: 0;
  70. -webkit-box-sizing: content-box;
  71. -moz-box-sizing: content-box;
  72. box-sizing: content-box;
  73. }
  74. mark {
  75. color: #000;
  76. background: #ff0;
  77. }
  78. code,
  79. kbd,
  80. pre,
  81. samp {
  82. font-family: monospace, serif;
  83. font-size: 1em;
  84. }
  85. pre {
  86. white-space: pre-wrap;
  87. }
  88. q {
  89. quotes: "\201C" "\201D" "\2018" "\2019";
  90. }
  91. small {
  92. font-size: 80%;
  93. }
  94. sub,
  95. sup {
  96. position: relative;
  97. font-size: 75%;
  98. line-height: 0;
  99. vertical-align: baseline;
  100. }
  101. sup {
  102. top: -.5em;
  103. }
  104. sub {
  105. bottom: -.25em;
  106. }
  107. img {
  108. border: 0;
  109. }
  110. svg:not(:root) {
  111. overflow: hidden;
  112. }
  113. figure {
  114. margin: 0;
  115. }
  116. fieldset {
  117. padding: .35em .625em .75em;
  118. margin: 0 2px;
  119. border: 1px solid #c0c0c0;
  120. }
  121. legend {
  122. padding: 0;
  123. border: 0;
  124. }
  125. button,
  126. input,
  127. select,
  128. textarea {
  129. margin: 0;
  130. font-family: inherit;
  131. font-size: 100%;
  132. }
  133. button,
  134. input {
  135. line-height: normal;
  136. }
  137. button,
  138. select {
  139. text-transform: none;
  140. }
  141. button,
  142. html input[type="button"],
  143. input[type="reset"],
  144. input[type="submit"] {
  145. -webkit-appearance: button;
  146. cursor: pointer;
  147. }
  148. button[disabled],
  149. html input[disabled] {
  150. cursor: default;
  151. }
  152. input[type="checkbox"],
  153. input[type="radio"] {
  154. -webkit-box-sizing: border-box;
  155. -moz-box-sizing: border-box;
  156. box-sizing: border-box;
  157. padding: 0;
  158. }
  159. input[type="search"] {
  160. -webkit-box-sizing: content-box;
  161. -moz-box-sizing: content-box;
  162. box-sizing: content-box;
  163. -webkit-appearance: textfield;
  164. }
  165. input[type="search"]::-webkit-search-cancel-button,
  166. input[type="search"]::-webkit-search-decoration {
  167. -webkit-appearance: none;
  168. }
  169. button::-moz-focus-inner,
  170. input::-moz-focus-inner {
  171. padding: 0;
  172. border: 0;
  173. }
  174. textarea {
  175. overflow: auto;
  176. vertical-align: top;
  177. }
  178. table {
  179. border-spacing: 0;
  180. border-collapse: collapse;
  181. }
  182. .clearfix:before,
  183. .clearfix:after,
  184. .modal-footer:before,
  185. .modal-footer:after {
  186. /* 1 */
  187. display: table;
  188. content: " ";
  189. /* 2 */
  190. }
  191. .clearfix:after,
  192. .modal-footer:after {
  193. clear: both;
  194. }
  195. .center-block {
  196. display: block;
  197. margin-right: auto;
  198. margin-left: auto;
  199. }
  200. .pull-right {
  201. float: right !important;
  202. }
  203. .pull-left {
  204. float: left !important;
  205. }
  206. .hide {
  207. display: none;
  208. }
  209. .hidden {
  210. display: none!important;
  211. }
  212. .show {
  213. display: block;
  214. }
  215. .showing {
  216. display: block!important;
  217. }
  218. .invisible {
  219. visibility: hidden;
  220. }
  221. .text-hide {
  222. font: 0/0 a;
  223. color: transparent;
  224. text-shadow: none;
  225. background-color: transparent;
  226. border: 0;
  227. }
  228. .affix {
  229. position: fixed;
  230. }
  231. .with-padding {
  232. padding: 5px 12px;
  233. }
  234. @-ms-viewport {
  235. width: device-width;
  236. }
  237. .hidden {
  238. display: none !important;
  239. visibility: hidden !important;
  240. }
  241. .visible-xs,
  242. tr.visible-xs,
  243. th.visible-xs,
  244. td.visible-xs {
  245. display: none !important;
  246. }
  247. @media (max-width: 767px) {
  248. .visible-xs {
  249. display: block !important;
  250. }
  251. tr.visible-xs {
  252. display: table-row !important;
  253. }
  254. th.visible-xs,
  255. td.visible-xs {
  256. display: table-cell !important;
  257. }
  258. }
  259. @media (min-width: 768px) and (max-width: 991px) {
  260. .visible-xs.visible-sm {
  261. display: block !important;
  262. }
  263. tr.visible-xs.visible-sm {
  264. display: table-row !important;
  265. }
  266. th.visible-xs.visible-sm,
  267. td.visible-xs.visible-sm {
  268. display: table-cell !important;
  269. }
  270. }
  271. @media (min-width: 992px) and (max-width: 1199px) {
  272. .visible-xs.visible-md {
  273. display: block !important;
  274. }
  275. tr.visible-xs.visible-md {
  276. display: table-row !important;
  277. }
  278. th.visible-xs.visible-md,
  279. td.visible-xs.visible-md {
  280. display: table-cell !important;
  281. }
  282. }
  283. @media (min-width: 1200px) {
  284. .visible-xs.visible-lg {
  285. display: block !important;
  286. }
  287. tr.visible-xs.visible-lg {
  288. display: table-row !important;
  289. }
  290. th.visible-xs.visible-lg,
  291. td.visible-xs.visible-lg {
  292. display: table-cell !important;
  293. }
  294. }
  295. .visible-sm,
  296. tr.visible-sm,
  297. th.visible-sm,
  298. td.visible-sm {
  299. display: none !important;
  300. }
  301. @media (max-width: 767px) {
  302. .visible-sm.visible-xs {
  303. display: block !important;
  304. }
  305. tr.visible-sm.visible-xs {
  306. display: table-row !important;
  307. }
  308. th.visible-sm.visible-xs,
  309. td.visible-sm.visible-xs {
  310. display: table-cell !important;
  311. }
  312. }
  313. @media (min-width: 768px) and (max-width: 991px) {
  314. .visible-sm {
  315. display: block !important;
  316. }
  317. tr.visible-sm {
  318. display: table-row !important;
  319. }
  320. th.visible-sm,
  321. td.visible-sm {
  322. display: table-cell !important;
  323. }
  324. }
  325. @media (min-width: 992px) and (max-width: 1199px) {
  326. .visible-sm.visible-md {
  327. display: block !important;
  328. }
  329. tr.visible-sm.visible-md {
  330. display: table-row !important;
  331. }
  332. th.visible-sm.visible-md,
  333. td.visible-sm.visible-md {
  334. display: table-cell !important;
  335. }
  336. }
  337. @media (min-width: 1200px) {
  338. .visible-sm.visible-lg {
  339. display: block !important;
  340. }
  341. tr.visible-sm.visible-lg {
  342. display: table-row !important;
  343. }
  344. th.visible-sm.visible-lg,
  345. td.visible-sm.visible-lg {
  346. display: table-cell !important;
  347. }
  348. }
  349. .visible-md,
  350. tr.visible-md,
  351. th.visible-md,
  352. td.visible-md {
  353. display: none !important;
  354. }
  355. @media (max-width: 767px) {
  356. .visible-md.visible-xs {
  357. display: block !important;
  358. }
  359. tr.visible-md.visible-xs {
  360. display: table-row !important;
  361. }
  362. th.visible-md.visible-xs,
  363. td.visible-md.visible-xs {
  364. display: table-cell !important;
  365. }
  366. }
  367. @media (min-width: 768px) and (max-width: 991px) {
  368. .visible-md.visible-sm {
  369. display: block !important;
  370. }
  371. tr.visible-md.visible-sm {
  372. display: table-row !important;
  373. }
  374. th.visible-md.visible-sm,
  375. td.visible-md.visible-sm {
  376. display: table-cell !important;
  377. }
  378. }
  379. @media (min-width: 992px) and (max-width: 1199px) {
  380. .visible-md {
  381. display: block !important;
  382. }
  383. tr.visible-md {
  384. display: table-row !important;
  385. }
  386. th.visible-md,
  387. td.visible-md {
  388. display: table-cell !important;
  389. }
  390. }
  391. @media (min-width: 1200px) {
  392. .visible-md.visible-lg {
  393. display: block !important;
  394. }
  395. tr.visible-md.visible-lg {
  396. display: table-row !important;
  397. }
  398. th.visible-md.visible-lg,
  399. td.visible-md.visible-lg {
  400. display: table-cell !important;
  401. }
  402. }
  403. .visible-lg,
  404. tr.visible-lg,
  405. th.visible-lg,
  406. td.visible-lg {
  407. display: none !important;
  408. }
  409. @media (max-width: 767px) {
  410. .visible-lg.visible-xs {
  411. display: block !important;
  412. }
  413. tr.visible-lg.visible-xs {
  414. display: table-row !important;
  415. }
  416. th.visible-lg.visible-xs,
  417. td.visible-lg.visible-xs {
  418. display: table-cell !important;
  419. }
  420. }
  421. @media (min-width: 768px) and (max-width: 991px) {
  422. .visible-lg.visible-sm {
  423. display: block !important;
  424. }
  425. tr.visible-lg.visible-sm {
  426. display: table-row !important;
  427. }
  428. th.visible-lg.visible-sm,
  429. td.visible-lg.visible-sm {
  430. display: table-cell !important;
  431. }
  432. }
  433. @media (min-width: 992px) and (max-width: 1199px) {
  434. .visible-lg.visible-md {
  435. display: block !important;
  436. }
  437. tr.visible-lg.visible-md {
  438. display: table-row !important;
  439. }
  440. th.visible-lg.visible-md,
  441. td.visible-lg.visible-md {
  442. display: table-cell !important;
  443. }
  444. }
  445. @media (min-width: 1200px) {
  446. .visible-lg {
  447. display: block !important;
  448. }
  449. tr.visible-lg {
  450. display: table-row !important;
  451. }
  452. th.visible-lg,
  453. td.visible-lg {
  454. display: table-cell !important;
  455. }
  456. }
  457. .hidden-xs {
  458. display: block !important;
  459. }
  460. tr.hidden-xs {
  461. display: table-row !important;
  462. }
  463. th.hidden-xs,
  464. td.hidden-xs {
  465. display: table-cell !important;
  466. }
  467. @media (max-width: 767px) {
  468. .hidden-xs,
  469. tr.hidden-xs,
  470. th.hidden-xs,
  471. td.hidden-xs {
  472. display: none !important;
  473. }
  474. }
  475. @media (min-width: 768px) and (max-width: 991px) {
  476. .hidden-xs.hidden-sm,
  477. tr.hidden-xs.hidden-sm,
  478. th.hidden-xs.hidden-sm,
  479. td.hidden-xs.hidden-sm {
  480. display: none !important;
  481. }
  482. }
  483. @media (min-width: 992px) and (max-width: 1199px) {
  484. .hidden-xs.hidden-md,
  485. tr.hidden-xs.hidden-md,
  486. th.hidden-xs.hidden-md,
  487. td.hidden-xs.hidden-md {
  488. display: none !important;
  489. }
  490. }
  491. @media (min-width: 1200px) {
  492. .hidden-xs.hidden-lg,
  493. tr.hidden-xs.hidden-lg,
  494. th.hidden-xs.hidden-lg,
  495. td.hidden-xs.hidden-lg {
  496. display: none !important;
  497. }
  498. }
  499. .hidden-sm {
  500. display: block !important;
  501. }
  502. tr.hidden-sm {
  503. display: table-row !important;
  504. }
  505. th.hidden-sm,
  506. td.hidden-sm {
  507. display: table-cell !important;
  508. }
  509. @media (max-width: 767px) {
  510. .hidden-sm.hidden-xs,
  511. tr.hidden-sm.hidden-xs,
  512. th.hidden-sm.hidden-xs,
  513. td.hidden-sm.hidden-xs {
  514. display: none !important;
  515. }
  516. }
  517. @media (min-width: 768px) and (max-width: 991px) {
  518. .hidden-sm,
  519. tr.hidden-sm,
  520. th.hidden-sm,
  521. td.hidden-sm {
  522. display: none !important;
  523. }
  524. }
  525. @media (min-width: 992px) and (max-width: 1199px) {
  526. .hidden-sm.hidden-md,
  527. tr.hidden-sm.hidden-md,
  528. th.hidden-sm.hidden-md,
  529. td.hidden-sm.hidden-md {
  530. display: none !important;
  531. }
  532. }
  533. @media (min-width: 1200px) {
  534. .hidden-sm.hidden-lg,
  535. tr.hidden-sm.hidden-lg,
  536. th.hidden-sm.hidden-lg,
  537. td.hidden-sm.hidden-lg {
  538. display: none !important;
  539. }
  540. }
  541. .hidden-md {
  542. display: block !important;
  543. }
  544. tr.hidden-md {
  545. display: table-row !important;
  546. }
  547. th.hidden-md,
  548. td.hidden-md {
  549. display: table-cell !important;
  550. }
  551. @media (max-width: 767px) {
  552. .hidden-md.hidden-xs,
  553. tr.hidden-md.hidden-xs,
  554. th.hidden-md.hidden-xs,
  555. td.hidden-md.hidden-xs {
  556. display: none !important;
  557. }
  558. }
  559. @media (min-width: 768px) and (max-width: 991px) {
  560. .hidden-md.hidden-sm,
  561. tr.hidden-md.hidden-sm,
  562. th.hidden-md.hidden-sm,
  563. td.hidden-md.hidden-sm {
  564. display: none !important;
  565. }
  566. }
  567. @media (min-width: 992px) and (max-width: 1199px) {
  568. .hidden-md,
  569. tr.hidden-md,
  570. th.hidden-md,
  571. td.hidden-md {
  572. display: none !important;
  573. }
  574. }
  575. @media (min-width: 1200px) {
  576. .hidden-md.hidden-lg,
  577. tr.hidden-md.hidden-lg,
  578. th.hidden-md.hidden-lg,
  579. td.hidden-md.hidden-lg {
  580. display: none !important;
  581. }
  582. }
  583. .hidden-lg {
  584. display: block !important;
  585. }
  586. tr.hidden-lg {
  587. display: table-row !important;
  588. }
  589. th.hidden-lg,
  590. td.hidden-lg {
  591. display: table-cell !important;
  592. }
  593. @media (max-width: 767px) {
  594. .hidden-lg.hidden-xs,
  595. tr.hidden-lg.hidden-xs,
  596. th.hidden-lg.hidden-xs,
  597. td.hidden-lg.hidden-xs {
  598. display: none !important;
  599. }
  600. }
  601. @media (min-width: 768px) and (max-width: 991px) {
  602. .hidden-lg.hidden-sm,
  603. tr.hidden-lg.hidden-sm,
  604. th.hidden-lg.hidden-sm,
  605. td.hidden-lg.hidden-sm {
  606. display: none !important;
  607. }
  608. }
  609. @media (min-width: 992px) and (max-width: 1199px) {
  610. .hidden-lg.hidden-md,
  611. tr.hidden-lg.hidden-md,
  612. th.hidden-lg.hidden-md,
  613. td.hidden-lg.hidden-md {
  614. display: none !important;
  615. }
  616. }
  617. @media (min-width: 1200px) {
  618. .hidden-lg,
  619. tr.hidden-lg,
  620. th.hidden-lg,
  621. td.hidden-lg {
  622. display: none !important;
  623. }
  624. }
  625. .visible-print,
  626. tr.visible-print,
  627. th.visible-print,
  628. td.visible-print {
  629. display: none !important;
  630. }
  631. @media print {
  632. .visible-print {
  633. display: block !important;
  634. }
  635. tr.visible-print {
  636. display: table-row !important;
  637. }
  638. th.visible-print,
  639. td.visible-print {
  640. display: table-cell !important;
  641. }
  642. .hidden-print,
  643. tr.hidden-print,
  644. th.hidden-print,
  645. td.hidden-print {
  646. display: none !important;
  647. }
  648. }
  649. *,
  650. *:before,
  651. *:after {
  652. -webkit-box-sizing: border-box;
  653. -moz-box-sizing: border-box;
  654. box-sizing: border-box;
  655. }
  656. html {
  657. font-size: 10px;
  658. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  659. }
  660. body {
  661. font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, sans-serif;
  662. font-size: 13px;
  663. line-height: 1.53846154;
  664. color: #353535;
  665. background-color: #fff;
  666. }
  667. input,
  668. button,
  669. select,
  670. textarea {
  671. font-family: inherit;
  672. font-size: inherit;
  673. line-height: inherit;
  674. }
  675. a {
  676. color: #18609d;
  677. text-decoration: none;
  678. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  679. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  680. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  681. }
  682. a:hover,
  683. a:focus {
  684. color: #0e385a;
  685. text-decoration: underline;
  686. }
  687. a:focus {
  688. outline: thin dotted #333;
  689. outline: 5px auto -webkit-focus-ring-color;
  690. outline-offset: -2px;
  691. }
  692. a.disabled,
  693. a.disabled:hover,
  694. a.disabled:focus,
  695. a[disabled],
  696. a[disabled]:hover,
  697. a[disabled]:focus {
  698. color: #aaa;
  699. text-decoration: none;
  700. cursor: default;
  701. }
  702. audio,
  703. canvas,
  704. img,
  705. svg,
  706. video {
  707. max-width: 100%;
  708. vertical-align: middle;
  709. }
  710. .sr-only {
  711. position: absolute;
  712. width: 1px;
  713. height: 1px;
  714. padding: 0;
  715. margin: -1px;
  716. overflow: hidden;
  717. clip: rect(0 0 0 0);
  718. border: 0;
  719. }
  720. ::-moz-selection {
  721. text-shadow: none;
  722. background: #b3d4fc;
  723. }
  724. ::selection {
  725. text-shadow: none;
  726. background: #b3d4fc;
  727. }
  728. fieldset {
  729. padding: 0;
  730. margin: 0;
  731. border: 0;
  732. }
  733. textarea {
  734. resize: none;
  735. }
  736. ol,
  737. ul {
  738. padding-left: 20px;
  739. }
  740. .container {
  741. padding-right: 10px;
  742. padding-left: 10px;
  743. margin-right: auto;
  744. margin-left: auto;
  745. }
  746. .container:before,
  747. .container:after {
  748. /* 1 */
  749. display: table;
  750. content: " ";
  751. /* 2 */
  752. }
  753. .container:after {
  754. clear: both;
  755. }
  756. .container:before,
  757. .container:after {
  758. /* 1 */
  759. display: table;
  760. content: " ";
  761. /* 2 */
  762. }
  763. .container:after {
  764. clear: both;
  765. }
  766. .row {
  767. margin-right: -10px;
  768. margin-left: -10px;
  769. }
  770. .row:before,
  771. .row:after {
  772. /* 1 */
  773. display: table;
  774. content: " ";
  775. /* 2 */
  776. }
  777. .row:after {
  778. clear: both;
  779. }
  780. .row:before,
  781. .row:after {
  782. /* 1 */
  783. display: table;
  784. content: " ";
  785. /* 2 */
  786. }
  787. .row:after {
  788. clear: both;
  789. }
  790. .col-xs-1,
  791. .col-xs-2,
  792. .col-xs-3,
  793. .col-xs-4,
  794. .col-xs-5,
  795. .col-xs-6,
  796. .col-xs-7,
  797. .col-xs-8,
  798. .col-xs-9,
  799. .col-xs-10,
  800. .col-xs-11,
  801. .col-xs-12,
  802. .col-sm-1,
  803. .col-sm-2,
  804. .col-sm-3,
  805. .col-sm-4,
  806. .col-sm-5,
  807. .col-sm-6,
  808. .col-sm-7,
  809. .col-sm-8,
  810. .col-sm-9,
  811. .col-sm-10,
  812. .col-sm-11,
  813. .col-sm-12,
  814. .col-md-1,
  815. .col-md-2,
  816. .col-md-3,
  817. .col-md-4,
  818. .col-md-5,
  819. .col-md-6,
  820. .col-md-7,
  821. .col-md-8,
  822. .col-md-9,
  823. .col-md-10,
  824. .col-md-11,
  825. .col-md-12,
  826. .col-lg-1,
  827. .col-lg-2,
  828. .col-lg-3,
  829. .col-lg-4,
  830. .col-lg-5,
  831. .col-lg-6,
  832. .col-lg-7,
  833. .col-lg-8,
  834. .col-lg-9,
  835. .col-lg-10,
  836. .col-lg-11,
  837. .col-lg-12 {
  838. position: relative;
  839. min-height: 1px;
  840. padding-right: 10px;
  841. padding-left: 10px;
  842. }
  843. .col-xs-1,
  844. .col-xs-2,
  845. .col-xs-3,
  846. .col-xs-4,
  847. .col-xs-5,
  848. .col-xs-6,
  849. .col-xs-7,
  850. .col-xs-8,
  851. .col-xs-9,
  852. .col-xs-10,
  853. .col-xs-11,.col-xs-12 {
  854. float: left;
  855. }
  856. .col-xs-1 {
  857. width: 8.33333333%;
  858. }
  859. .col-xs-2 {
  860. width: 16.66666667%;
  861. }
  862. .col-xs-3 {
  863. width: 25%;
  864. }
  865. .col-xs-4 {
  866. width: 33.33333333%;
  867. }
  868. .col-xs-5 {
  869. width: 41.66666667%;
  870. }
  871. .col-xs-6 {
  872. width: 50%;
  873. }
  874. .col-xs-7 {
  875. width: 58.33333333%;
  876. }
  877. .col-xs-8 {
  878. width: 66.66666667%;
  879. }
  880. .col-xs-9 {
  881. width: 75%;
  882. }
  883. .col-xs-10 {
  884. width: 83.33333333%;
  885. }
  886. .col-xs-11 {
  887. width: 91.66666667%;
  888. }
  889. .col-xs-12 {
  890. width: 100%;
  891. }
  892. @media (min-width: 768px) {
  893. .container {
  894. max-width: 740px;
  895. }
  896. .col-sm-1,
  897. .col-sm-2,
  898. .col-sm-3,
  899. .col-sm-4,
  900. .col-sm-5,
  901. .col-sm-6,
  902. .col-sm-7,
  903. .col-sm-8,
  904. .col-sm-9,
  905. .col-sm-10,
  906. .col-sm-11,.col-sm-12 {
  907. float: left;
  908. }
  909. .col-sm-1 {
  910. width: 8.33333333%;
  911. }
  912. .col-sm-2 {
  913. width: 16.66666667%;
  914. }
  915. .col-sm-3 {
  916. width: 25%;
  917. }
  918. .col-sm-4 {
  919. width: 33.33333333%;
  920. }
  921. .col-sm-5 {
  922. width: 41.66666667%;
  923. }
  924. .col-sm-6 {
  925. width: 50%;
  926. }
  927. .col-sm-7 {
  928. width: 58.33333333%;
  929. }
  930. .col-sm-8 {
  931. width: 66.66666667%;
  932. }
  933. .col-sm-9 {
  934. width: 75%;
  935. }
  936. .col-sm-10 {
  937. width: 83.33333333%;
  938. }
  939. .col-sm-11 {
  940. width: 91.66666667%;
  941. }
  942. .col-sm-12 {
  943. width: 100%;
  944. }
  945. .col-sm-push-1 {
  946. left: 8.33333333%;
  947. }
  948. .col-sm-push-2 {
  949. left: 16.66666667%;
  950. }
  951. .col-sm-push-3 {
  952. left: 25%;
  953. }
  954. .col-sm-push-4 {
  955. left: 33.33333333%;
  956. }
  957. .col-sm-push-5 {
  958. left: 41.66666667%;
  959. }
  960. .col-sm-push-6 {
  961. left: 50%;
  962. }
  963. .col-sm-push-7 {
  964. left: 58.33333333%;
  965. }
  966. .col-sm-push-8 {
  967. left: 66.66666667%;
  968. }
  969. .col-sm-push-9 {
  970. left: 75%;
  971. }
  972. .col-sm-push-10 {
  973. left: 83.33333333%;
  974. }
  975. .col-sm-push-11 {
  976. left: 91.66666667%;
  977. }
  978. .col-sm-pull-1 {
  979. right: 8.33333333%;
  980. }
  981. .col-sm-pull-2 {
  982. right: 16.66666667%;
  983. }
  984. .col-sm-pull-3 {
  985. right: 25%;
  986. }
  987. .col-sm-pull-4 {
  988. right: 33.33333333%;
  989. }
  990. .col-sm-pull-5 {
  991. right: 41.66666667%;
  992. }
  993. .col-sm-pull-6 {
  994. right: 50%;
  995. }
  996. .col-sm-pull-7 {
  997. right: 58.33333333%;
  998. }
  999. .col-sm-pull-8 {
  1000. right: 66.66666667%;
  1001. }
  1002. .col-sm-pull-9 {
  1003. right: 75%;
  1004. }
  1005. .col-sm-pull-10 {
  1006. right: 83.33333333%;
  1007. }
  1008. .col-sm-pull-11 {
  1009. right: 91.66666667%;
  1010. }
  1011. .col-sm-offset-1 {
  1012. margin-left: 8.33333333%;
  1013. }
  1014. .col-sm-offset-2 {
  1015. margin-left: 16.66666667%;
  1016. }
  1017. .col-sm-offset-3 {
  1018. margin-left: 25%;
  1019. }
  1020. .col-sm-offset-4 {
  1021. margin-left: 33.33333333%;
  1022. }
  1023. .col-sm-offset-5 {
  1024. margin-left: 41.66666667%;
  1025. }
  1026. .col-sm-offset-6 {
  1027. margin-left: 50%;
  1028. }
  1029. .col-sm-offset-7 {
  1030. margin-left: 58.33333333%;
  1031. }
  1032. .col-sm-offset-8 {
  1033. margin-left: 66.66666667%;
  1034. }
  1035. .col-sm-offset-9 {
  1036. margin-left: 75%;
  1037. }
  1038. .col-sm-offset-10 {
  1039. margin-left: 83.33333333%;
  1040. }
  1041. .col-sm-offset-11 {
  1042. margin-left: 91.66666667%;
  1043. }
  1044. }
  1045. @media (min-width: 992px) {
  1046. .container {
  1047. max-width: 960px;
  1048. }
  1049. .col-md-1,
  1050. .col-md-2,
  1051. .col-md-3,
  1052. .col-md-4,
  1053. .col-md-5,
  1054. .col-md-6,
  1055. .col-md-7,
  1056. .col-md-8,
  1057. .col-md-9,
  1058. .col-md-10,
  1059. .col-md-11,.col-md-12 {
  1060. float: left;
  1061. }
  1062. .col-md-1 {
  1063. width: 8.33333333%;
  1064. }
  1065. .col-md-2 {
  1066. width: 16.66666667%;
  1067. }
  1068. .col-md-3 {
  1069. width: 25%;
  1070. }
  1071. .col-md-4 {
  1072. width: 33.33333333%;
  1073. }
  1074. .col-md-5 {
  1075. width: 41.66666667%;
  1076. }
  1077. .col-md-6 {
  1078. width: 50%;
  1079. }
  1080. .col-md-7 {
  1081. width: 58.33333333%;
  1082. }
  1083. .col-md-8 {
  1084. width: 66.66666667%;
  1085. }
  1086. .col-md-9 {
  1087. width: 75%;
  1088. }
  1089. .col-md-10 {
  1090. width: 83.33333333%;
  1091. }
  1092. .col-md-11 {
  1093. width: 91.66666667%;
  1094. }
  1095. .col-md-12 {
  1096. width: 100%;
  1097. }
  1098. .col-md-push-0 {
  1099. left: auto;
  1100. }
  1101. .col-md-push-1 {
  1102. left: 8.33333333%;
  1103. }
  1104. .col-md-push-2 {
  1105. left: 16.66666667%;
  1106. }
  1107. .col-md-push-3 {
  1108. left: 25%;
  1109. }
  1110. .col-md-push-4 {
  1111. left: 33.33333333%;
  1112. }
  1113. .col-md-push-5 {
  1114. left: 41.66666667%;
  1115. }
  1116. .col-md-push-6 {
  1117. left: 50%;
  1118. }
  1119. .col-md-push-7 {
  1120. left: 58.33333333%;
  1121. }
  1122. .col-md-push-8 {
  1123. left: 66.66666667%;
  1124. }
  1125. .col-md-push-9 {
  1126. left: 75%;
  1127. }
  1128. .col-md-push-10 {
  1129. left: 83.33333333%;
  1130. }
  1131. .col-md-push-11 {
  1132. left: 91.66666667%;
  1133. }
  1134. .col-md-pull-0 {
  1135. right: auto;
  1136. }
  1137. .col-md-pull-1 {
  1138. right: 8.33333333%;
  1139. }
  1140. .col-md-pull-2 {
  1141. right: 16.66666667%;
  1142. }
  1143. .col-md-pull-3 {
  1144. right: 25%;
  1145. }
  1146. .col-md-pull-4 {
  1147. right: 33.33333333%;
  1148. }
  1149. .col-md-pull-5 {
  1150. right: 41.66666667%;
  1151. }
  1152. .col-md-pull-6 {
  1153. right: 50%;
  1154. }
  1155. .col-md-pull-7 {
  1156. right: 58.33333333%;
  1157. }
  1158. .col-md-pull-8 {
  1159. right: 66.66666667%;
  1160. }
  1161. .col-md-pull-9 {
  1162. right: 75%;
  1163. }
  1164. .col-md-pull-10 {
  1165. right: 83.33333333%;
  1166. }
  1167. .col-md-pull-11 {
  1168. right: 91.66666667%;
  1169. }
  1170. .col-md-offset-0 {
  1171. margin-left: 0;
  1172. }
  1173. .col-md-offset-1 {
  1174. margin-left: 8.33333333%;
  1175. }
  1176. .col-md-offset-2 {
  1177. margin-left: 16.66666667%;
  1178. }
  1179. .col-md-offset-3 {
  1180. margin-left: 25%;
  1181. }
  1182. .col-md-offset-4 {
  1183. margin-left: 33.33333333%;
  1184. }
  1185. .col-md-offset-5 {
  1186. margin-left: 41.66666667%;
  1187. }
  1188. .col-md-offset-6 {
  1189. margin-left: 50%;
  1190. }
  1191. .col-md-offset-7 {
  1192. margin-left: 58.33333333%;
  1193. }
  1194. .col-md-offset-8 {
  1195. margin-left: 66.66666667%;
  1196. }
  1197. .col-md-offset-9 {
  1198. margin-left: 75%;
  1199. }
  1200. .col-md-offset-10 {
  1201. margin-left: 83.33333333%;
  1202. }
  1203. .col-md-offset-11 {
  1204. margin-left: 91.66666667%;
  1205. }
  1206. }
  1207. @media (min-width: 1200px) {
  1208. .container {
  1209. max-width: 1160px;
  1210. }
  1211. .col-lg-1,
  1212. .col-lg-2,
  1213. .col-lg-3,
  1214. .col-lg-4,
  1215. .col-lg-5,
  1216. .col-lg-6,
  1217. .col-lg-7,
  1218. .col-lg-8,
  1219. .col-lg-9,
  1220. .col-lg-10,
  1221. .col-lg-11 ,
  1222. .col-lg-12
  1223. {
  1224. float: left;
  1225. }
  1226. .col-lg-1 {
  1227. width: 8.33333333%;
  1228. }
  1229. .col-lg-2 {
  1230. width: 16.66666667%;
  1231. }
  1232. .col-lg-3 {
  1233. width: 25%;
  1234. }
  1235. .col-lg-4 {
  1236. width: 33.33333333%;
  1237. }
  1238. .col-lg-5 {
  1239. width: 41.66666667%;
  1240. }
  1241. .col-lg-6 {
  1242. width: 50%;
  1243. }
  1244. .col-lg-7 {
  1245. width: 58.33333333%;
  1246. }
  1247. .col-lg-8 {
  1248. width: 66.66666667%;
  1249. }
  1250. .col-lg-9 {
  1251. width: 75%;
  1252. }
  1253. .col-lg-10 {
  1254. width: 83.33333333%;
  1255. }
  1256. .col-lg-11 {
  1257. width: 91.66666667%;
  1258. }
  1259. .col-lg-12 {
  1260. width: 100%;
  1261. }
  1262. .col-lg-push-0 {
  1263. left: auto;
  1264. }
  1265. .col-lg-push-1 {
  1266. left: 8.33333333%;
  1267. }
  1268. .col-lg-push-2 {
  1269. left: 16.66666667%;
  1270. }
  1271. .col-lg-push-3 {
  1272. left: 25%;
  1273. }
  1274. .col-lg-push-4 {
  1275. left: 33.33333333%;
  1276. }
  1277. .col-lg-push-5 {
  1278. left: 41.66666667%;
  1279. }
  1280. .col-lg-push-6 {
  1281. left: 50%;
  1282. }
  1283. .col-lg-push-7 {
  1284. left: 58.33333333%;
  1285. }
  1286. .col-lg-push-8 {
  1287. left: 66.66666667%;
  1288. }
  1289. .col-lg-push-9 {
  1290. left: 75%;
  1291. }
  1292. .col-lg-push-10 {
  1293. left: 83.33333333%;
  1294. }
  1295. .col-lg-push-11 {
  1296. left: 91.66666667%;
  1297. }
  1298. .col-lg-pull-0 {
  1299. right: auto;
  1300. }
  1301. .col-lg-pull-1 {
  1302. right: 8.33333333%;
  1303. }
  1304. .col-lg-pull-2 {
  1305. right: 16.66666667%;
  1306. }
  1307. .col-lg-pull-3 {
  1308. right: 25%;
  1309. }
  1310. .col-lg-pull-4 {
  1311. right: 33.33333333%;
  1312. }
  1313. .col-lg-pull-5 {
  1314. right: 41.66666667%;
  1315. }
  1316. .col-lg-pull-6 {
  1317. right: 50%;
  1318. }
  1319. .col-lg-pull-7 {
  1320. right: 58.33333333%;
  1321. }
  1322. .col-lg-pull-8 {
  1323. right: 66.66666667%;
  1324. }
  1325. .col-lg-pull-9 {
  1326. right: 75%;
  1327. }
  1328. .col-lg-pull-10 {
  1329. right: 83.33333333%;
  1330. }
  1331. .col-lg-pull-11 {
  1332. right: 91.66666667%;
  1333. }
  1334. .col-lg-offset-0 {
  1335. margin-left: 0;
  1336. }
  1337. .col-lg-offset-1 {
  1338. margin-left: 8.33333333%;
  1339. }
  1340. .col-lg-offset-2 {
  1341. margin-left: 16.66666667%;
  1342. }
  1343. .col-lg-offset-3 {
  1344. margin-left: 25%;
  1345. }
  1346. .col-lg-offset-4 {
  1347. margin-left: 33.33333333%;
  1348. }
  1349. .col-lg-offset-5 {
  1350. margin-left: 41.66666667%;
  1351. }
  1352. .col-lg-offset-6 {
  1353. margin-left: 50%;
  1354. }
  1355. .col-lg-offset-7 {
  1356. margin-left: 58.33333333%;
  1357. }
  1358. .col-lg-offset-8 {
  1359. margin-left: 66.66666667%;
  1360. }
  1361. .col-lg-offset-9 {
  1362. margin-left: 75%;
  1363. }
  1364. .col-lg-offset-10 {
  1365. margin-left: 83.33333333%;
  1366. }
  1367. .col-lg-offset-11 {
  1368. margin-left: 91.66666667%;
  1369. }
  1370. }
  1371. p {
  1372. margin: 0 0 10px;
  1373. }
  1374. .lead {
  1375. margin-bottom: 20px;
  1376. font-size: 14px;
  1377. line-height: 1.4;
  1378. }
  1379. @media (min-width: 768px) {
  1380. .lead {
  1381. font-size: 19.5px;
  1382. }
  1383. }
  1384. small,
  1385. .small {
  1386. font-size: 85%;
  1387. }
  1388. cite {
  1389. font-style: normal;
  1390. }
  1391. .text-muted {
  1392. color: #808080;
  1393. }
  1394. .text-muted a {
  1395. color: #737373;
  1396. }
  1397. .text-muted a:hover,
  1398. .text-muted a:active {
  1399. color: #18609d;
  1400. }
  1401. .text-primary {
  1402. color: #108bf1;
  1403. }
  1404. .text-primary:hover {
  1405. color: #0b70c3;
  1406. }
  1407. .text-warning {
  1408. color: #f39c11;
  1409. }
  1410. .text-warning:hover {
  1411. color: #c77e0a;
  1412. }
  1413. .text-danger {
  1414. color: #ee4e2f;
  1415. }
  1416. .text-danger:hover {
  1417. color: #d83212;
  1418. }
  1419. .text-success {
  1420. color: #2ac25f;
  1421. }
  1422. .text-success:hover {
  1423. color: #21984a;
  1424. }
  1425. .text-info {
  1426. color: #00c3b6;
  1427. }
  1428. .text-info:hover {
  1429. color: #009086;
  1430. }
  1431. .text-important {
  1432. color: #a76531;
  1433. }
  1434. .text-important:hover {
  1435. color: #804d25;
  1436. }
  1437. .text-special {
  1438. color: #6f5499;
  1439. }
  1440. .text-special:hover {
  1441. color: #574278;
  1442. }
  1443. .text-link {
  1444. color: #353535;
  1445. }
  1446. .text-link:hover,
  1447. .text-link:active {
  1448. color: #18609d;
  1449. }
  1450. .text-left {
  1451. text-align: left;
  1452. }
  1453. .text-right {
  1454. text-align: right;
  1455. }
  1456. .text-center {
  1457. text-align: center;
  1458. }
  1459. .text-nowrap,
  1460. .nobr {
  1461. overflow: hidden;
  1462. white-space: nowrap;
  1463. }
  1464. .text-ellipsis {
  1465. overflow: hidden;
  1466. text-overflow: ellipsis;
  1467. white-space: nowrap;
  1468. }
  1469. ul,
  1470. ol {
  1471. margin-top: 0;
  1472. margin-bottom: 10px;
  1473. }
  1474. ul ul,
  1475. ol ul,
  1476. ul ol,
  1477. ol ol {
  1478. margin-bottom: 0;
  1479. }
  1480. .list-unstyled {
  1481. padding-left: 0;
  1482. list-style: none;
  1483. }
  1484. dl {
  1485. margin-bottom: 20px;
  1486. }
  1487. dt,
  1488. dd {
  1489. line-height: 1.53846154;
  1490. }
  1491. dt {
  1492. font-weight: bold;
  1493. }
  1494. dd {
  1495. margin-left: 0;
  1496. }
  1497. .dl-inline:before,
  1498. .dl-inline:after {
  1499. /* 1 */
  1500. display: table;
  1501. content: " ";
  1502. /* 2 */
  1503. }
  1504. .dl-inline:after {
  1505. clear: both;
  1506. }
  1507. .dl-inline:before,
  1508. .dl-inline:after {
  1509. /* 1 */
  1510. display: table;
  1511. content: " ";
  1512. /* 2 */
  1513. }
  1514. .dl-inline:after {
  1515. clear: both;
  1516. }
  1517. .dl-inline dt {
  1518. display: inline-block;
  1519. }
  1520. .dl-inline dd {
  1521. display: inline-block;
  1522. padding-right: 1em;
  1523. }
  1524. .dl-inline dd:last-child {
  1525. padding-right: 0;
  1526. }
  1527. @media (min-width: 768px) {
  1528. .dl-horizontal dt {
  1529. float: left;
  1530. width: 160px;
  1531. overflow: hidden;
  1532. clear: left;
  1533. text-align: right;
  1534. text-overflow: ellipsis;
  1535. white-space: nowrap;
  1536. }
  1537. .dl-horizontal dd {
  1538. margin-left: 180px;
  1539. }
  1540. .dl-horizontal dd:before,
  1541. .dl-horizontal dd:after {
  1542. /* 1 */
  1543. display: table;
  1544. content: " ";
  1545. /* 2 */
  1546. }
  1547. .dl-horizontal dd:after {
  1548. clear: both;
  1549. }
  1550. .dl-horizontal dd:before,
  1551. .dl-horizontal dd:after {
  1552. /* 1 */
  1553. display: table;
  1554. content: " ";
  1555. /* 2 */
  1556. }
  1557. .dl-horizontal dd:after {
  1558. clear: both;
  1559. }
  1560. }
  1561. blockquote {
  1562. padding: 10px 20px;
  1563. margin: 0 0 20px;
  1564. border-left: 5px solid #e5e5e5;
  1565. }
  1566. blockquote p {
  1567. font-size: 16.25px;
  1568. font-weight: 300;
  1569. line-height: 1.25;
  1570. }
  1571. blockquote p:last-child {
  1572. margin-bottom: 0;
  1573. }
  1574. blockquote small {
  1575. display: block;
  1576. line-height: 1.53846154;
  1577. color: #808080;
  1578. }
  1579. blockquote small:before {
  1580. content: '\2014 \00A0';
  1581. }
  1582. blockquote.pull-right {
  1583. padding-right: 15px;
  1584. padding-left: 0;
  1585. border-right: 5px solid #e5e5e5;
  1586. border-left: 0;
  1587. }
  1588. blockquote.pull-right p,
  1589. blockquote.pull-right small {
  1590. text-align: right;
  1591. }
  1592. blockquote.pull-right small:before {
  1593. content: '';
  1594. }
  1595. blockquote.pull-right small:after {
  1596. content: '\00A0 \2014';
  1597. }
  1598. blockquote:before,
  1599. blockquote:after {
  1600. content: "";
  1601. }
  1602. .bg-default {
  1603. color: #fff;
  1604. background-color: #353535;
  1605. }
  1606. a.bg-default:hover {
  1607. background-color: #1c1c1c;
  1608. }
  1609. .bg-primary {
  1610. color: #fff;
  1611. background-color: #108bf1;
  1612. }
  1613. a.bg-primary:hover {
  1614. background-color: #0b70c3;
  1615. }
  1616. .bg-success {
  1617. color: #fff;
  1618. background-color: #2ac25f;
  1619. }
  1620. a.bg-success:hover {
  1621. background-color: #21984a;
  1622. }
  1623. .bg-info {
  1624. color: #fff;
  1625. background-color: #00c3b6;
  1626. }
  1627. a.bg-info:hover {
  1628. background-color: #009086;
  1629. }
  1630. .bg-warning {
  1631. color: #fff;
  1632. background-color: #f39c11;
  1633. }
  1634. a.bg-warning:hover {
  1635. background-color: #c77e0a;
  1636. }
  1637. .bg-danger {
  1638. color: #fff;
  1639. background-color: #ee4e2f;
  1640. }
  1641. a.bg-danger:hover {
  1642. background-color: #d83212;
  1643. }
  1644. .bg-important {
  1645. color: #fff;
  1646. background-color: #a76531;
  1647. }
  1648. a.bg-important:hover {
  1649. background-color: #804d25;
  1650. }
  1651. .bg-special {
  1652. color: #fff;
  1653. background-color: #6f5499;
  1654. }
  1655. a.bg-special:hover {
  1656. background-color: #574278;
  1657. }
  1658. .highlight-default {
  1659. background-color: #f1f1f1;
  1660. }
  1661. a.highlight-default:hover {
  1662. background-color: #d7d7d7;
  1663. }
  1664. .highlight-primary {
  1665. background-color: #ebf5f9;
  1666. }
  1667. a.highlight-primary:hover {
  1668. background-color: #c4e0ed;
  1669. }
  1670. .highlight-success {
  1671. background-color: #e5ffee;
  1672. }
  1673. a.highlight-success:hover {
  1674. background-color: #b3ffcd;
  1675. }
  1676. .highlight-info {
  1677. background-color: #e5fffd;
  1678. }
  1679. a.highlight-info:hover {
  1680. background-color: #b3fffa;
  1681. }
  1682. .highlight-warning {
  1683. background-color: #fff5e5;
  1684. }
  1685. a.highlight-warning:hover {
  1686. background-color: #ffe2b3;
  1687. }
  1688. .highlight-danger {
  1689. background-color: #ffeae5;
  1690. }
  1691. a.highlight-danger:hover {
  1692. background-color: #ffbfb3;
  1693. }
  1694. .highlight-important {
  1695. background-color: #fff1e5;
  1696. }
  1697. a.highlight-important:hover {
  1698. background-color: #ffd4b3;
  1699. }
  1700. .highlight-special {
  1701. background-color: #efe5ff;
  1702. }
  1703. a.highlight-special:hover {
  1704. background-color: #d0b3ff;
  1705. }
  1706. h1,
  1707. h2,
  1708. h3 {
  1709. margin-top: 20px;
  1710. margin-bottom: 10px;
  1711. }
  1712. h1 small,
  1713. h2 small,
  1714. h3 small {
  1715. font-size: 65%;
  1716. }
  1717. h4,
  1718. h5,
  1719. h6 {
  1720. margin-top: 10px;
  1721. margin-bottom: 10px;
  1722. }
  1723. h4 small,
  1724. h5 small,
  1725. h6 small {
  1726. font-size: 75%;
  1727. }
  1728. h1 {
  1729. font-size: 26px;
  1730. }
  1731. h2 {
  1732. font-size: 20px;
  1733. }
  1734. h3 {
  1735. font-size: 16px;
  1736. }
  1737. h4 {
  1738. font-size: 14px;
  1739. }
  1740. h5 {
  1741. font-size: 13px;
  1742. }
  1743. h6 {
  1744. font-size: 12px;
  1745. }
  1746. h1,
  1747. h2,
  1748. h3,
  1749. h4,
  1750. h5,
  1751. h6 {
  1752. font-family: inherit;
  1753. font-weight: normal;
  1754. line-height: 1.1;
  1755. color: inherit;
  1756. }
  1757. h1 small,
  1758. h2 small,
  1759. h3 small,
  1760. h4 small,
  1761. h5 small,
  1762. h6 small {
  1763. font-weight: normal;
  1764. line-height: 1;
  1765. color: #808080;
  1766. }
  1767. h1.header-dividing,
  1768. h2.header-dividing,
  1769. h3.header-dividing,
  1770. h4.header-dividing,
  1771. h5.header-dividing,
  1772. h6.header-dividing {
  1773. padding-bottom: 9px;
  1774. border-bottom: 1px solid #e5e5e5;
  1775. }
  1776. .btn {
  1777. display: inline-block;
  1778. padding: 5px 12px;
  1779. margin-bottom: 0;
  1780. font-family: inherit;
  1781. font-size: 13px;
  1782. font-weight: normal;
  1783. line-height: 1.53846154;
  1784. text-align: center;
  1785. white-space: nowrap;
  1786. vertical-align: middle;
  1787. cursor: pointer;
  1788. -webkit-user-select: none;
  1789. -moz-user-select: none;
  1790. -ms-user-select: none;
  1791. user-select: none;
  1792. background-image: none;
  1793. border: 1px solid transparent;
  1794. border-radius: 0;
  1795. -webkit-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  1796. -o-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  1797. transition: all .8s cubic-bezier(.175, .885, .32, 1);
  1798. }
  1799. .btn:focus {
  1800. outline: thin dotted #333;
  1801. outline: 5px auto -webkit-focus-ring-color;
  1802. outline-offset: -2px;
  1803. }
  1804. .btn:hover,
  1805. .btn:focus {
  1806. color: #353535;
  1807. text-decoration: none;
  1808. }
  1809. .btn:active,
  1810. .btn.active {
  1811. background-image: none;
  1812. outline: none;
  1813. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1814. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  1815. }
  1816. .btn.disabled,
  1817. .btn[disabled],
  1818. fieldset[disabled] .btn {
  1819. pointer-events: none;
  1820. cursor: not-allowed;
  1821. filter: alpha(opacity=65);
  1822. -webkit-box-shadow: none;
  1823. box-shadow: none;
  1824. opacity: .65;
  1825. }
  1826. .btn {
  1827. color: #353535;
  1828. text-shadow: 0 1px 0 #fff;
  1829. background-color: #f2f2f2;
  1830. border-color: #d4d4d4;
  1831. border-color: #ccc;
  1832. }
  1833. .btn:hover,
  1834. .btn:focus,
  1835. .btn:active,
  1836. .btn.active,
  1837. .open .dropdown-toggle.btn {
  1838. color: #353535;
  1839. background-color: #dedede;
  1840. border-color: #a1a1a1;
  1841. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1842. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1843. }
  1844. .btn:active,
  1845. .btn.active,
  1846. .open .dropdown-toggle.btn {
  1847. background-image: none;
  1848. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1849. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1850. }
  1851. .btn.disabled,
  1852. .btn[disabled],
  1853. fieldset[disabled] .btn,
  1854. .btn.disabled:hover,
  1855. .btn[disabled]:hover,
  1856. fieldset[disabled] .btn:hover,
  1857. .btn.disabled:focus,
  1858. .btn[disabled]:focus,
  1859. fieldset[disabled] .btn:focus,
  1860. .btn.disabled:active,
  1861. .btn[disabled]:active,
  1862. fieldset[disabled] .btn:active,
  1863. .btn.disabled.active,
  1864. .btn[disabled].active,
  1865. fieldset[disabled] .btn.active {
  1866. background-color: #f2f2f2;
  1867. border-color: #bfbfbf;
  1868. }
  1869. .btn-primary {
  1870. color: #fff;
  1871. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  1872. background-color: #108bf1;
  1873. border-color: #0b6ab9;
  1874. }
  1875. .btn-primary:hover,
  1876. .btn-primary:focus,
  1877. .btn-primary:active,
  1878. .btn-primary.active,
  1879. .open .dropdown-toggle.btn-primary {
  1880. color: #fff;
  1881. background-color: #0c75cc;
  1882. border-color: #095ca1;
  1883. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1884. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1885. }
  1886. .btn-primary:active,
  1887. .btn-primary.active,
  1888. .open .dropdown-toggle.btn-primary {
  1889. background-image: none;
  1890. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1891. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1892. }
  1893. .btn-primary.disabled,
  1894. .btn-primary[disabled],
  1895. fieldset[disabled] .btn-primary,
  1896. .btn-primary.disabled:hover,
  1897. .btn-primary[disabled]:hover,
  1898. fieldset[disabled] .btn-primary:hover,
  1899. .btn-primary.disabled:focus,
  1900. .btn-primary[disabled]:focus,
  1901. fieldset[disabled] .btn-primary:focus,
  1902. .btn-primary.disabled:active,
  1903. .btn-primary[disabled]:active,
  1904. fieldset[disabled] .btn-primary:active,
  1905. .btn-primary.disabled.active,
  1906. .btn-primary[disabled].active,
  1907. fieldset[disabled] .btn-primary.active {
  1908. background-color: #108bf1;
  1909. border-color: #0d7ddb;
  1910. }
  1911. .btn-warning {
  1912. color: #fff;
  1913. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  1914. background-color: #f39c11;
  1915. border-color: #bd780a;
  1916. }
  1917. .btn-warning:hover,
  1918. .btn-warning:focus,
  1919. .btn-warning:active,
  1920. .btn-warning.active,
  1921. .open .dropdown-toggle.btn-warning {
  1922. color: #fff;
  1923. background-color: #d1840b;
  1924. border-color: #a56908;
  1925. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1926. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1927. }
  1928. .btn-warning:active,
  1929. .btn-warning.active,
  1930. .open .dropdown-toggle.btn-warning {
  1931. background-image: none;
  1932. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1933. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1934. }
  1935. .btn-warning.disabled,
  1936. .btn-warning[disabled],
  1937. fieldset[disabled] .btn-warning,
  1938. .btn-warning.disabled:hover,
  1939. .btn-warning[disabled]:hover,
  1940. fieldset[disabled] .btn-warning:hover,
  1941. .btn-warning.disabled:focus,
  1942. .btn-warning[disabled]:focus,
  1943. fieldset[disabled] .btn-warning:focus,
  1944. .btn-warning.disabled:active,
  1945. .btn-warning[disabled]:active,
  1946. fieldset[disabled] .btn-warning:active,
  1947. .btn-warning.disabled.active,
  1948. .btn-warning[disabled].active,
  1949. fieldset[disabled] .btn-warning.active {
  1950. background-color: #f39c11;
  1951. border-color: #df8e0b;
  1952. }
  1953. .btn-danger {
  1954. color: #fff;
  1955. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  1956. background-color: #ee4e2f;
  1957. border-color: #cf3011;
  1958. }
  1959. .btn-danger:hover,
  1960. .btn-danger:focus,
  1961. .btn-danger:active,
  1962. .btn-danger.active,
  1963. .open .dropdown-toggle.btn-danger {
  1964. color: #fff;
  1965. background-color: #e23412;
  1966. border-color: #b72a0f;
  1967. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1968. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  1969. }
  1970. .btn-danger:active,
  1971. .btn-danger.active,
  1972. .open .dropdown-toggle.btn-danger {
  1973. background-image: none;
  1974. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1975. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  1976. }
  1977. .btn-danger.disabled,
  1978. .btn-danger[disabled],
  1979. fieldset[disabled] .btn-danger,
  1980. .btn-danger.disabled:hover,
  1981. .btn-danger[disabled]:hover,
  1982. fieldset[disabled] .btn-danger:hover,
  1983. .btn-danger.disabled:focus,
  1984. .btn-danger[disabled]:focus,
  1985. fieldset[disabled] .btn-danger:focus,
  1986. .btn-danger.disabled:active,
  1987. .btn-danger[disabled]:active,
  1988. fieldset[disabled] .btn-danger:active,
  1989. .btn-danger.disabled.active,
  1990. .btn-danger[disabled].active,
  1991. fieldset[disabled] .btn-danger.active {
  1992. background-color: #ee4e2f;
  1993. border-color: #ec3a17;
  1994. }
  1995. .btn-success {
  1996. color: #fff;
  1997. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  1998. background-color: #2ac25f;
  1999. border-color: #1f9046;
  2000. }
  2001. .btn-success:hover,
  2002. .btn-success:focus,
  2003. .btn-success:active,
  2004. .btn-success.active,
  2005. .open .dropdown-toggle.btn-success {
  2006. color: #fff;
  2007. background-color: #23a04f;
  2008. border-color: #1b7b3c;
  2009. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2010. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2011. }
  2012. .btn-success:active,
  2013. .btn-success.active,
  2014. .open .dropdown-toggle.btn-success {
  2015. background-image: none;
  2016. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  2017. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  2018. }
  2019. .btn-success.disabled,
  2020. .btn-success[disabled],
  2021. fieldset[disabled] .btn-success,
  2022. .btn-success.disabled:hover,
  2023. .btn-success[disabled]:hover,
  2024. fieldset[disabled] .btn-success:hover,
  2025. .btn-success.disabled:focus,
  2026. .btn-success[disabled]:focus,
  2027. fieldset[disabled] .btn-success:focus,
  2028. .btn-success.disabled:active,
  2029. .btn-success[disabled]:active,
  2030. fieldset[disabled] .btn-success:active,
  2031. .btn-success.disabled.active,
  2032. .btn-success[disabled].active,
  2033. fieldset[disabled] .btn-success.active {
  2034. background-color: #2ac25f;
  2035. border-color: #25ad55;
  2036. }
  2037. .btn-info {
  2038. color: #fff;
  2039. text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  2040. background-color: #00c3b6;
  2041. border-color: #00867d;
  2042. }
  2043. .btn-info:hover,
  2044. .btn-info:focus,
  2045. .btn-info:active,
  2046. .btn-info.active,
  2047. .open .dropdown-toggle.btn-info {
  2048. color: #fff;
  2049. background-color: #009a90;
  2050. border-color: #006c65;
  2051. -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2052. box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
  2053. }
  2054. .btn-info:active,
  2055. .btn-info.active,
  2056. .open .dropdown-toggle.btn-info {
  2057. background-image: none;
  2058. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  2059. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  2060. }
  2061. .btn-info.disabled,
  2062. .btn-info[disabled],
  2063. fieldset[disabled] .btn-info,
  2064. .btn-info.disabled:hover,
  2065. .btn-info[disabled]:hover,
  2066. fieldset[disabled] .btn-info:hover,
  2067. .btn-info.disabled:focus,
  2068. .btn-info[disabled]:focus,
  2069. fieldset[disabled] .btn-info:focus,
  2070. .btn-info.disabled:active,
  2071. .btn-info[disabled]:active,
  2072. fieldset[disabled] .btn-info:active,
  2073. .btn-info.disabled.active,
  2074. .btn-info[disabled].active,
  2075. fieldset[disabled] .btn-info.active {
  2076. background-color: #00c3b6;
  2077. border-color: #00aa9e;
  2078. }
  2079. .btn-link {
  2080. font-weight: normal;
  2081. color: #18609d;
  2082. text-shadow: none;
  2083. cursor: pointer;
  2084. background: none;
  2085. -webkit-box-shadow: none;
  2086. box-shadow: none;
  2087. }
  2088. .btn-link,
  2089. .btn-link:active,
  2090. .btn-link[disabled],
  2091. fieldset[disabled] .btn-link,
  2092. .btn-link:hover,
  2093. .btn-link:focus {
  2094. border-color: transparent;
  2095. -webkit-box-shadow: none;
  2096. box-shadow: none;
  2097. }
  2098. .btn-link:hover,
  2099. .btn-link:focus {
  2100. color: #0e385a;
  2101. }
  2102. .btn-link[disabled]:hover,
  2103. fieldset[disabled] .btn-link:hover,
  2104. .btn-link[disabled]:focus,
  2105. fieldset[disabled] .btn-link:focus {
  2106. color: #ddd;
  2107. text-decoration: none;
  2108. }
  2109. .btn-lg {
  2110. padding: 10px 16px;
  2111. font-size: 17px;
  2112. line-height: 1.25;
  2113. border-radius: 0;
  2114. }
  2115. .btn-sm,
  2116. .btn-xs,
  2117. .btn-mini {
  2118. padding: 2px 8px;
  2119. font-size: 12px;
  2120. line-height: 1.5;
  2121. border-radius: 0;
  2122. }
  2123. .btn-xs,
  2124. .btn-mini {
  2125. padding: 1px 5px;
  2126. }
  2127. .btn-block {
  2128. display: block;
  2129. width: 100%;
  2130. padding-right: 0;
  2131. padding-left: 0;
  2132. }
  2133. .btn-block + .btn-block {
  2134. margin-top: 5px;
  2135. }
  2136. input[type="submit"].btn-block,
  2137. input[type="reset"].btn-block,
  2138. input[type="button"].btn-block {
  2139. width: 100%;
  2140. }
  2141. .btn .caret {
  2142. margin-left: 0;
  2143. }
  2144. .btn-lg .caret {
  2145. border-width: 5px 5px 0;
  2146. border-bottom-width: 0;
  2147. }
  2148. .dropup .btn-lg .caret {
  2149. border-width: 0 5px 5px;
  2150. }
  2151. [data-toggle="buttons"] > .btn > input[type="radio"],
  2152. [data-toggle="buttons"] > .btn > input[type="checkbox"] {
  2153. display: none;
  2154. }
  2155. .btn-default .caret {
  2156. border-top-color: #353535;
  2157. }
  2158. .btn-primary .caret,
  2159. .btn-success .caret,
  2160. .btn-warning .caret,
  2161. .btn-danger .caret,
  2162. .btn-info .caret {
  2163. border-top-color: #fff;
  2164. }
  2165. .dropup .btn-default .caret {
  2166. border-bottom-color: #353535;
  2167. }
  2168. .dropup .btn-primary .caret,
  2169. .dropup .btn-success .caret,
  2170. .dropup .btn-warning .caret,
  2171. .dropup .btn-danger .caret,
  2172. .dropup .btn-info .caret {
  2173. border-bottom-color: #fff;
  2174. }
  2175. .btn-group,
  2176. .btn-group-vertical {
  2177. position: relative;
  2178. display: inline-block;
  2179. vertical-align: middle;
  2180. }
  2181. .btn-group > .btn,
  2182. .btn-group-vertical > .btn {
  2183. position: relative;
  2184. float: left;
  2185. }
  2186. .btn-group > .btn:hover,
  2187. .btn-group-vertical > .btn:hover,
  2188. .btn-group > .btn:focus,
  2189. .btn-group-vertical > .btn:focus,
  2190. .btn-group > .btn:active,
  2191. .btn-group-vertical > .btn:active,
  2192. .btn-group > .btn.active,
  2193. .btn-group-vertical > .btn.active {
  2194. z-index: 2;
  2195. }
  2196. .btn-group > .btn:focus,
  2197. .btn-group-vertical > .btn:focus {
  2198. outline: none;
  2199. }
  2200. .btn-group .btn + .btn,
  2201. .btn-group .btn + .btn-group,
  2202. .btn-group .btn-group + .btn,
  2203. .btn-group .btn-group + .btn-group {
  2204. margin-left: -1px;
  2205. }
  2206. .btn-toolbar:before,
  2207. .btn-toolbar:after {
  2208. /* 1 */
  2209. display: table;
  2210. content: " ";
  2211. /* 2 */
  2212. }
  2213. .btn-toolbar:after {
  2214. clear: both;
  2215. }
  2216. .btn-toolbar:before,
  2217. .btn-toolbar:after {
  2218. /* 1 */
  2219. display: table;
  2220. content: " ";
  2221. /* 2 */
  2222. }
  2223. .btn-toolbar:after {
  2224. clear: both;
  2225. }
  2226. .btn-toolbar .btn-group {
  2227. float: left;
  2228. }
  2229. .btn-toolbar > .btn + .btn,
  2230. .btn-toolbar > .btn-group + .btn,
  2231. .btn-toolbar > .btn + .btn-group,
  2232. .btn-toolbar > .btn-group + .btn-group {
  2233. margin-left: 5px;
  2234. }
  2235. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2236. border-radius: 0;
  2237. }
  2238. .btn-group > .btn:first-child {
  2239. margin-left: 0;
  2240. }
  2241. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2242. border-top-right-radius: 0;
  2243. border-bottom-right-radius: 0;
  2244. }
  2245. .btn-group > .btn:last-child:not(:first-child),
  2246. .btn-group > .dropdown-toggle:not(:first-child) {
  2247. border-top-left-radius: 0;
  2248. border-bottom-left-radius: 0;
  2249. }
  2250. .btn-group > .btn-group {
  2251. float: left;
  2252. }
  2253. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  2254. border-radius: 0;
  2255. }
  2256. .btn-group > .btn-group:first-child > .btn:last-child,
  2257. .btn-group > .btn-group:first-child > .dropdown-toggle {
  2258. border-top-right-radius: 0;
  2259. border-bottom-right-radius: 0;
  2260. }
  2261. .btn-group > .btn-group:last-child > .btn:first-child {
  2262. border-top-left-radius: 0;
  2263. border-bottom-left-radius: 0;
  2264. }
  2265. .btn-group .dropdown-toggle:active,
  2266. .btn-group.open .dropdown-toggle {
  2267. outline: 0;
  2268. }
  2269. .btn-group-xs > .btn {
  2270. padding: 2px 8px;
  2271. padding: 1px 5px;
  2272. font-size: 12px;
  2273. line-height: 1.5;
  2274. border-radius: 0;
  2275. }
  2276. .btn-group-sm > .btn {
  2277. padding: 2px 8px;
  2278. font-size: 12px;
  2279. line-height: 1.5;
  2280. border-radius: 0;
  2281. }
  2282. .btn-group-lg > .btn {
  2283. padding: 10px 16px;
  2284. font-size: 17px;
  2285. line-height: 1.25;
  2286. border-radius: 0;
  2287. }
  2288. .btn-group > .btn + .dropdown-toggle {
  2289. padding-right: 8px;
  2290. padding-left: 8px;
  2291. }
  2292. .btn-group > .btn-lg + .dropdown-toggle {
  2293. padding-right: 12px;
  2294. padding-left: 12px;
  2295. }
  2296. .btn-group.open .dropdown-toggle {
  2297. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2298. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  2299. }
  2300. .btn-group-vertical > .btn,
  2301. .btn-group-vertical > .btn-group {
  2302. display: block;
  2303. float: none;
  2304. width: 100%;
  2305. max-width: 100%;
  2306. }
  2307. .btn-group-vertical > .btn-group:before,
  2308. .btn-group-vertical > .btn-group:after {
  2309. /* 1 */
  2310. display: table;
  2311. content: " ";
  2312. /* 2 */
  2313. }
  2314. .btn-group-vertical > .btn-group:after {
  2315. clear: both;
  2316. }
  2317. .btn-group-vertical > .btn-group:before,
  2318. .btn-group-vertical > .btn-group:after {
  2319. /* 1 */
  2320. display: table;
  2321. content: " ";
  2322. /* 2 */
  2323. }
  2324. .btn-group-vertical > .btn-group:after {
  2325. clear: both;
  2326. }
  2327. .btn-group-vertical > .btn-group > .btn {
  2328. float: none;
  2329. }
  2330. .btn-group-vertical > .btn + .btn,
  2331. .btn-group-vertical > .btn + .btn-group,
  2332. .btn-group-vertical > .btn-group + .btn,
  2333. .btn-group-vertical > .btn-group + .btn-group {
  2334. margin-top: -1px;
  2335. margin-left: 0;
  2336. }
  2337. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  2338. border-radius: 0;
  2339. }
  2340. .btn-group-vertical > .btn:first-child:not(:last-child) {
  2341. border-top-right-radius: 0;
  2342. border-bottom-right-radius: 0;
  2343. border-bottom-left-radius: 0;
  2344. }
  2345. .btn-group-vertical > .btn:last-child:not(:first-child) {
  2346. border-top-left-radius: 0;
  2347. border-top-right-radius: 0;
  2348. border-bottom-left-radius: 0;
  2349. }
  2350. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  2351. border-radius: 0;
  2352. }
  2353. .btn-group-vertical > .btn-group:first-child > .btn:last-child,
  2354. .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  2355. border-bottom-right-radius: 0;
  2356. border-bottom-left-radius: 0;
  2357. }
  2358. .btn-group-vertical > .btn-group:last-child > .btn:first-child {
  2359. border-top-left-radius: 0;
  2360. border-top-right-radius: 0;
  2361. }
  2362. @-webkit-keyframes progress-bar-stripes {
  2363. from {
  2364. background-position: 40px 0;
  2365. }
  2366. to {
  2367. background-position: 0 0;
  2368. }
  2369. }
  2370. @-o-keyframes progress-bar-stripes {
  2371. from {
  2372. background-position: 0 0;
  2373. }
  2374. to {
  2375. background-position: 40px 0;
  2376. }
  2377. }
  2378. @keyframes progress-bar-stripes {
  2379. from {
  2380. background-position: 40px 0;
  2381. }
  2382. to {
  2383. background-position: 0 0;
  2384. }
  2385. }
  2386. .progress {
  2387. height: 20px;
  2388. margin-bottom: 20px;
  2389. overflow: hidden;
  2390. background-color: #f5f5f5;
  2391. border-radius: 0;
  2392. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  2393. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  2394. }
  2395. .progress-bar {
  2396. float: left;
  2397. width: 0;
  2398. height: 100%;
  2399. font-size: 12px;
  2400. color: #fff;
  2401. text-align: center;
  2402. background-color: #108bf1;
  2403. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  2404. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  2405. -webkit-transition: width .6s ease;
  2406. -o-transition: width .6s ease;
  2407. transition: width .6s ease;
  2408. }
  2409. .progress-striped .progress-bar {
  2410. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, #108bf1), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #108bf1), color-stop(.75, #108bf1), color-stop(.75, transparent), to(transparent));
  2411. background-image: -webkit-linear-gradient(45deg, #108bf1 25%, transparent 25%, transparent 50%, #108bf1 50%, #108bf1 75%, transparent 75%, transparent);
  2412. background-image: -o-linear-gradient(45deg, #108bf1 25%, transparent 25%, transparent 50%, #108bf1 50%, #108bf1 75%, transparent 75%, transparent);
  2413. background-image: linear-gradient(45deg, #108bf1 25%, transparent 25%, transparent 50%, #108bf1 50%, #108bf1 75%, transparent 75%, transparent);
  2414. -webkit-background-size: 40px 40px;
  2415. background-size: 40px 40px;
  2416. }
  2417. .progress.active .progress-bar {
  2418. -webkit-animation: progress-bar-stripes 2s linear infinite;
  2419. -ms-animation: progress-bar-stripes 2s linear infinite;
  2420. -o-animation: progress-bar-stripes 2s linear infinite;
  2421. animation: progress-bar-stripes 2s linear infinite;
  2422. }
  2423. .progress-bar-success {
  2424. background-color: #2ac25f;
  2425. }
  2426. .progress-striped .progress-bar-success {
  2427. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent));
  2428. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2429. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2430. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2431. }
  2432. .progress-bar-info {
  2433. background-color: #00c3b6;
  2434. }
  2435. .progress-striped .progress-bar-info {
  2436. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent));
  2437. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2438. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2439. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2440. }
  2441. .progress-bar-warning {
  2442. background-color: #f39c11;
  2443. }
  2444. .progress-striped .progress-bar-warning {
  2445. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent));
  2446. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2447. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2448. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2449. }
  2450. .progress-bar-danger {
  2451. background-color: #ee4e2f;
  2452. }
  2453. .progress-striped .progress-bar-danger {
  2454. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent));
  2455. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2456. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2457. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  2458. }
  2459. .img-responsive {
  2460. display: block;
  2461. max-width: 100%;
  2462. height: auto;
  2463. }
  2464. .img-rounded {
  2465. border-radius: 0;
  2466. }
  2467. .img-thumbnail {
  2468. display: inline-block;
  2469. max-width: 100%;
  2470. height: auto;
  2471. padding: 4px;
  2472. line-height: 1.53846154;
  2473. background-color: #fff;
  2474. border: 1px solid #ddd;
  2475. border-radius: 0;
  2476. -webkit-transition: all .2s ease-in-out;
  2477. -o-transition: all .2s ease-in-out;
  2478. transition: all .2s ease-in-out;
  2479. }
  2480. .img-circle {
  2481. border-radius: 50%;
  2482. }
  2483. hr {
  2484. margin-top: 20px;
  2485. margin-bottom: 20px;
  2486. border: 0;
  2487. border-top: 1px solid #e5e5e5;
  2488. }
  2489. .label {
  2490. display: inline;
  2491. padding: .2em .6em .3em;
  2492. font-size: 75%;
  2493. line-height: 1;
  2494. color: #fff;
  2495. text-align: center;
  2496. white-space: nowrap;
  2497. vertical-align: baseline;
  2498. background-color: #808080;
  2499. border-radius: .25em;
  2500. }
  2501. .label[href]:hover,
  2502. .label[href]:focus {
  2503. color: #fff;
  2504. background-color: #666;
  2505. }
  2506. .label.label-circle {
  2507. color: #808080;
  2508. background: none;
  2509. border: 1px solid #808080;
  2510. }
  2511. .label[href]:hover,
  2512. .label[href]:focus {
  2513. color: #fff;
  2514. text-decoration: none;
  2515. cursor: pointer;
  2516. }
  2517. .label:empty {
  2518. display: none;
  2519. }
  2520. .label-badge {
  2521. display: inline-block;
  2522. min-width: 10px;
  2523. padding: 5px 7px;
  2524. font-size: 12px;
  2525. line-height: 1;
  2526. border-radius: 12px;
  2527. }
  2528. .label-dot {
  2529. display: inline-block;
  2530. width: 10px;
  2531. height: 10px;
  2532. padding: 0;
  2533. line-height: 14px;
  2534. text-indent: -9999em;
  2535. border-radius: 5px;
  2536. }
  2537. .label-dot:empty {
  2538. display: inline-block;
  2539. }
  2540. .btn .label-badge {
  2541. position: relative;
  2542. top: -1px;
  2543. }
  2544. .nav > li > a > .label-badge,
  2545. .nav > li > a > .label-dot {
  2546. padding-top: 3px;
  2547. padding-bottom: 3px;
  2548. margin-left: 3px;
  2549. }
  2550. .label-primary {
  2551. background-color: #108bf1;
  2552. }
  2553. .label-primary[href]:hover,
  2554. .label-primary[href]:focus {
  2555. color: #fff;
  2556. background-color: #0b70c3;
  2557. }
  2558. .label-primary.label-circle {
  2559. color: #108bf1;
  2560. background: none;
  2561. border: 1px solid #108bf1;
  2562. }
  2563. .label-success {
  2564. background-color: #2ac25f;
  2565. }
  2566. .label-success[href]:hover,
  2567. .label-success[href]:focus {
  2568. color: #fff;
  2569. background-color: #21984a;
  2570. }
  2571. .label-success.label-circle {
  2572. color: #2ac25f;
  2573. background: none;
  2574. border: 1px solid #2ac25f;
  2575. }
  2576. .label-info {
  2577. background-color: #00c3b6;
  2578. }
  2579. .label-info[href]:hover,
  2580. .label-info[href]:focus {
  2581. color: #fff;
  2582. background-color: #009086;
  2583. }
  2584. .label-info.label-circle {
  2585. color: #00c3b6;
  2586. background: none;
  2587. border: 1px solid #00c3b6;
  2588. }
  2589. .label-warning {
  2590. background-color: #f39c11;
  2591. }
  2592. .label-warning[href]:hover,
  2593. .label-warning[href]:focus {
  2594. color: #fff;
  2595. background-color: #c77e0a;
  2596. }
  2597. .label-warning.label-circle {
  2598. color: #f39c11;
  2599. background: none;
  2600. border: 1px solid #f39c11;
  2601. }
  2602. .label-danger {
  2603. background-color: #ee4e2f;
  2604. }
  2605. .label-danger[href]:hover,
  2606. .label-danger[href]:focus {
  2607. color: #fff;
  2608. background-color: #d83212;
  2609. }
  2610. .label-danger.label-circle {
  2611. color: #ee4e2f;
  2612. background: none;
  2613. border: 1px solid #ee4e2f;
  2614. }
  2615. .btn-primary .label-badge,
  2616. .btn-primary .label-dot {
  2617. background-color: #70baf7;
  2618. }
  2619. .btn-success .label-badge,
  2620. .btn-success .label-dot {
  2621. background-color: #186e36;
  2622. }
  2623. .btn-info .label-badge,
  2624. .btn-info .label-dot {
  2625. background-color: #005d57;
  2626. }
  2627. .btn-danger .label-badge,
  2628. .btn-danger .label-dot {
  2629. background-color: #a9270e;
  2630. }
  2631. .btn-warning .label-badge,
  2632. .btn-warning .label-dot {
  2633. background-color: #965f08;
  2634. }
  2635. .breadcrumb {
  2636. padding: 8px 15px;
  2637. margin-bottom: 20px;
  2638. list-style: none;
  2639. border-radius: 0;
  2640. }
  2641. .breadcrumb > li {
  2642. display: inline-block;
  2643. }
  2644. .breadcrumb > li + li:before {
  2645. padding: 0 5px;
  2646. color: #ccc;
  2647. content: "/\00a0";
  2648. }
  2649. .breadcrumb > .active {
  2650. color: #ddd;
  2651. }
  2652. /*! | Font Awesome 3.2.1 | License: | - The Font Awesome font is licensed under SIL OFL 1.1 - | - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - | - Font Awesome documentation licensed under CC BY 3.0 - | "Font Awesome by Dave Gandy - http://fontawesome.io"
  2653. */
  2654. @font-face {
  2655. font-family: ZenIcon;
  2656. font-style: normal;
  2657. font-weight: normal;
  2658. src: url('../fonts/zenicon.eot?v=1.0.0');
  2659. src: url('../fonts/zenicon.eot?#iefix&v=1.0.0') format('embedded-opentype'), url('../fonts/zenicon.woff?v=1.0.0') format('woff'), url('../fonts/zenicon.ttf?v=1.0.0') format('truetype'), url('../fonts/zenicon.svg#regular?v=1.0.0') format('svg');
  2660. }
  2661. [class^="icon-"],
  2662. [class*=" icon-"] {
  2663. font-family: ZenIcon;
  2664. font-size: 14px;
  2665. font-style: normal;
  2666. font-weight: normal;
  2667. font-variant: normal;
  2668. line-height: 1;
  2669. text-transform: none;
  2670. speak: none;
  2671. -webkit-font-smoothing: antialiased;
  2672. -moz-osx-font-smoothing: grayscale;
  2673. }
  2674. .icon-lg:before,
  2675. .icon-large:before {
  2676. font-size: 1.33333333em;
  2677. vertical-align: -10%;
  2678. }
  2679. a [class^="icon-"],
  2680. a [class*=" icon-"] {
  2681. display: inline;
  2682. }
  2683. .icon-2x {
  2684. font-size: 28px;
  2685. }
  2686. .icon-3x {
  2687. font-size: 42px;
  2688. }
  2689. .icon-4x {
  2690. font-size: 56px;
  2691. }
  2692. .icon-5x {
  2693. font-size: 70px;
  2694. }
  2695. .icon-white,
  2696. .nav-pills > .active > a > [class^="icon-"],
  2697. .nav-pills > .active > a > [class*=" icon-"],
  2698. .nav-list > .active > a > [class^="icon-"],
  2699. .nav-list > .active > a > [class*=" icon-"],
  2700. .navbar-inverse .nav > .active > a > [class^="icon-"],
  2701. .navbar-inverse .nav > .active > a > [class*=" icon-"],
  2702. .dropdown-menu > li > a:hover > [class^="icon-"],
  2703. .dropdown-menu > li > a:hover > [class*=" icon-"],
  2704. .dropdown-menu > .active > a > [class^="icon-"],
  2705. .dropdown-menu > .active > a > [class*=" icon-"],
  2706. .dropdown-submenu:hover > a > [class^="icon-"],
  2707. .dropdown-submenu:hover > a > [class*=" icon-"] {
  2708. background-image: none;
  2709. }
  2710. .icon-spin {
  2711. display: inline-block;
  2712. -webkit-animation: spin 2s infinite linear;
  2713. -o-animation: spin 2s infinite linear;
  2714. animation: spin 2s infinite linear;
  2715. }
  2716. a .icon-spin {
  2717. display: inline-block;
  2718. text-decoration: none;
  2719. }
  2720. @-webkit-keyframes spin {
  2721. 0% {
  2722. -webkit-transform: rotate(0deg);
  2723. }
  2724. 100% {
  2725. -webkit-transform: rotate(359deg);
  2726. }
  2727. }
  2728. @-o-keyframes spin {
  2729. 0% {
  2730. -o-transform: rotate(0deg);
  2731. }
  2732. 100% {
  2733. -o-transform: rotate(359deg);
  2734. }
  2735. }
  2736. @-ms-keyframes spin {
  2737. 0% {
  2738. -ms-transform: rotate(0deg);
  2739. }
  2740. 100% {
  2741. -ms-transform: rotate(359deg);
  2742. }
  2743. }
  2744. @keyframes spin {
  2745. 0% {
  2746. -webkit-transform: rotate(0deg);
  2747. -o-transform: rotate(0deg);
  2748. transform: rotate(0deg);
  2749. }
  2750. 100% {
  2751. -webkit-transform: rotate(359deg);
  2752. -o-transform: rotate(359deg);
  2753. transform: rotate(359deg);
  2754. }
  2755. }
  2756. .icon-rotate-90:before {
  2757. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  2758. -webkit-transform: rotate(90deg);
  2759. -ms-transform: rotate(90deg);
  2760. -o-transform: rotate(90deg);
  2761. transform: rotate(90deg);
  2762. }
  2763. .icon-rotate-180:before {
  2764. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  2765. -webkit-transform: rotate(180deg);
  2766. -ms-transform: rotate(180deg);
  2767. -o-transform: rotate(180deg);
  2768. transform: rotate(180deg);
  2769. }
  2770. .icon-rotate-270:before {
  2771. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  2772. -webkit-transform: rotate(270deg);
  2773. -ms-transform: rotate(270deg);
  2774. -o-transform: rotate(270deg);
  2775. transform: rotate(270deg);
  2776. }
  2777. .icon-flip-horizontal:before {
  2778. -webkit-transform: scale(-1, 1);
  2779. -ms-transform: scale(-1, 1);
  2780. -o-transform: scale(-1, 1);
  2781. transform: scale(-1, 1);
  2782. }
  2783. .icon-flip-vertical:before {
  2784. -webkit-transform: scale(1, -1);
  2785. -ms-transform: scale(1, -1);
  2786. -o-transform: scale(1, -1);
  2787. transform: scale(1, -1);
  2788. }
  2789. a .icon-rotate-90:before,
  2790. a .icon-rotate-180:before,
  2791. a .icon-rotate-270:before,
  2792. a .icon-flip-horizontal:before,
  2793. a .icon-flip-vertical:before {
  2794. display: inline-block;
  2795. }
  2796. .icon-music:before {
  2797. content: "\e602";
  2798. }
  2799. .icon-search:before {
  2800. content: "\e603";
  2801. }
  2802. .icon-envelope:before {
  2803. content: "\e604";
  2804. }
  2805. .icon-heart:before {
  2806. content: "\e605";
  2807. }
  2808. .icon-star:before {
  2809. content: "\e606";
  2810. }
  2811. .icon-star-empty:before {
  2812. content: "\e607";
  2813. }
  2814. .icon-user:before {
  2815. content: "\e608";
  2816. }
  2817. .icon-film:before {
  2818. content: "\e609";
  2819. }
  2820. .icon-th-large:before {
  2821. content: "\e60a";
  2822. }
  2823. .icon-th:before {
  2824. content: "\e60b";
  2825. }
  2826. .icon-th-list:before {
  2827. content: "\e60c";
  2828. }
  2829. .icon-ok:before {
  2830. content: "\e60d";
  2831. }
  2832. .icon-remove:before {
  2833. content: "\d7";
  2834. }
  2835. .icon-zoom-in:before {
  2836. content: "\e60f";
  2837. }
  2838. .icon-zoom-out:before {
  2839. content: "\e610";
  2840. }
  2841. .icon-off:before {
  2842. content: "\e611";
  2843. }
  2844. .icon-cog:before {
  2845. content: "\e613";
  2846. }
  2847. .icon-trash:before {
  2848. content: "\e614";
  2849. }
  2850. .icon-home:before {
  2851. content: "\e615";
  2852. }
  2853. .icon-file:before {
  2854. content: "\e616";
  2855. }
  2856. .icon-time:before {
  2857. content: "\e617";
  2858. }
  2859. .icon-download-alt:before {
  2860. content: "\e618";
  2861. }
  2862. .icon-download:before {
  2863. content: "\e619";
  2864. }
  2865. .icon-upload:before {
  2866. content: "\e61a";
  2867. }
  2868. .icon-inbox:before {
  2869. content: "\e61b";
  2870. }
  2871. .icon-play-circle:before {
  2872. content: "\e61c";
  2873. }
  2874. .icon-repeat:before {
  2875. content: "\e61d";
  2876. }
  2877. .icon-refresh:before {
  2878. content: "\e61e";
  2879. }
  2880. .icon-list-alt:before {
  2881. content: "\e61f";
  2882. }
  2883. .icon-lock:before {
  2884. content: "\e620";
  2885. }
  2886. .icon-flag:before {
  2887. content: "\e621";
  2888. }
  2889. .icon-headphones:before {
  2890. content: "\e622";
  2891. }
  2892. .icon-volume-off:before {
  2893. content: "\e623";
  2894. }
  2895. .icon-volume-up:before {
  2896. content: "\e625";
  2897. }
  2898. .icon-qrcode:before {
  2899. content: "\e626";
  2900. }
  2901. .icon-barcode:before {
  2902. content: "\e627";
  2903. }
  2904. .icon-tag:before {
  2905. content: "\e628";
  2906. }
  2907. .icon-tags:before {
  2908. content: "\e629";
  2909. }
  2910. .icon-book:before {
  2911. content: "\e62a";
  2912. }
  2913. .icon-bookmark:before {
  2914. content: "\e62b";
  2915. }
  2916. .icon-print:before {
  2917. content: "\e62c";
  2918. }
  2919. .icon-camera:before {
  2920. content: "\e62d";
  2921. }
  2922. .icon-font:before {
  2923. content: "\e62e";
  2924. }
  2925. .icon-bold:before {
  2926. content: "\e62f";
  2927. }
  2928. .icon-align-justify:before {
  2929. content: "\e636";
  2930. }
  2931. .icon-list:before {
  2932. content: "\e637";
  2933. }
  2934. .icon-picture:before {
  2935. content: "\e63b";
  2936. }
  2937. .icon-pencil:before {
  2938. content: "\e63c";
  2939. }
  2940. .icon-map-marker:before {
  2941. content: "\e63d";
  2942. }
  2943. .icon-adjust:before {
  2944. content: "\e63e";
  2945. }
  2946. .icon-tint:before {
  2947. content: "\e63f";
  2948. }
  2949. .icon-edit:before {
  2950. content: "\e640";
  2951. }
  2952. .icon-share:before {
  2953. content: "\e641";
  2954. }
  2955. .icon-check:before {
  2956. content: "\e642";
  2957. }
  2958. .icon-move:before {
  2959. content: "\e643";
  2960. }
  2961. .icon-step-backward:before {
  2962. content: "\e644";
  2963. }
  2964. .icon-fast-backward:before {
  2965. content: "\e645";
  2966. }
  2967. .icon-backward:before {
  2968. content: "\e646";
  2969. }
  2970. .icon-play:before {
  2971. content: "\e647";
  2972. }
  2973. .icon-pause:before {
  2974. content: "\e648";
  2975. }
  2976. .icon-stop:before {
  2977. content: "\e649";
  2978. }
  2979. .icon-forward:before {
  2980. content: "\e64a";
  2981. }
  2982. .icon-fast-forward:before {
  2983. content: "\e64b";
  2984. }
  2985. .icon-step-forward:before {
  2986. content: "\e64c";
  2987. }
  2988. .icon-eject:before {
  2989. content: "\e64d";
  2990. }
  2991. .icon-chevron-left:before {
  2992. content: "\e64e";
  2993. }
  2994. .icon-chevron-right:before {
  2995. content: "\e64f";
  2996. }
  2997. .icon-plus-sign:before {
  2998. content: "\e650";
  2999. }
  3000. .icon-minus-sign:before {
  3001. content: "\e651";
  3002. }
  3003. .icon-remove-sign:before {
  3004. content: "\e652";
  3005. }
  3006. .icon-ok-sign:before {
  3007. content: "\e653";
  3008. }
  3009. .icon-question-sign:before {
  3010. content: "\e654";
  3011. }
  3012. .icon-info-sign:before {
  3013. content: "\e655";
  3014. }
  3015. .icon-remove-circle:before {
  3016. content: "\e657";
  3017. }
  3018. .icon-ok-circle:before {
  3019. content: "\e658";
  3020. }
  3021. .icon-ban-circle:before {
  3022. content: "\e659";
  3023. }
  3024. .icon-arrow-left:before {
  3025. content: "\e65a";
  3026. }
  3027. .icon-arrow-right:before {
  3028. content: "\e65b";
  3029. }
  3030. .icon-arrow-up:before {
  3031. content: "\e65c";
  3032. }
  3033. .icon-arrow-down:before {
  3034. content: "\e65d";
  3035. }
  3036. .icon-share-alt:before {
  3037. content: "\e65e";
  3038. }
  3039. .icon-resize-full:before {
  3040. content: "\e65f";
  3041. }
  3042. .icon-resize-small:before {
  3043. content: "\e660";
  3044. }
  3045. .icon-plus:before {
  3046. content: "\e661";
  3047. }
  3048. .icon-minus:before {
  3049. content: "\e662";
  3050. }
  3051. .icon-asterisk:before {
  3052. content: "\e663";
  3053. }
  3054. .icon-exclamation-sign:before {
  3055. content: "\e664";
  3056. }
  3057. .icon-gift:before {
  3058. content: "\e665";
  3059. }
  3060. .icon-leaf:before {
  3061. content: "\e666";
  3062. }
  3063. .icon-eye-open:before {
  3064. content: "\e668";
  3065. }
  3066. .icon-eye-close:before {
  3067. content: "\e669";
  3068. }
  3069. .icon-warning-sign:before {
  3070. content: "\e66a";
  3071. }
  3072. .icon-plane:before {
  3073. content: "\e66b";
  3074. }
  3075. .icon-calendar:before {
  3076. content: "\e66c";
  3077. }
  3078. .icon-random:before {
  3079. content: "\e66d";
  3080. }
  3081. .icon-comment:before {
  3082. content: "\e66e";
  3083. }
  3084. .icon-chevron-up:before {
  3085. content: "\e670";
  3086. }
  3087. .icon-chevron-down:before {
  3088. content: "\e671";
  3089. }
  3090. .icon-shopping-cart:before {
  3091. content: "\e673";
  3092. }
  3093. .icon-folder-close:before {
  3094. content: "\e674";
  3095. }
  3096. .icon-folder-open:before {
  3097. content: "\e675";
  3098. }
  3099. .icon-resize-vertical:before {
  3100. content: "\e676";
  3101. }
  3102. .icon-resize-horizontal:before {
  3103. content: "\e677";
  3104. }
  3105. .icon-bar-chart:before {
  3106. content: "\e678";
  3107. }
  3108. .icon-camera-retro:before {
  3109. content: "\e679";
  3110. }
  3111. .icon-key:before {
  3112. content: "\e67a";
  3113. }
  3114. .icon-cogs:before {
  3115. content: "\e67b";
  3116. }
  3117. .icon-comments:before {
  3118. content: "\e67c";
  3119. }
  3120. .icon-thumbs-up:before {
  3121. content: "\e67d";
  3122. }
  3123. .icon-thumbs-down:before {
  3124. content: "\e67e";
  3125. }
  3126. .icon-star-half:before {
  3127. content: "\e67f";
  3128. }
  3129. .icon-heart-empty:before {
  3130. content: "\e680";
  3131. }
  3132. .icon-signout:before {
  3133. content: "\e681";
  3134. }
  3135. .icon-pushpin:before {
  3136. content: "\e683";
  3137. }
  3138. .icon-external-link:before {
  3139. content: "\e684";
  3140. }
  3141. .icon-signin:before {
  3142. content: "\e685";
  3143. }
  3144. .icon-trophy:before {
  3145. content: "\e686";
  3146. }
  3147. .icon-upload-alt:before {
  3148. content: "\e688";
  3149. }
  3150. .icon-lemon:before {
  3151. content: "\e689";
  3152. }
  3153. .icon-phone:before {
  3154. content: "\e68a";
  3155. }
  3156. .icon-check-empty:before {
  3157. content: "\e68b";
  3158. }
  3159. .icon-bookmark-empty:before {
  3160. content: "\e68c";
  3161. }
  3162. .icon-phone-sign:before {
  3163. content: "\e68d";
  3164. }
  3165. .icon-credit:before {
  3166. content: "\e690";
  3167. }
  3168. .icon-rss:before {
  3169. content: "\e691";
  3170. }
  3171. .icon-hdd:before {
  3172. content: "\e692";
  3173. }
  3174. .icon-bullhorn:before {
  3175. content: "\e693";
  3176. }
  3177. .icon-bell:before {
  3178. content: "\e694";
  3179. }
  3180. .icon-certificate:before {
  3181. content: "\e695";
  3182. }
  3183. .icon-hand-right:before {
  3184. content: "\e696";
  3185. }
  3186. .icon-hand-left:before {
  3187. content: "\e697";
  3188. }
  3189. .icon-hand-up:before {
  3190. content: "\e698";
  3191. }
  3192. .icon-hand-down:before {
  3193. content: "\e699";
  3194. }
  3195. .icon-circle-arrow-left:before {
  3196. content: "\e69a";
  3197. }
  3198. .icon-circle-arrow-right:before {
  3199. content: "\e69b";
  3200. }
  3201. .icon-circle-arrow-up:before {
  3202. content: "\e69c";
  3203. }
  3204. .icon-circle-arrow-down:before {
  3205. content: "\e69d";
  3206. }
  3207. .icon-globe:before {
  3208. content: "\e69e";
  3209. }
  3210. .icon-wrench:before {
  3211. content: "\e69f";
  3212. }
  3213. .icon-tasks:before {
  3214. content: "\e6a0";
  3215. }
  3216. .icon-filter:before {
  3217. content: "\e6a1";
  3218. }
  3219. .icon-fullscreen:before {
  3220. content: "\e6a3";
  3221. }
  3222. .icon-group:before {
  3223. content: "\e6a4";
  3224. }
  3225. .icon-link:before {
  3226. content: "\e6a5";
  3227. }
  3228. .icon-cloud:before {
  3229. content: "\e6a6";
  3230. }
  3231. .icon-beaker:before {
  3232. content: "\e6a7";
  3233. }
  3234. .icon-cut:before {
  3235. content: "\e6a8";
  3236. }
  3237. .icon-copy:before {
  3238. content: "\e6a9";
  3239. }
  3240. .icon-paper-clip:before {
  3241. content: "\e6aa";
  3242. }
  3243. .icon-save:before {
  3244. content: "\e6ab";
  3245. }
  3246. .icon-sign-blank:before {
  3247. content: "\e6ac";
  3248. }
  3249. .icon-reorder:before {
  3250. content: "\e6ad";
  3251. }
  3252. .icon-list-ul:before {
  3253. content: "\e6ae";
  3254. }
  3255. .icon-list-ol:before {
  3256. content: "\e6af";
  3257. }
  3258. .icon-table:before {
  3259. content: "\e6b2";
  3260. }
  3261. .icon-magic:before {
  3262. content: "\e6b3";
  3263. }
  3264. .icon-caret-down:before {
  3265. content: "\e6b8";
  3266. }
  3267. .icon-caret-up:before {
  3268. content: "\e6b9";
  3269. }
  3270. .icon-caret-left:before {
  3271. content: "\e6ba";
  3272. }
  3273. .icon-caret-right:before {
  3274. content: "\e6bb";
  3275. }
  3276. .icon-columns:before {
  3277. content: "\e6bc";
  3278. }
  3279. .icon-sort:before {
  3280. content: "\e6bd";
  3281. }
  3282. .icon-sort-down:before {
  3283. content: "\e6be";
  3284. }
  3285. .icon-sort-up:before {
  3286. content: "\e6bf";
  3287. }
  3288. .icon-envelope-alt:before {
  3289. content: "\e6c0";
  3290. }
  3291. .icon-undo:before {
  3292. content: "\e6c1";
  3293. }
  3294. .icon-dashboard:before {
  3295. content: "\e6c3";
  3296. }
  3297. .icon-comment-alt:before {
  3298. content: "\e6c4";
  3299. }
  3300. .icon-comments-alt:before {
  3301. content: "\e6c5";
  3302. }
  3303. .icon-bolt:before {
  3304. content: "\e6c6";
  3305. }
  3306. .icon-sitemap:before {
  3307. content: "\e6c7";
  3308. }
  3309. .icon-umbrella:before {
  3310. content: "\e6c8";
  3311. }
  3312. .icon-paste:before {
  3313. content: "\e6c9";
  3314. }
  3315. .icon-lightbulb:before {
  3316. content: "\e6ca";
  3317. }
  3318. .icon-exchange:before {
  3319. content: "\e6cb";
  3320. }
  3321. .icon-cloud-download:before {
  3322. content: "\e6cc";
  3323. }
  3324. .icon-cloud-upload:before {
  3325. content: "\e6cd";
  3326. }
  3327. .icon-bell-alt:before {
  3328. content: "\e6d1";
  3329. }
  3330. .icon-coffee:before {
  3331. content: "\e6d2";
  3332. }
  3333. .icon-file-text-alt:before {
  3334. content: "\e6d4";
  3335. }
  3336. .icon-building:before {
  3337. content: "\e6d5";
  3338. }
  3339. .icon-double-angle-left:before {
  3340. content: "\e6dc";
  3341. }
  3342. .icon-double-angle-right:before {
  3343. content: "\e6dd";
  3344. }
  3345. .icon-double-angle-up:before {
  3346. content: "\e6de";
  3347. }
  3348. .icon-double-angle-down:before {
  3349. content: "\e6df";
  3350. }
  3351. .icon-angle-left:before {
  3352. content: "\e6e0";
  3353. }
  3354. .icon-angle-right:before {
  3355. content: "\e6e1";
  3356. }
  3357. .icon-angle-up:before {
  3358. content: "\e6e2";
  3359. }
  3360. .icon-angle-down:before {
  3361. content: "\e6e3";
  3362. }
  3363. .icon-desktop:before {
  3364. content: "\e6e4";
  3365. }
  3366. .icon-laptop:before {
  3367. content: "\e6e5";
  3368. }
  3369. .icon-tablet:before {
  3370. content: "\e6e6";
  3371. }
  3372. .icon-mobile:before {
  3373. content: "\e6e7";
  3374. }
  3375. .icon-mobile-phone:before {
  3376. content: "\e6e7";
  3377. }
  3378. .icon-circle-blank:before {
  3379. content: "\e6e8";
  3380. }
  3381. .icon-quote-left:before {
  3382. content: "\e6e9";
  3383. }
  3384. .icon-quote-right:before {
  3385. content: "\e6ea";
  3386. }
  3387. .icon-spinner:before {
  3388. content: "\e6eb";
  3389. }
  3390. .icon-circle:before {
  3391. content: "\e6ec";
  3392. }
  3393. .icon-reply:before {
  3394. content: "\e6ed";
  3395. }
  3396. .icon-folder-close-alt:before {
  3397. content: "\e6ef";
  3398. }
  3399. .icon-folder-open-alt:before {
  3400. content: "\e6f0";
  3401. }
  3402. .icon-expand-alt:before {
  3403. content: "\e6f1";
  3404. }
  3405. .icon-collapse-alt:before {
  3406. content: "\e6f2";
  3407. }
  3408. .icon-smile:before {
  3409. content: "\e6f3";
  3410. }
  3411. .icon-frown:before {
  3412. content: "\e6f4";
  3413. }
  3414. .icon-meh:before {
  3415. content: "\e6f5";
  3416. }
  3417. .icon-gamepad:before {
  3418. content: "\e6f6";
  3419. }
  3420. .icon-keyboard:before {
  3421. content: "\e6f7";
  3422. }
  3423. .icon-flag-alt:before {
  3424. content: "\e6f8";
  3425. }
  3426. .icon-flag-checkered:before {
  3427. content: "\e6f9";
  3428. }
  3429. .icon-terminal:before {
  3430. content: "\e6fa";
  3431. }
  3432. .icon-code:before {
  3433. content: "\e6fb";
  3434. }
  3435. .icon-reply-all:before {
  3436. content: "\e6fc";
  3437. }
  3438. .icon-star-half-full:before {
  3439. content: "\e6fd";
  3440. }
  3441. .icon-location-arrow:before {
  3442. content: "\e6fe";
  3443. }
  3444. .icon-crop:before {
  3445. content: "\e6ff";
  3446. }
  3447. .icon-code-fork:before {
  3448. content: "\e700";
  3449. }
  3450. .icon-unlink:before {
  3451. content: "\e701";
  3452. }
  3453. .icon-question:before {
  3454. content: "\e702";
  3455. }
  3456. .icon-info:before {
  3457. content: "\e703";
  3458. }
  3459. .icon-shield:before {
  3460. content: "\e70b";
  3461. }
  3462. .icon-calendar-empty:before {
  3463. content: "\e70c";
  3464. }
  3465. .icon-rocket:before {
  3466. content: "\e70e";
  3467. }
  3468. .icon-chevron-sign-left:before {
  3469. content: "\e70f";
  3470. }
  3471. .icon-chevron-sign-right:before {
  3472. content: "\e710";
  3473. }
  3474. .icon-chevron-sign-up:before {
  3475. content: "\e711";
  3476. }
  3477. .icon-chevron-sign-down:before {
  3478. content: "\e712";
  3479. }
  3480. .icon-html5:before {
  3481. content: "\e713";
  3482. }
  3483. .icon-anchor:before {
  3484. content: "\e714";
  3485. }
  3486. .icon-unlock-alt:before {
  3487. content: "\e715";
  3488. }
  3489. .icon-bullseye:before {
  3490. content: "\e716";
  3491. }
  3492. .icon-ellipsis-horizontal:before {
  3493. content: "\e717";
  3494. }
  3495. .icon-ellipsis-vertical:before {
  3496. content: "\e718";
  3497. }
  3498. .icon-rss-sign:before {
  3499. content: "\e719";
  3500. }
  3501. .icon-play-sign:before {
  3502. content: "\e71a";
  3503. }
  3504. .icon-minus-sign-alt:before {
  3505. content: "\e71c";
  3506. }
  3507. .icon-check-minus:before {
  3508. content: "\e71d";
  3509. }
  3510. .icon-level-up:before {
  3511. content: "\e71e";
  3512. }
  3513. .icon-level-down:before {
  3514. content: "\e71f";
  3515. }
  3516. .icon-check-sign:before {
  3517. content: "\e720";
  3518. }
  3519. .icon-edit-sign:before {
  3520. content: "\e721";
  3521. }
  3522. .icon-external-link-sign:before {
  3523. content: "\e722";
  3524. }
  3525. .icon-share-sign:before {
  3526. content: "\e723";
  3527. }
  3528. .icon-compass:before {
  3529. content: "\e724";
  3530. }
  3531. .icon-collapse:before {
  3532. content: "\e725";
  3533. }
  3534. .icon-collapse-top:before {
  3535. content: "\e726";
  3536. }
  3537. .icon-expand:before {
  3538. content: "\e727";
  3539. }
  3540. .icon-dollar:before {
  3541. content: "\e728";
  3542. }
  3543. .icon-yen:before {
  3544. content: "\e729";
  3545. }
  3546. .icon-renminbi:before {
  3547. content: "\e72a";
  3548. }
  3549. .icon-file2:before {
  3550. content: "\e72b";
  3551. }
  3552. .icon-file-text:before {
  3553. content: "\e72c";
  3554. }
  3555. .icon-sort-by-alphabet:before {
  3556. content: "\e72d";
  3557. }
  3558. .icon-sort-by-alphabet-alt:before {
  3559. content: "\e72e";
  3560. }
  3561. .icon-sort-by-attributes:before {
  3562. content: "\e72f";
  3563. }
  3564. .icon-sort-by-attributes-alt:before {
  3565. content: "\e730";
  3566. }
  3567. .icon-sort-by-order:before {
  3568. content: "\e731";
  3569. }
  3570. .icon-sort-by-order-alt:before {
  3571. content: "\e732";
  3572. }
  3573. .icon-thumbs-up2:before {
  3574. content: "\e733";
  3575. }
  3576. .icon-thumbs-down2:before {
  3577. content: "\e734";
  3578. }
  3579. .icon-long-arrow-down:before {
  3580. content: "\e736";
  3581. }
  3582. .icon-long-arrow-up:before {
  3583. content: "\e737";
  3584. }
  3585. .icon-long-arrow-left:before {
  3586. content: "\e738";
  3587. }
  3588. .icon-long-arrow-right:before {
  3589. content: "\e739";
  3590. }
  3591. .icon-apple:before {
  3592. content: "\e73a";
  3593. }
  3594. .icon-windows:before {
  3595. content: "\e73b";
  3596. }
  3597. .icon-android:before {
  3598. content: "\e73c";
  3599. }
  3600. .icon-linux:before {
  3601. content: "\e73d";
  3602. }
  3603. .icon-sun:before {
  3604. content: "\e742";
  3605. }
  3606. .icon-moon:before {
  3607. content: "\e743";
  3608. }
  3609. .icon-archive:before {
  3610. content: "\e744";
  3611. }
  3612. .icon-bug:before {
  3613. content: "\e745";
  3614. }
  3615. .icon-weibo:before {
  3616. content: "\e746";
  3617. }
  3618. .icon-renren:before {
  3619. content: "\e747";
  3620. }
  3621. .icon-qq:before {
  3622. content: "\e600";
  3623. }
  3624. .icon-chrome:before {
  3625. content: "\e76c";
  3626. }
  3627. .icon-firefox:before {
  3628. content: "\e76d";
  3629. }
  3630. .icon-ie:before {
  3631. content: "\e76e";
  3632. }
  3633. .icon-opera:before {
  3634. content: "\e76f";
  3635. }
  3636. .icon-safari:before {
  3637. content: "\e770";
  3638. }
  3639. .icon-node:before {
  3640. content: "\e76a";
  3641. }
  3642. .icon-layout:before {
  3643. content: "\e768";
  3644. }
  3645. .icon-usecase:before {
  3646. content: "\e74a";
  3647. }
  3648. .icon-stack:before {
  3649. content: "\e769";
  3650. }
  3651. .icon-branch:before {
  3652. content: "\e74b";
  3653. }
  3654. .icon-chat:before {
  3655. content: "\e74c";
  3656. }
  3657. .icon-comment-line:before {
  3658. content: "\e74f";
  3659. }
  3660. .icon-chat-dot:before {
  3661. content: "\e750";
  3662. }
  3663. .icon-cube:before {
  3664. content: "\e751";
  3665. }
  3666. .icon-align-left:before {
  3667. content: "\e633";
  3668. }
  3669. .close {
  3670. float: right;
  3671. font-size: 19.5px;
  3672. font-weight: bold;
  3673. line-height: 1;
  3674. color: #000;
  3675. text-shadow: 0 1px 0 #fff;
  3676. filter: alpha(opacity=20);
  3677. opacity: .2;
  3678. }
  3679. .close:hover,
  3680. .close:focus {
  3681. color: #000;
  3682. text-decoration: none;
  3683. cursor: pointer;
  3684. filter: alpha(opacity=50);
  3685. opacity: .5;
  3686. }
  3687. button.close {
  3688. -webkit-appearance: none;
  3689. padding: 0;
  3690. cursor: pointer;
  3691. background: transparent;
  3692. border: 0;
  3693. }
  3694. ::-webkit-scrollbar {
  3695. width: 11px;
  3696. height: 11px;
  3697. }
  3698. ::-webkit-scrollbar-button {
  3699. width: 0;
  3700. height: 0;
  3701. }
  3702. ::-webkit-scrollbar-button:start:decrement,
  3703. ::-webkit-scrollbar-button:end:increment {
  3704. display: block;
  3705. }
  3706. ::-webkit-scrollbar-button:vertical:start:increment,
  3707. ::-webkit-scrollbar-button:vertical:end:decrement {
  3708. display: none;
  3709. }
  3710. ::-webkit-scrollbar-track:vertical,
  3711. ::-webkit-scrollbar-track:horizontal,
  3712. ::-webkit-scrollbar-thumb:vertical,
  3713. ::-webkit-scrollbar-thumb:horizontal,
  3714. ::-webkit-scrollbar-track:vertical,
  3715. ::-webkit-scrollbar-track:horizontal,
  3716. ::-webkit-scrollbar-thumb:vertical,
  3717. ::-webkit-scrollbar-thumb:horizontal {
  3718. border-color: transparent;
  3719. border-style: solid;
  3720. }
  3721. ::-webkit-scrollbar-track:vertical::-webkit-scrollbar-track:horizontal {
  3722. background-color: #fff;
  3723. -webkit-background-clip: padding-box;
  3724. background-clip: padding-box;
  3725. }
  3726. ::-webkit-scrollbar-thumb {
  3727. min-height: 28px;
  3728. padding-top: 100;
  3729. background-color: rgba(0, 0, 0, .2);
  3730. -webkit-background-clip: padding-box;
  3731. background-clip: padding-box;
  3732. -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1), inset 0 -1px 0 rgba(0, 0, 0, .07);
  3733. }
  3734. ::-webkit-scrollbar-thumb:hover {
  3735. background-color: rgba(0, 0, 0, .4);
  3736. -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .25);
  3737. }
  3738. ::-webkit-scrollbar-thumb:active {
  3739. background-color: rgba(0, 0, 0, .5);
  3740. -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .35);
  3741. }
  3742. ::-webkit-scrollbar-track:vertical,
  3743. ::-webkit-scrollbar-track:horizontal,
  3744. ::-webkit-scrollbar-thumb:vertical,
  3745. ::-webkit-scrollbar-thumb:horizontal {
  3746. border-width: 0;
  3747. }
  3748. ::-webkit-scrollbar-track:hover {
  3749. background-color: rgba(0, 0, 0, .05);
  3750. -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1);
  3751. }
  3752. ::-webkit-scrollbar-track:active {
  3753. background-color: rgba(0, 0, 0, .05);
  3754. -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .14), inset -1px -1px 0 rgba(0, 0, 0, .07);
  3755. }
  3756. table {
  3757. max-width: 100%;
  3758. background-color: transparent;
  3759. }
  3760. th {
  3761. text-align: left;
  3762. }
  3763. .table {
  3764. width: 100%;
  3765. margin-bottom: 20px;
  3766. }
  3767. .table th,
  3768. .table td {
  3769. padding: 8px;
  3770. line-height: 1.53846154;
  3771. vertical-align: top;
  3772. border-bottom: 1px solid #ddd;
  3773. -webkit-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  3774. -o-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  3775. transition: all .3s cubic-bezier(.175, .885, .32, 1);
  3776. }
  3777. .table > thead > tr > th {
  3778. vertical-align: bottom;
  3779. background-color: #f1f1f1;
  3780. border-bottom: 1px solid #ddd;
  3781. }
  3782. .table-fixed {
  3783. table-layout: fixed;
  3784. }
  3785. .table-fixed th,
  3786. .table-fixed td {
  3787. overflow: hidden;
  3788. white-space: nowrap;
  3789. }
  3790. .table-fixed tfoot > tr > th,
  3791. .table-fixed tfoot > tr > td,
  3792. .table-fixed th.nofixed,
  3793. .table-fixed td.nofixed {
  3794. overflow: visible;
  3795. }
  3796. .table-borderless th,
  3797. .table-borderless td {
  3798. border: none;
  3799. }
  3800. .table-condensed th,
  3801. .table-condensed td {
  3802. padding: 5px;
  3803. }
  3804. .table-bordered {
  3805. border: 1px solid #ddd;
  3806. }
  3807. .table-bordered th,
  3808. .table-bordered td {
  3809. border: 1px solid #ddd;
  3810. }
  3811. .table-striped > tbody > tr:nth-child(odd) > td,
  3812. .table-striped > tbody > tr:nth-child(odd) > th {
  3813. background-color: #f9f9f9;
  3814. }
  3815. .table-hover > tbody > tr:hover > td,
  3816. .table-hover > tbody > tr:hover > th {
  3817. background-color: #ebf5f9;
  3818. }
  3819. table col[class*="col-"] {
  3820. display: table-column;
  3821. float: none;
  3822. }
  3823. table td[class*="col-"],
  3824. table th[class*="col-"] {
  3825. display: table-cell;
  3826. float: none;
  3827. }
  3828. .table tr > td.active,
  3829. .table tr > th.active,
  3830. .table tr.active > td,
  3831. .table tr.active > th {
  3832. background-color: #ffebcc;
  3833. }
  3834. .table > thead > tr > td.success,
  3835. .table > tbody > tr > td.success,
  3836. .table > tfoot > tr > td.success,
  3837. .table > thead > tr > th.success,
  3838. .table > tbody > tr > th.success,
  3839. .table > tfoot > tr > th.success,
  3840. .table > thead > tr.success > td,
  3841. .table > tbody > tr.success > td,
  3842. .table > tfoot > tr.success > td,
  3843. .table > thead > tr.success > th,
  3844. .table > tbody > tr.success > th,
  3845. .table > tfoot > tr.success > th {
  3846. background-color: #e5ffee;
  3847. border-color: #ccffd5;
  3848. }
  3849. .table-hover > tbody > tr > td.success:hover,
  3850. .table-hover > tbody > tr > th.success:hover,
  3851. .table-hover > tbody > tr.success:hover > td,
  3852. .table-hover > tbody > tr.success:hover > th {
  3853. background-color: #ccffde;
  3854. border-color: #b2ffc1;
  3855. }
  3856. .table > thead > tr > td.danger,
  3857. .table > tbody > tr > td.danger,
  3858. .table > tfoot > tr > td.danger,
  3859. .table > thead > tr > th.danger,
  3860. .table > tbody > tr > th.danger,
  3861. .table > tfoot > tr > th.danger,
  3862. .table > thead > tr.danger > td,
  3863. .table > tbody > tr.danger > td,
  3864. .table > tfoot > tr.danger > td,
  3865. .table > thead > tr.danger > th,
  3866. .table > tbody > tr.danger > th,
  3867. .table > tfoot > tr.danger > th {
  3868. background-color: #ffeae5;
  3869. border-color: #fcc;
  3870. }
  3871. .table-hover > tbody > tr > td.danger:hover,
  3872. .table-hover > tbody > tr > th.danger:hover,
  3873. .table-hover > tbody > tr.danger:hover > td,
  3874. .table-hover > tbody > tr.danger:hover > th {
  3875. background-color: #ffd4cc;
  3876. border-color: #ffb2b2;
  3877. }
  3878. .table > thead > tr > td.warning,
  3879. .table > tbody > tr > td.warning,
  3880. .table > tfoot > tr > td.warning,
  3881. .table > thead > tr > th.warning,
  3882. .table > tbody > tr > th.warning,
  3883. .table > tfoot > tr > th.warning,
  3884. .table > thead > tr.warning > td,
  3885. .table > tbody > tr.warning > td,
  3886. .table > tfoot > tr.warning > td,
  3887. .table > thead > tr.warning > th,
  3888. .table > tbody > tr.warning > th,
  3889. .table > tfoot > tr.warning > th {
  3890. background-color: #fff5e5;
  3891. border-color: #ffe3cc;
  3892. }
  3893. .table-hover > tbody > tr > td.warning:hover,
  3894. .table-hover > tbody > tr > th.warning:hover,
  3895. .table-hover > tbody > tr.warning:hover > td,
  3896. .table-hover > tbody > tr.warning:hover > th {
  3897. background-color: #ffebcc;
  3898. border-color: #ffd5b2;
  3899. }
  3900. @media (max-width: 768px) {
  3901. .table-responsive {
  3902. width: 100%;
  3903. margin-bottom: 15px;
  3904. overflow-x: scroll;
  3905. overflow-y: hidden;
  3906. -webkit-overflow-scrolling: touch;
  3907. -ms-overflow-style: -ms-autohiding-scrollbar;
  3908. border: 1px solid #ddd;
  3909. }
  3910. .table-responsive > .table {
  3911. margin-bottom: 0;
  3912. }
  3913. .table-responsive > .table > thead > tr > th,
  3914. .table-responsive > .table > tbody > tr > th,
  3915. .table-responsive > .table > tfoot > tr > th,
  3916. .table-responsive > .table > thead > tr > td,
  3917. .table-responsive > .table > tbody > tr > td,
  3918. .table-responsive > .table > tfoot > tr > td {
  3919. white-space: nowrap;
  3920. }
  3921. .table-responsive > .table-bordered {
  3922. border: 0;
  3923. }
  3924. .table-responsive > .table-bordered > thead > tr > th:first-child,
  3925. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  3926. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  3927. .table-responsive > .table-bordered > thead > tr > td:first-child,
  3928. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  3929. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  3930. border-left: 0;
  3931. }
  3932. .table-responsive > .table-bordered > thead > tr > th:last-child,
  3933. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  3934. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  3935. .table-responsive > .table-bordered > thead > tr > td:last-child,
  3936. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  3937. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  3938. border-right: 0;
  3939. }
  3940. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  3941. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  3942. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  3943. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  3944. border-bottom: 0;
  3945. }
  3946. }
  3947. .list-group {
  3948. padding-left: 0;
  3949. margin-bottom: 20px;
  3950. }
  3951. .list-group-item {
  3952. position: relative;
  3953. display: block;
  3954. padding: 10px 15px;
  3955. margin-bottom: -1px;
  3956. background-color: #fff;
  3957. border: 1px solid #ddd;
  3958. }
  3959. .list-group-item:first-child {
  3960. border-top-left-radius: 0;
  3961. border-top-right-radius: 0;
  3962. }
  3963. .list-group-item:last-child {
  3964. margin-bottom: 0;
  3965. border-bottom-right-radius: 0;
  3966. border-bottom-left-radius: 0;
  3967. }
  3968. .list-group-item > .label-badge {
  3969. float: right;
  3970. }
  3971. .list-group-item > .label-badge + .label-badge {
  3972. margin-right: 5px;
  3973. }
  3974. a.list-group-item {
  3975. color: #555;
  3976. }
  3977. a.list-group-item .list-group-item-heading {
  3978. color: #333;
  3979. }
  3980. a.list-group-item:hover,
  3981. a.list-group-item:focus {
  3982. color: #353535;
  3983. text-decoration: none;
  3984. background-color: #ebf5f9;
  3985. }
  3986. .list-group-item.active,
  3987. .list-group-item.active:hover,
  3988. .list-group-item.active:focus {
  3989. z-index: 2;
  3990. color: #fff;
  3991. background-color: #108bf1;
  3992. border-color: #108bf1;
  3993. }
  3994. .list-group-item.active .list-group-item-heading,
  3995. .list-group-item.active:hover .list-group-item-heading,
  3996. .list-group-item.active:focus .list-group-item-heading {
  3997. color: inherit;
  3998. }
  3999. .list-group-item.active .list-group-item-text,
  4000. .list-group-item.active:hover .list-group-item-text,
  4001. .list-group-item.active:focus .list-group-item-text {
  4002. color: #e6e6e6;
  4003. }
  4004. .list-group-item-heading {
  4005. margin-top: 0;
  4006. margin-bottom: 5px;
  4007. color: #333;
  4008. }
  4009. .list-group-item-text {
  4010. margin-bottom: 0;
  4011. line-height: 1.3;
  4012. }
  4013. .panel {
  4014. margin-bottom: 20px;
  4015. background-color: #fff;
  4016. border: 1px solid transparent;
  4017. border-color: #ddd;
  4018. border-radius: 0;
  4019. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  4020. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  4021. }
  4022. .panel > .panel-heading {
  4023. color: #333;
  4024. background-color: #f5f5f5;
  4025. border-color: #ddd;
  4026. }
  4027. .panel > .panel-heading + .panel-collapse .panel-body {
  4028. border-top-color: #ddd;
  4029. }
  4030. .panel > .panel-footer + .panel-collapse .panel-body {
  4031. border-bottom-color: #ddd;
  4032. }
  4033. .panel-body {
  4034. padding: 15px;
  4035. }
  4036. .panel-body:before,
  4037. .panel-body:after {
  4038. /* 1 */
  4039. display: table;
  4040. content: " ";
  4041. /* 2 */
  4042. }
  4043. .panel-body:after {
  4044. clear: both;
  4045. }
  4046. .panel-body:before,
  4047. .panel-body:after {
  4048. /* 1 */
  4049. display: table;
  4050. content: " ";
  4051. /* 2 */
  4052. }
  4053. .panel-body:after {
  4054. clear: both;
  4055. }
  4056. .panel > .table {
  4057. margin-bottom: 0;
  4058. }
  4059. .panel > .panel-body + .table {
  4060. border-top: 1px solid #ddd;
  4061. }
  4062. .panel-heading {
  4063. padding: 8px 15px;
  4064. border-bottom: 1px solid transparent;
  4065. border-top-left-radius: -1px;
  4066. border-top-right-radius: -1px;
  4067. }
  4068. .panel-title {
  4069. margin-top: 0;
  4070. margin-bottom: 0;
  4071. font-size: 15px;
  4072. }
  4073. .panel-title > a {
  4074. color: inherit;
  4075. }
  4076. .panel-footer {
  4077. padding: 10px 15px;
  4078. background-color: #f5f5f5;
  4079. border-top: 1px solid #ddd;
  4080. border-bottom-right-radius: -1px;
  4081. border-bottom-left-radius: -1px;
  4082. }
  4083. .panel-primary {
  4084. border-color: #108bf1;
  4085. }
  4086. .panel-primary > .panel-heading {
  4087. color: #fff;
  4088. background-color: #108bf1;
  4089. border-color: #108bf1;
  4090. }
  4091. .panel-primary > .panel-heading + .panel-collapse .panel-body {
  4092. border-top-color: #108bf1;
  4093. }
  4094. .panel-primary > .panel-footer + .panel-collapse .panel-body {
  4095. border-bottom-color: #108bf1;
  4096. }
  4097. .panel-success {
  4098. border-color: #ccffd5;
  4099. }
  4100. .panel-success > .panel-heading {
  4101. color: #2ac25f;
  4102. background-color: #e5ffee;
  4103. border-color: #ccffd5;
  4104. }
  4105. .panel-success > .panel-heading + .panel-collapse .panel-body {
  4106. border-top-color: #ccffd5;
  4107. }
  4108. .panel-success > .panel-footer + .panel-collapse .panel-body {
  4109. border-bottom-color: #ccffd5;
  4110. }
  4111. .panel-warning {
  4112. border-color: #ffe3cc;
  4113. }
  4114. .panel-warning > .panel-heading {
  4115. color: #f39c11;
  4116. background-color: #fff5e5;
  4117. border-color: #ffe3cc;
  4118. }
  4119. .panel-warning > .panel-heading + .panel-collapse .panel-body {
  4120. border-top-color: #ffe3cc;
  4121. }
  4122. .panel-warning > .panel-footer + .panel-collapse .panel-body {
  4123. border-bottom-color: #ffe3cc;
  4124. }
  4125. .panel-danger {
  4126. border-color: #fcc;
  4127. }
  4128. .panel-danger > .panel-heading {
  4129. color: #ee4e2f;
  4130. background-color: #ffeae5;
  4131. border-color: #fcc;
  4132. }
  4133. .panel-danger > .panel-heading + .panel-collapse .panel-body {
  4134. border-top-color: #fcc;
  4135. }
  4136. .panel-danger > .panel-footer + .panel-collapse .panel-body {
  4137. border-bottom-color: #fcc;
  4138. }
  4139. .panel-info {
  4140. border-color: #c2fff1;
  4141. }
  4142. .panel-info > .panel-heading {
  4143. color: #00c3b6;
  4144. background-color: #e5fffd;
  4145. border-color: #c2fff1;
  4146. }
  4147. .panel-info > .panel-heading + .panel-collapse .panel-body {
  4148. border-top-color: #c2fff1;
  4149. }
  4150. .panel-info > .panel-footer + .panel-collapse .panel-body {
  4151. border-bottom-color: #c2fff1;
  4152. }
  4153. .panel-group .panel {
  4154. margin-bottom: 0;
  4155. overflow: hidden;
  4156. border-radius: 0;
  4157. }
  4158. .panel-group .panel + .panel {
  4159. margin-top: 5px;
  4160. }
  4161. .panel-group .panel-heading {
  4162. border-bottom: 0;
  4163. }
  4164. .panel-group .panel-heading + .panel-collapse .panel-body {
  4165. border-top: 1px solid #ddd;
  4166. }
  4167. .panel-group .panel-footer {
  4168. border-top: 0;
  4169. }
  4170. .panel-group .panel-footer + .panel-collapse .panel-body {
  4171. border-bottom: 1px solid #ddd;
  4172. }
  4173. .panel > .list-group {
  4174. margin-bottom: 0;
  4175. }
  4176. .panel > .list-group .list-group-item {
  4177. border-width: 1px 0;
  4178. }
  4179. .panel > .list-group .list-group-item:first-child {
  4180. border-top-left-radius: 0;
  4181. border-top-right-radius: 0;
  4182. }
  4183. .panel > .list-group .list-group-item:last-child {
  4184. border-bottom: 0;
  4185. }
  4186. .panel-heading + .list-group .list-group-item:first-child {
  4187. border-top-width: 0;
  4188. }
  4189. .alert {
  4190. padding: 15px;
  4191. margin-bottom: 20px;
  4192. color: #353535;
  4193. background-color: #f1f1f1;
  4194. border: 1px solid transparent;
  4195. border-color: #e4e4e4;
  4196. border-radius: 0;
  4197. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  4198. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  4199. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  4200. }
  4201. .alert hr {
  4202. border-top-color: #d7d7d7;
  4203. }
  4204. .alert .alert-link {
  4205. color: #1c1c1c;
  4206. }
  4207. .alert h4 {
  4208. margin-top: 0;
  4209. color: inherit;
  4210. }
  4211. .alert .alert-link {
  4212. font-weight: bold;
  4213. }
  4214. .alert > p,
  4215. .alert > ul {
  4216. margin-bottom: 0;
  4217. }
  4218. .alert > p + p {
  4219. margin-top: 5px;
  4220. }
  4221. .alert > [class*="icon-"] {
  4222. float: left;
  4223. margin-top: -5px;
  4224. font-size: 42px;
  4225. opacity: .6;
  4226. -webkit-transition: opacity .3s cubic-bezier(.175, .885, .32, 1);
  4227. -o-transition: opacity .3s cubic-bezier(.175, .885, .32, 1);
  4228. transition: opacity .3s cubic-bezier(.175, .885, .32, 1);
  4229. }
  4230. .alert > [class*="icon-"] + .content {
  4231. min-height: 30px;
  4232. margin-left: 50px;
  4233. }
  4234. .alert.with-icon {
  4235. display: table;
  4236. width: 100%;
  4237. }
  4238. .alert.with-icon > [class*="icon-"],
  4239. .alert.with-icon > [class*="icon-"] + .content {
  4240. display: table-cell;
  4241. float: none;
  4242. min-height: 0;
  4243. margin: 0;
  4244. vertical-align: middle;
  4245. }
  4246. .alert.with-icon > [class*="icon-"] {
  4247. width: 40px;
  4248. }
  4249. .alert.with-icon > [class*="icon-"] + .content {
  4250. padding-left: 1em;
  4251. }
  4252. .alert-block {
  4253. margin: 0;
  4254. border-radius: 0;
  4255. }
  4256. .alert-dismissable {
  4257. padding-right: 35px;
  4258. }
  4259. .alert-dismissable .close {
  4260. position: relative;
  4261. top: -2px;
  4262. right: -21px;
  4263. color: inherit;
  4264. }
  4265. .alert-success {
  4266. color: #2ac25f;
  4267. background-color: #e5ffee;
  4268. border-color: #ccffd5;
  4269. }
  4270. .alert-success hr {
  4271. border-top-color: #b2ffc1;
  4272. }
  4273. .alert-success .alert-link {
  4274. color: #21984a;
  4275. }
  4276. .alert-info {
  4277. color: #00c3b6;
  4278. background-color: #e5fffd;
  4279. border-color: #c2fff1;
  4280. }
  4281. .alert-info hr {
  4282. border-top-color: #a8ffeb;
  4283. }
  4284. .alert-info .alert-link {
  4285. color: #009086;
  4286. }
  4287. .alert-warning {
  4288. color: #f39c11;
  4289. background-color: #fff5e5;
  4290. border-color: #ffe3cc;
  4291. }
  4292. .alert-warning hr {
  4293. border-top-color: #ffd5b2;
  4294. }
  4295. .alert-warning .alert-link {
  4296. color: #c77e0a;
  4297. }
  4298. .alert-danger {
  4299. color: #ee4e2f;
  4300. background-color: #ffeae5;
  4301. border-color: #fcc;
  4302. }
  4303. .alert-danger hr {
  4304. border-top-color: #ffb2b2;
  4305. }
  4306. .alert-danger .alert-link {
  4307. color: #d83212;
  4308. }
  4309. .alert:hover {
  4310. background-color: #e4e4e4;
  4311. }
  4312. .alert:hover.alert-success {
  4313. background-color: #ccffde;
  4314. }
  4315. .alert:hover.alert-info {
  4316. background-color: #ccfffc;
  4317. }
  4318. .alert:hover.alert-warning {
  4319. background-color: #ffebcc;
  4320. }
  4321. .alert:hover.alert-danger {
  4322. background-color: #ffd4cc;
  4323. }
  4324. .alert:hover > [class*="icon-"] {
  4325. opacity: 1;
  4326. }
  4327. .input-group {
  4328. position: relative;
  4329. display: table;
  4330. border-collapse: separate;
  4331. }
  4332. .input-group[class*="col-"] {
  4333. float: none;
  4334. padding-right: 0;
  4335. padding-left: 0;
  4336. }
  4337. .input-group .form-control {
  4338. position: relative;
  4339. z-index: 2;
  4340. float: left;
  4341. width: 100%;
  4342. margin-bottom: 0;
  4343. }
  4344. .input-group-addon,
  4345. .input-group-btn,
  4346. .input-group .form-control {
  4347. display: table-cell;
  4348. }
  4349. .input-group-addon:not(:first-child):not(:last-child),
  4350. .input-group-btn:not(:first-child):not(:last-child),
  4351. .input-group .form-control:not(:first-child):not(:last-child) {
  4352. border-radius: 0;
  4353. }
  4354. .input-group-addon,
  4355. .input-group-btn {
  4356. width: 1%;
  4357. white-space: nowrap;
  4358. vertical-align: middle;
  4359. }
  4360. .input-group-addon {
  4361. padding: 5px 12px;
  4362. font-size: 13px;
  4363. font-weight: normal;
  4364. line-height: 1;
  4365. color: #222;
  4366. text-align: center;
  4367. background-color: #e5e5e5;
  4368. border: 1px solid #ccc;
  4369. border-radius: 0;
  4370. }
  4371. .input-group-addon input[type="radio"],
  4372. .input-group-addon input[type="checkbox"] {
  4373. margin-top: 0;
  4374. }
  4375. .input-group-addon.fix-border {
  4376. border-right: 0;
  4377. border-left: 0;
  4378. }
  4379. .input-group-addon:empty,
  4380. .input-group-addon.fix-padding {
  4381. width: 1px;
  4382. padding: 0;
  4383. }
  4384. .input-group-btn.fix-border > .btn {
  4385. border-right: 0;
  4386. border-left: 0;
  4387. border-radius: 0;
  4388. }
  4389. .input-group .form-control:first-child,
  4390. .input-group-addon:first-child,
  4391. .input-group-btn:first-child > .btn,
  4392. .input-group-btn:first-child > .btn-group > .btn,
  4393. .input-group-btn:first-child > .dropdown-toggle,
  4394. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  4395. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  4396. border-top-right-radius: 0;
  4397. border-bottom-right-radius: 0;
  4398. }
  4399. .input-group-addon:first-child {
  4400. border-right: 0;
  4401. }
  4402. .input-group .form-control:last-child,
  4403. .input-group-addon:last-child,
  4404. .input-group-btn:last-child > .btn,
  4405. .input-group-btn:last-child > .btn-group > .btn,
  4406. .input-group-btn:last-child > .dropdown-toggle,
  4407. .input-group-btn:first-child > .btn:not(:first-child),
  4408. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  4409. border-top-left-radius: 0;
  4410. border-bottom-left-radius: 0;
  4411. }
  4412. .input-group-addon:last-child {
  4413. border-left: 0;
  4414. }
  4415. .input-group-btn {
  4416. position: relative;
  4417. font-size: 0;
  4418. white-space: nowrap;
  4419. }
  4420. .input-group-btn > .btn {
  4421. position: relative;
  4422. }
  4423. .input-group-btn > .btn + .btn {
  4424. margin-left: -1px;
  4425. }
  4426. .input-group-btn > .btn:hover,
  4427. .input-group-btn > .btn:focus,
  4428. .input-group-btn > .btn:active {
  4429. z-index: 2;
  4430. }
  4431. .input-group-btn:first-child > .btn,
  4432. .input-group-btn:first-child > .btn-group {
  4433. margin-right: -1px;
  4434. }
  4435. .input-group-btn:last-child > .btn,
  4436. .input-group-btn:last-child > .btn-group {
  4437. margin-left: -1px;
  4438. }
  4439. .input-group-lg > .form-control,
  4440. .input-group-lg > .input-group-addon,
  4441. .input-group-lg > .input-group-btn > .btn {
  4442. height: 43px;
  4443. padding: 10px 16px;
  4444. font-size: 17px;
  4445. line-height: 1.25;
  4446. border-radius: 0;
  4447. }
  4448. select.input-group-lg > .form-control,
  4449. select.input-group-lg > .input-group-addon,
  4450. select.input-group-lg > .input-group-btn > .btn {
  4451. height: 43px;
  4452. line-height: 43px;
  4453. }
  4454. textarea.input-group-lg > .form-control,
  4455. textarea.input-group-lg > .input-group-addon,
  4456. textarea.input-group-lg > .input-group-btn > .btn {
  4457. height: auto;
  4458. }
  4459. .input-group-sm > .form-control,
  4460. .input-group-sm > .input-group-addon,
  4461. .input-group-sm > .input-group-btn > .btn {
  4462. height: 24px;
  4463. padding: 2px 8px;
  4464. font-size: 12px;
  4465. line-height: 1.5;
  4466. border-radius: 0;
  4467. }
  4468. select.input-group-sm > .form-control,
  4469. select.input-group-sm > .input-group-addon,
  4470. select.input-group-sm > .input-group-btn > .btn {
  4471. height: 24px;
  4472. line-height: 24px;
  4473. }
  4474. textarea.input-group-sm > .form-control,
  4475. textarea.input-group-sm > .input-group-addon,
  4476. textarea.input-group-sm > .input-group-btn > .btn {
  4477. height: auto;
  4478. }
  4479. .input-group-addon.input-sm {
  4480. padding: 2px 8px;
  4481. font-size: 12px;
  4482. border-radius: 0;
  4483. }
  4484. .input-group-addon.input-lg {
  4485. padding: 10px 16px;
  4486. font-size: 17px;
  4487. border-radius: 0;
  4488. }
  4489. fieldset {
  4490. padding: 0;
  4491. margin: 0;
  4492. border: 0;
  4493. }
  4494. legend {
  4495. display: block;
  4496. width: 100%;
  4497. padding: 0;
  4498. margin-bottom: 20px;
  4499. font-size: 19.5px;
  4500. line-height: inherit;
  4501. color: #333;
  4502. border: 0;
  4503. border-bottom: 1px solid #e5e5e5;
  4504. }
  4505. label {
  4506. display: inline-block;
  4507. margin-bottom: 5px;
  4508. font-weight: bold;
  4509. }
  4510. input[type="search"] {
  4511. -webkit-box-sizing: border-box;
  4512. -moz-box-sizing: border-box;
  4513. box-sizing: border-box;
  4514. }
  4515. input[type="radio"],
  4516. input[type="checkbox"] {
  4517. margin: 4px 0 0;
  4518. margin-top: 1px \9;
  4519. /* IE8-9 */
  4520. line-height: normal;
  4521. }
  4522. input[type="file"] {
  4523. display: block;
  4524. }
  4525. select[multiple],
  4526. select[size] {
  4527. height: auto;
  4528. }
  4529. select optgroup {
  4530. font-family: inherit;
  4531. font-size: inherit;
  4532. font-style: inherit;
  4533. }
  4534. input[type="file"]:focus,
  4535. input[type="radio"]:focus,
  4536. input[type="checkbox"]:focus {
  4537. outline: thin dotted #333;
  4538. outline: 5px auto -webkit-focus-ring-color;
  4539. outline-offset: -2px;
  4540. }
  4541. input[type="number"]::-webkit-outer-spin-button,
  4542. input[type="number"]::-webkit-inner-spin-button {
  4543. height: auto;
  4544. }
  4545. .form-control:-moz-placeholder {
  4546. color: #808080;
  4547. }
  4548. .form-control::-moz-placeholder {
  4549. color: #808080;
  4550. }
  4551. .form-control:-ms-input-placeholder {
  4552. color: #808080;
  4553. }
  4554. .form-control::-webkit-input-placeholder {
  4555. color: #808080;
  4556. }
  4557. .form-control {
  4558. display: block;
  4559. width: 100%;
  4560. height: 32px;
  4561. padding: 5px 8px;
  4562. font-size: 13px;
  4563. line-height: 1.53846154;
  4564. color: #222;
  4565. vertical-align: middle;
  4566. background-color: #fff;
  4567. border: 1px solid #ccc;
  4568. border-radius: 0;
  4569. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4570. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4571. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  4572. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  4573. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  4574. }
  4575. .form-control:focus {
  4576. border-color: #18609d;
  4577. outline: 0;
  4578. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(24, 96, 157, .6);
  4579. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(24, 96, 157, .6);
  4580. }
  4581. .form-control[disabled],
  4582. .form-control[readonly],
  4583. fieldset[disabled] .form-control {
  4584. cursor: not-allowed;
  4585. background-color: #e5e5e5;
  4586. }
  4587. textarea.form-control {
  4588. height: 52px;
  4589. }
  4590. .form-group {
  4591. margin-bottom: 15px;
  4592. }
  4593. .radio,
  4594. .checkbox {
  4595. display: block;
  4596. min-height: 20px;
  4597. padding-left: 20px;
  4598. margin-top: 10px;
  4599. margin-bottom: 10px;
  4600. vertical-align: middle;
  4601. }
  4602. .radio label,
  4603. .checkbox label {
  4604. display: inline;
  4605. margin-bottom: 0;
  4606. font-weight: normal;
  4607. cursor: pointer;
  4608. }
  4609. .radio input[type="radio"],
  4610. .radio-inline input[type="radio"],
  4611. .checkbox input[type="checkbox"],
  4612. .checkbox-inline input[type="checkbox"] {
  4613. float: left;
  4614. margin-left: -20px;
  4615. }
  4616. .radio + .radio,
  4617. .checkbox + .checkbox {
  4618. margin-top: -5px;
  4619. }
  4620. .radio-inline,
  4621. .checkbox-inline {
  4622. display: inline-block;
  4623. padding-left: 20px;
  4624. margin-bottom: 0;
  4625. font-weight: normal;
  4626. vertical-align: middle;
  4627. cursor: pointer;
  4628. }
  4629. .radio-inline + .radio-inline,
  4630. .checkbox-inline + .checkbox-inline {
  4631. margin-top: 0;
  4632. margin-left: 10px;
  4633. }
  4634. input[type="radio"][disabled],
  4635. input[type="checkbox"][disabled],
  4636. .radio[disabled],
  4637. .radio-inline[disabled],
  4638. .checkbox[disabled],
  4639. .checkbox-inline[disabled],
  4640. fieldset[disabled] input[type="radio"],
  4641. fieldset[disabled] input[type="checkbox"],
  4642. fieldset[disabled] .radio,
  4643. fieldset[disabled] .radio-inline,
  4644. fieldset[disabled] .checkbox,
  4645. fieldset[disabled] .checkbox-inline {
  4646. cursor: not-allowed;
  4647. }
  4648. .input-sm {
  4649. height: 24px;
  4650. padding: 2px 8px;
  4651. font-size: 12px;
  4652. line-height: 1.5;
  4653. border-radius: 0;
  4654. }
  4655. select.input-sm {
  4656. height: 24px;
  4657. line-height: 24px;
  4658. }
  4659. textarea.input-sm {
  4660. height: auto;
  4661. }
  4662. .input-lg {
  4663. height: 43px;
  4664. padding: 10px 16px;
  4665. font-size: 17px;
  4666. line-height: 1.25;
  4667. border-radius: 0;
  4668. }
  4669. select.input-lg {
  4670. height: 43px;
  4671. line-height: 43px;
  4672. }
  4673. textarea.input-lg {
  4674. height: auto;
  4675. }
  4676. .has-warning .help-block,
  4677. .has-warning .control-label {
  4678. color: #f39c11;
  4679. }
  4680. .has-warning .form-control {
  4681. border-color: #f39c11;
  4682. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4683. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4684. }
  4685. .has-warning .form-control:focus {
  4686. border-color: #c77e0a;
  4687. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f8c472;
  4688. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f8c472;
  4689. }
  4690. .has-warning .input-group-addon {
  4691. color: #f39c11;
  4692. background-color: #fff5e5;
  4693. border-color: #f39c11;
  4694. }
  4695. .has-error .help-block,
  4696. .has-error .control-label {
  4697. color: #ee4e2f;
  4698. }
  4699. .has-error .form-control {
  4700. border-color: #ee4e2f;
  4701. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4702. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4703. }
  4704. .has-error .form-control:focus {
  4705. border-color: #d83212;
  4706. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f69e8d;
  4707. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #f69e8d;
  4708. }
  4709. .has-error .input-group-addon {
  4710. color: #ee4e2f;
  4711. background-color: #ffeae5;
  4712. border-color: #ee4e2f;
  4713. }
  4714. .has-success .help-block,
  4715. .has-success .control-label {
  4716. color: #2ac25f;
  4717. }
  4718. .has-success .form-control {
  4719. border-color: #2ac25f;
  4720. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4721. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  4722. }
  4723. .has-success .form-control:focus {
  4724. border-color: #21984a;
  4725. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #72e098;
  4726. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #72e098;
  4727. }
  4728. .has-success .input-group-addon {
  4729. color: #2ac25f;
  4730. background-color: #e5ffee;
  4731. border-color: #2ac25f;
  4732. }
  4733. .form-control-static {
  4734. padding-top: 6px;
  4735. margin-bottom: 0;
  4736. }
  4737. .help-block {
  4738. display: block;
  4739. margin-top: 5px;
  4740. margin-bottom: 10px;
  4741. color: #757575;
  4742. }
  4743. @media (min-width: 768px) {
  4744. .form-inline .form-group {
  4745. display: inline-block;
  4746. margin-bottom: 0;
  4747. vertical-align: middle;
  4748. }
  4749. .form-inline .form-control {
  4750. display: inline-block;
  4751. }
  4752. .form-inline .radio,
  4753. .form-inline .checkbox {
  4754. display: inline-block;
  4755. padding-left: 0;
  4756. margin-top: 0;
  4757. margin-bottom: 0;
  4758. }
  4759. .form-inline .radio input[type="radio"],
  4760. .form-inline .checkbox input[type="checkbox"] {
  4761. float: none;
  4762. margin-left: 0;
  4763. }
  4764. }
  4765. .form-horizontal .control-label,
  4766. .form-horizontal .radio,
  4767. .form-horizontal .checkbox,
  4768. .form-horizontal .radio-inline,
  4769. .form-horizontal .checkbox-inline {
  4770. padding-top: 6px;
  4771. margin-top: 0;
  4772. margin-bottom: 0;
  4773. }
  4774. .form-horizontal .form-group {
  4775. margin-right: -10px;
  4776. margin-left: -10px;
  4777. }
  4778. .form-horizontal .form-group:before,
  4779. .form-horizontal .form-group:after {
  4780. /* 1 */
  4781. display: table;
  4782. content: " ";
  4783. /* 2 */
  4784. }
  4785. .form-horizontal .form-group:after {
  4786. clear: both;
  4787. }
  4788. .form-horizontal .form-group:before,
  4789. .form-horizontal .form-group:after {
  4790. /* 1 */
  4791. display: table;
  4792. content: " ";
  4793. /* 2 */
  4794. }
  4795. .form-horizontal .form-group:after {
  4796. clear: both;
  4797. }
  4798. @media (min-width: 768px) {
  4799. .form-horizontal .control-label {
  4800. text-align: right;
  4801. }
  4802. }
  4803. .required {
  4804. position: relative;
  4805. }
  4806. .required:after {
  4807. position: absolute;
  4808. top: 5px;
  4809. display: inline-block;
  4810. font-size: 17px;
  4811. color: #ee4e2f;
  4812. content: '*';
  4813. }
  4814. .form-condensed .form-control {
  4815. height: 24px;
  4816. padding: 2px 8px;
  4817. font-size: 12px;
  4818. line-height: 1.5;
  4819. border-radius: 0;
  4820. }
  4821. select.form-condensed .form-control {
  4822. height: 24px;
  4823. line-height: 24px;
  4824. }
  4825. textarea.form-condensed .form-control {
  4826. height: auto;
  4827. }
  4828. .form-condensed textarea.form-control {
  4829. height: auto;
  4830. }
  4831. .form-condensed .btn {
  4832. padding: 2px 8px;
  4833. font-size: 12px;
  4834. line-height: 1.5;
  4835. border-radius: 0;
  4836. }
  4837. .form-condensed .input-group > .form-control,
  4838. .form-condensed .input-group > .input-group-addon,
  4839. .form-condensed .input-group > .input-group-btn > .btn {
  4840. padding: 2px 8px;
  4841. font-size: 12px;
  4842. border-top-right-radius: 0;
  4843. border-bottom-right-radius: 0;
  4844. }
  4845. code,
  4846. kdb,
  4847. pre,
  4848. samp {
  4849. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  4850. }
  4851. code {
  4852. padding: 2px 4px;
  4853. margin: 0 4px;
  4854. font-size: 90%;
  4855. color: #ee4e2f;
  4856. white-space: nowrap;
  4857. background-color: #f1f1f1;
  4858. border: 1px solid #d7d7d7;
  4859. border-radius: 0;
  4860. }
  4861. pre {
  4862. display: block;
  4863. padding: 9.5px;
  4864. margin: 0 0 10px;
  4865. font-size: 12px;
  4866. line-height: 1.53846154;
  4867. color: #333;
  4868. word-break: break-all;
  4869. word-wrap: break-word;
  4870. background-color: #f5f5f5;
  4871. border: 1px solid #ccc;
  4872. border-radius: 0;
  4873. }
  4874. pre code {
  4875. padding: 0;
  4876. margin: 0;
  4877. font-size: inherit;
  4878. color: inherit;
  4879. white-space: pre-wrap;
  4880. background-color: transparent;
  4881. border: 0;
  4882. }
  4883. .pre-scrollable {
  4884. max-height: 340px;
  4885. overflow-y: scroll;
  4886. }
  4887. .com {
  4888. color: #93a1a1;
  4889. }
  4890. .lit {
  4891. color: #195f91;
  4892. }
  4893. .pun,
  4894. .opn,
  4895. .clo {
  4896. color: #93a1a1;
  4897. }
  4898. .fun {
  4899. color: #dc322f;
  4900. }
  4901. .str,
  4902. .atv {
  4903. color: #d14;
  4904. }
  4905. .kwd,
  4906. .prettyprint .tag {
  4907. color: #1e347b;
  4908. }
  4909. .typ,
  4910. .atn,
  4911. .dec,
  4912. .var {
  4913. color: teal;
  4914. }
  4915. .pln {
  4916. color: #48484c;
  4917. }
  4918. .prettyprint {
  4919. padding: 8px;
  4920. background-color: #f7f7f9;
  4921. }
  4922. .prettyprint.linenums {
  4923. -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
  4924. box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
  4925. }
  4926. /* Specify class=linenums on a pre to get line numbering */
  4927. ol.linenums li {
  4928. padding-left: 12px;
  4929. line-height: 20px;
  4930. color: #bebec5;
  4931. text-shadow: 0 1px 0 #fff;
  4932. }
  4933. .pager {
  4934. display: inline-block;
  4935. padding-left: 0;
  4936. margin: 20px 0;
  4937. border-radius: 0;
  4938. }
  4939. .pager > li {
  4940. display: inline;
  4941. }
  4942. .pager > li > a,
  4943. .pager > li > span {
  4944. position: relative;
  4945. float: left;
  4946. padding: 5px 12px;
  4947. margin-left: -1px;
  4948. line-height: 1.53846154;
  4949. text-decoration: none;
  4950. background-color: #fff;
  4951. border: 1px solid #ddd;
  4952. -webkit-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  4953. -o-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  4954. transition: all .3s cubic-bezier(.175, .885, .32, 1);
  4955. }
  4956. .pager > li:first-child > a,
  4957. .pager > li:first-child > span {
  4958. margin-left: 0;
  4959. border-top-left-radius: 0;
  4960. border-bottom-left-radius: 0;
  4961. }
  4962. .pager > li:last-child > a,
  4963. .pager > li:last-child > span {
  4964. border-top-right-radius: 0;
  4965. border-bottom-right-radius: 0;
  4966. }
  4967. .pager > li > a:hover,
  4968. .pager > li > span:hover,
  4969. .pager > li > a:focus,
  4970. .pager > li > span:focus {
  4971. background-color: #e5e5e5;
  4972. }
  4973. .pager > .active > a,
  4974. .pager > .active > span,
  4975. .pager > .active > a:hover,
  4976. .pager > .active > span:hover,
  4977. .pager > .active > a:focus,
  4978. .pager > .active > span:focus {
  4979. z-index: 2;
  4980. color: #fff;
  4981. cursor: default;
  4982. background-color: #108bf1;
  4983. }
  4984. .pager > .disabled > span,
  4985. .pager > .disabled > span:hover,
  4986. .pager > .disabled > span:focus,
  4987. .pager > .disabled > a,
  4988. .pager > .disabled > a:hover,
  4989. .pager > .disabled > a:focus {
  4990. color: #ddd;
  4991. cursor: not-allowed;
  4992. background-color: #fff;
  4993. border-color: #ddd;
  4994. }
  4995. .pager-justify {
  4996. display: block;
  4997. }
  4998. .pager-justify:before,
  4999. .pager-justify:after {
  5000. /* 1 */
  5001. display: table;
  5002. content: " ";
  5003. /* 2 */
  5004. }
  5005. .pager-justify:after {
  5006. clear: both;
  5007. }
  5008. .pager-justify:before,
  5009. .pager-justify:after {
  5010. /* 1 */
  5011. display: table;
  5012. content: " ";
  5013. /* 2 */
  5014. }
  5015. .pager-justify:after {
  5016. clear: both;
  5017. }
  5018. .pager-justify .next > a,
  5019. .pager-justify .next > span {
  5020. float: right;
  5021. }
  5022. .pager-justify .previous > a,
  5023. .pager-justify .previous > span {
  5024. float: left;
  5025. }
  5026. .pager-lg > li > a,
  5027. .pager-lg > li > span {
  5028. padding: 10px 16px;
  5029. font-size: 17px;
  5030. }
  5031. .pager-lg > li:first-child > a,
  5032. .pager-lg > li:first-child > span {
  5033. border-top-left-radius: 0;
  5034. border-bottom-left-radius: 0;
  5035. }
  5036. .pager-lg > li:last-child > a,
  5037. .pager-lg > li:last-child > span {
  5038. border-top-right-radius: 0;
  5039. border-bottom-right-radius: 0;
  5040. }
  5041. .pager-sm > li > a,
  5042. .pager-sm > li > span {
  5043. padding: 2px 8px;
  5044. font-size: 12px;
  5045. }
  5046. .pager-sm > li:first-child > a,
  5047. .pager-sm > li:first-child > span {
  5048. border-top-left-radius: 0;
  5049. border-bottom-left-radius: 0;
  5050. }
  5051. .pager-sm > li:last-child > a,
  5052. .pager-sm > li:last-child > span {
  5053. border-top-right-radius: 0;
  5054. border-bottom-right-radius: 0;
  5055. }
  5056. .pager-pills > li:first-child > a,
  5057. .pager-pills > li:first-child > span {
  5058. border-radius: 16px 0 0 16px;
  5059. }
  5060. .pager-pills > li:last-child > a,
  5061. .pager-pills > li:last-child > span {
  5062. border-radius: 0 16px 16px 0;
  5063. }
  5064. .pager-pills.pager-justify > li > a,
  5065. .pager-pills.pager-justify > li > span {
  5066. border-radius: 16px;
  5067. }
  5068. .pager-loose {
  5069. display: block;
  5070. margin: 20px 0;
  5071. }
  5072. .pager-loose:before,
  5073. .pager-loose:after {
  5074. /* 1 */
  5075. display: table;
  5076. content: " ";
  5077. /* 2 */
  5078. }
  5079. .pager-loose:after {
  5080. clear: both;
  5081. }
  5082. .pager-loose:before,
  5083. .pager-loose:after {
  5084. /* 1 */
  5085. display: table;
  5086. content: " ";
  5087. /* 2 */
  5088. }
  5089. .pager-loose:after {
  5090. clear: both;
  5091. }
  5092. .pager-loose.pager-pills > li > a,
  5093. .pager-loose.pager-pills > li > span {
  5094. border-radius: 16px;
  5095. }
  5096. .pager-loose > li > a,
  5097. .pager-loose > li > span {
  5098. margin-left: 5px;
  5099. }
  5100. .pager-loose > li:first-child > a,
  5101. .pager-loose > li:first-child > span {
  5102. margin-left: 0;
  5103. }
  5104. .nav {
  5105. padding-left: 0;
  5106. margin-bottom: 0;
  5107. list-style: none;
  5108. }
  5109. .nav:before,
  5110. .nav:after {
  5111. /* 1 */
  5112. display: table;
  5113. content: " ";
  5114. /* 2 */
  5115. }
  5116. .nav:after {
  5117. clear: both;
  5118. }
  5119. .nav:before,
  5120. .nav:after {
  5121. /* 1 */
  5122. display: table;
  5123. content: " ";
  5124. /* 2 */
  5125. }
  5126. .nav:after {
  5127. clear: both;
  5128. }
  5129. .nav > .nav-heading {
  5130. padding: 8px 15px;
  5131. font-weight: normal;
  5132. color: #808080;
  5133. }
  5134. .nav > li {
  5135. position: relative;
  5136. display: block;
  5137. }
  5138. .nav > li > a {
  5139. position: relative;
  5140. display: block;
  5141. padding: 8px 15px;
  5142. color: #353535;
  5143. -webkit-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  5144. -o-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  5145. transition: all .3s cubic-bezier(.175, .885, .32, 1);
  5146. }
  5147. .nav > li > a:hover,
  5148. .nav > li > a:focus {
  5149. color: #0e385a;
  5150. text-decoration: none;
  5151. background-color: #f1f1f1;
  5152. }
  5153. .nav > li.disabled > a {
  5154. color: #ddd;
  5155. }
  5156. .nav > li.disabled > a:hover,
  5157. .nav > li.disabled > a:focus {
  5158. color: #ddd;
  5159. text-decoration: none;
  5160. cursor: not-allowed;
  5161. background-color: transparent;
  5162. }
  5163. .nav .open > a,
  5164. .nav .open > a:hover,
  5165. .nav .open > a:focus {
  5166. background-color: #f1f1f1;
  5167. border-color: #18609d;
  5168. }
  5169. .nav .open > a .caret,
  5170. .nav .open > a:hover .caret,
  5171. .nav .open > a:focus .caret {
  5172. border-top-color: #0e385a;
  5173. border-bottom-color: #0e385a;
  5174. }
  5175. .nav > li > a > img {
  5176. max-width: none;
  5177. }
  5178. .nav-pills > li {
  5179. float: left;
  5180. }
  5181. .nav-pills > li > a {
  5182. border-radius: 20px;
  5183. }
  5184. .nav-pills > li + li {
  5185. margin-left: 2px;
  5186. }
  5187. .nav-pills > li.active > a,
  5188. .nav-pills > li.active > a:hover,
  5189. .nav-pills > li.active > a:focus {
  5190. color: #fff;
  5191. background-color: #108bf1;
  5192. }
  5193. .nav-pills > li.active > a .caret,
  5194. .nav-pills > li.active > a:hover .caret,
  5195. .nav-pills > li.active > a:focus .caret {
  5196. border-top-color: #fff;
  5197. border-bottom-color: #fff;
  5198. }
  5199. .nav-primary > li {
  5200. float: left;
  5201. margin-left: -1px;
  5202. }
  5203. .nav-primary > li:first-child > a {
  5204. margin-left: 0;
  5205. border-top-left-radius: 0;
  5206. border-bottom-left-radius: 0;
  5207. }
  5208. .nav-primary > li:last-child > a {
  5209. border-top-right-radius: 0;
  5210. border-bottom-right-radius: 0;
  5211. }
  5212. .nav-primary > li > a {
  5213. border: 1px solid #ddd;
  5214. }
  5215. .nav-primary > li.active > a,
  5216. .nav-primary > li.active > a:hover,
  5217. .nav-primary > li.active > a:focus {
  5218. color: #fff;
  5219. background-color: #108bf1;
  5220. border-color: #108bf1;
  5221. }
  5222. .nav-primary > li.active > a .caret,
  5223. .nav-primary > li.active > a:hover .caret,
  5224. .nav-primary > li.active > a:focus .caret {
  5225. border-top-color: #fff;
  5226. border-bottom-color: #fff;
  5227. }
  5228. .nav-secondary > li {
  5229. float: left;
  5230. }
  5231. .nav-secondary > li > a {
  5232. border-bottom: 2px solid #e5e5e5;
  5233. }
  5234. .nav-secondary > li.active > a,
  5235. .nav-secondary > li.active > a:hover,
  5236. .nav-secondary > li.active > a:focus {
  5237. color: #108bf1;
  5238. border-bottom-color: #108bf1;
  5239. }
  5240. .nav-secondary > li.active > a .caret,
  5241. .nav-secondary > li.active > a:hover .caret,
  5242. .nav-secondary > li.active > a:focus .caret {
  5243. border-top-color: #108bf1;
  5244. border-bottom-color: #108bf1;
  5245. }
  5246. .nav-secondary > li.nav-heading {
  5247. border-bottom: 2px solid #e5e5e5;
  5248. }
  5249. .nav-stacked > li {
  5250. float: none;
  5251. }
  5252. .nav-stacked > li + li {
  5253. margin-top: 2px;
  5254. margin-left: 0;
  5255. }
  5256. .nav-stacked.nav-primary > li,
  5257. .nav-stacked.nav-primary > li > a {
  5258. margin-left: 0;
  5259. border-bottom-right-radius: 0;
  5260. border-bottom-left-radius: 0;
  5261. }
  5262. .nav-stacked.nav-primary > li + li {
  5263. margin-top: -1px;
  5264. }
  5265. .nav-stacked.nav-primary > li:first-child {
  5266. margin-top: 0;
  5267. }
  5268. .nav-stacked.nav-primary > li:first-child > a,
  5269. .nav-stacked.nav-primary > li:first-child.nav-heading {
  5270. margin-left: 0;
  5271. border-top-left-radius: 0;
  5272. border-top-right-radius: 0;
  5273. }
  5274. .nav-stacked.nav-primary > li:last-child > a {
  5275. border-bottom-right-radius: 0;
  5276. border-bottom-left-radius: 0;
  5277. }
  5278. .nav-stacked.nav-primary > li.nav-heading {
  5279. background-color: #f1f1f1;
  5280. border: 1px solid #ddd;
  5281. }
  5282. .nav-justified {
  5283. width: 100%;
  5284. }
  5285. .nav-justified > li {
  5286. float: none;
  5287. }
  5288. .nav-justified > li > a {
  5289. margin-bottom: 5px;
  5290. text-align: center;
  5291. }
  5292. @media (min-width: 768px) {
  5293. .nav-justified > li {
  5294. display: table-cell;
  5295. width: 1%;
  5296. }
  5297. .nav-justified > li > a {
  5298. margin-bottom: 0;
  5299. }
  5300. .nav-justified.nav-primary > li + li > a {
  5301. border-left: 0;
  5302. }
  5303. }
  5304. .nav .caret {
  5305. border-top-color: #18609d;
  5306. border-bottom-color: #18609d;
  5307. }
  5308. .nav a:hover .caret {
  5309. border-top-color: #0e385a;
  5310. border-bottom-color: #0e385a;
  5311. }
  5312. .nav-tabs-justified {
  5313. border-bottom: 0;
  5314. }
  5315. .nav-tabs-justified > li > a {
  5316. margin-right: 0;
  5317. border-radius: 0;
  5318. }
  5319. .nav-tabs-justified > .active > a,
  5320. .nav-tabs-justified > .active > a:hover,
  5321. .nav-tabs-justified > .active > a:focus {
  5322. border: 1px solid #ddd;
  5323. }
  5324. @media (min-width: 768px) {
  5325. .nav-tabs-justified > li > a {
  5326. border-bottom: 1px solid #ddd;
  5327. border-radius: 0 0 0 0;
  5328. }
  5329. .nav-tabs-justified > .active > a,
  5330. .nav-tabs-justified > .active > a:hover,
  5331. .nav-tabs-justified > .active > a:focus {
  5332. border-bottom-color: #fff;
  5333. }
  5334. }
  5335. .nav-tabs {
  5336. border-bottom: 1px solid #ddd;
  5337. }
  5338. .nav-tabs > li {
  5339. float: left;
  5340. margin-bottom: -1px;
  5341. }
  5342. .nav-tabs > li > a {
  5343. margin-right: 2px;
  5344. line-height: 1.53846154;
  5345. border: 1px solid transparent;
  5346. border-radius: 0 0 0 0;
  5347. }
  5348. .nav-tabs > li > a:hover {
  5349. border-color: #e5e5e5 #e5e5e5 #ddd;
  5350. }
  5351. .nav-tabs > li.active > a,
  5352. .nav-tabs > li.active > a:hover,
  5353. .nav-tabs > li.active > a:focus {
  5354. color: #808080;
  5355. cursor: default;
  5356. background-color: #fff;
  5357. border: 1px solid #ddd;
  5358. border-bottom-color: transparent;
  5359. }
  5360. .nav-tabs.nav-justified {
  5361. width: 100%;
  5362. border-bottom: 0;
  5363. }
  5364. .nav-tabs.nav-justified > li {
  5365. float: none;
  5366. }
  5367. .nav-tabs.nav-justified > li > a {
  5368. margin-bottom: 5px;
  5369. text-align: center;
  5370. }
  5371. @media (min-width: 768px) {
  5372. .nav-tabs.nav-justified > li {
  5373. display: table-cell;
  5374. width: 1%;
  5375. }
  5376. .nav-tabs.nav-justified > li > a {
  5377. margin-bottom: 0;
  5378. }
  5379. .nav-tabs.nav-justified.nav-primary > li + li > a {
  5380. border-left: 0;
  5381. }
  5382. }
  5383. .nav-tabs.nav-justified > li > a {
  5384. margin-right: 0;
  5385. border-radius: 0;
  5386. }
  5387. .nav-tabs.nav-justified > .active > a,
  5388. .nav-tabs.nav-justified > .active > a:hover,
  5389. .nav-tabs.nav-justified > .active > a:focus {
  5390. border: 1px solid #ddd;
  5391. }
  5392. @media (min-width: 768px) {
  5393. .nav-tabs.nav-justified > li > a {
  5394. border-bottom: 1px solid #ddd;
  5395. border-radius: 0 0 0 0;
  5396. }
  5397. .nav-tabs.nav-justified > .active > a,
  5398. .nav-tabs.nav-justified > .active > a:hover,
  5399. .nav-tabs.nav-justified > .active > a:focus {
  5400. border-bottom-color: #fff;
  5401. }
  5402. }
  5403. .tabbable:before,
  5404. .tabbable:after {
  5405. /* 1 */
  5406. display: table;
  5407. content: " ";
  5408. /* 2 */
  5409. }
  5410. .tabbable:after {
  5411. clear: both;
  5412. }
  5413. .tabbable:before,
  5414. .tabbable:after {
  5415. /* 1 */
  5416. display: table;
  5417. content: " ";
  5418. /* 2 */
  5419. }
  5420. .tabbable:after {
  5421. clear: both;
  5422. }
  5423. .tab-content > .tab-pane,
  5424. .pill-content > .pill-pane {
  5425. display: none;
  5426. }
  5427. .tab-content > .active,
  5428. .pill-content > .active {
  5429. display: block;
  5430. }
  5431. .nav-tabs .dropdown-menu {
  5432. margin-top: -1px;
  5433. border-top-left-radius: 0;
  5434. border-top-right-radius: 0;
  5435. }
  5436. .navbar {
  5437. position: relative;
  5438. z-index: 900;
  5439. min-height: 40px;
  5440. margin-bottom: 20px;
  5441. font-size: 14px;
  5442. border: 1px solid transparent;
  5443. }
  5444. .navbar:before,
  5445. .navbar:after {
  5446. /* 1 */
  5447. display: table;
  5448. content: " ";
  5449. /* 2 */
  5450. }
  5451. .navbar:after {
  5452. clear: both;
  5453. }
  5454. .navbar:before,
  5455. .navbar:after {
  5456. /* 1 */
  5457. display: table;
  5458. content: " ";
  5459. /* 2 */
  5460. }
  5461. .navbar:after {
  5462. clear: both;
  5463. }
  5464. @media (min-width: 768px) {
  5465. .navbar {
  5466. border-radius: 0;
  5467. }
  5468. }
  5469. .navbar-header:before,
  5470. .navbar-header:after {
  5471. /* 1 */
  5472. display: table;
  5473. content: " ";
  5474. /* 2 */
  5475. }
  5476. .navbar-header:after {
  5477. clear: both;
  5478. }
  5479. .navbar-header:before,
  5480. .navbar-header:after {
  5481. /* 1 */
  5482. display: table;
  5483. content: " ";
  5484. /* 2 */
  5485. }
  5486. .navbar-header:after {
  5487. clear: both;
  5488. }
  5489. @media (min-width: 768px) {
  5490. .navbar-header {
  5491. float: left;
  5492. }
  5493. }
  5494. .navbar-collapse {
  5495. max-height: 340px;
  5496. padding-right: 10px;
  5497. padding-left: 10px;
  5498. overflow-x: visible;
  5499. -webkit-overflow-scrolling: touch;
  5500. border-top: 1px solid transparent;
  5501. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  5502. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  5503. }
  5504. .navbar-collapse:before,
  5505. .navbar-collapse:after {
  5506. /* 1 */
  5507. display: table;
  5508. content: " ";
  5509. /* 2 */
  5510. }
  5511. .navbar-collapse:after {
  5512. clear: both;
  5513. }
  5514. .navbar-collapse:before,
  5515. .navbar-collapse:after {
  5516. /* 1 */
  5517. display: table;
  5518. content: " ";
  5519. /* 2 */
  5520. }
  5521. .navbar-collapse:after {
  5522. clear: both;
  5523. }
  5524. .navbar-collapse.in {
  5525. overflow-y: auto;
  5526. }
  5527. @media (min-width: 768px) {
  5528. .navbar-collapse {
  5529. width: auto;
  5530. border-top: 0;
  5531. -webkit-box-shadow: none;
  5532. box-shadow: none;
  5533. }
  5534. .navbar-collapse.collapse {
  5535. display: block !important;
  5536. height: auto !important;
  5537. padding-bottom: 0;
  5538. overflow: visible !important;
  5539. }
  5540. .navbar-collapse.in {
  5541. overflow-y: visible;
  5542. }
  5543. .navbar-collapse .navbar-nav.navbar-left:first-child {
  5544. margin-left: -10px;
  5545. }
  5546. .navbar-collapse .navbar-nav.navbar-right:last-child {
  5547. margin-right: -10px;
  5548. }
  5549. .navbar-collapse .navbar-text:last-child {
  5550. margin-right: 0;
  5551. }
  5552. }
  5553. .container > .navbar-header,
  5554. .container > .navbar-collapse {
  5555. margin-right: -10px;
  5556. margin-left: -10px;
  5557. }
  5558. @media (min-width: 768px) {
  5559. .container > .navbar-header,
  5560. .container > .navbar-collapse {
  5561. margin-right: 0;
  5562. margin-left: 0;
  5563. }
  5564. }
  5565. .navbar-static-top {
  5566. border-width: 0 0 1px;
  5567. }
  5568. @media (min-width: 768px) {
  5569. .navbar-static-top {
  5570. border-radius: 0;
  5571. }
  5572. }
  5573. .navbar-fixed-top,
  5574. .navbar-fixed-bottom {
  5575. position: fixed;
  5576. right: 0;
  5577. left: 0;
  5578. border-width: 0 0 1px;
  5579. }
  5580. @media (min-width: 768px) {
  5581. .navbar-fixed-top,
  5582. .navbar-fixed-bottom {
  5583. border-radius: 0;
  5584. }
  5585. }
  5586. .navbar-fixed-top {
  5587. top: 0;
  5588. z-index: 1030;
  5589. }
  5590. .navbar-fixed-bottom {
  5591. bottom: 0;
  5592. margin-bottom: 0;
  5593. }
  5594. .navbar-brand {
  5595. float: left;
  5596. padding: 10px 10px;
  5597. font-weight: bold;
  5598. line-height: 20px;
  5599. }
  5600. .navbar-brand:hover,
  5601. .navbar-brand:focus {
  5602. text-decoration: none;
  5603. }
  5604. @media (min-width: 768px) {
  5605. .navbar > .container .navbar-brand {
  5606. margin-left: -10px;
  5607. }
  5608. }
  5609. .navbar-toggle {
  5610. position: relative;
  5611. float: right;
  5612. padding: 9px 10px;
  5613. margin-top: 3px;
  5614. margin-right: 10px;
  5615. margin-bottom: 3px;
  5616. background-color: transparent;
  5617. border: 1px solid transparent;
  5618. border-radius: 0;
  5619. }
  5620. .navbar-toggle .icon-bar {
  5621. display: block;
  5622. width: 22px;
  5623. height: 2px;
  5624. border-radius: 1px;
  5625. }
  5626. .navbar-toggle .icon-bar + .icon-bar {
  5627. margin-top: 4px;
  5628. }
  5629. @media (min-width: 768px) {
  5630. .navbar-toggle {
  5631. display: none;
  5632. }
  5633. }
  5634. .navbar-nav {
  5635. margin: 5px -10px;
  5636. }
  5637. .navbar-nav > li > a {
  5638. padding-top: 10px;
  5639. padding-bottom: 10px;
  5640. line-height: 20px;
  5641. }
  5642. @media (max-width: 767px) {
  5643. .navbar-nav .open .dropdown-menu {
  5644. position: static;
  5645. float: none;
  5646. width: auto;
  5647. margin-top: 0;
  5648. background-color: transparent;
  5649. border: 0;
  5650. -webkit-box-shadow: none;
  5651. box-shadow: none;
  5652. }
  5653. .navbar-nav .open .dropdown-menu > li > a,
  5654. .navbar-nav .open .dropdown-menu .dropdown-header {
  5655. padding: 5px 15px 5px 25px;
  5656. }
  5657. .navbar-nav .open .dropdown-menu > li > a {
  5658. line-height: 20px;
  5659. }
  5660. .navbar-nav .open .dropdown-menu > li > a:hover,
  5661. .navbar-nav .open .dropdown-menu > li > a:focus {
  5662. background-image: none;
  5663. }
  5664. }
  5665. @media (min-width: 768px) {
  5666. .navbar-nav {
  5667. float: left;
  5668. margin: 0;
  5669. }
  5670. .navbar-nav > li {
  5671. float: left;
  5672. }
  5673. .navbar-nav > li > a {
  5674. padding-top: 10px;
  5675. padding-bottom: 10px;
  5676. }
  5677. .navbar-nav.nav-justified > li {
  5678. float: none;
  5679. }
  5680. }
  5681. @media (min-width: 768px) {
  5682. .navbar-left {
  5683. float: left !important;
  5684. }
  5685. .navbar-right {
  5686. float: right !important;
  5687. }
  5688. }
  5689. .navbar-nav > li > .dropdown-menu {
  5690. margin-top: 0;
  5691. border-top-left-radius: 0;
  5692. border-top-right-radius: 0;
  5693. }
  5694. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  5695. border-bottom-right-radius: 0;
  5696. border-bottom-left-radius: 0;
  5697. }
  5698. .navbar-nav.pull-right > li > .dropdown-menu,
  5699. .navbar-nav > li > .dropdown-menu.pull-right {
  5700. right: 0;
  5701. left: auto;
  5702. }
  5703. .navbar-btn {
  5704. margin-top: 4px;
  5705. margin-bottom: 4px;
  5706. }
  5707. .navbar-text {
  5708. float: left;
  5709. margin-top: 10px;
  5710. margin-bottom: 10px;
  5711. }
  5712. @media (min-width: 768px) {
  5713. .navbar-text {
  5714. margin-right: 10px;
  5715. margin-left: 10px;
  5716. }
  5717. }
  5718. .navbar-default {
  5719. background-color: #f7f7f7;
  5720. border-color: #dedede;
  5721. }
  5722. .navbar-default .navbar-brand {
  5723. color: #333;
  5724. }
  5725. .navbar-default .navbar-brand:hover,
  5726. .navbar-default .navbar-brand:focus {
  5727. color: #1a1a1a;
  5728. background-color: transparent;
  5729. }
  5730. .navbar-default .navbar-text {
  5731. color: #333;
  5732. }
  5733. .navbar-default .navbar-nav > li.nav-heading {
  5734. margin-top: -6px;
  5735. color: #0d0d0d;
  5736. background-color: #ebebeb;
  5737. }
  5738. .navbar-default .navbar-nav > li > a {
  5739. color: #333;
  5740. }
  5741. .navbar-default .navbar-nav > li > a:hover,
  5742. .navbar-default .navbar-nav > li > a:focus {
  5743. color: #222;
  5744. background-color: #e5e5e5;
  5745. }
  5746. .navbar-default .navbar-nav > .active > a,
  5747. .navbar-default .navbar-nav > .active > a:hover,
  5748. .navbar-default .navbar-nav > .active > a:focus {
  5749. color: #555;
  5750. background-color: #e7e7e7;
  5751. }
  5752. .navbar-default .navbar-nav > .disabled > a,
  5753. .navbar-default .navbar-nav > .disabled > a:hover,
  5754. .navbar-default .navbar-nav > .disabled > a:focus {
  5755. color: #ccc;
  5756. background-color: transparent;
  5757. }
  5758. .navbar-default .navbar-toggle {
  5759. border-color: #ddd;
  5760. }
  5761. .navbar-default .navbar-toggle:hover,
  5762. .navbar-default .navbar-toggle:focus {
  5763. background-color: #ddd;
  5764. }
  5765. .navbar-default .navbar-toggle .icon-bar {
  5766. background-color: #ccc;
  5767. }
  5768. .navbar-default .navbar-collapse,
  5769. .navbar-default .navbar-form {
  5770. border-color: #dedede;
  5771. }
  5772. .navbar-default .navbar-nav > .dropdown > a:hover .caret,
  5773. .navbar-default .navbar-nav > .dropdown > a:focus .caret {
  5774. border-top-color: #222;
  5775. border-bottom-color: #222;
  5776. }
  5777. .navbar-default .navbar-nav > .open > a,
  5778. .navbar-default .navbar-nav > .open > a:hover,
  5779. .navbar-default .navbar-nav > .open > a:focus {
  5780. color: #555;
  5781. background-color: #e7e7e7;
  5782. }
  5783. .navbar-default .navbar-nav > .open > a .caret,
  5784. .navbar-default .navbar-nav > .open > a:hover .caret,
  5785. .navbar-default .navbar-nav > .open > a:focus .caret {
  5786. border-top-color: #555;
  5787. border-bottom-color: #555;
  5788. }
  5789. .navbar-default .navbar-nav > .dropdown > a .caret {
  5790. border-top-color: #333;
  5791. border-bottom-color: #333;
  5792. }
  5793. @media (max-width: 767px) {
  5794. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  5795. color: #333;
  5796. }
  5797. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  5798. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  5799. color: #222;
  5800. background-color: #e5e5e5;
  5801. }
  5802. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  5803. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  5804. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  5805. color: #555;
  5806. background-color: #e7e7e7;
  5807. }
  5808. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  5809. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  5810. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  5811. color: #ccc;
  5812. background-color: transparent;
  5813. }
  5814. }
  5815. .navbar-default .navbar-link {
  5816. color: #333;
  5817. }
  5818. .navbar-default .navbar-link:hover {
  5819. color: #222;
  5820. }
  5821. .navbar-inverse {
  5822. background-color: #18609d;
  5823. border-color: #114571;
  5824. }
  5825. .navbar-inverse .navbar-brand {
  5826. color: #ddd;
  5827. }
  5828. .navbar-inverse .navbar-brand:hover,
  5829. .navbar-inverse .navbar-brand:focus {
  5830. color: #fff;
  5831. background-color: transparent;
  5832. }
  5833. .navbar-inverse .navbar-text {
  5834. color: #ddd;
  5835. }
  5836. .navbar-inverse .navbar-nav > li.nav-heading {
  5837. margin-top: -6px;
  5838. color: #b7b7b7;
  5839. background-color: #145387;
  5840. }
  5841. .navbar-inverse .navbar-nav > li > a {
  5842. color: #ddd;
  5843. }
  5844. .navbar-inverse .navbar-nav > li > a:hover,
  5845. .navbar-inverse .navbar-nav > li > a:focus {
  5846. color: #fff;
  5847. background-color: #1c71b8;
  5848. }
  5849. .navbar-inverse .navbar-nav > .active > a,
  5850. .navbar-inverse .navbar-nav > .active > a:hover,
  5851. .navbar-inverse .navbar-nav > .active > a:focus {
  5852. color: #fff;
  5853. background-color: #1e7cc9;
  5854. }
  5855. .navbar-inverse .navbar-nav > .disabled > a,
  5856. .navbar-inverse .navbar-nav > .disabled > a:hover,
  5857. .navbar-inverse .navbar-nav > .disabled > a:focus {
  5858. color: #444;
  5859. background-color: transparent;
  5860. }
  5861. .navbar-inverse .navbar-toggle {
  5862. border-color: #1e7cc9;
  5863. }
  5864. .navbar-inverse .navbar-toggle:hover,
  5865. .navbar-inverse .navbar-toggle:focus {
  5866. background-color: #145387;
  5867. }
  5868. .navbar-inverse .navbar-toggle .icon-bar {
  5869. background-color: #fff;
  5870. }
  5871. .navbar-inverse .navbar-collapse,
  5872. .navbar-inverse .navbar-form {
  5873. border-color: #134d7e;
  5874. }
  5875. .navbar-inverse .navbar-nav > .open > a,
  5876. .navbar-inverse .navbar-nav > .open > a:hover,
  5877. .navbar-inverse .navbar-nav > .open > a:focus {
  5878. color: #fff;
  5879. background-color: #1e7cc9;
  5880. }
  5881. .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
  5882. border-top-color: #fff;
  5883. border-bottom-color: #fff;
  5884. }
  5885. .navbar-inverse .navbar-nav > .dropdown > a .caret {
  5886. border-top-color: #ddd;
  5887. border-bottom-color: #ddd;
  5888. }
  5889. .navbar-inverse .navbar-nav > .open > a .caret,
  5890. .navbar-inverse .navbar-nav > .open > a:hover .caret,
  5891. .navbar-inverse .navbar-nav > .open > a:focus .caret {
  5892. border-top-color: #fff;
  5893. border-bottom-color: #fff;
  5894. }
  5895. @media (max-width: 767px) {
  5896. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  5897. border-color: #114571;
  5898. }
  5899. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  5900. color: #ddd;
  5901. }
  5902. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  5903. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  5904. color: #fff;
  5905. background-color: #1c71b8;
  5906. }
  5907. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  5908. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  5909. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  5910. color: #fff;
  5911. background-color: #1e7cc9;
  5912. }
  5913. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  5914. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  5915. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  5916. color: #444;
  5917. background-color: transparent;
  5918. }
  5919. }
  5920. .navbar-inverse .navbar-link {
  5921. color: #ddd;
  5922. }
  5923. .navbar-inverse .navbar-link:hover {
  5924. color: #fff;
  5925. }
  5926. .navbar-form {
  5927. padding: 10px 10px;
  5928. margin-top: 4px;
  5929. margin-right: -10px;
  5930. margin-bottom: 4px;
  5931. margin-left: -10px;
  5932. border-top: 1px solid transparent;
  5933. border-bottom: 1px solid transparent;
  5934. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  5935. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  5936. }
  5937. @media (min-width: 768px) {
  5938. .navbar-form .form-group {
  5939. display: inline-block;
  5940. margin-bottom: 0;
  5941. vertical-align: middle;
  5942. }
  5943. .navbar-form .form-control {
  5944. display: inline-block;
  5945. }
  5946. .navbar-form .radio,
  5947. .navbar-form .checkbox {
  5948. display: inline-block;
  5949. padding-left: 0;
  5950. margin-top: 0;
  5951. margin-bottom: 0;
  5952. }
  5953. .navbar-form .radio input[type="radio"],
  5954. .navbar-form .checkbox input[type="checkbox"] {
  5955. float: none;
  5956. margin-left: 0;
  5957. }
  5958. }
  5959. @media (max-width: 767px) {
  5960. .navbar-form .form-group {
  5961. margin-bottom: 5px;
  5962. }
  5963. }
  5964. @media (min-width: 768px) {
  5965. .navbar-form {
  5966. width: auto;
  5967. padding-top: 0;
  5968. padding-bottom: 0;
  5969. margin-right: 0;
  5970. margin-left: 0;
  5971. border: 0;
  5972. -webkit-box-shadow: none;
  5973. box-shadow: none;
  5974. }
  5975. }
  5976. .navbar-fixed-left {
  5977. position: fixed;
  5978. top: 0;
  5979. left: 0;
  5980. z-index: 1030;
  5981. height: 100%;
  5982. background: #282828;
  5983. border-radius: 0;
  5984. }
  5985. .navbar-fixed-left,
  5986. .navbar-fixed-left .navbar-nav,
  5987. .navbar-fixed-left .navbar-nav > li,
  5988. .navbar-fixed-left .navbar-header,
  5989. .navbar-fixed-left .navbar-form {
  5990. float: none;
  5991. }
  5992. .navbar-fixed-left .navbar-collapse {
  5993. max-height: 100%;
  5994. padding: 0;
  5995. padding-bottom: 60px;
  5996. overflow: auto !important;
  5997. overflow-x: hidden;
  5998. overflow-y: auto !important;
  5999. }
  6000. .navbar-fixed-left .navbar-nav.navbar-right,
  6001. .navbar-fixed-left .navbar-nav,
  6002. .navbar-fixed-left .navbar-form {
  6003. margin: 7.5px 0;
  6004. }
  6005. .navbar-fixed-left .navbar-toggle {
  6006. display: none;
  6007. }
  6008. .navbar-fixed-left.navbar-default .navbar-header {
  6009. border-color: rgba(0, 0, 0, .05);
  6010. border-bottom: 1px solid #ddd;
  6011. }
  6012. .navbar-fixed-left.navbar-default .navbar-nav > li.nav-heading {
  6013. background: none;
  6014. }
  6015. .navbar-fixed-left.navbar-inverse {
  6016. border-color: #282828;
  6017. }
  6018. .navbar-fixed-left.navbar-inverse .navbar-header {
  6019. border-color: rgba(255, 255, 255, .05);
  6020. border-bottom: 1px solid #333;
  6021. }
  6022. .navbar-fixed-left.navbar-inverse .navbar-nav {
  6023. background: #1c1c1c;
  6024. }
  6025. .navbar-fixed-left.navbar-inverse .navbar-nav.collapsed {
  6026. background: none;
  6027. }
  6028. .navbar-fixed-left.navbar-inverse .navbar-nav > li.nav-heading {
  6029. background: none;
  6030. }
  6031. .navbar-fixed-left .navbar-nav {
  6032. padding: 5px 0;
  6033. margin: 0;
  6034. }
  6035. .navbar-fixed-left .navbar-nav > li.nav-heading + li > a {
  6036. -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .1) inset;
  6037. box-shadow: 0 1px 0 rgba(0, 0, 0, .1) inset;
  6038. }
  6039. .navbar-fixed-left .navbar-nav > li > a,
  6040. .navbar-fixed-left .navbar-nav > li.nav-heading {
  6041. padding-top: 6px;
  6042. padding-bottom: 6px;
  6043. overflow: hidden;
  6044. text-overflow: ellipsis;
  6045. white-space: nowrap;
  6046. }
  6047. .navbar-fixed-left.navbar-collapsed .navbar-nav > li > a {
  6048. padding-left: 30px;
  6049. }
  6050. .navbar-fixed-left.navbar-collapsed .navbar-nav > li.nav-heading {
  6051. padding-left: 30px;
  6052. cursor: pointer;
  6053. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6054. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6055. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6056. }
  6057. .navbar-fixed-left.navbar-collapsed .navbar-nav > li.nav-heading:before {
  6058. position: absolute;
  6059. top: 5px;
  6060. left: 13px;
  6061. display: inline-block;
  6062. font-family: ZenIcon;
  6063. content: "\e6e3";
  6064. opacity: .4;
  6065. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6066. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6067. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6068. }
  6069. .navbar-fixed-left.navbar-collapsed .navbar-nav > li.nav-heading:hover:before {
  6070. opacity: 1;
  6071. }
  6072. .navbar-fixed-left.navbar-collapsed .navbar-nav.collapsed {
  6073. padding-bottom: 1px;
  6074. }
  6075. .navbar-fixed-left.navbar-collapsed .navbar-nav.collapsed > li > a {
  6076. display: none;
  6077. }
  6078. .navbar-fixed-left.navbar-collapsed .navbar-nav.collapsed > li.nav-heading {
  6079. display: block;
  6080. }
  6081. .navbar-fixed-left.navbar-collapsed .navbar-nav.collapsed > li.nav-heading:before {
  6082. content: "\e6e1";
  6083. }
  6084. .navbar-fixed-left.navbar-collapsed.navbar-default .navbar-nav > li.nav-heading:hover {
  6085. color: #404040;
  6086. background-color: #e3e3e3;
  6087. }
  6088. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-nav > li.nav-heading:hover {
  6089. color: #eaeaea;
  6090. background-color: #124b79;
  6091. }
  6092. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-collapse {
  6093. border-color: #353535;
  6094. }
  6095. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-toggle {
  6096. border-color: #ddd;
  6097. }
  6098. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-nav > li.nav-heading:hover,
  6099. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-nav > li > a:hover,
  6100. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-nav > li > a:focus,
  6101. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-toggle:hover,
  6102. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-toggle:focus {
  6103. background: #0f0f0f;
  6104. }
  6105. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-nav > .active > a,
  6106. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-nav > .active > a:hover,
  6107. .navbar-fixed-left.navbar-collapsed.navbar-inverse .navbar-nav > .active > a:focus {
  6108. background: #020202;
  6109. -webkit-box-shadow: 2px 0 0 #108bf1 inset;
  6110. box-shadow: 2px 0 0 #108bf1 inset;
  6111. }
  6112. .fade {
  6113. opacity: 0;
  6114. -webkit-transition: opacity .15s linear;
  6115. -o-transition: opacity .15s linear;
  6116. transition: opacity .15s linear;
  6117. }
  6118. .fade.in {
  6119. opacity: 1;
  6120. }
  6121. .scale {
  6122. -webkit-transition: all .15s linear;
  6123. -o-transition: all .15s linear;
  6124. transition: all .15s linear;
  6125. -webkit-transform: scale(.8);
  6126. -ms-transform: scale(.8);
  6127. -o-transform: scale(.8);
  6128. transform: scale(.8);
  6129. }
  6130. .scale.in {
  6131. -webkit-transform: scale(1);
  6132. -ms-transform: scale(1);
  6133. -o-transform: scale(1);
  6134. transform: scale(1);
  6135. }
  6136. .collapse {
  6137. display: none;
  6138. }
  6139. .collapse.in {
  6140. display: block;
  6141. }
  6142. .collapsing {
  6143. position: relative;
  6144. height: 0;
  6145. overflow: hidden;
  6146. -webkit-transition: height .35s ease;
  6147. -o-transition: height .35s ease;
  6148. transition: height .35s ease;
  6149. }
  6150. .modal-open {
  6151. overflow: hidden;
  6152. }
  6153. .modal {
  6154. position: fixed;
  6155. top: 0;
  6156. right: 0;
  6157. bottom: 0;
  6158. left: 0;
  6159. z-index: 1050;
  6160. display: none;
  6161. overflow: hidden;
  6162. -webkit-overflow-scrolling: touch;
  6163. outline: 0;
  6164. }
  6165. .modal.fade .modal-dialog {
  6166. -webkit-transition: -webkit-transform .3s ease-out;
  6167. -o-transition: -o-transform .3s ease-out;
  6168. transition: transform .3s ease-out;
  6169. -webkit-transform: translate3d(0, -25%, 0);
  6170. transform: translate3d(0, -25%, 0);
  6171. }
  6172. .modal.in .modal-dialog {
  6173. -webkit-transform: translate3d(0, 0, 0);
  6174. transform: translate3d(0, 0, 0);
  6175. }
  6176. .modal > .loader {
  6177. display: none;
  6178. }
  6179. .modal.modal-loading .modal-dialog {
  6180. opacity: 0;
  6181. }
  6182. .modal.modal-loading .loader {
  6183. position: absolute;
  6184. top: 35%;
  6185. left: 50%;
  6186. display: block;
  6187. width: 80px;
  6188. margin-left: -40px;
  6189. font-size: 56px;
  6190. color: #fff;
  6191. text-align: center;
  6192. }
  6193. .modal-open .modal {
  6194. overflow-x: hidden;
  6195. overflow-y: auto;
  6196. }
  6197. .modal-iframe .modal-body > iframe {
  6198. border-radius: 0 0 0 0;
  6199. }
  6200. .modal-dialog {
  6201. position: relative;
  6202. width: auto;
  6203. background-color: #fff;
  6204. -webkit-background-clip: padding-box;
  6205. background-clip: padding-box;
  6206. border: 1px solid #999;
  6207. border: 1px solid rgba(0, 0, 0, .2);
  6208. border-radius: 0;
  6209. outline: 0;
  6210. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  6211. box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  6212. }
  6213. /* full screen modal */
  6214. .modal-fullscreen .modal-dialog {
  6215. width: 100%!important;
  6216. height: 100%!important;
  6217. border-radius: 0;
  6218. }
  6219. .modal-backdrop {
  6220. position: fixed;
  6221. top: 0;
  6222. right: 0;
  6223. bottom: 0;
  6224. left: 0;
  6225. z-index: 1040;
  6226. background-color: #000;
  6227. }
  6228. .modal-backdrop.fade {
  6229. filter: alpha(opacity=0);
  6230. opacity: 0;
  6231. }
  6232. .modal-backdrop.in {
  6233. filter: alpha(opacity=50);
  6234. opacity: .5;
  6235. }
  6236. .modal-header {
  6237. min-height: 16.53846154px;
  6238. padding: 15px;
  6239. border-bottom: 1px solid #e5e5e5;
  6240. }
  6241. .modal-header .close {
  6242. margin-top: -2px;
  6243. }
  6244. .modal-title {
  6245. margin: 0;
  6246. line-height: 1.53846154;
  6247. }
  6248. .modal-body {
  6249. position: relative;
  6250. padding: 15px;
  6251. }
  6252. .modal-footer {
  6253. padding: 15px;
  6254. text-align: right;
  6255. border-top: 1px solid #e5e5e5;
  6256. }
  6257. .modal-footer .btn + .btn {
  6258. margin-bottom: 0;
  6259. margin-left: 5px;
  6260. }
  6261. .modal-footer .btn-group .btn + .btn {
  6262. margin-left: -1px;
  6263. }
  6264. .modal-footer .btn-block + .btn-block {
  6265. margin-left: 0;
  6266. }
  6267. .modal-scrollbar-measure {
  6268. position: absolute;
  6269. top: -9999px;
  6270. width: 50px;
  6271. height: 50px;
  6272. overflow: scroll;
  6273. }
  6274. @media (min-width: 768px) {
  6275. .modal-dialog {
  6276. width: 600px;
  6277. margin: 30px auto;
  6278. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  6279. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  6280. }
  6281. .modal-sm {
  6282. width: 300px;
  6283. }
  6284. }
  6285. @media (min-width: 992px) {
  6286. .modal-lg {
  6287. width: 900px;
  6288. }
  6289. }
  6290. .tooltip {
  6291. position: absolute;
  6292. z-index: 1030;
  6293. display: block;
  6294. font-size: 12px;
  6295. line-height: 1.4;
  6296. visibility: visible;
  6297. filter: alpha(opacity=0);
  6298. opacity: 0;
  6299. }
  6300. .tooltip.in {
  6301. filter: alpha(opacity=100);
  6302. opacity: 1;
  6303. }
  6304. .tooltip.top {
  6305. padding: 5px 0;
  6306. margin-top: -3px;
  6307. }
  6308. .tooltip.right {
  6309. padding: 0 5px;
  6310. margin-left: 3px;
  6311. }
  6312. .tooltip.bottom {
  6313. padding: 5px 0;
  6314. margin-top: 3px;
  6315. }
  6316. .tooltip.left {
  6317. padding: 0 5px;
  6318. margin-left: -3px;
  6319. }
  6320. .tooltip-inner {
  6321. max-width: 200px;
  6322. padding: 3px 8px;
  6323. color: #fff;
  6324. text-align: center;
  6325. text-decoration: none;
  6326. background-color: #353535;
  6327. border-radius: 0;
  6328. }
  6329. .tooltip-arrow {
  6330. position: absolute;
  6331. width: 0;
  6332. height: 0;
  6333. border-color: transparent;
  6334. border-style: solid;
  6335. }
  6336. .tooltip.top .tooltip-arrow {
  6337. bottom: 0;
  6338. left: 50%;
  6339. margin-left: -5px;
  6340. border-width: 5px 5px 0;
  6341. border-top-color: #353535;
  6342. }
  6343. .tooltip.top-left .tooltip-arrow {
  6344. bottom: 0;
  6345. left: 5px;
  6346. border-width: 5px 5px 0;
  6347. border-top-color: #353535;
  6348. }
  6349. .tooltip.top-right .tooltip-arrow {
  6350. right: 5px;
  6351. bottom: 0;
  6352. border-width: 5px 5px 0;
  6353. border-top-color: #353535;
  6354. }
  6355. .tooltip.right .tooltip-arrow {
  6356. top: 50%;
  6357. left: 0;
  6358. margin-top: -5px;
  6359. border-width: 5px 5px 5px 0;
  6360. border-right-color: #353535;
  6361. }
  6362. .tooltip.left .tooltip-arrow {
  6363. top: 50%;
  6364. right: 0;
  6365. margin-top: -5px;
  6366. border-width: 5px 0 5px 5px;
  6367. border-left-color: #353535;
  6368. }
  6369. .tooltip.bottom .tooltip-arrow {
  6370. top: 0;
  6371. left: 50%;
  6372. margin-left: -5px;
  6373. border-width: 0 5px 5px;
  6374. border-bottom-color: #353535;
  6375. }
  6376. .tooltip.bottom-left .tooltip-arrow {
  6377. top: 0;
  6378. left: 5px;
  6379. border-width: 0 5px 5px;
  6380. border-bottom-color: #353535;
  6381. }
  6382. .tooltip.bottom-right .tooltip-arrow {
  6383. top: 0;
  6384. right: 5px;
  6385. border-width: 0 5px 5px;
  6386. border-bottom-color: #353535;
  6387. }
  6388. .popover {
  6389. position: absolute;
  6390. top: 0;
  6391. left: 0;
  6392. z-index: 1010;
  6393. display: none;
  6394. max-width: 300px;
  6395. padding: 1px;
  6396. text-align: left;
  6397. white-space: normal;
  6398. background-color: #fff;
  6399. -webkit-background-clip: padding-box;
  6400. background-clip: padding-box;
  6401. border: 1px solid #ccc;
  6402. border: 1px solid rgba(0, 0, 0, .2);
  6403. border-radius: 0;
  6404. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  6405. box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  6406. }
  6407. .popover.top {
  6408. margin-top: -10px;
  6409. }
  6410. .popover.right {
  6411. margin-left: 10px;
  6412. }
  6413. .popover.bottom {
  6414. margin-top: 10px;
  6415. }
  6416. .popover.left {
  6417. margin-left: -10px;
  6418. }
  6419. .popover.no-arrow.top {
  6420. margin-top: 0;
  6421. }
  6422. .popover.no-arrow.right {
  6423. margin-left: 0;
  6424. }
  6425. .popover.no-arrow.bottom {
  6426. margin-top: 0;
  6427. }
  6428. .popover.no-arrow.left {
  6429. margin-left: 0;
  6430. }
  6431. .popover-title {
  6432. padding: 8px 14px;
  6433. margin: 0;
  6434. font-size: 13px;
  6435. font-weight: normal;
  6436. line-height: 18px;
  6437. background-color: #f7f7f7;
  6438. border-bottom: 1px solid #ebebeb;
  6439. border-radius: 5px 5px 0 0;
  6440. }
  6441. .popover-content {
  6442. padding: 9px 14px;
  6443. }
  6444. .popover .arrow,
  6445. .popover .arrow:after {
  6446. position: absolute;
  6447. display: block;
  6448. width: 0;
  6449. height: 0;
  6450. border-color: transparent;
  6451. border-style: solid;
  6452. }
  6453. .popover .arrow {
  6454. border-width: 11px;
  6455. }
  6456. .popover .arrow:after {
  6457. content: "";
  6458. border-width: 10px;
  6459. }
  6460. .popover.top .arrow {
  6461. bottom: -11px;
  6462. left: 50%;
  6463. margin-left: -11px;
  6464. border-top-color: #999;
  6465. border-top-color: rgba(0, 0, 0, .25);
  6466. border-bottom-width: 0;
  6467. }
  6468. .popover.top .arrow:after {
  6469. bottom: 1px;
  6470. margin-left: -10px;
  6471. content: " ";
  6472. border-top-color: #fff;
  6473. border-bottom-width: 0;
  6474. }
  6475. .popover.right .arrow {
  6476. top: 50%;
  6477. left: -11px;
  6478. margin-top: -11px;
  6479. border-right-color: #999;
  6480. border-right-color: rgba(0, 0, 0, .25);
  6481. border-left-width: 0;
  6482. }
  6483. .popover.right .arrow:after {
  6484. bottom: -10px;
  6485. left: 1px;
  6486. content: " ";
  6487. border-right-color: #fff;
  6488. border-left-width: 0;
  6489. }
  6490. .popover.bottom .arrow {
  6491. top: -11px;
  6492. left: 50%;
  6493. margin-left: -11px;
  6494. border-top-width: 0;
  6495. border-bottom-color: #999;
  6496. border-bottom-color: rgba(0, 0, 0, .25);
  6497. }
  6498. .popover.bottom .arrow:after {
  6499. top: 1px;
  6500. margin-left: -10px;
  6501. content: " ";
  6502. border-top-width: 0;
  6503. border-bottom-color: #fff;
  6504. }
  6505. .popover.left .arrow {
  6506. top: 50%;
  6507. right: -11px;
  6508. margin-top: -11px;
  6509. border-right-width: 0;
  6510. border-left-color: #999;
  6511. border-left-color: rgba(0, 0, 0, .25);
  6512. }
  6513. .popover.left .arrow:after {
  6514. right: 1px;
  6515. bottom: -10px;
  6516. content: " ";
  6517. border-right-width: 0;
  6518. border-left-color: #fff;
  6519. }
  6520. .caret {
  6521. display: inline-block;
  6522. width: 0;
  6523. height: 0;
  6524. margin-left: 2px;
  6525. vertical-align: middle;
  6526. border-top: 4px solid #353535;
  6527. border-right: 4px solid transparent;
  6528. border-bottom: 0 dotted;
  6529. border-left: 4px solid transparent;
  6530. }
  6531. .btn-default .caret {
  6532. border-top-color: #353535;
  6533. }
  6534. .btn-primary .caret,
  6535. .btn-success .caret,
  6536. .btn-warning .caret,
  6537. .btn-danger .caret,
  6538. .btn-info .caret {
  6539. border-top-color: #fff;
  6540. }
  6541. .dropdown {
  6542. position: relative;
  6543. }
  6544. .dropdown-toggle:focus {
  6545. outline: 0;
  6546. }
  6547. .dropdown-menu {
  6548. position: absolute;
  6549. top: 100%;
  6550. left: 0;
  6551. z-index: 1000;
  6552. display: none;
  6553. float: left;
  6554. min-width: 160px;
  6555. padding: 5px 0;
  6556. margin: 2px 0 0;
  6557. font-size: 13px;
  6558. list-style: none;
  6559. background-color: #fff;
  6560. -webkit-background-clip: padding-box;
  6561. background-clip: padding-box;
  6562. border: 1px solid #cbcbcb;
  6563. border: 1px solid rgba(0, 0, 0, .15);
  6564. border-radius: 0;
  6565. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  6566. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  6567. }
  6568. .dropdown-menu.pull-right {
  6569. right: 0;
  6570. left: auto;
  6571. }
  6572. .dropdown-menu .divider {
  6573. height: 1px;
  6574. margin: 9px 0;
  6575. overflow: hidden;
  6576. background-color: #e5e5e5;
  6577. }
  6578. .dropdown-menu > li > a {
  6579. display: block;
  6580. padding: 3px 20px;
  6581. clear: both;
  6582. font-weight: normal;
  6583. line-height: 1.53846154;
  6584. color: #353535;
  6585. white-space: nowrap;
  6586. }
  6587. .dropdown-menu > li > a:hover,
  6588. .dropdown-menu > li > a:focus {
  6589. color: #fff;
  6590. text-decoration: none;
  6591. background-color: #108bf1;
  6592. }
  6593. .dropdown-menu > .active > a,
  6594. .dropdown-menu > .active > a:hover,
  6595. .dropdown-menu > .active > a:focus {
  6596. color: #fff;
  6597. text-decoration: none;
  6598. background-color: #108bf1;
  6599. outline: 0;
  6600. }
  6601. .dropdown-menu > .disabled > a,
  6602. .dropdown-menu > .disabled > a:hover,
  6603. .dropdown-menu > .disabled > a:focus {
  6604. color: #ddd;
  6605. }
  6606. .dropdown-menu > .disabled > a:hover,
  6607. .dropdown-menu > .disabled > a:focus {
  6608. text-decoration: none;
  6609. cursor: not-allowed;
  6610. background-color: transparent;
  6611. background-image: none;
  6612. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  6613. }
  6614. .open > .dropdown-menu {
  6615. display: block;
  6616. }
  6617. .open > a {
  6618. outline: 0;
  6619. }
  6620. .dropdown-header {
  6621. display: block;
  6622. padding: 3px 20px;
  6623. font-size: 12px;
  6624. font-weight: bold;
  6625. line-height: 1.53846154;
  6626. color: #808080;
  6627. }
  6628. .dropdown-backdrop {
  6629. position: fixed;
  6630. top: 0;
  6631. right: 0;
  6632. bottom: 0;
  6633. left: 0;
  6634. z-index: 990;
  6635. }
  6636. .pull-right > .dropdown-menu {
  6637. right: 0;
  6638. left: auto;
  6639. }
  6640. .dropup .caret,
  6641. .navbar-fixed-bottom .dropdown .caret {
  6642. content: "";
  6643. border-top: 0 dotted;
  6644. border-bottom: 4px solid #353535;
  6645. }
  6646. .dropup .dropdown-menu,
  6647. .navbar-fixed-bottom .dropdown .dropdown-menu {
  6648. top: auto;
  6649. bottom: 100%;
  6650. margin-bottom: 1px;
  6651. }
  6652. @media (min-width: 768px) {
  6653. .navbar-right .dropdown-menu {
  6654. right: 0;
  6655. left: auto;
  6656. }
  6657. }
  6658. .dropdown-submenu {
  6659. position: relative;
  6660. }
  6661. .dropdown-submenu > .dropdown-menu {
  6662. top: 0;
  6663. left: 100%;
  6664. margin-top: -6px;
  6665. margin-left: -1px;
  6666. border-radius: 0;
  6667. }
  6668. .dropdown-submenu:hover > .dropdown-menu {
  6669. display: block;
  6670. }
  6671. .dropup .dropdown-submenu > .dropdown-menu {
  6672. top: auto;
  6673. bottom: 0;
  6674. margin-top: 0;
  6675. margin-bottom: -2px;
  6676. border-radius: 0;
  6677. }
  6678. .dropdown-submenu > a:after {
  6679. display: block;
  6680. float: right;
  6681. width: 0;
  6682. height: 0;
  6683. margin-top: 5px;
  6684. margin-right: -10px;
  6685. content: " ";
  6686. border-color: transparent;
  6687. border-style: solid;
  6688. border-width: 5px 0 5px 5px;
  6689. border-left-color: #ccc;
  6690. }
  6691. .dropdown-submenu:hover > a:after {
  6692. border-left-color: #fff;
  6693. }
  6694. .dropdown-submenu.pull-left {
  6695. float: none;
  6696. }
  6697. .dropdown-submenu.pull-left > a {
  6698. min-width: 160px;
  6699. }
  6700. .dropdown-submenu.pull-left > .dropdown-menu {
  6701. left: -100%;
  6702. border-radius: 0;
  6703. }
  6704. .dropdown-submenu:hover > a,
  6705. .dropdown-submenu:focus > a {
  6706. color: #fff;
  6707. text-decoration: none;
  6708. background-color: #108bf1;
  6709. }
  6710. .carousel {
  6711. position: relative;
  6712. }
  6713. .carousel-inner {
  6714. position: relative;
  6715. width: 100%;
  6716. overflow: hidden;
  6717. }
  6718. .carousel-inner > .item {
  6719. position: relative;
  6720. display: none;
  6721. -webkit-transition: .6s ease-in-out left;
  6722. -o-transition: .6s ease-in-out left;
  6723. transition: .6s ease-in-out left;
  6724. }
  6725. .carousel-inner > .item > img,
  6726. .carousel-inner > .item > a > img {
  6727. display: block;
  6728. max-width: 100%;
  6729. height: auto;
  6730. line-height: 1;
  6731. }
  6732. .carousel-inner > .active,
  6733. .carousel-inner > .next,
  6734. .carousel-inner > .prev {
  6735. display: block;
  6736. }
  6737. .carousel-inner > .active {
  6738. left: 0;
  6739. }
  6740. .carousel-inner > .next,
  6741. .carousel-inner > .prev {
  6742. position: absolute;
  6743. top: 0;
  6744. width: 100%;
  6745. }
  6746. .carousel-inner > .next {
  6747. left: 100%;
  6748. }
  6749. .carousel-inner > .prev {
  6750. left: -100%;
  6751. }
  6752. .carousel-inner > .next.left,
  6753. .carousel-inner > .prev.right {
  6754. left: 0;
  6755. }
  6756. .carousel-inner > .active.left {
  6757. left: -100%;
  6758. }
  6759. .carousel-inner > .active.right {
  6760. left: 100%;
  6761. }
  6762. .carousel-control {
  6763. position: absolute;
  6764. top: 0;
  6765. bottom: 0;
  6766. left: 0;
  6767. width: 15%;
  6768. font-size: 20px;
  6769. color: #fff;
  6770. text-align: center;
  6771. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  6772. filter: alpha(opacity=50);
  6773. outline: none;
  6774. opacity: .5;
  6775. }
  6776. .carousel-control.left {
  6777. background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  6778. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .5) 0%), color-stop(rgba(0, 0, 0, .0001) 100%));
  6779. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  6780. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6781. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6782. background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6783. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6784. background-repeat: repeat-x;
  6785. }
  6786. .carousel-control.right {
  6787. right: 0;
  6788. left: auto;
  6789. background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  6790. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .0001) 0%), color-stop(rgba(0, 0, 0, .5) 100%));
  6791. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  6792. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6793. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6794. background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6795. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6796. background-repeat: repeat-x;
  6797. }
  6798. .carousel-control:hover,
  6799. .carousel-control:focus {
  6800. color: #fff;
  6801. text-decoration: none;
  6802. filter: alpha(opacity=90);
  6803. outline: none;
  6804. opacity: .9;
  6805. }
  6806. .carousel-control .icon-prev,
  6807. .carousel-control .icon-next,
  6808. .carousel-control .icon-chevron-left,
  6809. .carousel-control .icon-chevron-right {
  6810. position: absolute;
  6811. top: 50%;
  6812. z-index: 5;
  6813. display: inline-block;
  6814. }
  6815. .carousel-control .icon-prev,
  6816. .carousel-control .icon-chevron-left {
  6817. left: 50%;
  6818. }
  6819. .carousel-control .icon-next,
  6820. .carousel-control .icon-chevron-right {
  6821. right: 50%;
  6822. }
  6823. .carousel-control .icon-prev,
  6824. .carousel-control .icon-next {
  6825. width: 20px;
  6826. height: 20px;
  6827. margin-top: -10px;
  6828. margin-left: -10px;
  6829. font-family: serif;
  6830. }
  6831. .carousel-control .icon-prev:before {
  6832. content: '\2039';
  6833. }
  6834. .carousel-control .icon-next:before {
  6835. content: '\203a';
  6836. }
  6837. .carousel-caption {
  6838. position: absolute;
  6839. right: 15%;
  6840. bottom: 20px;
  6841. left: 15%;
  6842. z-index: 10;
  6843. padding-top: 20px;
  6844. padding-bottom: 20px;
  6845. color: #fff;
  6846. text-align: center;
  6847. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  6848. }
  6849. .carousel-caption .btn {
  6850. text-shadow: none;
  6851. }
  6852. @media screen and (min-width: 768px) {
  6853. .carousel-control .icon-prev,
  6854. .carousel-control .icon-next {
  6855. top: 40%;
  6856. width: 30px;
  6857. height: 30px;
  6858. margin-top: -15px;
  6859. margin-left: -15px;
  6860. font-size: 80px;
  6861. }
  6862. .carousel-control .icon-prev {
  6863. left: 30%;
  6864. }
  6865. .carousel-control .icon-next {
  6866. right: 25%;
  6867. }
  6868. .carousel-caption {
  6869. right: 20%;
  6870. left: 20%;
  6871. padding-bottom: 30px;
  6872. }
  6873. .carousel-indicators {
  6874. bottom: 20px;
  6875. }
  6876. }
  6877. .carousel-indicators {
  6878. position: absolute;
  6879. bottom: 10px;
  6880. left: 50%;
  6881. z-index: 15;
  6882. width: 60%;
  6883. padding-left: 0;
  6884. margin-left: -30%;
  6885. text-align: center;
  6886. list-style: none;
  6887. }
  6888. .carousel-indicators li {
  6889. display: inline-block;
  6890. width: 10px;
  6891. height: 10px;
  6892. margin: 1px;
  6893. text-indent: -999px;
  6894. cursor: pointer;
  6895. border: 1px solid #fff;
  6896. border-radius: 10px;
  6897. }
  6898. .carousel-indicators .active {
  6899. width: 12px;
  6900. height: 12px;
  6901. margin: 0;
  6902. background-color: #fff;
  6903. }
  6904. .modal-lightbox .modal-dialog {
  6905. position: relative;
  6906. max-width: 100%;
  6907. max-height: 100%;
  6908. margin-bottom: 0;
  6909. background: none;
  6910. border: none;
  6911. -webkit-box-shadow: none;
  6912. box-shadow: none;
  6913. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6914. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6915. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6916. }
  6917. .modal-lightbox .modal-dialog:hover .close,
  6918. .modal-lightbox .modal-dialog:focus .close {
  6919. filter: alpha(opacity=100);
  6920. opacity: 1;
  6921. }
  6922. .modal-lightbox .modal-dialog:hover .controller,
  6923. .modal-lightbox .modal-dialog:focus .controller {
  6924. filter: alpha(opacity=90);
  6925. outline: none;
  6926. opacity: .9;
  6927. }
  6928. .modal-lightbox .modal-dialog:hover .controller > .icon,
  6929. .modal-lightbox .modal-dialog:focus .controller > .icon {
  6930. -webkit-box-shadow: 1px 1px 16px rgba(0, 0, 0, .5);
  6931. box-shadow: 1px 1px 16px rgba(0, 0, 0, .5);
  6932. }
  6933. .modal-lightbox .close {
  6934. position: absolute;
  6935. top: -15px;
  6936. right: -13px;
  6937. display: block;
  6938. width: 30px;
  6939. height: 30px;
  6940. font-size: 14px;
  6941. color: #fff;
  6942. text-align: center;
  6943. background-color: #333;
  6944. filter: alpha(opacity=90);
  6945. border: 1px solid #fff;
  6946. border-radius: 15px;
  6947. -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .5);
  6948. box-shadow: 0 5px 5px rgba(0, 0, 0, .5);
  6949. opacity: .9;
  6950. -webkit-radius: 15px;
  6951. }
  6952. .modal-lightbox.lightbox-full .close {
  6953. top: 10px;
  6954. right: 10px;
  6955. }
  6956. .modal-lightbox .controller {
  6957. position: absolute;
  6958. top: 0;
  6959. display: none;
  6960. height: 100%;
  6961. padding: 10px 20px;
  6962. line-height: 100%;
  6963. color: #fff;
  6964. cursor: pointer;
  6965. background: none;
  6966. filter: alpha(opacity=5);
  6967. border: none;
  6968. opacity: .05;
  6969. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6970. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6971. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  6972. }
  6973. .modal-lightbox .controller.show {
  6974. display: block;
  6975. }
  6976. .modal-lightbox .controller > .icon {
  6977. display: inline-block;
  6978. width: 50px;
  6979. height: 50px;
  6980. line-height: 50px;
  6981. background-color: #333;
  6982. border: 2px solid #fff;
  6983. border-radius: 25px;
  6984. -webkit-radius: 25px;
  6985. }
  6986. .modal-lightbox .controller > .icon:before {
  6987. font-size: 28px;
  6988. }
  6989. .modal-lightbox .controller:hover {
  6990. filter: alpha(opacity=100);
  6991. opacity: 1;
  6992. }
  6993. .modal-lightbox .controller.prev {
  6994. left: 0;
  6995. }
  6996. .modal-lightbox .controller.next {
  6997. right: 0;
  6998. }
  6999. .modal-lightbox .caption {
  7000. display: none;
  7001. }
  7002. .modal-lightbox.lightbox-with-caption .caption {
  7003. position: absolute;
  7004. bottom: 0;
  7005. display: block;
  7006. width: 100%;
  7007. padding: 10px 15px;
  7008. color: #fff;
  7009. text-align: center;
  7010. text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
  7011. background: rgba(0, 0, 0, .15);
  7012. opacity: .5;
  7013. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7014. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7015. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7016. }
  7017. .modal-lightbox.lightbox-with-caption .modal-dialog:hover .caption {
  7018. background: rgba(0, 0, 0, .6);
  7019. opacity: 1;
  7020. }
  7021. .lightbox-img {
  7022. display: block;
  7023. width: inherit;
  7024. max-width: 100%;
  7025. height: auto;
  7026. padding: 0;
  7027. margin: 0 auto;
  7028. cursor: pointer;
  7029. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  7030. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  7031. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7032. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7033. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7034. }
  7035. .messager {
  7036. position: fixed;
  7037. z-index: 99999;
  7038. max-width: 80%;
  7039. padding-right: 50px;
  7040. color: #fff;
  7041. background-color: #353535;
  7042. background-color: rgba(0, 0, 0, .8);
  7043. border-radius: 20px;
  7044. }
  7045. .messager.top {
  7046. top: 20px;
  7047. }
  7048. .messager.top-left {
  7049. top: 20px;
  7050. left: 20px;
  7051. }
  7052. .messager.top-right {
  7053. top: 20px;
  7054. right: 20px;
  7055. }
  7056. .messager.bottom {
  7057. bottom: 20px;
  7058. }
  7059. .messager.bottom-left {
  7060. bottom: 20px;
  7061. left: 20px;
  7062. }
  7063. .messager.bottom-right {
  7064. right: 20px;
  7065. bottom: 20px;
  7066. }
  7067. .messager-content {
  7068. padding: 10px 20px;
  7069. }
  7070. .messager-content > [class^='icon-'] {
  7071. display: inline-block;
  7072. margin-right: 8px;
  7073. }
  7074. .messager-actions {
  7075. position: absolute;
  7076. top: 10px;
  7077. right: 15px;
  7078. }
  7079. .messager-actions > .action {
  7080. color: #fafafa;
  7081. color: rgba(255, 255, 255, .6);
  7082. text-shadow: none;
  7083. background: none;
  7084. border: none;
  7085. }
  7086. .messager-actions > .action.close {
  7087. font-size: 20px;
  7088. font-weight: normal;
  7089. opacity: 1;
  7090. }
  7091. .messager-actions > .action:hover {
  7092. color: #fff;
  7093. }
  7094. .messager-primary {
  7095. background-color: #108bf1;
  7096. }
  7097. .messager-success {
  7098. background-color: #2ac25f;
  7099. }
  7100. .messager-info {
  7101. background-color: #00c3b6;
  7102. }
  7103. .messager-warning {
  7104. background-color: #f39c11;
  7105. }
  7106. .messager-danger {
  7107. background-color: #ee4e2f;
  7108. }
  7109. .messager-important {
  7110. background-color: #a76531;
  7111. }
  7112. .messager-special {
  7113. background-color: #6f5499;
  7114. }
  7115. .menu > .btn {
  7116. display: block;
  7117. width: 100%;
  7118. padding-right: 0;
  7119. padding-left: 0;
  7120. margin-bottom: 5px;
  7121. }
  7122. .menu > .btn + .nav {
  7123. margin-top: 15px;
  7124. }
  7125. .menu > .nav > li {
  7126. float: none;
  7127. }
  7128. .menu > .nav > li.nav-parent > a > .nav-parent-fold-icon {
  7129. position: absolute;
  7130. top: 11px;
  7131. right: 10px;
  7132. display: block;
  7133. filter: alpha(opacity=45);
  7134. opacity: .45;
  7135. -webkit-transition: all .5s;
  7136. -o-transition: all .5s;
  7137. transition: all .5s;
  7138. }
  7139. .menu > .nav > li.nav-parent > a:hover > .nav-parent-fold-icon {
  7140. filter: alpha(opacity=75);
  7141. opacity: .75;
  7142. }
  7143. .menu > .nav > li > .nav {
  7144. display: none;
  7145. background-color: #f6f6f6;
  7146. }
  7147. .menu > .nav > li > .nav > li > a {
  7148. padding-left: 35px;
  7149. margin-top: -1px;
  7150. border: 1px solid #ddd;
  7151. }
  7152. .menu > .nav > li > .nav > li > a:hover,
  7153. .menu > .nav > li > .nav > li > a:focus {
  7154. background-color: #e4e4e4;
  7155. }
  7156. .menu > .nav > li > .nav > li.active > a,
  7157. .menu > .nav > li > .nav > li.active > a:hover,
  7158. .menu > .nav > li > .nav > li.active > a:focus {
  7159. color: #fff;
  7160. background-color: #108bf1;
  7161. border-color: #108bf1;
  7162. }
  7163. .menu > .nav > li > .nav > li.active > a [class*='icon-'],
  7164. .menu > .nav > li > .nav > li.active > a:hover [class*='icon-'],
  7165. .menu > .nav > li > .nav > li.active > a:focus [class*='icon-'] {
  7166. color: #fff;
  7167. }
  7168. .menu > .nav > li > a > [class*='icon-'],
  7169. .menu > .nav > li > .nav > li > a > [class*='icon-'] {
  7170. display: inline-block;
  7171. margin-right: 5px;
  7172. color: #808080;
  7173. }
  7174. .menu > .nav > li + li {
  7175. margin-top: -1px;
  7176. margin-left: 0;
  7177. }
  7178. .menu > .nav > li,
  7179. .menu > .nav > li > a {
  7180. margin-left: 0;
  7181. }
  7182. .menu > .nav > li:first-child {
  7183. margin-top: 0;
  7184. }
  7185. .menu > .nav > li:first-child > a,
  7186. .menu > .nav > li:first-child.nav-heading {
  7187. margin-left: 0;
  7188. border-top-left-radius: 0;
  7189. border-top-right-radius: 0;
  7190. border-bottom-right-radius: 0;
  7191. border-bottom-left-radius: 0;
  7192. }
  7193. .menu > .nav > li:last-child > a {
  7194. border-top-left-radius: 0;
  7195. border-top-right-radius: 0;
  7196. border-bottom-right-radius: 0;
  7197. border-bottom-left-radius: 0;
  7198. }
  7199. .menu > .nav > li:first-child > a,
  7200. .menu > .nav > li:first-child.nav-heading {
  7201. border-top-left-radius: 0;
  7202. border-top-right-radius: 0;
  7203. }
  7204. .menu > .nav > li.active > a [class*='icon-'],
  7205. .menu > .nav > li.active > a:hover [class*='icon-'],
  7206. .menu > .nav > li.active > a:focus [class*='icon-'] {
  7207. color: #fff;
  7208. }
  7209. .menu > .nav > li.show > a,
  7210. .menu > .nav > li.show > a:hover,
  7211. .menu > .nav > li.show > a:focus {
  7212. color: #353535;
  7213. background-color: #fff;
  7214. border-color: #ddd;
  7215. }
  7216. .menu > .nav > li.show > a > [class*='icon-'],
  7217. .menu > .nav > li.show > a:hover > [class*='icon-'],
  7218. .menu > .nav > li.show > a:focus > [class*='icon-'] {
  7219. color: #353535;
  7220. }
  7221. .menu > .nav > li.show > a:hover {
  7222. background-color: #f1f1f1;
  7223. }
  7224. .menu > .nav > li.show:last-child > a {
  7225. border-bottom-right-radius: 0;
  7226. border-bottom-left-radius: 0;
  7227. }
  7228. .menu > .nav > li.show:last-child > .nav > li:last-child > a {
  7229. border-bottom-right-radius: 0;
  7230. border-bottom-left-radius: 0;
  7231. }
  7232. .menu > .nav > li.show > .nav {
  7233. display: block;
  7234. }
  7235. .menu > .nav > li.nav-heading {
  7236. background-color: #f1f1f1;
  7237. border: 1px solid #ddd;
  7238. }
  7239. .bootbox.modal .modal-dialog {
  7240. width: 400px;
  7241. }
  7242. .article {
  7243. padding: 20px;
  7244. }
  7245. .article > header h1,
  7246. .article > header h2,
  7247. .article > header h3 {
  7248. line-height: 1.5;
  7249. }
  7250. .article > header > .abstract,
  7251. .article > header > dl {
  7252. padding: 10px 15px;
  7253. font-size: 12px;
  7254. color: #686868;
  7255. background-color: #f1f1f1;
  7256. border-radius: 0;
  7257. }
  7258. .article > header > .abstract > p:last-child,
  7259. .article > header > dl > p:last-child {
  7260. margin-bottom: 0;
  7261. }
  7262. .article > header > dl {
  7263. margin: 0;
  7264. border-bottom: 1px solid #e9e9e9;
  7265. }
  7266. .article > header > dl.pull-right {
  7267. background-color: transparent;
  7268. border: none;
  7269. }
  7270. .article > footer {
  7271. border-top: 1px dashed #d7d7d7;
  7272. }
  7273. .article > footer > p {
  7274. padding: 10px 15px;
  7275. }
  7276. .article-content {
  7277. padding: 20px 0;
  7278. font-size: 14px;
  7279. line-height: 1.78571429;
  7280. }
  7281. .article-content h1 {
  7282. font-size: 20px;
  7283. }
  7284. .article-content h2 {
  7285. font-size: 18px;
  7286. }
  7287. .article-content h3 {
  7288. font-size: 16px;
  7289. }
  7290. .article-content h4 {
  7291. margin-top: 15px;
  7292. font-size: 14px;
  7293. }
  7294. .article-content h5 {
  7295. margin-top: 15px;
  7296. font-size: 13px;
  7297. }
  7298. .article-content h6 {
  7299. margin-top: 15px;
  7300. font-size: 11px;
  7301. }
  7302. .article-content img {
  7303. margin: 10px 0;
  7304. }
  7305. .article-content p {
  7306. margin: 0;
  7307. }
  7308. .article-content p > img {
  7309. margin-right: 10px;
  7310. }
  7311. .article-content p > img[align='right'] {
  7312. margin-left: 10px;
  7313. }
  7314. .article-content dl {
  7315. padding-right: 2em;
  7316. padding-left: 2em;
  7317. }
  7318. .article-content table {
  7319. width: 100%;
  7320. margin-bottom: 20px;
  7321. }
  7322. .article-content table th,
  7323. .article-content table td {
  7324. padding: 8px;
  7325. line-height: 1.53846154;
  7326. vertical-align: top;
  7327. border-bottom: 1px solid #ddd;
  7328. -webkit-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  7329. -o-transition: all .3s cubic-bezier(.175, .885, .32, 1);
  7330. transition: all .3s cubic-bezier(.175, .885, .32, 1);
  7331. }
  7332. .article-content table > thead > tr > th {
  7333. vertical-align: bottom;
  7334. background-color: #f1f1f1;
  7335. border-bottom: 1px solid #ddd;
  7336. }
  7337. body.article-content {
  7338. padding: 8px;
  7339. }
  7340. .article-condensed {
  7341. padding: 20px 0;
  7342. }
  7343. .article-condensed > header {
  7344. padding: 0 20px;
  7345. }
  7346. .article-condensed > header > .abstract,
  7347. .article-condensed > header > dl {
  7348. padding: 10px 15px;
  7349. margin: 0 -20px;
  7350. }
  7351. .article-condensed > .article-content > p,
  7352. .article-condensed > .article-content > blockquote,
  7353. .article-condensed > .article-content > div,
  7354. .article-condensed > .article-content > ul,
  7355. .article-condensed > .article-content > ol,
  7356. .article-condensed > .article-content > h1,
  7357. .article-condensed > .article-content > h2,
  7358. .article-condensed > .article-content > h3,
  7359. .article-condensed > .article-content > h4,
  7360. .article-condensed > .article-content > h5,
  7361. .article-condensed > .article-content > h6 {
  7362. padding-right: 20px;
  7363. padding-left: 20px;
  7364. }
  7365. .article-condensed > .article-content > ul,
  7366. .article-condensed > .article-content > ol,
  7367. .article-condensed > .article-content > dl {
  7368. padding-left: 60px;
  7369. }
  7370. .article-condensed > .article-content > img {
  7371. border-radius: 0;
  7372. }
  7373. .article-condensed > .article-content > table {
  7374. border-right: none;
  7375. border-left: none;
  7376. }
  7377. .article-condensed > .article-content > table tr > td:first-child,
  7378. .article-condensed > .article-content > table tr > th:first-child {
  7379. padding-left: 20px;
  7380. border-left: none ;
  7381. }
  7382. .article-condensed > .article-content > table tr > td:last-child,
  7383. .article-condensed > .article-content > table tr > th:last-child {
  7384. padding-right: 20px;
  7385. border-right: none;
  7386. }
  7387. .article-condensed > footer {
  7388. border-top: 1px dashed #d7d7d7;
  7389. }
  7390. .article-condensed > footer > p {
  7391. padding: 10px 15px;
  7392. }
  7393. .article-condensed > footer > .pager-justify > .previous > a {
  7394. border-left: none;
  7395. }
  7396. .article-condensed > footer > .pager-justify > .next > a {
  7397. border-right: none;
  7398. }
  7399. .comments > header {
  7400. border-bottom: 1px solid #e5e5e5;
  7401. }
  7402. .comments > header > .alert {
  7403. padding: 7.5px 15px;
  7404. margin-bottom: -10px;
  7405. }
  7406. .comments > header h1,
  7407. .comments > header h2,
  7408. .comments > header h3 {
  7409. margin: 30px 0 20px;
  7410. }
  7411. .comments > footer {
  7412. padding-top: 10px;
  7413. }
  7414. .comments > footer > .reply-form > .avatar {
  7415. display: block;
  7416. float: left;
  7417. width: 40px;
  7418. height: 40px;
  7419. margin-top: 10px;
  7420. }
  7421. .comments > footer > .reply-form > .avatar + .form {
  7422. padding-left: 50px;
  7423. }
  7424. .comment {
  7425. padding: 10px 0;
  7426. border-bottom: 1px solid #e5e5e5;
  7427. }
  7428. .comment:before,
  7429. .comment:after {
  7430. /* 1 */
  7431. display: table;
  7432. content: " ";
  7433. /* 2 */
  7434. }
  7435. .comment:after {
  7436. clear: both;
  7437. }
  7438. .comment:before,
  7439. .comment:after {
  7440. /* 1 */
  7441. display: table;
  7442. content: " ";
  7443. /* 2 */
  7444. }
  7445. .comment:after {
  7446. clear: both;
  7447. }
  7448. .comment > .avatar,
  7449. .comment > .content {
  7450. display: block;
  7451. }
  7452. .comment > .avatar {
  7453. float: left;
  7454. width: 40px;
  7455. height: 40px;
  7456. margin-top: 10px;
  7457. }
  7458. .comment > .avatar + .content {
  7459. padding-left: 50px;
  7460. }
  7461. .comment > .content > .text {
  7462. padding-top: 5px;
  7463. }
  7464. .comment > .content > .actions > a {
  7465. display: inline-block;
  7466. padding-right: 5px;
  7467. padding-left: 2px;
  7468. color: #808080;
  7469. }
  7470. .comment:hover > .content > .actions > a {
  7471. color: #18609d;
  7472. }
  7473. .comment > .comments-list {
  7474. padding-top: 10px;
  7475. padding-bottom: 0;
  7476. padding-left: 30px;
  7477. margin-left: 20px;
  7478. border-left: 1px dashed #e5e5e5;
  7479. }
  7480. .comment > .comments-list > .comment {
  7481. border: none;
  7482. border-top: 1px solid #e5e5e5;
  7483. }
  7484. .comment > .comments-list > .comment:last-child {
  7485. padding-bottom: 0;
  7486. }
  7487. .list {
  7488. padding: 0 15px;
  7489. }
  7490. .list > header {
  7491. padding-bottom: 10px;
  7492. border-bottom: 1px solid #e5e5e5;
  7493. }
  7494. .items .item {
  7495. padding: 10px 0;
  7496. border-bottom: 1px solid #e5e5e5;
  7497. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7498. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7499. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7500. }
  7501. .items .item-heading > h6,
  7502. .items .item-heading h5,
  7503. .items .item-heading h4,
  7504. .items .item-heading h3,
  7505. .items .item-heading h2,
  7506. .items .item-heading h1 {
  7507. margin-top: 5px;
  7508. }
  7509. .items .item-content:before,
  7510. .items .item-content:after {
  7511. /* 1 */
  7512. display: table;
  7513. content: " ";
  7514. /* 2 */
  7515. }
  7516. .items .item-content:after {
  7517. clear: both;
  7518. }
  7519. .items .item-content:before,
  7520. .items .item-content:after {
  7521. /* 1 */
  7522. display: table;
  7523. content: " ";
  7524. /* 2 */
  7525. }
  7526. .items .item-content:after {
  7527. clear: both;
  7528. }
  7529. .items .item-content > .media {
  7530. margin: 5px 0;
  7531. }
  7532. .items .item-content > .media.pull-left {
  7533. margin: 0;
  7534. margin-right: 8px;
  7535. }
  7536. .items .item-content > .media.pull-right {
  7537. margin: 0;
  7538. margin-left: 8px;
  7539. }
  7540. .items .item-footer {
  7541. padding-top: 5px;
  7542. }
  7543. .items .item-footer > a {
  7544. color: #808080;
  7545. }
  7546. .items-hover .item:hover {
  7547. background-color: #f5f5f5;
  7548. }
  7549. .list-condensed {
  7550. padding: 0;
  7551. }
  7552. .list-condensed > header,
  7553. .list-condensed > footer,
  7554. .list-condensed > .items > .item {
  7555. padding-right: 15px;
  7556. padding-left: 15px;
  7557. }
  7558. .cards {
  7559. padding-top: 10px;
  7560. padding-bottom: 10px;
  7561. margin-right: -10px;
  7562. margin-left: -10px;
  7563. }
  7564. .cards:before,
  7565. .cards:after {
  7566. /* 1 */
  7567. display: table;
  7568. content: " ";
  7569. /* 2 */
  7570. }
  7571. .cards:after {
  7572. clear: both;
  7573. }
  7574. .cards:before,
  7575. .cards:after {
  7576. /* 1 */
  7577. display: table;
  7578. content: " ";
  7579. /* 2 */
  7580. }
  7581. .cards:after {
  7582. clear: both;
  7583. }
  7584. .card {
  7585. position: relative;
  7586. display: block;
  7587. padding: 0;
  7588. margin-bottom: 20px;
  7589. overflow: hidden;
  7590. border: 1px solid #ddd;
  7591. border-radius: 0;
  7592. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  7593. box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  7594. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7595. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7596. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7597. }
  7598. .card > img {
  7599. display: block;
  7600. max-width: 100%;
  7601. height: auto;
  7602. filter: alpha(opacity=100);
  7603. opacity: 1;
  7604. }
  7605. .card > .media-wrapper {
  7606. display: block;
  7607. width: 100%;
  7608. overflow: hidden;
  7609. text-align: center;
  7610. background-color: #f1f1f1;
  7611. filter: alpha(opacity=100);
  7612. opacity: 1;
  7613. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7614. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7615. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7616. }
  7617. .card > .media-wrapper > img {
  7618. max-width: 100%;
  7619. vertical-align: middle;
  7620. }
  7621. .card .card-heading {
  7622. display: block;
  7623. padding: 10px;
  7624. margin: 0;
  7625. overflow: hidden;
  7626. text-overflow: ellipsis;
  7627. white-space: nowrap;
  7628. }
  7629. .card .card-content,
  7630. .card .card-actions {
  7631. padding: 0 10px 10px 10px;
  7632. overflow: hidden;
  7633. text-overflow: ellipsis;
  7634. }
  7635. .card:hover {
  7636. text-decoration: none;
  7637. -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.175);
  7638. box-shadow: 0 1px 5px rgba(0,0,0,.175);
  7639. }
  7640. .card:hover > img,
  7641. .card:hover > .media-wrapper {
  7642. background-color: #e5e5e5;
  7643. filter: alpha(opacity=90);
  7644. opacity: .9;
  7645. }
  7646. .card:hover > .card-reveal {
  7647. top: 0;
  7648. }
  7649. .cards-borderless .card {
  7650. border: none;
  7651. -webkit-box-shadow: none;
  7652. box-shadow: none;
  7653. }
  7654. .cards-borderless .card > .card-heading,
  7655. .cards-borderless .card > .card-actions,
  7656. .cards-borderless .card > .card-content {
  7657. padding-right: 0;
  7658. padding-left: 0;
  7659. }
  7660. .card > .caption {
  7661. position: absolute;
  7662. top: -100%;
  7663. left: 0;
  7664. display: block;
  7665. width: 100%;
  7666. padding: 5px 10px;
  7667. overflow: hidden;
  7668. color: #fff;
  7669. text-align: center;
  7670. background-color: #666;
  7671. background-color: rgba(0, 0, 0, .7);
  7672. filter: alpha(opacity=0);
  7673. opacity: 0;
  7674. -webkit-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  7675. -o-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  7676. transition: all .8s cubic-bezier(.175, .885, .32, 1);
  7677. }
  7678. .card:hover > .caption {
  7679. top: 0;
  7680. filter: alpha(opacity=100);
  7681. opacity: 1;
  7682. }
  7683. .cards-condensed {
  7684. padding: 0;
  7685. border: 1px solid #ddd;
  7686. border-top: 0;
  7687. border-left: 0;
  7688. }
  7689. .cards-condensed > [class^="col-"],
  7690. .cards-condensed > [class*=" col-"] {
  7691. padding: 0;
  7692. }
  7693. .cards-condensed .card {
  7694. padding: 10px;
  7695. margin: 0;
  7696. border-right: 0;
  7697. border-bottom: 0;
  7698. border-radius: 0;
  7699. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .015);
  7700. box-shadow: 0 1px 2px rgba(0, 0, 0, .015);
  7701. }
  7702. .card > .card-reveal {
  7703. position: absolute;
  7704. top: 100%;
  7705. left: 0;
  7706. width: 100%;
  7707. height: 100%;
  7708. background-color: #f1f1f1;
  7709. -webkit-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  7710. -o-transition: all .8s cubic-bezier(.175, .885, .32, 1);
  7711. transition: all .8s cubic-bezier(.175, .885, .32, 1);
  7712. }
  7713. .card > .card-reveal > .card-heading {
  7714. padding: 20px 10px;
  7715. }
  7716. .card:hover > .card-reveal {
  7717. top: 0;
  7718. }
  7719. .dashboard {
  7720. position: relative;
  7721. }
  7722. .dashboard > .row {
  7723. margin: 0 -10px;
  7724. }
  7725. .dashboard > .row > [class^="col-"],
  7726. .dashboard > .row > [class*=" col-"] {
  7727. padding: 0 10px;
  7728. }
  7729. .dashboard .panel-heading {
  7730. height: 34px;
  7731. padding: 6px;
  7732. font-weight: bold;
  7733. text-overflow: ellipsis;
  7734. white-space: nowrap;
  7735. }
  7736. .dashboard .panel-heading:hover > .panel-actions > .btn,
  7737. .dashboard .panel-heading:hover > .panel-actions > .dropdown > .btn,
  7738. .dashboard .panel-heading:hover > .panel-actions > .dropdown > a,
  7739. .dashboard .panel-heading:hover > .panel-actions > a {
  7740. filter: alpha(opacity=100);
  7741. opacity: 1;
  7742. }
  7743. .dashboard .panel-heading > [class^='icon-'] {
  7744. filter: alpha(opacity=70);
  7745. opacity: .7;
  7746. }
  7747. .dashboard .panel-actions {
  7748. float: right;
  7749. }
  7750. .dashboard .panel-actions .dropdown {
  7751. display: inline-block;
  7752. }
  7753. .dashboard .panel-actions .dropdown-menu {
  7754. min-width: 80px;
  7755. }
  7756. .dashboard .panel-actions .dropdown-menu > li > a {
  7757. padding: 3px 10px;
  7758. }
  7759. .dashboard .panel-actions .btn {
  7760. margin-top: -4px;
  7761. }
  7762. .dashboard .panel-actions > a,
  7763. .dashboard .panel-actions > .dropdown > a {
  7764. display: inline-block;
  7765. color: #808080;
  7766. }
  7767. .dashboard .panel-actions > a :hover,
  7768. .dashboard .panel-actions > .dropdown > a :hover {
  7769. text-decoration: none;
  7770. }
  7771. .dashboard .panel-actions > a > .caret,
  7772. .dashboard .panel-actions > .dropdown > a > .caret {
  7773. line-height: 20px;
  7774. }
  7775. .dashboard .panel-actions > .btn,
  7776. .dashboard .panel-actions > .dropdown > .btn,
  7777. .dashboard .panel-actions > .dropdown > a,
  7778. .dashboard .panel-actions > a {
  7779. filter: alpha(opacity=70);
  7780. opacity: .7;
  7781. }
  7782. .dashboard .panel-actions .btn + .btn {
  7783. margin-left: 4px;
  7784. }
  7785. .dashboard .panel {
  7786. -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
  7787. box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
  7788. }
  7789. .dashboard .panel-body {
  7790. padding: 6px 10px;
  7791. overflow: auto;
  7792. }
  7793. .dashboard .panel-body.no-padding {
  7794. padding: 0;
  7795. }
  7796. .dashboard .panel-body > dl {
  7797. margin: 0;
  7798. }
  7799. .dashboard .panel-body > ul,
  7800. .dashboard .panel-body > ol {
  7801. padding-left: 20px;
  7802. margin: 0;
  7803. }
  7804. .dashboard.dashboard-draggable .panel-heading {
  7805. cursor: move;
  7806. }
  7807. .dashboard .panel-dragging {
  7808. color: #fff;
  7809. background: rgba(0, 0, 0, .1);
  7810. border: 1px solid #fff;
  7811. -webkit-box-shadow: none!important;
  7812. box-shadow: none!important;
  7813. }
  7814. .dashboard .panel-dragging > * {
  7815. filter: alpha(opacity=10);
  7816. opacity: .1;
  7817. }
  7818. .dashboard .panel-dragging-shadow {
  7819. position: absolute;
  7820. cursor: move;
  7821. background: rgba(255, 255, 255, .5);
  7822. border: 2px solid rgba(255, 255, 255, .9);
  7823. -webkit-box-shadow: 1px 5px 15px rgba(0, 0, 0, .5) !important;
  7824. box-shadow: 1px 5px 15px rgba(0, 0, 0, .5) !important;
  7825. }
  7826. .dashboard .panel-dragging-shadow > * {
  7827. filter: alpha(opacity=70);
  7828. opacity: .7;
  7829. }
  7830. .dashboard .panel-dragging-shadow.circle {
  7831. overflow: hidden;
  7832. border-radius: 50%;
  7833. -webkit-transition: width .2s, height .2s;
  7834. -o-transition: width .2s, height .2s;
  7835. transition: width .2s, height .2s;
  7836. }
  7837. .dashboard .panel-dragging-shadow.circle .panel-actions {
  7838. display: none;
  7839. }
  7840. .dashboard .dragging-col-holder {
  7841. display: none;
  7842. }
  7843. .dashboard.dashboard-holding .dragging-col-holder {
  7844. display: block;
  7845. }
  7846. .dashboard.dashboard-holding .dragging-col {
  7847. display: none;
  7848. }
  7849. .dashboard-inverse {
  7850. background-color: #108bf1;
  7851. }
  7852. .dashboard-inverse .panel {
  7853. -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .15);
  7854. box-shadow: 0 1px 5px rgba(0, 0, 0, .15);
  7855. }
  7856. .dashboard-inverse .panel-dragging {
  7857. background: rgba(0, 0, 0, .3);
  7858. }
  7859. .dashboard-inverse .panel-dragging-shadow {
  7860. -webkit-box-shadow: 1px 2px 15px rgba(0, 0, 0, .5) !important;
  7861. box-shadow: 1px 2px 15px rgba(0, 0, 0, .5) !important;
  7862. }
  7863. .board-item {
  7864. padding: 6px 10px;
  7865. margin-bottom: 5px;
  7866. background: #fff;
  7867. border: 1px solid #ddd;
  7868. -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
  7869. box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
  7870. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7871. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7872. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7873. }
  7874. .board-item:hover {
  7875. -webkit-box-shadow: 0 1px 1 rgba(0, 0, 0, .1);
  7876. box-shadow: 0 1px 1 rgba(0, 0, 0, .1);
  7877. }
  7878. .board-item.board-item-empty {
  7879. display: none;
  7880. color: #808080;
  7881. border-style: dashed;
  7882. }
  7883. .board-item.board-item-shadow {
  7884. display: none;
  7885. padding: 0;
  7886. background: #ddd;
  7887. border: none;
  7888. border-color: #ddd;
  7889. -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, .1);
  7890. box-shadow: inset 0 0 4px rgba(0, 0, 0, .1);
  7891. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7892. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7893. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  7894. }
  7895. .board-item.drag-shadow {
  7896. width: 250px;
  7897. cursor: move;
  7898. background-color: #fff;
  7899. border-color: #c4c4c4;
  7900. -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, .25);
  7901. box-shadow: 1px 1px 15px rgba(0, 0, 0, .25);
  7902. opacity: .9;
  7903. }
  7904. .board-item.drag-from {
  7905. background-color: #ebf5f9;
  7906. }
  7907. .board-list .board-item:last-child {
  7908. margin-bottom: 0;
  7909. }
  7910. .board {
  7911. float: left;
  7912. width: 250px;
  7913. margin-right: 10px;
  7914. }
  7915. .board.drop-in-empty .board-item-empty {
  7916. height: 0;
  7917. padding: 0;
  7918. margin: 0;
  7919. overflow: hidden;
  7920. border: transparent;
  7921. }
  7922. .board:last-child {
  7923. margin-right: 0;
  7924. }
  7925. .board > .panel-body {
  7926. padding: 5px;
  7927. background: #f1f1f1;
  7928. }
  7929. .boards:before,
  7930. .boards:after {
  7931. /* 1 */
  7932. display: table;
  7933. content: " ";
  7934. /* 2 */
  7935. }
  7936. .boards:after {
  7937. clear: both;
  7938. }
  7939. .boards:before,
  7940. .boards:after {
  7941. /* 1 */
  7942. display: table;
  7943. content: " ";
  7944. /* 2 */
  7945. }
  7946. .boards:after {
  7947. clear: both;
  7948. }
  7949. .boards.dragging .board.drop-in {
  7950. border-color: #c4c4c4;
  7951. -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, .25);
  7952. box-shadow: 1px 1px 15px rgba(0, 0, 0, .25);
  7953. }
  7954. .boards.dragging .board.drop-in .board-item-shadow {
  7955. display: block;
  7956. }
  7957. .boards.dragging .board .board-item.board-item-empty {
  7958. display: block;
  7959. }
  7960. .boards.dragging .board-item.disable-drop {
  7961. display: none;
  7962. }
  7963. .boards.drop-in .board-item.drag-from {
  7964. height: 0;
  7965. padding: 0;
  7966. margin: 0;
  7967. overflow: hidden;
  7968. border: transparent;
  7969. }
  7970. .datatable-head,
  7971. .datatable-rows {
  7972. display: table;
  7973. width: 100%;
  7974. table-layout: fixed;
  7975. }
  7976. .datatable {
  7977. margin-bottom: 20px;
  7978. }
  7979. .datatable > .datatable-head {
  7980. -webkit-transition: -webkit-box-shadow .2s;
  7981. -o-transition: box-shadow .2s;
  7982. transition: box-shadow .2s;
  7983. }
  7984. .datatable .table {
  7985. margin: 0;
  7986. table-layout: fixed;
  7987. }
  7988. .datatable .table > tbody > tr > td,
  7989. .datatable .table > thead > tr > th {
  7990. min-width: 20px;
  7991. }
  7992. .datatable .table > tbody > tr > td.check-btn,
  7993. .datatable .table > thead > tr > th.check-btn {
  7994. width: 30px;
  7995. color: #9b9b9b;
  7996. text-align: center;
  7997. cursor: pointer;
  7998. }
  7999. .datatable .table > tbody > tr.hover > td.check-btn,
  8000. .datatable .table > tbody > tr.active > td.check-btn,
  8001. .datatable .table > thead > tr > th.check-btn:hover,
  8002. .datatable .table > tbody > tr > td.check-btn:hover,
  8003. .datatable .table > thead > tr > th.check-btn.checked,
  8004. .datatable .table > tbody > tr > td.check-btn.checked {
  8005. color: #4f4f4f;
  8006. }
  8007. .datatable .table > thead > tr > th.check-btn.checked > .icon-check-empty:before,
  8008. .datatable .table > tbody > tr > td.check-btn.checked > .icon-check-empty:before,
  8009. .datatable .table > tbody > tr.active > td.check-btn > .icon-check-empty:before {
  8010. content: "\e642";
  8011. }
  8012. .datatable .table > thead > tr > th.col-hover {
  8013. background-color: #e2e2e2;
  8014. }
  8015. .datatable .table > tbody > tr > td.col-hover,
  8016. .datatable .table > tbody > tr.hover > td {
  8017. background-color: #ebf5f9;
  8018. }
  8019. .datatable .table > tbody > tr.active.hover td {
  8020. background-color: #ffe2b2;
  8021. }
  8022. .datatable.head-fixed > .datatable-head {
  8023. position: fixed;
  8024. z-index: 10000;
  8025. -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .15);
  8026. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .15);
  8027. }
  8028. .datatable.sortable .datatable-head-span .table > thead > tr > th {
  8029. overflow: hidden;
  8030. white-space: nowrap;
  8031. cursor: pointer;
  8032. }
  8033. .datatable.sortable .datatable-head-span .table > thead > tr > th.text-center {
  8034. padding-right: 0;
  8035. padding-left: 0;
  8036. }
  8037. .datatable.sortable .datatable-head-span .table > thead > tr > th:after {
  8038. display: inline-block;
  8039. margin-left: 5px;
  8040. font-family: ZenIcon;
  8041. font-size: 14px;
  8042. font-style: normal;
  8043. font-weight: normal;
  8044. font-variant: normal;
  8045. line-height: 1;
  8046. color: #808080;
  8047. text-transform: none;
  8048. content: "\e6bd";
  8049. speak: none;
  8050. -webkit-font-smoothing: antialiased;
  8051. -moz-osx-font-smoothing: grayscale;
  8052. }
  8053. .datatable.sortable .datatable-head-span .table > thead > tr > th.sort-down:after {
  8054. color: #18609d;
  8055. content: "\e6b8";
  8056. }
  8057. .datatable.sortable .datatable-head-span .table > thead > tr > th.sort-up:after {
  8058. color: #18609d;
  8059. content: "\e6b9";
  8060. }
  8061. .datatable.sortable .datatable-head-span .table > thead > tr > th.check-btn:after,
  8062. .datatable.sortable .datatable-head-span .table > thead > tr > th.sort-disabled:after {
  8063. display: none;
  8064. }
  8065. .datatable.sortable .datatable-head-span .table > thead > tr > th.sort-disabled {
  8066. cursor: default;
  8067. }
  8068. .datatable-wrapper {
  8069. position: relative;
  8070. }
  8071. .datatable-span {
  8072. display: table-cell;
  8073. vertical-align: top;
  8074. }
  8075. .datatable-span.flexarea {
  8076. overflow: hidden;
  8077. }
  8078. .datatable-span.flexarea.datatable-head-span.dragging {
  8079. cursor: move !important;
  8080. }
  8081. .datatable-span.flexarea .table {
  8082. position: relative;
  8083. top: 0;
  8084. left: 0;
  8085. }
  8086. .datatable-span.flexarea .scrolled-shadow {
  8087. position: absolute;
  8088. top: 0;
  8089. bottom: 0;
  8090. display: none;
  8091. width: 20px;
  8092. -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  8093. box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  8094. opacity: 0;
  8095. -webkit-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  8096. -o-transition: all .5s cubic-bezier(.175, .885, .32, 1);
  8097. transition: all .5s cubic-bezier(.175, .885, .32, 1);
  8098. }
  8099. .datatable-span.flexarea .scrolled-in-shadow {
  8100. left: -30px;
  8101. }
  8102. .datatable-span.flexarea .scrolled-out-shadow {
  8103. right: -30px;
  8104. }
  8105. .datatable > .scroll-wrapper {
  8106. position: relative;
  8107. width: 100%;
  8108. }
  8109. .datatable .scroll-slide {
  8110. position: absolute;
  8111. right: -1px;
  8112. bottom: 0;
  8113. left: -1px;
  8114. display: none;
  8115. height: 11px;
  8116. background: #e5e5e5;
  8117. background: rgba(128, 128, 128, .1);
  8118. border: 1px solid #e5e5e5;
  8119. border-bottom: none;
  8120. opacity: 0;
  8121. -webkit-transition: opacity .5s, background .3s;
  8122. -o-transition: opacity .5s, background .3s;
  8123. transition: opacity .5s, background .3s;
  8124. }
  8125. .datatable .scroll-slide > .bar {
  8126. position: absolute;
  8127. top: 0;
  8128. left: 0;
  8129. min-width: 50px;
  8130. height: 10px;
  8131. background-color: #a6a6a6;
  8132. }
  8133. .datatable .scroll-slide:hover > .bar {
  8134. background-color: #808080;
  8135. }
  8136. .datatable .scroll-slide.scroll-pos-out {
  8137. bottom: -14px;
  8138. height: 15px;
  8139. }
  8140. .datatable .scroll-slide.scroll-pos-out > .bar {
  8141. height: 14px;
  8142. }
  8143. .datatable.show-scroll-slide:hover .scroll-slide,
  8144. .datatable.show-scroll-slide.scrolling .scroll-slide,
  8145. .datatable.show-scroll-slide:hover .scrolled-shadow,
  8146. .datatable.show-scroll-slide.scrolling .scrolled-shadow {
  8147. opacity: 1;
  8148. }
  8149. .datatable.show-scroll-slide .scroll-slide,
  8150. .datatable.show-scroll-slide .scrolled-shadow {
  8151. display: block;
  8152. }
  8153. .datatable.show-scroll-slide.scrolled-in .scrolled-in-shadow {
  8154. left: -20px;
  8155. }
  8156. .datatable.show-scroll-slide.scrolled-out .scrolled-out-shadow {
  8157. right: -20px;
  8158. }
  8159. /*# sourceMappingURL=zui.css.map */