<div>
<svg width="600" height="300">
<g id="layer1"></g>
</svg>
<div id="controls">
<h2>Your clever title</h2>
<div>
Highlight:<br />
<button id="btn-one">One</button>
<button id="btn-two">Two</button>
<button id="btn-three">Three</button>
<button id="btn-four">Four</button>
<button id="btn-five">Five</button>
<br /><br />
<button id="btn-dimAll">Dim All</button>
<button id="btn-showAll">Show All</button>
<br /><br />
Choose a value: <input id="slider" name="slider" type="range" min="1" max="5" step="1" />
</div>
<div style="margin-top: 30px;">
Other explanation, notes, and text can go here.<br />
This can help to tell your reader what to do.<br />
Note that this entire controls section can be positioned whereever you want in the visual.
</div>
</div>
<style>
#controls {position: absolute; right: 250px; top: 20px; width: 300px; font-size: 12px; font-family: Helvetica,Arial,sans-serif;}
button {border: 1px solid #aaa; border-radius: 5px; background-color: #eee; font-size: 10px;}
button:hover {cursor: pointer; background-color: #ccc;}
input#slider {width: 100px;}
</style>
</div>