body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
	max-height: 100%;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.25em;
}

#header {
	position: absolute;
	top: 0;
	left: 230px;
	width: 100%;
	height: 150px;
	overflow: hidden;
	/* Disables scrollbars on the header frame. To enable scrollbars, change "hidden" to "scroll" */
	background-image: url(images/pool_table_strip.png);
	background-repeat: no-repeat;
}

#nav {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 230px;
	overflow-x: hidden;
	overflow-y: auto;
	background: #34345e;
}

#main {
	position: absolute;
	top: 150px;
	/* Set this to the height of the header */
	left: 230px;
	right: 0;
	bottom: 0;
	overflow-x: auto;
	overflow-y: auto;
	background: gainsboro;
}

#innertube {
	min-width: 1100px;
	margin: 15px;
	/* Provides padding for the content */
}

#logo {
	width: 210px;
	height: 210px;
	padding: 10px;
}

#desc {
	width: 210px;
	margin-left: 10px;
	margin-right: 10px;
}

#desctext {
	color: gainsboro;
	font-weight: bold;
	font-size: 15px;
}

#nav_link_list {
	width: 210px;
	margin-left: 10px;
	margin-right: 10px;
}

a.nav_link {
	display: inline-block;
	color: gainsboro;
	font-size: 24px;
	font-weight: bolder;
	text-shadow: 3px 3px black;
	text-decoration: none;
	text-align: center;
	margin-bottom: 10px;
}

span.nav_link_current {
	display: inline-block;
	color: grey;
	font-size: 24px;
	font-weight: bolder;
	text-shadow: 0px 0px transparent;
	text-decoration: none;
	text-align: center;
	margin-bottom: 10px;
}

a.nav_link:active {
	text-shadow: 0px 0px black;
}

#nav_social {
	width: 210px;
	margin-left: 10px;
	margin-right: 10px;
}

/* Custom & Common */

.block_top {
	display: inline-block;
	vertical-align: top;
}

.block_bottom {
	display: inline-block;
	vertical-align: bottom;
}

span.for_text {
	display: inline-block;
	font-weight: bold;
	font-size: 15px;
}

a.link_text {
	font-weight: bold;
	text-decoration: none;
}

a.link_text:hover {
	text-decoration: underline;
}

a.link_text:visited {
	color: blue;
}

/* PAGE: HOME */

div.home_download_button_div {
	border-radius: 16px;
	color: gainsboro;
	background-color: #34345e;
	padding-top: 22px;
	padding-right: 22px;
	padding-left: 22px;
	padding-bottom: 34px;
}

span.home_download_button_text {
	display: inline-block;
	font-size: 56px;
	font-weight: bold;
	text-shadow: 2px 2px black;
	vertical-align: middle;
	text-align: center;
}

span.latest_ver_label_text {
	display: inline-block;
	font-weight: bolder;
	font-size: 20px;
	margin-left: 124px;
}

img.home_tech_image {
	vertical-align: middle;
	margin-right: 10px;
	margin-bottom: 10px;
}

#home_news_section h3 {}

#home_news_section p {
	font-size: 16px;
	font-weight: normal;
	margin-left: 8px;
}

/* PAGE: FEATURES */

a.feature_link {
	font-weight: bold;
}

a.feature_link:visited {
	color: blue;
}

/* PAGE: METRICS */
p.stats_section {
	font-size: 14px;
	font-weight: bold;
}

a.metric_link {
	font-weight: bold;
}

a.metric_link:visited {
	color: blue;
}


/* PAGE: DOWNLOADS */

p.download_section {
	font-size: 14px;
	font-weight: bold;
}

img.download_tech_image {
	vertical-align: middle;
	margin-right: 10px;
	margin-bottom: 10px;
}

a.download_link {
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

a.download_link:hover {
	text-decoration: underline;
}

.log_item_list li {
	font-size: 13px;
}

/* PAGE: VIDEOS */

.videos_table {
	min-width: 1062px;
	border-style: solid;
	border-width: 1px;
	border-color: black;
	border-collapse: collapse;
}

.th_center_align {
	border-style: solid;
	border-width: 1px;
	border-color: black;
	color: gainsboro;
	font-weight: bold;
	background-color: #34345e;
	text-align: center;
	vertical-align: middle;
	padding-left: 2px;
	padding-right: 2px;
}

.td_glyph {
	border-style: solid;
	border-width: 1px;
	border-color: black;
	background-color: gainsboro;
	text-align: center;
	padding-top: 4px;
	padding-left: 2px;
	padding-right: 2px;
}

.td_center_align {
	border-style: solid;
	border-width: 1px;
	border-color: black;
	font-weight: bold;
	font-size: 14px;
	color: black;
	background-color: gainsboro;
	text-align: center;
	padding-left: 4px;
	padding-right: 4px;
}

.td_left_align {
	border-style: solid;
	border-width: 1px;
	border-color: black;
	font-weight: bold;
	font-size: 14px;
	color: black;
	background-color: gainsboro;
	text-align: left;
	padding-left: 4px;
	padding-right: 4px;
}



/* PAGE: ABOUT */

.about_text_header {
	margin-left: 20px
}

.about_text {
	width: 600px;
	margin-left: 30px
}

/*IE6 fix*/

* html body {
	padding: 100px 0 0 230px;
	/* Set the first value to the height of the header and last value to the width of the nav */
}

* html main {
	height: 100%;
	width: 100%;
}