html { /*,.layout_container_inside,.layout_container_outside*/
	min-height: 100%;
	height: 100%;
}

.layout_container_inside {
	height: auto; /* auto or 100% */
}

.layout_container_outside {
	height: auto; /* 100% or auto */
}

html>body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	text-align: center; /* For IE positioning the page */
}

.layout_menu,.layout_content,.content_menu,.content_content { /*Comment this style if the content needs to be longer so that the layout_container_inside will grow larger*/
	/*min-height: 500px;
	height: 100%;*/
}

.layout_container_outside,.layout_container_inside { /*,.layout_header,.layout_footer,.layout_content*/
	width: 750px;
}

.layout_container_outside {
	margin: auto; /* For FF positioning the page (0 auto = center, 0 0 0 auto = right, 0 = left) */
	position: relative;
	top: 25%;
	/*position: relative;
	top: 25%;*/
}

.layout_container_inside {
	text-align: left; 
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */

.layout_header,.content_header {
	height: 120px;
	width: 550px;
	float: right;
}

.layout_header {
}

.layout_menu {
	min-height: 450px;
	height: 450px;
	width: 200px;
	float: left;
	display: inline;
	overflow: hidden;
	overflow-x: hidden;
}

.layout_content {
	height: 330px;
	width: 550px;
	float: right;
	display: inline;
}

.layout_footer {
	height: 30px;
	width: 530px;
	padding-left: 10px;
	padding-right: 10px;
	clear: both;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////// */

.content_header {
}

.content_menu { /* Set the width and height minus the padding. */
	height: 390px;
	width: 170px;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	overflow-y: auto;
	overflow-x: auto;
}

.content_content { /* Set the width and height minus the padding. */
	height: 300px;
	width: 520px;
	padding: 15px;
	overflow-y: auto;
	overflow-x: auto;
	float: right;
}

.content_footer { /* Set the width and height minus the padding. The footer is needed for the layout_container_inside to auto size with the content if larger than the screen height. */
}