/* NAME: student-testimonials.css */
/* LOCATION: http://luc.edu/media/home/stylesheets/ */

/* audio player CSS ////////////////////////////////////////////////*/

.bg-white { background-color: #FFFFFF; }

div.jp-audio,
div.jp-audio-stream,
div.jp-video {

	/* Edit the font-size to counteract inherited font sizing.
	 * Eg. 1.25em = 1 / 0.8em
	 */
	margin-top: 10px;
	font-size:1.25em; /* 1.25em for testing in site pages */ /* No parent CSS that can effect the size in the demos ZIP */
	font-family:Verdana, Arial, sans-serif;
	line-height:1.6;
	color: #ccc;
}

div.jp-video-full {
	/* Rules for IE6 (full-screen) */
	width:480px;
	height:270px;
	/* Rules for IE7 (full-screen) - Otherwise the relative container causes other page items that are not position:static (default) to appear over the video/gui. */
	position:static !important; position:relative;
}

/* The z-index rule is defined in this manner to enable Popcorn plugins that add overlays to video area. EG. Subtitles. */
div.jp-video-full div div {
	z-index:1000;
}

div.jp-video-full div.jp-jplayer {
	top: 0;
	left: 0;
	position: fixed !important; position: relative; /* Rules for IE6 (full-screen) */
	overflow: hidden;
}

div.jp-video-full div.jp-gui {
	position: fixed !important; position: static; /* Rules for IE6 (full-screen) */
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	z-index:1001; /* 1 layer above the others. */
}

div.jp-video-full div.jp-interface {
	position: absolute !important; position: relative; /* Rules for IE6 (full-screen) */
	bottom: 0;
	left: 0;
}

div.jp-interface {
	position: relative;
	width:100%;
}


/* @group CONTROLS */

div.jp-controls-holder {
	clear: both;
	margin:0 auto;
	position: relative;
	overflow:hidden;
	top:-8px; /* This negative value depends on the size of the text in jp-currentTime and jp-duration */
}

div.jp-interface ul.jp-controls {
	list-style-type:none;
	margin:0;
	padding: 0;
	overflow:hidden;
}

div.jp-audio ul.jp-controls { float: left; display: block; margin: 0 0 0 0; width: 15px; }

div.jp-audio-stream ul.jp-controls {
	width: 142px;

}

div.jp-video div.jp-type-single ul.jp-controls {
	width: 78px;
	margin-left: 200px;
}

div.jp-video div.jp-type-playlist ul.jp-controls {
	width: 134px;
	margin-left: 172px;
}
div.jp-video ul.jp-controls,
div.jp-interface ul.jp-controls li {
	display:inline;
	float: left;
}
div.jp-interface ul.jp-controls a {
	display:block;
	overflow:hidden;
	text-indent:-9999px;
}
div.jp-interface ul.jp-controls a.in-active { display: none; }
a.jp-play,
a.jp-pause {
	width:15px;
	height:15px;
}

a.jp-play {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 0 no-repeat;
}
a.jp-play:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -41px 0 no-repeat;
}
a.jp-pause {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -23px no-repeat;
}

a.jp-pause:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -42px -23px no-repeat;
}

a.jp-stop, a.jp-previous, a.jp-next {
	width:28px;
	height:28px;
	margin-top:6px;
}

a.jp-stop {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -83px no-repeat;
	margin-left:10px;
}

a.jp-stop:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -29px -83px no-repeat;
}

a.jp-previous {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -112px no-repeat;
}
a.jp-previous:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -29px -112px no-repeat;
}

a.jp-next {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -141px no-repeat;
}
a.jp-next:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -29px -141px no-repeat;
}

/* @end */

/* @group progress bar */

div.jp-audio div.jp-progress {
	float: left;
	display: block;
	margin: 0px 5px;
	width: 75%;
	max-width: 75%;
	height:7px;
}
div.jp-seek-bar {
	margin-left: 2px;
	margin-top: 5px;
	background: #E2E2E2;
	width:0px;
	height:100%;
	cursor: pointer;
}
div.jp-seek-bar, div.jp-progress, div.jp-play-bar { overflow: visible!important; }
div.jp-play-bar {
	position: relative;
	background: #890037;
	width:0px;
	height:100%;
}

