html,body {
	height: 100%;
	margin: 0;
	padding: 0;
}

#wrapper {
	width: 100%;
	height: 100%;	
	margin: 0 auto;
}

header {
	font: 140% arial, sanserif;
	font-weight: bold;
	color: #CCCCCC;
	display: table;
	width: 100%;
	vertical-align: middle;
	background: #683FD1;
	height: 45px;
}

header p {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

footer {
	font: 55% arial, sanserif;
	color: black;
	width: 100%;
	background: darkgrey;
	height: 25px;
	display: table;
}

footer p {
	display: table-cell;
	vertical-align: middle;
	padding-left: 15px;
}

#content {
	height: 100%;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 45px;
	padding-bottom: 25px;
	margin-top: -45px;
	margin-bottom: -25px;
}

section {
	float: left;
	overflow: auto;
	height: 100%;
}

#left {
	width: 15%;
	background: lightgrey;	
	overflow-x: hidden;
}

#right {
	background: lightgrey;
	width: 20%;
	overflow-x: hidden;
	float: right;
}

#center {
	background: #F1F1F1;
	width: 85%;
}

#center-content{
	padding: 0px 15px 15px 15px;
	font-family: Arial, Helvetica, sans-serif;
}

#center-content h3{
	font-size: 1.10em;
}

#center-content p{
	font-size: 90%;
}

.menu{
	display:table;
	width:100%;
	align-right
}

.menu-item{
	display:table-row;
}

.menu-item a{
	display: table-cell;
	border: 4px solid darkgrey;
	vertical-align: middle;
	text-align: center;	
	border-top: 0;
	color: black;
	text-decoration: none;
}

.menu-item a:hover{
	background-color: #BEBEBE;	
}

.menu-item a p{
	padding: 15px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size:80%;
}

.menu-item a img{
	width:100%;
}

.menu-top{
	border-top: 5px solid darkgrey;
	margin: 0;
	padding: 0;
}

.changePageSelected {
	background-color: #BEBEBE;	
}