
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
/* 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: #333;
	background-image: url("../images/bg_grey.gif");
	background-repeat: repeat;
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	margin: 0px 0px 0px 0px; /* 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. */
}

img {	
	border: 0;
}
#herogap{
	margin-bottom:-3px;
}
#hero {
	padding:0px;
	margin:0px;
	background-image:url(../images/hero_bg.png);
	width:839px;
	background-repeat:repeat-y;
}
#hero_contact_bg{
	padding:0px;
	background-image:url(../images/hero_bg.png);
	/*background-image:url(../images/hero_bg.gif);*/
	width:839px;
	background-repeat:repeat-y;

}
#hero_random img {
	display: block;
	padding:0px;
	margin:0px;
}
#hero_bg{
	background-image:url(../images/hero_bg.png);
	width:839px;
	background-repeat:repeat-y;
}
#flashcontent{ 
	border:none; 
	margin:0px 0px -1px 9px;
}
/* Commonly used to style page titles. */
h1 {
	color: #8281d1;
	font-size: 14px;
	font-weight: bold;
	padding: 0 0 20px 0;
	margin:0px;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #990000;
	font-size: 12px;
	font-weight: bold;
	text-transform:uppercase;
	line-height: 14px;
	padding: 10px 0 2px 0;
	margin:0px;
	border-bottom:dotted 1px #CCCCCC;
}
h3 {
	color: #333333;
	font-size: 13px;
	font-weight: bold;
	line-height: 15px;
	margin:0px;
	padding: 10px 0 0px 0;
}
h4 {
	color: #990000;
	font-size: 12px;
	font-weight: bold;
	text-transform:uppercase;
	line-height: 14px;
	padding: 10px 0 2px 0;
	margin:0px;
}
/* Sets the style for unvisited links. */
a {
	color: #990000;
	font-weight: normal;
	text-decoration: none;
}

a:hover {
	color: #da4d33;
	text-decoration: underline;
}
td {
	padding: 10px 10px 0px 0;
}
.td_head {
	padding: 20px 10px 3px 0;
	border-bottom:dotted 1px #CCCCCC;
	color:#990000;
	font-weight:bold;
	text-transform: uppercase;
}
.td_head2 {
	padding: 20px 10px 3px 0;
	border-bottom:dotted 1px #CCCCCC;
	color:#990000;
}
.td_head3 {
	padding: 0px 10px 3px 0;
	border-bottom:dotted 1px #CCCCCC;
	color:#990000;
	font-weight:bold;
	text-transform: uppercase;
}

.td_head4 {
	padding: 0px 10px 3px 0;
	border-bottom:dotted 1px #CCCCCC;
	color:#990000;
}

/* 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: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 839px;
}
#outerWrapper #header {
	text-align: right;
	margin: 0;
}

#outerWrapper #header {
	padding: 40px 20px 20px;
}

#anav ul {
	list-style: none;
	margin: 0 0 -3px 0;
	padding: 0;
}

#anav li {
	display: inline;
	margin: 0;
	padding: 0;
}

#bnav {
	background-image: url(../images/left_shadow.png);
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
}

#bnav ul {
	list-style: none;
	margin: -4px 0 0 0;
	padding: 12px 0 10px 20px;
	color: #FFF;
}
.clear {clear:both;}
#bnav li {
	display: inline;
	margin: 0;
	padding: 0 12px 0 0; font-weight:bold; font-size:110%;
}
.identify_bnav {
	display: inline;
	background:url(../images/bnav_symbol.gif) left no-repeat center;
	margin: 0 10px 0 0px;
	padding: 0 25px 0 0px;
}
.home-bullet {
	display: inline;
	background:url(../images/bullet2.jpg) left no-repeat center;
	margin: 0 10px 0 0px;
	padding: 0 25px 0 0px;
}

#bnav li a {
	margin: 0;
	padding: 0;
	color: #fff;
	text-decoration: none;
}

#bnav li a:hover {
	margin: 0;
	padding: 0;
	color: #000;
	text-decoration: none;
}

#cnav ul {
	list-style: none;
	margin: 0 35px 0 0;
	padding: 0;
}

#cnav li {
	position: relative;
	float: right;
	top: 0;
	right: 0;
	display: inline;
	margin: 0;
	padding: 0 0 0 3px;
}

#content {
	background-image: url(../images/back_content.png);
	width: 839px;
	padding: 0 0 20px 0px;
	margin:0px;
}
#leftcol2 {
	float: left;
	width: 380px;
	padding: 20px 0 20px 20px;
	margin: 35px 0 0 0;
}

#leftcol {
	float: left;
	width: 340px;
	padding: 20px 0 20px 20px;
	margin: 35px 0 0 0;
}

#leftcol_mast {
	padding: 15px;
}

#leftcol_quote {
	padding: 15px;
}

#rightcol {
	float: right;
	width: 470px;
	padding: 0;
}
#rightcol2 {
	float: right;
	width: 430px;
	padding: 0;
}

#rightcol_mast {
	padding: 56px 0 25px;
}

a.blockrollover { display: block; padding: 0; margin: 0 0 30px; text-decoration: none!important; float: right; width: 470px;  }
a.blockrollover img { display: block;  padding: 0; border: 0; float: left; }  
a.blockrollover .textblock {  display: block; font-size: 100%;  line-height: 145%; color: #666; margin: 0; padding: 0 40px 0 0; width: 205px; float: right;  }
a.blockrollover strong { display: block; font-weight: bold; margin: 0; } 
a:hover.blockrollover { background:  #FFF; }

#leftcol_content {
	padding: 15px;
}

#rightcol_content {
	float: right;
	width: 430px;
	padding: 40px 35px 30px 0;
}
#rightcol_content ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	color: #666;
}

#rightcol_content li {
	background:url(../images/bullet.gif) no-repeat left 5px;
	margin: 0px;
	padding: 0px 30px 10px 30px;
}

#riverside ul {
	list-style: none;
	margin: 0px 0 0 0;
	padding: 0px 0 10px 0px;
	color: #666;
}
#riverside li {
	display: inline;
	background:url(../images/r-riversidecentre.jpg) no-repeat left center;
	margin: 0;
	padding: 20px 0px 20px 30px;
	clear:both;
}
#parking ul {
	list-style: none;
	margin: 0px 0 0 0;
	padding: 20px 0 10px 0px;
	color: #666;
}
#parking li {
	list-style: none;
	background:url(../images/p-parking.jpg) no-repeat left 15px;
	margin: 0;
	padding: 13px 0px 10px 30px;
}
/* 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: both;
  display: block;
}


/* ****************************************************************** */
/* *************************** GALLERIES **************************** */
/* ****************************************************************** */