div.jp-play-bar span {
	position: absolute;
	right: -5px;
	margin-top: -3px;
	border-radius: 5px;
	z-index: 50;
	width: 10px;
	height: 10px;
	background: #cccccc;
	display: block; 
-webkit-box-shadow: 2px 2px 5px rgba(50, 50, 50, 0.75);
-moz-box-shadow:    2px 2px 5px rgba(50, 50, 50, 0.75);
box-shadow:         2px 2px 5px rgba(50, 50, 50, 0.75);
}

/* The seeking class is added/removed inside jPlayer */
div.jp-seeking-bg {
	background: url("jplayer.blue.monday.seeking.gif");
}

/* @end */

/* @group volume controls */


a.jp-mute,
a.jp-unmute,
a.jp-volume-max {
	width:18px;
	height:15px;
	margin-top:12px;
}

div.jp-audio div.jp-type-single a.jp-mute,
div.jp-audio div.jp-type-single a.jp-unmute {
	margin-left: 210px;	
}
div.jp-audio div.jp-type-playlist a.jp-mute,
div.jp-audio div.jp-type-playlist a.jp-unmute {
	margin-left: 154px;
}

div.jp-audio-stream div.jp-type-single a.jp-mute,
div.jp-audio-stream div.jp-type-single a.jp-unmute {
	margin-left:10px;
}

div.jp-audio a.jp-volume-max,
div.jp-audio-stream a.jp-volume-max {
	margin-left: 56px;	
}

div.jp-video a.jp-mute,
div.jp-video a.jp-unmute,
div.jp-video a.jp-volume-max {
	position: absolute;
	top:12px;
	margin-top:0;
}

div.jp-video a.jp-mute,
div.jp-video a.jp-unmute {
	left: 50px;
}

div.jp-video a.jp-volume-max {
	left: 134px;
}

a.jp-mute {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -170px no-repeat;
}
a.jp-mute:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -19px -170px no-repeat;
}
a.jp-unmute {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -60px -170px no-repeat;
	display: none;
}
a.jp-unmute:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -79px -170px no-repeat;
}
a.jp-volume-max {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -186px no-repeat;
}
a.jp-volume-max:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -19px -186px no-repeat;
}

div.jp-volume-bar {
	position: absolute;
	overflow:hidden;
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -250px repeat-x;
	width:46px;
	height:5px;
	cursor: pointer;
}
div.jp-audio div.jp-volume-bar {
	top:37px;
	left:330px;
}
div.jp-audio-stream div.jp-volume-bar {
	top:37px;
	left:92px;
}
div.jp-video div.jp-volume-bar {
	top:17px;
	left:72px;
}
div.jp-volume-bar-value {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -256px repeat-x;
	width:0px;
	height:5px;
}

/* @end */

/* @group current time and duration */

div.jp-audio div.jp-time-holder {
	float: right;
	display: block;
	line-height: 15px;
	color:#BBBBBB;
}
div.jp-current-time,
div.jp-duration {
	font-size:.64em;
}
div.jp-current-time {
	float: left;
	display:inline;
}
div.jp-duration {
	float: right;
	display:inline;
	text-align: right;
}

div.jp-video div.jp-current-time {
	margin-left:20px;
}
div.jp-video div.jp-duration {
	margin-right:20px;
}

/* @end */

/* @group playlist */

div.jp-title {
	font-weight:bold;
	text-align:center;
}

div.jp-title,
div.jp-playlist {
	width:100%;
	background-color:#ccc;
	border-top:1px solid #009be3;
}
div.jp-type-single div.jp-title,
div.jp-type-playlist div.jp-title,
div.jp-type-single div.jp-playlist {
	border-top:none;
}
div.jp-title ul,
div.jp-playlist ul {
	list-style-type:none;
	margin:0;
	padding:0 20px;
	font-size:.72em;
}

div.jp-title li {
	padding:5px 0;
	font-weight:bold;
}
div.jp-playlist li {
	padding:5px 0 4px 20px;
	border-bottom:1px solid #eee;
}

div.jp-playlist li div {
	display:inline;
}

/* Note that the first-child (IE6) and last-child (IE6/7/8) selectors do not work on IE */

