#product_items {
    text-align: center;
}

#product_items .product_item {
    position: relative;
    border: 1px solid #666;
    border-radius: 10px;
    vertical-align: top;
    margin: 10px;
    background-color: #fff;
    width: 280px;
    overflow: hidden;
	display: inline-block;
	box-shadow: 0 3px 8px #888;
	z-index: 800;
}

#product_items .product_item .product_item_image {
    position: relative;
	border-bottom: 1px solid #666;
}

#product_items .product_item .product_item_image a {
    display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

#product_items .product_item .product_item_image img {
	width: 100%;
	max-width: 280px;
}

#product_items .product_item .product_item_name {
	color: #bfdd19;
	background-color: #000;
    padding: 5px;
    font-size: 18px;
	font-weight: 800;
	height: 64px;
	border-bottom: 1px solid #666;
}

#product_items .product_item .product_item_no, #product_items .product_item .product_item_price {
	font-family: Arial;
    padding: 5px;
    font-size: 17px;
    background-color: #fff;
    color: #000;
}

#product_items .product_item .product_item_no {
	font-weight: bolder;
}

.search_holder {
	position: relative;
}

#search_results {
	padding:10px;
	background-color:#fff;
	border:1px solid #000;
	font-size:16px;
	display:none;
	position:absolute;
	left:0;
	top:40px;
	height:200px;
	overflow-y:scroll;
	width:400px;
	z-index: 1000;
}