@charset "UTF-8";
body  {
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	background: #7e6565;
	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: #000000;
	font-size: 13px;
}

h1 {
	text-align: center;
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	color: #663333;
	font-size: 20px;
	
	padding: 3px 0px 5px 0px;
	margin: 0px;
	}

h2 {
	text-align: center;
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	color: #663333;
	font-size: 16px;
	}
	
h3 {
	text-align: center;
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	font-weight: bold;  
	color: #663333;
	font-size: 14px;
	text-align: center;
	padding: 0px 0px 0px 0px;
	}
	
	
	h4 {
	text-align: center;
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	/* font-weight: bold;  */
	color: #663333;
	font-size: 12px;
	padding: 0px 0px 0px 0px;
	}
	
	h5 {
	text-align: left;
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	/* font-weight: bold;  */
	color: #663333;
	font-size: 14px;
	padding: 0px 0px 0px 0px;
	}

a	{font-family:inherit; text-decoration: none; color: #ffffff;}
a:hover	{text-decoration: underline; color: #fef1ae;}
/* a:active {color: #393939;} */



ul {
	font: Myriad Pro, Tahoma, Arial, sans-serif;
	font-size: 13px; 
	line-height: 150%;
	padding: 0px 2px 5px 10px;
	color: #ffffff;
	list-style: disc;
	/* display:inline; *\
	/* list-style-image: url(../images/bullet.gif); */
}

.bulletnav {
	margin: 0px;
	padding: 0px 0px 0px 3px;
}


.thrColHybHdr #container { 
	width: 950px;
	background: #7e6565;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: center; /* this overrides the text-align: center on the body element. */
}  

.thrColHybHdr #contentblock { 
	text-align: left;
	background: #7e6565;
}

.thrColHybHdr #header { 
	background: #663333; 
	padding: 0px 0px 0px 0px;
	
	 /* padding: 0 10px;  /* 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. */ */
} 


.thrColHybHdr #menu-bar { 
	width: 950px;
	background: #663333; 
	/* background-image: url(../images/menu-bar-1.gif); */
	padding: 10px 0px 10px 0px;
	margin: 0px 0px 20px 0px;
	text-align: center;
	font: Myriad Pro, Tahoma, Arial, sans-serif;
	font-size: 14px;
	color: #ffffff;
	
} 



/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColHybHdr #mainContent {
 	margin: 0 150px 0 150px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0px; /* padding here creates white space "inside the box." */
	background: #928179;
} 


/*shadow stuff for main content area */

.thrColHybHdr #mainContent .shadow2,
.thrColHybHdr #mainContent .shadow3,
.thrColHybHdr #mainContent .container {
    position: relative;
    left: -1px;
    top: -1px;
}

    .thrColHybHdr #mainContent .shadow1 {
        background: #7a6262;
    }

    .thrColHybHdr #mainContent .shadow2 {
        background: #594848;
    }

    .thrColHybHdr #mainContent .shadow3 {
        background: #403434;
    }

    .thrColHybHdr #mainContent .container {
        background: #928179;
        border-bottom: 1px solid #1d1717;
       border-right: 1px solid #1d1717;
        padding: 10px;
    }

/* end shadow stuff for main content */

.thrColHybHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#663333;
} 
.thrColHybHdr #footer p {
	font: Myriad Pro, Tahoma, Arial, sans-serif;
	color: #ffffff;
	font-size: 10px; 
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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 container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.testimonials {
	float: left;
	text-align: left;
}

.testimonial {
	color: #000000;
	font-size: 16px;
	font-style:italic;
}

.testimonial2 {
	color: #000000;
	font-size: 14px;
	font-style:italic;
}

.clientname {
	color: #FFFFFF;
	font-size: 14px;
	font-style:italic;
}

.search {
	float: right;
	text-align: left;
	font: Myriad Pro, Tahoma, Arial, sans-serif;
	font-size: 10px; 
	line-height: 100%;
	padding: 3px 2px 0px 0px;
	/* color: #ffffff; */
}

.navheader {
	text-align: center;
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	/* font-weight: bold;  */
	color: #663333;
	font-size: 12px;
	padding: 5px 0px 0px 0px;
	}


/* This is code for putting the drop shadow in the page */

.thrColHybHdr #shadow-container1 {
    float: left; 
	width: 135px;
    left: 3px;
    top: 3px;
    margin-right: 3px;
	margin-left: 3px;
    margin-bottom: 3px;
}

.thrColHybHdr #shadow-container1 .shadow2,
.thrColHybHdr #shadow-container1 .shadow3,
.thrColHybHdr #shadow-container1 .container {
    position: relative;
    left: -1px;
    top: -1px;
}

    .thrColHybHdr #shadow-container1 .shadow1 {
        background: #7a6262;
    }

    .thrColHybHdr #shadow-container1 .shadow2 {
        background: #594848;
    }

    .thrColHybHdr #shadow-container1 .shadow3 {
        background: #403434;
    }

    .thrColHybHdr #shadow-container1 .container {
        background: #928179;
        border-bottom: 1px solid #1d1717;
       border-right: 1px solid #1d1717;
        padding: 10px;
    }

.thrColHybHdr #shadow-container {
    float: right; 
	width: 135px;
    left: 3px;
    top: 3px;
    margin-right: 0px;
    margin-bottom: 3px;
}

