@charset "utf-8";
body {
	font: 75% Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
}
/* Fix lists */		
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.oneColFixCtrHdr #container {
	width: 945px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr .header {
	background: #fff; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	padding-top:15px;
	padding-bottom:7px;
}
.oneColFixCtrHdr .header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #fff;
}
.oneColFixCtrHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #fff;
	width: 945px;
	height: 30px;
	
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/*  CONTENT - About mainly */
#mainContent .standardContent {
	margin: 45px 305px 45px 18px; /*down, left, up, right*/
	/*background-color:#CCC;*/
}

.standardContent h1, h2{	
	font-size: 1.2em;
	font-weight:bold;
	margin:0;
	padding:0;
	padding-bottom:5px;
}

.standardContent p{
	margin:0;
	padding:0;
	padding-bottom:20px;
}

.standardContent a {
	color:#666;
	font-weight:bold;
}

/*  HEADER 3 COL LAYOUT FROM 3 COL FIXED DREAMWEAVER TEMPLATE   */

.header { 
	width: 945px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 128px
	background: #fff;
	overflow: auto;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.header #mainNav {
	float: left; /* since this element is floated, a width must be given */
	width: 142px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 128px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
}
/*
###### 

NOTE - The Gallery and About .header #galleryNav and #aboutNav class definetions are below. near the li stuff.

######
*/
.header #colb {
	float: left; /* since this element is floated, a width must be given */
	width: 142px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 128px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
}
.header #colc {
	float: left; /* since this element is floated, a width must be given */
	width: 142px; /* 388 troy changing it cause its breaking -- the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 128px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
	padding-right:286px;
}
.header #cold { 
	float: left;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #fff;
	width: 215px;
	height: 128px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a header that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* 3. Main Nav styles */

#mainNav h2{
	position:absolute;
	top:-9999em;
	left:-9999em;
	}
#mainNav ul{
	overflow:hidden;
	list-style:none;
	margin:0;
	padding:0;
	}
#mainNav li{
	float:left;
	}
#mainNav li a{
	display:block;
	/*height:31px;  if nav are images, then we can use height */
	background:url('/images/nav/mainnavsprite.gif') 0 0 no-repeat;
	text-indent:-9999em;
	}

#mainNav li .home{ width:142px; height:21px; background-position:0 0; }
#mainNav li .about{ width:142px; height:21px; background-position:0 -21px; }
#mainNav li .weddings { width:142px; height:21px; background-position:0 -42px; }
#mainNav li .portraits { width:142px; height:21px; background-position:0 -63px; }
#mainNav li .gallery { width:142px; height:21px; background-position:0 -84px; }
#mainNav li .contact { width:142px; height:23px; background-position:0 -105px; }

#mainNav li .home:hover{background-position:-142px 0; }
#mainNav li .about:hover{ background-position:-142px -21px; }
#mainNav li .weddings:hover { background-position:-142px -42px; }
#mainNav li .portraits:hover { background-position:-142px -63px; }
#mainNav li .gallery:hover { background-position:-142px -84px; }
#mainNav li .contact:hover { background-position:-142px -105px; }

#mainNav li.on .home{background-position:-142px 0; }
#mainNav li.on .about{ background-position:-142px -21px; }
#mainNav li.on .weddings { background-position:-142px -42px; }
#mainNav li.on .portraits { background-position:-142px -63px; }
#mainNav li.on .gallery { background-position:-142px -84px; }
#mainNav li.on .contact { background-position:-142px -105px; }

/* 3. About Sub Nav styles */
.header #aboutNav {
	float: left; /* since this element is floated, a width must be given */
	width: 142px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 128px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
}
#aboutNav h2{
	position:absolute;
	top:-9999em;
	left:-9999em;
	}
#aboutNav ul{
	overflow:hidden;
	list-style:none;
	margin:0;
	padding:0;
	}
#aboutNav li{
	float:left;
	}
#aboutNav li a{
	display:block;
	/*height:31px;  if nav are images, then we can use height */
	background:url('/images/nav/secondnav-about.gif') 0 0 no-repeat;
	text-indent:-9999em;
	}

#aboutNav li .bio{ width:142px; height:21px; background-position:0 0; }
#aboutNav li .blog{ width:142px; height:21px; background-position:0 -21px; }
#aboutNav li .equipment { width:142px; height:21px; background-position:0 -42px; }

#aboutNav li .bio:hover{background-position:-142px 0; }
#aboutNav li .blog:hover{ background-position:-142px -21px; }
#aboutNav li .equipment:hover { background-position:-142px -42px; }

#aboutNav li.on .bio{background-position:-142px 0; }
#aboutNav li.on .blog{ background-position:-142px -21px; }
#aboutNav li.on .equipment { background-position:-142px -42px; }
	
/* 3. Gallery Sub Nav styles */
.header #galleryNav {
	float: left; /* since this element is floated, a width must be given */
	width: 142px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: 128px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
}
#galleryNav h2{
	position:absolute;
	top:-9999em;
	left:-9999em;
	}
#galleryNav ul{
	overflow:hidden;
	list-style:none;
	margin:0;
	padding:0;
	}
#galleryNav li{
	float:left;
	}
#galleryNav li a{
	display:block;
	/*height:31px;  if nav are images, then we can use height */
	background:url('/images/nav/secondnav-gallery.gif') 0 0 no-repeat;
	text-indent:-9999em;
	}

#galleryNav li .galleryweddings{ width:142px; height:21px; background-position:0 0; }
#galleryNav li .galleryportraits{ width:142px; height:21px; background-position:0 -21px; }
#galleryNav li .gallerypersonal { width:142px; height:21px; background-position:0 -42px; }

#galleryNav li .galleryweddings:hover{background-position:-142px 0; }
#galleryNav li .galleryportraits:hover{ background-position:-142px -21px; }
#galleryNav li .gallerypersonal:hover { background-position:-142px -42px; }

#galleryNav li.on .galleryweddings{background-position:-142px 0; }
#galleryNav li.on .galleryportraits{ background-position:-142px -21px; }
#galleryNav li.on .gallerypersonal { background-position:-142px -42px; }
		
/* 4.1.4 : -------- Photo Gallery ------------ */
.photoGalleryLanding{
	width: 966px;
	margin:0;
	padding:0;
	margin-top:6px;	
}
		ul.gallery {
			position: relative;
			width: 966px;
			padding:0;
			margin:0;

			}
		ul.gallery li {
			padding:0;
			margin:0;
			padding-right:21px;
			/*border-bottom: 1px solid #e6e3d6;*/
			float: left;
			background: none !important;
			}
		ul.gallery li a {
			text-decoration: none;
			width: 301px;
			height: 301px;
			position: relative;
			float: left;
			}
		
		
		
		
