html
{
	background:#eee;
}
.catalog-box {
	float:left;
	width: 33%;
	margin-bottom: 10px;
}
a.catalog-item-link {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 300px;
	text-decoration: none;
}
a.catalog-item-link.new-item:before {
	content: url(images/category-new.png);
	display: block;
	position: absolute;
	z-index: 4;
	top: 0px;
	right: -2px;
}
a.catalog-item-link.coming-item:before {
	content: url(images/category-coming.png);
	display: block;
	position: absolute;
	z-index: 4;
	top: 0px;
	right: -2px;
}
a.catalog-item-link.sale-item:before {
	content: url(images/category-sale.png);
	display: block;
	position: absolute;
	z-index: 4;
	top: 0px;
	right: -2px;
}
a.catalog-item-link.hot-item:before {
	content: url(images/category-hot.png);
	display: block;
	position: absolute;
	z-index: 4;
	top: 0px;
	right: -2px;
}
.catalog-item {
	position: relative;
	z-index: 1;
	width: 300px;
	border: solid 1px #ddd;
	-webkit-box-shadow:0 0 4px rgba(0,0,0,0.3);
	   -moz-box-shadow:0 0 4px rgba(0,0,0,0.3);
	        box-shadow:0 0 4px rgba(0,0,0,0.3);
	-moz-border-radius:6px;
	     border-radius:6px;
}
.catalog-item:before {
	content: '';
	display: block;
	position: absolute;
	z-index: -2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow:0 2px 6px rgba(0,0,0,0.3);
	   -moz-box-shadow:0 2px 6px rgba(0,0,0,0.3);
	        box-shadow:0 2px 6px rgba(0,0,0,0.3);
	-moz-border-radius:100px / 10px;
	     border-radius:100px / 10px;
}
.catalog-item:after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: #fff;
	-moz-border-radius:6px;
	     border-radius:6px;
}
.item-preview {
	width: 300px;
	height: 300px;
	text-align: center;
}
.item-descr {
	height: 26px;
	padding: 6px 12px;
	font-family: pt-regular;
	font-size: 12pt;
	line-height: 26px;
	background: #ebebeb;
	border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
	-moz-border-bottom-left-radius:3px;
	-moz-border-bottom-right-radius:3px;
}
.catalog-item .item-rating {
	width: 23px;
	height: 23px;
	float: right;
	background: url(images/category-star.png) 0 0 no-repeat;
}
.catalog-item .item-rating div {
	height: 23px;
	background: url(images/category-star.png) 0px -23px no-repeat;
}
a.catalog-item-link .item-descr {
	color: #777;
}
a.catalog-item-link:hover .catalog-item:after {
	background: #fffdf4;
}
a.catalog-item-link:hover .item-descr {
    background: #fcee29;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcee29', endColorstr='#fad11b');
	background: -webkit-gradient(linear, left top, left bottom, from(#fcee29), to(#fad11b));
	background: -moz-linear-gradient(top, #fcee29 0%, #fad11b);
	text-shadow:
		0px -1px 1px rgba(000,000,000,0.2),
		0px 1px 0px rgba(255,255,255,0.3);
}

#related {
	padding: 20px 0;
	background: #fff;
	min-height: 100px;
	border-top: solid 1px #c6c6c6;
}
.related-decor {
	position: relative;
	margin-bottom: 0px;
}
.related-decor:before {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	left: 0;
	width: 100%;
	top: 0px;
	height: 100px;
	-webkit-box-shadow:0 0 6px rgba(0,0,0,0.5);
	   -moz-box-shadow:0 0 6px rgba(0,0,0,0.5);
	        box-shadow:0 0 6px rgba(0,0,0,0.5);
	-moz-border-radius:300px / 10px;
	     border-radius:300px / 10px;
}
