bootstrap.css 147 KB

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