/* ===============================
   Author: {YOUR NAME HERE}
   Date:   {DATE HERE}

   Notes:
   Hand coded for Build a Website
   from Scratch with HTML & CSS
   by Brad Hussey

   Colour Palette:
   ---------------
   Light Cream:		#f2f3ee
   Orange:			#d17f38
   Yellow:			#e8c04f
   Brown:			#4b2707
   =============================== */

/* General */

#contenuto {
   width: 75%;
   margin: 0 auto;
}

/* Typography */

h1, h2, h3, p, span {
   font-family: "helvetica neue", arial, sans-serif;
   font-weight: 400;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizelegibility;
}

h1 {
   font-size: 21px;
   font-weight: bolder;
}

h2 {
   font-size: 18px;
   font-weight: bold;
}

h3 {
   font-size: 18px;
   font-weight: normal;
}

p {
  font-weight: 400;
}



/* Header */



/* Hero */



/* The Whole Story */



/* News & Events */



/* Footer */



/* Force Elements to Self Clear its Children: http://css-tricks.com/snippets/css/clear-fix/ */

.clearfix:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
	}
* html .group             { zoom: 1; } /* IE6 */
*:first-child+html .group { zoom: 1; } /* IE7 */
