/*
	Name: Marty Batten, Web & UI Designer
	Date: February 2010
	Author: Marty Batten
	Author URI: http://martyb.com
*/

/* 
	UPDATE [20.05.10]:
	
	- Added -webkit-font-smoothing: antialiased;
	- Added Opera transitions
	
	UPDATE [26.03.10]:
	
	- Increased font size under work
	- Removed unused styles
	- Updated link styles
	- Updated Firefox transforms
*/

html {
	-webkit-font-smoothing: antialiased;
}

/* Font */

@font-face {
	font-family: 'QlassikMediumRegular';
	src: url('../fonts/Qlassik_TB.eot');
	src: local('Qlassik Medium Regular'), local('QlassikMedium'), url('../fonts/Qlassik_TB.ttf') format('truetype');
}

.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
}
     
::selection {
	color: rgba(106, 23, 122, 0.9);
	background: rgba(19, 40, 54, 0.8);
}

::-moz-selection {
	color: #6a177a;
	background: #132836;
}
	
body {
	background: #090f13 url('../images/bground-tile.jpg') repeat top center;
	background-attachment: fixed;
	text-align: center;
	font: 62.5%/1.5 "HelveticaNeue-Light", HelveticaNeue, Helvetica, Arial, sans-serif;
	color: rgba(255, 255, 255, 0.3);
}

#content {
	background: url('../images/bground.jpg') no-repeat top center;
	background-attachment: fixed;
	width: 900px;
	margin: 0 auto;
	text-align: left;
	margin-bottom: 50px; 
}

a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

a:hover {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

a:active {
	color: rgba(255, 255, 255, 0.5);
	position: relative;
	top: 1px;
}

p {
	font-size: 1.6em;
	line-height: 26px;
	margin-bottom: 1.4em;
	text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 1px;
}

p.intro {
	text-align: center;
	font-family: 'QlassikMediumRegular', HelveticaNeue, Helvetica, Arial, sans-serif;
	font-size: 3em;
	line-height: 32px;
	padding-bottom: 25px;
	width: 800px;
	margin: 0 auto;
}

span.amp {
  font-family: Baskerville, Palatino, "Book Antiqua", serif;
  font-style: italic;
}

#header-wrapper {
	height: 150px;
	z-index: 20;
}

header {
	padding-top: 20px;
	background: url("../images/header-bground2.png") bottom center;
	width: 900px;
	height: 105px;
	margin: 0 auto;
	z-index: 20;
}

h1, h2, h3 {
	text-align: center;
}

h1 {
	font-size: 4em;
	font-weight: normal;
	letter-spacing: 1px;
	color: #fff;
	font-family: 'QlassikMediumRegular', HelveticaNeue, Helvetica, Arial, sans-serif;
}

h1 a, h1 a:hover {
	text-decoration: none;
	color: #fff;
}

h2 {
	font-size: 3em;
	font-weight: normal;
	color: #fff;
	letter-spacing: 1px;
	font-family: 'QlassikMediumRegular', HelveticaNeue, Helvetica, Arial, sans-serif;
}

h3 {
	text-transform: uppercase;
	letter-spacing: 15px;
	margin-top: -5px;
}

#content ul {
	float: left;
	margin-bottom: 20px;
}

#content ul li {
	float: left;
	width: 300px;
	text-align: center;
}

#content ul li cite {
	display: block;
	font-style: normal;
	font-size: 1.5em;
	font-weight: bold;
}

#content ul li cite a {
	text-decoration: none;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
}

#content ul li cite a:hover {
	text-decoration: none;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}

#content ul li span {
	display: block;
	font-size: 0.8em;
	font-weight: normal;
}

#content ul.last li {
	float: left;
	width: 900px;
	text-align: center;
}

/* Animation v2 */

#content ul li a img {
	-moz-transition: all 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: -o-transform 0.3s ease;
}

#content ul li a img:hover {
	-moz-transform: scale(1.03) /* rotate(2deg) */;
	-webkit-transform: scale(1.03) rotate(2deg);
	-o-transform: scale(1.03) rotate(2deg);
}

#content ul li:nth-child(odd) a img:hover {
	-moz-transform: scale(1.03) /* rotate(-2deg) */;
	-webkit-transform: scale(1.03) rotate(-2deg);
	-o-transform: scale(1.03) rotate(-2deg);
}

/* / Animation v2 */

section {
	text-align: center;
	margin: 20px 0 0px 0;
}

section p {
	margin-bottom: 10px;
}

/* Get in touch */

form {
	text-shadow: rgba(255, 255 255, 0.8) 1px 1px 1px;
}

form label {
	font-size: 1.6em;
	text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 1px;
}

form input.textbox {
	font-size: 1.6em;
	padding: 7px;
	width: 350px;
	border: 1px dotted rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	background: transparent;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

form input.emailbox {
	font-size: 1.6em;
	padding: 7px;
	width: 150px;
	border: 1px dotted rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	background: transparent;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-right: 5px;
}

button {
	border: 0;
	text-indent: -9999px;
	width: 112px;
	height: 36px;
	background: url(../images/button.png) 0 -77px no-repeat;
	cursor: pointer;
	position: relative;
	top: -2px;
}

button:hover {
	background: url(../images/button.png) 0 0 no-repeat;
}

button:active {
	background: url(../images/button.png) 0 -38px no-repeat;
}

#note {
	font-size: 1.6em;
	text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 1px;
	margin: 10px 0 15px 0;
	color: #fff;
}

div.notification_ok {
	text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 1px;
}

/* Footer */

footer {
	margin-top: 50px;
}

footer p {
	text-align: center;
}

footer p:first-child {
	color: rgba(255, 255, 255, 0.2);
}

footer a {
	color: rgba(255, 255, 255, 0.2);
}

footer p span {
	display: block;
	font-size: 0.8em;
	width: 500px;
	margin: 0 auto;
	line-height: 1.5em;
	margin-top: 10px;
}

footer .spacer {
	margin: 0 2px 0 2px;
}