html, body {
	width: 100%;
	height: 100%;	
}

body {
	margin: 0;
	padding: 0;	
}

img#logo {
	margin: 5px;
	position: relative;
	float: left;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;	
}

h1, h2 {
	display: block;	
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
}

h1 {
	font-size: 24px;
}

h2 {
	margin-top: 0;
	font-size: 20px;	
}

button {
	background-color: white;
	border: 3px double white;
	color: black;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	cursor: pointer;
	z-index: 100;	
}

button:active {
	background-color: #246;
	color: white;	
}

button:hover {
	border: 3px double black;
}

div#mainLeft {
	width: 436px;
	height: 550px;
	border: 3px double #aaa;
	float: left;
}

div#inputs label {
	font-weight: bold;
	color: #222;
	margin-top: 0;
}

select#chartType {
	background-color: white;	
}

textarea#inputTextData {
	width: 380px;
	height: 200px;	
}

div#inputs {
	background-color: #bbb;
	position: relative;
	top: 10px;
	margin: 5px;
	height: 410px;
	width: 415px;
	padding: 5px;
	border: 1px solid #222;
	border-radius: 12px;
	clear: both;
}

div#enterData {
	overflow: scroll;
}

div#enterData ul {
	list-style: none;	
	margin: 0;
	padding: 0;
}

div#innerEnterData {
	position: relative;
	float: left;
	max-height: 220px;
	width: 380px;
}

button#AddColumn {
	position: relative;
	clear: both;
	z-index: 1000;
}

button#AddRow {
	position: relative;
	clear: both;
	z-index: 1000;
}

div#innerEnterData {
	font-size: 14px;	
}

div#innerEnterData > ul > li {
	clear: both;
}

div#innerEnterData > ul > li > ul > li {
	border: 1px solid white;
	float: left;
	display: inline-block;
	width: 60px;
	height: 25px;
	line-height: 2.0;
	background-color: #ddd;
}
div#innerEnterData > ul > li> ul > li:hover {
	border-color: aqua;
	cursor: pointer;	
}

div#innerEnterData > ul > li > ul > li > input {
	width: 55px;
	height: 20px;	
}


div#buttonSteps {
	clear: both;	
}

div#mainView {
	height: 550px;
	width: 500px;
	border: 3px double #aaa;
	float: left;
	overflow: scroll;
}

div#mainView table {
	border: 1px solid black;	
}

div#mainView table td {
	padding: 5px;
	border: 1px solid black;
}

span.valErrs {
	color: red;
	display: block;	
}

div#footer {
	width: 100%;
	text-align: left;
	clear: both;	
}

div#mainRight {
	height: 550px;
	width: 200px;
	border: 3px double #aaa;
	float: left;
	overflow: scroll;
}

div#mainRight ul {
	list-style: none;
	margin: 0;
	padding: 0;	
}

div#mainRight li input {
	display: block;
}

div#mainRight ul h4 {
	text-decoration: underline;	
}