/* tamaño y forma del panel principal */
div#panel {
	position: relative;
	width:240px;
	height: 400px;
}

/* configuracion de las pestañas */
ul#tabs {
	position:absolute;
	left: 0px;
	top: 0px;
	margin:0;
	padding:0;
	width: 396px;
	height: 24px;
	z-index: 20;
}
	ul#tabs li {
		float:left;
		height: 28px;
		padding-left: 11px;
		list-style: none;
		margin-right: 2px;
		background: url(../fondo/tabs.png) left -58px;
	}
	ul#tabs li.actual {
		height: 28px;
		background: url(../fondo/tabs.png) left -88px;
	}
		ul#tabs li a {
			display: block;
				/* hack para ie6 */
				.display: inline-block;
				/* fin del hack */
			height: 29px;
			line-height: 29px;
			padding-right: 36px;
			outline: 0px none;
			font-family: arial;
			font-size: 12px;
			text-decoration: none;
			color: #000;
			background: url(../fondo/tabs.png) right 0px;
		}
		
	/*posiscion de texto*/
		ul#tabs li.actual a {
			height: 28px;
			line-height: 28px;
			background: url(../fondo/tabs.png) right -29px;
			cursor: default;	
		}

/* Configuración de los paneles */
div#panel #paneles {
	position:absolute;
	left: 0px;
	top: 27px;
	width: 245px;
	height: 400px;
	border: 1px solid #91a7b4;
	background: #fff;
	overflow: hidden;
	z-index: 10px;
}
	div#panel #paneles div {

		margin-left:3px;
		margin-top:6px;
		width: 378px;
		height: 400px;
		font-family: arial;
		font-size: 12px;
		text-decoration: none;
		color: #000;
		overflow: auto;
	}
