/* style sheets */
.ui-chatbox {
    position: fixed;
    bottom:0;
    padding: 2px;
    background:  #CCCCCC;
}

.ui-chatbox-titlebar {
    padding: 3px;
    height: 30px;
    cursor: pointer;
	text-align:left;
	font-size: 18px !important;
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif !important;
	vertical-align: middle; 
}

.ui-chatbox-content {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.ui-chatbox-log {
    padding: 3px;
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FFFFFF;
}

.ui-chatbox-input {
    padding: 3px;
    border-top: 1px solid grey;
    overflow: hidden;
}

.ui-chatbox-input-box {
    margin: 5px;
    border: 2px solid lightgrey;/* #6699FF */
    padding: 2px;
    height: 50px;
	resize: none;
}

.ui-chatbox-icon {
    float: right;
}

.ui-chatbox-input-focus {
    border-color: #6699FF;
}

.ui-chatbox-msg {
    margin-top: 10px;
    float: left;
    clear: both;
    /* Source: http://snipplr.com/view/10979/css-cross-browser-word-wrap */
    white-space: pre-wrap;      /* CSS3 */
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: -pre-wrap;     /* Opera <7 */
    white-space: -o-pre-wrap;   /* Opera 7 */
    word-wrap: break-word;      /* IE */
	font-size: 18px !important;
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif !important;
}

.ui-chatbox-quick-button {
    clear: both;
	display: block;
	text-align: center;
}

.speech-bubble-question {
	position: relative;
	background: #00aabb;
	border-radius: .4em;
	display: inline-block;
	margin:5px;
}

.speech-bubble-answer {
	position: relative;
	background: #c0c0c0;
	border-radius: .4em;
	float:right;
	display: inline-block;
	margin:5px;
}
.speech-button-answer {
	background: #c0c0c0;
	border-radius: .4em;
	margin:5px;
	background-color: white;
}
	

#ruler { visibility: hidden; white-space: nowrap; }