/* unvisited link */
a:link {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

/* visited link */
a:visited {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

/* mouse over link */
a:hover {
	color: rgb(150, 150, 150);
	text-decoration: none;
	cursor: pointer;
}

/* selected link */
a:active {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

html, body {
	margin: 0 auto;
	height: 100%;
}

html {
	/*background:rgb(220,220,220);*/
	background: rgb(240, 240, 240);
	color: rgb(100, 100, 100);
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: 'arial';
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	position: relative;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
}

#tsp_main_table {
	position: relative;
	table-layout: fixed;
	border-collapse: collapse;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0px;
}