


/*  _______________________________________

	01 RESET
    _______________________________________  */



/* remember to define focus styles! */
:focus {
	outline: 0;
}

ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}



/*  _______________________________________

	02 GRID
    _______________________________________  */



/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/


/* Containers
----------------------------------------------------------------------------------------------------*/

.container {
	margin:0px;
	padding:0px;
	position:relative;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_260,
.grid_540,
.grid_820 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 20px;
}

/* Grid >> 3 Columns
----------------------------------------------------------------------------------------------------*/

.container .grid_260 {
	width:260px;
}

.container .grid_540 {
	width:540px;
}

.container .grid_820 {
	width:820px;
}

/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}



/*  _______________________________________

	03 GENERAL STYLES
    _______________________________________  */



html {
	overflow:hidden; /* Hides scrolling bars in IE */
}

img {
	border:none; 
	margin:0;
	padding:0;
}


	
	#mask {	/* Second container required, the 100% is multiplied by the number of sections, here 20 */
		width:100%;
		height:2000%; /* Value for 20 sections (20 X 100%), it's divided with the "item" class */ 
	}
	.item {
		width:100%;
		height:5%; /* Each section has a 5% width for a maximum of 20 sections (20 X 5% = 100% of the total width) */
	}
	.content { /* Container for content */
		width:100%;
		height:100%;
		margin:0 auto;
		position:relative;
		float:left;
	}

.scroll-pane {
	height:380px;
	margin:0px;
	padding:0px;
	width:560px;
}
.jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	background: #DDDDDD;
}
.jScrollPaneDrag {
	position: absolute;
	background: #333333 url("../img/icons/drag.png") no-repeat 50% 50%;
	cursor: pointer;
	overflow: hidden;
}
.jScrollPaneTrack, .jScrollPaneDrag {
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
}
	





/*  _______________________________________

	05 IMAGES
    _______________________________________  */



/*
Here are the styles applied to the small thumnbails (see the "about me" section)
*/

.thumbnail {
	width:260px;
	height:70px;
	padding:0;
	margin:0 0 25px 0;
}

	.thumbnail li {
		float:left;
		display:block;
	}
	
.thumb {
	margin-right:25px;
}



/*
Styles for the arrows displayed at the bottom of each section
*/

.arrow {
	position:absolute;
	bottom:0;
	left:0px;
}
	.previous a, .next a {
		display:block;
		width:26px;
		height:17px;
	}
	
		.previous {
			float:left;
			margin-left:0px;
			left:0;
			background:url("previous2.png") no-repeat left bottom;
		}
		.next {
			float:right;
			background:url("next2.png") no-repeat right bottom;
		}
			.previous a:hover, .next a:hover {
				text-decoration:none;
			}
		.previous span, .next span {
			display:none;
		}



/



