@charset "UTF-8";
/* CSS Document */
/*
Sitio: Los Endebles
Descripción: Endebles CSS
Fecha: abril 2009
Author: Johana Trujillo
/* --------------------------------------------- */
/* INDICE

00 - Elementos estandar en todo el sitio
01 - Tipografía - toda la tipografía para el sitio
02 - Contenedor 
03 - Encabezado - Encabezado del sitio
04 - Menu - menu principal para cada sección
05 - Contenido - div para textos e imagenes
06 - Contacto - div para link contacto
07 - Pie - div para logos
08 - Links - enlaces a secciones principales del sitio
/* --------------------------------------------- */

/* 00 ELEMENTOS ESTANDAR 
/* --------------------------------------------- */
  
  body{ 
  	margin:0; padding:0;
	width:auto; height:auto;
	background-image:url(../images/fondo.gif);
  }
  
 /* 02 CONTENEDOR 
/* --------------------------------------------- */
div#contenedor { /*contiene a todos los divs*/
	width:713px;
	margin:auto;
	height:auto;
	padding:30px;
}

 /* 03 ENCABEZADO
/* --------------------------------------------- */	
div#encabezado {
	height: 100px;
	width: 713px;
	margin:auto; 
}

 /* 04 MENU
/* --------------------------------------------- */	
div#menu-superior {
	height: 40px;
	width: 713px;
	margin:auto;
}

 /* 05 CONTENIDO
/* --------------------------------------------- */	
div#contenido {
	height: auto;
	width: 713px;
	margin:auto;
	background-image:url(../images/patron.gif);
}

 /* 06 CONTACTO
/* --------------------------------------------- */	
div#contacto {
	height: 40px;
	width: 713px;
	background-image:url(../images/patron.jpg);
}
 /* 07 PIE
/* --------------------------------------------- */		
div#pie {
	height: 58px;
	width: 713px;
	margin:auto;
}
td,tr{
	background-image: url(../images/patron.jpg);
}
.imagenes {
	float: left;
	padding:10px;
}


 /* 08 LINKS
/* --------------------------------------------- */	
.links {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 14px;
	font-weight: normal;
	color: #990000;
	text-decoration: none;
	text-align: right;
}
a:link {
	color: #ebdabc;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	text-transform: lowercase;
}
a:visited {
	color: #f0e4cd;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:bold;
	text-transform: lowercase;
}
a:hover {
	color: #e7d2ad;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:300;
	text-decoration:underline;
}



