html {
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 12px;
	color: white;
	height: 100%;
	background: white;
}

body {
	margin: 0;
}

#scroll-limiter {
	width: 100%;
	min-width: 1060px;
	overflow: hidden;
}

.page-scroller {
	overflow: hidden;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s ease-in-out;
	-moz-transition: -moz-transform 0.5s ease-in-out;
	-ms-transition: -ms-transform 0.5s ease-in-out;
	-o-transition: -o-transform 0.5s ease-in-out;
	transition: transform 0.5s ease-in-out;
}

.js .page-scroller {
	width: 10000%;
}

.page {
	position: relative;
	float: left;
	width: 95%;
	min-width: 1060px;
	height: 760px;
	min-height: 900px;
	margin: 30px;
	background: rgb(32, 32, 32) url('../img/paper.png') 50% 50%;
	background: url('../img/paper.png'), -webkit-gradient(linear, 0 0, 0 100%, from(rgb(40, 40, 40)), to(rgb(32, 32, 32)));
	background: url('../img/paper.png'), -webkit-linear-gradient(top, rgb(40, 40, 40), rgb(32, 32, 32));
	background: url('../img/paper.png'), -moz-linear-gradient(top, rgb(40, 40, 40), rgb(32, 32, 32));
	background: url('../img/paper.png'), -ms-linear-gradient(top, rgb(40, 40, 40), rgb(32, 32, 32));
	background: url('../img/paper.png'), -o-linear-gradient(top, rgb(40, 40, 40), rgb(32, 32, 32));
	background: url('../img/paper.png'), linear-gradient(to bottom, rgb(40, 40, 40), rgb(32, 32, 32));
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-inner {
	position: absolute;
	width: 960px;
	height: 720px;
	top: 50%;
	left: 50%;
	margin: -360px 0 0 -480px;
	background: url('../img/charity-man.png') no-repeat bottom right;
}

.border-top {
	border-top: 4px solid;
}

.a2hw {
	text-transform: uppercase;
	display: block;
	margin-top: 0.5em;
}

h1 {
	background: url('../img/wpa-pinfold.png') no-repeat right top;
	font: normal 58px/50px sans-serif;
	margin: 0 0 150px 0;
	padding-top: 15px;
}

h1 span {
	border-top: 4px solid;
}

a {
	color: white;
	text-decoration: none;
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	-ms-transition: 0.1s;
	-o-transition: 0.1s;
	transition: 0.1s;
}

.current,
a:hover {
	color: rgb(255, 255, 64);
}

img {
	display: block;
}

p {
	margin: 0 0 1em 0;
}

p.border-top {
	padding-top: 0.5em;
}

.content {
	float: left;
	width: 680px;
}

.column-1 {
	float: left;
	width: 280px;
	margin-right: 12px;
}

.column-2 {
	float: left;
	width: 376px;
	margin-right: 12px;
}

.column-2 img {
	margin-bottom: 12px;
	float:left;
}

.column-2-1 {
	float: left;
	width: 182px;
	margin-right: 12px;
}

.column-2-2 {
	float: left;
	width: 182px;
}

.nav {
	float: left;
	width: 87px;
	margin-right: 12px;
}

.nav ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.nav a {
	display: block;
	border-top: 4px solid;
	padding: 2px 0;
}

table {
	table-layout: fixed;
	border-collapse: collapse;
	margin-bottom: 12px;
	width:100%;
}

label {
	display: block;
	margin-bottom: 12px;
	padding-top: 0.5em;
}

input,
button,
textarea {
	display: inline-block;
	height: 22px;
	border: none;
	padding: 0 3px;
	margin: 0 0 12px 0;
	background: white;
	color: black;
	font: normal 12px/12px 'Helvetica Neue', Helvetica, sans-serif;
}

.register {
	border-top: 4px solid;
	float: left;
	width: 180px;
	padding: 2px 0;
}

.register input {
	width: 125px;
}

.register button {
	width: 45px;
	margin-right: -45px;
}

sup {
	line-height: 0px;
	}

button {
	cursor: pointer;
}

td {
	vertical-align: top;
}

td:first-child {
	width: 75px;
	padding-top: 4px;
}

td:last-child {
	font-size: 16px;
  }

tr:first-child td {
	padding-top: 12px;
}

.thumbs {
	float: left;
	width: 100%;
	overflow: hidden;
}

.thumbs .lightbox {
	margin: 0;
}

.thumbs div {
	cursor: pointer;
	float: left;
	margin: 0 12px 12px 0;
}

.thumbs .lightbox-data {
	display: none;
}

.thumbs .sold,
.thumbs .reserved {
	position: relative;
	overflow: hidden;
}

.thumbs .sold::after,
.thumbs .reserved::after {
	content: 'Sold';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	padding: 0 2px;
	text-align: center;
	background: #dd0000;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: 50px 50px;
	-moz-transform-origin: 50px 50px;
	-ms-transform-origin: 50px 50px;
	-o-transform-origin: 50px 50px;
	transform-origin: 50px 50px;
}

.thumbs .reserved::after {
	content: 'Reserved';
}

.thumbs .sold img {
	opacity: 0.2;
}

.thumbs .sold img:hover {
	opacity: 1;
}

#lightbox {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 1300px;
	background: transparent;
	background: rgba(0, 0, 0, 0.8);
	-ms-filter: 'progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000,endColorstr=#CC000000)';
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000,endColorstr=#CC000000);
	zoom: 1;
	cursor: pointer;
}

#lightbox .lightbox-inner {
	position: absolute;
	top: 100px;
	left: 50%;
	width: 700px;
	padding: 12px;
	margin: 0 0 0 -350px;
	background: white;
}

#lightbox .lightbox-image {
	width: 700px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#lightbox .lightbox-caption {
	padding: 12px;
	color: rgb(32, 32, 32);
}

#lightbox .lightbox-caption strong {
	display: block;
}

#lightbox .lightbox-caption p {
	width: 462px;
}

#lightbox .lightbox-caption p:first-child {
	float: right;
	width: 190px;
	margin: 0 0 24px 24px;
}

#lightbox .lightbox-inner::after {
	content: '×';
	position: absolute;
	top: -10px;
	right: -10px;
	color: white;
	background: black;
	border: 2px solid white;
	border-radius: 50%;
	padding: 1px 6px 3px 6px;
	font-size: 20px;
	line-height: 20px;
	box-shadow: 1px 1px 5px black;
	vertical-align: middle;
}

#self-portraits,
#vip-shots {
	width: 90%;
}

#days-to-go {
	width: 376px;
	height: 311px;
	background: rgba(255, 255, 255, 0.1);
	margin-bottom: 12px;
}

.enquiries input,
.enquiries textarea {
	width: 100%;
}

.enquiries textarea {
	padding: 3px;
	height: 182px;
}