
/* Estilo del shoutbox "mensajitos" */
#asb_container {
	position: relative;
	margin-bottom: 6px;
	margin-right: 1px;
	border: 2px solid #666;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	background: #f9f9f9;
}

/* Cabecera, efecto metalizado.*/
#asb_container .asb_header {
	position: relative;
	padding: 5px 35px 5px;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 2px solid #9C3;
	-moz-border-radius:5px 5px 0px 0px;
	-webkit-border-radius:5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
	font-size: 14px;
	color: #fff;
	background: url(../images/background.png) repeat-y 0px 0px;
}

/* Efecto metalizado nombre del titulo.*/
#asb_container .asb_shadowtext {
	position: absolute;
	top: 4px;
	left: -1px;
	padding: 0px 35px 6px;
	font-size: 14px;
	color: #000;
	background: url(../images/speech_bubbles.png) no-repeat 3px 0px;
}

/* Indicador de conexion del chat*/
#asb_container .asb_divstatus {
	position: absolute;
	right: 3px;
	top: 31px;
	width: 24px;
	height: 24px;
	background: url(../images/No-Signal.png) no-repeat top left;
}

/* Nombre de usuario*/
#asb_container .asb_username {
	position: relative;
	height: 12px;
	padding: 5px;
	margin: 3px;
	font-size: 10px;
	font-family: Tahoma, Geneva, sans-serif;
	border-bottom: 1px solid #bbb;
	color:  #000;
}

/* Spining de recarga/espera */
#asb_container .asb_waiting {
	position: absolute;
	display: none;
	top: 200px;
	left: 70px;
	width: 32px;
	height: 32px;
	background: url(../images/waiting.gif) no-repeat 0px 0px;
	z-index: 10;
}
/* Div del contenido del chat */
#asb_container .asb_divchat {
	position: relative;
	margin: 0px 7px 0px 3px;
	width: 190px;
	height: 280px; 
	overflow: hidden;
}
/* Configuración del editor y formulario */
#asb_container .asb_divmenu {
	position: relative;
	padding: 3px 0px 0px;
	margin: 5px;
	
}
/* Configuración del formulario */
#asb_container .asb_divmenu form {
	margin: 0px;
	padding: 0px;
}
/* Caja Input por si el editor no funciona */
#asb_container .asb_input {
	position: relative;
	padding: 3px;
	width: 96%;
	height:25px;
	background: #EEEEEE;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	border: 1px solid #CCCCCC;
	border-top: 2px solid #CCCCCC;	
}

/* Estilos del contenido de los mensajes.*/
#asb_container .asb_chat_text {
	position: relative;
	margin: 2px;
	padding: 15px 5px 18px 5px;
	font-size: 12px;
	font-family: Tahoma, Geneva, sans-serif;
	border: 1px solid #DDD;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	overflow: hidden;
}

/* Nombre del usuario del mensaje */
#asb_container .asb_chat_name {
	position: absolute;
	top: 2px;
	left: 3px;
	font-size: 10px;
	font-weight:bold;
	color: #9C3;
}

/* Avatar del usuario */
#asb_container .asb_chat_avatar {
	position: relative;
	margin-top: -10px;
	float:right;
	width: 32px;
	height: 32px;
}
/* X de borrado para los admin. */
#asb_container .asb_chat_delete {
	position: absolute;
	top: 0px;
	right: 3px;
	font-size: 10px;
	font-weight:bold;
	color: #F00;
	z-index:2;
}

#asb_container .asb_chat_ip {
	position: absolute;
	bottom: 2px;
	left: 3px;
	font-size: 9px;
	color: #000;
}

/* Tiempo del mensaje */
#asb_container .asb_chat_dayago {
	position: absolute;
	bottom: 2px;
	right: 3px;
	font-size: 9px;
	color: #000;
}

/* Pien del chat, efecto metal */
#asb_container .asb_foot {
	position: relative;
	height: 10px;
	border-top: 2px solid #9C3;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	
	-moz-border-radius:0px 0px 5px 5px;
	-webkit-border-radius:0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	background: url(../images/background.png) repeat-y 0px 0px;
}