div.jp-type-playlist div.jp-playlist li:last-child {
	padding:5px 0 5px 20px;
	border-bottom:none;
}
div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
	list-style-type:square;
	list-style-position:inside;
	padding-left:7px;
}
div.jp-type-playlist div.jp-playlist a {
	color: #333;
	text-decoration: none;
}
div.jp-type-playlist div.jp-playlist a:hover {
	color:#0d88c1;
}
div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
	color:#0d88c1;
}

div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove {
	float:right;
	display:inline;
	text-align:right;
	margin-right:10px;
	font-weight:bold;
	color:#666;
}
div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove:hover {
	color:#0d88c1;
}
div.jp-type-playlist div.jp-playlist span.jp-free-media {
	float:right;
	display:inline;
	text-align:right;
	margin-right:10px;
}
div.jp-type-playlist div.jp-playlist span.jp-free-media a{
	color:#666;
}
div.jp-type-playlist div.jp-playlist span.jp-free-media a:hover{
	color:#0d88c1;
}
span.jp-artist {
	font-size:.8em;
	color:#666;
}

/* @end */

div.jp-video-play {
	width:100%;
	overflow:hidden; /* Important for nested negative margins to work in modern browsers */
	cursor:pointer;
	background-color:rgba(0,0,0,0); /* Makes IE9 work with the active area over the whole video area. IE6/7/8 only have the button as active area. */
}
div.jp-video-270p div.jp-video-play {
	margin-top:-270px;
	height:270px;
}
div.jp-video-360p div.jp-video-play {
	margin-top:-360px;
	height:360px;
}
div.jp-video-full div.jp-video-play {
	height:100%;
}
a.jp-video-play-icon {
	position:relative;
	display:block;
	width: 112px;
	height: 100px;

	margin-left:-56px;
	margin-top:-50px;
	left:50%;
	top:50%;

	background: url("jplayer.blue.monday.video.play.png") 0 0 no-repeat;
	text-indent:-9999px;
}
div.jp-video-play:hover a.jp-video-play-icon {
	background: url("jplayer.blue.monday.video.play.png") 0 -100px no-repeat;
}





div.jp-jplayer audio,
div.jp-jplayer {
	width:0px;
	height:0px;
}

div.jp-jplayer {
	background-color: #000000;
}





/* @group TOGGLES */

/* The audio toggles are nested inside jp-time-holder */

ul.jp-toggles {
	list-style-type:none;
	padding:0;
	margin:0 auto;
	overflow:hidden;
}

div.jp-audio .jp-type-single ul.jp-toggles {
	width:25px;
}
div.jp-audio .jp-type-playlist ul.jp-toggles {
	width:55px;
	margin: 0;
	position: absolute;
	left: 325px;
	top: 50px;
}

div.jp-video ul.jp-toggles {
	margin-top:10px;
	width:100px;
}

ul.jp-toggles li {
	display:block;
	float:right;
}

ul.jp-toggles li a {
	display:block;
	width:25px;
	height:18px;
	text-indent:-9999px;
	line-height:100%; /* need this for IE6 */
}

a.jp-full-screen {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -310px no-repeat;
	margin-left: 20px;
}

a.jp-full-screen:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -30px -310px no-repeat;
}

a.jp-restore-screen {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -60px -310px no-repeat;
	margin-left: 20px;
}

a.jp-restore-screen:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -90px -310px no-repeat;
}

a.jp-repeat {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -290px no-repeat;
}

a.jp-repeat:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -30px -290px no-repeat;
}

a.jp-repeat-off {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -60px -290px no-repeat;
}

a.jp-repeat-off:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -90px -290px no-repeat;
}

a.jp-shuffle {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') 0 -270px no-repeat;
	margin-left: 5px;
}

a.jp-shuffle:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -30px -270px no-repeat;
}

a.jp-shuffle-off {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -60px -270px no-repeat;
	margin-left: 5px;
}

a.jp-shuffle-off:hover {
	background: url('/media/home/images/jplayer.sprite-forwhitebg.png') -90px -270px no-repeat;
}


/* @end */

/* @group NO SOLUTION error feedback */

.jp-no-solution {
	padding:5px;
	font-size:.8em;
	background-color:#eee;
	border:2px solid #009be3;
	color:#000;
	display:none;
}

.jp-no-solution a {
	color:#000;
}

