bootstrap.css 136 KB

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