bootstrap.css 142 KB

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