/* ********** RESET ********** */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%; }
	
body	{ }
ol, ul  { list-style: none; }

:focus  { outline: 0; }
/* ********** RESET ********** */




/* MAIN TAGS ################################### */	

body {
  overflow-x: hidden;
	}
		
#main {
	width: 100%;
	position: absolute;
	margin-top: 150px;
	z-index:1;
	}
	

	
/* FANCY SLIDER */
.fancy_thumbnail_slider_container {
	height: 473px;  /* total height with the next/prev buttons */  
	position: relative;
	}

.fancy_thumbnail {
	width: 100%;
	height: 423px; 			/* .inner-height * row amount */
	position: absolute;  	/* important (relative or absolute) */
	left: 0px;
	top: 25px;
	}
	
.fancy_thumbnail li {
	float: left;
	margin: 0 1px 1px 0;
	width: 210px; height: 140px;
	/* IMPORTANT = don't add border*/
	position: relative;
	cursor: pointer;
	}
	
.fancy_thumbnail li .inner {
	width: 210px; height: 140px;
	}
	
.fancy_thumbnail li .caption {
	width: 210px; height: 140px;
	position: absolute;
	top: 0px; left: 0px;
	display: none;
	}
	
.fancy_thumbnail li .caption a {
	display: block;
	width: 210px; height: 140px;
	}
	
	
.fancy_thumbnail_next, .fancy_thumbnail_prev {
	width: 51px;
	height: 16px;
	display:block;
	margin: 0 auto;
	margin-left: -25px;
	text-indent: -9999px;
	}
	
.fancy_thumbnail_next {
	background: url(images/down.png);
	position: absolute;
	bottom: 0px;
	left: 50%;
	}	
	
.fancy_thumbnail_prev {
	background: url(images/up.png);
	position: absolute;
	top: 0px;
	left: 50%;
	}
	
.fancy_thumbnail_next:hover, .fancy_thumbnail_prev:hover {
	background-position: bottom left;
	}

.disable { display: none; }  /* if next/prev button disable */
