﻿<!DOCTYPE html><html lang="en"><head>
<meta charset="utf-8">
<title>Single View Settings - Tabs</title>
<style>
body {
    background-color: transparent;
    margin: 0px;
    padding: 0px;
    font-family: Segoe UI,Tahoma,Arial;
    font-size: 12px;
}
h3 {
    color: #b1b1b1;
    font-family: "Segoe UI",Tahoma,Arial;
    font-weight:bold;
    font-size: 12px;
    display: inline-block;
    height: 15px;
    margin: 10px 53px 0px 0px;
    overflow: hidden;
    cursor: pointer;
    direction: ltr;
    position: relative;
}
h3.selected {
    color: #666666;
}
</style>
</head>
<body>
    <h3 id="htab0" class="selected" onclick="parent.top.handleTabDisplay(0);">INFORMATION</h3>
    <h3 id="htab1" onclick="parent.top.handleTabDisplay(1);">HORIZONTAL TAB 1</h3>
    <h3 id="htab2" onclick="parent.top.handleTabDisplay(2);">HORIZONTAL TAB 2</h3>
    <h3 id="htab3" onclick="parent.top.handleTabDisplay(3);">HORIZONTAL TAB 3</h3>
    <h3 id="htab4" onclick="parent.top.handleTabDisplay(4);">HORIZONTAL TAB 4</h3>
</body>
</html>