
Buffet Crampon E13 B♭ Clarinet
.h1 { text-align: center; font-size: 2.5rem; font-style: bold strong; font-family: "Philosopher"; } .h2 { text-align: center; font-size: 2.5rem; font-style: bold strong; font-family: "Philosopher"; } .h3 { text-align: center; font-size: 2rem; font-style: italic; } .text-center { text-align: center; } .text-center1 { text-align: center; font-style: italic; color: #9b7733; } .text-center2 { text-align: center; text-decoration: underline; color: #414040; } .tabs { display: flex; justify-content: center; border-bottom: 2px solid #ddd; border-radius: 5px 5px 0 0; margin: 20px 0; } .tab { padding: 10px 20px; cursor: pointer; font-weight: bold; background-color: #C7B38A; border: 1px solid #ddd; border-bottom: none; margin-right: 5px; border-radius: 5px 5px 0 0; } .tab.active { background-color: #dcc18825; border-bottom: 2px solid #dcc18825; box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.6); } .tab-content { display: none; padding: 15px; background-color: #DCC18850; border: 1px solid #ddd; border-radius: 5px; } .tab-content.active { display: block; } .spec-table { width: 100%; border-collapse: collapse; margin: 0 auto; } .spec-table th, .spec-table td { padding: 8px; border: 1px solid #ddd; } .spec-table th { background-color: #f9f9f9; text-align: left; } Buffet Crampon E13 B♭ Clarinet A Trusted Instrument for the Advancing Musician For over 40 years, the Buffet Crampon E13 B♭ Clarinet has been a benchmark for quality and reliability. Originating from the renowned BC20 model, this clarinet has been the choice of advanced students and conservatory-level musicians seeking a rich, resonant tone and professional-grade features. Overview Features Specifications A Legacy of Sound The E13 blends Buffet Crampon’s heritage with modern innovation, producing a clarinet that excels in tonal projection and harmonic richness. Its cylindrical bore and grenadilla wood body ensure a focused, centered tone, ideal for solo and ensemble performances alike. Built for Performance Enhanced Design for Today’s Musicians Featuring silver-plated keywork, blue steel springs, and leather pads, the E13 offers a premium playing experience. The addition of a redesigned bell, inspired by the RC model, provides enhanced projection and clarity, while the adjustable thumb rest accommodates all playing styles comfortably. Key Specifications Key B♭ Pitch 442 Hz Body Material Dalbergia Melanoxylon, stained African blackwood Keywork 17 keys, silver-plated Springs Blue steel, flat and needle Pads Leather Bell RC-inspired redesigned bell Thumb Rest Adjustable, supports neck strap Barrel 65 mm Experience the enduring legacy of the Buffet Crampon E13 B♭ Clarinet. Its professional-grade features and versatile performance capabilities make it an excellent choice for advanced players seeking a refined, reliable instrument. // Tab functionality const tabs = document.querySelectorAll('.tab'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(tab => { tab.addEventListener('click', () => { // Remove 'active' class from all tabs and contents tabs.forEach(t => t.classList.remove('active')); contents.forEach(c => c.classList.remove('active')); // Add 'active' class to the clicked tab and corresponding content tab.classList.add('active'); document.getElementById(tab.dataset.tab).classList.add('active'); }); });