/* =======================================================
   ESTILOS BASE Y TEMA MASALA (APROXIMACIÓN)
   REEMPLAZA TODOS LOS ARCHIVOS EXTERNOS DE TYPEPAD
   ======================================================= */
   
/* Reset CSS Básico para consistencia de navegadores */
html, body, div, span, h1, h2, h3, p, a, ul, ol, li, form, fieldset, table, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    box-sizing: border-box; 
}

/* Cuerpo de la página y TIPOGRAFÍA BASE */
body {
    font-family: Arial, Helvetica, sans-serif; 
    line-height: 1.5;
    color: #333333; 
    background-color: #FFFFAA; /* Fondo amarillo claro solicitado */
}

/* 1. Contenedor Principal: Fija el ancho y centra la página */
#container {
    width: 960px; /* Ancho total */
    margin: 0 auto;
    padding: 20px; 
    background-color: #FFFFFF; /* Contenido principal blanco para contraste */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}

/* 2. Estructura de Columnas: Dos columnas (Sidebar Izquierda) */
#alpha {
    float: left;
    width: 250px; /* Ancho de la barra lateral */
}
#beta {
    width: 670px; /* ANCHO CORREGIDO: 960 total - 250 alpha - 20 padding alpha - 20 padding beta = 670 */
    float: left;
    padding-left: 20px; /* Espacio entre el sidebar (#alpha) y el contenido principal (#beta) */
}

/* Clearfix para el contenedor */
#container:after {
    content: "";
    display: table;
    clear: both;
}

/* =======================================================
   ESTILOS DE ELEMENTOS COMUNES Y WIDGETS
   ======================================================= */

/* Cabecera del sitio (usualmente donde va el título) */
#header {
    margin-bottom: 30px;
    padding-bottom: 10px;
}

/* Estilos de Entradas de Blog */
.entry-header { margin-bottom: 10px; }
.entry-header h3.entry-title {
    font-size: 1.8em;
    color: #000000;
}
.entry-content {
    margin-bottom: 25px;
}

/* Estilos de los Módulos/Widgets de la Barra Lateral (#alpha) */
.module {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    border-radius: 3px;
}
.module-header h4 {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #cccccc; 
}

/* Listas (Archivos, Categorías) */
.module-content ul {
    list-style: none;
    padding-left: 0;
}
.module-content li {
    padding: 5px 0;
    border-bottom: 1px dashed #e9e9e9;
}
.module-content li:last-child {
    border-bottom: none;
}

/* Enlaces */
a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Estilo original de Typelist (Books) */
.typelist-thumbnailed .typelist-thumbnail img { width: 100px; }

/* *** NUEVO ESTILO: IMÁGENES RESPONSIVAS *** */
img {
    max-width: 100%; 
    height: auto;    
    display: block;  
}