@charset "utf-8";

div#content{
	background: url(../images/sidebar180.gif) top left repeat-y;
	clear: both;	
}

aside {
	float: left;
	width: 180px;
/*	background: #EADCAE;
	background: url(../images/sidebar180.gif) top left repeat-y;*/
	padding: 10px 0;
}

section {
	padding: 10px 0;
	width: 780px;
	float: left;
}

aside nav {
	height: 100%;
	
	}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
aside nav ul {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #000; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	padding: 0px;
	text-align:center;
}

aside nav ul li {
	border-bottom: 1px solid #000; /* this creates the button separation */
}

aside nav ul a:link, aside nav ul a:visited {
	color: #000000;	
}

aside nav ul a, aside nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 170px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;

	background: -moz-linear-gradient(top,  #AED75B 0%, #8BB82D 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#AED75B), color-stop(100%,#8BB82D)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #AED75B 0%,#8BB82D 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #AED75B 0%,#8BB82D 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #AED75B 0%,#8BB82D 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #AED75B 0%,#8BB82D 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#AED75B', endColorstr='#8BB82D',GradientType=0 ); /* IE6-9 */
}

aside nav ul a:hover, aside nav ul a:active, aside nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	background: -moz-linear-gradient(top,  #8BB82D 0%, #AED75B 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8BB82D), color-stop(100%,#AED75B)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #8BB82D 0%,#AED75B 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #8BB82D 0%,#AED75B 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #8BB82D 0%,#AED75B 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #8BB82D 0%,#AED75B 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8BB82D', endColorstr='#AED75B',GradientType=0 ); /* IE6-9 */

	color: #FFF;
}

p.clearfix { 
	clear: both;
	height: 0;		/* only necessary for IE */
	margin: 0;
	padding: 0;

	}