
#pageContent{
	padding: 10px;
	color: #000000;
	display: flex;
	position: relative;
}

div.fadablePanel{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
	transition-delay: 0s;
}
div.fadablePanel.visible{
	opacity: 1;
	transition-delay: 0.5s;
}


#mainContainer{
	flex: 1 1 auto;
	display: flex;
}





/*

#messenger{
	display: flex;
	flex-flow: column;
	min-height: 100%;
}
#connecting{
	flex: 0 1 auto;
	line-height: 30px;
	background-color: #888800;
	border: 1px solid #dddd00;
	border-radius: 10px;
	font-size: 18pt;
	padding: 10px;
	color: #ffffff;
}
#chatContainer{
	flex: 1 1 auto;
	display: flex;
	flex-flow: row;
	min-height: 100%;
	background-color: #ffffff;
	border-radius: 10px;
	overflow: hidden;
}
#tabs{
	flex: 0 1 auto;
	background-color: #dddddd;
	width: 400px;
	overflow-y: scroll;
	border-right: 2px solid #333333;
}
#tabs > div{
	display: flex;
	flex-flow: row;
	height: 50px;
	background-color: #eeeeee;
	padding: 5px;
	gap: 5px;
	cursor: pointer;
}
#tabs > div:hover{
	background-color: #ffffff;
}
#tabs > div.active{
	background-color: #ddffdd;
}
#tabs > div.active:hover{
	background-color: #eeffee;
}
#tabs img{
	flex: 0 1 auto;
	width: 50px;
	height: 50px;
	border-radius: 10px;
}
#tabs div.info{
	flex: 1 1 auto;
}
#tabs div.info h2{
	font-size: 16pt;
	padding: 0px;
	margin: 0px;
}
#homePane{
	flex: 1 1 auto;
}
#chatPane{
	flex: 1 1 auto;
	display: flex;
	flex-flow: column;
}
#messages{
	flex: 1 1 auto;
	overflow-y: scroll;
	border-bottom: 2px solid #333333;
}
#messages > div{
	padding: 5px;
}
#messages div.username{
	font-weight: bold;
	margin-bottom: 2px;
}
#sendMessage{
	flex: 0 1 auto;
	height: 100px;
}

*/