/*
  (c) Mediaweb Studio
*/

/* GENERIC STYLES
-------------------------------------------- */
.typography {
	font: 14px/1.3 Arial, sans-serif;
	color: #3a3a3a;
}

/* PARAGRAPHS
-------------------------------------------- */
.typography .main-content p,
.typography.mceContentBody p {
	margin: 0 0 15px;
}

/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 15px 0 15px 30px;
	font-style: italic;
}

/* LINKS 
-------------------------------------------- */
.typography a {
	color: #b21408;
}
.typography a:visited:not(.js-bookingDate, .bookingAdminMenu_itemLink) {
	color: #7f0a01;
}
.typography a:hover {
	color: #e1564c;
}

/* LIST STYLES 
-------------------------------------------- */
.typography ul, .typography ol {
	margin: 15px 0;
	padding: 0 0 0 20px;
}
.typography .main-content ul,
.typography .mceContentBody ul,
.typography .main-content ol,
.typography .mceContentBody ol {
	overflow: hidden;
}
.typography ul ul, .typography ol ol {
	margin: 5px 0;
}
.typography li {
	margin: 0 0 5px;
}

/* HEADER STYLES
-------------------------------------------- */
.typography h1,
.typography .like-h1 {
	font: 700 48px Philosopher, sans-serif;
	margin: 0 0 2.5rem;
	color: #734040;
}
.typography h2,
.typography .like-h2 {
	font: 700 36px Philosopher, sans-serif;
	margin: 20px 0 12px;
	color: #734040;
}
.typography h3, .typography h4,
.typography .like-h3 {
	font: 700 30px Philosopher, sans-serif;
	margin: 15px 0 10px;
	color: #734040;
}

/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	background: none;
	border: none;
	display: block;
	font-family: Courier, monospace;
	font-size: 123%;
	margin: 0;
	padding: 0;
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 20px 0;
	border-spacing: 0;
	border-collapse: collapse;
}
.typography th,
.typography thead td {
	background-color: #dcce9a;
	text-align: center;
	border: none;
	padding: 10px;
	font-weight: bold;
	font-family: "Open Sans", sans-serif;
}
.typography td {
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 10px 12px;
	vertical-align: top;
	font-size: 13px;
}
.typography caption {
	caption-side: top;
	font-size: 12px;
	font-style: italic;
	padding-bottom: 7px;
	text-align: center;
}

/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .main-content .left,
.typography.mceContentBody .left {
	text-align: left;
}
.typography .main-content .center,
.typography.mceContentBody .center {
	text-align: center;
}
.typography .main-content .right,
.typography.mceContentBody .right {
	text-align: right;
}

/* IMAGES 
-------------------------------------------- */
/* .typography .main-content img,
.typography.mceContentBody img {
	border-radius: 3px;
} */
.typography .main-content img.right,
.typography.mceContentBody img.right {
	float: right;
	margin-left:10px;
	margin-bottom:8px;
}
.typography .main-content img.left,
.typography.mceContentBody img.left {
	float: left;
	margin-right:10px;
	margin-bottom:8px;
}
.typography .main-content img.leftAlone,
.typography.mceContentBody img.leftAlone {
	float: left;
	margin-right: 100%;
	margin-bottom:8px;
}
.typography .main-content img.center,
.typography.mceContentBody img.center {
	display: block;
	float: none;
	margin: 5px auto 8px;
}