/* CSS - style.css */

/*reset*/

* {
	padding:0;
	margin:0;
}

body {
	background:#f48f3d;
}

a:link {
	color:#f2f2f2;
}

a:visited{
	color:#f2f2f2;
}

a:hover {
	color:#f48f3d;
}

#wrapper {
	width:960px;
	margin-left:auto;
	margin-right:auto;

	font-family:helvetica,sans-serif;
	font-size:14px;
	font-style:normal;
	font-weight:normal;
	color:#f2f2f2;
}

#header {
	float:left;
	background:#848484;
	margin:10px 0 0 0;
	width:100%;
	height:180px;
	border-radius:20px;
	box-shadow: 5px 5px 7px #f2f2f2;
}

#logo {
	background:url('logoSB8_nb_400.png');
	background-size:150px 150px;
	background-repeat:no-repeat;
	background-position:15px 15px;
	width:200px;
	height:200px;
	float:left;
}

.navigation {
	float:right;
	margin:150px 50px 0 0;
	width:600px;
}

.navigation li {
	float:right;
	list-style:none;
}

.navigation li a {
	float:right;
	color:#f2f2f2;
	padding:6px 20px;
	text-decoration:none;
	border-right:10px solid #333
	font-size:10px;
}

.navigation li a:hover {
	background:#333;
	color:#f48f3d;
}

#main_content {
	float:left;
	background:#848484;
	margin:10px 5px 10px 0;
	width:650px;
	height:1500px;
	border-radius:20px;
	box-shadow: 5px 5px 7px #f2f2f2;
}

#main_content p {
	line-height:22px;
	margin-top:10px;
	padding:20px;
}

#sidebar {
	float:right;
	background:#848484;
	margin:10px 0 5px 0;
	width:300px;
	height:1500px;
	border-radius:20px;
	box-shadow: 5px 5px 7px #f2f2f2;
}

#sidebar p {
	line-height:22px;
	margin-top:10px;
	padding:20px;
}

#social_media p {
	padding:20px;
}

.sidebar_navigation {
	padding:20px;
}

.sidebar_navigation li {
	list-style:none;`
	margin:10px;
	padding-bottom:10px;
	padding-top:10px;
	border-bottom:1px dotted #333;
}

.sidebar_navigation li a{
	text-decoration:none;
	color:#f2f2f2;
}

.sidebar_navigation li a:hover {
	color:#f48f3d;
}

#sidebar h3 {
	padding-left:20px;
	color:#333;
}

#footer {
	clear:both;
	float:left;
	background:#848484;
	width:100%;
	height:200px;
	margin-bottom:20px;
}

.footer_navigation {
	float:right;
	margin:90px 0 20px 0;
}

.footer_navigation li {
	list-style:none;
	float:right;
	margin-right:20px;
}

.footer_navigation li a {
	text-decoration:none;
	color:#333;
}

.footer_navigation li a:hover {
	color:#fff;
}

h1 {
	font-family:Helvetica,Sans-Serif;
	font-size:30px;
	font-weight:normal;
	margin-bottom:-10px;
	padding:20px;
}

h3 {
	font-family:Helvetica,Sans-Serif;
	font-size:20px;
	font-weight:bold;
	margin-bottom:-10px;
	padding:20px;
}

p.normal {
	font-family:Helvetica,Sans-Serif;
	font-size:14px;
	font-style:normal;
	font-weight:normal;
}

p.underline {
	font-family:Helvetica,Sans-Serif;
	font-size:14px;
	font-style:normal;
	font-weight:normal;
	text-decoration:underline;
}

p.italic {
	font-family:Helvetica,Sans-Serif;
	font-size:14px;
	font-style:italic;
	font-weight:normal;
}

p.bold {
	font-family:Helvetica,Sans-Serif;
	font-size:14px;
	font-style:normal;
	font-weight:bold;
}