body {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-align: center;
    overflow-y: scroll;
    color: #333;
    letter-spacing: 1px;
    background-color: #fff;
}
    
header {
    padding: 10px 20px;
    margin-bottom: 10px;
}

#logo {
    float: left;
    line-height: 20px;
    font-size: 14px;
    text-decoration: none;
    color: #2c3e50;
}

#links_container {
    float: right;
}

#links_container a {
    font-size: 11px;
    line-height: 20px;
    margin-left: 15px;
    text-decoration: none;
    color: #2c3e50;
}

#links_container a:visited {
    color: #2c3e50;
}

#links_container a:hover {
    color: lime;
}

#chatroom {
	width: 930px;
	margin: auto;
	border-radius: 10px;
}

#chat_container {
	display: inline-block;
	width: 600px;
	vertical-align: top;
	padding: 24px;
	padding-top: 18px;
	background-color: #fff;
	background-color: #3498db;
	border-radius: 10px;
}

#user_form_container {
	width: 100%;
	padding-bottom: 10px;
	text-align: center; 
}

#outgoing_message_container {
	float: left;
	width: 75%;
}

#outgoing_message {
	width: 100%;
	padding: 3px 5px;
	font-size: 16px;
	height: 28px;
	border: none;
}

#messages {
	padding: 20px;
	text-align: left;
	height: 450px;
	box-shadow: 0 0 2px rgba(0,0,0,0.15);
	background-color: #fff;
	overflow-y: scroll;
	white-space: -pre-wrap; 
	white-space: -o-pre-wrap; 
	word-wrap: break-word; 
}

li {
	line-height: 22px;
	padding-bottom: 8px;
}

#messages h3 {
	display: inline-block;
	margin-right: 8px;
	color: #3498db;
	font-size: 13px;
}

#participants_container {
	display: inline-block;
	vertical-align: top;
	width: 250px;
	background-color: #fff;
}

#name_container {
	padding: 20px 5px;
	background-color: #fff;
	border: 5px solid #3498db;
	border-radius: 10px 10px 0 0;
	color: #2c3e50;
	font-size: 13px;
}

#name_container p {
	font-size: 9px;
	line-height: 15px
}

#name_container input {
	margin-top: 8px;
	font-size: 16px;
	text-align: center;
	color: #2c3e50;
	border: none;
	border-bottom: 1px solid #2c3e50;
}

#peeps_container {
	border: 5px solid #3498db;
	border-radius: 0 0 10px 10px;
	border-top: none;
	white-space: -pre-wrap; 
	white-space: -o-pre-wrap; 
	word-wrap: break-word; 
}

#participants_container h2 {
	margin-bottom: 5px;
	font-size: 13px;
	line-height: 28px;
	color: white;
	background-color: #3498db;
}

#participants_container li {
	padding: 3px 10px;
	font-size: 13px;
	text-align: left;	
}

.btn {
    border: none;
    float: right;
    width: 20%;
    height: 34px;
    padding: 0;
    font-family: Arial, sans-serif;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    background-color: #ff6c00;
    color: #FFF;
    font-size: 16px;
    line-height: 34px;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 1px 1px #cc5600;
    border-bottom: 1px solid #cc5600;
    border-radius: 3px;
}

.btn:active {
    background-color: #e66100;
    border-top: 1px solid #ff6c00;
    border-bottom: none;
    box-shadow: 0 0 1px rgba(0,0,0,0.5) inset;              
}

.clear {
    clear: both;
}