/**
* @package jQuery Chat
*/

* {
    margin: 0;
    padding: 0;
}

a:link {
    color: #5db5ea;
}

a:visited {
    color: #5db5ea;
}

a:hover {
    color: #a3d47a;
}

a:active {
    color: #d0cec0;
}

body {
    border: 0px solid #ccc;
    background-color: #f5f5f5;
    height:100%;
}

#page-wrap {
    width: 500px;
    margin: 0px auto;
    position: relative;
}

#closer {
    position: absolute;
    margin: 0px auto;
    bottom: 2px;
    left:45%;
    height:12px;
    color: #7e7e7e;
    padding: 4px 8px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 8px;
    font-weight: bold;
    background: url(images/user_grad.png) repeat-x 0 12px;
    border: 1px solid #c6c6c6;
    font-size: 11px;
    cursor:pointer;
}

#chat-area {
    height: 300px;
    border: 1px solid #d2d2d2;
    overflow: auto;
    padding: 6px;
    background: white;
    position: relative;
    left: 5px;
    top: 10px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 10px;
}

/*#chat-area span {
    position: relative;
    float: left;
    top: -6px;
    color: #7e7e7e;
    padding: 4px 8px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 8px;
    margin: 0 5px 0 0;
    font-weight: bold;
    background: url(images/user_grad.png) repeat-x 0 12px;
    border: 1px solid #c6c6c6;
    font-size: 11px;
}*/

#chat-area span {
    position: relative;
    float: left;
    color: #7e7e7e;
    font-size: 10px;
    font-weight: bold;
}

#chat-area p {
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
    font-size: .92em;
    color: #4c4c4c;
}

#logo {
    background: white url(images/logo.png) no-repeat 4px -9px;
    height: 306px;
    width: 136px;
    float: left;
    padding: 3px;
    position: relative;
    top: 10px;
    border: 1px solid #d2d2d2;
    -moz-border-radius: 6px;
    -webkit-border-radius: 10px;
}

#user-area {
    overflow: auto;
    font-size: 11px;
    width: 106px;
    position: relative;
    color: #7eaf55;
    text-align: left;
    line-height: 15px;
    height: 234px;
    top: 48px;
    padding: 7px 0 0 8px;
    font-weight: bold;
}

.member {
    overflow: auto;
    font-size: 11px;
    position: relative;
    text-align: left;
    line-height: 24px;
    top: 0;
    padding: 3px 8px;
    font-weight: bold;
    background: url(images/user_grad.png) repeat 0 -33px !important;
    -moz-border-radius: 3px;
    -webkit-border-radius: 5px;
    border: 1px solid #d9d9d9;
    text-decoration: none;
}

#send-message-area p {
    color: #7e7e7e;
    font-size: 1em;
    float: left;
    position: relative;
    left: 9px;
    top: 1px;
    font-weight: bold;
}

#smiley {
    float: left;
    position: relative;
    top: 25px;
    left: -52px;
    background: none no-repeat;
    width: 90px;
    height: 25px;
}

#sendie {
    width: 415px;
    padding: 3px;
    height: 40px;
    float: left;
    position: relative;
    left: 75px;
    background-color: #eee;
    -moz-border-radius: 5px;
    -webkit-border-radius: 8px;
    border: 1px solid #dcdcdc;
    overflow: auto;
    font: .96em / 22px "Lucida Grande", Sans-Serif;
    color: #555;
    top: -25px;
}

#message-frame {
    border: 1px solid #d2d2d2;
    width: 503px;
    font: 12px "Lucida Grande", Sans-Serif;
    height: 57px;
    top: 16px;
    position: relative;
    float: left;
    background-color: white;
    -moz-border-radius: 6px;
    -webkit-border-radius: 10px;
}

#scroll-toggle {
    position:fixed;
    top: 15px;
    right:30px;
    height: 10px;
    width: 10px;
    border: 1px solid #dcdcdc;
    background-color: transparent;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}


