/*
Theme Name:     Twenty Twelve Child
Description:    Child theme for the Twenty Twelve theme, created to modify 
				some aspects of the standard twwentyten theme. Site description
				font size and usable page width adjustment to name a couple. 
Author:         Eric S. Clarke
Author URI:     http://irishcastles.net
Template:       twentytwelve
Version:        1.0.6
*/

/* Import twentytwelve style.css and add the following modifications */
@import url('../twentytwelve/style.css');

/* Hide the Title ESC */
.headerblock {
display: none;
visibility: hidden;
}
/* Stop auto hyphenation as it looks and reads ugly ESC */
.site-content article {
   word-wrap: normal;
  -webkit-hyphens: none;
  -moz-hyphens: none;
   hyphens: none;
}

.widget-area .widget {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
	word-wrap: normal;
}
/* End of CSS modification 13/07/2015 ESC */