/* NOTE the gallery component feature - display: inline - this is to remove the double border bug in explorer */
.gallery_content {
	padding: 10px 30px 0 35px;
	margin:0;
}

.gallery {
	float: left;
	padding: 0 30px 0 30px;
	margin: 0;
	display: block;
	display: inline;
	border: 0;
	} 
	
img_rollover, a.img_rollover { float: left; padding: 1px;  margin: 0 5px 10px 5px; background-color: #FFFFFF;	display: block;	display: inline; border: 1px solid #FFFFFF;	}
a.img_rollover:hover { border: 1px solid #006666; display: block; display: inline; }

/* **************************************************************** */
/* ************************** Lightbox ***************************** */
/* **************************************************************** */
#lightbox2 { padding:0px 0 0 0px; margin:0px; float:right; width:810px; }
.ie #lightbox2 ul { padding:0px 0 0 0px; margin:0px 0 0 -3px; width:820px; }
#lightbox2 ul { list-style: none; list-style-type:none; width:810px;  padding:0px 0px 0 0px; text-align:left; display:block; }
#lightbox2 ul li { display: inline; background:none;list-style:none; width:115px; height:145px;}
#lightbox2 ul img {border: 1px solid #fff;  margin:0px 15px 15px 0px; padding:0px;}
#lightbox2 ul a:hover img {	border: 1px solid #006666;	color: #fff;}
#lightbox2 ul a:hover { color: #fff; }
#lightthumb { float:left; /*border: 1px solid #fff;margin:5px 0 10px 10px;*/ }
.white {
	color: #FFF;
}


/* lightbox styles - these are to style the  pop-over */
#lightbox{	padding: 10px;	border: 2px solid #ffffff;	background: url(../images/img_bg_popover.jpg) #FFFFFF bottom left no-repeat;	}
#lightboxDetails{	font-size: 85%;	padding: 5px 0 0 0;	}
#lightbox a { color: #666666; text-decoration: underline; margin: 0; padding: 0; }
#lightbox a:hover { color: #006633; text-decoration: underline; }
#lightboxCaption{ float: left; }
#keyboardMsg{ float: right; }
#closeButton{ top: 5px; right: 5px; margin: 10px 10px 0 0; height:11px; width:11px; }
#lightbox img{ border: none; clear: both; padding: 0 0 5px;}
#overlay img{ border: none; }
#overlay{ background-image: url(../images/overlay.png); }

/* explorer PNG workarounds */
* html #overlay {
back\ground-color: transparent;
background-image: url(blank.gif);
/* ***** NOTE ***** this image gets called from the html *NOT* this file, the path is different */
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/overlay.png" sizingMethod="scale");
}



#outerWrapper #footer {
	background-image: url(../images/footer_back.png);
	background-repeat: no-repeat;
	height: 100px;
	margin: 0;
	padding: 20px 0 35px 35px;	
}

.green {
	font-weight: bold;
	color: #006666;
}

#leftfooter {
	float: left;
	padding: 0;
	color: #666;
	line-height: 145%
}

#rightfooter {
	float: right;
	margin: 0;
	padding: 0 35px 0 0;
	vertical-align: text-bottom;
	text-align: right;
	color: #666;
	line-height: 145%
}