.thrColHybHdr #shadow-container .shadow2,
.thrColHybHdr #shadow-container .shadow3,
.thrColHybHdr #shadow-container .container {
    position: relative;
    left: -1px;
    top: -1px;
}

    .thrColHybHdr #shadow-container .shadow1 {
        background: #7a6262;
    }

    .thrColHybHdr #shadow-container .shadow2 {
        background: #594848;
    }

    .thrColHybHdr #shadow-container .shadow3 {
        background: #403434;
    }

    .thrColHybHdr #shadow-container .container {
        background: #928179;
        border-bottom: 1px solid #1d1717;
       border-right: 1px solid #1d1717;
        padding: 10px;
    }
	
	  .thrColHybHdr #gallerycontainer{
	padding: 0px;
	margin: 0px;
	}
	
	#clientcontainer{
	background: #ffffff;
	text-align: center;
	float: auto;
	padding: 10px 10px 10px 10px;
	margin: 0px;
	}
	
	#flashcontainer{
	background: #ffffff;
	text-align: center;
	font: 100% Myriad Pro, Tahoma, Arial, sans-serif;
	padding: 10px 10px 10px 10px;
	}
	
	#gallerybox{
	padding: 10px 2px 10px 2px;
	float: left;	
	width: 190px;
	margin: 5px 4px 5px 4px;
	text-align: center;
}
	


#rightimg{
	padding: 10px 10px 10px 10px;
	float: right;	
	font-size: 10px;
	font-weight: bold;
	text-align: center;
}


#leftimg{
	padding: 10px 10px 10px 10px;
	float: left;	
	font-size: 10px;
	font-weight: bold;
	text-align: center;
}

#centerimg{
	padding: 10px 10px 10px 10px;
	float: auto;
	text-align: center;	
	font-size: 10px;
	font-weight: bold;
}

#footimg{
	padding: 10px 4px 4px 4px;
	float: left;	
	font-size: 10px;
	text-align: center;
}

#code {
	margin-left: auto;
	margin-right: auto;
	float: none;
	background-color: #FFFFFF; 
	font-size: 12px;
	color: #000000;
	width: 450px;
	padding: 10px 5px 10px 5px;
	
}

.book {
	margin-left: auto;
	margin-right: auto;
	float: none;
	font-size: 12px;
	color: #000000;
	width: 550px;
	padding: 10px 5px 10px 5px;
	
}

.style1 {
	color: #FFFFFF;
	
	font-size: 14px;
	font-weight: bold;
}

.contactinfo {
	padding: 3px 2px 3px 2px;
	color: #FFFFFF;
	font-size: 10px;
	text-align: center;
	background-color: #663333; 
	/* font-weight: bold; */
}

.testimonial {
	color: #000000;
	font-size: 16px;
	font-style:italic;
}

.testimonial2 {
	color: #000000;
	font-size: 14px;
	font-style:italic;
}

.newstable {
	border: dotted 1px;
	border-collapse: collapse; 
	border-color: #CCC;
	padding: 3px 0px 3px 0px;
}

.newstable td {
	border: dotted 1px;
	border-collapse: collapse; 
	border-color: #CCC;
	padding: 3px 0px 3px 0px;
}

#righttweet{
	padding: 2px 5px 4px 5px;
	float: right;	
}


#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Georgia,Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}	 	

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }


/*This is the code used for the news pages to try and get a wide left nav bar and no right nav bar. If it doesn't work delete all below this */

.thrColHybHdr #shadow-containerN {
    float: left; 
	width: 240px;
	/* above was 135px wide */
    left: 3px;
    top: 3px;
    margin-right: 3px;
	margin-left: 3px;
    margin-bottom: 3px;
}

.thrColHybHdr #shadow-containerN .shadow2,
.thrColHybHdr #shadow-containerN .shadow3,
.thrColHybHdr #shadow-containerN .container {
    position: relative;
    left: -1px;
    top: -1px;
}

    .thrColHybHdr #shadow-containerN .shadow1 {
        background: #7a6262;
    }

    .thrColHybHdr #shadow-containerN .shadow2 {
        background: #594848;
    }

    .thrColHybHdr #shadow-containerN .shadow3 {
        background: #403434;
    }

    .thrColHybHdr #shadow-containerN .container {
        background: #928179;
        border-bottom: 1px solid #1d1717;
       border-right: 1px solid #1d1717;
        padding: 10px;
    }
	
/* Now changes to the main content zone for the newsletter pages */

.thrColHybHdr #mainContentN {
 	margin: 0 0px 0 255px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0px; /* padding here creates white space "inside the box." */
	background: #928179;
} 


/*shadow stuff for main content area */

.thrColHybHdr #mainContentN .shadow2,
.thrColHybHdr #mainContentN .shadow3,
.thrColHybHdr #mainContentN .container {
    position: relative;
    left: -1px;
    top: -1px;
}

    .thrColHybHdr #mainContentN .shadow1 {
        background: #7a6262;
    }

    .thrColHybHdr #mainContentN .shadow2 {
        background: #594848;
    }

    .thrColHybHdr #mainContentN .shadow3 {
        background: #403434;
    }

    .thrColHybHdr #mainContentN .container {
        background: #928179;
        border-bottom: 1px solid #1d1717;
       border-right: 1px solid #1d1717;
        padding: 10px;
    }

