/*------------------------------

-ourclient specific styles
Author: Andrew Sherman
Company: Visual Blaze 
Client: BlastMedia
Date: 06/29/09
Description:
Specific styles for client slider

-------------------------------*/

/*mask -> adding additional styles to #content to create a mask for content*/
#content {
	/*height: 330px;  both set in js file onload
	overflow: hidden;*/
}

/*sliderContainer*/
#clientContainer {
	/*width: 900px;*/ /*set in js file on load*/
	height: 272px;
	/*margin-left: -300px;*/ /*change this value with jquery to move .this left/right*/
}

/*cols for blocks of 4 clients -> required to line up correctly*/
.cCol {
	display: inline;
	width: 300px;
	float: left;
}

/*singular client block*/
.cBlock {
	width: 290px;/*300-10*/
	height: 68px;
	margin: 0px !important;/*reset*/
	}
	.cBlock span {
		font-size: 11px;
	}
	.cBlock img {
		padding-right: 10px;
	}
	.cBlock a {
		text-decoration: none;
		font-weight: bold;
		font-size: 12px;
	}
	.cBlock a:hover {
		text-decoration: underline;
	}
	.cBlock span strong {
		padding-right: 11px;
		background: url(../images/ourClientTextDot2.png) no-repeat center right;
	}


/*sliderBtns*/
p#sliderBtns {
	display: none;/*show only if js is enabled*/
	margin-top: 15px;
	background: url(../images/ourClientBtnDiv2.png) no-repeat center center;
	clear: both;
	}
	p#sliderBtns a {
		text-transform: uppercase; 
		font-family: "arial black",arial;
		font-weight: bold;
		letter-spacing: 1px;
		font-size: 11px;
		text-decoration: none;
	}
	p#sliderBtns a:hover {
		text-decoration: underline;
	}
	p#sliderBtns a#prevBtn {
		margin-left: 50px;
	}
	p#sliderBtns a#nextBtn {
		margin-left: 30px;
	}
	/*styling for links when at start/end of clientList*/
	p#sliderBtns a.inactive {
		color: #bebfc1;
		cursor: default;
	}
	p#sliderBtns a:hover.inactive {
		text-decoration: none;
	}
	
	
