@charset "utf-8";
/* CSS Document */
/* Content */
#main-content {
	margin: 0 190px 0 190px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
  	padding: 0 5px 0 5px; /* padding here creates white space "inside the box." */
	zoom: 1; /* this is for IE fix main content will moved to bottom if without this */
}
#main-content ol, ul{
	list-style: inside;
}
/* Sidebar left */
#sidebar-left {
	float: left; 
	width: 150px; /* since this element is floated, a width must be given */
	background: inherit; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 5px 5px 5px; /* top and bottom padding create visual space within this div */
	margin: 0 5px;
	height: 100%;
}

/* Sidebar right */
#sidebar-right {
	float: right; 
	width: 150px; /* since this element is floated, a width must be given */
	background: inherit; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 25px 5px 5px; /* top and bottom padding create visual space within this div */
	margin: 0 5px;
	height: 100%;
}
