html {
	height: 100%;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}
body {
	height: 100%;
	width: 100%;
	margin: 0px;
	box-sizing: border-box;
	overflow: hidden;
	position: fixed;
	font-family: 'Roboto Slab', serif;
}
a {
	text-decoration: none;
	color: #0033cc;
	transition: 0.3s;
}
a:hover {
	color: #3399ff;
}
h1 {
	margin: 0px;
	padding-bottom: 10px;
}
div {
	box-sizing: border-box;
	width: 70%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	padding: 5px;
	margin: auto;
	margin-bottom: 10px;
}
div.message {
	width: 94%;
}
div.message_text {
	width: 95%;
}
div.message_user {
	height: 3.2rem;
	width: 3.2rem;
	display: inline-block;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
	margin-right: 1%;
	margin-left: 2.5%;
}
div.message_time {
	width: 74%;
	display: inline-block;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
}
div:hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

form {
	display: block;
	width: 50%;
	margin: auto;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	padding: 10px;
	margin-bottom: 10px;
	text-align: center;
}
table {
	display: inline-block;
	width: auto;
	margin: auto;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	margin-bottom: 10px;
}
form td input {
	width: 100%
}
input[type="submit"] {
	display: block;
	width: auto;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	margin: auto;
	background: #4db8ff;
	color: white;
	border: 2px solid #4db8ff;
	border-radius: 10px;
}
input[type="text"] {
}
#message_form {
	position: absolute;
	top: 5px;
	right: 5px;
	background: white;
	transition: 0.0s;
	border-radius: 10px;
	width: 45%;
}
#message_form label {
	display: none;
}
form#profile_form {
	width: 94%;
	display: inline-block;
	box-shadow: none;
	transition: 0.3s;
	padding: 0px;
	margin-bottom: 0px;
	text-align: left;
}
table {
	display: inline-block;
	width: auto;
	margin: auto;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	margin-bottom: 10px;
}

}

header {
	top: 0;
	width: 100%;
	height: 5%;
	padding-top: 10px;
	padding-left: 10px;
	box-sizing: border-box;
}
main {
	width: 100%;
	height: 90%;
	padding-left: 2%;
	box-sizing: border-box;
	overflow: auto;
}
footer {
	bottom: 0;
	width: 100%;
	height: 5%;
	padding-left: 10px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
}
footer span {
	display: inline-block;
	margin: auto;
	align-self: center;
}
div#profile_info {
	position: relative;
	display: block;
	width: 94%;
}
div#profile_info_form {
	position: relative;
	display: block;
	width: 94%;
	padding-top: 2em;
}
div#profile_photo {
	position: relative;
	display: inline-block;
	width: 110px;
	height: 110px;
}
div#profile_photo_overlay {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	background: white;
	opacity: 50%;
	top: 0%;
	left: 0%;
	cursor: copy
}
span#profile_photo_overlay_span {
	display: inline-block;
	width: 100%;
	top: 45%;
	left: 20%;
	position: absolute;
	cursor: copy
}
div#profile_attributes {
	display: inline-block;
	width: 60%;
	margin-left: 5%;
	word-wrap: break-word;
}
span#editprofile {
	position:absolute;
	top: 5%;
	right: 5%;
}
a#canceleditprofile {
	position:absolute;
	top: 5%;
	left: 5%;
}
