@charset "utf-8";
/* INFO Essential CSS for the grid layout */

/* NOTE IE7 and older explorers don't know anything about CSS-tables,
		so we use a CSS hack to exclude them. */
*>/**/.Grid {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: table;
	width: 100%;
	height: 100%;
	z-index: -10;
}
/* NOTE This is the only block IE7- should read */
.Grid>.Row, .Grid>.Column, .Grid>.Row>.Column {
	height: 0.1%; /* NOTE: Forces child-margins inside the box */
	position: relative;
}
.Grid>/**/.Row {
	display: table-row;
	height: 1px;
}
.Grid>/**/.Row.Expand {
	height: auto;
}
.Grid>/**/.Column, .Grid>/**/.Row>.Column {
	display: table-cell;
	height: auto; /* NOTE Just to reset the IE7 fix */
	width: 1px;
}
.Grid>/**/.FooterColumn, .Grid>/**/.Row>.FooterColumn {
	display: table-cell;
	height: auto; /* NOTE Just to reset the IE7 fix */
	width: 16%;
	vertical-align: top;
	padding-bottom: 10px;
}
.Grid>/**/.Column.Expand, .Grid>/**/.Row>.Column.Expand {
	width: auto;
}

/* INFO Optional CSS for a sticky footer */

html {
	overflow-y: scroll;
}

html, body {
	height: 100%;
}

/* INFO Some other CSS for the look */

html, body {
	margin: 0em;
}	

body>.Grid {
	background: #fff;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	width: 90%;
	height: 99%;
	table-layout: fixed; /* NOTE Speed up table rendering */
	border-color: #666;
	border-width: 1px;
	border-radius: 8px;
	box-shadow: 0px 0px 5px 5px #999;
	max-width: 1232px;
	margin-bottom: 10px;
}

#Header {
	padding-top: 0px;
	padding-bottom: 0px;

}
#Main {
	z-index: +1;
}
#Footer {
	vertical-align: top;
	background-image: url(../images/line.png);
	background-repeat: repeat;

}
#LSide {
	padding-right: 10px;
	min-width: 20%;
}
#Content {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: left;


}
#RSide {
	width:150pt;
}
