/* FIXME: font sizes are in pixels here */

.example-base {
    color: #333;
    font-family: "Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}
#presenceDiv {
	width:200px;
}
.hide {
    display: none;
}
.l-demo-container {
    margin: 22px 10px 10px;
    width: 500px;
}
.example-chat {
    background-color: #dfe3ea;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #666;
    font-family: "Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    font-size: 18px;
    line-height: 22px;
    overflow: auto;
    padding: 0;
}
.example-chat header {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 1px 2px rgba(0, 0, 0, 0.1);
    color: #999;
    font-size: 16px;
		font-weight:bold;
    line-height: 24px;
    text-align: center;
}
.example-chat input {
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: normal;
    height: 30px;
    outline: medium none;
    padding: 0 10px;
    width: 100%;
}
.example-chat .example-chat-toolbar {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    position: relative;
}
.example-chat .example-chat-toolbar label {
    color: #999;
    font-size: 14px;
    left: 20px;
    line-height: 32px;
    position: absolute;
    text-transform: uppercase;
    top: 0px;
    z-index: 1;
}
.example-chat .example-chat-toolbar input {
    border: 1px solid #fff;
    box-shadow: none;
    color: #999;
    padding-left: 100px;
}
.example-chat .example-chat-toolbar input:active, .example-chat .example-chat-toolbar input:focus {
    border: 1px solid #fff;
    color: #1d9dff;
}
.example-chat ul {
    height: 200px;
    list-style: outside none none;
    margin: 0;
    overflow: auto;
    padding: 20px;
}
.example-chat ul li {
    line-height: 24px;
    margin-bottom: 10px;
}
.example-chat ul li:last-child {
    margin: 0;
}
.example-chat ul .example-chat-username {
    margin-right: 10px;
}
.example-chat footer {
    display: block;
    padding: 10px;
}
.example-chat footer input {
    border: 1px solid #ced3db;
    height: 40px;
}

