/** 
 * SilverStripe Black Candy Theme
 * http://www.silverstripe.com
 *
 * This typography file is included in the WYSIWYG editor and the front end. It provides
 * a place to add link styles and font styles you would like in the CMS and the Front End.
 */

 
/* GENERIC STYLES 
-------------------------------------------- */
 
.typography * {
	font-family: Bodoni, Georgia, serif;
	color: #eecf98;
}
.typography {
	padding: 15px;
	background: #004c4d url(../images/bg0.gif) repeat;
	font-size: 100%;
}
body.mceContentBody.typography
{
	font-size: 100%;
}
a {
	color: #eecf98;
}

p {
	margin: 20px 0;
}

.typography a:hover {
	background-color: #000;
	background-color: rgba(0,0,0,0.4);
	text-decoration:none;
}

img {
	border: none;
}
/* HEADER STYLES 
-------------------------------------------- */

.typography h1,
.typography h2 { 
	margin: 0 0 18px 0;
	font-weight: 300;
}

.typography h1 {
	font-size: 32px;
}
.typography h2 { 
 	font-size: 26px;
}	
.typography h3 {
	margin: 0 0 18px 0;
	font-weight: 300;
	clear: both;
	font-size: 18px;
}
.typography h4 {
	font-size: 16px;
	width: 95%;
	font-weight: 300;
	line-height: 18px;
	margin: 0 0 16px 0;
}
.typography h5 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 12px 0;
}
.typography h6 {
	font-size: 13px;
	line-height: 1.4em;
	margin: 0 0 12px 0;
}
fieldset {
	margin: 0;
	padding: 0;
}
.middleColumn {
	margin: 0;
	padding: 0;	
}
.required {
	font-size: 14px;
	background-color: #990000;
	font-style: italic;
	color: #fff;
	padding: 4px;
}
ul {
	margin: 0;
	paddig: 0;
}

p.intro
{
	font-style: italic;
	font-size: 160%;
}

.columns
{
	/*-moz-column-count: 2;
	-moz-column-gap: 20px;
	-webkit-column-count: 2;
	-webkit-column-gap: 20px;
	column-count: 2;
	column-gap: 20px;*/
	-moz-column-width: 300px;
	-moz-column-gap: 20px;
	-webkit-column-width: 300px;
	-webkit-column-gap: 20px;
	column-width: 300px;
	column-gap: 20px;
}

.columns p
{
	-moz-break-inside: avoid-column;
	-webkit-break-inside: avoid-column;
	break-inside: avoid-column;
}