* {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	
	/*------------------------------------------------
		las declaraciones anteriores se resumen en:
		margin: 0;
		padding: 0;
	------------------------------------------------*/
}
body{
	/*-----------------------------
		Propiedades de fondo 
	-----------------------------*/

	background-color: #eeeeee;
   background-image: url(image.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-attachment: fixed;
	
	font-size: 85%;
	text-align:center;
}
#wrap{
	background-color: rgb(255,255,255); /* equivalente al valor hexadecimal #FFF */
	text-align:left;
	width: 35em;
	
	/*--------------------------
		Propiedades de margen 
	--------------------------*/
	margin-top: 2em;
	margin-right: auto;
	margin-bottom: 2em;
	margin-left: auto;

	/*------------------------------------------------
		las 4 declaraciones anteriores equivalen a: 
		margin: 2em auto; 
	------------------------------------------------*/
}
.content{
	/*-------------------------------
		Propiedades de relleno
	-------------------------------*/

	padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	
	/*----------------------------------------------
		las 4 declaraciones anteriores equivalen a:
		padding: 1em;
	-----------------------------------------------*/
	
	/*-------------------------------
		Propiedades de las fuentes
	-------------------------------*/

	font-family: Verdana, sans-serif;
	font-size: 0.85em;
	line-height:1.45em;
	font-weight: bold;
	font-style: normal;
	font-variant: small-caps;

	/*---------------------------------------------------------------------
		las 6 declaraciones anteriores equivalen a:
		font: normal small-caps bold 0.85em/1.45em Verdana, sans-serif;
	---------------------------------------------------------------------*/
}
#left_column{
	color: #333;
	width: 22em;
	background-color: #ffffff;
	float: left;
}
#right_column{
	float: right;
	width: 8em; 
	
	border-left-width: 1px;
	border-left-style: dashed;
	border-left-color: #666666;
	
	/*-----------------------------------------------------------
		las 3 declaraciones anteriores se pueden reducir en 1
		border-left: 1px solid #666;
	-----------------------------------------------------------*/
	
	background-color: #112233; 
	color: #ffffff;
}
#footer{
	color: #333333;
	clear: both;
	background-color: #cccccc;
}
#wrap{
	/*----------------------------------
		Propiedades de borde
	-----------------------------------*/
	/*--------------------------------------------------------- 
		Las siguientes declaraciones se pueden reducir en 1
		border: 1px solid #666;
	---------------------------------------------------------*/

	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
}
