/* @group Reset */

/* 
html5doctor.com Reset Stylesheet
v1.4.1 
2010-03-01
Author: Richard Clark - http://richclarkdesign.com
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

:focus {
	outline: 1;
}

article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted #000;
    cursor:help;
}

table {
    border-gridlapse:gridlapse;
    border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* @end */

/* @group Grid layout */

/* @group Layout */

/*

Column: 40 px
Gutter: 20 px

|--------------------------------------------------------PAGE--------------------------------------------------------------------|
|                                                       780 px                                                                   |

|20|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|--40--|20|20|
      |      |         |         |         |         |         |         |         |         |         |         |         |
      |···1··|         |         |         |         |         |         |         |         |         |         |         |     :                         40 px
      |········2·······|         |         |         |         |         |         |         |         |         |         |     :  (40 x 2) + (20 x 1)  = 100 px
      |·············3············|         |         |         |         |         |         |         |         |         |     :  (40 x 3) + (20 x 2)  = 160 px
      |··················4·················|         |         |         |         |         |         |         |         |     :  (40 x 4) + (20 x 3)  = 220 px
      |·······················5······················|         |         |         |         |         |         |         |     :  (40 x 5) + (20 x 4)  = 280 px
      |····························6···························|         |         |         |         |         |         |     :  (40 x 6) + (20 x 5)  = 340 px
      |·································7································|         |         |         |         |         |     :  (40 x 7) + (20 x 6)  = 400 px
      |······································8·····································|         |         |         |         |     :  (40 x 8) + (20 x 7)  = 460 px
      |···········································9··········································|         |         |         |     :  (40 x 9) + (20 x 8)  = 520 px
      |················································10··············································|         |         |     : (40 x 10) + (20 x 9)  = 580 px
      |·····················································11···················································|         |     : (40 x 11) + (20 x 10) = 640 px
      |··························································12························································|     : (40 x 12) + (20 x 11) = 700 px

*/

.col-1, .col-2, .col-3, .col-4, .col-4-sep, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
	float:        left;
	margin-left:  20px;
}

.col-1  { width:  40px; }
.col-2  { width: 100px; }
.col-3  { width: 160px; }
.col-4  { width: 220px; }
.col-5  { width: 280px; }
.col-6  { width: 340px; }
.col-7  { width: 400px; }
.col-8  { width: 460px; }
.col-9  { width: 520px; }
.col-10 { width: 580px; }
.col-11 { width: 640px; }
.col-12 { width: 700px; }

.separador {
	margin-left:  10px;
	padding-left:  9px;
	border-left: 1px solid #ddd;	
}

.primera {
	margin-left:    0;
	clear:       left;
}

img.autosize {
	width: 100%;
}

html {
	background-color: #eee;
}

body {}

#container {
	width:         780px;
    margin-right:   auto;
    margin-left:    auto;
    padding-top:    40px;
    padding-bottom: 40px;
}

#page {
	padding: 40px;
	
	background-color: white;

	-webkit-box-shadow: 0px 5px 15px #aaa;
	-moz-box-shadow:    0px 5px 15px #aaa;
	-o-box-shadow:      0px 5px 15px #aaa;
	box-shadow:         0px 5px 15px #aaa;
}

footer {
	clear: both;
}

.alerta {
	margin-top: 20px;
	margin-bottom: 10px;
	
	background-color: red;
}

.alerta p {
	color: white;
	
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.alerta p:first-child {
	padding-top: 20px;
}

.alerta p:last-child {
	padding-bottom: 20px;
}

/* @end */

/* @group Utils */

.narrow {
	margin-bottom:  0;
	padding-bottom: 0;
}

.align-center {
	text-align: center;
}

.left {
	float: left;
}

.right {
	float: right;
}

.shadow-right {
	-webkit-box-shadow: 2px 2px 5px #777;
	-moz-box-shadow:    2px 2px 5px #777;
	-o-box-shadow:      2px 2px 5px #777;
	box-shadow:         2px 2px 5px #777;
}

.shadow-center {
	-webkit-box-shadow: 0px 2px 5px #777;
	-moz-box-shadow:    0px 2px 5px #777;
	-o-box-shadow:      0px 2px 5px #777;
	box-shadow:         0px 2px 5px #777;
}

.separa-horiz-001 {
	border-bottom: 1px solid #ddd;	

	margin-bottom: 30px;
	padding-top:   5px;
}

.separa-horiz-invis-001 {
	margin-bottom: 15px;
	padding-top:   15px;
}

/* @end */

/* @group Typography */

/*
Generated by Font Squirrel (http://www.fontsquirrel.com) on September 25, 2010 12:56:57 PM America/New_York
Edited by Diego de Miguel (What's with the crazy SVG IDs?)
*/

@font-face {
	font-family: 'MisoLight';
	src: url('miso-light.eot');
	src: local('☺'), url('miso-light.woff') format('woff'), url('MISO-LIG.OTF') format('opentype'), url('miso-light.ttf') format('truetype'), url('miso-light.svg#miso-light') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'MisoRegular';
	src: url('miso.eot');
	src: local('☺'), url('miso.woff') format('woff'), url('MISO___.OTF') format('opentype'), url('miso.ttf') format('truetype'), url('miso.svg#miso') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'MisoBold';
	src: url('miso-bold.eot');
	src: local('☺'), url('miso-bold.woff') format('woff'), url('MISO-BOL.OTF') format('opentype'), url('miso-bold.ttf') format('truetype'), url('miso-bold.svg#miso-bold') format('svg');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'MisoRegular', 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
	font-size: 18px;
}

p {
	margin-bottom: 10px;
}

h1 {
	font-family: 'MisoLight';
	font-size: 55px;
	letter-spacing: -2px;
}

h2 {
	font-family: 'MisoLight';
	font-size: 30px;
	font-style: normal;
	
	clear: left;
	
	margin-bottom: 10px;
}

h3 {
	margin-bottom: 20px;
}

ul {
	margin-left: 18px;
	margin-bottom: 14px;
}

li {
	font-family: 'MisoRegular', 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
	font-size: 18px;

	list-style-type: disc;
	
	margin-bottom: 4px;
}

a {
	color: #333;
	text-decoration: none;
	border-bottom: 1px dotted #ccc;
}

a:hover {
	color: red;
}

p.ultima_lamina {
	font-family: 'MisoBold';
	font-size: 30px;
	font-style: normal;
	
	margin-bottom: 10px;
	margin-top: 10px;
}

p.ultima_lamina a {
	color: red;
}

p.ultima_lamina a:hover {
	color: maroon;
}


footer p {
	font-family: 'MisoLight';
	font-size: 16px;
	color: #ccc;
}

/* @end */