/* 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;
  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: #666;
	color: #008DA2;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	line-height: 18px;
	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. */
	background-image: url(images/greytexbg.jpg);
}
/* Commonly used to style page titles. */
/*h1 {
	color: #008DA2;
	font-size: 18px;
	
	line-height: 17px;
}*/
h1 {
	color: #008DA2;
	font-size: 12px;
	
	line-height: 17px;
}
#outerWrapper #contentWrapper #content h2 {
  color: #008DA2;
  font-size: 12px;
  font-weight: bold;
  line-height: 17px;
}
#outerWrapper #contentWrapper #content h1 {
	padding-top: 15px;
}
h2 {
  color: #008DA2;
  font-size: 12px;
  font-weight: bold;
  line-height: 17px;
}
 h2 {
	padding-top: 15px;
}
/* Sets the style for the h3 header. */
h3 {
  color: #008DA2;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for the h4 header. */
h4 {
  font-size: 10px;
}
#outerWrapper #header h5 {
	font-size: 18px; /*was h1*/
	font-weight: bold;
	line-height: 14px;
	padding-top: 120px;
	padding-left: 100px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #008DA2;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #008DA2;
  font-weight: bold;
  text-decoration: none;
}
#outerWrapper #contentWrapper #rightColumn1 img {
	border: 1px solid #CCCCCC;
}
.brownletter {
	color: #7C341E;
	font-weight: bold;
}
#outerWrapper #contentWrapper #rightColumn1 em {
	color: #333333;
}
#outerWrapper #header h2 {
	float: right;
	margin-top: -17px;
	line-height: 18px;
}



/* Sets the style for links on mouseover. */
a:hover {
  color: #333;
  text-decoration: none; /*affects email link*/
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* 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 {
	background-color: #FFF;/*FEF7F1*/
	margin: 20px auto 20px 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: 780px;
	border: 2px solid #999;
	}
	
	

#outerWrapper #contentWrapper {
	border-top:1px solid #eee;
	
}

#outerWrapper #header {
	background-color: #FFFFFF; /* to hide bg image on colwrapper*/
	background-image: url(images/mainlogo.png);
	background-repeat: no-repeat;
	border-bottom-style: none;
	border-bottom-width: 0px;
	font-size: 18px;
	font-weight: bold;
	height: 195px; /*was 165 */
	line-height: 15px;
	padding: 10px 10px 10px 10px;} /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	
	#outerWrapper #colwrapper {
	background-image: url(images/colbg2.jpg);
	background-repeat:repeat-y;
	background-position: right;	
}
/*#outerWrapper #mainlower{
	/*background-image: url(images/mainbg6.jpg) left top; 
	background-repeat:repeat-y;
	background-image: url(file:///C|/Documents%20and%20Settings/Richard/My%20Documents/chocolateboxevents/work/colbg2.png);
	background-repeat:repeat-y;
	background-position: right 30%;	
}*/
.gallery #outerWrapper #contentWrapper {
	background-image: none;
}


#outerWrapper #contentWrapper #rightColumn1 {
  /*background-color: #FFFFFF;*/
  border-left: none 1px #666; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
}

/* 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 0px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float:left;
	width:500px;/* with sidebar second in source, not first and margin 0 from 220*/
	background-color:#fff;
}
.contenttext {
	color: #008DA2;
  font-size: 12px;
    line-height: 17px;
 }
 .contenttext:first-letter {
	font-size: 170%;
	font-weight:bold;
	color: #7C341E;
	margin-right:2px;
}
/*#outerWrapper #contentWrapper #content {
  margin: 0 220px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  /*padding: 10px 10px 10px 10px;  Sets the padding properties for an element using shorthand notation (top, right, bottom, left) 
}
 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;
}
#outerWrapper #footer {
	font-size:80%;
  background-color: #eee;
  /*border-top: solid 1px #333;  Sets the top border properties for an element using shorthand notation */
  padding: 2px 2px 2px 2px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  
}
#outerWrapper #footer a:link{
	font-weight:100;
	padding-left:5px;
	}
.credit {
	float:right;
	margin-top:-17px;
	padding-right:5px; /* in footer*/
	
}

.text333 {
	color: #333333;
}

#outerWrapper #header a {
	color: #7C341E;/*affects header & email link*/
}
#outerWrapper #header a:hover {
	color: #008DA2;/* affects  email link, menu in spry css*/
}

.home #nav .home a, .aboutus  #nav .aboutus a,  .weddings #nav .weddings a, .gallery #nav .gallery a, .links #nav .links a, .contact #nav .contact a {
  background-color:#eee;
}

lowerbanner {
}
#outerWrapper #header #nav {
	margin-top: 30px;
	}
#outerWrapper #contentWrapper #content h1:first-letter {
	font-size: 170%;
	color: #7C341E;
	margin-right:2px;
}
#outerWrapper #contentWrapper #content h2:first-letter {
	font-size: 170%;
	color: #7C341E;
	margin-right:2px;
}
#outerWrapper #contentWrapper #content  h3:first-letter {
	font-size: 170%;
	color: #7C341E;
	margin-right:2px;
}
.galleryinstr {
	color: #333;
	text-indent: 170px;
	letter-spacing: 0.08em;
}
 #photoalbum {/*gallery #wrapper #content*/
	width:505px;/*was 515*/
	height:430px;/*was 410*/
	margin-left:30px;
	float:left;
	color:#333;
}
#contact #outerWrapper #contentWrapper #content a:link {
	color: #7C341E;
}
#contact #outerWrapper #contentWrapper #content a:hover{
	color: #008DA2;
}

#contact #outerWrapper #contentWrapper #content h2 {
	line-height: 120%;
}
