@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #9e9abf;
  background-image: url(..//body_bg.jpg);
  background-repeat: repeat-x;
  color: #2c2c2e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
ul {
  list-style: square;
  margin: 2px 0 10px 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
p {
  margin: 2px 0 15px 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Commonly used to style page titles. */
h1 {
	color: #ff6146;
	font-size: 14px;
	font-weight: bold;
	line-height: 20px;
	font-variant: small-caps;
}
/* Commonly used to style section titles. */
h2 {
	color: #5F519E;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
}
/* Sets the style for the h3 header. */
h3 {
  color: #b92200;
}
/* Sets the style for the h4 header. */
h4 {
  color: #b92200;
}
/* Sets the style for the h5 header. */
h5 {
  color: #b92200;
}
/* Sets the style for the h6 header. */
h6 {
  color: #b92200;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #b9223a;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #b9223a;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #b9223a;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #b9223a;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #b9223a;
  font-weight: bold;
  text-decoration: underline;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 759px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #ffffff;
	border-left-color: #ffffff;
}
#outerWrapper #header {
	background-image: url(../images/home_media.jpg);
	background-repeat: no-repeat;
	border-bottom: solid 1px #fff; /* Sets the bottom border properties for an element using shorthand notation */
	color: #fff;
	height: 112px;
	padding: 240px 550px 0px 28px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #subheader {
	background-image: url(../images/subhe.jpg);
	background-repeat: no-repeat;
	/*border-bottom: solid 1px #fff;*/ /* Sets the bottom border properties for an element using shorthand notation */
	color: #fff;
	height: 112px;
	padding: 97px 550px 0px 28px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}




/* ----- start topNav ----- */


#outerWrapper #topNav {
  background-color: #fff;
  background-image: url(../images/topNavigation_bg.jpg);
  background-repeat: no-repeat;
  border-top: solid 1px #ff8e75;
  border-bottom: solid 1px #ff8e75; /* Sets the bottom border properties for an element using shorthand notation */
  color: #fff;
  font-weight: normal;
  height: 30px;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: right;
}
#outerWrapper #topNav ul {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #topNav ul li {
	margin: 0px;
	display: block;
	float: right;
	list-style: none;
	clear: left;
}
#outerWrapper #topNav ul li a {
	display: block;	
	padding-right: 1.8em !important;
	padding-left: 1.8em !important;
	text-align: center;
	text-decoration: none;
	color: #5F519E;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 30px;
	font-weight: normal;
	background: url(../images/nav-divider.gif) no-repeat left top;
	font-variant: small-caps;
}
#outerWrapper #topNav ul li a:hover {
	background: url(../images/nav-hover.jpg) repeat-x top;
	text-decoration: none;
	color: #fff;
}
#outerWrapper #topNav ul li#active {
	background: url(../images/nav-hover.jpg) repeat-x top;
	text-decoration: none;
}
#outerWrapper #topNav ul li#active a {
	color: #fff;
}

#outerWrapper #topNav ul li#act {
	background: #9e9abf;
	text-decoration: none;
}
#outerWrapper #topNav ul li#act a {

	color: #fff;
}

/* ----- end topNav ----- */



#outerWrapper #contentWrapper {
  background-image: url(../images/contentWrapper_bg.jpg);
  background-repeat: repeat-y;
  height: 1%;
  min-height: 0;
}
#outerWrapper #contentWrapper #leftColumn1 {
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 204px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0 0 222px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 15px 10px 10px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFFFFF;
	
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content #contentleftColumn {
  float: left;
  width: 290px;
}
#contentleftColumnLong {
  float: left;
  width: 490px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content #contentrightColumn {
  margin-left: 300px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  background-color: #9e9abf;
  color: #fff;
  padding: 10px 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer a, #outerWrapper #footer a:link {
  color: #fff;
  text-decoration: none;
}
#outerWrapper #footer a:visited {
  color: #fff;
  text-decoration: none;
}
#outerWrapper #footer a:hover {
  color: #fff;
  text-decoration: none;
}
#outerWrapper #footer a:focus {
  color: #fff;
  text-decoration: none;
}
#outerWrapper #footer a:active {
  color: #fff;
  text-decoration: none;
}

.offleft {
	margin-left: -9000px;
	position: absolute;
}

/* --- gallery pics --- */

.figure {
	float: left;
	width: 148px;
	margin: 0 6px 8px 6px;
}

.photo {
background: url(../images/drop_shadow.gif) no-repeat right bottom;
line-height: 0;
}

.photo img {
	border: 0;
	background-color: #FFF;
	
	padding: 4px !important;
	position: relative;
	top: -4px;
	left:-4px;
}

.figure p {
	font: .8em/normal Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0;
	height: 3em;
}

form {
	background-color:#FFEDD5;
	padding: 16px 25px;
	border: 1px solid #5F519E;
}

fieldset {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1em;
	margin-left: 0px;
	border: 1px solid #99F;
}
legend {
	font-weight: bold;
	margin-left: 1em;
	color: #5F519E;
}
fieldset ul {
	margin: 0px;
	padding: 1em;
	list-style: none;

}
fieldset li {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1em;
	margin-left: 0px;
}
.explanatory label {
	display: block;
	width: auto;
	float: none;
	text-align: left;
}
label {
	text-align: right;
	float: left;
	width: 8em;
	padding-right: 0.7em;
}
input#button {
	
	color: #5F519E;
	background-color: #FFEDD5;
	border: 1px solid #5F519E;
}.tel {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-variant: normal;
	color: #000000;
}
.strapline {
	font-size: 12px;
	color: #000000;
	font-variant: small-caps;
}

.title {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: bold;
	font-variant: normal;
	color: #5F51B1;
	line-height: 20px;
}
