No Description

bootstrap.css 145KB

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