html, body {
	font-family: Segoe, Arial, sans-serif;
	height: 100%;
}

body {
	width: 880px;
	margin: auto;
	background-color: rgb(25,50,100);
	font-size:0.9em;
}

div#header img {
	float: left;
	padding: 10px;
	padding-top: 20px;
}

h1 {
	float: left;
	padding-top: 30px;
	padding-left: 20px;
	font-size: 2.5em;
	font-weight: bold;
	color:  rgb(230,240,255);
}

h2 {
	font-size: 1.3em;
	margin-bottom:10px;
	color: rgb(20,40,80);
}

h3 
{
	font-size:1.2em;
	margin-bottom:10px;
	color: rgb(20,40,80);
}

p {
	margin-top: 10px;
	margin-bottom: 10px;
}

img.screenshot 
{
	padding: 4px;
}

div.container
{
	padding: 20px;
	background-color: rgb(210,220,230);
	border: 1px solid rgb(25,50,100);
}

div#screenshots
{
	float:left;
	max-width:430px;
	margin-left:20px;
	margin-top:20px;
}

div#highlights
{
	float:right;
	width:340px;
	margin-top:30px;
	margin-right:20px;
	font-size: 0.8em;
}

div#download-container
{
	font-size: 1.3em;
	font-weight: bold;
	margin: 40px;
}

div#donate-container
{
	float:left;
	margin: 40px;
}

div#versionhistory
{
	margin-top: 40px;
}

div.releasenote
{
	margin-top: 20px;
}

ul
{
	list-style: disc;
	margin-left: 28px;
}

.sub_tab_content {
	padding: 8px;
}

div#header {
	height: 100px;
	position: relative;
}

div#tabs {
	width: auto;
	vertical-align: bottom;
	position: absolute;
	right: 0;
	bottom: 0;
}

div#menu-secondary {
	width: 100%;
	text-align: right;
	background-color: rgb(234,234,255);
	height: 2em;
}


div#content {
	min-height: 100%;
	background-color: rgb(234,234,255);
}


div#menu-secondary ul li {
	display: inline;
	margin-right: 10px;
}


/* CSS for tabs */

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px; /*--Set height of tabs--*/
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #999;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #e0e0e0;
}
ul.tabs li a {
	text-decoration: none;
	color: #000;
	display: block;
	font-size: 1.2em;
	padding: 0 20px;
	border: 1px solid rgb(234,234,255); /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
	background: #ccc;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: rgb(234,234,255);
	border-bottom: 1px solid rgb(234,234,255); /*--Makes the active tab look like it's connected with its content--*/
}



/* CSS for tab content */
.tab_container {
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: rgb(234,234,255);
	min-height: 100%;	
}

.tab_content {
	padding: 5px;
	font-size: 1.2em;
}


/* Styling for sub-items inside tab content */
.hidden, .sub_tab_content {
	display: none;
}

.clear {
	clear: both;
}



