/* Orginally had all the content styles on the same sheet but pulled the following out as they only applied to the index page, this sheet is linked AFTER the main content sheet so that these styles overide */


div#picSpace {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 160px;
	background-image: url(../images/boho_girl.jpg);
	background-repeat: no-repeat;
	height: 170px;
	width: 160px;
}
/* To place image into and padding moves text over */



ul#beadsList {
	list-style-type: none;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
}
ul#beadsList li {
	padding-bottom: 7px;
}
ul#beadsList a {
	text-decoration: none;
	color: #666666;
}
ul#beadsList a:hover {
	text-decoration: underline;
	color: #666666;
}
/* Simple styling for the ul that will display images with javascript */



.hide {
	display: none;
}
/* Class to apply to images in ul and hide them, needed for javascript toggle */



ul#beadsList img {
	position: absolute;
	height: 115px;
	width: 115px;
	left: 175px;
	top: 265px;
}
/* Pull images out of ul and places them on top of each other in the correct position on page */