/*
body {
	margin: 0;
	background-color: #F0F8FF;
}
*/

/*
#slidePanelOpenButton {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	margin-top: 10px;
	right: 10px;
	cursor: default;
}
*/

#slidePanel {
	position: fixed;
	margin-right: -250px;
	right: 0px;
	top: 0px;
	z-index: 999;
	width: 250px;
	height: 100%;
	background-color: #2A3F54;
	transition: 0.5s;
}

#slidePanelCloseButton {
	position: absolute;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	left: 10px;
	top: 15px;
	color: #E5E5E5;
	cursor: default;
	transition: 0.5s;
}

#slidePanelCloseButton:hover {
	color: #FFB90F;
}

#unreadMessages {
	position: absolute;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	right: 10px;
	top: 15px;
	color: #F0F8FF;
	cursor: default;
	transition: 0.5s;
}

#unreadMessages:hover {
	color: #FFB90F;
}

/* Begin Chat List */

#chatList {
	position: absolute;
	top: 50px;
	height: calc(100% - 50px);
	overflow: auto;
}

.chatItem {
	position: relative;
	width: 250px;
	height: 64px;
	color: #F0F8FF;
	cursor: default;
	transition: 0.5s;
}

.chatItem:hover {
	color: #FFB90F;
	transition: 0.5s;
}

#chatItemPhoto {
	position: absolute;
	top: 5px;
	left: 10px;
	width: 50px;
	height: 50px;
	border-style: solid;
	border-width: 2px;
	border-radius: 50%;
}

.chatItemUnreadMessages {
	position: absolute;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	text-align: right;
	top: 5px;
	right: 10px;
}

#chatItemName {
	position: absolute;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	top: 12px;
	left: 74px;
	width: 136px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chatItemMessage {
	position: absolute;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	top: 32px;
	left: 74px;
	width: 136px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* End Chat List */
/* Begin Chat Window */

#chatWindow {
	position: fixed;
	right: 0px;
	bottom: 0px;
	margin-right: 250px;
	width: 500px;
	height: 500px;
	z-index: 999;
	border-radius: 10px;
	background-color: #E6E9ED;
	transition: 0.5s;
}

#chatWindowCloseButton {
	position: absolute;
	font-size: 30px;
	left: 20px;
	bottom: 450px;
	width: 30px;
	color: #36648B;
	cursor: default;
	transition: 0.5s;
}

#chatWindowCloseButton:hover {
	color: #FFB90F;
}

#chatUserName {
	position: absolute;
	font-size: 20px;
	left: 55px;
	bottom: 458px;
	color: #36648B;
	cursor: default;
	transition: 0.5s;
}

#chatUserName:hover {
	color: #FFB90F;
}

#chatContent {
	position: absolute;
	width: 500px;
	height: 400px;
	bottom: 50px;
	overflow: auto;
}

#appChatContent {
	position: absolute;
	width: 100%;
	height: calc(100% - 60px);
	bottom: 40px;
	overflow: auto;
}

#inputField {
	position: absolute;
	padding: 0px;
	padding-left: 5px;
	padding-right: 5px;
	left: 10px;
	bottom: 10px;
	width: 430px;
	height: 30px;
	border: none;
	border-radius: 5px;
	outline: none;
	background-color: #36648B;
	color: #F0F8FF;
	transition: 0.5s;
}

#inputField:hover {
	background-color: #4F94CD;
	transition: 0.5s;
}

#inputField:focus {
	background-color: #4F94CD;
	transition: 0.5s;
}

#appInputField {
	position: absolute;
	padding: 0px;
	padding-left: 5px;
	padding-right: 5px;
	left: 10px;
	bottom: 10px;
	width: calc(100% - 90px);
	height: 20px;
	border: none;
	border-radius: 5px;
	outline: none;
	background-color: #36648B;
	color: #F0F8FF;
	transition: 0.5s;
}

#appInputField:hover {
	background-color: #4F94CD;
	transition: 0.5s;
}

#appInputField:focus {
	background-color: #4F94CD;
	transition: 0.5s;
}

#inputButton {
	position: absolute;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 0px;
	left: 430px;
	bottom: 5px;
	width: 70px;
	height: 30px;
	border: none;
	border-radius: 5px;
	background-color: transparent;
	color: #36648B;
	transition: 0.5s;
}

#inputButton:hover {
	color: #FFB90F;
	transition: 0.5s;
}

#appInputButton {
	position: absolute;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 0px;
	left: calc(100% - 60px);
	bottom: 10px;
	/* Por alguma razão, calc(100% - 450px) não resulta! */
	width: calc(0% + 50px);
	height: 20px;
	border: none;
	border-radius: 5px;
	background-color: #36648B;
	color: #F0F8FF;
	transition: 0.5s;
}

#appInputButton:hover {
	background: #FFB90F;
	transition: 0.5s;
}

/* End Chat Window */

#chatWritingAnimation {
	margin-left: 42px;
	width: 25px;
	height: 25px;
}
