/**
 * This stylesheet is used by the iCM editor to determine which styles to
 * provide in the iCM HTML editor. Refer to the accompanying iCM
 * documentation for more details.
 *
 * The file is broken into 3 sections:
 *    1/. "Base" defines the core structural styles which dictate the main HTML structural elements.
 *    2/. "Editor" defines styles listed in iCM's HTML Editor (the "Styles" drop down").
 *    3/. "Tables" defines table auto-format rules for iCM's HTML Editor
 */

/**
 * Base styles
 */

body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, Geneva, sans-serif;
	font-weight: normal;
	font-size: 75%;/*12px*/
	color: #000;
}

h1, h2, h3, h4, h5, h6, p, blockquote, form, label, ul, ol, dl, address {
	margin: 0.5em 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

h1 {
	font-size: 150%;/*18px*/
}

h2 {
	font-size: 141.667%;/*17px*/
}

h3 {
	font-size: 133.333%;/*16px*/
}

h4 {
	font-size: 125%/*15px*/;
}

h5 {
	font-size: 116.667%;/*14px*/
}

h6 {
	font-size: 100%;/*12px*/
}

p {
	margin: 1em 0;
	line-height: 1.5em/*18px*/
}

ol, ul, dd {
	padding: 0 0 0 2em;
}

ol
{
    list-style:decimal;
    line-height:16px;
}

ol li
{
    padding-left:7px;
}

ul
{
    list-style:disc;
    line-height:16px;
}

ul li
{
    padding-left:7px;
}

a {
	color: #24a;
	text-decoration: underline;
}

a:visited {
	color: #308;
}

/*Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective*/
a:hover, a:focus {
	text-decoration: none;
}

/*Note: a:active MUST come after a:hover in the CSS definition in order to be effective*/
a:active {
	text-decoration: none;
}

img {
	border: none;
}

textarea, input, select, option, table {
	font-family: Arial, Helvetica, Geneva, sans-serif;
	font-size: 100%;
}

fieldset {
	margin: 0;
	padding: 0;
}

blockquote {
	margin: 0;
	padding: 2em 0 0 2.25em;
	display: block;
	overflow: hidden;
	background: url(../images/blockquotestop.gif) no-repeat top left;
	font-style: italic;
}

blockquote p {
	margin: 0;
	padding: 0 2.25em 2em 0;
	background: url(../images/blockquotesbtm.gif) no-repeat bottom right;
}

q {
	padding: 2em 2.25em;
	font-style: italic;
}

.red, span.red {
	color: #f00;
}

.ck_underline, span.ck_underline {
	text-decoration: underline;
}

.ck_strike, span.ck_strike {
	text-decoration: line-through;
}

/**
 * iCM Editor Styles
 */

/*Inline positioning*/
.limage, .rimage, span.positionleft, span.positionright, img.positionleft, img.positionright {
	margin: 0.333em 0 0.5em 1.833em;
	display: inline;
	float: right;
	clear: left;
}

div.limage {
	margin-top: 1.333em;
}

.limage img, .rimage img, .remimage img, span.positionleft img, span.positionright img, img.positionleft, img.positionright, span.positionnone img, 
span.positionleft object, span.positionright object {
	padding: 1px;
	border: solid 1px #666;
}

.rimage, span.positionright, img.positionright {
	float: right;
	clear: right;
	margin: 0.333em 0 0.5em 1.833em;
}

.limage a, .rimage a {
	display: block;
	line-height: 0;/*Removes incorrect space below image*/
}

span.remainder {
	margin: 0.5em 0;
}

span.positionleft span, span.positionright span {
	display: block;
	font-style: italic;
	color: #333;
}

.strongtitle {
	font-weight: bold;
}

/* $name='Red Text' */
.redtext a, .redtext {
	color: #933;
}

/* $name='Blue Text' */
.bluetext a, .bluetext {
	color: #339;
}

/* $name='Serif' */
.serif {
	font-family: Georgia, "Times New Roman", Times, serif;
}

/* $name='Snippet' */
.snippet {
	display: block;
	overflow: hidden;
	padding: 1em 2em;
	background: #eee;
}

/* $name='Align Centre' */
.aligncentre {
	margin: 0 auto;
	text-align: center;
}

/**
 * iCM Table Styles
 */

/*--------------------
	GENERIC Table
--------------------*/

/* $style='Amenities Table' $value='amenities' $cellpadding='0' $cellspacing='5' */
/* $name='Standard Beau Sejour Amenties table' $type='table' */
table.amenities {
	background: #e4e4e4;
	width: 100%;
}
table.amenities th
{
    font-weight: bold;
}
table.amenities td
{
    padding: 5px;
}