@charset "utf-8";
/* CSS Document */



* {
	margin: 0;
	padding:0;
	border-collapse:collapse;
}
body {
	font-family:"Times New Roman", Times, serif;
	font-size: 100%;
	background: #FFFFFF; /*#cc0000 red. It was #993333; burgundy, was grey #666666;*/
	margin: 2px 0 0 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults. I added 2px margin-top to reveal a slither of burgundy. */
	margin: 0;
	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;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color:#FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:0;
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image:url(../images/yelbacker02.jpg); /*puts background on left column*/
	background-repeat:repeat-y;
	font-family:"Times New Roman", Times, serif;
	font-size: 100%;
}
/* #header {
	background: #DDDDDD;
	background-image:url(../images/type780x130.gif);
	background-repeat:no-repeat;
	padding:  10ppx 20px; 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. I added a flash image to the heading, but kept a background image, too. */
	/*height: 130px;  was 110px, 130px is the size of the flash.swf in the header
}*/

.otherlink {
	color:#FFFFFF;
	text-decoration:none;
}
/*#header h1 {
	 font: 400% "Times New Roman", Times, serif;
	color:#FFFFFF;
	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: 10px 0;  using padding instead of margin will allow you to keep the element away from the edges of the div 
	line-height:130%;
	width: 400px;

}*/
/*#header p {
	color:#FFFFFF;
	padding: 5px 0;
	width: 400px;
}*/
#header {
background-image:url(../images/type780x130.gif); background-repeat: no-repeat; padding: 10px 20px;
}




#logobox {
width: 300px; background-color:#000000; border:double 4px  #666666; text-align:center; float:left; margin-right:10px;
}

#logobox h1 {
font-size: 44px; color:#FFFFFF; padding: 10px 5px 0px 5px; margin: 0; text-align:center;
}

#logobox a {
font-size: 44px; color:#FFFFFF; padding: 10px 5px 0px 5px; margin: 0;
}

#logobox p {
font-size: 20px; color:#FFFFFF; background-color: #cc0000; padding: 2px 3px 5px 5px; margin:0; letter-spacing: 5px; text-align:center;
}

#apDiv1 {

	width:369px;
	height:90px; /*was height:98px - changed height when updating xmas sale in header;*/
	z-index:1;
	color:#FFFFFF;
	background-color:#669900;
	padding: 3px 3px 6px 3px;
	font-size:90%;
	float: left;
}

#navcontainer ul {
	padding: .2em 0;
	margin: 0;
	/*	list-style-type: none; moved to list in the template page*/
	background-color: #000000; /* is now black was #036 blue*/
	color: #FFF;
	width: 100%;
	font: normal 90% "Times New Roman", Times, serif;
	text-align: center;
}
#image_links li {
	padding: 0 2px 0 0;
}
#navcontainer li {
	display: inline;
}
#navcontainer li a {
	text-decoration: none;
	background-color: #000000; /* is now black was #036 blue*/
	color: #FFF;
	padding: .2em 1em;
	border-right: 1px solid #fff;
}
#navcontainer li a:hover {
	background-color:#6699CC;	  /* periwinkle, is was burgundy #993333 on hover, before it was light blue #369*/
	color: #fff;
}
/*for lists on each page not menu*/
#pagelist ul {
	list-style-type:square;
	list-style-position: inside;
	padding: 0;
	margin: 0;
}
#pagelist li {
	padding: 5px 0 0 0;
}
/*image gallery list*/
#image_links li {
	display: inline;
}
#sidebar1 {
	margin: 0;
	padding:0;
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	border-collapse:collapse;
	background-color:#ffE680; /*was #FFFFcc or ffff99* yellow/
/*A background image of yellow paper is in the container div and shows up in the left column */
}
#insidebar1 {
	/*This div inside the sidebar has the padding so that it doesn't go beyond the boundaries of the out div, sidebar1 */
	padding: 10px 20px 15px 20px;
}
#insidebar1 p, a {
	text-decoration:none;
	color:#000000; /* removes underlining on email link */
}
#mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 40px 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent h1 {
	padding: 10px 0;
}
#mainContent p {
	padding: 2px 0;
	line-height: 150%;
	font-size: 100%;
}
.firstpara p {
	font-size:210%;
}
#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
}
#footer p {
	color:#FFFFFF;
	font-size:80%;
	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 */
}
#footer a {
	color:#FFFFFF;
	text-decoration:none;
}
.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;
}
img {
	/*border-left:none;
	border-top:none;
	border-bottom: 3px solid #999999; to add a grey shadow to the images 
	border-right: 3px solid #999999;*/
	border:none;
	padding: 0;
	margin: 3px;
	background-color:#FFFFFF;
	border-collapse:collapse;
}
#we_print {
	background-color:#333333;
	color: #00ccff;
	padding: 15px 25px;
	height: 180px;
	margin: 5px 0 0 0;
} /*styles the box on page one shwoing what e print */
#we_print ul {
	list-style-type:disc;
	border:double 1px #00ccff;
	width: 200px;
	padding: 5px;
}
#we_print li {
	display:block;
	padding: 0 0 15px 0;
	list-style-type:disc;
}
/*box on fineart page holding art examples*/
.fineart {
	width: 480px;
	background-color:#ff9999;
	padding: 5px;
	margin:0 0 20px 0;
}

.aboutlinks{
border: none;
margin: 2px 2px 2px 0;

}










/*preloads images see http://www.liewcf.com/blog/archives/2006/04/preload-images-with-css/*/
#preloadedImages {
	width: 0px;
	height: 0px;
	display: inline;
	background-color:#000000;
 background-image: url (images/70px_baby.jpg);
 background-image: url (images/70px_bw.jpg);
 background-image: url (images/70px_deboss.jpg);
 background-image: url (images/70px_ephem.jpg);
 background-image: url (images/70px_fort.jpg);
 background-image: url (images/70px_lovely.jpg);
 background-image: url (images/70px_party.jpg);
 background-image: url (images/70px_pretty.jpg);
 background-image: url (images/70px_sew.jpg);
 background-image: url (images/70px_snack.jpg);
 background-image: url (images/70px_spec.jpg);
 background-image: url (images/70px_wed.jpg);
 background-image: url (images/large_baby.jpg);
 background-image: url (images/large_bw.jpg);
 background-image: url (images/large_deboss.jpg);
 background-image: url (images/large_ephem.jpg);
 background-image: url (images/large_fort.jpg);
 background-image: url (images/large_lovely.jpg);
 background-image: url (images/large_party.jpg);
 background-image: url (images/large_pretty.jpg);
 background-image: url (images/large_sew.jpg);
 background-image: url (images/large_snack.jpg);
 background-image: url (images/large_spec.jpg);
 background-image: url (images/large_wed.jpg);
 background-image: url (images/wedding2haikus.jpg);
 background-image: url (images/hand.jpg);
 background-image: url (images/weddingcynthia.jpg);
 background-image: url (images/2lyndas_head.jpg);
 background-image: url (images/dress.jpg);
 background-image: url (images/old-printer.gif);
 background-image: url (images/2lyndas_head.jpg);
 background-image: url (images/close.jpg);
 background-image: url (images/closelabel.jpg);
 background-image: url (images/nextlabel.jpg);
 background-image: url (images/prevlabel.jpg);
}
