﻿/* z-index orders:

top nav toolbar: 300
main sliding/dynamic toolbar: 200
svg graphics areas: 100
page content wrappers/etc: 1

main nav popovers: 400
dynamic toolbar popovers: 400

modal dialogs that should hide everything else: 1000
*/

/* Basic Setup */
html, body, section, div
{
	padding: 0px;
	margin: 0px;
}

html
{
	width: 100%;
	height: 100%;

	color: #000;
	font-family: Arial, sans-serif;
}

body {
	width: 100%;
	height: auto;

	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;

	z-index:1;
	background-color: #fff;
}

/* Basic Text Styles */
.header
{
	color: #000;
}

.subheader
{
	color: #000;
}

.text
{
	
}

/* button and menu styles */
.button
{
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #000;

	text-align: center;

	
}

b
{
	font-weight: bold;
}

u
{
	text-decoration: underline;
}

i
{
	font-style: italic;
}

.init img {
	position:relative;
}