@charset "UTF-8";
/* CSS Document */

/*	Less Framework 4
	http://lessframework.com
	by Joni Korpi
	License: http://opensource.org/licenses/mit-license.php	*/


/*	Resets
	------	*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, 
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup, 
menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
	display: block;
}

a img {border: 0;}



/*	Typography presets
	------------------	*/
h2, h3 {
	font-family: @maven;
	margin-top: 15px;
}

h2 {
	font-weight: bold;
	font-size: 24px;
	color: @light-gray;
	margin-bottom: 10px;
}
h3 {
	font-weight: bold;
	font-size: 16px;
	color: @white;
}
p {
	font-family: @maven;
	font-size: 14px;
	margin-top: 5px;
	font-weight: medium;
	color: @white;
}


/* Selection colours (easy to forget) */

::selection 	 	{background: rgb(255,255,158);}
::-moz-selection 	{background: rgb(255,255,158);}
img::selection 		{background: transparent;}
img::-moz-selection	{background: transparent;}
body {-webkit-tap-highlight-color: rgb(255,255,158);}

@dark-gray: #333333; 
@med-gray: #4D4D4D;
@light-gray: #666666;
@white: #CCCCCC;

@maven: 'Maven Pro', sans-serif;

@dark-gray-tex: url(../_img/texture_darkGray.gif); 
@med-gray-tex: url(../_img/texture_medGray.gif);


/*		Default Layout: 992px. 
		Gutters: 24px.
		Outer margins: 48px.
		Leftover space for scrollbars @1024px: 32px.
-------------------------------------------------------------------------------
cols    1     2      3      4      5      6      7      8      9      10
px      68    160    252    344    436    528    620    712    804    896    */

body {
	/*padding: 72px 48px 84px;*/
	color: rgb(60,60,60);
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
	background-image: @dark-gray-tex;
	background-color: @dark-gray;
}

/*#container{
	position: relative;
	background-color: #FFF;
	width: 1024px;
	height: 650px;
	margin-left: auto;
	margin-right: auto;
	overflow-y:hidden;
}*/

nav{
	height: 100%;
	width: 56px;
	color: @light-gray;
	background-image: @dark-gray-tex;
	position: fixed;
	left: 0px;
	top: 0px;
	padding-left: 7px;
	padding-right: 7px;
	text-align: center;
	float:left;
	z-index: 2;
	-webkit-box-shadow: 1px 0px 7px rgba(0,0,0,0.3);
	border-right: solid 1px @med-gray;
}

#logo {
	height: 75px;
	text-align: center;
	line-height: 70px;
	-webkit-transition: opacity .5s linear;
}
#logo img{
	margin-right: auto;
	margin-left: auto;
}
.navArrow{
	line-height: 43px;
}

li{
	font-family: @maven;
	font-size: 24px;
	line-height: 37px;
	color: @med-gray;
	list-style: none;
}

li a{
	-webkit-transition: color .25s linear;
}


.navIndex {
	display: block;
	height: 40px;
	border-top: solid 2px @med-gray;
}

.navIndex a{
	color: @med-gray;
	text-decoration: none;
	
}
.navArrow {
	display: block;
	height: 40px;
}

#prevArrow {
	border-top: solid 2px @med-gray;
}

#nextArrow {
	border-top: solid 2px @med-gray;
	border-bottom: solid 2px @med-gray;
}
#infoButton {
	margin-top: 100px;
	height: 60px;
	border-top: solid 2px @med-gray;
	border-bottom: solid 2px @med-gray;
}

#descriptionBox{
	position: fixed;
	left: 70px;
	top: 0px;
	width: 204px;
	height: 100%;
	background-image: @med-gray-tex;
	padding-left: 30px;
	padding-right: 30px;
	float: left;
	z-index: 1;
	-webkit-box-shadow: 1px 0px 7px rgba(0,0,0,0.3);
	border-right: solid 1px @light-gray;
}

.description{
	position: absolute;
	top: 0px;
	height: 690px;
	margin-right: 30px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: opacity .5s linear;
}
#description0{
	opacity: 1;
}

.imageDescription2, .imageDescription3{
	opacity: .3;
}

.imageDescription1, .imageDescription2, .imageDescription3{
	-webkit-transition: opacity .5s linear;
}

#wrapper{
	position: absolute;
	left: 334px;
	top: 0px;
	width: 690px;
	height: 699px;
	overflow:auto;
}

#scroller{
	float:left;
	width: 2070px;
}


#scroller ul {
	float: left;
	display: block;
	width:2070px;
	clear:left;
}

#scroller li {
	display: block;
	float: left;
	width: 690px;
	height: 690px;
	border-top: solid 2px @white;
	border-bottom: solid 2px @white;
	margin-bottom: 5px;
	overflow: hidden;
	
}



#scroller img{
	height: 100%;
	-webkit-box-shadow: 1px 0px 7px rgba(0,0,0,0.3);
}




/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
	body {
		width: 712px;
		padding: 48px 28px 60px;
	}
}



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {
	
	body {
		width: 252px;
		padding: 48px 34px 60px;
	}
	
}



/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436    */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	body {
		width: 436px;
		padding: 36px 22px 48px;
	}
	
}