bootstrap.css 134 KB

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