/*=============================================================================
* Default stylesheet for my sourceforge home pages 
* Author: Damir Cohadarevic
* Date: 2011-08-01
* License: none (public domain)
*============================================================================*/ 

ul {
	list-style: disc;
}

h1 {
	font-weight: bold;
	font-size: 160%;
}
h2 {
	font-weight: bold;
	font-size: 140%;
}
h3 {
	font-weight: bold;
	font-size: 120%;
}

/*=============================================================================
* Box styles 
*============================================================================*/ 
#container
{
	margin: 0 auto;
	width: 100%;
	background: #fff;
}

#header
{
	background: #ccc;
	padding: 20px;
}

#header h1 { margin: 0; }

#navigation
{
	float: left;
	width: 100%;
	background: #333;
}

#navigation ul
{
	margin: 0;
	padding: 0;
}

#navigation ul li
{
	list-style-type: none;
	display: inline;
}

#navigation li a
{
	display: block;
	float: left;
	padding: 5px 10px;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #fff;
}

#navigation li a:hover { background: #383; }

#content-container
{
	float: left;
	width: 100%;
	background: #FFF;
}

#content
{
	clear: left;
	float: left;
	width: 60%;
	padding: 20px 0;
	margin: 0 0 0 4%;
	display: inline;
}

#content h2 { margin: 0; }

#aside
{
	float: right;
	width: 26%;
	padding: 20px 0;
	margin: 0 3% 0 0;
	display: inline;
}

#aside h3 { margin: 0; }

#footer
{
	clear: left;
	background: #ccc;
	text-align: center;
	padding: 20px;
	height: 1%;
}


