/* tamaño y forma del panel principal */
div#panel {
	position: relative;
	width:560px;
	height:350px;
	margin:auto;
}

/* configuracion de las pestañas */
ul#tabs {
	position:absolute;
	left: 0px;
	top: 0px;
	margin:0;
	padding:0;
	width: 540px;
	height: 24px;
	z-index: 20;
}
	ul#tabs li {
		float:left;
		height: 23px;
		padding-left: 8px;
		list-style: none;
		margin-right: 1px;
		background: url('../images/tabs.png') left -48px;
	}
	ul#tabs li.actual {
		height: 24px;
		background: url('../images/tabs.png') left -72px;
	}
		ul#tabs li a {
			display: block !important;
				display: inline-block; /* IE6 */
			height: 23px;
			line-height: 23px;
			padding-right: 8px;
			outline: 0px none;
			font-family: arial;
			font-size: 10px;
			text-decoration: none;
			color: #000;
			background: url('../images/tabs.png') right 0px;
		}
		
		ul#tabs li.actual a {
			height: 24px;
			line-height: 24px;
			background: url('../images/tabs.png') right -24px;
			cursor: default;	
		}

/* Configuración de los paneles */
div#panel #paneles {
	position:absolute;
	left: 0px;
	top: 23px;
	width: 558px;
	/*height: 365px;*/
	border-top: 1px solid #91a7b4;
	background: #fff;
	overflow: hidden;
	z-index: 10;
}
	div#panel #paneles div {
		margin:10px;
		width: 540px;
		/*height: 345px;*/
		font-size: 8pt;
		text-decoration: none;
		
		overflow: auto;
				text-align:justify; 
				color: #666666;
				font-family: 'Arial'; 
				font-size: 8pt;
	}
