/* 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: #ebecd9;
  background-image: url("../../images/bodybk.gif");
  background-position: top left;
  background-repeat: repeat-x;
  color: #525252;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  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. */
}
/* Commonly used to style page titles. */
h1 {
  color: #a3c1e6;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  margin-top:0px;
  margin-bottom:14px;
  padding:0px;
}
/* Commonly used to style section titles. */
h2 {
  color: #a3c1e6;
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  margin-top:0px;
  margin-bottom:14px;
  padding:0px;
  
}

p {
padding:0px;
margin-top:0px;
margin-bottom:20px;
}
/* Sets the style for unvisited links. */

/* 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) */
  max-width: 950px;
  min-width: 950px;
  padding-top: 0px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 950px;
  background:#ffffff;
}
#outerWrapper #headerBackground {
  
  height: 101px;
}
#outerWrapper #headerBackground #headerBottom {
 
  height: 80px;
}
#outerWrapper #headerBackground #headerBottom #headerTop {
 
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper {
 
  overflow: hidden;
  padding-left: 14px;
  padding-right: 14px;
}

#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #ffffff;
	float: right;
	padding: 43px 6px 14px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 220px;
	font-size:11px;
	line-height: 20px;
}


#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #ffffff;
	float: left;
	padding: 43px 14px 14px 32px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 190px;
	font-size:11px;
	line-height: 20px;  
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
  color: #a3c1e6;
  font-size: 11px;
  font-weight: normal;
  line-height: 12px;
  margin-top:0px;
  margin-bottom:14px;
  padding:0px;
  
}

/* 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 {
	background-color: #ffffff;
	padding: 38px 14px 14px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	line-height: 18px;
}

/* 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 #banner {
  padding:0px;
  margin:0px;
  width:950px;
  height:205px;

}
#outerWrapper #bannerhome {
  padding:0px;
  margin:0px;
  width:950px;
  height:348px;

}
#outerWrapper #contenthome {
  padding:30px 0px 0px 0px;
  margin:0px;
  width:950px;
  height:230px;

}


#loginnav {
float:right;
padding:30px 8px 8px 8px;
font-size:10px;
width:110px;
color:#525252;
line-height:14px;
}
#memberwelcome{
float:right;
padding:30px 14px 8px 8px;
font-size:10px;
text-align:right;
color:#525252;
line-height:14px;
}

#footerBackground {
	background-color: #EBECD9;
	background-image: url(../../images/footerbk.gif);
	background-repeat: no-repeat;
	background-position: left top; 
}
#footerBackground #footerBottom {
 
}
#footerBackground #footerBottom #footerTop {
 
 
  font-size: 10px;
  color:#9c9c9c;
  line-height: 15px;
  padding: 24px 28px 24px 28px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#footerBackground2 {
	background-color: #EBECD9;
}
#footerBackground2 #footerBottom {
 
}
#footerBackground2 #footerBottom #footerTop {
 
 
  font-size: 10px;
  color:#9c9c9c;
  line-height: 15px;
  padding: 24px 28px 24px 28px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
ul#leftnav  {
	padding: 0px;
	list-style-type: none;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
ul#leftnav  li {
	list-style-type: none;
	padding:0px;
	margin:0px;
	margin-bottom:5px;
}

ul#leftnav  li a,  a:link {
  color: #525252;
  font-weight: normal;
  text-decoration: none;
}
/* Sets the style for visited links. */
 ul#leftnav li a:visited {
  color: #525252;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */

/* Sets the style for a link that has focus. */
ul#leftnav  li a:focus {
  color: #525252;
}
/* Sets the style for a link that is being activated/clicked. */
ul#leftnav  li a:active {
  color: #525252;
}
#logincell a, a:link, a:visited, a:focus, a:active {
	color: #525252;
	text-decoration: none;
}


.imgborder {
border: 1px solid #bebebe;
}
ul#artlist li {
	padding: 0px;
	float: left;
	height: 250px;
	list-style-type: none;
	display: inline;
	text-align: center;
	width: 250px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 10px;
	margin-left: 5px;
}
ul#artlist {
	display: block;
	clear: both;
	width: 100%;
}
ol li {padding-bottom:10px; }
ul li {padding-bottom:10px; }
ul.listinglist {list-style:none; }
ul.listinglist li { list-style:none;margin-bottom:20px; }
#socialmediabar { width:910px; }
#socialmediabar2 { width:910px;height:70px; }
.memberinputform td, .memberinputform select, .memberinputform submit {font-size:11px; }
.memberinputform td { padding-right:15px; }
.memberinputform th {color:#6997C9;padding-bottom:5px;font-size:12px;font-weight:normal;padding-top:25px; }
.highlightrow {background-color:#f2f1ec; }
h2.reservationh2 { color:#E4AD04;font-weight:bold;font-size:11px;font-family:verdana,arial,sans-serif;margin-top:20px; }
.reservationssubmit, a.reservationssubmit, a:link.reservationssubmit, a:visited.reservationssubmit, a:active.reservationssubmit { background-color:#EFB003;font-weight:bold;color:#515151;font-size:12px;padding:3px; }
.participantprofileform td, .participantprofileform select, .participantprofileform submit {font-size:12px;color:#000; }
.participantprofileform td { padding:5px 15px 5px 5px; }
.participantprofileform th {color:#000;padding-bottom:5px;font-size:14px;font-weight:bold;padding-top:25px; }
#suckerfishnav, #suckerfishnav ul { z-index:999; }