@charset "utf-8";
/* CSS Document */

/* the reset selector */
* {margin: 0;	padding: 0; }

#nav_bar ul {
	list-style: none;
	padding: 0.5em 0;			/* padding above and below li element */
	background-color: green;	
}

#nav_bar li {
	display: inline;	
}

#nav_bar a {
	padding-top: 0.5em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 0.5em;		/* padding around <a> elements */
	text-decoration: none;
	color: white;
	font-weight: bold;
	border-right: 2px solid white;
}

#nav_bar a.current {
	color: yellow;	
}

body {
	width: 964px;
	background-color: white;
	margin: 15px auto;
	border: 1px solid black;	
}

h1 {
	padding: 10px;	
}

header {
	border-bottom: 2px solid #ef9c00;
	background-image: -webkit-linear-gradient(-35deg, green 0%, white 60%, white 78%, green 100%);
	background-image: -moz-linear-gradient(right, white 58%, green 100%);		/* for Mozilla Firefox browsers */
}

#welcome {
	clear: both;
	padding-top: 20px;	
}

#sidebarA {
	width: 180px;
	height: 400px;		/* to give the sidebar some height for its border */
	float: left;
	border-right: 2px solid #ef9c00;	
}

section {
	width: 600px;
	float: left;	
}

#sidebarB {
	width: 180px;
	height: 400px;		/* to give the sidebar some height for its border */
	float: right;
	border-left: 2px solid #ef9c00;	
}

footer {
	clear: both;
	border-top: 2px solid #ef9c00;	
}

#logo {
	margin-left: 600px;
	margin-right: 1em;
}

