/* CSS Layout */

body {
 text-align: center;
 background: #000;
 font-family: Verdana, Helvetica, sans-serif, serif;
 font-size: .75em;
 padding-bottom: 10px;
}




/* Typography */

p {
 font-size: 1.2em;
 color: #000;
} 


h1 {
 font-size: 155%; 
 font-weight: 600;
}

strong {
 font-weight: bold;
}

em {
 font-style: italic;
}

.underline {
 text-decoration: underline;
}

.underbold {
 text-decoration: underline;
 font-weight: bold;
}



/* ClearFix Details */

.clearfix:after{ 
 content: "."; 
 display: block; 
 height: 0; 
 font-size:0; 
 clear: both; 
 visibility:hidden; 
} 

.clearfix {
 display: inline-block;
} 

/* Hides from IE Mac \*/ 
* html .clearfix {
height: 1%;
} 

.clearfix {
 display: block;
}





