app.css 168 KB

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