/*------------------ COMMON --------------------*/

.ui-widget {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 10pt;
}
.ui-widget.ui-dialog {
    border-radius: 5px 5px 0 0;
    border: none;
    position: fixed;
    padding: 0px;
    box-shadow: 0px 0px 3px #000;
    overflow: hidden;
    z-index: 1000;
}
.ui-dialog .ui-widget-header {
    border: none;
    background: #333333;
    color: #777;
    font-weight: bold;
    padding: 10px;
    border-radius: 0;
}
.ui-dialog-title {
    font-size: 15px;
    font-weight: bold;
    font-family: sans-serif;
}
.ui-dialog .ui-dialog-titlebar-close {
    right: 10px;
    border: none;
    background: none;
    outline: none;
}
.black_screen {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
	display: none;
}
.ui-dialog .ui-dialog-content {
    padding: 5px;
}
/*------------------ BUTTONS --------------------*/

.float-button {
    position: fixed;
    z-index: 5;
}
.float-button a {
    font-size: 20px;
    background: #444;
    border: 1px solid #222;
    border-radius: 50%;
    padding: 10px 12px;
    font-weight: bold;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.26);
    opacity: 0.7;
    color: #ccc;
}
.go-top {
    bottom: 15px;
    right: 15px;
}
.button-chat {
    bottom: 15px;
    left: 5px;
}

.float-buttons-bar {
    min-width: 35px;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0;
    z-index: 4;
    padding: 10px;
    padding-top: 100px;
    background: #333;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
}
.float-buttons-bar:hover {
    opacity: 1;
}

.float-buttons-bar a {
    margin: 5px 0;
    font-size: 20px;
    background: #444;
    border: 1px solid #222;
    border-radius: 50%;
    padding: 5px;
    font-weight: bold;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.26);
    opacity: 0.7;
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ccc;
    text-shadow: 0px 1px 1px #000;
}
.float-button a:hover, .float-buttons-bar a:hover {
    color: #ffc;
}

/*------------------ CHAT --------------------*/

.chat {
    display: none;
}
.ui-dialog .chat {
    padding: 5px;
}
.chat form {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 0;
    border-top: 1px solid #aaa;
    width: 100%;
    text-align: center;
}	
.chat .msg-box {
    overflow-y: scroll;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 40px;
} 
.chat .msg-box ul {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
.msg-box ul li {
    margin: 5px;
}
.msg-box li span {
    padding: 5px 10px;
    background: #eee;
    border-radius: 10px;
    display: inline-block;
}
li.msg_my {
    text-align: right;
}
.chat input.msg {
    width: 70%;
    border: none;
    outline: none;
    font-size: 12px;
    float: left;
    height: 25px;
    margin-left: 5px;
}
.chat input.sb {
    width: 20%;
    outline: none;
    padding: 6px 0;
    border: none;
    font-size: 11px;
    font-weight: bold;
    color: #333;
    float: right;
    margin-right: 5px;
    height: 25px;
}
.chat li a {
    color: #428bca;
}
.chat .msg_info {
    color: gray;
    font-size: 11px;
    margin-bottom: 3px;
}

/*------------------ TABS --------------------*/

.ui-dialog ul.ui-tabs-nav {
    padding: 0;
    background: #eee;
}
.ui-tabs .ui-tabs-panel {
    padding: 5px;
}