


/* Gallery styles */

#gallery{	
	/* The width of the gallery */
	width:960px;
	overflow:hidden;
	margin: 0px auto 0px auto;
}

#slides{
	/* This is the slide area */
	height:500px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:960px;
	overflow:hidden;
}

.slide{
	float:left;
}

#slider{
	/* This is the container for the thumbnails */
	height:50px;
}

.home-slider-th {
	padding:2px 0px 0px 185px;
}

ul.slider{
	margin:0;
	padding: 0;
}

li.sliderItem{
	/* Every thumbnail is a li element */
	width:150px;
	display:inline-block;
	list-style:none;
	height:50px;
	overflow:hidden;
	margin:0px 15px 0px 15px;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(img/pic_bg.png) no-repeat;
}

li.act,li.act:hover{
	/* The active state of the thumb */

	
}

li.design{
	/* The active state of the thumb */
	height:50px;
	width:150px;
	background:url(images/home_slider/design-th.png) no-repeat;
	background-position: 0 0px;
}

li.solutions{
	/* The active state of the thumb */
	height:50px;
	width:150px;
	background:url(images/home_slider/solutions-th.png) no-repeat;
	background-position: 0 0px;
}

li.marketing{
	/* The active state of the thumb */
	height:50px;
	width:150px;
	background:url(images/home_slider/marketing-th.png) no-repeat;
	background-position: 0 0px;
}

li.advantage{
	/* The active state of the thumb */
	height:50px;
	width:150px;
	background:url(images/home_slider/advantage-th.png) no-repeat;
	background-position: 0 0px;
}
li.design.act,li.design.act:hover,li.design.inact:hover{
	/* The active state of the thumb */
	background:url(images/home_slider/design-th.png) no-repeat;
	background-position: 0 -50px;
}

li.solutions.act,li.solutions.act:hover,li.solutions.inact:hover{
	/* The active state of the thumb */
	background:url(images/home_slider/solutions-th.png) no-repeat;
	background-position: 0 -50px;
}

li.marketing.act,li.marketing.act:hover,li.marketing.inact:hover{
	/* The active state of the thumb */
	background:url(images/home_slider/marketing-th.png) no-repeat;
	background-position: 0 -50px;

}

li.advantage.act,li.advantage.act:hover,li.advantage.inact:hover{
	/* The active state of the thumb */
	background:url(images/home_slider/advantage-th.png) no-repeat;
	background-position: 0 -50px;

}

li.act a{
	cursor:default;
}


li.sliderItem a{
	display:block;
	height:50px;
	width:150px;
	padding-top:0px;
}

a.slider img{
	border:none;
}


