bootstrap.css 142 KB

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