bootstrap.css 144 KB

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