/*

Title:		jShowOff: a jQuery Content Rotator Plugin
Author:		Erik Kallevig
Version:	0.1.2
Website:	http://ekallevig.com/jshowoff
License: 	Dual licensed under the MIT and GPL licenses.

*/


/*-- jShowOff module styles --*/


.jshowoff {
	width: 100%;
	margin: 10px 0px;
	background-image:url(../images/quotes.png);
	background-repeat:no-repeat;
}

.jshowoff div {	
	width: 100%; /* 280 */
	margin: 0px 14px 12px 14px;
}
.jshowoff div p { width:94%; }	

/* styles for control buttons */
p.jshowoff-controls {
	position:relative;
	bottom:0;
	overflow: auto;
	left: 32px;
}
.jshowoff-controls a { /* .jshowoff-slidelinks a,  */
	font-size:.9em;
	display: block;
	background-color: #333;
	color: #fff;
	float: left;
	width:32%;
	text-align:center;
	margin-right:2%;
	margin-top:1%;
	margin-bottom:1%;
	
}
.jshowoff-controls a:last-child {
	margin-right:0;
}

/* link styles */	
.jshowoff-controls a:hover {
	background-color:#a3d6ff; 
	color:#000; 
}
	


.jshowoff-controls img {
	position:relative;
	bottom:1px;
}

/* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen and (max-width: 64em) { 
	.jshowoff-controls img { display:none; }
} 


