/* 
    Document   : ajax_chat
    Created on : 09.07.2009, 12:45:26
    Author     : Olga
*/
html, body{
	width:100%;
	height:100%;
	overflow:hidden;
}

#layout{
	position:relative;
	width:100%;
	height:100%;
	overflow:auto;
}

.wrapper {
    position:absolute;
    width:100%;
    height: 1%;
    bottom:0px;
    z-index:1;
}

.container {
    background-color:#CCCCCC;
	position:absolute;
	bottom:0px;
    z-index:1;
    width:120px;
    height:16px;
    text-align:center;
}

.button{
    float:right;
    vertical-align:bottom;
    }

.ok_button{
    width:100px;
    padding:0px;
    margin:2px 0px;
    float:right;
    background-color:#CCCCCC;
}

.chatwindow {
    background-color:#FFFFFF;
	position:absolute;
	bottom:18px;
    z-index:1;
    width: 400px;
    max-width:400px;
    max-height:400px;
}

.windowtop{
    background-color:#CCCCCC;
    position:relative;
    top:0px;
    left:0px;
	z-index:1;
    width:auto;
    height:16px;
    text-align:center;
}

.history{
    border-bottom: solid #CCCCCC 3px;
    border-right: solid #CCCCCC 1px;
	overflow:hidden;
}

.response{
    border-bottom: solid #CCCCCC 3px;
    border-right: solid #CCCCCC 1px;
    border-bottom: 0px;
	overflow:hidden;
}

