/* Style for Store Item */

.item{
  width: 510px;
  display: block;
  border: 1px black solid;
  padding: 7px;
  background: #e82;  
 }
 
.item .label{
	font-weight: bold;
	font-size: .9em;
	display: block;
	width: 10em;
	}
	
.item input{
	margin-top: 10px;
	}

.image{
  float:left;
  width: 280px;
  margin: 10px;
  border: 1px black solid;
  clear: none;
}

.desc{
  float: right;
  font-size: 1em;
  display: block;
  margin: 5px;
  width: 189px;
  clear: none;
  font-weight: bold;
}

.price{
	display: block;
	color: #600;
	font-size: 1.3em;
	margin-top: .8em;
	}
	
.ship{
	display: block;
	margin-bottom: 10px;
	}

/* ////////// Page content blocks /////////// */

/*box for primary page content. First in the source code. Contains wide margins to accomodate absolutely positioned elements later in the code.*/
#content{
width: 527px;
float: right;
padding: .6em;
margin: 0px;
clear: none;
padding-top: 0px;
}

/*Style elements in the page body*/
#bar h4{
  text-align: center;
  margin: 0px;
}
#title{
  display: block;
  padding: 3px;
  float: left;
  clear: none;
  font-weight: bold;
}


#label{
  padding: 3px;
  background: #600;
  color: white;
  width: 150px;
  float: right;
  clear: none;
}

/*box for tertiary page content. Is optional and next in the code source. Usually contains ads,or sidebars and is usually positioned absolutely as the  right column*/
#content3{
  float: left;
  width: 150px;
  padding: .6em;
  clear: both;
  text-align: center;
}
/*box for other items*/
.item2{
  width: 30%;
  height: 160px;
  float: left;
  margin: 5px 4px 0px 5px;
  padding: 3px;
  border: 1px black solid;
  background: #e82;
}
.item2 img{
  width: 150px;
  margin: 2px;
}

.item2 p{
  display: block;
  margin: 2px;
  font-size: 0.9em;
}
.item2 a{
  text-decoration: none;
  color: black;
}
.item2 a:hover{
  text-decoration: underline;
}







