/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

*{
margin: 0px;
padding: 0px;
}
h1 {
font: bold 20px verdana, sans-serif;
} 
h2 {
font: bold 14px verdana, sans-serif;
}

header, section, footer, aside, nav, article, figure, figcaption,
hgroup{
display: block;
}
body {
text-align: center;
}

#agrupar {
width: 960px;
margin: 15px auto;
text-align: left;
}

#cabecera {
background: #FFFBB9;
border: 1px solid #999999;
padding: 20px;
}

#menu {
background: #CCCCCC;
padding: 5px 15px;
} 
#menu li {
display: inline-block;
list-style: none;
padding: 5px;
font: bold 14px verdana, sans-serif;
}
#seccion {
float: left;
width: 660px;
margin: 20px;
} 
#columna {
float: left;
width: 220px;
margin: 20px 0px;
padding: 20px;
background: #CCCCCC;
}

#pie {
clear: both;
text-align: center;
padding: 20px;
border-top: 2px solid #999999;
border-bottom: 2px solid #999999;
}

article {
background: #FFFBCC;
border: 1px solid #999999;
padding: 20px;
margin-bottom: 15px;
} 

article footer {
text-align: right;
font: bold 10px verdana, sans-serif;
} 

time {
color: #999999;
} 

figcaption {
font: italic 14px verdana, sans-serif;
text-align: center;
}

div {
width: 100px;
margin: 20px;
padding: 10px;
border: 1px solid #000000;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

/*p { font-size: 20px }
#texto1 { font-size: 10px }
.texto1 { font-size: 50px }*/