bootstrap.css 143 KB

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