#presence-div {
	position: fixed;
	bottom: 0px;
	width: 100%;
	pointer-events: none;
}

.bottom-dock {
	margin: 0 auto;
	max-width: 1200px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	display: none;
}
.bottom-dock .popup {
	float: right;
	display: none;
	padding: 10px;
	background-color: gray;
	border-radius: 10px;
	pointer-events: auto;
}
.bottom-dock .popup td {
	vertical-align: top;
}

.dock-bar {
	float: right;
	clear: both;
	margin-top: 3px;
	background-color: #303030;
	color: white;
	border: 2px outset #606060;
	pointer-events: auto;
}
.dock-bar .my-name {
	margin: 10px 50px 0px 10px;
}
.dock-bar img {
	float: right;
	margin: 5px 5px 0px 0px;
	cursor: pointer;
}

.buddylist-titlebar {
	border-radius: 10px 10px 0px 0px;
	background-color: #303030;
	padding: 7px;
	color: yellow;
	font-weight: bold;
}
.buddy-list {
	width: 220px;
	height: 250px;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: #303030;
	border-radius: 0 0 10px 10px;
}
.buddy-list li {
	padding: 5px;
	background-color: #505050;
	margin: 2px;
	color: white;
	cursor: pointer;
}
.buddy-list img.close-button {
	float: right;
}
.buddy-list li:hover {
	background-color: #585858;
}
.buddy-list li.selected {
	background-color: #707070;
}

.chat-box {
	padding: 10px;
	width: 280px;
	height: 250px;
	background-color: #303030;
	margin-right: 5px;
	display: none;
	color: white;
	position: relative;
	border-radius: 10px 10px 10px 10px;
}
.chat-box .chat-log {
	height: 210px;
	padding: 3px;
	overflow-y: auto;
}
.chat-box .send-message-form {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.chat-box .send-message-form input {
	background-color: #606060;
	border: 3px solid #606060;
	color: white;
}

.phone-button {
	position: fixed;
	right: 0;
	bottom: 25%;
	cursor: pointer;
	opacity: 0.5;
}
.phone-button:hover {
	opacity: 1.0;
}