.jp-no-solution span {
	font-size:1em;
	display:block;
	text-align:center;
	font-weight:bold;
}
#testimonials #content-slider-testimonials .student-image { background: #FFFFFF; text-align: center; }
#testimonials { height: auto; overflow: hidden; }
#testimonials.canvas { overflow: visible; }
#testimonials .row { margin-bottom: 0px; }
#testimonials.full .row .span12{ background: #000000; }
#testimonials h3.testimonials-headline { margin: 0px; font-size: 30px; }
#testimonials .bigger, #testimonials p.bigger, #testimonials em.bigger { font-family: "myriad-pro", Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.7; }
#testimonials .bigger a, #testimonials p.bigger a, #testimonials em.bigger a { font-weight: bold; }
.testimonials-padding { padding: 40px 0; }
.student-testimonial { color: #000000; }
.student-testimonial h3 { margin-bottom: 3px; line-height: 16px; font-size: 16px; }
.student-testimonial h4, .container h4.student-title, h4.student-title { margin: 0 0 5px; font-weight: normal; font-size: 16px; }
.student-testimonial blockquote, blockquote.student-quote { border: none; padding: 0; margin: 5px 0; font-size: 12px; }
.student-testimonial blockquote.student-quote, blockquote.student-quote { font-family: "myriad-pro",sans-serif; font-size: 14px; line-height: 1.7; }
.full .student-testimonial { width: 220px; text-align: center; color: #ffffff;}
.three-column .student-testimonial { margin-bottom: 10px; width: 200px; color: #000000;}
.three-column .student-testimonial.first-slide { margin-left: 50px; }
.full .student-testimonial.first-slide { margin-left: 145px; }
.full .student-testimonial .student-info { text-align: left; }
.two-column .student-testimonial { width: 200px; }
.two-column .student-testimonial.first-slide { margin-left: 40px; }

/*wide*/
@media (min-width: 1200px){
	.full .student-testimonial { margin-left: 105px; }
	.full .student-testimonial.first-slide { margin-left: 180px; }
	.two-column .student-testimonial { margin-bottom: 10px; width: 200px; }
	.two-column .student-testimonial.first-slide { margin-left: 100px; }
	.three-column .student-testimonial.first-slide { margin-left: 140px; }	
}

/* mobile portrait and very narrow */
@media (max-width: 479px){
	#testimonials { height: 450px; }
	#testimonials.full .row { text-align: center; }
	.full .student-testimonial.first-slide { margin: 0 auto; }
	.student-testimonial { display:none; }
	.student-testimonial.first-slide { display:block; }
	.student-testimonial div.student-image { height: 230px; overflow: hidden;  }
	.full .student-testimonial .student-image { margin-top: 10px; }
	.three-column .student-testimonial.first-slide,
	.two-column .student-testimonial.first-slide { margin-left: 10%; width: 80%; }
}

/* mobile landscape */
@media only screen 
and (min-width : 480px)
and (max-width: 767px) {
	#testimonials { height: 300px; }
	.student-testimonial { display:none; }
	.student-testimonial.first-slide { display:block; margin-left: 0; }
	.student-testimonial div.student-image { height: 200px; overflow: hidden;  }
	.three-column .student-testimonial,
	.two-column .student-testimonial,
	.full .student-testimonial,
	.student-testimonial { position: relative; width: 100%; }
	.full .student-testimonial.first-slide { margin-left: 35px; }
	.full .student-testimonial { text-align: left; }
	.student-testimonial .student-info { padding: 10px 0; background: #FFF; opacity: 1;}
	#content-slider-testimonials-portrait .student-info h4.student-name { color: #EEE !important; }
	.full .student-testimonial  .student-info { background: #000000; }
	.full .student-testimonial .student-image { margin-top: 10px; background: transparent; }
}

/* tablet landscape */
@media only screen (max-width: 1024px) {
	
}

@media (max-width: 979px) and (min-width: 768px)
 {
	#testimonials.two-column { height: 420px; }
	.full .student-testimonial.first-slide { margin-left: 160px; }	
	.full .student-testimonial.last-slide { display: none; }	
	.three-column .student-testimonial.last-slide,
	.two-column .student-testimonial { display:none; }
	.two-column .student-testimonial.first-slide { position: relative; display:block; margin-left: 30px; width: 90%; }
	.two-column .student-testimonial div.student-image { height: 200px; overflow: hidden;  }
	.three-column .student-testimonial { margin-left: 85px; }
}
