bootstrap.css 141 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727
  1. /*!
  2. * Bootstrap v3.3.6 (http://getbootstrap.com)
  3. * Copyright 2011-2015 Twitter, Inc.
  4. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  5. */
  6. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  7. html {
  8. font-family: sans-serif;
  9. -ms-text-size-adjust: 100%;
  10. -webkit-text-size-adjust: 100%;
  11. }
  12. body {
  13. margin: 0;
  14. }
  15. article,
  16. aside,
  17. details,
  18. figcaption,
  19. figure,
  20. footer,
  21. header,
  22. hgroup,
  23. main,
  24. menu,
  25. nav,
  26. section,
  27. summary {
  28. display: block;
  29. }
  30. audio,
  31. canvas,
  32. progress,
  33. video {
  34. display: inline-block;
  35. vertical-align: baseline;
  36. }
  37. audio:not([controls]) {
  38. display: none;
  39. height: 0;
  40. }
  41. [hidden],
  42. template {
  43. display: none;
  44. }
  45. a {
  46. background-color: transparent;
  47. }
  48. a:active,
  49. a:hover {
  50. outline: 0;
  51. }
  52. abbr[title] {
  53. border-bottom: 1px dotted;
  54. }
  55. b,
  56. strong {
  57. font-weight: bold;
  58. }
  59. dfn {
  60. font-style: italic;
  61. }
  62. h1 {
  63. font-size: 2em;
  64. margin: 0.67em 0;
  65. }
  66. mark {
  67. background: #ff0;
  68. color: #000;
  69. }
  70. small {
  71. font-size: 80%;
  72. }
  73. sub,
  74. sup {
  75. font-size: 75%;
  76. line-height: 0;
  77. position: relative;
  78. vertical-align: baseline;
  79. }
  80. sup {
  81. top: -0.5em;
  82. }
  83. sub {
  84. bottom: -0.25em;
  85. }
  86. img {
  87. border: 0;
  88. }
  89. svg:not(:root) {
  90. overflow: hidden;
  91. }
  92. figure {
  93. margin: 1em 40px;
  94. }
  95. hr {
  96. box-sizing: content-box;
  97. height: 0;
  98. }
  99. pre {
  100. overflow: auto;
  101. }
  102. code,
  103. kbd,
  104. pre,
  105. samp {
  106. font-family: monospace, monospace;
  107. font-size: 1em;
  108. }
  109. button,
  110. input,
  111. optgroup,
  112. select,
  113. textarea {
  114. color: inherit;
  115. font: inherit;
  116. margin: 0;
  117. }
  118. button {
  119. overflow: visible;
  120. }
  121. button,
  122. select {
  123. text-transform: none;
  124. }
  125. button,
  126. html input[type="button"],
  127. input[type="reset"],
  128. input[type="submit"] {
  129. -webkit-appearance: button;
  130. cursor: pointer;
  131. }
  132. button[disabled],
  133. html input[disabled] {
  134. cursor: default;
  135. }
  136. button::-moz-focus-inner,
  137. input::-moz-focus-inner {
  138. border: 0;
  139. padding: 0;
  140. }
  141. input {
  142. line-height: normal;
  143. }
  144. input[type="checkbox"],
  145. input[type="radio"] {
  146. box-sizing: border-box;
  147. padding: 0;
  148. }
  149. input[type="number"]::-webkit-inner-spin-button,
  150. input[type="number"]::-webkit-outer-spin-button {
  151. height: auto;
  152. }
  153. input[type="search"] {
  154. -webkit-appearance: textfield;
  155. box-sizing: content-box;
  156. }
  157. input[type="search"]::-webkit-search-cancel-button,
  158. input[type="search"]::-webkit-search-decoration {
  159. -webkit-appearance: none;
  160. }
  161. fieldset {
  162. border: 1px solid #c0c0c0;
  163. margin: 0 2px;
  164. padding: 0.35em 0.625em 0.75em;
  165. }
  166. legend {
  167. border: 0;
  168. padding: 0;
  169. }
  170. textarea {
  171. overflow: auto;
  172. }
  173. optgroup {
  174. font-weight: bold;
  175. }
  176. table {
  177. border-collapse: collapse;
  178. border-spacing: 0;
  179. }
  180. td,
  181. th {
  182. padding: 0;
  183. }
  184. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  185. @media print {
  186. *,
  187. *:before,
  188. *:after {
  189. background: transparent !important;
  190. color: #000 !important;
  191. box-shadow: none !important;
  192. text-shadow: none !important;
  193. }
  194. a,
  195. a:visited {
  196. text-decoration: underline;
  197. }
  198. a[href]:after {
  199. content: " (" attr(href) ")";
  200. }
  201. abbr[title]:after {
  202. content: " (" attr(title) ")";
  203. }
  204. a[href^="#"]:after,
  205. a[href^="javascript:"]:after {
  206. content: "";
  207. }
  208. pre,
  209. blockquote {
  210. border: 1px solid #999;
  211. page-break-inside: avoid;
  212. }
  213. thead {
  214. display: table-header-group;
  215. }
  216. tr,
  217. img {
  218. page-break-inside: avoid;
  219. }
  220. img {
  221. max-width: 100% !important;
  222. }
  223. p,
  224. h2,
  225. h3 {
  226. orphans: 3;
  227. widows: 3;
  228. }
  229. h2,
  230. h3 {
  231. page-break-after: avoid;
  232. }
  233. .navbar {
  234. display: none;
  235. }
  236. .btn > .caret,
  237. .dropup > .btn > .caret {
  238. border-top-color: #000 !important;
  239. }
  240. .label {
  241. border: 1px solid #000;
  242. }
  243. .table {
  244. border-collapse: collapse !important;
  245. }
  246. .table td,
  247. .table th {
  248. background-color: #fff !important;
  249. }
  250. .table-bordered th,
  251. .table-bordered td {
  252. border: 1px solid #ddd !important;
  253. }
  254. }
  255. @font-face {
  256. font-family: 'Glyphicons Halflings';
  257. src: url('../fonts/glyphicons-halflings-regular.eot');
  258. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  259. }
  260. .glyphicon {
  261. position: relative;
  262. top: 1px;
  263. display: inline-block;
  264. font-family: 'Glyphicons Halflings';
  265. font-style: normal;
  266. font-weight: normal;
  267. line-height: 1;
  268. -webkit-font-smoothing: antialiased;
  269. -moz-osx-font-smoothing: grayscale;
  270. }
  271. .glyphicon-asterisk:before {
  272. content: "\002a";
  273. }
  274. .glyphicon-plus:before {
  275. content: "\002b";
  276. }
  277. .glyphicon-euro:before,
  278. .glyphicon-eur:before {
  279. content: "\20ac";
  280. }
  281. .glyphicon-minus:before {
  282. content: "\2212";
  283. }
  284. .glyphicon-cloud:before {
  285. content: "\2601";
  286. }
  287. .glyphicon-envelope:before {
  288. content: "\2709";
  289. }
  290. .glyphicon-pencil:before {
  291. content: "\270f";
  292. }
  293. .glyphicon-glass:before {
  294. content: "\e001";
  295. }
  296. .glyphicon-music:before {
  297. content: "\e002";
  298. }
  299. .glyphicon-search:before {
  300. content: "\e003";
  301. }
  302. .glyphicon-heart:before {
  303. content: "\e005";
  304. }
  305. .glyphicon-star:before {
  306. content: "\e006";
  307. }
  308. .glyphicon-star-empty:before {
  309. content: "\e007";
  310. }
  311. .glyphicon-user:before {
  312. content: "\e008";
  313. }
  314. .glyphicon-film:before {
  315. content: "\e009";
  316. }
  317. .glyphicon-th-large:before {
  318. content: "\e010";
  319. }
  320. .glyphicon-th:before {
  321. content: "\e011";
  322. }
  323. .glyphicon-th-list:before {
  324. content: "\e012";
  325. }
  326. .glyphicon-ok:before {
  327. content: "\e013";
  328. }
  329. .glyphicon-remove:before {
  330. content: "\e014";
  331. }
  332. .glyphicon-zoom-in:before {
  333. content: "\e015";
  334. }
  335. .glyphicon-zoom-out:before {
  336. content: "\e016";
  337. }
  338. .glyphicon-off:before {
  339. content: "\e017";
  340. }
  341. .glyphicon-signal:before {
  342. content: "\e018";
  343. }
  344. .glyphicon-cog:before {
  345. content: "\e019";
  346. }
  347. .glyphicon-trash:before {
  348. content: "\e020";
  349. }
  350. .glyphicon-home:before {
  351. content: "\e021";
  352. }
  353. .glyphicon-file:before {
  354. content: "\e022";
  355. }
  356. .glyphicon-time:before {
  357. content: "\e023";
  358. }
  359. .glyphicon-road:before {
  360. content: "\e024";
  361. }
  362. .glyphicon-download-alt:before {
  363. content: "\e025";
  364. }
  365. .glyphicon-download:before {
  366. content: "\e026";
  367. }
  368. .glyphicon-upload:before {
  369. content: "\e027";
  370. }
  371. .glyphicon-inbox:before {
  372. content: "\e028";
  373. }
  374. .glyphicon-play-circle:before {
  375. content: "\e029";
  376. }
  377. .glyphicon-repeat:before {
  378. content: "\e030";
  379. }
  380. .glyphicon-refresh:before {
  381. content: "\e031";
  382. }
  383. .glyphicon-list-alt:before {
  384. content: "\e032";
  385. }
  386. .glyphicon-lock:before {
  387. content: "\e033";
  388. }
  389. .glyphicon-flag:before {
  390. content: "\e034";
  391. }
  392. .glyphicon-headphones:before {
  393. content: "\e035";
  394. }
  395. .glyphicon-volume-off:before {
  396. content: "\e036";
  397. }
  398. .glyphicon-volume-down:before {
  399. content: "\e037";
  400. }
  401. .glyphicon-volume-up:before {
  402. content: "\e038";
  403. }
  404. .glyphicon-qrcode:before {
  405. content: "\e039";
  406. }
  407. .glyphicon-barcode:before {
  408. content: "\e040";
  409. }
  410. .glyphicon-tag:before {
  411. content: "\e041";
  412. }
  413. .glyphicon-tags:before {
  414. content: "\e042";
  415. }
  416. .glyphicon-book:before {
  417. content: "\e043";
  418. }
  419. .glyphicon-bookmark:before {
  420. content: "\e044";
  421. }
  422. .glyphicon-print:before {
  423. content: "\e045";
  424. }
  425. .glyphicon-camera:before {
  426. content: "\e046";
  427. }
  428. .glyphicon-font:before {
  429. content: "\e047";
  430. }
  431. .glyphicon-bold:before {
  432. content: "\e048";
  433. }
  434. .glyphicon-italic:before {
  435. content: "\e049";
  436. }
  437. .glyphicon-text-height:before {
  438. content: "\e050";
  439. }
  440. .glyphicon-text-width:before {
  441. content: "\e051";
  442. }
  443. .glyphicon-align-left:before {
  444. content: "\e052";
  445. }
  446. .glyphicon-align-center:before {
  447. content: "\e053";
  448. }
  449. .glyphicon-align-right:before {
  450. content: "\e054";
  451. }
  452. .glyphicon-align-justify:before {
  453. content: "\e055";
  454. }
  455. .glyphicon-list:before {
  456. content: "\e056";
  457. }
  458. .glyphicon-indent-left:before {
  459. content: "\e057";
  460. }
  461. .glyphicon-indent-right:before {
  462. content: "\e058";
  463. }
  464. .glyphicon-facetime-video:before {
  465. content: "\e059";
  466. }
  467. .glyphicon-picture:before {
  468. content: "\e060";
  469. }
  470. .glyphicon-map-marker:before {
  471. content: "\e062";
  472. }
  473. .glyphicon-adjust:before {
  474. content: "\e063";
  475. }
  476. .glyphicon-tint:before {
  477. content: "\e064";
  478. }
  479. .glyphicon-edit:before {
  480. content: "\e065";
  481. }
  482. .glyphicon-share:before {
  483. content: "\e066";
  484. }
  485. .glyphicon-check:before {
  486. content: "\e067";
  487. }
  488. .glyphicon-move:before {
  489. content: "\e068";
  490. }
  491. .glyphicon-step-backward:before {
  492. content: "\e069";
  493. }
  494. .glyphicon-fast-backward:before {
  495. content: "\e070";
  496. }
  497. .glyphicon-backward:before {
  498. content: "\e071";
  499. }
  500. .glyphicon-play:before {
  501. content: "\e072";
  502. }
  503. .glyphicon-pause:before {
  504. content: "\e073";
  505. }
  506. .glyphicon-stop:before {
  507. content: "\e074";
  508. }
  509. .glyphicon-forward:before {
  510. content: "\e075";
  511. }
  512. .glyphicon-fast-forward:before {
  513. content: "\e076";
  514. }
  515. .glyphicon-step-forward:before {
  516. content: "\e077";
  517. }
  518. .glyphicon-eject:before {
  519. content: "\e078";
  520. }
  521. .glyphicon-chevron-left:before {
  522. content: "\e079";
  523. }
  524. .glyphicon-chevron-right:before {
  525. content: "\e080";
  526. }
  527. .glyphicon-plus-sign:before {
  528. content: "\e081";
  529. }
  530. .glyphicon-minus-sign:before {
  531. content: "\e082";
  532. }
  533. .glyphicon-remove-sign:before {
  534. content: "\e083";
  535. }
  536. .glyphicon-ok-sign:before {
  537. content: "\e084";
  538. }
  539. .glyphicon-question-sign:before {
  540. content: "\e085";
  541. }
  542. .glyphicon-info-sign:before {
  543. content: "\e086";
  544. }
  545. .glyphicon-screenshot:before {
  546. content: "\e087";
  547. }
  548. .glyphicon-remove-circle:before {
  549. content: "\e088";
  550. }
  551. .glyphicon-ok-circle:before {
  552. content: "\e089";
  553. }
  554. .glyphicon-ban-circle:before {
  555. content: "\e090";
  556. }
  557. .glyphicon-arrow-left:before {
  558. content: "\e091";
  559. }
  560. .glyphicon-arrow-right:before {
  561. content: "\e092";
  562. }
  563. .glyphicon-arrow-up:before {
  564. content: "\e093";
  565. }
  566. .glyphicon-arrow-down:before {
  567. content: "\e094";
  568. }
  569. .glyphicon-share-alt:before {
  570. content: "\e095";
  571. }
  572. .glyphicon-resize-full:before {
  573. content: "\e096";
  574. }
  575. .glyphicon-resize-small:before {
  576. content: "\e097";
  577. }
  578. .glyphicon-exclamation-sign:before {
  579. content: "\e101";
  580. }
  581. .glyphicon-gift:before {
  582. content: "\e102";
  583. }
  584. .glyphicon-leaf:before {
  585. content: "\e103";
  586. }
  587. .glyphicon-fire:before {
  588. content: "\e104";
  589. }
  590. .glyphicon-eye-open:before {
  591. content: "\e105";
  592. }
  593. .glyphicon-eye-close:before {
  594. content: "\e106";
  595. }
  596. .glyphicon-warning-sign:before {
  597. content: "\e107";
  598. }
  599. .glyphicon-plane:before {
  600. content: "\e108";
  601. }
  602. .glyphicon-calendar:before {
  603. content: "\e109";
  604. }
  605. .glyphicon-random:before {
  606. content: "\e110";
  607. }
  608. .glyphicon-comment:before {
  609. content: "\e111";
  610. }
  611. .glyphicon-magnet:before {
  612. content: "\e112";
  613. }
  614. .glyphicon-chevron-up:before {
  615. content: "\e113";
  616. }
  617. .glyphicon-chevron-down:before {
  618. content: "\e114";
  619. }
  620. .glyphicon-retweet:before {
  621. content: "\e115";
  622. }
  623. .glyphicon-shopping-cart:before {
  624. content: "\e116";
  625. }
  626. .glyphicon-folder-close:before {
  627. content: "\e117";
  628. }
  629. .glyphicon-folder-open:before {
  630. content: "\e118";
  631. }
  632. .glyphicon-resize-vertical:before {
  633. content: "\e119";
  634. }
  635. .glyphicon-resize-horizontal:before {
  636. content: "\e120";
  637. }
  638. .glyphicon-hdd:before {
  639. content: "\e121";
  640. }
  641. .glyphicon-bullhorn:before {
  642. content: "\e122";
  643. }
  644. .glyphicon-bell:before {
  645. content: "\e123";
  646. }
  647. .glyphicon-certificate:before {
  648. content: "\e124";
  649. }
  650. .glyphicon-thumbs-up:before {
  651. content: "\e125";
  652. }
  653. .glyphicon-thumbs-down:before {
  654. content: "\e126";
  655. }
  656. .glyphicon-hand-right:before {
  657. content: "\e127";
  658. }
  659. .glyphicon-hand-left:before {
  660. content: "\e128";
  661. }
  662. .glyphicon-hand-up:before {
  663. content: "\e129";
  664. }
  665. .glyphicon-hand-down:before {
  666. content: "\e130";
  667. }
  668. .glyphicon-circle-arrow-right:before {
  669. content: "\e131";
  670. }
  671. .glyphicon-circle-arrow-left:before {
  672. content: "\e132";
  673. }
  674. .glyphicon-circle-arrow-up:before {
  675. content: "\e133";
  676. }
  677. .glyphicon-circle-arrow-down:before {
  678. content: "\e134";
  679. }
  680. .glyphicon-globe:before {
  681. content: "\e135";
  682. }
  683. .glyphicon-wrench:before {
  684. content: "\e136";
  685. }
  686. .glyphicon-tasks:before {
  687. content: "\e137";
  688. }
  689. .glyphicon-filter:before {
  690. content: "\e138";
  691. }
  692. .glyphicon-briefcase:before {
  693. content: "\e139";
  694. }
  695. .glyphicon-fullscreen:before {
  696. content: "\e140";
  697. }
  698. .glyphicon-dashboard:before {
  699. content: "\e141";
  700. }
  701. .glyphicon-paperclip:before {
  702. content: "\e142";
  703. }
  704. .glyphicon-heart-empty:before {
  705. content: "\e143";
  706. }
  707. .glyphicon-link:before {
  708. content: "\e144";
  709. }
  710. .glyphicon-phone:before {
  711. content: "\e145";
  712. }
  713. .glyphicon-pushpin:before {
  714. content: "\e146";
  715. }
  716. .glyphicon-usd:before {
  717. content: "\e148";
  718. }
  719. .glyphicon-gbp:before {
  720. content: "\e149";
  721. }
  722. .glyphicon-sort:before {
  723. content: "\e150";
  724. }
  725. .glyphicon-sort-by-alphabet:before {
  726. content: "\e151";
  727. }
  728. .glyphicon-sort-by-alphabet-alt:before {
  729. content: "\e152";
  730. }
  731. .glyphicon-sort-by-order:before {
  732. content: "\e153";
  733. }
  734. .glyphicon-sort-by-order-alt:before {
  735. content: "\e154";
  736. }
  737. .glyphicon-sort-by-attributes:before {
  738. content: "\e155";
  739. }
  740. .glyphicon-sort-by-attributes-alt:before {
  741. content: "\e156";
  742. }
  743. .glyphicon-unchecked:before {
  744. content: "\e157";
  745. }
  746. .glyphicon-expand:before {
  747. content: "\e158";
  748. }
  749. .glyphicon-collapse-down:before {
  750. content: "\e159";
  751. }
  752. .glyphicon-collapse-up:before {
  753. content: "\e160";
  754. }
  755. .glyphicon-log-in:before {
  756. content: "\e161";
  757. }
  758. .glyphicon-flash:before {
  759. content: "\e162";
  760. }
  761. .glyphicon-log-out:before {
  762. content: "\e163";
  763. }
  764. .glyphicon-new-window:before {
  765. content: "\e164";
  766. }
  767. .glyphicon-record:before {
  768. content: "\e165";
  769. }
  770. .glyphicon-save:before {
  771. content: "\e166";
  772. }
  773. .glyphicon-open:before {
  774. content: "\e167";
  775. }
  776. .glyphicon-saved:before {
  777. content: "\e168";
  778. }
  779. .glyphicon-import:before {
  780. content: "\e169";
  781. }
  782. .glyphicon-export:before {
  783. content: "\e170";
  784. }
  785. .glyphicon-send:before {
  786. content: "\e171";
  787. }
  788. .glyphicon-floppy-disk:before {
  789. content: "\e172";
  790. }
  791. .glyphicon-floppy-saved:before {
  792. content: "\e173";
  793. }
  794. .glyphicon-floppy-remove:before {
  795. content: "\e174";
  796. }
  797. .glyphicon-floppy-save:before {
  798. content: "\e175";
  799. }
  800. .glyphicon-floppy-open:before {
  801. content: "\e176";
  802. }
  803. .glyphicon-credit-card:before {
  804. content: "\e177";
  805. }
  806. .glyphicon-transfer:before {
  807. content: "\e178";
  808. }
  809. .glyphicon-cutlery:before {
  810. content: "\e179";
  811. }
  812. .glyphicon-header:before {
  813. content: "\e180";
  814. }
  815. .glyphicon-compressed:before {
  816. content: "\e181";
  817. }
  818. .glyphicon-earphone:before {
  819. content: "\e182";
  820. }
  821. .glyphicon-phone-alt:before {
  822. content: "\e183";
  823. }
  824. .glyphicon-tower:before {
  825. content: "\e184";
  826. }
  827. .glyphicon-stats:before {
  828. content: "\e185";
  829. }
  830. .glyphicon-sd-video:before {
  831. content: "\e186";
  832. }
  833. .glyphicon-hd-video:before {
  834. content: "\e187";
  835. }
  836. .glyphicon-subtitles:before {
  837. content: "\e188";
  838. }
  839. .glyphicon-sound-stereo:before {
  840. content: "\e189";
  841. }
  842. .glyphicon-sound-dolby:before {
  843. content: "\e190";
  844. }
  845. .glyphicon-sound-5-1:before {
  846. content: "\e191";
  847. }
  848. .glyphicon-sound-6-1:before {
  849. content: "\e192";
  850. }
  851. .glyphicon-sound-7-1:before {
  852. content: "\e193";
  853. }
  854. .glyphicon-copyright-mark:before {
  855. content: "\e194";
  856. }
  857. .glyphicon-registration-mark:before {
  858. content: "\e195";
  859. }
  860. .glyphicon-cloud-download:before {
  861. content: "\e197";
  862. }
  863. .glyphicon-cloud-upload:before {
  864. content: "\e198";
  865. }
  866. .glyphicon-tree-conifer:before {
  867. content: "\e199";
  868. }
  869. .glyphicon-tree-deciduous:before {
  870. content: "\e200";
  871. }
  872. .glyphicon-cd:before {
  873. content: "\e201";
  874. }
  875. .glyphicon-save-file:before {
  876. content: "\e202";
  877. }
  878. .glyphicon-open-file:before {
  879. content: "\e203";
  880. }
  881. .glyphicon-level-up:before {
  882. content: "\e204";
  883. }
  884. .glyphicon-copy:before {
  885. content: "\e205";
  886. }
  887. .glyphicon-paste:before {
  888. content: "\e206";
  889. }
  890. .glyphicon-alert:before {
  891. content: "\e209";
  892. }
  893. .glyphicon-equalizer:before {
  894. content: "\e210";
  895. }
  896. .glyphicon-king:before {
  897. content: "\e211";
  898. }
  899. .glyphicon-queen:before {
  900. content: "\e212";
  901. }
  902. .glyphicon-pawn:before {
  903. content: "\e213";
  904. }
  905. .glyphicon-bishop:before {
  906. content: "\e214";
  907. }
  908. .glyphicon-knight:before {
  909. content: "\e215";
  910. }
  911. .glyphicon-baby-formula:before {
  912. content: "\e216";
  913. }
  914. .glyphicon-tent:before {
  915. content: "\26fa";
  916. }
  917. .glyphicon-blackboard:before {
  918. content: "\e218";
  919. }
  920. .glyphicon-bed:before {
  921. content: "\e219";
  922. }
  923. .glyphicon-apple:before {
  924. content: "\f8ff";
  925. }
  926. .glyphicon-erase:before {
  927. content: "\e221";
  928. }
  929. .glyphicon-hourglass:before {
  930. content: "\231b";
  931. }
  932. .glyphicon-lamp:before {
  933. content: "\e223";
  934. }
  935. .glyphicon-duplicate:before {
  936. content: "\e224";
  937. }
  938. .glyphicon-piggy-bank:before {
  939. content: "\e225";
  940. }
  941. .glyphicon-scissors:before {
  942. content: "\e226";
  943. }
  944. .glyphicon-bitcoin:before {
  945. content: "\e227";
  946. }
  947. .glyphicon-btc:before {
  948. content: "\e227";
  949. }
  950. .glyphicon-xbt:before {
  951. content: "\e227";
  952. }
  953. .glyphicon-yen:before {
  954. content: "\00a5";
  955. }
  956. .glyphicon-jpy:before {
  957. content: "\00a5";
  958. }
  959. .glyphicon-ruble:before {
  960. content: "\20bd";
  961. }
  962. .glyphicon-rub:before {
  963. content: "\20bd";
  964. }
  965. .glyphicon-scale:before {
  966. content: "\e230";
  967. }
  968. .glyphicon-ice-lolly:before {
  969. content: "\e231";
  970. }
  971. .glyphicon-ice-lolly-tasted:before {
  972. content: "\e232";
  973. }
  974. .glyphicon-education:before {
  975. content: "\e233";
  976. }
  977. .glyphicon-option-horizontal:before {
  978. content: "\e234";
  979. }
  980. .glyphicon-option-vertical:before {
  981. content: "\e235";
  982. }
  983. .glyphicon-menu-hamburger:before {
  984. content: "\e236";
  985. }
  986. .glyphicon-modal-window:before {
  987. content: "\e237";
  988. }
  989. .glyphicon-oil:before {
  990. content: "\e238";
  991. }
  992. .glyphicon-grain:before {
  993. content: "\e239";
  994. }
  995. .glyphicon-sunglasses:before {
  996. content: "\e240";
  997. }
  998. .glyphicon-text-size:before {
  999. content: "\e241";
  1000. }
  1001. .glyphicon-text-color:before {
  1002. content: "\e242";
  1003. }
  1004. .glyphicon-text-background:before {
  1005. content: "\e243";
  1006. }
  1007. .glyphicon-object-align-top:before {
  1008. content: "\e244";
  1009. }
  1010. .glyphicon-object-align-bottom:before {
  1011. content: "\e245";
  1012. }
  1013. .glyphicon-object-align-horizontal:before {
  1014. content: "\e246";
  1015. }
  1016. .glyphicon-object-align-left:before {
  1017. content: "\e247";
  1018. }
  1019. .glyphicon-object-align-vertical:before {
  1020. content: "\e248";
  1021. }
  1022. .glyphicon-object-align-right:before {
  1023. content: "\e249";
  1024. }
  1025. .glyphicon-triangle-right:before {
  1026. content: "\e250";
  1027. }
  1028. .glyphicon-triangle-left:before {
  1029. content: "\e251";
  1030. }
  1031. .glyphicon-triangle-bottom:before {
  1032. content: "\e252";
  1033. }
  1034. .glyphicon-triangle-top:before {
  1035. content: "\e253";
  1036. }
  1037. .glyphicon-console:before {
  1038. content: "\e254";
  1039. }
  1040. .glyphicon-superscript:before {
  1041. content: "\e255";
  1042. }
  1043. .glyphicon-subscript:before {
  1044. content: "\e256";
  1045. }
  1046. .glyphicon-menu-left:before {
  1047. content: "\e257";
  1048. }
  1049. .glyphicon-menu-right:before {
  1050. content: "\e258";
  1051. }
  1052. .glyphicon-menu-down:before {
  1053. content: "\e259";
  1054. }
  1055. .glyphicon-menu-up:before {
  1056. content: "\e260";
  1057. }
  1058. * {
  1059. -webkit-box-sizing: border-box;
  1060. -moz-box-sizing: border-box;
  1061. box-sizing: border-box;
  1062. }
  1063. *:before,
  1064. *:after {
  1065. -webkit-box-sizing: border-box;
  1066. -moz-box-sizing: border-box;
  1067. box-sizing: border-box;
  1068. }
  1069. html {
  1070. font-size: 10px;
  1071. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1072. }
  1073. body {
  1074. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1075. font-size: 12px;
  1076. line-height: 1.42857143;
  1077. color: #333333;
  1078. background-color: #fff;
  1079. }
  1080. input,
  1081. button,
  1082. select,
  1083. textarea {
  1084. font-family: inherit;
  1085. font-size: inherit;
  1086. line-height: inherit;
  1087. }
  1088. a {
  1089. color: #2c3e50;
  1090. text-decoration: none;
  1091. }
  1092. a:hover,
  1093. a:focus {
  1094. color: #11181f;
  1095. text-decoration: underline;
  1096. }
  1097. a:focus {
  1098. outline: thin dotted;
  1099. outline: 5px auto -webkit-focus-ring-color;
  1100. outline-offset: -2px;
  1101. }
  1102. figure {
  1103. margin: 0;
  1104. }
  1105. img {
  1106. vertical-align: middle;
  1107. }
  1108. .img-responsive,
  1109. .thumbnail > img,
  1110. .thumbnail a > img,
  1111. .carousel-inner > .item > img,
  1112. .carousel-inner > .item > a > img {
  1113. display: block;
  1114. max-width: 100%;
  1115. height: auto;
  1116. }
  1117. .img-rounded {
  1118. border-radius: 5px;
  1119. }
  1120. .img-thumbnail {
  1121. padding: 4px;
  1122. line-height: 1.42857143;
  1123. background-color: #fff;
  1124. border: 1px solid #ddd;
  1125. border-radius: 3px;
  1126. -webkit-transition: all 0.2s ease-in-out;
  1127. -o-transition: all 0.2s ease-in-out;
  1128. transition: all 0.2s ease-in-out;
  1129. display: inline-block;
  1130. max-width: 100%;
  1131. height: auto;
  1132. }
  1133. .img-circle {
  1134. border-radius: 50%;
  1135. }
  1136. hr {
  1137. margin-top: 17px;
  1138. margin-bottom: 17px;
  1139. border: 0;
  1140. border-top: 1px solid #eeeeee;
  1141. }
  1142. .sr-only {
  1143. position: absolute;
  1144. width: 1px;
  1145. height: 1px;
  1146. margin: -1px;
  1147. padding: 0;
  1148. overflow: hidden;
  1149. clip: rect(0, 0, 0, 0);
  1150. border: 0;
  1151. }
  1152. .sr-only-focusable:active,
  1153. .sr-only-focusable:focus {
  1154. position: static;
  1155. width: auto;
  1156. height: auto;
  1157. margin: 0;
  1158. overflow: visible;
  1159. clip: auto;
  1160. }
  1161. [role="button"] {
  1162. cursor: pointer;
  1163. }
  1164. h1,
  1165. h2,
  1166. h3,
  1167. h4,
  1168. h5,
  1169. h6,
  1170. .h1,
  1171. .h2,
  1172. .h3,
  1173. .h4,
  1174. .h5,
  1175. .h6 {
  1176. font-family: inherit;
  1177. font-weight: 500;
  1178. line-height: 1.1;
  1179. color: inherit;
  1180. }
  1181. h1 small,
  1182. h2 small,
  1183. h3 small,
  1184. h4 small,
  1185. h5 small,
  1186. h6 small,
  1187. .h1 small,
  1188. .h2 small,
  1189. .h3 small,
  1190. .h4 small,
  1191. .h5 small,
  1192. .h6 small,
  1193. h1 .small,
  1194. h2 .small,
  1195. h3 .small,
  1196. h4 .small,
  1197. h5 .small,
  1198. h6 .small,
  1199. .h1 .small,
  1200. .h2 .small,
  1201. .h3 .small,
  1202. .h4 .small,
  1203. .h5 .small,
  1204. .h6 .small {
  1205. font-weight: normal;
  1206. line-height: 1;
  1207. color: #777777;
  1208. }
  1209. h1,
  1210. .h1,
  1211. h2,
  1212. .h2,
  1213. h3,
  1214. .h3 {
  1215. margin-top: 17px;
  1216. margin-bottom: 8.5px;
  1217. }
  1218. h1 small,
  1219. .h1 small,
  1220. h2 small,
  1221. .h2 small,
  1222. h3 small,
  1223. .h3 small,
  1224. h1 .small,
  1225. .h1 .small,
  1226. h2 .small,
  1227. .h2 .small,
  1228. h3 .small,
  1229. .h3 .small {
  1230. font-size: 65%;
  1231. }
  1232. h4,
  1233. .h4,
  1234. h5,
  1235. .h5,
  1236. h6,
  1237. .h6 {
  1238. margin-top: 8.5px;
  1239. margin-bottom: 8.5px;
  1240. }
  1241. h4 small,
  1242. .h4 small,
  1243. h5 small,
  1244. .h5 small,
  1245. h6 small,
  1246. .h6 small,
  1247. h4 .small,
  1248. .h4 .small,
  1249. h5 .small,
  1250. .h5 .small,
  1251. h6 .small,
  1252. .h6 .small {
  1253. font-size: 75%;
  1254. }
  1255. h1,
  1256. .h1 {
  1257. font-size: 31px;
  1258. }
  1259. h2,
  1260. .h2 {
  1261. font-size: 25px;
  1262. }
  1263. h3,
  1264. .h3 {
  1265. font-size: 21px;
  1266. }
  1267. h4,
  1268. .h4 {
  1269. font-size: 15px;
  1270. }
  1271. h5,
  1272. .h5 {
  1273. font-size: 12px;
  1274. }
  1275. h6,
  1276. .h6 {
  1277. font-size: 11px;
  1278. }
  1279. p {
  1280. margin: 0 0 8.5px;
  1281. }
  1282. .lead {
  1283. margin-bottom: 17px;
  1284. font-size: 13px;
  1285. font-weight: 300;
  1286. line-height: 1.4;
  1287. }
  1288. @media (min-width: 768px) {
  1289. .lead {
  1290. font-size: 18px;
  1291. }
  1292. }
  1293. small,
  1294. .small {
  1295. font-size: 91%;
  1296. }
  1297. mark,
  1298. .mark {
  1299. background-color: #fcf8e3;
  1300. padding: .2em;
  1301. }
  1302. .text-left {
  1303. text-align: left;
  1304. }
  1305. .text-right {
  1306. text-align: right;
  1307. }
  1308. .text-center {
  1309. text-align: center;
  1310. }
  1311. .text-justify {
  1312. text-align: justify;
  1313. }
  1314. .text-nowrap {
  1315. white-space: nowrap;
  1316. }
  1317. .text-lowercase {
  1318. text-transform: lowercase;
  1319. }
  1320. .text-uppercase {
  1321. text-transform: uppercase;
  1322. }
  1323. .text-capitalize {
  1324. text-transform: capitalize;
  1325. }
  1326. .text-muted {
  1327. color: #777777;
  1328. }
  1329. .text-primary {
  1330. color: #2c3e50;
  1331. }
  1332. a.text-primary:hover,
  1333. a.text-primary:focus {
  1334. color: #1a242f;
  1335. }
  1336. .text-success {
  1337. color: #18bc9c;
  1338. }
  1339. a.text-success:hover,
  1340. a.text-success:focus {
  1341. color: #128f76;
  1342. }
  1343. .text-info {
  1344. color: #3498db;
  1345. }
  1346. a.text-info:hover,
  1347. a.text-info:focus {
  1348. color: #217dbb;
  1349. }
  1350. .text-warning {
  1351. color: #f39c12;
  1352. }
  1353. a.text-warning:hover,
  1354. a.text-warning:focus {
  1355. color: #c87f0a;
  1356. }
  1357. .text-danger {
  1358. color: #e74c3c;
  1359. }
  1360. a.text-danger:hover,
  1361. a.text-danger:focus {
  1362. color: #d62c1a;
  1363. }
  1364. .bg-primary {
  1365. color: #fff;
  1366. background-color: #2c3e50;
  1367. }
  1368. a.bg-primary:hover,
  1369. a.bg-primary:focus {
  1370. background-color: #1a242f;
  1371. }
  1372. .bg-success {
  1373. background-color: #dff0d8;
  1374. }
  1375. a.bg-success:hover,
  1376. a.bg-success:focus {
  1377. background-color: #c1e2b3;
  1378. }
  1379. .bg-info {
  1380. background-color: #d9edf7;
  1381. }
  1382. a.bg-info:hover,
  1383. a.bg-info:focus {
  1384. background-color: #afd9ee;
  1385. }
  1386. .bg-warning {
  1387. background-color: #fcf8e3;
  1388. }
  1389. a.bg-warning:hover,
  1390. a.bg-warning:focus {
  1391. background-color: #f7ecb5;
  1392. }
  1393. .bg-danger {
  1394. background-color: #f2dede;
  1395. }
  1396. a.bg-danger:hover,
  1397. a.bg-danger:focus {
  1398. background-color: #e4b9b9;
  1399. }
  1400. .page-header {
  1401. padding-bottom: 7.5px;
  1402. margin: 34px 0 17px;
  1403. border-bottom: 1px solid #eeeeee;
  1404. }
  1405. ul,
  1406. ol {
  1407. margin-top: 0;
  1408. margin-bottom: 8.5px;
  1409. }
  1410. ul ul,
  1411. ol ul,
  1412. ul ol,
  1413. ol ol {
  1414. margin-bottom: 0;
  1415. }
  1416. .list-unstyled {
  1417. padding-left: 0;
  1418. list-style: none;
  1419. }
  1420. .list-inline {
  1421. padding-left: 0;
  1422. list-style: none;
  1423. margin-left: -5px;
  1424. }
  1425. .list-inline > li {
  1426. display: inline-block;
  1427. padding-left: 5px;
  1428. padding-right: 5px;
  1429. }
  1430. dl {
  1431. margin-top: 0;
  1432. margin-bottom: 17px;
  1433. }
  1434. dt,
  1435. dd {
  1436. line-height: 1.42857143;
  1437. }
  1438. dt {
  1439. font-weight: bold;
  1440. }
  1441. dd {
  1442. margin-left: 0;
  1443. }
  1444. @media (min-width: 768px) {
  1445. .dl-horizontal dt {
  1446. float: left;
  1447. width: 160px;
  1448. clear: left;
  1449. text-align: right;
  1450. overflow: hidden;
  1451. text-overflow: ellipsis;
  1452. white-space: nowrap;
  1453. }
  1454. .dl-horizontal dd {
  1455. margin-left: 180px;
  1456. }
  1457. }
  1458. abbr[title],
  1459. abbr[data-original-title] {
  1460. cursor: help;
  1461. border-bottom: 1px dotted #777777;
  1462. }
  1463. .initialism {
  1464. font-size: 90%;
  1465. text-transform: uppercase;
  1466. }
  1467. blockquote {
  1468. padding: 8.5px 17px;
  1469. margin: 0 0 17px;
  1470. font-size: 15px;
  1471. border-left: 5px solid #eeeeee;
  1472. }
  1473. blockquote p:last-child,
  1474. blockquote ul:last-child,
  1475. blockquote ol:last-child {
  1476. margin-bottom: 0;
  1477. }
  1478. blockquote footer,
  1479. blockquote small,
  1480. blockquote .small {
  1481. display: block;
  1482. font-size: 80%;
  1483. line-height: 1.42857143;
  1484. color: #777777;
  1485. }
  1486. blockquote footer:before,
  1487. blockquote small:before,
  1488. blockquote .small:before {
  1489. content: '\2014 \00A0';
  1490. }
  1491. .blockquote-reverse,
  1492. blockquote.pull-right {
  1493. padding-right: 15px;
  1494. padding-left: 0;
  1495. border-right: 5px solid #eeeeee;
  1496. border-left: 0;
  1497. text-align: right;
  1498. }
  1499. .blockquote-reverse footer:before,
  1500. blockquote.pull-right footer:before,
  1501. .blockquote-reverse small:before,
  1502. blockquote.pull-right small:before,
  1503. .blockquote-reverse .small:before,
  1504. blockquote.pull-right .small:before {
  1505. content: '';
  1506. }
  1507. .blockquote-reverse footer:after,
  1508. blockquote.pull-right footer:after,
  1509. .blockquote-reverse small:after,
  1510. blockquote.pull-right small:after,
  1511. .blockquote-reverse .small:after,
  1512. blockquote.pull-right .small:after {
  1513. content: '\00A0 \2014';
  1514. }
  1515. address {
  1516. margin-bottom: 17px;
  1517. font-style: normal;
  1518. line-height: 1.42857143;
  1519. }
  1520. code,
  1521. kbd,
  1522. pre,
  1523. samp {
  1524. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1525. }
  1526. code {
  1527. padding: 2px 4px;
  1528. font-size: 90%;
  1529. color: #c7254e;
  1530. background-color: #f9f2f4;
  1531. border-radius: 3px;
  1532. }
  1533. kbd {
  1534. padding: 2px 4px;
  1535. font-size: 90%;
  1536. color: #fff;
  1537. background-color: #333;
  1538. border-radius: 2px;
  1539. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1540. }
  1541. kbd kbd {
  1542. padding: 0;
  1543. font-size: 100%;
  1544. font-weight: bold;
  1545. box-shadow: none;
  1546. }
  1547. pre {
  1548. display: block;
  1549. padding: 8px;
  1550. margin: 0 0 8.5px;
  1551. font-size: 11px;
  1552. line-height: 1.42857143;
  1553. word-break: break-all;
  1554. word-wrap: break-word;
  1555. color: #333333;
  1556. background-color: #f5f5f5;
  1557. border: 1px solid #ccc;
  1558. border-radius: 3px;
  1559. }
  1560. pre code {
  1561. padding: 0;
  1562. font-size: inherit;
  1563. color: inherit;
  1564. white-space: pre-wrap;
  1565. background-color: transparent;
  1566. border-radius: 0;
  1567. }
  1568. .pre-scrollable {
  1569. max-height: 340px;
  1570. overflow-y: scroll;
  1571. }
  1572. .container {
  1573. margin-right: auto;
  1574. margin-left: auto;
  1575. padding-left: 15px;
  1576. padding-right: 15px;
  1577. }
  1578. @media (min-width: 768px) {
  1579. .container {
  1580. width: 750px;
  1581. }
  1582. }
  1583. @media (min-width: 992px) {
  1584. .container {
  1585. width: 970px;
  1586. }
  1587. }
  1588. @media (min-width: 1200px) {
  1589. .container {
  1590. width: 1170px;
  1591. }
  1592. }
  1593. .container-fluid {
  1594. margin-right: auto;
  1595. margin-left: auto;
  1596. padding-left: 15px;
  1597. padding-right: 15px;
  1598. }
  1599. .row {
  1600. margin-left: -15px;
  1601. margin-right: -15px;
  1602. }
  1603. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1604. position: relative;
  1605. min-height: 1px;
  1606. padding-left: 15px;
  1607. padding-right: 15px;
  1608. }
  1609. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  1610. float: left;
  1611. }
  1612. .col-xs-12 {
  1613. width: 100%;
  1614. }
  1615. .col-xs-11 {
  1616. width: 91.66666667%;
  1617. }
  1618. .col-xs-10 {
  1619. width: 83.33333333%;
  1620. }
  1621. .col-xs-9 {
  1622. width: 75%;
  1623. }
  1624. .col-xs-8 {
  1625. width: 66.66666667%;
  1626. }
  1627. .col-xs-7 {
  1628. width: 58.33333333%;
  1629. }
  1630. .col-xs-6 {
  1631. width: 50%;
  1632. }
  1633. .col-xs-5 {
  1634. width: 41.66666667%;
  1635. }
  1636. .col-xs-4 {
  1637. width: 33.33333333%;
  1638. }
  1639. .col-xs-3 {
  1640. width: 25%;
  1641. }
  1642. .col-xs-2 {
  1643. width: 16.66666667%;
  1644. }
  1645. .col-xs-1 {
  1646. width: 8.33333333%;
  1647. }
  1648. .col-xs-pull-12 {
  1649. right: 100%;
  1650. }
  1651. .col-xs-pull-11 {
  1652. right: 91.66666667%;
  1653. }
  1654. .col-xs-pull-10 {
  1655. right: 83.33333333%;
  1656. }
  1657. .col-xs-pull-9 {
  1658. right: 75%;
  1659. }
  1660. .col-xs-pull-8 {
  1661. right: 66.66666667%;
  1662. }
  1663. .col-xs-pull-7 {
  1664. right: 58.33333333%;
  1665. }
  1666. .col-xs-pull-6 {
  1667. right: 50%;
  1668. }
  1669. .col-xs-pull-5 {
  1670. right: 41.66666667%;
  1671. }
  1672. .col-xs-pull-4 {
  1673. right: 33.33333333%;
  1674. }
  1675. .col-xs-pull-3 {
  1676. right: 25%;
  1677. }
  1678. .col-xs-pull-2 {
  1679. right: 16.66666667%;
  1680. }
  1681. .col-xs-pull-1 {
  1682. right: 8.33333333%;
  1683. }
  1684. .col-xs-pull-0 {
  1685. right: auto;
  1686. }
  1687. .col-xs-push-12 {
  1688. left: 100%;
  1689. }
  1690. .col-xs-push-11 {
  1691. left: 91.66666667%;
  1692. }
  1693. .col-xs-push-10 {
  1694. left: 83.33333333%;
  1695. }
  1696. .col-xs-push-9 {
  1697. left: 75%;
  1698. }
  1699. .col-xs-push-8 {
  1700. left: 66.66666667%;
  1701. }
  1702. .col-xs-push-7 {
  1703. left: 58.33333333%;
  1704. }
  1705. .col-xs-push-6 {
  1706. left: 50%;
  1707. }
  1708. .col-xs-push-5 {
  1709. left: 41.66666667%;
  1710. }
  1711. .col-xs-push-4 {
  1712. left: 33.33333333%;
  1713. }
  1714. .col-xs-push-3 {
  1715. left: 25%;
  1716. }
  1717. .col-xs-push-2 {
  1718. left: 16.66666667%;
  1719. }
  1720. .col-xs-push-1 {
  1721. left: 8.33333333%;
  1722. }
  1723. .col-xs-push-0 {
  1724. left: auto;
  1725. }
  1726. .col-xs-offset-12 {
  1727. margin-left: 100%;
  1728. }
  1729. .col-xs-offset-11 {
  1730. margin-left: 91.66666667%;
  1731. }
  1732. .col-xs-offset-10 {
  1733. margin-left: 83.33333333%;
  1734. }
  1735. .col-xs-offset-9 {
  1736. margin-left: 75%;
  1737. }
  1738. .col-xs-offset-8 {
  1739. margin-left: 66.66666667%;
  1740. }
  1741. .col-xs-offset-7 {
  1742. margin-left: 58.33333333%;
  1743. }
  1744. .col-xs-offset-6 {
  1745. margin-left: 50%;
  1746. }
  1747. .col-xs-offset-5 {
  1748. margin-left: 41.66666667%;
  1749. }
  1750. .col-xs-offset-4 {
  1751. margin-left: 33.33333333%;
  1752. }
  1753. .col-xs-offset-3 {
  1754. margin-left: 25%;
  1755. }
  1756. .col-xs-offset-2 {
  1757. margin-left: 16.66666667%;
  1758. }
  1759. .col-xs-offset-1 {
  1760. margin-left: 8.33333333%;
  1761. }
  1762. .col-xs-offset-0 {
  1763. margin-left: 0%;
  1764. }
  1765. @media (min-width: 768px) {
  1766. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  1767. float: left;
  1768. }
  1769. .col-sm-12 {
  1770. width: 100%;
  1771. }
  1772. .col-sm-11 {
  1773. width: 91.66666667%;
  1774. }
  1775. .col-sm-10 {
  1776. width: 83.33333333%;
  1777. }
  1778. .col-sm-9 {
  1779. width: 75%;
  1780. }
  1781. .col-sm-8 {
  1782. width: 66.66666667%;
  1783. }
  1784. .col-sm-7 {
  1785. width: 58.33333333%;
  1786. }
  1787. .col-sm-6 {
  1788. width: 50%;
  1789. }
  1790. .col-sm-5 {
  1791. width: 41.66666667%;
  1792. }
  1793. .col-sm-4 {
  1794. width: 33.33333333%;
  1795. }
  1796. .col-sm-3 {
  1797. width: 25%;
  1798. }
  1799. .col-sm-2 {
  1800. width: 16.66666667%;
  1801. }
  1802. .col-sm-1 {
  1803. width: 8.33333333%;
  1804. }
  1805. .col-sm-pull-12 {
  1806. right: 100%;
  1807. }
  1808. .col-sm-pull-11 {
  1809. right: 91.66666667%;
  1810. }
  1811. .col-sm-pull-10 {
  1812. right: 83.33333333%;
  1813. }
  1814. .col-sm-pull-9 {
  1815. right: 75%;
  1816. }
  1817. .col-sm-pull-8 {
  1818. right: 66.66666667%;
  1819. }
  1820. .col-sm-pull-7 {
  1821. right: 58.33333333%;
  1822. }
  1823. .col-sm-pull-6 {
  1824. right: 50%;
  1825. }
  1826. .col-sm-pull-5 {
  1827. right: 41.66666667%;
  1828. }
  1829. .col-sm-pull-4 {
  1830. right: 33.33333333%;
  1831. }
  1832. .col-sm-pull-3 {
  1833. right: 25%;
  1834. }
  1835. .col-sm-pull-2 {
  1836. right: 16.66666667%;
  1837. }
  1838. .col-sm-pull-1 {
  1839. right: 8.33333333%;
  1840. }
  1841. .col-sm-pull-0 {
  1842. right: auto;
  1843. }
  1844. .col-sm-push-12 {
  1845. left: 100%;
  1846. }
  1847. .col-sm-push-11 {
  1848. left: 91.66666667%;
  1849. }
  1850. .col-sm-push-10 {
  1851. left: 83.33333333%;
  1852. }
  1853. .col-sm-push-9 {
  1854. left: 75%;
  1855. }
  1856. .col-sm-push-8 {
  1857. left: 66.66666667%;
  1858. }
  1859. .col-sm-push-7 {
  1860. left: 58.33333333%;
  1861. }
  1862. .col-sm-push-6 {
  1863. left: 50%;
  1864. }
  1865. .col-sm-push-5 {
  1866. left: 41.66666667%;
  1867. }
  1868. .col-sm-push-4 {
  1869. left: 33.33333333%;
  1870. }
  1871. .col-sm-push-3 {
  1872. left: 25%;
  1873. }
  1874. .col-sm-push-2 {
  1875. left: 16.66666667%;
  1876. }
  1877. .col-sm-push-1 {
  1878. left: 8.33333333%;
  1879. }
  1880. .col-sm-push-0 {
  1881. left: auto;
  1882. }
  1883. .col-sm-offset-12 {
  1884. margin-left: 100%;
  1885. }
  1886. .col-sm-offset-11 {
  1887. margin-left: 91.66666667%;
  1888. }
  1889. .col-sm-offset-10 {
  1890. margin-left: 83.33333333%;
  1891. }
  1892. .col-sm-offset-9 {
  1893. margin-left: 75%;
  1894. }
  1895. .col-sm-offset-8 {
  1896. margin-left: 66.66666667%;
  1897. }
  1898. .col-sm-offset-7 {
  1899. margin-left: 58.33333333%;
  1900. }
  1901. .col-sm-offset-6 {
  1902. margin-left: 50%;
  1903. }
  1904. .col-sm-offset-5 {
  1905. margin-left: 41.66666667%;
  1906. }
  1907. .col-sm-offset-4 {
  1908. margin-left: 33.33333333%;
  1909. }
  1910. .col-sm-offset-3 {
  1911. margin-left: 25%;
  1912. }
  1913. .col-sm-offset-2 {
  1914. margin-left: 16.66666667%;
  1915. }
  1916. .col-sm-offset-1 {
  1917. margin-left: 8.33333333%;
  1918. }
  1919. .col-sm-offset-0 {
  1920. margin-left: 0%;
  1921. }
  1922. }
  1923. @media (min-width: 992px) {
  1924. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1925. float: left;
  1926. }
  1927. .col-md-12 {
  1928. width: 100%;
  1929. }
  1930. .col-md-11 {
  1931. width: 91.66666667%;
  1932. }
  1933. .col-md-10 {
  1934. width: 83.33333333%;
  1935. }
  1936. .col-md-9 {
  1937. width: 75%;
  1938. }
  1939. .col-md-8 {
  1940. width: 66.66666667%;
  1941. }
  1942. .col-md-7 {
  1943. width: 58.33333333%;
  1944. }
  1945. .col-md-6 {
  1946. width: 50%;
  1947. }
  1948. .col-md-5 {
  1949. width: 41.66666667%;
  1950. }
  1951. .col-md-4 {
  1952. width: 33.33333333%;
  1953. }
  1954. .col-md-3 {
  1955. width: 25%;
  1956. }
  1957. .col-md-2 {
  1958. width: 16.66666667%;
  1959. }
  1960. .col-md-1 {
  1961. width: 8.33333333%;
  1962. }
  1963. .col-md-pull-12 {
  1964. right: 100%;
  1965. }
  1966. .col-md-pull-11 {
  1967. right: 91.66666667%;
  1968. }
  1969. .col-md-pull-10 {
  1970. right: 83.33333333%;
  1971. }
  1972. .col-md-pull-9 {
  1973. right: 75%;
  1974. }
  1975. .col-md-pull-8 {
  1976. right: 66.66666667%;
  1977. }
  1978. .col-md-pull-7 {
  1979. right: 58.33333333%;
  1980. }
  1981. .col-md-pull-6 {
  1982. right: 50%;
  1983. }
  1984. .col-md-pull-5 {
  1985. right: 41.66666667%;
  1986. }
  1987. .col-md-pull-4 {
  1988. right: 33.33333333%;
  1989. }
  1990. .col-md-pull-3 {
  1991. right: 25%;
  1992. }
  1993. .col-md-pull-2 {
  1994. right: 16.66666667%;
  1995. }
  1996. .col-md-pull-1 {
  1997. right: 8.33333333%;
  1998. }
  1999. .col-md-pull-0 {
  2000. right: auto;
  2001. }
  2002. .col-md-push-12 {
  2003. left: 100%;
  2004. }
  2005. .col-md-push-11 {
  2006. left: 91.66666667%;
  2007. }
  2008. .col-md-push-10 {
  2009. left: 83.33333333%;
  2010. }
  2011. .col-md-push-9 {
  2012. left: 75%;
  2013. }
  2014. .col-md-push-8 {
  2015. left: 66.66666667%;
  2016. }
  2017. .col-md-push-7 {
  2018. left: 58.33333333%;
  2019. }
  2020. .col-md-push-6 {
  2021. left: 50%;
  2022. }
  2023. .col-md-push-5 {
  2024. left: 41.66666667%;
  2025. }
  2026. .col-md-push-4 {
  2027. left: 33.33333333%;
  2028. }
  2029. .col-md-push-3 {
  2030. left: 25%;
  2031. }
  2032. .col-md-push-2 {
  2033. left: 16.66666667%;
  2034. }
  2035. .col-md-push-1 {
  2036. left: 8.33333333%;
  2037. }
  2038. .col-md-push-0 {
  2039. left: auto;
  2040. }
  2041. .col-md-offset-12 {
  2042. margin-left: 100%;
  2043. }
  2044. .col-md-offset-11 {
  2045. margin-left: 91.66666667%;
  2046. }
  2047. .col-md-offset-10 {
  2048. margin-left: 83.33333333%;
  2049. }
  2050. .col-md-offset-9 {
  2051. margin-left: 75%;
  2052. }
  2053. .col-md-offset-8 {
  2054. margin-left: 66.66666667%;
  2055. }
  2056. .col-md-offset-7 {
  2057. margin-left: 58.33333333%;
  2058. }
  2059. .col-md-offset-6 {
  2060. margin-left: 50%;
  2061. }
  2062. .col-md-offset-5 {
  2063. margin-left: 41.66666667%;
  2064. }
  2065. .col-md-offset-4 {
  2066. margin-left: 33.33333333%;
  2067. }
  2068. .col-md-offset-3 {
  2069. margin-left: 25%;
  2070. }
  2071. .col-md-offset-2 {
  2072. margin-left: 16.66666667%;
  2073. }
  2074. .col-md-offset-1 {
  2075. margin-left: 8.33333333%;
  2076. }
  2077. .col-md-offset-0 {
  2078. margin-left: 0%;
  2079. }
  2080. }
  2081. @media (min-width: 1200px) {
  2082. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  2083. float: left;
  2084. }
  2085. .col-lg-12 {
  2086. width: 100%;
  2087. }
  2088. .col-lg-11 {
  2089. width: 91.66666667%;
  2090. }
  2091. .col-lg-10 {
  2092. width: 83.33333333%;
  2093. }
  2094. .col-lg-9 {
  2095. width: 75%;
  2096. }
  2097. .col-lg-8 {
  2098. width: 66.66666667%;
  2099. }
  2100. .col-lg-7 {
  2101. width: 58.33333333%;
  2102. }
  2103. .col-lg-6 {
  2104. width: 50%;
  2105. }
  2106. .col-lg-5 {
  2107. width: 41.66666667%;
  2108. }
  2109. .col-lg-4 {
  2110. width: 33.33333333%;
  2111. }
  2112. .col-lg-3 {
  2113. width: 25%;
  2114. }
  2115. .col-lg-2 {
  2116. width: 16.66666667%;
  2117. }
  2118. .col-lg-1 {
  2119. width: 8.33333333%;
  2120. }
  2121. .col-lg-pull-12 {
  2122. right: 100%;
  2123. }
  2124. .col-lg-pull-11 {
  2125. right: 91.66666667%;
  2126. }
  2127. .col-lg-pull-10 {
  2128. right: 83.33333333%;
  2129. }
  2130. .col-lg-pull-9 {
  2131. right: 75%;
  2132. }
  2133. .col-lg-pull-8 {
  2134. right: 66.66666667%;
  2135. }
  2136. .col-lg-pull-7 {
  2137. right: 58.33333333%;
  2138. }
  2139. .col-lg-pull-6 {
  2140. right: 50%;
  2141. }
  2142. .col-lg-pull-5 {
  2143. right: 41.66666667%;
  2144. }
  2145. .col-lg-pull-4 {
  2146. right: 33.33333333%;
  2147. }
  2148. .col-lg-pull-3 {
  2149. right: 25%;
  2150. }
  2151. .col-lg-pull-2 {
  2152. right: 16.66666667%;
  2153. }
  2154. .col-lg-pull-1 {
  2155. right: 8.33333333%;
  2156. }
  2157. .col-lg-pull-0 {
  2158. right: auto;
  2159. }
  2160. .col-lg-push-12 {
  2161. left: 100%;
  2162. }
  2163. .col-lg-push-11 {
  2164. left: 91.66666667%;
  2165. }
  2166. .col-lg-push-10 {
  2167. left: 83.33333333%;
  2168. }
  2169. .col-lg-push-9 {
  2170. left: 75%;
  2171. }
  2172. .col-lg-push-8 {
  2173. left: 66.66666667%;
  2174. }
  2175. .col-lg-push-7 {
  2176. left: 58.33333333%;
  2177. }
  2178. .col-lg-push-6 {
  2179. left: 50%;
  2180. }
  2181. .col-lg-push-5 {
  2182. left: 41.66666667%;
  2183. }
  2184. .col-lg-push-4 {
  2185. left: 33.33333333%;
  2186. }
  2187. .col-lg-push-3 {
  2188. left: 25%;
  2189. }
  2190. .col-lg-push-2 {
  2191. left: 16.66666667%;
  2192. }
  2193. .col-lg-push-1 {
  2194. left: 8.33333333%;
  2195. }
  2196. .col-lg-push-0 {
  2197. left: auto;
  2198. }
  2199. .col-lg-offset-12 {
  2200. margin-left: 100%;
  2201. }
  2202. .col-lg-offset-11 {
  2203. margin-left: 91.66666667%;
  2204. }
  2205. .col-lg-offset-10 {
  2206. margin-left: 83.33333333%;
  2207. }
  2208. .col-lg-offset-9 {
  2209. margin-left: 75%;
  2210. }
  2211. .col-lg-offset-8 {
  2212. margin-left: 66.66666667%;
  2213. }
  2214. .col-lg-offset-7 {
  2215. margin-left: 58.33333333%;
  2216. }
  2217. .col-lg-offset-6 {
  2218. margin-left: 50%;
  2219. }
  2220. .col-lg-offset-5 {
  2221. margin-left: 41.66666667%;
  2222. }
  2223. .col-lg-offset-4 {
  2224. margin-left: 33.33333333%;
  2225. }
  2226. .col-lg-offset-3 {
  2227. margin-left: 25%;
  2228. }
  2229. .col-lg-offset-2 {
  2230. margin-left: 16.66666667%;
  2231. }
  2232. .col-lg-offset-1 {
  2233. margin-left: 8.33333333%;
  2234. }
  2235. .col-lg-offset-0 {
  2236. margin-left: 0%;
  2237. }
  2238. }
  2239. table {
  2240. background-color: transparent;
  2241. }
  2242. caption {
  2243. padding-top: 8px;
  2244. padding-bottom: 8px;
  2245. color: #777777;
  2246. text-align: left;
  2247. }
  2248. th {
  2249. text-align: left;
  2250. }
  2251. .table {
  2252. width: 100%;
  2253. max-width: 100%;
  2254. margin-bottom: 17px;
  2255. }
  2256. .table > thead > tr > th,
  2257. .table > tbody > tr > th,
  2258. .table > tfoot > tr > th,
  2259. .table > thead > tr > td,
  2260. .table > tbody > tr > td,
  2261. .table > tfoot > tr > td {
  2262. padding: 8px;
  2263. line-height: 1.42857143;
  2264. vertical-align: top;
  2265. border-top: 1px solid #ddd;
  2266. }
  2267. .table > thead > tr > th {
  2268. vertical-align: bottom;
  2269. border-bottom: 2px solid #ddd;
  2270. }
  2271. .table > caption + thead > tr:first-child > th,
  2272. .table > colgroup + thead > tr:first-child > th,
  2273. .table > thead:first-child > tr:first-child > th,
  2274. .table > caption + thead > tr:first-child > td,
  2275. .table > colgroup + thead > tr:first-child > td,
  2276. .table > thead:first-child > tr:first-child > td {
  2277. border-top: 0;
  2278. }
  2279. .table > tbody + tbody {
  2280. border-top: 2px solid #ddd;
  2281. }
  2282. .table .table {
  2283. background-color: #fff;
  2284. }
  2285. .table-condensed > thead > tr > th,
  2286. .table-condensed > tbody > tr > th,
  2287. .table-condensed > tfoot > tr > th,
  2288. .table-condensed > thead > tr > td,
  2289. .table-condensed > tbody > tr > td,
  2290. .table-condensed > tfoot > tr > td {
  2291. padding: 5px;
  2292. }
  2293. .table-bordered {
  2294. border: 1px solid #ddd;
  2295. }
  2296. .table-bordered > thead > tr > th,
  2297. .table-bordered > tbody > tr > th,
  2298. .table-bordered > tfoot > tr > th,
  2299. .table-bordered > thead > tr > td,
  2300. .table-bordered > tbody > tr > td,
  2301. .table-bordered > tfoot > tr > td {
  2302. border: 1px solid #ddd;
  2303. }
  2304. .table-bordered > thead > tr > th,
  2305. .table-bordered > thead > tr > td {
  2306. border-bottom-width: 2px;
  2307. }
  2308. .table-striped > tbody > tr:nth-of-type(odd) {
  2309. background-color: #f9f9f9;
  2310. }
  2311. .table-hover > tbody > tr:hover {
  2312. background-color: #f5f5f5;
  2313. }
  2314. table col[class*="col-"] {
  2315. position: static;
  2316. float: none;
  2317. display: table-column;
  2318. }
  2319. table td[class*="col-"],
  2320. table th[class*="col-"] {
  2321. position: static;
  2322. float: none;
  2323. display: table-cell;
  2324. }
  2325. .table > thead > tr > td.active,
  2326. .table > tbody > tr > td.active,
  2327. .table > tfoot > tr > td.active,
  2328. .table > thead > tr > th.active,
  2329. .table > tbody > tr > th.active,
  2330. .table > tfoot > tr > th.active,
  2331. .table > thead > tr.active > td,
  2332. .table > tbody > tr.active > td,
  2333. .table > tfoot > tr.active > td,
  2334. .table > thead > tr.active > th,
  2335. .table > tbody > tr.active > th,
  2336. .table > tfoot > tr.active > th {
  2337. background-color: #f5f5f5;
  2338. }
  2339. .table-hover > tbody > tr > td.active:hover,
  2340. .table-hover > tbody > tr > th.active:hover,
  2341. .table-hover > tbody > tr.active:hover > td,
  2342. .table-hover > tbody > tr:hover > .active,
  2343. .table-hover > tbody > tr.active:hover > th {
  2344. background-color: #e8e8e8;
  2345. }
  2346. .table > thead > tr > td.success,
  2347. .table > tbody > tr > td.success,
  2348. .table > tfoot > tr > td.success,
  2349. .table > thead > tr > th.success,
  2350. .table > tbody > tr > th.success,
  2351. .table > tfoot > tr > th.success,
  2352. .table > thead > tr.success > td,
  2353. .table > tbody > tr.success > td,
  2354. .table > tfoot > tr.success > td,
  2355. .table > thead > tr.success > th,
  2356. .table > tbody > tr.success > th,
  2357. .table > tfoot > tr.success > th {
  2358. background-color: #dff0d8;
  2359. }
  2360. .table-hover > tbody > tr > td.success:hover,
  2361. .table-hover > tbody > tr > th.success:hover,
  2362. .table-hover > tbody > tr.success:hover > td,
  2363. .table-hover > tbody > tr:hover > .success,
  2364. .table-hover > tbody > tr.success:hover > th {
  2365. background-color: #d0e9c6;
  2366. }
  2367. .table > thead > tr > td.info,
  2368. .table > tbody > tr > td.info,
  2369. .table > tfoot > tr > td.info,
  2370. .table > thead > tr > th.info,
  2371. .table > tbody > tr > th.info,
  2372. .table > tfoot > tr > th.info,
  2373. .table > thead > tr.info > td,
  2374. .table > tbody > tr.info > td,
  2375. .table > tfoot > tr.info > td,
  2376. .table > thead > tr.info > th,
  2377. .table > tbody > tr.info > th,
  2378. .table > tfoot > tr.info > th {
  2379. background-color: #d9edf7;
  2380. }
  2381. .table-hover > tbody > tr > td.info:hover,
  2382. .table-hover > tbody > tr > th.info:hover,
  2383. .table-hover > tbody > tr.info:hover > td,
  2384. .table-hover > tbody > tr:hover > .info,
  2385. .table-hover > tbody > tr.info:hover > th {
  2386. background-color: #c4e3f3;
  2387. }
  2388. .table > thead > tr > td.warning,
  2389. .table > tbody > tr > td.warning,
  2390. .table > tfoot > tr > td.warning,
  2391. .table > thead > tr > th.warning,
  2392. .table > tbody > tr > th.warning,
  2393. .table > tfoot > tr > th.warning,
  2394. .table > thead > tr.warning > td,
  2395. .table > tbody > tr.warning > td,
  2396. .table > tfoot > tr.warning > td,
  2397. .table > thead > tr.warning > th,
  2398. .table > tbody > tr.warning > th,
  2399. .table > tfoot > tr.warning > th {
  2400. background-color: #fcf8e3;
  2401. }
  2402. .table-hover > tbody > tr > td.warning:hover,
  2403. .table-hover > tbody > tr > th.warning:hover,
  2404. .table-hover > tbody > tr.warning:hover > td,
  2405. .table-hover > tbody > tr:hover > .warning,
  2406. .table-hover > tbody > tr.warning:hover > th {
  2407. background-color: #faf2cc;
  2408. }
  2409. .table > thead > tr > td.danger,
  2410. .table > tbody > tr > td.danger,
  2411. .table > tfoot > tr > td.danger,
  2412. .table > thead > tr > th.danger,
  2413. .table > tbody > tr > th.danger,
  2414. .table > tfoot > tr > th.danger,
  2415. .table > thead > tr.danger > td,
  2416. .table > tbody > tr.danger > td,
  2417. .table > tfoot > tr.danger > td,
  2418. .table > thead > tr.danger > th,
  2419. .table > tbody > tr.danger > th,
  2420. .table > tfoot > tr.danger > th {
  2421. background-color: #f2dede;
  2422. }
  2423. .table-hover > tbody > tr > td.danger:hover,
  2424. .table-hover > tbody > tr > th.danger:hover,
  2425. .table-hover > tbody > tr.danger:hover > td,
  2426. .table-hover > tbody > tr:hover > .danger,
  2427. .table-hover > tbody > tr.danger:hover > th {
  2428. background-color: #ebcccc;
  2429. }
  2430. .table-responsive {
  2431. overflow-x: auto;
  2432. min-height: 0.01%;
  2433. }
  2434. @media screen and (max-width: 767px) {
  2435. .table-responsive {
  2436. width: 100%;
  2437. margin-bottom: 12.75px;
  2438. overflow-y: hidden;
  2439. -ms-overflow-style: -ms-autohiding-scrollbar;
  2440. border: 1px solid #ddd;
  2441. }
  2442. .table-responsive > .table {
  2443. margin-bottom: 0;
  2444. }
  2445. .table-responsive > .table > thead > tr > th,
  2446. .table-responsive > .table > tbody > tr > th,
  2447. .table-responsive > .table > tfoot > tr > th,
  2448. .table-responsive > .table > thead > tr > td,
  2449. .table-responsive > .table > tbody > tr > td,
  2450. .table-responsive > .table > tfoot > tr > td {
  2451. white-space: nowrap;
  2452. }
  2453. .table-responsive > .table-bordered {
  2454. border: 0;
  2455. }
  2456. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2457. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2458. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2459. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2460. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2461. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2462. border-left: 0;
  2463. }
  2464. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2465. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2466. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2467. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2468. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2469. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2470. border-right: 0;
  2471. }
  2472. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2473. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2474. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2475. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2476. border-bottom: 0;
  2477. }
  2478. }
  2479. fieldset {
  2480. padding: 0;
  2481. margin: 0;
  2482. border: 0;
  2483. min-width: 0;
  2484. }
  2485. legend {
  2486. display: block;
  2487. width: 100%;
  2488. padding: 0;
  2489. margin-bottom: 17px;
  2490. font-size: 18px;
  2491. line-height: inherit;
  2492. color: #333333;
  2493. border: 0;
  2494. border-bottom: 1px solid #e5e5e5;
  2495. }
  2496. label {
  2497. display: inline-block;
  2498. max-width: 100%;
  2499. margin-bottom: 5px;
  2500. font-weight: bold;
  2501. }
  2502. input[type="search"] {
  2503. -webkit-box-sizing: border-box;
  2504. -moz-box-sizing: border-box;
  2505. box-sizing: border-box;
  2506. }
  2507. input[type="radio"],
  2508. input[type="checkbox"] {
  2509. margin: 4px 0 0;
  2510. margin-top: 1px \9;
  2511. line-height: normal;
  2512. }
  2513. input[type="file"] {
  2514. display: block;
  2515. }
  2516. input[type="range"] {
  2517. display: block;
  2518. width: 100%;
  2519. }
  2520. select[multiple],
  2521. select[size] {
  2522. height: auto;
  2523. }
  2524. input[type="file"]:focus,
  2525. input[type="radio"]:focus,
  2526. input[type="checkbox"]:focus {
  2527. outline: thin dotted;
  2528. outline: 5px auto -webkit-focus-ring-color;
  2529. outline-offset: -2px;
  2530. }
  2531. output {
  2532. display: block;
  2533. padding-top: 7px;
  2534. font-size: 12px;
  2535. line-height: 1.42857143;
  2536. color: #555555;
  2537. }
  2538. .form-control {
  2539. display: block;
  2540. width: 100%;
  2541. height: 31px;
  2542. padding: 6px 12px;
  2543. font-size: 12px;
  2544. line-height: 1.42857143;
  2545. color: #555555;
  2546. background-color: #fff;
  2547. background-image: none;
  2548. border: 1px solid #ccc;
  2549. border-radius: 3px;
  2550. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2551. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2552. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2553. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2554. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2555. }
  2556. .form-control:focus {
  2557. border-color: #66afe9;
  2558. outline: 0;
  2559. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2560. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2561. }
  2562. .form-control::-moz-placeholder {
  2563. color: #999;
  2564. opacity: 1;
  2565. }
  2566. .form-control:-ms-input-placeholder {
  2567. color: #999;
  2568. }
  2569. .form-control::-webkit-input-placeholder {
  2570. color: #999;
  2571. }
  2572. .form-control::-ms-expand {
  2573. border: 0;
  2574. background-color: transparent;
  2575. }
  2576. .form-control[disabled],
  2577. .form-control[readonly],
  2578. fieldset[disabled] .form-control {
  2579. background-color: #eeeeee;
  2580. opacity: 1;
  2581. }
  2582. .form-control[disabled],
  2583. fieldset[disabled] .form-control {
  2584. cursor: not-allowed;
  2585. }
  2586. textarea.form-control {
  2587. height: auto;
  2588. }
  2589. input[type="search"] {
  2590. -webkit-appearance: none;
  2591. }
  2592. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2593. input[type="date"].form-control,
  2594. input[type="time"].form-control,
  2595. input[type="datetime-local"].form-control,
  2596. input[type="month"].form-control {
  2597. line-height: 31px;
  2598. }
  2599. input[type="date"].input-sm,
  2600. input[type="time"].input-sm,
  2601. input[type="datetime-local"].input-sm,
  2602. input[type="month"].input-sm,
  2603. .input-group-sm input[type="date"],
  2604. .input-group-sm input[type="time"],
  2605. .input-group-sm input[type="datetime-local"],
  2606. .input-group-sm input[type="month"] {
  2607. line-height: 28px;
  2608. }
  2609. input[type="date"].input-lg,
  2610. input[type="time"].input-lg,
  2611. input[type="datetime-local"].input-lg,
  2612. input[type="month"].input-lg,
  2613. .input-group-lg input[type="date"],
  2614. .input-group-lg input[type="time"],
  2615. .input-group-lg input[type="datetime-local"],
  2616. .input-group-lg input[type="month"] {
  2617. line-height: 42px;
  2618. }
  2619. }
  2620. .form-group {
  2621. margin-bottom: 15px;
  2622. }
  2623. .radio,
  2624. .checkbox {
  2625. position: relative;
  2626. display: block;
  2627. margin-top: 10px;
  2628. margin-bottom: 10px;
  2629. }
  2630. .radio label,
  2631. .checkbox label {
  2632. min-height: 17px;
  2633. padding-left: 20px;
  2634. margin-bottom: 0;
  2635. font-weight: normal;
  2636. cursor: pointer;
  2637. }
  2638. .radio input[type="radio"],
  2639. .radio-inline input[type="radio"],
  2640. .checkbox input[type="checkbox"],
  2641. .checkbox-inline input[type="checkbox"] {
  2642. position: absolute;
  2643. margin-left: -20px;
  2644. margin-top: 4px \9;
  2645. }
  2646. .radio + .radio,
  2647. .checkbox + .checkbox {
  2648. margin-top: -5px;
  2649. }
  2650. .radio-inline,
  2651. .checkbox-inline {
  2652. position: relative;
  2653. display: inline-block;
  2654. padding-left: 20px;
  2655. margin-bottom: 0;
  2656. vertical-align: middle;
  2657. font-weight: normal;
  2658. cursor: pointer;
  2659. }
  2660. .radio-inline + .radio-inline,
  2661. .checkbox-inline + .checkbox-inline {
  2662. margin-top: 0;
  2663. margin-left: 10px;
  2664. }
  2665. input[type="radio"][disabled],
  2666. input[type="checkbox"][disabled],
  2667. input[type="radio"].disabled,
  2668. input[type="checkbox"].disabled,
  2669. fieldset[disabled] input[type="radio"],
  2670. fieldset[disabled] input[type="checkbox"] {
  2671. cursor: not-allowed;
  2672. }
  2673. .radio-inline.disabled,
  2674. .checkbox-inline.disabled,
  2675. fieldset[disabled] .radio-inline,
  2676. fieldset[disabled] .checkbox-inline {
  2677. cursor: not-allowed;
  2678. }
  2679. .radio.disabled label,
  2680. .checkbox.disabled label,
  2681. fieldset[disabled] .radio label,
  2682. fieldset[disabled] .checkbox label {
  2683. cursor: not-allowed;
  2684. }
  2685. .form-control-static {
  2686. padding-top: 7px;
  2687. padding-bottom: 7px;
  2688. margin-bottom: 0;
  2689. min-height: 29px;
  2690. }
  2691. .form-control-static.input-lg,
  2692. .form-control-static.input-sm {
  2693. padding-left: 0;
  2694. padding-right: 0;
  2695. }
  2696. .input-sm {
  2697. height: 28px;
  2698. padding: 5px 10px;
  2699. font-size: 11px;
  2700. line-height: 1.5;
  2701. border-radius: 2px;
  2702. }
  2703. select.input-sm {
  2704. height: 28px;
  2705. line-height: 28px;
  2706. }
  2707. textarea.input-sm,
  2708. select[multiple].input-sm {
  2709. height: auto;
  2710. }
  2711. .form-group-sm .form-control {
  2712. height: 28px;
  2713. padding: 5px 10px;
  2714. font-size: 11px;
  2715. line-height: 1.5;
  2716. border-radius: 2px;
  2717. }
  2718. .form-group-sm select.form-control {
  2719. height: 28px;
  2720. line-height: 28px;
  2721. }
  2722. .form-group-sm textarea.form-control,
  2723. .form-group-sm select[multiple].form-control {
  2724. height: auto;
  2725. }
  2726. .form-group-sm .form-control-static {
  2727. height: 28px;
  2728. min-height: 28px;
  2729. padding: 6px 10px;
  2730. font-size: 11px;
  2731. line-height: 1.5;
  2732. }
  2733. .input-lg {
  2734. height: 42px;
  2735. padding: 10px 16px;
  2736. font-size: 15px;
  2737. line-height: 1.3333333;
  2738. border-radius: 5px;
  2739. }
  2740. select.input-lg {
  2741. height: 42px;
  2742. line-height: 42px;
  2743. }
  2744. textarea.input-lg,
  2745. select[multiple].input-lg {
  2746. height: auto;
  2747. }
  2748. .form-group-lg .form-control {
  2749. height: 42px;
  2750. padding: 10px 16px;
  2751. font-size: 15px;
  2752. line-height: 1.3333333;
  2753. border-radius: 5px;
  2754. }
  2755. .form-group-lg select.form-control {
  2756. height: 42px;
  2757. line-height: 42px;
  2758. }
  2759. .form-group-lg textarea.form-control,
  2760. .form-group-lg select[multiple].form-control {
  2761. height: auto;
  2762. }
  2763. .form-group-lg .form-control-static {
  2764. height: 42px;
  2765. min-height: 32px;
  2766. padding: 11px 16px;
  2767. font-size: 15px;
  2768. line-height: 1.3333333;
  2769. }
  2770. .has-feedback {
  2771. position: relative;
  2772. }
  2773. .has-feedback .form-control {
  2774. padding-right: 38.75px;
  2775. }
  2776. .form-control-feedback {
  2777. position: absolute;
  2778. top: 0;
  2779. right: 0;
  2780. z-index: 2;
  2781. display: block;
  2782. width: 31px;
  2783. height: 31px;
  2784. line-height: 31px;
  2785. text-align: center;
  2786. pointer-events: none;
  2787. }
  2788. .input-lg + .form-control-feedback,
  2789. .input-group-lg + .form-control-feedback,
  2790. .form-group-lg .form-control + .form-control-feedback {
  2791. width: 42px;
  2792. height: 42px;
  2793. line-height: 42px;
  2794. }
  2795. .input-sm + .form-control-feedback,
  2796. .input-group-sm + .form-control-feedback,
  2797. .form-group-sm .form-control + .form-control-feedback {
  2798. width: 28px;
  2799. height: 28px;
  2800. line-height: 28px;
  2801. }
  2802. .has-success .help-block,
  2803. .has-success .control-label,
  2804. .has-success .radio,
  2805. .has-success .checkbox,
  2806. .has-success .radio-inline,
  2807. .has-success .checkbox-inline,
  2808. .has-success.radio label,
  2809. .has-success.checkbox label,
  2810. .has-success.radio-inline label,
  2811. .has-success.checkbox-inline label {
  2812. color: #18bc9c;
  2813. }
  2814. .has-success .form-control {
  2815. border-color: #18bc9c;
  2816. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2817. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2818. }
  2819. .has-success .form-control:focus {
  2820. border-color: #128f76;
  2821. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #51e9cb;
  2822. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #51e9cb;
  2823. }
  2824. .has-success .input-group-addon {
  2825. color: #18bc9c;
  2826. border-color: #18bc9c;
  2827. background-color: #dff0d8;
  2828. }
  2829. .has-success .form-control-feedback {
  2830. color: #18bc9c;
  2831. }
  2832. .has-warning .help-block,
  2833. .has-warning .control-label,
  2834. .has-warning .radio,
  2835. .has-warning .checkbox,
  2836. .has-warning .radio-inline,
  2837. .has-warning .checkbox-inline,
  2838. .has-warning.radio label,
  2839. .has-warning.checkbox label,
  2840. .has-warning.radio-inline label,
  2841. .has-warning.checkbox-inline label {
  2842. color: #f39c12;
  2843. }
  2844. .has-warning .form-control {
  2845. border-color: #f39c12;
  2846. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2847. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2848. }
  2849. .has-warning .form-control:focus {
  2850. border-color: #c87f0a;
  2851. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8c573;
  2852. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8c573;
  2853. }
  2854. .has-warning .input-group-addon {
  2855. color: #f39c12;
  2856. border-color: #f39c12;
  2857. background-color: #fcf8e3;
  2858. }
  2859. .has-warning .form-control-feedback {
  2860. color: #f39c12;
  2861. }
  2862. .has-error .help-block,
  2863. .has-error .control-label,
  2864. .has-error .radio,
  2865. .has-error .checkbox,
  2866. .has-error .radio-inline,
  2867. .has-error .checkbox-inline,
  2868. .has-error.radio label,
  2869. .has-error.checkbox label,
  2870. .has-error.radio-inline label,
  2871. .has-error.checkbox-inline label {
  2872. color: #e74c3c;
  2873. }
  2874. .has-error .form-control {
  2875. border-color: #e74c3c;
  2876. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2877. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2878. }
  2879. .has-error .form-control:focus {
  2880. border-color: #d62c1a;
  2881. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f29f97;
  2882. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f29f97;
  2883. }
  2884. .has-error .input-group-addon {
  2885. color: #e74c3c;
  2886. border-color: #e74c3c;
  2887. background-color: #f2dede;
  2888. }
  2889. .has-error .form-control-feedback {
  2890. color: #e74c3c;
  2891. }
  2892. .has-feedback label ~ .form-control-feedback {
  2893. top: 22px;
  2894. }
  2895. .has-feedback label.sr-only ~ .form-control-feedback {
  2896. top: 0;
  2897. }
  2898. .help-block {
  2899. display: block;
  2900. margin-top: 5px;
  2901. margin-bottom: 10px;
  2902. color: #737373;
  2903. }
  2904. @media (min-width: 768px) {
  2905. .form-inline .form-group {
  2906. display: inline-block;
  2907. margin-bottom: 0;
  2908. vertical-align: middle;
  2909. }
  2910. .form-inline .form-control {
  2911. display: inline-block;
  2912. width: auto;
  2913. vertical-align: middle;
  2914. }
  2915. .form-inline .form-control-static {
  2916. display: inline-block;
  2917. }
  2918. .form-inline .input-group {
  2919. display: inline-table;
  2920. vertical-align: middle;
  2921. }
  2922. .form-inline .input-group .input-group-addon,
  2923. .form-inline .input-group .input-group-btn,
  2924. .form-inline .input-group .form-control {
  2925. width: auto;
  2926. }
  2927. .form-inline .input-group > .form-control {
  2928. width: 100%;
  2929. }
  2930. .form-inline .control-label {
  2931. margin-bottom: 0;
  2932. vertical-align: middle;
  2933. }
  2934. .form-inline .radio,
  2935. .form-inline .checkbox {
  2936. display: inline-block;
  2937. margin-top: 0;
  2938. margin-bottom: 0;
  2939. vertical-align: middle;
  2940. }
  2941. .form-inline .radio label,
  2942. .form-inline .checkbox label {
  2943. padding-left: 0;
  2944. }
  2945. .form-inline .radio input[type="radio"],
  2946. .form-inline .checkbox input[type="checkbox"] {
  2947. position: relative;
  2948. margin-left: 0;
  2949. }
  2950. .form-inline .has-feedback .form-control-feedback {
  2951. top: 0;
  2952. }
  2953. }
  2954. .form-horizontal .radio,
  2955. .form-horizontal .checkbox,
  2956. .form-horizontal .radio-inline,
  2957. .form-horizontal .checkbox-inline {
  2958. margin-top: 0;
  2959. margin-bottom: 0;
  2960. padding-top: 7px;
  2961. }
  2962. .form-horizontal .radio,
  2963. .form-horizontal .checkbox {
  2964. min-height: 24px;
  2965. }
  2966. .form-horizontal .form-group {
  2967. margin-left: -15px;
  2968. margin-right: -15px;
  2969. }
  2970. @media (min-width: 768px) {
  2971. .form-horizontal .control-label {
  2972. text-align: right;
  2973. margin-bottom: 0;
  2974. padding-top: 7px;
  2975. }
  2976. }
  2977. .form-horizontal .has-feedback .form-control-feedback {
  2978. right: 15px;
  2979. }
  2980. @media (min-width: 768px) {
  2981. .form-horizontal .form-group-lg .control-label {
  2982. padding-top: 11px;
  2983. font-size: 15px;
  2984. }
  2985. }
  2986. @media (min-width: 768px) {
  2987. .form-horizontal .form-group-sm .control-label {
  2988. padding-top: 6px;
  2989. font-size: 11px;
  2990. }
  2991. }
  2992. .btn {
  2993. display: inline-block;
  2994. margin-bottom: 0;
  2995. font-weight: normal;
  2996. text-align: center;
  2997. vertical-align: middle;
  2998. touch-action: manipulation;
  2999. cursor: pointer;
  3000. background-image: none;
  3001. border: 1px solid transparent;
  3002. white-space: nowrap;
  3003. padding: 6px 12px;
  3004. font-size: 12px;
  3005. line-height: 1.42857143;
  3006. border-radius: 3px;
  3007. -webkit-user-select: none;
  3008. -moz-user-select: none;
  3009. -ms-user-select: none;
  3010. user-select: none;
  3011. }
  3012. .btn:focus,
  3013. .btn:active:focus,
  3014. .btn.active:focus,
  3015. .btn.focus,
  3016. .btn:active.focus,
  3017. .btn.active.focus {
  3018. outline: thin dotted;
  3019. outline: 5px auto -webkit-focus-ring-color;
  3020. outline-offset: -2px;
  3021. }
  3022. .btn:hover,
  3023. .btn:focus,
  3024. .btn.focus {
  3025. color: #333;
  3026. text-decoration: none;
  3027. }
  3028. .btn:active,
  3029. .btn.active {
  3030. outline: 0;
  3031. background-image: none;
  3032. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3033. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3034. }
  3035. .btn.disabled,
  3036. .btn[disabled],
  3037. fieldset[disabled] .btn {
  3038. cursor: not-allowed;
  3039. opacity: 0.65;
  3040. filter: alpha(opacity=65);
  3041. -webkit-box-shadow: none;
  3042. box-shadow: none;
  3043. background-color: #a4a4a4;
  3044. }
  3045. a.btn.disabled,
  3046. fieldset[disabled] a.btn {
  3047. pointer-events: none;
  3048. }
  3049. .btn-default {
  3050. color: #333;
  3051. background-color: #fff;
  3052. border-color: #ccc;
  3053. }
  3054. .btn-default:focus,
  3055. .btn-default.focus {
  3056. color: #333;
  3057. background-color: #e6e6e6;
  3058. border-color: #8c8c8c;
  3059. }
  3060. .btn-default:hover {
  3061. color: #333;
  3062. background-color: #e6e6e6;
  3063. border-color: #adadad;
  3064. }
  3065. .btn-default:active,
  3066. .btn-default.active,
  3067. .open > .dropdown-toggle.btn-default {
  3068. color: #333;
  3069. background-color: #e6e6e6;
  3070. border-color: #adadad;
  3071. }
  3072. .btn-default:active:hover,
  3073. .btn-default.active:hover,
  3074. .open > .dropdown-toggle.btn-default:hover,
  3075. .btn-default:active:focus,
  3076. .btn-default.active:focus,
  3077. .open > .dropdown-toggle.btn-default:focus,
  3078. .btn-default:active.focus,
  3079. .btn-default.active.focus,
  3080. .open > .dropdown-toggle.btn-default.focus {
  3081. color: #333;
  3082. background-color: #d4d4d4;
  3083. border-color: #8c8c8c;
  3084. }
  3085. .btn-default:active,
  3086. .btn-default.active,
  3087. .open > .dropdown-toggle.btn-default {
  3088. background-image: none;
  3089. }
  3090. .btn-default.disabled:hover,
  3091. .btn-default[disabled]:hover,
  3092. fieldset[disabled] .btn-default:hover,
  3093. .btn-default.disabled:focus,
  3094. .btn-default[disabled]:focus,
  3095. fieldset[disabled] .btn-default:focus,
  3096. .btn-default.disabled.focus,
  3097. .btn-default[disabled].focus,
  3098. fieldset[disabled] .btn-default.focus {
  3099. background-color: #fff;
  3100. border-color: #ccc;
  3101. }
  3102. .btn-default .badge {
  3103. color: #fff;
  3104. background-color: #333;
  3105. }
  3106. .btn-primary {
  3107. color: #fff;
  3108. background-color: #2c3e50;
  3109. border-color: #2c3e50;
  3110. }
  3111. .btn-primary:focus,
  3112. .btn-primary.focus {
  3113. color: #fff;
  3114. background-color: #1a242f;
  3115. border-color: #000000;
  3116. }
  3117. .btn-primary:hover {
  3118. color: #fff;
  3119. background-color: #1a242f;
  3120. border-color: #161f29;
  3121. }
  3122. .btn-primary:active,
  3123. .btn-primary.active,
  3124. .open > .dropdown-toggle.btn-primary {
  3125. color: #fff;
  3126. background-color: #1a242f;
  3127. border-color: #161f29;
  3128. }
  3129. .btn-primary:active:hover,
  3130. .btn-primary.active:hover,
  3131. .open > .dropdown-toggle.btn-primary:hover,
  3132. .btn-primary:active:focus,
  3133. .btn-primary.active:focus,
  3134. .open > .dropdown-toggle.btn-primary:focus,
  3135. .btn-primary:active.focus,
  3136. .btn-primary.active.focus,
  3137. .open > .dropdown-toggle.btn-primary.focus {
  3138. color: #fff;
  3139. background-color: #0d1318;
  3140. border-color: #000000;
  3141. }
  3142. .btn-primary:active,
  3143. .btn-primary.active,
  3144. .open > .dropdown-toggle.btn-primary {
  3145. background-image: none;
  3146. }
  3147. .btn-primary.disabled:hover,
  3148. .btn-primary[disabled]:hover,
  3149. fieldset[disabled] .btn-primary:hover,
  3150. .btn-primary.disabled:focus,
  3151. .btn-primary[disabled]:focus,
  3152. fieldset[disabled] .btn-primary:focus,
  3153. .btn-primary.disabled.focus,
  3154. .btn-primary[disabled].focus,
  3155. fieldset[disabled] .btn-primary.focus {
  3156. background-color: #2c3e50;
  3157. border-color: #2c3e50;
  3158. }
  3159. .btn-primary .badge {
  3160. color: #2c3e50;
  3161. background-color: #fff;
  3162. }
  3163. .btn-success {
  3164. color: #fff;
  3165. background-color: #18bc9c;
  3166. border-color: #18bc9c;
  3167. }
  3168. .btn-success:focus,
  3169. .btn-success.focus {
  3170. color: #fff;
  3171. background-color: #128f76;
  3172. border-color: #0a4b3e;
  3173. }
  3174. .btn-success:hover {
  3175. color: #fff;
  3176. background-color: #128f76;
  3177. border-color: #11866f;
  3178. }
  3179. .btn-success:active,
  3180. .btn-success.active,
  3181. .open > .dropdown-toggle.btn-success {
  3182. color: #fff;
  3183. background-color: #128f76;
  3184. border-color: #11866f;
  3185. }
  3186. .btn-success:active:hover,
  3187. .btn-success.active:hover,
  3188. .open > .dropdown-toggle.btn-success:hover,
  3189. .btn-success:active:focus,
  3190. .btn-success.active:focus,
  3191. .open > .dropdown-toggle.btn-success:focus,
  3192. .btn-success:active.focus,
  3193. .btn-success.active.focus,
  3194. .open > .dropdown-toggle.btn-success.focus {
  3195. color: #fff;
  3196. background-color: #0e6f5c;
  3197. border-color: #0a4b3e;
  3198. }
  3199. .btn-success:active,
  3200. .btn-success.active,
  3201. .open > .dropdown-toggle.btn-success {
  3202. background-image: none;
  3203. }
  3204. .btn-success.disabled:hover,
  3205. .btn-success[disabled]:hover,
  3206. fieldset[disabled] .btn-success:hover,
  3207. .btn-success.disabled:focus,
  3208. .btn-success[disabled]:focus,
  3209. fieldset[disabled] .btn-success:focus,
  3210. .btn-success.disabled.focus,
  3211. .btn-success[disabled].focus,
  3212. fieldset[disabled] .btn-success.focus {
  3213. background-color: #18bc9c;
  3214. border-color: #18bc9c;
  3215. }
  3216. .btn-success .badge {
  3217. color: #18bc9c;
  3218. background-color: #fff;
  3219. }
  3220. .btn-info {
  3221. color: #fff;
  3222. background-color: #3498db;
  3223. border-color: #3498db;
  3224. }
  3225. .btn-info:focus,
  3226. .btn-info.focus {
  3227. color: #fff;
  3228. background-color: #217dbb;
  3229. border-color: #16527a;
  3230. }
  3231. .btn-info:hover {
  3232. color: #fff;
  3233. background-color: #217dbb;
  3234. border-color: #2077b2;
  3235. }
  3236. .btn-info:active,
  3237. .btn-info.active,
  3238. .open > .dropdown-toggle.btn-info {
  3239. color: #fff;
  3240. background-color: #217dbb;
  3241. border-color: #2077b2;
  3242. }
  3243. .btn-info:active:hover,
  3244. .btn-info.active:hover,
  3245. .open > .dropdown-toggle.btn-info:hover,
  3246. .btn-info:active:focus,
  3247. .btn-info.active:focus,
  3248. .open > .dropdown-toggle.btn-info:focus,
  3249. .btn-info:active.focus,
  3250. .btn-info.active.focus,
  3251. .open > .dropdown-toggle.btn-info.focus {
  3252. color: #fff;
  3253. background-color: #1c699d;
  3254. border-color: #16527a;
  3255. }
  3256. .btn-info:active,
  3257. .btn-info.active,
  3258. .open > .dropdown-toggle.btn-info {
  3259. background-image: none;
  3260. }
  3261. .btn-info.disabled:hover,
  3262. .btn-info[disabled]:hover,
  3263. fieldset[disabled] .btn-info:hover,
  3264. .btn-info.disabled:focus,
  3265. .btn-info[disabled]:focus,
  3266. fieldset[disabled] .btn-info:focus,
  3267. .btn-info.disabled.focus,
  3268. .btn-info[disabled].focus,
  3269. fieldset[disabled] .btn-info.focus {
  3270. background-color: #3498db;
  3271. border-color: #3498db;
  3272. }
  3273. .btn-info .badge {
  3274. color: #3498db;
  3275. background-color: #fff;
  3276. }
  3277. .btn-warning {
  3278. color: #fff;
  3279. background-color: #f39c12;
  3280. border-color: #f39c12;
  3281. }
  3282. .btn-warning:focus,
  3283. .btn-warning.focus {
  3284. color: #fff;
  3285. background-color: #c87f0a;
  3286. border-color: #7f5006;
  3287. }
  3288. .btn-warning:hover {
  3289. color: #fff;
  3290. background-color: #c87f0a;
  3291. border-color: #be780a;
  3292. }
  3293. .btn-warning:active,
  3294. .btn-warning.active,
  3295. .open > .dropdown-toggle.btn-warning {
  3296. color: #fff;
  3297. background-color: #c87f0a;
  3298. border-color: #be780a;
  3299. }
  3300. .btn-warning:active:hover,
  3301. .btn-warning.active:hover,
  3302. .open > .dropdown-toggle.btn-warning:hover,
  3303. .btn-warning:active:focus,
  3304. .btn-warning.active:focus,
  3305. .open > .dropdown-toggle.btn-warning:focus,
  3306. .btn-warning:active.focus,
  3307. .btn-warning.active.focus,
  3308. .open > .dropdown-toggle.btn-warning.focus {
  3309. color: #fff;
  3310. background-color: #a66908;
  3311. border-color: #7f5006;
  3312. }
  3313. .btn-warning:active,
  3314. .btn-warning.active,
  3315. .open > .dropdown-toggle.btn-warning {
  3316. background-image: none;
  3317. }
  3318. .btn-warning.disabled:hover,
  3319. .btn-warning[disabled]:hover,
  3320. fieldset[disabled] .btn-warning:hover,
  3321. .btn-warning.disabled:focus,
  3322. .btn-warning[disabled]:focus,
  3323. fieldset[disabled] .btn-warning:focus,
  3324. .btn-warning.disabled.focus,
  3325. .btn-warning[disabled].focus,
  3326. fieldset[disabled] .btn-warning.focus {
  3327. background-color: #f39c12;
  3328. border-color: #f39c12;
  3329. }
  3330. .btn-warning .badge {
  3331. color: #f39c12;
  3332. background-color: #fff;
  3333. }
  3334. .btn-danger {
  3335. color: #fff;
  3336. background-color: #e74c3c;
  3337. border-color: #e74c3c;
  3338. }
  3339. .btn-danger:focus,
  3340. .btn-danger.focus {
  3341. color: #fff;
  3342. background-color: #d62c1a;
  3343. border-color: #921e12;
  3344. }
  3345. .btn-danger:hover {
  3346. color: #fff;
  3347. background-color: #d62c1a;
  3348. border-color: #cd2a19;
  3349. }
  3350. .btn-danger:active,
  3351. .btn-danger.active,
  3352. .open > .dropdown-toggle.btn-danger {
  3353. color: #fff;
  3354. background-color: #d62c1a;
  3355. border-color: #cd2a19;
  3356. }
  3357. .btn-danger:active:hover,
  3358. .btn-danger.active:hover,
  3359. .open > .dropdown-toggle.btn-danger:hover,
  3360. .btn-danger:active:focus,
  3361. .btn-danger.active:focus,
  3362. .open > .dropdown-toggle.btn-danger:focus,
  3363. .btn-danger:active.focus,
  3364. .btn-danger.active.focus,
  3365. .open > .dropdown-toggle.btn-danger.focus {
  3366. color: #fff;
  3367. background-color: #b62516;
  3368. border-color: #921e12;
  3369. }
  3370. .btn-danger:active,
  3371. .btn-danger.active,
  3372. .open > .dropdown-toggle.btn-danger {
  3373. background-image: none;
  3374. }
  3375. .btn-danger.disabled:hover,
  3376. .btn-danger[disabled]:hover,
  3377. fieldset[disabled] .btn-danger:hover,
  3378. .btn-danger.disabled:focus,
  3379. .btn-danger[disabled]:focus,
  3380. fieldset[disabled] .btn-danger:focus,
  3381. .btn-danger.disabled.focus,
  3382. .btn-danger[disabled].focus,
  3383. fieldset[disabled] .btn-danger.focus {
  3384. background-color: #e74c3c;
  3385. border-color: #e74c3c;
  3386. }
  3387. .btn-danger .badge {
  3388. color: #e74c3c;
  3389. background-color: #fff;
  3390. }
  3391. .btn-link {
  3392. color: #2c3e50;
  3393. font-weight: normal;
  3394. border-radius: 0;
  3395. }
  3396. .btn-link,
  3397. .btn-link:active,
  3398. .btn-link.active,
  3399. .btn-link[disabled],
  3400. fieldset[disabled] .btn-link {
  3401. background-color: transparent;
  3402. -webkit-box-shadow: none;
  3403. box-shadow: none;
  3404. }
  3405. .btn-link,
  3406. .btn-link:hover,
  3407. .btn-link:focus,
  3408. .btn-link:active {
  3409. border-color: transparent;
  3410. }
  3411. .btn-link:hover,
  3412. .btn-link:focus {
  3413. color: #11181f;
  3414. text-decoration: underline;
  3415. background-color: transparent;
  3416. }
  3417. .btn-link[disabled]:hover,
  3418. fieldset[disabled] .btn-link:hover,
  3419. .btn-link[disabled]:focus,
  3420. fieldset[disabled] .btn-link:focus {
  3421. color: #777777;
  3422. text-decoration: none;
  3423. }
  3424. .btn-lg,
  3425. .btn-group-lg > .btn {
  3426. padding: 10px 16px;
  3427. font-size: 15px;
  3428. line-height: 1.3333333;
  3429. border-radius: 5px;
  3430. }
  3431. .btn-sm,
  3432. .btn-group-sm > .btn {
  3433. padding: 5px 10px;
  3434. font-size: 11px;
  3435. line-height: 1.5;
  3436. border-radius: 2px;
  3437. }
  3438. .btn-xs,
  3439. .btn-group-xs > .btn {
  3440. padding: 1px 5px;
  3441. font-size: 11px;
  3442. line-height: 1.5;
  3443. border-radius: 2px;
  3444. }
  3445. .btn-block {
  3446. display: block;
  3447. width: 100%;
  3448. }
  3449. .btn-block + .btn-block {
  3450. margin-top: 5px;
  3451. }
  3452. input[type="submit"].btn-block,
  3453. input[type="reset"].btn-block,
  3454. input[type="button"].btn-block {
  3455. width: 100%;
  3456. }
  3457. .fade {
  3458. opacity: 0;
  3459. -webkit-transition: opacity 0.15s linear;
  3460. -o-transition: opacity 0.15s linear;
  3461. transition: opacity 0.15s linear;
  3462. }
  3463. .fade.in {
  3464. opacity: 1;
  3465. }
  3466. .collapse {
  3467. display: none;
  3468. }
  3469. .collapse.in {
  3470. display: block;
  3471. }
  3472. tr.collapse.in {
  3473. display: table-row;
  3474. }
  3475. tbody.collapse.in {
  3476. display: table-row-group;
  3477. }
  3478. .collapsing {
  3479. position: relative;
  3480. height: 0;
  3481. overflow: hidden;
  3482. -webkit-transition-property: height, visibility;
  3483. transition-property: height, visibility;
  3484. -webkit-transition-duration: 0.35s;
  3485. transition-duration: 0.35s;
  3486. -webkit-transition-timing-function: ease;
  3487. transition-timing-function: ease;
  3488. }
  3489. .caret {
  3490. display: inline-block;
  3491. width: 0;
  3492. height: 0;
  3493. margin-left: 2px;
  3494. vertical-align: middle;
  3495. border-top: 4px dashed;
  3496. border-top: 4px solid \9;
  3497. border-right: 4px solid transparent;
  3498. border-left: 4px solid transparent;
  3499. }
  3500. .dropup,
  3501. .dropdown {
  3502. position: relative;
  3503. }
  3504. .dropdown-toggle:focus {
  3505. outline: 0;
  3506. }
  3507. .dropdown-menu {
  3508. position: absolute;
  3509. top: 100%;
  3510. left: 0;
  3511. z-index: 1000;
  3512. display: none;
  3513. float: left;
  3514. min-width: 160px;
  3515. padding: 5px 0;
  3516. margin: 2px 0 0;
  3517. list-style: none;
  3518. font-size: 12px;
  3519. text-align: left;
  3520. background-color: #fff;
  3521. border: 1px solid #ccc;
  3522. border: 1px solid rgba(0, 0, 0, 0.15);
  3523. border-radius: 3px;
  3524. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3525. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3526. background-clip: padding-box;
  3527. }
  3528. .dropdown-menu.pull-right {
  3529. right: 0;
  3530. left: auto;
  3531. }
  3532. .dropdown-menu .divider {
  3533. height: 1px;
  3534. margin: 7.5px 0;
  3535. overflow: hidden;
  3536. background-color: #e5e5e5;
  3537. }
  3538. .dropdown-menu > li > a {
  3539. display: block;
  3540. padding: 3px 20px;
  3541. clear: both;
  3542. font-weight: normal;
  3543. line-height: 1.42857143;
  3544. color: #333333;
  3545. white-space: nowrap;
  3546. }
  3547. .dropdown-menu > li > a:hover,
  3548. .dropdown-menu > li > a:focus {
  3549. text-decoration: none;
  3550. color: #262626;
  3551. background-color: #f5f5f5;
  3552. }
  3553. .dropdown-menu > .active > a,
  3554. .dropdown-menu > .active > a:hover,
  3555. .dropdown-menu > .active > a:focus {
  3556. color: #fff;
  3557. text-decoration: none;
  3558. outline: 0;
  3559. background-color: #2c3e50;
  3560. }
  3561. .dropdown-menu > .disabled > a,
  3562. .dropdown-menu > .disabled > a:hover,
  3563. .dropdown-menu > .disabled > a:focus {
  3564. color: #777777;
  3565. }
  3566. .dropdown-menu > .disabled > a:hover,
  3567. .dropdown-menu > .disabled > a:focus {
  3568. text-decoration: none;
  3569. background-color: transparent;
  3570. background-image: none;
  3571. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3572. cursor: not-allowed;
  3573. }
  3574. .open > .dropdown-menu {
  3575. display: block;
  3576. }
  3577. .open > a {
  3578. outline: 0;
  3579. }
  3580. .dropdown-menu-right {
  3581. left: auto;
  3582. right: 0;
  3583. }
  3584. .dropdown-menu-left {
  3585. left: 0;
  3586. right: auto;
  3587. }
  3588. .dropdown-header {
  3589. display: block;
  3590. padding: 3px 20px;
  3591. font-size: 11px;
  3592. line-height: 1.42857143;
  3593. color: #777777;
  3594. white-space: nowrap;
  3595. }
  3596. .dropdown-backdrop {
  3597. position: fixed;
  3598. left: 0;
  3599. right: 0;
  3600. bottom: 0;
  3601. top: 0;
  3602. z-index: 990;
  3603. }
  3604. .pull-right > .dropdown-menu {
  3605. right: 0;
  3606. left: auto;
  3607. }
  3608. .dropup .caret,
  3609. .navbar-fixed-bottom .dropdown .caret {
  3610. border-top: 0;
  3611. border-bottom: 4px dashed;
  3612. border-bottom: 4px solid \9;
  3613. content: "";
  3614. }
  3615. .dropup .dropdown-menu,
  3616. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3617. top: auto;
  3618. bottom: 100%;
  3619. margin-bottom: 2px;
  3620. }
  3621. @media (min-width: 768px) {
  3622. .navbar-right .dropdown-menu {
  3623. left: auto;
  3624. right: 0;
  3625. }
  3626. .navbar-right .dropdown-menu-left {
  3627. left: 0;
  3628. right: auto;
  3629. }
  3630. }
  3631. .btn-group,
  3632. .btn-group-vertical {
  3633. position: relative;
  3634. display: inline-block;
  3635. vertical-align: middle;
  3636. }
  3637. .btn-group > .btn,
  3638. .btn-group-vertical > .btn {
  3639. position: relative;
  3640. float: left;
  3641. }
  3642. .btn-group > .btn:hover,
  3643. .btn-group-vertical > .btn:hover,
  3644. .btn-group > .btn:focus,
  3645. .btn-group-vertical > .btn:focus,
  3646. .btn-group > .btn:active,
  3647. .btn-group-vertical > .btn:active,
  3648. .btn-group > .btn.active,
  3649. .btn-group-vertical > .btn.active {
  3650. z-index: 2;
  3651. }
  3652. .btn-group .btn + .btn,
  3653. .btn-group .btn + .btn-group,
  3654. .btn-group .btn-group + .btn,
  3655. .btn-group .btn-group + .btn-group {
  3656. margin-left: -1px;
  3657. }
  3658. .btn-toolbar {
  3659. margin-left: -5px;
  3660. }
  3661. .btn-toolbar .btn,
  3662. .btn-toolbar .btn-group,
  3663. .btn-toolbar .input-group {
  3664. float: left;
  3665. }
  3666. .btn-toolbar > .btn,
  3667. .btn-toolbar > .btn-group,
  3668. .btn-toolbar > .input-group {
  3669. margin-left: 5px;
  3670. }
  3671. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3672. border-radius: 0;
  3673. }
  3674. .btn-group > .btn:first-child {
  3675. margin-left: 0;
  3676. }
  3677. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3678. border-bottom-right-radius: 0;
  3679. border-top-right-radius: 0;
  3680. }
  3681. .btn-group > .btn:last-child:not(:first-child),
  3682. .btn-group > .dropdown-toggle:not(:first-child) {
  3683. border-bottom-left-radius: 0;
  3684. border-top-left-radius: 0;
  3685. }
  3686. .btn-group > .btn-group {
  3687. float: left;
  3688. }
  3689. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3690. border-radius: 0;
  3691. }
  3692. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3693. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3694. border-bottom-right-radius: 0;
  3695. border-top-right-radius: 0;
  3696. }
  3697. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3698. border-bottom-left-radius: 0;
  3699. border-top-left-radius: 0;
  3700. }
  3701. .btn-group .dropdown-toggle:active,
  3702. .btn-group.open .dropdown-toggle {
  3703. outline: 0;
  3704. }
  3705. .btn-group > .btn + .dropdown-toggle {
  3706. padding-left: 8px;
  3707. padding-right: 8px;
  3708. }
  3709. .btn-group > .btn-lg + .dropdown-toggle {
  3710. padding-left: 12px;
  3711. padding-right: 12px;
  3712. }
  3713. .btn-group.open .dropdown-toggle {
  3714. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3715. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3716. }
  3717. .btn-group.open .dropdown-toggle.btn-link {
  3718. -webkit-box-shadow: none;
  3719. box-shadow: none;
  3720. }
  3721. .btn .caret {
  3722. margin-left: 0;
  3723. }
  3724. .btn-lg .caret {
  3725. border-width: 5px 5px 0;
  3726. border-bottom-width: 0;
  3727. }
  3728. .dropup .btn-lg .caret {
  3729. border-width: 0 5px 5px;
  3730. }
  3731. .btn-group-vertical > .btn,
  3732. .btn-group-vertical > .btn-group,
  3733. .btn-group-vertical > .btn-group > .btn {
  3734. display: block;
  3735. float: none;
  3736. width: 100%;
  3737. max-width: 100%;
  3738. }
  3739. .btn-group-vertical > .btn-group > .btn {
  3740. float: none;
  3741. }
  3742. .btn-group-vertical > .btn + .btn,
  3743. .btn-group-vertical > .btn + .btn-group,
  3744. .btn-group-vertical > .btn-group + .btn,
  3745. .btn-group-vertical > .btn-group + .btn-group {
  3746. margin-top: -1px;
  3747. margin-left: 0;
  3748. }
  3749. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3750. border-radius: 0;
  3751. }
  3752. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3753. border-top-right-radius: 3px;
  3754. border-top-left-radius: 3px;
  3755. border-bottom-right-radius: 0;
  3756. border-bottom-left-radius: 0;
  3757. }
  3758. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3759. border-top-right-radius: 0;
  3760. border-top-left-radius: 0;
  3761. border-bottom-right-radius: 3px;
  3762. border-bottom-left-radius: 3px;
  3763. }
  3764. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3765. border-radius: 0;
  3766. }
  3767. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3768. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3769. border-bottom-right-radius: 0;
  3770. border-bottom-left-radius: 0;
  3771. }
  3772. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3773. border-top-right-radius: 0;
  3774. border-top-left-radius: 0;
  3775. }
  3776. .btn-group-justified {
  3777. display: table;
  3778. width: 100%;
  3779. table-layout: fixed;
  3780. border-collapse: separate;
  3781. }
  3782. .btn-group-justified > .btn,
  3783. .btn-group-justified > .btn-group {
  3784. float: none;
  3785. display: table-cell;
  3786. width: 1%;
  3787. }
  3788. .btn-group-justified > .btn-group .btn {
  3789. width: 100%;
  3790. }
  3791. .btn-group-justified > .btn-group .dropdown-menu {
  3792. left: auto;
  3793. }
  3794. [data-toggle="buttons"] > .btn input[type="radio"],
  3795. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3796. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3797. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3798. position: absolute;
  3799. clip: rect(0, 0, 0, 0);
  3800. pointer-events: none;
  3801. }
  3802. .input-group {
  3803. position: relative;
  3804. display: table;
  3805. border-collapse: separate;
  3806. }
  3807. .input-group[class*="col-"] {
  3808. float: none;
  3809. padding-left: 0;
  3810. padding-right: 0;
  3811. }
  3812. .input-group .form-control {
  3813. position: relative;
  3814. z-index: 2;
  3815. float: left;
  3816. width: 100%;
  3817. margin-bottom: 0;
  3818. }
  3819. .input-group .form-control:focus {
  3820. z-index: 3;
  3821. }
  3822. .input-group-lg > .form-control,
  3823. .input-group-lg > .input-group-addon,
  3824. .input-group-lg > .input-group-btn > .btn {
  3825. height: 42px;
  3826. padding: 10px 16px;
  3827. font-size: 15px;
  3828. line-height: 1.3333333;
  3829. border-radius: 5px;
  3830. }
  3831. select.input-group-lg > .form-control,
  3832. select.input-group-lg > .input-group-addon,
  3833. select.input-group-lg > .input-group-btn > .btn {
  3834. height: 42px;
  3835. line-height: 42px;
  3836. }
  3837. textarea.input-group-lg > .form-control,
  3838. textarea.input-group-lg > .input-group-addon,
  3839. textarea.input-group-lg > .input-group-btn > .btn,
  3840. select[multiple].input-group-lg > .form-control,
  3841. select[multiple].input-group-lg > .input-group-addon,
  3842. select[multiple].input-group-lg > .input-group-btn > .btn {
  3843. height: auto;
  3844. }
  3845. .input-group-sm > .form-control,
  3846. .input-group-sm > .input-group-addon,
  3847. .input-group-sm > .input-group-btn > .btn {
  3848. height: 28px;
  3849. padding: 5px 10px;
  3850. font-size: 11px;
  3851. line-height: 1.5;
  3852. border-radius: 2px;
  3853. }
  3854. select.input-group-sm > .form-control,
  3855. select.input-group-sm > .input-group-addon,
  3856. select.input-group-sm > .input-group-btn > .btn {
  3857. height: 28px;
  3858. line-height: 28px;
  3859. }
  3860. textarea.input-group-sm > .form-control,
  3861. textarea.input-group-sm > .input-group-addon,
  3862. textarea.input-group-sm > .input-group-btn > .btn,
  3863. select[multiple].input-group-sm > .form-control,
  3864. select[multiple].input-group-sm > .input-group-addon,
  3865. select[multiple].input-group-sm > .input-group-btn > .btn {
  3866. height: auto;
  3867. }
  3868. .input-group-addon,
  3869. .input-group-btn,
  3870. .input-group .form-control {
  3871. display: table-cell;
  3872. }
  3873. .input-group-addon:not(:first-child):not(:last-child),
  3874. .input-group-btn:not(:first-child):not(:last-child),
  3875. .input-group .form-control:not(:first-child):not(:last-child) {
  3876. border-radius: 0;
  3877. }
  3878. .input-group-addon,
  3879. .input-group-btn {
  3880. width: 1%;
  3881. white-space: nowrap;
  3882. vertical-align: middle;
  3883. }
  3884. .input-group-addon {
  3885. padding: 6px 12px;
  3886. font-size: 12px;
  3887. font-weight: normal;
  3888. line-height: 1;
  3889. color: #555555;
  3890. text-align: center;
  3891. background-color: #eeeeee;
  3892. border: 1px solid #ccc;
  3893. border-radius: 3px;
  3894. }
  3895. .input-group-addon.input-sm {
  3896. padding: 5px 10px;
  3897. font-size: 11px;
  3898. border-radius: 2px;
  3899. }
  3900. .input-group-addon.input-lg {
  3901. padding: 10px 16px;
  3902. font-size: 15px;
  3903. border-radius: 5px;
  3904. }
  3905. .input-group-addon input[type="radio"],
  3906. .input-group-addon input[type="checkbox"] {
  3907. margin-top: 0;
  3908. }
  3909. .input-group .form-control:first-child,
  3910. .input-group-addon:first-child,
  3911. .input-group-btn:first-child > .btn,
  3912. .input-group-btn:first-child > .btn-group > .btn,
  3913. .input-group-btn:first-child > .dropdown-toggle,
  3914. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3915. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3916. border-bottom-right-radius: 0;
  3917. border-top-right-radius: 0;
  3918. }
  3919. .input-group-addon:first-child {
  3920. border-right: 0;
  3921. }
  3922. .input-group .form-control:last-child,
  3923. .input-group-addon:last-child,
  3924. .input-group-btn:last-child > .btn,
  3925. .input-group-btn:last-child > .btn-group > .btn,
  3926. .input-group-btn:last-child > .dropdown-toggle,
  3927. .input-group-btn:first-child > .btn:not(:first-child),
  3928. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3929. border-bottom-left-radius: 0;
  3930. border-top-left-radius: 0;
  3931. }
  3932. .input-group-addon:last-child {
  3933. border-left: 0;
  3934. }
  3935. .input-group-btn {
  3936. position: relative;
  3937. font-size: 0;
  3938. white-space: nowrap;
  3939. }
  3940. .input-group-btn > .btn {
  3941. position: relative;
  3942. }
  3943. .input-group-btn > .btn + .btn {
  3944. margin-left: -1px;
  3945. }
  3946. .input-group-btn > .btn:hover,
  3947. .input-group-btn > .btn:focus,
  3948. .input-group-btn > .btn:active {
  3949. z-index: 2;
  3950. }
  3951. .input-group-btn:first-child > .btn,
  3952. .input-group-btn:first-child > .btn-group {
  3953. margin-right: -1px;
  3954. }
  3955. .input-group-btn:last-child > .btn,
  3956. .input-group-btn:last-child > .btn-group {
  3957. z-index: 2;
  3958. margin-left: -1px;
  3959. }
  3960. .nav {
  3961. margin-bottom: 0;
  3962. padding-left: 0;
  3963. list-style: none;
  3964. }
  3965. .nav > li {
  3966. position: relative;
  3967. display: block;
  3968. }
  3969. .nav > li > a {
  3970. position: relative;
  3971. display: block;
  3972. padding: 10px 15px;
  3973. }
  3974. .nav > li > a:hover,
  3975. .nav > li > a:focus {
  3976. text-decoration: none;
  3977. background-color: #eeeeee;
  3978. }
  3979. .nav > li.disabled > a {
  3980. color: #777777;
  3981. }
  3982. .nav > li.disabled > a:hover,
  3983. .nav > li.disabled > a:focus {
  3984. color: #777777;
  3985. text-decoration: none;
  3986. background-color: transparent;
  3987. cursor: not-allowed;
  3988. }
  3989. .nav .open > a,
  3990. .nav .open > a:hover,
  3991. .nav .open > a:focus {
  3992. background-color: #eeeeee;
  3993. border-color: #2c3e50;
  3994. }
  3995. .nav .nav-divider {
  3996. height: 1px;
  3997. margin: 7.5px 0;
  3998. overflow: hidden;
  3999. background-color: #e5e5e5;
  4000. }
  4001. .nav > li > a > img {
  4002. max-width: none;
  4003. }
  4004. .nav-tabs {
  4005. border-bottom: 1px solid #ddd;
  4006. }
  4007. .nav-tabs > li {
  4008. float: left;
  4009. margin-bottom: -1px;
  4010. }
  4011. .nav-tabs > li > a {
  4012. margin-right: 2px;
  4013. line-height: 1.42857143;
  4014. border: 1px solid transparent;
  4015. border-radius: 3px 3px 0 0;
  4016. }
  4017. .nav-tabs > li > a:hover {
  4018. border-color: #eeeeee #eeeeee #ddd;
  4019. }
  4020. .nav-tabs > li.active > a,
  4021. .nav-tabs > li.active > a:hover,
  4022. .nav-tabs > li.active > a:focus {
  4023. color: #555555;
  4024. background-color: #fff;
  4025. border: 1px solid #ddd;
  4026. border-bottom-color: transparent;
  4027. cursor: default;
  4028. }
  4029. .nav-tabs.nav-justified {
  4030. width: 100%;
  4031. border-bottom: 0;
  4032. }
  4033. .nav-tabs.nav-justified > li {
  4034. float: none;
  4035. }
  4036. .nav-tabs.nav-justified > li > a {
  4037. text-align: center;
  4038. margin-bottom: 5px;
  4039. }
  4040. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4041. top: auto;
  4042. left: auto;
  4043. }
  4044. @media (min-width: 768px) {
  4045. .nav-tabs.nav-justified > li {
  4046. display: table-cell;
  4047. width: 1%;
  4048. }
  4049. .nav-tabs.nav-justified > li > a {
  4050. margin-bottom: 0;
  4051. }
  4052. }
  4053. .nav-tabs.nav-justified > li > a {
  4054. margin-right: 0;
  4055. border-radius: 3px;
  4056. }
  4057. .nav-tabs.nav-justified > .active > a,
  4058. .nav-tabs.nav-justified > .active > a:hover,
  4059. .nav-tabs.nav-justified > .active > a:focus {
  4060. border: 1px solid #ddd;
  4061. }
  4062. @media (min-width: 768px) {
  4063. .nav-tabs.nav-justified > li > a {
  4064. border-bottom: 1px solid #ddd;
  4065. border-radius: 3px 3px 0 0;
  4066. }
  4067. .nav-tabs.nav-justified > .active > a,
  4068. .nav-tabs.nav-justified > .active > a:hover,
  4069. .nav-tabs.nav-justified > .active > a:focus {
  4070. border-bottom-color: #fff;
  4071. }
  4072. }
  4073. .nav-pills > li {
  4074. float: left;
  4075. }
  4076. .nav-pills > li > a {
  4077. border-radius: 3px;
  4078. }
  4079. .nav-pills > li + li {
  4080. margin-left: 2px;
  4081. }
  4082. .nav-pills > li.active > a,
  4083. .nav-pills > li.active > a:hover,
  4084. .nav-pills > li.active > a:focus {
  4085. color: #fff;
  4086. background-color: #2c3e50;
  4087. }
  4088. .nav-stacked > li {
  4089. float: none;
  4090. }
  4091. .nav-stacked > li + li {
  4092. margin-top: 2px;
  4093. margin-left: 0;
  4094. }
  4095. .nav-justified {
  4096. width: 100%;
  4097. }
  4098. .nav-justified > li {
  4099. float: none;
  4100. }
  4101. .nav-justified > li > a {
  4102. text-align: center;
  4103. margin-bottom: 5px;
  4104. }
  4105. .nav-justified > .dropdown .dropdown-menu {
  4106. top: auto;
  4107. left: auto;
  4108. }
  4109. @media (min-width: 768px) {
  4110. .nav-justified > li {
  4111. display: table-cell;
  4112. width: 1%;
  4113. }
  4114. .nav-justified > li > a {
  4115. margin-bottom: 0;
  4116. }
  4117. }
  4118. .nav-tabs-justified {
  4119. border-bottom: 0;
  4120. }
  4121. .nav-tabs-justified > li > a {
  4122. margin-right: 0;
  4123. border-radius: 3px;
  4124. }
  4125. .nav-tabs-justified > .active > a,
  4126. .nav-tabs-justified > .active > a:hover,
  4127. .nav-tabs-justified > .active > a:focus {
  4128. border: 1px solid #ddd;
  4129. }
  4130. @media (min-width: 768px) {
  4131. .nav-tabs-justified > li > a {
  4132. border-bottom: 1px solid #ddd;
  4133. border-radius: 3px 3px 0 0;
  4134. }
  4135. .nav-tabs-justified > .active > a,
  4136. .nav-tabs-justified > .active > a:hover,
  4137. .nav-tabs-justified > .active > a:focus {
  4138. border-bottom-color: #fff;
  4139. }
  4140. }
  4141. .tab-content > .tab-pane {
  4142. display: none;
  4143. }
  4144. .tab-content > .active {
  4145. display: block;
  4146. }
  4147. .nav-tabs .dropdown-menu {
  4148. margin-top: -1px;
  4149. border-top-right-radius: 0;
  4150. border-top-left-radius: 0;
  4151. }
  4152. .navbar {
  4153. position: relative;
  4154. min-height: 50px;
  4155. margin-bottom: 17px;
  4156. border: 1px solid transparent;
  4157. }
  4158. @media (min-width: 768px) {
  4159. .navbar {
  4160. border-radius: 3px;
  4161. }
  4162. }
  4163. @media (min-width: 768px) {
  4164. .navbar-header {
  4165. float: left;
  4166. }
  4167. }
  4168. .navbar-collapse {
  4169. overflow-x: visible;
  4170. padding-right: 15px;
  4171. padding-left: 15px;
  4172. border-top: 1px solid transparent;
  4173. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4174. -webkit-overflow-scrolling: touch;
  4175. }
  4176. .navbar-collapse.in {
  4177. overflow-y: auto;
  4178. }
  4179. @media (min-width: 768px) {
  4180. .navbar-collapse {
  4181. width: auto;
  4182. border-top: 0;
  4183. box-shadow: none;
  4184. }
  4185. .navbar-collapse.collapse {
  4186. display: block !important;
  4187. height: auto !important;
  4188. padding-bottom: 0;
  4189. overflow: visible !important;
  4190. }
  4191. .navbar-collapse.in {
  4192. overflow-y: visible;
  4193. }
  4194. .navbar-fixed-top .navbar-collapse,
  4195. .navbar-static-top .navbar-collapse,
  4196. .navbar-fixed-bottom .navbar-collapse {
  4197. padding-left: 0;
  4198. padding-right: 0;
  4199. }
  4200. }
  4201. .navbar-fixed-top .navbar-collapse,
  4202. .navbar-fixed-bottom .navbar-collapse {
  4203. max-height: 340px;
  4204. }
  4205. @media (max-device-width: 480px) and (orientation: landscape) {
  4206. .navbar-fixed-top .navbar-collapse,
  4207. .navbar-fixed-bottom .navbar-collapse {
  4208. max-height: 200px;
  4209. }
  4210. }
  4211. .container > .navbar-header,
  4212. .container-fluid > .navbar-header,
  4213. .container > .navbar-collapse,
  4214. .container-fluid > .navbar-collapse {
  4215. margin-right: -15px;
  4216. margin-left: -15px;
  4217. }
  4218. @media (min-width: 768px) {
  4219. .container > .navbar-header,
  4220. .container-fluid > .navbar-header,
  4221. .container > .navbar-collapse,
  4222. .container-fluid > .navbar-collapse {
  4223. margin-right: 0;
  4224. margin-left: 0;
  4225. }
  4226. }
  4227. .navbar-static-top {
  4228. z-index: 1000;
  4229. border-width: 0 0 1px;
  4230. }
  4231. @media (min-width: 768px) {
  4232. .navbar-static-top {
  4233. border-radius: 0;
  4234. }
  4235. }
  4236. .navbar-fixed-top,
  4237. .navbar-fixed-bottom {
  4238. position: fixed;
  4239. right: 0;
  4240. left: 0;
  4241. z-index: 1030;
  4242. }
  4243. @media (min-width: 768px) {
  4244. .navbar-fixed-top,
  4245. .navbar-fixed-bottom {
  4246. border-radius: 0;
  4247. }
  4248. }
  4249. .navbar-fixed-top {
  4250. top: 0;
  4251. border-width: 0 0 1px;
  4252. }
  4253. .navbar-fixed-bottom {
  4254. bottom: 0;
  4255. margin-bottom: 0;
  4256. border-width: 1px 0 0;
  4257. }
  4258. .navbar-brand {
  4259. float: left;
  4260. padding: 16.5px 15px;
  4261. font-size: 15px;
  4262. line-height: 17px;
  4263. height: 50px;
  4264. }
  4265. .navbar-brand:hover,
  4266. .navbar-brand:focus {
  4267. text-decoration: none;
  4268. }
  4269. .navbar-brand > img {
  4270. display: block;
  4271. }
  4272. @media (min-width: 768px) {
  4273. .navbar > .container .navbar-brand,
  4274. .navbar > .container-fluid .navbar-brand {
  4275. margin-left: -15px;
  4276. }
  4277. }
  4278. .navbar-toggle {
  4279. position: relative;
  4280. float: right;
  4281. margin-right: 15px;
  4282. padding: 9px 10px;
  4283. margin-top: 8px;
  4284. margin-bottom: 8px;
  4285. background-color: transparent;
  4286. background-image: none;
  4287. border: 1px solid transparent;
  4288. border-radius: 3px;
  4289. }
  4290. .navbar-toggle:focus {
  4291. outline: 0;
  4292. }
  4293. .navbar-toggle .icon-bar {
  4294. display: block;
  4295. width: 22px;
  4296. height: 2px;
  4297. border-radius: 1px;
  4298. }
  4299. .navbar-toggle .icon-bar + .icon-bar {
  4300. margin-top: 4px;
  4301. }
  4302. @media (min-width: 768px) {
  4303. .navbar-toggle {
  4304. display: none;
  4305. }
  4306. }
  4307. .navbar-nav {
  4308. margin: 8.25px -15px;
  4309. }
  4310. .navbar-nav > li > a {
  4311. padding-top: 10px;
  4312. padding-bottom: 10px;
  4313. line-height: 17px;
  4314. }
  4315. @media (max-width: 767px) {
  4316. .navbar-nav .open .dropdown-menu {
  4317. position: static;
  4318. float: none;
  4319. width: auto;
  4320. margin-top: 0;
  4321. background-color: transparent;
  4322. border: 0;
  4323. box-shadow: none;
  4324. }
  4325. .navbar-nav .open .dropdown-menu > li > a,
  4326. .navbar-nav .open .dropdown-menu .dropdown-header {
  4327. padding: 5px 15px 5px 25px;
  4328. }
  4329. .navbar-nav .open .dropdown-menu > li > a {
  4330. line-height: 17px;
  4331. }
  4332. .navbar-nav .open .dropdown-menu > li > a:hover,
  4333. .navbar-nav .open .dropdown-menu > li > a:focus {
  4334. background-image: none;
  4335. }
  4336. }
  4337. @media (min-width: 768px) {
  4338. .navbar-nav {
  4339. float: left;
  4340. margin: 0;
  4341. }
  4342. .navbar-nav > li {
  4343. float: left;
  4344. }
  4345. .navbar-nav > li > a {
  4346. padding-top: 16.5px;
  4347. padding-bottom: 16.5px;
  4348. }
  4349. }
  4350. .navbar-form {
  4351. margin-left: -15px;
  4352. margin-right: -15px;
  4353. padding: 10px 15px;
  4354. border-top: 1px solid transparent;
  4355. border-bottom: 1px solid transparent;
  4356. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4357. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4358. margin-top: 9.5px;
  4359. margin-bottom: 9.5px;
  4360. }
  4361. @media (min-width: 768px) {
  4362. .navbar-form .form-group {
  4363. display: inline-block;
  4364. margin-bottom: 0;
  4365. vertical-align: middle;
  4366. }
  4367. .navbar-form .form-control {
  4368. display: inline-block;
  4369. width: auto;
  4370. vertical-align: middle;
  4371. }
  4372. .navbar-form .form-control-static {
  4373. display: inline-block;
  4374. }
  4375. .navbar-form .input-group {
  4376. display: inline-table;
  4377. vertical-align: middle;
  4378. }
  4379. .navbar-form .input-group .input-group-addon,
  4380. .navbar-form .input-group .input-group-btn,
  4381. .navbar-form .input-group .form-control {
  4382. width: auto;
  4383. }
  4384. .navbar-form .input-group > .form-control {
  4385. width: 100%;
  4386. }
  4387. .navbar-form .control-label {
  4388. margin-bottom: 0;
  4389. vertical-align: middle;
  4390. }
  4391. .navbar-form .radio,
  4392. .navbar-form .checkbox {
  4393. display: inline-block;
  4394. margin-top: 0;
  4395. margin-bottom: 0;
  4396. vertical-align: middle;
  4397. }
  4398. .navbar-form .radio label,
  4399. .navbar-form .checkbox label {
  4400. padding-left: 0;
  4401. }
  4402. .navbar-form .radio input[type="radio"],
  4403. .navbar-form .checkbox input[type="checkbox"] {
  4404. position: relative;
  4405. margin-left: 0;
  4406. }
  4407. .navbar-form .has-feedback .form-control-feedback {
  4408. top: 0;
  4409. }
  4410. }
  4411. @media (max-width: 767px) {
  4412. .navbar-form .form-group {
  4413. margin-bottom: 5px;
  4414. }
  4415. .navbar-form .form-group:last-child {
  4416. margin-bottom: 0;
  4417. }
  4418. }
  4419. @media (min-width: 768px) {
  4420. .navbar-form {
  4421. width: auto;
  4422. border: 0;
  4423. margin-left: 0;
  4424. margin-right: 0;
  4425. padding-top: 0;
  4426. padding-bottom: 0;
  4427. -webkit-box-shadow: none;
  4428. box-shadow: none;
  4429. }
  4430. }
  4431. .navbar-nav > li > .dropdown-menu {
  4432. margin-top: 0;
  4433. border-top-right-radius: 0;
  4434. border-top-left-radius: 0;
  4435. }
  4436. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4437. margin-bottom: 0;
  4438. border-top-right-radius: 3px;
  4439. border-top-left-radius: 3px;
  4440. border-bottom-right-radius: 0;
  4441. border-bottom-left-radius: 0;
  4442. }
  4443. .navbar-btn {
  4444. margin-top: 9.5px;
  4445. margin-bottom: 9.5px;
  4446. }
  4447. .navbar-btn.btn-sm {
  4448. margin-top: 11px;
  4449. margin-bottom: 11px;
  4450. }
  4451. .navbar-btn.btn-xs {
  4452. margin-top: 14px;
  4453. margin-bottom: 14px;
  4454. }
  4455. .navbar-text {
  4456. margin-top: 16.5px;
  4457. margin-bottom: 16.5px;
  4458. }
  4459. @media (min-width: 768px) {
  4460. .navbar-text {
  4461. float: left;
  4462. margin-left: 15px;
  4463. margin-right: 15px;
  4464. }
  4465. }
  4466. @media (min-width: 768px) {
  4467. .navbar-left {
  4468. float: left !important;
  4469. }
  4470. .navbar-right {
  4471. float: right !important;
  4472. margin-right: -15px;
  4473. }
  4474. .navbar-right ~ .navbar-right {
  4475. margin-right: 0;
  4476. }
  4477. }
  4478. .navbar-default {
  4479. background-color: #f8f8f8;
  4480. border-color: #e7e7e7;
  4481. }
  4482. .navbar-default .navbar-brand {
  4483. color: #777;
  4484. }
  4485. .navbar-default .navbar-brand:hover,
  4486. .navbar-default .navbar-brand:focus {
  4487. color: #5e5e5e;
  4488. background-color: transparent;
  4489. }
  4490. .navbar-default .navbar-text {
  4491. color: #777;
  4492. }
  4493. .navbar-default .navbar-nav > li > a {
  4494. color: #777;
  4495. }
  4496. .navbar-default .navbar-nav > li > a:hover,
  4497. .navbar-default .navbar-nav > li > a:focus {
  4498. color: #333;
  4499. background-color: transparent;
  4500. }
  4501. .navbar-default .navbar-nav > .active > a,
  4502. .navbar-default .navbar-nav > .active > a:hover,
  4503. .navbar-default .navbar-nav > .active > a:focus {
  4504. color: #555;
  4505. background-color: #e7e7e7;
  4506. }
  4507. .navbar-default .navbar-nav > .disabled > a,
  4508. .navbar-default .navbar-nav > .disabled > a:hover,
  4509. .navbar-default .navbar-nav > .disabled > a:focus {
  4510. color: #ccc;
  4511. background-color: transparent;
  4512. }
  4513. .navbar-default .navbar-toggle {
  4514. border-color: #ddd;
  4515. }
  4516. .navbar-default .navbar-toggle:hover,
  4517. .navbar-default .navbar-toggle:focus {
  4518. background-color: #ddd;
  4519. }
  4520. .navbar-default .navbar-toggle .icon-bar {
  4521. background-color: #888;
  4522. }
  4523. .navbar-default .navbar-collapse,
  4524. .navbar-default .navbar-form {
  4525. border-color: #e7e7e7;
  4526. }
  4527. .navbar-default .navbar-nav > .open > a,
  4528. .navbar-default .navbar-nav > .open > a:hover,
  4529. .navbar-default .navbar-nav > .open > a:focus {
  4530. background-color: #e7e7e7;
  4531. color: #555;
  4532. }
  4533. @media (max-width: 767px) {
  4534. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4535. color: #777;
  4536. }
  4537. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4538. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4539. color: #333;
  4540. background-color: transparent;
  4541. }
  4542. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4543. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4544. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4545. color: #555;
  4546. background-color: #e7e7e7;
  4547. }
  4548. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4549. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4550. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4551. color: #ccc;
  4552. background-color: transparent;
  4553. }
  4554. }
  4555. .navbar-default .navbar-link {
  4556. color: #777;
  4557. }
  4558. .navbar-default .navbar-link:hover {
  4559. color: #333;
  4560. }
  4561. .navbar-default .btn-link {
  4562. color: #777;
  4563. }
  4564. .navbar-default .btn-link:hover,
  4565. .navbar-default .btn-link:focus {
  4566. color: #333;
  4567. }
  4568. .navbar-default .btn-link[disabled]:hover,
  4569. fieldset[disabled] .navbar-default .btn-link:hover,
  4570. .navbar-default .btn-link[disabled]:focus,
  4571. fieldset[disabled] .navbar-default .btn-link:focus {
  4572. color: #ccc;
  4573. }
  4574. .navbar-inverse {
  4575. background-color: #222;
  4576. border-color: #080808;
  4577. }
  4578. .navbar-inverse .navbar-brand {
  4579. color: #9d9d9d;
  4580. }
  4581. .navbar-inverse .navbar-brand:hover,
  4582. .navbar-inverse .navbar-brand:focus {
  4583. color: #fff;
  4584. background-color: transparent;
  4585. }
  4586. .navbar-inverse .navbar-text {
  4587. color: #9d9d9d;
  4588. }
  4589. .navbar-inverse .navbar-nav > li > a {
  4590. color: #9d9d9d;
  4591. }
  4592. .navbar-inverse .navbar-nav > li > a:hover,
  4593. .navbar-inverse .navbar-nav > li > a:focus {
  4594. color: #fff;
  4595. background-color: transparent;
  4596. }
  4597. .navbar-inverse .navbar-nav > .active > a,
  4598. .navbar-inverse .navbar-nav > .active > a:hover,
  4599. .navbar-inverse .navbar-nav > .active > a:focus {
  4600. color: #fff;
  4601. background-color: #080808;
  4602. }
  4603. .navbar-inverse .navbar-nav > .disabled > a,
  4604. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4605. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4606. color: #444;
  4607. background-color: transparent;
  4608. }
  4609. .navbar-inverse .navbar-toggle {
  4610. border-color: #333;
  4611. }
  4612. .navbar-inverse .navbar-toggle:hover,
  4613. .navbar-inverse .navbar-toggle:focus {
  4614. background-color: #333;
  4615. }
  4616. .navbar-inverse .navbar-toggle .icon-bar {
  4617. background-color: #fff;
  4618. }
  4619. .navbar-inverse .navbar-collapse,
  4620. .navbar-inverse .navbar-form {
  4621. border-color: #101010;
  4622. }
  4623. .navbar-inverse .navbar-nav > .open > a,
  4624. .navbar-inverse .navbar-nav > .open > a:hover,
  4625. .navbar-inverse .navbar-nav > .open > a:focus {
  4626. background-color: #080808;
  4627. color: #fff;
  4628. }
  4629. @media (max-width: 767px) {
  4630. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4631. border-color: #080808;
  4632. }
  4633. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4634. background-color: #080808;
  4635. }
  4636. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4637. color: #9d9d9d;
  4638. }
  4639. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4640. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4641. color: #fff;
  4642. background-color: transparent;
  4643. }
  4644. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4645. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4646. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4647. color: #fff;
  4648. background-color: #080808;
  4649. }
  4650. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4651. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4652. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4653. color: #444;
  4654. background-color: transparent;
  4655. }
  4656. }
  4657. .navbar-inverse .navbar-link {
  4658. color: #9d9d9d;
  4659. }
  4660. .navbar-inverse .navbar-link:hover {
  4661. color: #fff;
  4662. }
  4663. .navbar-inverse .btn-link {
  4664. color: #9d9d9d;
  4665. }
  4666. .navbar-inverse .btn-link:hover,
  4667. .navbar-inverse .btn-link:focus {
  4668. color: #fff;
  4669. }
  4670. .navbar-inverse .btn-link[disabled]:hover,
  4671. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4672. .navbar-inverse .btn-link[disabled]:focus,
  4673. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4674. color: #444;
  4675. }
  4676. .breadcrumb {
  4677. padding: 8px 15px;
  4678. margin-bottom: 17px;
  4679. list-style: none;
  4680. background-color: #f5f5f5;
  4681. border-radius: 3px;
  4682. }
  4683. .breadcrumb > li {
  4684. display: inline-block;
  4685. }
  4686. .breadcrumb > li + li:before {
  4687. content: "/\00a0";
  4688. padding: 0 5px;
  4689. color: #ccc;
  4690. }
  4691. .breadcrumb > .active {
  4692. color: #777777;
  4693. }
  4694. .pagination {
  4695. display: inline-block;
  4696. padding-left: 0;
  4697. margin: 17px 0;
  4698. border-radius: 3px;
  4699. }
  4700. .pagination > li {
  4701. display: inline;
  4702. }
  4703. .pagination > li > a,
  4704. .pagination > li > span {
  4705. position: relative;
  4706. float: left;
  4707. padding: 6px 12px;
  4708. line-height: 1.42857143;
  4709. text-decoration: none;
  4710. color: #2c3e50;
  4711. background-color: #fff;
  4712. border: 1px solid #ddd;
  4713. margin-left: -1px;
  4714. }
  4715. .pagination > li:first-child > a,
  4716. .pagination > li:first-child > span {
  4717. margin-left: 0;
  4718. border-bottom-left-radius: 3px;
  4719. border-top-left-radius: 3px;
  4720. }
  4721. .pagination > li:last-child > a,
  4722. .pagination > li:last-child > span {
  4723. border-bottom-right-radius: 3px;
  4724. border-top-right-radius: 3px;
  4725. }
  4726. .pagination > li > a:hover,
  4727. .pagination > li > span:hover,
  4728. .pagination > li > a:focus,
  4729. .pagination > li > span:focus {
  4730. z-index: 2;
  4731. color: #11181f;
  4732. background-color: #eeeeee;
  4733. border-color: #ddd;
  4734. }
  4735. .pagination > .active > a,
  4736. .pagination > .active > span,
  4737. .pagination > .active > a:hover,
  4738. .pagination > .active > span:hover,
  4739. .pagination > .active > a:focus,
  4740. .pagination > .active > span:focus {
  4741. z-index: 3;
  4742. color: #fff;
  4743. background-color: #2c3e50;
  4744. border-color: #2c3e50;
  4745. cursor: default;
  4746. }
  4747. .pagination > .disabled > span,
  4748. .pagination > .disabled > span:hover,
  4749. .pagination > .disabled > span:focus,
  4750. .pagination > .disabled > a,
  4751. .pagination > .disabled > a:hover,
  4752. .pagination > .disabled > a:focus {
  4753. color: #777777;
  4754. background-color: #fff;
  4755. border-color: #ddd;
  4756. cursor: not-allowed;
  4757. }
  4758. .pagination-lg > li > a,
  4759. .pagination-lg > li > span {
  4760. padding: 10px 16px;
  4761. font-size: 15px;
  4762. line-height: 1.3333333;
  4763. }
  4764. .pagination-lg > li:first-child > a,
  4765. .pagination-lg > li:first-child > span {
  4766. border-bottom-left-radius: 5px;
  4767. border-top-left-radius: 5px;
  4768. }
  4769. .pagination-lg > li:last-child > a,
  4770. .pagination-lg > li:last-child > span {
  4771. border-bottom-right-radius: 5px;
  4772. border-top-right-radius: 5px;
  4773. }
  4774. .pagination-sm > li > a,
  4775. .pagination-sm > li > span {
  4776. padding: 5px 10px;
  4777. font-size: 11px;
  4778. line-height: 1.5;
  4779. }
  4780. .pagination-sm > li:first-child > a,
  4781. .pagination-sm > li:first-child > span {
  4782. border-bottom-left-radius: 2px;
  4783. border-top-left-radius: 2px;
  4784. }
  4785. .pagination-sm > li:last-child > a,
  4786. .pagination-sm > li:last-child > span {
  4787. border-bottom-right-radius: 2px;
  4788. border-top-right-radius: 2px;
  4789. }
  4790. .pager {
  4791. padding-left: 0;
  4792. margin: 17px 0;
  4793. list-style: none;
  4794. text-align: center;
  4795. }
  4796. .pager li {
  4797. display: inline;
  4798. }
  4799. .pager li > a,
  4800. .pager li > span {
  4801. display: inline-block;
  4802. padding: 5px 14px;
  4803. background-color: #fff;
  4804. border: 1px solid #ddd;
  4805. border-radius: 15px;
  4806. }
  4807. .pager li > a:hover,
  4808. .pager li > a:focus {
  4809. text-decoration: none;
  4810. background-color: #eeeeee;
  4811. }
  4812. .pager .next > a,
  4813. .pager .next > span {
  4814. float: right;
  4815. }
  4816. .pager .previous > a,
  4817. .pager .previous > span {
  4818. float: left;
  4819. }
  4820. .pager .disabled > a,
  4821. .pager .disabled > a:hover,
  4822. .pager .disabled > a:focus,
  4823. .pager .disabled > span {
  4824. color: #777777;
  4825. background-color: #fff;
  4826. cursor: not-allowed;
  4827. }
  4828. .label {
  4829. display: inline;
  4830. padding: .2em .6em .3em;
  4831. font-size: 75%;
  4832. font-weight: bold;
  4833. line-height: 1;
  4834. color: #fff;
  4835. text-align: center;
  4836. white-space: nowrap;
  4837. vertical-align: baseline;
  4838. border-radius: .25em;
  4839. }
  4840. a.label:hover,
  4841. a.label:focus {
  4842. color: #fff;
  4843. text-decoration: none;
  4844. cursor: pointer;
  4845. }
  4846. .label:empty {
  4847. display: none;
  4848. }
  4849. .btn .label {
  4850. position: relative;
  4851. top: -1px;
  4852. }
  4853. .label-default {
  4854. background-color: #777777;
  4855. }
  4856. .label-default[href]:hover,
  4857. .label-default[href]:focus {
  4858. background-color: #5e5e5e;
  4859. }
  4860. .label-primary {
  4861. background-color: #2c3e50;
  4862. }
  4863. .label-primary[href]:hover,
  4864. .label-primary[href]:focus {
  4865. background-color: #1a242f;
  4866. }
  4867. .label-success {
  4868. background-color: #18bc9c;
  4869. }
  4870. .label-success[href]:hover,
  4871. .label-success[href]:focus {
  4872. background-color: #128f76;
  4873. }
  4874. .label-info {
  4875. background-color: #3498db;
  4876. }
  4877. .label-info[href]:hover,
  4878. .label-info[href]:focus {
  4879. background-color: #217dbb;
  4880. }
  4881. .label-warning {
  4882. background-color: #f39c12;
  4883. }
  4884. .label-warning[href]:hover,
  4885. .label-warning[href]:focus {
  4886. background-color: #c87f0a;
  4887. }
  4888. .label-danger {
  4889. background-color: #e74c3c;
  4890. }
  4891. .label-danger[href]:hover,
  4892. .label-danger[href]:focus {
  4893. background-color: #d62c1a;
  4894. }
  4895. .badge {
  4896. display: inline-block;
  4897. min-width: 10px;
  4898. padding: 3px 7px;
  4899. font-size: 11px;
  4900. font-weight: bold;
  4901. color: #fff;
  4902. line-height: 1;
  4903. vertical-align: middle;
  4904. white-space: nowrap;
  4905. text-align: center;
  4906. background-color: #777777;
  4907. border-radius: 10px;
  4908. }
  4909. .badge:empty {
  4910. display: none;
  4911. }
  4912. .btn .badge {
  4913. position: relative;
  4914. top: -1px;
  4915. }
  4916. .btn-xs .badge,
  4917. .btn-group-xs > .btn .badge {
  4918. top: 0;
  4919. padding: 1px 5px;
  4920. }
  4921. a.badge:hover,
  4922. a.badge:focus {
  4923. color: #fff;
  4924. text-decoration: none;
  4925. cursor: pointer;
  4926. }
  4927. .list-group-item.active > .badge,
  4928. .nav-pills > .active > a > .badge {
  4929. color: #2c3e50;
  4930. background-color: #fff;
  4931. }
  4932. .list-group-item > .badge {
  4933. float: right;
  4934. }
  4935. .list-group-item > .badge + .badge {
  4936. margin-right: 5px;
  4937. }
  4938. .nav-pills > li > a > .badge {
  4939. margin-left: 3px;
  4940. }
  4941. .jumbotron {
  4942. padding-top: 30px;
  4943. padding-bottom: 30px;
  4944. margin-bottom: 30px;
  4945. color: inherit;
  4946. background-color: #eeeeee;
  4947. }
  4948. .jumbotron h1,
  4949. .jumbotron .h1 {
  4950. color: inherit;
  4951. }
  4952. .jumbotron p {
  4953. margin-bottom: 15px;
  4954. font-size: 18px;
  4955. font-weight: 200;
  4956. }
  4957. .jumbotron > hr {
  4958. border-top-color: #d5d5d5;
  4959. }
  4960. .container .jumbotron,
  4961. .container-fluid .jumbotron {
  4962. border-radius: 5px;
  4963. padding-left: 15px;
  4964. padding-right: 15px;
  4965. }
  4966. .jumbotron .container {
  4967. max-width: 100%;
  4968. }
  4969. @media screen and (min-width: 768px) {
  4970. .jumbotron {
  4971. padding-top: 48px;
  4972. padding-bottom: 48px;
  4973. }
  4974. .container .jumbotron,
  4975. .container-fluid .jumbotron {
  4976. padding-left: 60px;
  4977. padding-right: 60px;
  4978. }
  4979. .jumbotron h1,
  4980. .jumbotron .h1 {
  4981. font-size: 54px;
  4982. }
  4983. }
  4984. .thumbnail {
  4985. display: block;
  4986. padding: 4px;
  4987. margin-bottom: 17px;
  4988. line-height: 1.42857143;
  4989. background-color: #fff;
  4990. border: 1px solid #ddd;
  4991. border-radius: 3px;
  4992. -webkit-transition: border 0.2s ease-in-out;
  4993. -o-transition: border 0.2s ease-in-out;
  4994. transition: border 0.2s ease-in-out;
  4995. }
  4996. .thumbnail > img,
  4997. .thumbnail a > img {
  4998. margin-left: auto;
  4999. margin-right: auto;
  5000. }
  5001. a.thumbnail:hover,
  5002. a.thumbnail:focus,
  5003. a.thumbnail.active {
  5004. border-color: #2c3e50;
  5005. }
  5006. .thumbnail .caption {
  5007. padding: 9px;
  5008. color: #333333;
  5009. }
  5010. .alert {
  5011. padding: 15px;
  5012. margin-bottom: 17px;
  5013. border: 1px solid transparent;
  5014. border-radius: 3px;
  5015. }
  5016. .alert h4 {
  5017. margin-top: 0;
  5018. color: inherit;
  5019. }
  5020. .alert .alert-link {
  5021. font-weight: bold;
  5022. }
  5023. .alert > p,
  5024. .alert > ul {
  5025. margin-bottom: 0;
  5026. }
  5027. .alert > p + p {
  5028. margin-top: 5px;
  5029. }
  5030. .alert-dismissable,
  5031. .alert-dismissible {
  5032. padding-right: 35px;
  5033. }
  5034. .alert-dismissable .close,
  5035. .alert-dismissible .close {
  5036. position: relative;
  5037. top: -2px;
  5038. right: -21px;
  5039. color: inherit;
  5040. }
  5041. .alert-success {
  5042. background-color: #dff0d8;
  5043. border-color: #d6e9c6;
  5044. color: #18bc9c;
  5045. }
  5046. .alert-success hr {
  5047. border-top-color: #c9e2b3;
  5048. }
  5049. .alert-success .alert-link {
  5050. color: #128f76;
  5051. }
  5052. .alert-info {
  5053. background-color: #d9edf7;
  5054. border-color: #bce8f1;
  5055. color: #3498db;
  5056. }
  5057. .alert-info hr {
  5058. border-top-color: #a6e1ec;
  5059. }
  5060. .alert-info .alert-link {
  5061. color: #217dbb;
  5062. }
  5063. .alert-warning {
  5064. background-color: #fcf8e3;
  5065. border-color: #faebcc;
  5066. color: #f39c12;
  5067. }
  5068. .alert-warning hr {
  5069. border-top-color: #f7e1b5;
  5070. }
  5071. .alert-warning .alert-link {
  5072. color: #c87f0a;
  5073. }
  5074. .alert-danger {
  5075. background-color: #f2dede;
  5076. border-color: #ebccd1;
  5077. color: #e74c3c;
  5078. }
  5079. .alert-danger hr {
  5080. border-top-color: #e4b9c0;
  5081. }
  5082. .alert-danger .alert-link {
  5083. color: #d62c1a;
  5084. }
  5085. @-webkit-keyframes progress-bar-stripes {
  5086. from {
  5087. background-position: 40px 0;
  5088. }
  5089. to {
  5090. background-position: 0 0;
  5091. }
  5092. }
  5093. @keyframes progress-bar-stripes {
  5094. from {
  5095. background-position: 40px 0;
  5096. }
  5097. to {
  5098. background-position: 0 0;
  5099. }
  5100. }
  5101. .progress {
  5102. overflow: hidden;
  5103. height: 17px;
  5104. margin-bottom: 17px;
  5105. background-color: #f5f5f5;
  5106. border-radius: 3px;
  5107. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5108. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5109. }
  5110. .progress-bar {
  5111. float: left;
  5112. width: 0%;
  5113. height: 100%;
  5114. font-size: 11px;
  5115. line-height: 17px;
  5116. color: #fff;
  5117. text-align: center;
  5118. background-color: #2c3e50;
  5119. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5120. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5121. -webkit-transition: width 0.6s ease;
  5122. -o-transition: width 0.6s ease;
  5123. transition: width 0.6s ease;
  5124. }
  5125. .progress-striped .progress-bar,
  5126. .progress-bar-striped {
  5127. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5128. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5129. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5130. background-size: 40px 40px;
  5131. }
  5132. .progress.active .progress-bar,
  5133. .progress-bar.active {
  5134. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5135. -o-animation: progress-bar-stripes 2s linear infinite;
  5136. animation: progress-bar-stripes 2s linear infinite;
  5137. }
  5138. .progress-bar-success {
  5139. background-color: #18bc9c;
  5140. }
  5141. .progress-striped .progress-bar-success {
  5142. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5143. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5144. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5145. }
  5146. .progress-bar-info {
  5147. background-color: #3498db;
  5148. }
  5149. .progress-striped .progress-bar-info {
  5150. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5151. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5152. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5153. }
  5154. .progress-bar-warning {
  5155. background-color: #f39c12;
  5156. }
  5157. .progress-striped .progress-bar-warning {
  5158. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5159. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5160. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5161. }
  5162. .progress-bar-danger {
  5163. background-color: #e74c3c;
  5164. }
  5165. .progress-striped .progress-bar-danger {
  5166. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5167. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5168. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5169. }
  5170. .media {
  5171. margin-top: 15px;
  5172. }
  5173. .media:first-child {
  5174. margin-top: 0;
  5175. }
  5176. .media,
  5177. .media-body {
  5178. zoom: 1;
  5179. overflow: hidden;
  5180. }
  5181. .media-body {
  5182. width: 10000px;
  5183. }
  5184. .media-object {
  5185. display: block;
  5186. }
  5187. .media-object.img-thumbnail {
  5188. max-width: none;
  5189. }
  5190. .media-right,
  5191. .media > .pull-right {
  5192. padding-left: 10px;
  5193. }
  5194. .media-left,
  5195. .media > .pull-left {
  5196. padding-right: 10px;
  5197. }
  5198. .media-left,
  5199. .media-right,
  5200. .media-body {
  5201. display: table-cell;
  5202. vertical-align: top;
  5203. }
  5204. .media-middle {
  5205. vertical-align: middle;
  5206. }
  5207. .media-bottom {
  5208. vertical-align: bottom;
  5209. }
  5210. .media-heading {
  5211. margin-top: 0;
  5212. margin-bottom: 5px;
  5213. }
  5214. .media-list {
  5215. padding-left: 0;
  5216. list-style: none;
  5217. }
  5218. .list-group {
  5219. margin-bottom: 20px;
  5220. padding-left: 0;
  5221. }
  5222. .list-group-item {
  5223. position: relative;
  5224. display: block;
  5225. padding: 10px 15px;
  5226. margin-bottom: -1px;
  5227. background-color: #fff;
  5228. border: 1px solid #ddd;
  5229. }
  5230. .list-group-item:first-child {
  5231. border-top-right-radius: 3px;
  5232. border-top-left-radius: 3px;
  5233. }
  5234. .list-group-item:last-child {
  5235. margin-bottom: 0;
  5236. border-bottom-right-radius: 3px;
  5237. border-bottom-left-radius: 3px;
  5238. }
  5239. a.list-group-item,
  5240. button.list-group-item {
  5241. color: #555;
  5242. }
  5243. a.list-group-item .list-group-item-heading,
  5244. button.list-group-item .list-group-item-heading {
  5245. color: #333;
  5246. }
  5247. a.list-group-item:hover,
  5248. button.list-group-item:hover,
  5249. a.list-group-item:focus,
  5250. button.list-group-item:focus {
  5251. text-decoration: none;
  5252. color: #555;
  5253. background-color: #f5f5f5;
  5254. }
  5255. button.list-group-item {
  5256. width: 100%;
  5257. text-align: left;
  5258. }
  5259. .list-group-item.disabled,
  5260. .list-group-item.disabled:hover,
  5261. .list-group-item.disabled:focus {
  5262. background-color: #eeeeee;
  5263. color: #777777;
  5264. cursor: not-allowed;
  5265. }
  5266. .list-group-item.disabled .list-group-item-heading,
  5267. .list-group-item.disabled:hover .list-group-item-heading,
  5268. .list-group-item.disabled:focus .list-group-item-heading {
  5269. color: inherit;
  5270. }
  5271. .list-group-item.disabled .list-group-item-text,
  5272. .list-group-item.disabled:hover .list-group-item-text,
  5273. .list-group-item.disabled:focus .list-group-item-text {
  5274. color: #777777;
  5275. }
  5276. .list-group-item.active,
  5277. .list-group-item.active:hover,
  5278. .list-group-item.active:focus {
  5279. z-index: 2;
  5280. color: #fff;
  5281. background-color: #2c3e50;
  5282. border-color: #2c3e50;
  5283. }
  5284. .list-group-item.active .list-group-item-heading,
  5285. .list-group-item.active:hover .list-group-item-heading,
  5286. .list-group-item.active:focus .list-group-item-heading,
  5287. .list-group-item.active .list-group-item-heading > small,
  5288. .list-group-item.active:hover .list-group-item-heading > small,
  5289. .list-group-item.active:focus .list-group-item-heading > small,
  5290. .list-group-item.active .list-group-item-heading > .small,
  5291. .list-group-item.active:hover .list-group-item-heading > .small,
  5292. .list-group-item.active:focus .list-group-item-heading > .small {
  5293. color: inherit;
  5294. }
  5295. .list-group-item.active .list-group-item-text,
  5296. .list-group-item.active:hover .list-group-item-text,
  5297. .list-group-item.active:focus .list-group-item-text {
  5298. color: #8aa4be;
  5299. }
  5300. .list-group-item-success {
  5301. color: #18bc9c;
  5302. background-color: #dff0d8;
  5303. }
  5304. a.list-group-item-success,
  5305. button.list-group-item-success {
  5306. color: #18bc9c;
  5307. }
  5308. a.list-group-item-success .list-group-item-heading,
  5309. button.list-group-item-success .list-group-item-heading {
  5310. color: inherit;
  5311. }
  5312. a.list-group-item-success:hover,
  5313. button.list-group-item-success:hover,
  5314. a.list-group-item-success:focus,
  5315. button.list-group-item-success:focus {
  5316. color: #18bc9c;
  5317. background-color: #d0e9c6;
  5318. }
  5319. a.list-group-item-success.active,
  5320. button.list-group-item-success.active,
  5321. a.list-group-item-success.active:hover,
  5322. button.list-group-item-success.active:hover,
  5323. a.list-group-item-success.active:focus,
  5324. button.list-group-item-success.active:focus {
  5325. color: #fff;
  5326. background-color: #18bc9c;
  5327. border-color: #18bc9c;
  5328. }
  5329. .list-group-item-info {
  5330. color: #3498db;
  5331. background-color: #d9edf7;
  5332. }
  5333. a.list-group-item-info,
  5334. button.list-group-item-info {
  5335. color: #3498db;
  5336. }
  5337. a.list-group-item-info .list-group-item-heading,
  5338. button.list-group-item-info .list-group-item-heading {
  5339. color: inherit;
  5340. }
  5341. a.list-group-item-info:hover,
  5342. button.list-group-item-info:hover,
  5343. a.list-group-item-info:focus,
  5344. button.list-group-item-info:focus {
  5345. color: #3498db;
  5346. background-color: #c4e3f3;
  5347. }
  5348. a.list-group-item-info.active,
  5349. button.list-group-item-info.active,
  5350. a.list-group-item-info.active:hover,
  5351. button.list-group-item-info.active:hover,
  5352. a.list-group-item-info.active:focus,
  5353. button.list-group-item-info.active:focus {
  5354. color: #fff;
  5355. background-color: #3498db;
  5356. border-color: #3498db;
  5357. }
  5358. .list-group-item-warning {
  5359. color: #f39c12;
  5360. background-color: #fcf8e3;
  5361. }
  5362. a.list-group-item-warning,
  5363. button.list-group-item-warning {
  5364. color: #f39c12;
  5365. }
  5366. a.list-group-item-warning .list-group-item-heading,
  5367. button.list-group-item-warning .list-group-item-heading {
  5368. color: inherit;
  5369. }
  5370. a.list-group-item-warning:hover,
  5371. button.list-group-item-warning:hover,
  5372. a.list-group-item-warning:focus,
  5373. button.list-group-item-warning:focus {
  5374. color: #f39c12;
  5375. background-color: #faf2cc;
  5376. }
  5377. a.list-group-item-warning.active,
  5378. button.list-group-item-warning.active,
  5379. a.list-group-item-warning.active:hover,
  5380. button.list-group-item-warning.active:hover,
  5381. a.list-group-item-warning.active:focus,
  5382. button.list-group-item-warning.active:focus {
  5383. color: #fff;
  5384. background-color: #f39c12;
  5385. border-color: #f39c12;
  5386. }
  5387. .list-group-item-danger {
  5388. color: #e74c3c;
  5389. background-color: #f2dede;
  5390. }
  5391. a.list-group-item-danger,
  5392. button.list-group-item-danger {
  5393. color: #e74c3c;
  5394. }
  5395. a.list-group-item-danger .list-group-item-heading,
  5396. button.list-group-item-danger .list-group-item-heading {
  5397. color: inherit;
  5398. }
  5399. a.list-group-item-danger:hover,
  5400. button.list-group-item-danger:hover,
  5401. a.list-group-item-danger:focus,
  5402. button.list-group-item-danger:focus {
  5403. color: #e74c3c;
  5404. background-color: #ebcccc;
  5405. }
  5406. a.list-group-item-danger.active,
  5407. button.list-group-item-danger.active,
  5408. a.list-group-item-danger.active:hover,
  5409. button.list-group-item-danger.active:hover,
  5410. a.list-group-item-danger.active:focus,
  5411. button.list-group-item-danger.active:focus {
  5412. color: #fff;
  5413. background-color: #e74c3c;
  5414. border-color: #e74c3c;
  5415. }
  5416. .list-group-item-heading {
  5417. margin-top: 0;
  5418. margin-bottom: 5px;
  5419. }
  5420. .list-group-item-text {
  5421. margin-bottom: 0;
  5422. line-height: 1.3;
  5423. }
  5424. .panel {
  5425. margin-bottom: 17px;
  5426. background-color: #fff;
  5427. border: 1px solid transparent;
  5428. border-radius: 3px;
  5429. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5430. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5431. }
  5432. .panel-body {
  5433. padding: 15px;
  5434. }
  5435. .panel-heading {
  5436. padding: 10px 15px;
  5437. border-bottom: 1px solid transparent;
  5438. border-top-right-radius: 2px;
  5439. border-top-left-radius: 2px;
  5440. }
  5441. .panel-heading > .dropdown .dropdown-toggle {
  5442. color: inherit;
  5443. }
  5444. .panel-title {
  5445. margin-top: 0;
  5446. margin-bottom: 0;
  5447. font-size: 14px;
  5448. color: inherit;
  5449. }
  5450. .panel-title > a,
  5451. .panel-title > small,
  5452. .panel-title > .small,
  5453. .panel-title > small > a,
  5454. .panel-title > .small > a {
  5455. color: inherit;
  5456. }
  5457. .panel-footer {
  5458. padding: 10px 15px;
  5459. background-color: #f5f5f5;
  5460. border-top: 1px solid #ddd;
  5461. border-bottom-right-radius: 2px;
  5462. border-bottom-left-radius: 2px;
  5463. }
  5464. .panel > .list-group,
  5465. .panel > .panel-collapse > .list-group {
  5466. margin-bottom: 0;
  5467. }
  5468. .panel > .list-group .list-group-item,
  5469. .panel > .panel-collapse > .list-group .list-group-item {
  5470. border-width: 1px 0;
  5471. border-radius: 0;
  5472. }
  5473. .panel > .list-group:first-child .list-group-item:first-child,
  5474. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5475. border-top: 0;
  5476. border-top-right-radius: 2px;
  5477. border-top-left-radius: 2px;
  5478. }
  5479. .panel > .list-group:last-child .list-group-item:last-child,
  5480. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5481. border-bottom: 0;
  5482. border-bottom-right-radius: 2px;
  5483. border-bottom-left-radius: 2px;
  5484. }
  5485. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5486. border-top-right-radius: 0;
  5487. border-top-left-radius: 0;
  5488. }
  5489. .panel-heading + .list-group .list-group-item:first-child {
  5490. border-top-width: 0;
  5491. }
  5492. .list-group + .panel-footer {
  5493. border-top-width: 0;
  5494. }
  5495. .panel > .table,
  5496. .panel > .table-responsive > .table,
  5497. .panel > .panel-collapse > .table {
  5498. margin-bottom: 0;
  5499. }
  5500. .panel > .table caption,
  5501. .panel > .table-responsive > .table caption,
  5502. .panel > .panel-collapse > .table caption {
  5503. padding-left: 15px;
  5504. padding-right: 15px;
  5505. }
  5506. .panel > .table:first-child,
  5507. .panel > .table-responsive:first-child > .table:first-child {
  5508. border-top-right-radius: 2px;
  5509. border-top-left-radius: 2px;
  5510. }
  5511. .panel > .table:first-child > thead:first-child > tr:first-child,
  5512. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5513. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5514. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5515. border-top-left-radius: 2px;
  5516. border-top-right-radius: 2px;
  5517. }
  5518. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5519. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5520. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5521. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5522. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5523. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5524. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5525. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5526. border-top-left-radius: 2px;
  5527. }
  5528. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5529. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5530. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5531. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5532. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5533. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5534. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5535. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5536. border-top-right-radius: 2px;
  5537. }
  5538. .panel > .table:last-child,
  5539. .panel > .table-responsive:last-child > .table:last-child {
  5540. border-bottom-right-radius: 2px;
  5541. border-bottom-left-radius: 2px;
  5542. }
  5543. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5544. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5545. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5546. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5547. border-bottom-left-radius: 2px;
  5548. border-bottom-right-radius: 2px;
  5549. }
  5550. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5551. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5552. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5553. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5554. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5555. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5556. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5557. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5558. border-bottom-left-radius: 2px;
  5559. }
  5560. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5561. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5562. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5563. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5564. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5565. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5566. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5567. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5568. border-bottom-right-radius: 2px;
  5569. }
  5570. .panel > .panel-body + .table,
  5571. .panel > .panel-body + .table-responsive,
  5572. .panel > .table + .panel-body,
  5573. .panel > .table-responsive + .panel-body {
  5574. border-top: 1px solid #ddd;
  5575. }
  5576. .panel > .table > tbody:first-child > tr:first-child th,
  5577. .panel > .table > tbody:first-child > tr:first-child td {
  5578. border-top: 0;
  5579. }
  5580. .panel > .table-bordered,
  5581. .panel > .table-responsive > .table-bordered {
  5582. border: 0;
  5583. }
  5584. .panel > .table-bordered > thead > tr > th:first-child,
  5585. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5586. .panel > .table-bordered > tbody > tr > th:first-child,
  5587. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5588. .panel > .table-bordered > tfoot > tr > th:first-child,
  5589. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5590. .panel > .table-bordered > thead > tr > td:first-child,
  5591. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5592. .panel > .table-bordered > tbody > tr > td:first-child,
  5593. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5594. .panel > .table-bordered > tfoot > tr > td:first-child,
  5595. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5596. border-left: 0;
  5597. }
  5598. .panel > .table-bordered > thead > tr > th:last-child,
  5599. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5600. .panel > .table-bordered > tbody > tr > th:last-child,
  5601. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5602. .panel > .table-bordered > tfoot > tr > th:last-child,
  5603. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5604. .panel > .table-bordered > thead > tr > td:last-child,
  5605. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5606. .panel > .table-bordered > tbody > tr > td:last-child,
  5607. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5608. .panel > .table-bordered > tfoot > tr > td:last-child,
  5609. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5610. border-right: 0;
  5611. }
  5612. .panel > .table-bordered > thead > tr:first-child > td,
  5613. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5614. .panel > .table-bordered > tbody > tr:first-child > td,
  5615. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5616. .panel > .table-bordered > thead > tr:first-child > th,
  5617. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5618. .panel > .table-bordered > tbody > tr:first-child > th,
  5619. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5620. border-bottom: 0;
  5621. }
  5622. .panel > .table-bordered > tbody > tr:last-child > td,
  5623. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5624. .panel > .table-bordered > tfoot > tr:last-child > td,
  5625. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5626. .panel > .table-bordered > tbody > tr:last-child > th,
  5627. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5628. .panel > .table-bordered > tfoot > tr:last-child > th,
  5629. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5630. border-bottom: 0;
  5631. }
  5632. .panel > .table-responsive {
  5633. border: 0;
  5634. margin-bottom: 0;
  5635. }
  5636. .panel-group {
  5637. margin-bottom: 17px;
  5638. }
  5639. .panel-group .panel {
  5640. margin-bottom: 0;
  5641. border-radius: 3px;
  5642. }
  5643. .panel-group .panel + .panel {
  5644. margin-top: 5px;
  5645. }
  5646. .panel-group .panel-heading {
  5647. border-bottom: 0;
  5648. }
  5649. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5650. .panel-group .panel-heading + .panel-collapse > .list-group {
  5651. border-top: 1px solid #ddd;
  5652. }
  5653. .panel-group .panel-footer {
  5654. border-top: 0;
  5655. }
  5656. .panel-group .panel-footer + .panel-collapse .panel-body {
  5657. border-bottom: 1px solid #ddd;
  5658. }
  5659. .panel-default {
  5660. border-color: #ddd;
  5661. }
  5662. .panel-default > .panel-heading {
  5663. color: #333333;
  5664. background-color: #f5f5f5;
  5665. border-color: #ddd;
  5666. }
  5667. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5668. border-top-color: #ddd;
  5669. }
  5670. .panel-default > .panel-heading .badge {
  5671. color: #f5f5f5;
  5672. background-color: #333333;
  5673. }
  5674. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5675. border-bottom-color: #ddd;
  5676. }
  5677. .panel-primary {
  5678. border-color: #2c3e50;
  5679. }
  5680. .panel-primary > .panel-heading {
  5681. color: #fff;
  5682. background-color: #2c3e50;
  5683. border-color: #2c3e50;
  5684. }
  5685. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5686. border-top-color: #2c3e50;
  5687. }
  5688. .panel-primary > .panel-heading .badge {
  5689. color: #2c3e50;
  5690. background-color: #fff;
  5691. }
  5692. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5693. border-bottom-color: #2c3e50;
  5694. }
  5695. .panel-success {
  5696. border-color: #d6e9c6;
  5697. }
  5698. .panel-success > .panel-heading {
  5699. color: #18bc9c;
  5700. background-color: #dff0d8;
  5701. border-color: #d6e9c6;
  5702. }
  5703. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5704. border-top-color: #d6e9c6;
  5705. }
  5706. .panel-success > .panel-heading .badge {
  5707. color: #dff0d8;
  5708. background-color: #18bc9c;
  5709. }
  5710. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5711. border-bottom-color: #d6e9c6;
  5712. }
  5713. .panel-info {
  5714. border-color: #bce8f1;
  5715. }
  5716. .panel-info > .panel-heading {
  5717. color: #3498db;
  5718. background-color: #d9edf7;
  5719. border-color: #bce8f1;
  5720. }
  5721. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5722. border-top-color: #bce8f1;
  5723. }
  5724. .panel-info > .panel-heading .badge {
  5725. color: #d9edf7;
  5726. background-color: #3498db;
  5727. }
  5728. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5729. border-bottom-color: #bce8f1;
  5730. }
  5731. .panel-warning {
  5732. border-color: #faebcc;
  5733. }
  5734. .panel-warning > .panel-heading {
  5735. color: #f39c12;
  5736. background-color: #fcf8e3;
  5737. border-color: #faebcc;
  5738. }
  5739. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5740. border-top-color: #faebcc;
  5741. }
  5742. .panel-warning > .panel-heading .badge {
  5743. color: #fcf8e3;
  5744. background-color: #f39c12;
  5745. }
  5746. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5747. border-bottom-color: #faebcc;
  5748. }
  5749. .panel-danger {
  5750. border-color: #ebccd1;
  5751. }
  5752. .panel-danger > .panel-heading {
  5753. color: #e74c3c;
  5754. background-color: #f2dede;
  5755. border-color: #ebccd1;
  5756. }
  5757. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5758. border-top-color: #ebccd1;
  5759. }
  5760. .panel-danger > .panel-heading .badge {
  5761. color: #f2dede;
  5762. background-color: #e74c3c;
  5763. }
  5764. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5765. border-bottom-color: #ebccd1;
  5766. }
  5767. .embed-responsive {
  5768. position: relative;
  5769. display: block;
  5770. height: 0;
  5771. padding: 0;
  5772. overflow: hidden;
  5773. }
  5774. .embed-responsive .embed-responsive-item,
  5775. .embed-responsive iframe,
  5776. .embed-responsive embed,
  5777. .embed-responsive object,
  5778. .embed-responsive video {
  5779. position: absolute;
  5780. top: 0;
  5781. left: 0;
  5782. bottom: 0;
  5783. height: 100%;
  5784. width: 100%;
  5785. border: 0;
  5786. }
  5787. .embed-responsive-16by9 {
  5788. padding-bottom: 56.25%;
  5789. }
  5790. .embed-responsive-4by3 {
  5791. padding-bottom: 75%;
  5792. }
  5793. .well {
  5794. min-height: 20px;
  5795. padding: 19px;
  5796. margin-bottom: 20px;
  5797. background-color: #f5f5f5;
  5798. border: 1px solid #e3e3e3;
  5799. border-radius: 3px;
  5800. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5801. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5802. }
  5803. .well blockquote {
  5804. border-color: #ddd;
  5805. border-color: rgba(0, 0, 0, 0.15);
  5806. }
  5807. .well-lg {
  5808. padding: 24px;
  5809. border-radius: 5px;
  5810. }
  5811. .well-sm {
  5812. padding: 9px;
  5813. border-radius: 2px;
  5814. }
  5815. .close {
  5816. float: right;
  5817. font-size: 18px;
  5818. font-weight: bold;
  5819. line-height: 1;
  5820. color: #000;
  5821. text-shadow: 0 1px 0 #fff;
  5822. opacity: 0.2;
  5823. filter: alpha(opacity=20);
  5824. }
  5825. .close:hover,
  5826. .close:focus {
  5827. color: #000;
  5828. text-decoration: none;
  5829. cursor: pointer;
  5830. opacity: 0.5;
  5831. filter: alpha(opacity=50);
  5832. }
  5833. button.close {
  5834. padding: 0;
  5835. cursor: pointer;
  5836. background: transparent;
  5837. border: 0;
  5838. -webkit-appearance: none;
  5839. }
  5840. .modal-open {
  5841. overflow: hidden;
  5842. }
  5843. .modal {
  5844. display: none;
  5845. overflow: hidden;
  5846. position: fixed;
  5847. top: 0;
  5848. right: 0;
  5849. bottom: 0;
  5850. left: 0;
  5851. z-index: 1050;
  5852. -webkit-overflow-scrolling: touch;
  5853. outline: 0;
  5854. }
  5855. .modal.fade .modal-dialog {
  5856. -webkit-transform: translate(0, -25%);
  5857. -ms-transform: translate(0, -25%);
  5858. -o-transform: translate(0, -25%);
  5859. transform: translate(0, -25%);
  5860. -webkit-transition: -webkit-transform 0.3s ease-out;
  5861. -moz-transition: -moz-transform 0.3s ease-out;
  5862. -o-transition: -o-transform 0.3s ease-out;
  5863. transition: transform 0.3s ease-out;
  5864. }
  5865. .modal.in .modal-dialog {
  5866. -webkit-transform: translate(0, 0);
  5867. -ms-transform: translate(0, 0);
  5868. -o-transform: translate(0, 0);
  5869. transform: translate(0, 0);
  5870. }
  5871. .modal-open .modal {
  5872. overflow-x: hidden;
  5873. overflow-y: auto;
  5874. }
  5875. .modal-dialog {
  5876. position: relative;
  5877. width: auto;
  5878. margin: 10px;
  5879. }
  5880. .modal-content {
  5881. position: relative;
  5882. background-color: #fff;
  5883. border: 1px solid #999;
  5884. border: 1px solid rgba(0, 0, 0, 0.2);
  5885. border-radius: 5px;
  5886. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5887. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5888. background-clip: padding-box;
  5889. outline: 0;
  5890. }
  5891. .modal-backdrop {
  5892. position: fixed;
  5893. top: 0;
  5894. right: 0;
  5895. bottom: 0;
  5896. left: 0;
  5897. z-index: 1040;
  5898. background-color: #000;
  5899. }
  5900. .modal-backdrop.fade {
  5901. opacity: 0;
  5902. filter: alpha(opacity=0);
  5903. }
  5904. .modal-backdrop.in {
  5905. opacity: 0.5;
  5906. filter: alpha(opacity=50);
  5907. }
  5908. .modal-header {
  5909. padding: 15px;
  5910. border-bottom: 1px solid #e5e5e5;
  5911. }
  5912. .modal-header .close {
  5913. margin-top: -2px;
  5914. }
  5915. .modal-title {
  5916. margin: 0;
  5917. line-height: 1.42857143;
  5918. }
  5919. .modal-body {
  5920. position: relative;
  5921. padding: 15px;
  5922. }
  5923. .modal-footer {
  5924. padding: 15px;
  5925. text-align: right;
  5926. border-top: 1px solid #e5e5e5;
  5927. }
  5928. .modal-footer .btn + .btn {
  5929. margin-left: 5px;
  5930. margin-bottom: 0;
  5931. }
  5932. .modal-footer .btn-group .btn + .btn {
  5933. margin-left: -1px;
  5934. }
  5935. .modal-footer .btn-block + .btn-block {
  5936. margin-left: 0;
  5937. }
  5938. .modal-scrollbar-measure {
  5939. position: absolute;
  5940. top: -9999px;
  5941. width: 50px;
  5942. height: 50px;
  5943. overflow: scroll;
  5944. }
  5945. @media (min-width: 768px) {
  5946. .modal-dialog {
  5947. width: 600px;
  5948. margin: 30px auto;
  5949. }
  5950. .modal-content {
  5951. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5952. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5953. }
  5954. .modal-sm {
  5955. width: 300px;
  5956. }
  5957. }
  5958. @media (min-width: 992px) {
  5959. .modal-lg {
  5960. width: 900px;
  5961. }
  5962. }
  5963. .tooltip {
  5964. position: absolute;
  5965. z-index: 1070;
  5966. display: block;
  5967. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5968. font-style: normal;
  5969. font-weight: normal;
  5970. letter-spacing: normal;
  5971. line-break: auto;
  5972. line-height: 1.42857143;
  5973. text-align: left;
  5974. text-align: start;
  5975. text-decoration: none;
  5976. text-shadow: none;
  5977. text-transform: none;
  5978. white-space: normal;
  5979. word-break: normal;
  5980. word-spacing: normal;
  5981. word-wrap: normal;
  5982. font-size: 11px;
  5983. opacity: 0;
  5984. filter: alpha(opacity=0);
  5985. }
  5986. .tooltip.in {
  5987. opacity: 0.9;
  5988. filter: alpha(opacity=90);
  5989. }
  5990. .tooltip.top {
  5991. margin-top: -3px;
  5992. padding: 5px 0;
  5993. }
  5994. .tooltip.right {
  5995. margin-left: 3px;
  5996. padding: 0 5px;
  5997. }
  5998. .tooltip.bottom {
  5999. margin-top: 3px;
  6000. padding: 5px 0;
  6001. }
  6002. .tooltip.left {
  6003. margin-left: -3px;
  6004. padding: 0 5px;
  6005. }
  6006. .tooltip-inner {
  6007. max-width: 200px;
  6008. padding: 3px 8px;
  6009. color: #fff;
  6010. text-align: center;
  6011. background-color: #000;
  6012. border-radius: 3px;
  6013. }
  6014. .tooltip-arrow {
  6015. position: absolute;
  6016. width: 0;
  6017. height: 0;
  6018. border-color: transparent;
  6019. border-style: solid;
  6020. }
  6021. .tooltip.top .tooltip-arrow {
  6022. bottom: 0;
  6023. left: 50%;
  6024. margin-left: -5px;
  6025. border-width: 5px 5px 0;
  6026. border-top-color: #000;
  6027. }
  6028. .tooltip.top-left .tooltip-arrow {
  6029. bottom: 0;
  6030. right: 5px;
  6031. margin-bottom: -5px;
  6032. border-width: 5px 5px 0;
  6033. border-top-color: #000;
  6034. }
  6035. .tooltip.top-right .tooltip-arrow {
  6036. bottom: 0;
  6037. left: 5px;
  6038. margin-bottom: -5px;
  6039. border-width: 5px 5px 0;
  6040. border-top-color: #000;
  6041. }
  6042. .tooltip.right .tooltip-arrow {
  6043. top: 50%;
  6044. left: 0;
  6045. margin-top: -5px;
  6046. border-width: 5px 5px 5px 0;
  6047. border-right-color: #000;
  6048. }
  6049. .tooltip.left .tooltip-arrow {
  6050. top: 50%;
  6051. right: 0;
  6052. margin-top: -5px;
  6053. border-width: 5px 0 5px 5px;
  6054. border-left-color: #000;
  6055. }
  6056. .tooltip.bottom .tooltip-arrow {
  6057. top: 0;
  6058. left: 50%;
  6059. margin-left: -5px;
  6060. border-width: 0 5px 5px;
  6061. border-bottom-color: #000;
  6062. }
  6063. .tooltip.bottom-left .tooltip-arrow {
  6064. top: 0;
  6065. right: 5px;
  6066. margin-top: -5px;
  6067. border-width: 0 5px 5px;
  6068. border-bottom-color: #000;
  6069. }
  6070. .tooltip.bottom-right .tooltip-arrow {
  6071. top: 0;
  6072. left: 5px;
  6073. margin-top: -5px;
  6074. border-width: 0 5px 5px;
  6075. border-bottom-color: #000;
  6076. }
  6077. .popover {
  6078. position: absolute;
  6079. top: 0;
  6080. left: 0;
  6081. z-index: 1060;
  6082. display: none;
  6083. max-width: 276px;
  6084. padding: 1px;
  6085. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6086. font-style: normal;
  6087. font-weight: normal;
  6088. letter-spacing: normal;
  6089. line-break: auto;
  6090. line-height: 1.42857143;
  6091. text-align: left;
  6092. text-align: start;
  6093. text-decoration: none;
  6094. text-shadow: none;
  6095. text-transform: none;
  6096. white-space: normal;
  6097. word-break: normal;
  6098. word-spacing: normal;
  6099. word-wrap: normal;
  6100. font-size: 12px;
  6101. background-color: #fff;
  6102. background-clip: padding-box;
  6103. border: 1px solid #ccc;
  6104. border: 1px solid rgba(0, 0, 0, 0.2);
  6105. border-radius: 5px;
  6106. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6107. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6108. }
  6109. .popover.top {
  6110. margin-top: -10px;
  6111. }
  6112. .popover.right {
  6113. margin-left: 10px;
  6114. }
  6115. .popover.bottom {
  6116. margin-top: 10px;
  6117. }
  6118. .popover.left {
  6119. margin-left: -10px;
  6120. }
  6121. .popover-title {
  6122. margin: 0;
  6123. padding: 8px 14px;
  6124. font-size: 12px;
  6125. background-color: #f7f7f7;
  6126. border-bottom: 1px solid #ebebeb;
  6127. border-radius: 4px 4px 0 0;
  6128. }
  6129. .popover-content {
  6130. padding: 9px 14px;
  6131. }
  6132. .popover > .arrow,
  6133. .popover > .arrow:after {
  6134. position: absolute;
  6135. display: block;
  6136. width: 0;
  6137. height: 0;
  6138. border-color: transparent;
  6139. border-style: solid;
  6140. }
  6141. .popover > .arrow {
  6142. border-width: 11px;
  6143. }
  6144. .popover > .arrow:after {
  6145. border-width: 10px;
  6146. content: "";
  6147. }
  6148. .popover.top > .arrow {
  6149. left: 50%;
  6150. margin-left: -11px;
  6151. border-bottom-width: 0;
  6152. border-top-color: #999999;
  6153. border-top-color: rgba(0, 0, 0, 0.25);
  6154. bottom: -11px;
  6155. }
  6156. .popover.top > .arrow:after {
  6157. content: " ";
  6158. bottom: 1px;
  6159. margin-left: -10px;
  6160. border-bottom-width: 0;
  6161. border-top-color: #fff;
  6162. }
  6163. .popover.right > .arrow {
  6164. top: 50%;
  6165. left: -11px;
  6166. margin-top: -11px;
  6167. border-left-width: 0;
  6168. border-right-color: #999999;
  6169. border-right-color: rgba(0, 0, 0, 0.25);
  6170. }
  6171. .popover.right > .arrow:after {
  6172. content: " ";
  6173. left: 1px;
  6174. bottom: -10px;
  6175. border-left-width: 0;
  6176. border-right-color: #fff;
  6177. }
  6178. .popover.bottom > .arrow {
  6179. left: 50%;
  6180. margin-left: -11px;
  6181. border-top-width: 0;
  6182. border-bottom-color: #999999;
  6183. border-bottom-color: rgba(0, 0, 0, 0.25);
  6184. top: -11px;
  6185. }
  6186. .popover.bottom > .arrow:after {
  6187. content: " ";
  6188. top: 1px;
  6189. margin-left: -10px;
  6190. border-top-width: 0;
  6191. border-bottom-color: #fff;
  6192. }
  6193. .popover.left > .arrow {
  6194. top: 50%;
  6195. right: -11px;
  6196. margin-top: -11px;
  6197. border-right-width: 0;
  6198. border-left-color: #999999;
  6199. border-left-color: rgba(0, 0, 0, 0.25);
  6200. }
  6201. .popover.left > .arrow:after {
  6202. content: " ";
  6203. right: 1px;
  6204. border-right-width: 0;
  6205. border-left-color: #fff;
  6206. bottom: -10px;
  6207. }
  6208. .carousel {
  6209. position: relative;
  6210. }
  6211. .carousel-inner {
  6212. position: relative;
  6213. overflow: hidden;
  6214. width: 100%;
  6215. }
  6216. .carousel-inner > .item {
  6217. display: none;
  6218. position: relative;
  6219. -webkit-transition: 0.6s ease-in-out left;
  6220. -o-transition: 0.6s ease-in-out left;
  6221. transition: 0.6s ease-in-out left;
  6222. }
  6223. .carousel-inner > .item > img,
  6224. .carousel-inner > .item > a > img {
  6225. line-height: 1;
  6226. }
  6227. @media all and (transform-3d), (-webkit-transform-3d) {
  6228. .carousel-inner > .item {
  6229. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6230. -moz-transition: -moz-transform 0.6s ease-in-out;
  6231. -o-transition: -o-transform 0.6s ease-in-out;
  6232. transition: transform 0.6s ease-in-out;
  6233. -webkit-backface-visibility: hidden;
  6234. -moz-backface-visibility: hidden;
  6235. backface-visibility: hidden;
  6236. -webkit-perspective: 1000px;
  6237. -moz-perspective: 1000px;
  6238. perspective: 1000px;
  6239. }
  6240. .carousel-inner > .item.next,
  6241. .carousel-inner > .item.active.right {
  6242. -webkit-transform: translate3d(100%, 0, 0);
  6243. transform: translate3d(100%, 0, 0);
  6244. left: 0;
  6245. }
  6246. .carousel-inner > .item.prev,
  6247. .carousel-inner > .item.active.left {
  6248. -webkit-transform: translate3d(-100%, 0, 0);
  6249. transform: translate3d(-100%, 0, 0);
  6250. left: 0;
  6251. }
  6252. .carousel-inner > .item.next.left,
  6253. .carousel-inner > .item.prev.right,
  6254. .carousel-inner > .item.active {
  6255. -webkit-transform: translate3d(0, 0, 0);
  6256. transform: translate3d(0, 0, 0);
  6257. left: 0;
  6258. }
  6259. }
  6260. .carousel-inner > .active,
  6261. .carousel-inner > .next,
  6262. .carousel-inner > .prev {
  6263. display: block;
  6264. }
  6265. .carousel-inner > .active {
  6266. left: 0;
  6267. }
  6268. .carousel-inner > .next,
  6269. .carousel-inner > .prev {
  6270. position: absolute;
  6271. top: 0;
  6272. width: 100%;
  6273. }
  6274. .carousel-inner > .next {
  6275. left: 100%;
  6276. }
  6277. .carousel-inner > .prev {
  6278. left: -100%;
  6279. }
  6280. .carousel-inner > .next.left,
  6281. .carousel-inner > .prev.right {
  6282. left: 0;
  6283. }
  6284. .carousel-inner > .active.left {
  6285. left: -100%;
  6286. }
  6287. .carousel-inner > .active.right {
  6288. left: 100%;
  6289. }
  6290. .carousel-control {
  6291. position: absolute;
  6292. top: 0;
  6293. left: 0;
  6294. bottom: 0;
  6295. width: 15%;
  6296. opacity: 0.5;
  6297. filter: alpha(opacity=50);
  6298. font-size: 20px;
  6299. color: #fff;
  6300. text-align: center;
  6301. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6302. background-color: rgba(0, 0, 0, 0);
  6303. }
  6304. .carousel-control.left {
  6305. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6306. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6307. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6308. background-repeat: repeat-x;
  6309. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6310. }
  6311. .carousel-control.right {
  6312. left: auto;
  6313. right: 0;
  6314. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6315. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6316. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6317. background-repeat: repeat-x;
  6318. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6319. }
  6320. .carousel-control:hover,
  6321. .carousel-control:focus {
  6322. outline: 0;
  6323. color: #fff;
  6324. text-decoration: none;
  6325. opacity: 0.9;
  6326. filter: alpha(opacity=90);
  6327. }
  6328. .carousel-control .icon-prev,
  6329. .carousel-control .icon-next,
  6330. .carousel-control .glyphicon-chevron-left,
  6331. .carousel-control .glyphicon-chevron-right {
  6332. position: absolute;
  6333. top: 50%;
  6334. margin-top: -10px;
  6335. z-index: 5;
  6336. display: inline-block;
  6337. }
  6338. .carousel-control .icon-prev,
  6339. .carousel-control .glyphicon-chevron-left {
  6340. left: 50%;
  6341. margin-left: -10px;
  6342. }
  6343. .carousel-control .icon-next,
  6344. .carousel-control .glyphicon-chevron-right {
  6345. right: 50%;
  6346. margin-right: -10px;
  6347. }
  6348. .carousel-control .icon-prev,
  6349. .carousel-control .icon-next {
  6350. width: 20px;
  6351. height: 20px;
  6352. line-height: 1;
  6353. font-family: serif;
  6354. }
  6355. .carousel-control .icon-prev:before {
  6356. content: '\2039';
  6357. }
  6358. .carousel-control .icon-next:before {
  6359. content: '\203a';
  6360. }
  6361. .carousel-indicators {
  6362. position: absolute;
  6363. bottom: 10px;
  6364. left: 50%;
  6365. z-index: 15;
  6366. width: 60%;
  6367. margin-left: -30%;
  6368. padding-left: 0;
  6369. list-style: none;
  6370. text-align: center;
  6371. }
  6372. .carousel-indicators li {
  6373. display: inline-block;
  6374. width: 10px;
  6375. height: 10px;
  6376. margin: 1px;
  6377. text-indent: -999px;
  6378. border: 1px solid #fff;
  6379. border-radius: 10px;
  6380. cursor: pointer;
  6381. background-color: #000 \9;
  6382. background-color: rgba(0, 0, 0, 0);
  6383. }
  6384. .carousel-indicators .active {
  6385. margin: 0;
  6386. width: 12px;
  6387. height: 12px;
  6388. background-color: #fff;
  6389. }
  6390. .carousel-caption {
  6391. position: absolute;
  6392. left: 15%;
  6393. right: 15%;
  6394. bottom: 20px;
  6395. z-index: 10;
  6396. padding-top: 20px;
  6397. padding-bottom: 20px;
  6398. color: #fff;
  6399. text-align: center;
  6400. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6401. }
  6402. .carousel-caption .btn {
  6403. text-shadow: none;
  6404. }
  6405. @media screen and (min-width: 768px) {
  6406. .carousel-control .glyphicon-chevron-left,
  6407. .carousel-control .glyphicon-chevron-right,
  6408. .carousel-control .icon-prev,
  6409. .carousel-control .icon-next {
  6410. width: 30px;
  6411. height: 30px;
  6412. margin-top: -10px;
  6413. font-size: 30px;
  6414. }
  6415. .carousel-control .glyphicon-chevron-left,
  6416. .carousel-control .icon-prev {
  6417. margin-left: -10px;
  6418. }
  6419. .carousel-control .glyphicon-chevron-right,
  6420. .carousel-control .icon-next {
  6421. margin-right: -10px;
  6422. }
  6423. .carousel-caption {
  6424. left: 20%;
  6425. right: 20%;
  6426. padding-bottom: 30px;
  6427. }
  6428. .carousel-indicators {
  6429. bottom: 20px;
  6430. }
  6431. }
  6432. .clearfix:before,
  6433. .clearfix:after,
  6434. .dl-horizontal dd:before,
  6435. .dl-horizontal dd:after,
  6436. .container:before,
  6437. .container:after,
  6438. .container-fluid:before,
  6439. .container-fluid:after,
  6440. .row:before,
  6441. .row:after,
  6442. .form-horizontal .form-group:before,
  6443. .form-horizontal .form-group:after,
  6444. .btn-toolbar:before,
  6445. .btn-toolbar:after,
  6446. .btn-group-vertical > .btn-group:before,
  6447. .btn-group-vertical > .btn-group:after,
  6448. .nav:before,
  6449. .nav:after,
  6450. .navbar:before,
  6451. .navbar:after,
  6452. .navbar-header:before,
  6453. .navbar-header:after,
  6454. .navbar-collapse:before,
  6455. .navbar-collapse:after,
  6456. .pager:before,
  6457. .pager:after,
  6458. .panel-body:before,
  6459. .panel-body:after,
  6460. .modal-header:before,
  6461. .modal-header:after,
  6462. .modal-footer:before,
  6463. .modal-footer:after {
  6464. content: " ";
  6465. display: table;
  6466. }
  6467. .clearfix:after,
  6468. .dl-horizontal dd:after,
  6469. .container:after,
  6470. .container-fluid:after,
  6471. .row:after,
  6472. .form-horizontal .form-group:after,
  6473. .btn-toolbar:after,
  6474. .btn-group-vertical > .btn-group:after,
  6475. .nav:after,
  6476. .navbar:after,
  6477. .navbar-header:after,
  6478. .navbar-collapse:after,
  6479. .pager:after,
  6480. .panel-body:after,
  6481. .modal-header:after,
  6482. .modal-footer:after {
  6483. clear: both;
  6484. }
  6485. .center-block {
  6486. display: block;
  6487. margin-left: auto;
  6488. margin-right: auto;
  6489. }
  6490. .pull-right {
  6491. float: right !important;
  6492. }
  6493. .pull-left {
  6494. float: left !important;
  6495. }
  6496. .hide {
  6497. display: none !important;
  6498. }
  6499. .show {
  6500. display: block !important;
  6501. }
  6502. .invisible {
  6503. visibility: hidden;
  6504. }
  6505. .text-hide {
  6506. font: 0/0 a;
  6507. color: transparent;
  6508. text-shadow: none;
  6509. background-color: transparent;
  6510. border: 0;
  6511. }
  6512. .hidden {
  6513. display: none !important;
  6514. }
  6515. .affix {
  6516. position: fixed;
  6517. }
  6518. @-ms-viewport {
  6519. width: device-width;
  6520. }
  6521. .visible-xs,
  6522. .visible-sm,
  6523. .visible-md,
  6524. .visible-lg {
  6525. display: none !important;
  6526. }
  6527. .visible-xs-block,
  6528. .visible-xs-inline,
  6529. .visible-xs-inline-block,
  6530. .visible-sm-block,
  6531. .visible-sm-inline,
  6532. .visible-sm-inline-block,
  6533. .visible-md-block,
  6534. .visible-md-inline,
  6535. .visible-md-inline-block,
  6536. .visible-lg-block,
  6537. .visible-lg-inline,
  6538. .visible-lg-inline-block {
  6539. display: none !important;
  6540. }
  6541. @media (max-width: 767px) {
  6542. .visible-xs {
  6543. display: block !important;
  6544. }
  6545. table.visible-xs {
  6546. display: table !important;
  6547. }
  6548. tr.visible-xs {
  6549. display: table-row !important;
  6550. }
  6551. th.visible-xs,
  6552. td.visible-xs {
  6553. display: table-cell !important;
  6554. }
  6555. }
  6556. @media (max-width: 767px) {
  6557. .visible-xs-block {
  6558. display: block !important;
  6559. }
  6560. }
  6561. @media (max-width: 767px) {
  6562. .visible-xs-inline {
  6563. display: inline !important;
  6564. }
  6565. }
  6566. @media (max-width: 767px) {
  6567. .visible-xs-inline-block {
  6568. display: inline-block !important;
  6569. }
  6570. }
  6571. @media (min-width: 768px) and (max-width: 991px) {
  6572. .visible-sm {
  6573. display: block !important;
  6574. }
  6575. table.visible-sm {
  6576. display: table !important;
  6577. }
  6578. tr.visible-sm {
  6579. display: table-row !important;
  6580. }
  6581. th.visible-sm,
  6582. td.visible-sm {
  6583. display: table-cell !important;
  6584. }
  6585. }
  6586. @media (min-width: 768px) and (max-width: 991px) {
  6587. .visible-sm-block {
  6588. display: block !important;
  6589. }
  6590. }
  6591. @media (min-width: 768px) and (max-width: 991px) {
  6592. .visible-sm-inline {
  6593. display: inline !important;
  6594. }
  6595. }
  6596. @media (min-width: 768px) and (max-width: 991px) {
  6597. .visible-sm-inline-block {
  6598. display: inline-block !important;
  6599. }
  6600. }
  6601. @media (min-width: 992px) and (max-width: 1199px) {
  6602. .visible-md {
  6603. display: block !important;
  6604. }
  6605. table.visible-md {
  6606. display: table !important;
  6607. }
  6608. tr.visible-md {
  6609. display: table-row !important;
  6610. }
  6611. th.visible-md,
  6612. td.visible-md {
  6613. display: table-cell !important;
  6614. }
  6615. }
  6616. @media (min-width: 992px) and (max-width: 1199px) {
  6617. .visible-md-block {
  6618. display: block !important;
  6619. }
  6620. }
  6621. @media (min-width: 992px) and (max-width: 1199px) {
  6622. .visible-md-inline {
  6623. display: inline !important;
  6624. }
  6625. }
  6626. @media (min-width: 992px) and (max-width: 1199px) {
  6627. .visible-md-inline-block {
  6628. display: inline-block !important;
  6629. }
  6630. }
  6631. @media (min-width: 1200px) {
  6632. .visible-lg {
  6633. display: block !important;
  6634. }
  6635. table.visible-lg {
  6636. display: table !important;
  6637. }
  6638. tr.visible-lg {
  6639. display: table-row !important;
  6640. }
  6641. th.visible-lg,
  6642. td.visible-lg {
  6643. display: table-cell !important;
  6644. }
  6645. }
  6646. @media (min-width: 1200px) {
  6647. .visible-lg-block {
  6648. display: block !important;
  6649. }
  6650. }
  6651. @media (min-width: 1200px) {
  6652. .visible-lg-inline {
  6653. display: inline !important;
  6654. }
  6655. }
  6656. @media (min-width: 1200px) {
  6657. .visible-lg-inline-block {
  6658. display: inline-block !important;
  6659. }
  6660. }
  6661. @media (max-width: 767px) {
  6662. .hidden-xs {
  6663. display: none !important;
  6664. }
  6665. }
  6666. @media (min-width: 768px) and (max-width: 991px) {
  6667. .hidden-sm {
  6668. display: none !important;
  6669. }
  6670. }
  6671. @media (min-width: 992px) and (max-width: 1199px) {
  6672. .hidden-md {
  6673. display: none !important;
  6674. }
  6675. }
  6676. @media (min-width: 1200px) {
  6677. .hidden-lg {
  6678. display: none !important;
  6679. }
  6680. }
  6681. .visible-print {
  6682. display: none !important;
  6683. }
  6684. @media print {
  6685. .visible-print {
  6686. display: block !important;
  6687. }
  6688. table.visible-print {
  6689. display: table !important;
  6690. }
  6691. tr.visible-print {
  6692. display: table-row !important;
  6693. }
  6694. th.visible-print,
  6695. td.visible-print {
  6696. display: table-cell !important;
  6697. }
  6698. }
  6699. .visible-print-block {
  6700. display: none !important;
  6701. }
  6702. @media print {
  6703. .visible-print-block {
  6704. display: block !important;
  6705. }
  6706. }
  6707. .visible-print-inline {
  6708. display: none !important;
  6709. }
  6710. @media print {
  6711. .visible-print-inline {
  6712. display: inline !important;
  6713. }
  6714. }
  6715. .visible-print-inline-block {
  6716. display: none !important;
  6717. }
  6718. @media print {
  6719. .visible-print-inline-block {
  6720. display: inline-block !important;
  6721. }
  6722. }
  6723. @media print {
  6724. .hidden-print {
  6725. display: none !important;
  6726. }
  6727. }