/* tamaño y forma del panel principal */
div#panel {
   position: relative;
   width:653px;
   height: 400px;
}

/* configuracion de las pestañas */
   ul#tabs {
      position:absolute;
      left: 0px;
      top: 0px;
      margin:0;
      padding:0;
      width: 650px;
      height: 24px;
      z-index: 20;
   }
      ul#tabs li {
         float:left;
         height: 23px;
         padding-left: 8px;
         list-style: none;
         margin-right: 1px;
         background: url(Imagenes/Formas/tabs.png) left -48px;
      }
      ul#tabs li.actual {
         height: 24px;
         background: url(Imagenes/Formas/tabs.png) left -72px;
      }
         ul#tabs li a {
            display: block;
               /* hack para ie6 */
               .display: inline-block;
               /* fin del hack */
            height: 23px;
            line-height: 23px;
            padding-right: 8px;
            outline: 0px none;
            font-family: arial;
            font-size: 10px;
            text-decoration: none;
            color: #494949;
            background: url(Imagenes/Formas/tabs.png) right 0px;
         }

         ul#tabs li.actual a {
            height: 24px;
            line-height: 24px;
            background: url(Imagenes/Formas/tabs.png) right -24px;
            cursor: default;
         }

   /* Configuración de los paneles */
   div#panel #paneles {
	position:absolute;
	left: 0px;
	top: 23px;
	width: 651px;
	height: 375px;
	border: 1px solid #905d00;
	background: #fff;
	overflow: hidden;
	z-index: 10px;
	background-color: #FFFFFF;
   }
      div#panel #paneles div {
         margin:7px;
         width: 636px;
         height: 359px;
         font-family: arial;
         font-size: 12px;
         text-decoration: none;
         color: #000;
         overflow: auto;
   }
