* {
	margin: 0px;
	padding: 0px;
}

html {
	overflow:scroll;    
}

body {
	background-color: #333;
	font-family: sans-serif;
	font-size: 90%;
	color: #fff;
}

p {
	margin-bottom: 1em;
}

a {
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
}

.dark a:link, .dark a:visited {
	color: #ccc;
}
.dark a:hover {
	color: #999;
}
.dark a:active {
	color: #666;
}

.light a:link, .light a:visited {
    color: #333;
}
.light a:hover {
    color: #666;
}
.light a:active {
    color: #999;
}

.dark {
	background-color: #000;
	color: #fff;
}

.light {
	background-color: #fff;
	color: #000;
}

/*
code, pre {
	font-family: monospace;
}
*/

#outerContainer {
	width: 960px;
	margin: auto;
	margin-top: 16px;
	margin-bottom: 16px;
    border-radius: 10px;
    -moz-border-radius: 10px;
	-moz-box-shadow: 0 0 10px #000;
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
}


#header {
    border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-right-radius: 10px;
    -moz-border-radius-topright: 10px;
}

#logo {
	padding: 8px;
}

#logo a {
	color: #fff;
	text-decoration: none;
}

#nav {
	text-align: right;
	padding: 10px;
}

#nav ul {
	list-style-type: none;
}

#nav li {
	display: inline;
}


#nav a {
	font-size: smaller;
	color: #333;
	background: #ccc;
    padding: 5px 10px 5px 10px;
	-moz-border-radius: 5px 5px;
	border-radius: 5px 5px;

	 -moz-box-shadow: 0 0 3px #fff;
    -webkit-box-shadow: 0 0 3px #fff;
    box-shadow: 0 0 3px #fff;

	
}

#nav a:hover, a#currentPage {
	color: #ccc;
	background: #333;
	text-decoration: none;
}

#nav a:active {
	color: #fff;
}

#innerContainer {
	border-left: 3px solid #000;
	border-right: 3px solid #000;
}

#content {
	padding: 8px;
	float: left;
}



#innerFooter {
	clear: both;
}

#outerFooter {
	font-size: smaller;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
}

.footerBlock {
	float: left;
	width: 288px;
	padding: 16px;

}

#footerBottom {
	padding: 16px;
	text-align: center;
	width: 928px;
	clear: both;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
