#shop-css {
	top: 1px;
}

#page-shop .page-inner {
	background-image: url("assets/bg.jpg");
}

#page-shop #shop-window {
	width: 840px;
	height: 371px;
	background-image: url("assets/window.png");
	position: absolute;
	top: 144px;
	left: 50%;
	margin-left: -420px;
}

/* Buttons */
#shop-buttons {
  height: 25px;
  list-style-type: none;
  position: absolute;
  text-align: center;
  top: 60px;
  width: 100%;
  font-size: 0;
}

#shop-buttons li {
	display: inline-block;
	margin-right: 44px;
}

#shop-buttons li.last {
	margin-right: 0;
}

#shop-buttons a {
	position: static;
	font-size: 18px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

	-webkit-transition-property: color;
	-moz-transition-property: color;
	-ms-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;

	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

#shop-buttons a:link,
#shop-buttons a:visited {
	color: #83d3eb;
	font-weight: 600;
}

#shop-buttons .active a:link,
#shop-buttons .active a:visited {
	color: #FFF;
}

#shop-window .pagination {
	position: absolute;
	top: 305px;
	width: 100%;
}

/* Content */
#shop-content {
	width: 836px;
	height: 287px;
	position: absolute;
	top: 75px;
	left: 2px;
	overflow: hidden;
}

#shop-content ul {
	list-style-type: none;
	height: 287px;
	text-align:  center;
	width: 100%;
}

#shop-content .use-iscroll li {
	width: 836px;
	height: 287px;
	float: left;
	position: relative;
}

#shop-content li .item {
	position: relative;
	font-size: 0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	width: 298px;
	height: 148px;
	display: inline-block;
	top: 46px;
}

#shop-content li .item-1 {
	margin-left: 32px;
}

#shop-content a.item {
	-webkit-transition-property: transform;
  -webkit-transition-duration: 0.3s;
	-moz-transition-property: transform;
  -moz-transition-duration: 0.3s;
	transition-property: transform;
  transition-duration: 0.3s;
}

#shop-content a.item:hover {
	-moz-transform: scale(.95);
	-webkit-transform: scale3d(.95, .95, .95);
	-o-transform: scale(.95);
	transform: scale(.95);
}