/* ==== ==== ==== COMMON PAGE GRID FORMAT BEGIN ==== ==== ==== */
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  /* Removes padding behavior on widths */
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.frame {
  background-color:#FFF;
}

[class*='bit-1'] {
  float: left;
  padding: 0 3px;
  width:100%;
}

[class*='bit-articlePageContainer'] {
  float: left;
  padding: 0 3px;
  width:100%;
}

[class*='bit-2'] {
  float: left;
  padding: 0 3px;
  width:100%;
}

[class*='bit-3'] {
  float: left;
  padding: 0 3px;
  width:100%;
}

[class*='bit-4'] {
  float: left;
  padding: 0 3px;
  width:100%;
}

/* Floats last ".bit-" to the right */
[class*='bit-']:last-of-type {
  padding-right: 3px;
  float: right;
}

/* Clearfix */
.frame:after {
  content: "";
  display: table;
  clear: both;
}

/* Main Widths */
.bit-1  {width: 100%;}
.bit-articlePageContainer  {width: 74%;}
.bit-2  {width: 50%;}
.bit-3  {width: 33.33%;}
.bit-4  {width: 25%;}
/* ==== ==== ==== COMMON PAGE GRID FORMAT END ==== ==== ==== */

/* ==== ==== ==== INDEX NAVIGATION SECTION BEGIN ==== ==== ==== */
	#menu, #menu ul {
		margin: 0;
		padding: 0 0 0 0;
		list-style: none;
}

  /* -- MENU ATTRIBUTES */
	#menu {						/* -- MENU HOLDER */
		max-width: 100%;
		min-width: 482px;
		height:auto;
		z-index:500;
		position: absolute;
		margin: 0px auto;  /* -- MENU FROM TOP */
		border: none;
	}

 /* -- CLEAR FLOATS */
	#menu:before,
	#menu:after {
		content: "";
		display: table;
	}
	
	#menu:after {
		clear: both;
	}
	
	#menu {
		zoom:1;
	}
 /* -- CLEAR FLOATS */

 /* -- MENU ATTRIBUTES */
	#menu li {				/*-- MENU PADDING CONTROLLER --*/
		position: relative;
		float:right;
		margin:0 0 0 12px; /*-- MARGIN BETWEEN MENU ITEMS --*/
	}
	
	#menu a {				/*-- MENU TEXT AND PADDING--*/
		float: left;
		padding: 2px 8px 2px 8px;
		color: #8e2146;
		text-transform: none;
		text-decoration: none;
	}
	
	#menu li:hover > a {				/*-- MENU TEXT AND PADDING HOVER--*/
		color: #FFF;
		background-image: -moz-linear-gradient(#530620, #8e2146); 
		background-image: -webkit-gradient(linear, left top, left bottom, from(#530620), to (#8e2146));	
		background-image: -webkit-linear-gradient(#530620, #8e2146);	
		background-image: -o-linear-gradient(#530620, #8e2146);
		background-image: -ms-linear-gradient(#530620, #8e2146);
		background-image: linear-gradient(#530620, #8e2146);
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-moz-box-shadow: 0 1px 1px #73072c, 0 1px 0 #530620 inset;
	}
	
	*html #menu li a:hover { /* IE6 only */
		color: #FFF;
		background-color: #73072c;
	}
		
	#menu ul {			/*HIDDEN CODE*/
		margin: 20px 0 0 0;
		_margin: 20; /*IE6 only*/
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 27px;
		left: 0;
		z-index: 1;    
		background: #73072c;
		background: -moz-linear-gradient(#73072c, #530620);
		background-image: -webkit-gradient(linear, left top, left bottom, from(#73072c), to(#530620));
		background: -webkit-linear-gradient(#73072c, #530620);    
		background: -o-linear-gradient(#73072c, #530620);	
		background: -ms-linear-gradient(#73072c, #530620);	
		background: linear-gradient(#73072c, #530620);
		-moz-box-shadow: 0 -1px rgba(255,255,255,.3);
		-webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3);
		box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;  
	}

	#menu li:hover > ul {			/*DROPDOWN OPACITY*/
		opacity: .92;
		visibility: visible;
		margin: 0;
	}
	
	#menu ul ul {
		top: 0;
		left: 133px;
		margin: 0 0 0 0px;
		_margin: 0; /*IE6 only*/
		-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
		-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
		box-shadow: -1px 0 0 rgba(255,255,255,.3);		
	}
	
	#menu ul li {		/*	DROPDOWN MENU DIVIDERS	*/
		display: block;
		width: 100%;
		border: 0;
		_line-height: 0; /*IE6 only*/
		-moz-box-shadow: 0 1px 0 #8e2146, 0 1px 0 #530620;
		-webkit-box-shadow: 0 1px #8e2146, 0 1px 0 #530620;
		box-shadow: 0 1px 0 #8e2146, 0 2px 0 #530620;
	}
	
	#menu ul li:last-child {   		/*	DROPDOWN MENU LAST ITEM STABILISER	*/
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;    
	}
	
	#menu ul a {    		/*	DROPDOWN MENU TEXT	*/
		color:#FFF;
		padding: 6px 0px 8px 12px;
		width: 100%;
		_height: 14px; /*IE6 only*/
		display: block;
		white-space: nowrap;
		float: none;
		text-decoration:none;
	}
	
	#menu ul a:hover {    	/*	DROPDOWN MENUS	*/
		background-color: #530620;
		z-index:500;
		background-image: -moz-linear-gradient(#8e2146,#73072c);	
		background-image: -webkit-gradient(linear, left top, left bottom, from(#8e2146), to(#73072c));
		background-image: -webkit-linear-gradient(#8e2146, #73072c);
		background-image: -o-linear-gradient(#8e2146, #73072c);
		background-image: -ms-linear-gradient(#8e2146, #73072c);
		background-image: linear-gradient(#8e2146, #73072c);
		
	}
	
	#menu ul li:first-child > a { 		/*	DROPDOWN MENU FIRSTLINE RADIUS CORRECTOR	*/
		-moz-border-radius: 6px 6px 0 0;
		-webkit-border-radius: 6px 6px 0 0;
		border-radius: 6px 6px 0 0;
	}
	
	#menu ul li:first-child > a:after {
		content: '';
		position: absolute;
		left: 40px;
		top: -6px;
/*		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid #73072c;			*/
	}
	
	#menu ul ul li:first-child a:after {
		left: -6px;
		top: 50%;
		margin-top: -6px;
		border-left: 0;	
	}
	
	#menu ul li:first-child a:hover:after {
		border-bottom-color: #530620; 
	}
	
	#menu ul ul li:first-child a:hover:after {
		border-right-color: #530620; 
		border-bottom-color: transparent; 	
	}
	
	#menu ul li:last-child > a {
		-moz-border-radius: 0 0 6px 6px;
		-webkit-border-radius: 0 0 6px 6px;
		border-radius: 0 0 6px 6px;
	}
/* ==== ==== ==== INDEX NAVIGATION SECTION END ==== ==== ==== */

/*  ==== ==== ==== INDEX PAGE FRONT PANEL BEGIN ==== ==== ==== */

/* ---- FRONT PANEL CONTAINER ---- */
.da-slider{
	position: absolute;
	width: 100%;
	min-width: 420px;
	max-width:1020px;
	height:100%;
	min-height:300px;
	margin: 0px 0px;
	overflow: hidden;
	border-bottom: 2px solid #8e2146;
	background-color:#000;
}
/* ---- FRONT PANEL CONTAINER ---- */

/* ---- FRONT PANEL INSIDE SLIDE ---- */
.da-slide{
	position: absolute;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
	text-align: left;
}
/* ---- FRONT PANEL INSIDE SLIDE ---- */


/* ---- FRONT PANEL DOTS ---- */
.da-dots{
	width: 20%;
	position: absolute;
	text-align: center;
	left: 40%;
	bottom: 0px;
	z-index: 40;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.da-dots span{
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #8e2146;
	margin: 8px;
	cursor: pointer;
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.1);
}

.da-dots span.da-dots-current:after{
	display: inline-block;
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 2px;
	left: 2px;
	border-radius: 50%;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(47%,rgba(246,246,246,1)), color-stop(100%,rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
}
/* ---- FRONT PANEL DOTS ---- */

/* ---- FRONT PANEL ARROWS ---- */
.da-arrows{
	width:100%;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.da-arrows span{
	position: absolute;
	top: 50%;
	height: 24px;
	width: 24px;
	border-radius: 50%;

	cursor: pointer;
	z-index: 40;
	opacity:0;
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.1);
}

.da-slider:hover .da-arrows span{
	opacity: 1;
	background-color: #8D8D8D;
}


.da-arrows span:after{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 2px;
	left: 2px;
	background: transparent url(../images/arrows.png) no-repeat top left;
	border-radius: 50%;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.da-arrows span:hover:after{
	box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	opacity: 1;
	background-color: #8e2146;
}


.da-arrows span:active:after{
	box-shadow: 1px 1px 1px rgba(255,255,255,0.1);
}

.da-arrows span.da-arrows-next:after{
	background-position: top right;
}

.da-arrows span.da-arrows-prev{
	left: 12px;
}

.da-arrows span.da-arrows-next{
	right: 12px;
}
/* ---- FRONT PANEL ARROWS END ---- */

.da-slider-fb .da-slide .da-link{
	left: 88.8%;
	opacity: 1;
}

.da-slide .da-link{
	top: 336px; /*depends on p height*/
	position: absolute;
	opacity: 0;
	left: 88.8%;
	border-radius: 10px;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
	color: #FFF;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	border: 2px solid #8f2347;
	padding: 2px 6px 2px 6px;
	font-size: 14px;
	width: 92px;
	text-align: center;
	background: rgba(255,255,255,0.1);
}

.da-slide .da-link:hover{
	background: rgba(255,255,255,0.2);
}


.da-slide-current .da-link{
	left: 88.8%;
	opacity: 1;
	z-index:500;
}




/*  ---- ---- DA SLIDE VALUES BEGIN ---- ---- */
.da-slide h2{
	position: absolute;
	opacity: 0;
	font-size: 28px;
	color: #FFF;
	font-weight: 300;
	width: 50%;
	top: 22px;
	left:60px;
	text-shadow: 2px 2px 2px rgba(0,0,0,1);
	white-space: nowrap;
}
	
.da-slide p{
	position: absolute;
	opacity: 0;
	font-size: 18px;
	color: #FFF;
	font-weight: 300;
	width: 50%;		
	top: 52px;
	left:60px;
	text-shadow: 2px 2px 2px rgba(0,0,0,1);
	white-space: nowrap;
}

.da-slide h3{
	position: absolute;
	opacity: 0;
	font-size: 36px;
	color: #FFF;
	font-weight: 300;
	width: 50%;
	top: 88px;
	left:60px;
	text-shadow: 2px 2px 2px rgba(0,0,0,1);
	white-space: nowrap;
}

.da-slide p2{
	position: absolute;
	opacity: 0;
	font-size: 22px;
	color: #FFF;
	font-weight: 300;		
	width: 50%;
	top: 126px;
	left:60px;
	text-shadow: 2px 2px 2px rgba(0,0,0,1);	
	line-height:1em;
	white-space: nowrap;
}

.da-slide p3{
	position: absolute;
	opacity: 0;
	font-size: 20px;
	color: #FFF;	
	font-weight: 300;
	width: 50%;
	top: 182px;
	left:60px;
	text-shadow: 2px 2px 2px rgba(0,0,0,1);
	line-height:1.3em;
	white-space: nowrap;
}

.da-slide .da-img{
	position: absolute;
	text-align: center;
	opacity: 1;
	width: 100%;
	max-width:1020px;
	min-width:420px;
	top: 0px;
	height: 100%;
	min-height:206px;
	left: 0%; /*60%*/
}

/* ---- DA SLIDE CURRENT VALUES ---- */
.da-slide-current{
	z-index: 30;
}

.da-slide-current h2,
.da-slide-current h3,
.da-slide-current p,
.da-slide-current p2,
.da-slide-current p3{
	position:absolute;
	left: 60px;
	opacity: 1;
	z-index:30;
}

.da-slide-current .da-img{
	left: 0%;
	opacity: 1;
	z-index: 20;
}
/* ---- DA SLIDE CURRENT VALUES ---- */


/* ---- DA SLIDER FB VALUES ---- */
da-slider-fb .da-slide{		
	left: 100%;
}

.da-slider-fb  .da-slide.da-slide-current{
	left: 0px;
}

.da-slider-fb .da-slide h2,
.da-slider-fb .da-slide h3,
.da-slider-fb .da-slide p,
.da-slider-fb .da-slide p2,
.da-slider-fb .da-slide p3{
	left: 60px;
	opacity: 1;
	z-index: 30;
}

.da-slider-fb .da-slide .da-img{
	left: 0%;
	opacity: 1;
	z-index: 20;
}
/* ---- DA SLIDER FB VALUES ---- */

/* ---- DA SLIDE VALUES END ---- */

/* ---- ---- Animation classes and animations ---- ---- */

/* Slide in from the right ============================================= */
.da-slide-fromright h2{
	-webkit-animation: fromRightAnim1 0.5s ease-in;
	-moz-animation: fromRightAnim1 0.5s ease-in;
	-o-animation: fromRightAnim1 0.5s ease-in;
	-ms-animation: fromRightAnim1 0.5s ease-in;
	animation: fromRightAnim1 0.5s ease-in;
}
.da-slide-fromright h3{
	-webkit-animation: fromRightAnim5 0.5s ease-in;
	-moz-animation: fromRightAnim5 0.5s ease-in;
	-o-animation: fromRightAnim5 0.5s ease-in;
	-ms-animation: fromRightAnim5 0.5s ease-in;
	animation: fromRightAnim5 0.5s ease-in;
}
.da-slide-fromright p{
	-webkit-animation: fromRightAnim2 0.6s ease-in;
	-moz-animation: fromRightAnim2 0.6s ease-in;
	-o-animation: fromRightAnim2 0.6s ease-in;
	-ms-animation: fromRightAnim2 0.6s ease-in;
	animation: fromRightAnim2 0.6s ease-in;
}
.da-slide-fromright p2{
	-webkit-animation: fromRightAnim6 0.6s ease-in;
	-moz-animation: fromRightAnim6 0.6s ease-in;
	-o-animation: fromRightAnim6 0.6s ease-in;
	-ms-animation: fromRightAnim6 0.6s ease-in;
	animation: fromRightAnim6 0.6s ease-in;
}
.da-slide-fromright p3{
	-webkit-animation: fromRightAnim7 0.6s ease-in;
	-moz-animation: fromRightAnim7 0.6s ease-in;
	-o-animation: fromRightAnim7 0.6s ease-in;
	-ms-animation: fromRightAnim7 0.6s ease-in;
	animation: fromRightAnim7 0.6s ease-in;
}
.da-slide-fromright .da-link{
	-webkit-animation: fromRightAnim3 0.4s ease-in;
	-moz-animation: fromRightAnim3 0.4s ease-in;
	-o-animation: fromRightAnim3 0.4s ease-in;
	-ms-animation: fromRightAnim3 0.4s ease-in;
	animation: fromRightAnim3 0.4s ease-in;
}
.da-slide-fromright .da-img{
	-webkit-animation: fromRightAnim4 0.4s ease-in;
	-moz-animation: fromRightAnim4 0.4s ease-in;
	-o-animation: fromRightAnim4 0.4s ease-in;
	-ms-animation: fromRightAnim4 0.4s ease-in;
	animation: fromRightAnim4 0.4s ease-in;
}
@-webkit-keyframes fromRightAnim1{
	0%{left: 80%; opacity: 0;}
	100%{left: 60px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim2{
	0%{left: 80%; opacity: 0;}
	100%{left: 60px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-webkit-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-webkit-keyframes fromRightAnim5{
	0%{left: 80%; opacity: 0;}
	100%{left: 60px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim6{
	0%{left: 80%; opacity: 0;}
	100%{left: 60px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim7{
	0%{left: 80%; opacity: 0;}
	100%{left: 60px; opacity: 1;}
}


@-moz-keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-moz-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-moz-keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}


@-o-keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-o-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-o-keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}


@-ms-keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-ms-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-ms-keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}


@keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}

/* Slide out to the right ============================================= */
.da-slide-toright h2{
	-webkit-animation: toRightAnim1 0.4 ease-in;
	-moz-animation: toRightAnim1 0.4 ease-in;
	-o-animation: toRightAnim1 0.4 ease-in;
	-ms-animation: toRightAnim1 0.4 ease-in;
	animation: toRightAnim1 0.4 ease-in;
}
.da-slide-toright h3{
	-webkit-animation: toRightAnim5 0.4 ease-in;
	-moz-animation: toRightAnim5 0.4 ease-in;
	-o-animation: toRightAnim5 0.4 ease-in;
	-ms-animation: toRightAnim5 0.4 ease-in;
	animation: toRightAnim5 0.4 ease-in;
}
.da-slide-toright p{
	-webkit-animation: toRightAnim2 0.4 ease-in;
	-moz-animation: toRightAnim2 0.4 ease-in;
	-o-animation: toRightAnim2 0.4 ease-in;
	-ms-animation: toRightAnim2 0.4 ease-in;
	animation: toRightAnim2 0.4 ease-in;
}
.da-slide-toright p2{
	-webkit-animation: toRightAnim6 0.4 ease-in;
	-moz-animation: toRightAnim6 0.4 ease-in;
	-o-animation: toRightAnim6 0.4 ease-in;
	-ms-animation: toRightAnim6 0.4 ease-in;
	animation: toRightAnim6 0.4 ease-in;
}
.da-slide-toright p3{
	-webkit-animation: toRightAnim7 0.4 ease-in;
	-moz-animation: toRightAnim7 0.4 ease-in;
	-o-animation: toRightAnim7 0.4 ease-in;
	-ms-animation: toRightAnim7 0.4 ease-in;
	animation: toRightAnim7 0.4 ease-in;
}
.da-slide-toright .da-link{
	-webkit-animation: toRightAnim3 0.4s ease-in;
	-moz-animation: toRightAnim3 0.4s ease-in;
	-o-animation: toRightAnim3 0.4s ease-in;
	-ms-animation: toRightAnim3 0.4s ease-in;
	animation: toRightAnim3 0.4s ease-in;
}
.da-slide-toright .da-img{
	-webkit-animation: toRightAnim4 0.4s ease-in;
	-moz-animation: toRightAnim4 0.4s ease-in;
	-o-animation: toRightAnim4 0.4s ease-in;
	-ms-animation: toRightAnim4 0.4s ease-in;
	animation: toRightAnim4 0.4s ease-in;
}
@-webkit-keyframes toRightAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-webkit-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-webkit-keyframes toRightAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}


@-moz-keyframes toRightAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-moz-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-moz-keyframes toRightAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}


@-o-keyframes toRightAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-o-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-o-keyframes toRightAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}


@-ms-keyframes toRightAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-ms-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-ms-keyframes toRightAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}



@keyframes toRightAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@keyframes toRightAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}

/* Slide in from the left ============================================= */
.da-slide-fromleft h2{
	-webkit-animation: fromLeftAnim1 0.4s ease-in;
	-moz-animation: fromLeftAnim1 0.4s ease-in;
	-o-animation: fromLeftAnim1 0.4s ease-in;
	-ms-animation: fromLeftAnim1 0.4s ease-in;
	animation: fromLeftAnim1 0.4s ease-in;
}
.da-slide-fromleft h3{
	-webkit-animation: fromLeftAnim5 0.4s ease-in;
	-moz-animation: fromLeftAnim5 0.4s ease-in;
	-o-animation: fromLeftAnim5 0.4s ease-in;
	-ms-animation: fromLeftAnim5 0.4s ease-in;
	animation: fromLeftAnim5 0.4s ease-in;
}

.da-slide-fromleft p{
	-webkit-animation: fromLeftAnim2 0.48s ease-in;
	-moz-animation: fromLeftAnim2 0.48s ease-in;
	-o-animation: fromLeftAnim2 0.48s ease-in;
	-ms-animation: fromLeftAnim2 0.48s ease-in;
	animation: fromLeftAnim2 0.48s ease-in;
}
.da-slide-fromleft p2{
	-webkit-animation: fromLeftAnim6 0.48s ease-in;
	-moz-animation: fromLeftAnim6 0.48s ease-in;
	-o-animation: fromLeftAnim6 0.48s ease-in;
	-ms-animation: fromLeftAnim6 0.48s ease-in;
	animation: fromLeftAnim6 0.48s ease-in;
}
.da-slide-fromleft p3{
	-webkit-animation: fromLeftAnim7 0.45s ease-in;
	-moz-animation: fromLeftAnim7 0.45s ease-in;
	-o-animation: fromLeftAnim7 0.45s ease-in;
	-ms-animation: fromLeftAnim7 0.45s ease-in;
	animation: fromLeftAnim7 0.45s ease-in;
}
.da-slide-fromleft .da-link{
	-webkit-animation: fromLeftAnim3 0.4s ease-in;
	-moz-animation: fromLeftAnim3 0.4s ease-in;
	-o-animation: fromLeftAnim3 0.4s ease-in;
	-ms-animation: fromLeftAnim3 0.4s ease-in;
	animation: fromLeftAnim3 0.4s ease-in;
}
.da-slide-fromleft .da-img{
	-webkit-animation: fromLeftAnim4 0.4s ease-in;
	-moz-animation: fromLeftAnim4 0.4s ease-in;
	-o-animation: fromLeftAnim4 0.4s ease-in;
	-ms-animation: fromLeftAnim4 0.4s ease-in;
	animation: fromLeftAnim4 0.4s ease-in;
}



@-webkit-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim5{
	0%{ left: -100%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}



@-moz-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-moz-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-moz-keyframes fromLeftAnim5{
	0%{ left: -100%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}



@-o-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-o-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-o-keyframes fromLeftAnim5{
	0%{ left: -100%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-o-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}



@-ms-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-ms-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-ms-keyframes fromLeftAnim5{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@-ms-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}



@keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@keyframes fromLeftAnim5{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}
@keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 60px; opacity: 1; }
}

/* Slide out to the left ============================================= */
.da-slide-toleft h2{
	-webkit-animation: toLeftAnim1 0.4s ease-in;
	-moz-animation: toLeftAnim1 0.4s ease-in;
	-o-animation: toLeftAnim1 0.4s ease-in;
	-ms-animation: toLeftAnim1 0.4s ease-in;
	animation: toLeftAnim1 0.4s ease-in;
}
.da-slide-toleft h3{
	-webkit-animation: toLeftAnim5 0.4s ease-in;
	-moz-animation: toLeftAnim5 0.4s ease-in;
	-o-animation: toLeftAnim5 0.4s ease-in;
	-ms-animation: toLeftAnim5 0.4s ease-in;
	animation: toLeftAnim5 0.4s ease-in;
}

.da-slide-toleft p{
	-webkit-animation: toLeftAnim2 0.4s ease-in;
	-moz-animation: toLeftAnim2 0.4s ease-in;
	-o-animation: toLeftAnim2 0.4s ease-in;
	-ms-animation: toLeftAnim2 0.4s ease-in;
	animation: toLeftAnim2 0.4s ease-in;
}
.da-slide-toleft p2{
	-webkit-animation: toLeftAnim6 0.4s ease-in;
	-moz-animation: toLeftAnim6 0.4s ease-in;
	-o-animation: toLeftAnim6 0.4s ease-in;
	-ms-animation: toLeftAnim6 0.4s ease-in;
	animation: toLeftAnim6 0.4s ease-in;
}
.da-slide-toleft p3{
	-webkit-animation: toLeftAnim7 0.4s ease-in;
	-moz-animation: toLeftAnim7 0.4s ease-in;
	-o-animation: toLeftAnim7 0.4s ease-in;
	-ms-animation: toLeftAnim7 0.4s ease-in;
	animation: toLeftAnim7 0.4s ease-in;
}
.da-slide-toleft .da-link{
	-webkit-animation: toLeftAnim3 0.3s ease-in;
	-moz-animation: toLeftAnim3 0.3s ease-in;
	-o-animation: toLeftAnim3 0.3s ease-in;
	-ms-animation: toLeftAnim3 0.3s ease-in;
	animation: toLeftAnim3 0.3s ease-in;
}
.da-slide-toleft .da-img{
	-webkit-animation: toLeftAnim4 0.4s ease-in;
	-moz-animation: toLeftAnim4 0.4s ease-in;
	-o-animation: toLeftAnim4 0.4s ease-in;
	-ms-animation: toLeftAnim4 0.4s ease-in;
	animation: toLeftAnim4 0.4s ease-in;
}

@-webkit-keyframes toLeftAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-webkit-keyframes toLeftAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@-moz-keyframes toLeftAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-moz-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-moz-keyframes toLeftAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@-o-keyframes toLeftAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-o-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-o-keyframes toLeftAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@-ms-keyframes toLeftAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-ms-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-ms-keyframes toLeftAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@keyframes toLeftAnim1{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim2{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@keyframes toLeftAnim5{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim6{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim7{
	0%{ left: 60px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
/*  ==== ==== ==== INDEX PAGE FRONT PANEL END ==== ==== ==== */



/*  ==== ==== ==== INDEX PAGE ARTIST CAROUSEL BEGIN  ==== ==== ==== */
.artistCarousel-wrapper {				/* WRAPPER */
	position: relative;
	background-color: #FFF;
	height:166px;						/* WRAPPER HEIGHT */
	margin: 0 auto;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.artistCarousel-list {
	list-style-type: none;
	display: none;
}

.no-js .artistCarousel-list {
	display: block;
}

.artistCarousel-horizontal {			/* PADDING FOR INTERNAL VIEWING AREA */
	padding: 10px 40px;
}

.artistCarousel-horizontal ul {		/* DELETES IMAGE EXTENDED OVER EDGE */
	white-space: nowrap;
}

.artistCarousel-horizontal ul li {	/* LINK BLOCKS */
	height: 100%;
	display: inline-block;
}

.artistCarousel-carousel {		/* HIDDEN OVERFLOW */
	height:164px;				/* 	HEIGHT OF INSIDE VIEWER*/
	overflow: hidden;
	position: relative;
}

.artistCarousel-carousel ul {		/* IMAGE LINE POSITION CONTROLLER */
	position: relative;
	display: block;
	list-style-type: none;
	padding: 0;
	margin: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}

.artistCarousel-carousel ul li {		/* WIDTH BETWEEN IMAGES */
	margin:0;
	-webkit-backface-visibility: hidden;
	min-width: 153px;										/*SHOULD BE min-width: 178px;*/

}

.artistCarousel-carousel ul li a {				/*LINK LIST CONTROLLER*/
	display: table;	/*ORIGINALLY INLINE-BLOCK*/
}

.artistCarousel-carousel ul li a img {			/*IMAGE CONTROLLER*/
	display: block; /*ORIGINALLY BLOCK*/
	height:112px;
	padding:0 10px;
	border: none;
	max-width: 100%;
}

.artistholder {						/*TEXT CONTAINER*/
	position:relative;
	padding:3px 0;
	line-height:1.2em;
	text-align:center;
}

.artistCarousel-wrapper.artistCarousel-loading {
	background-image: url(../images/artistCarousel/images_nav/loading.gif);
	background-repeat: no-repeat;
	background-position: center center;
}

.lt-ie8 .artistCarousel-list {
	display: none;
}

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.clr {
	clear: both;
	float: none;
}

.js .fixed-bar {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
}

/* CAROUSEL SHADOW ARTWORK */
.artistCarousel-wrapper:before,
.artistCarousel-wrapper:after{
	content: '';
	position: absolute;
	z-index: -2;
	bottom: 15px;
	left:  15px;
	width: 50%;
	height: 20%;
	border-radius: 0;
	box-shadow: 0 12px 10px rgba(0,0,0,0.7);
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	transform: rotate(-3deg);
}

.artistCarousel-wrapper:after {
	right: 15px;
	left: auto;
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	transform: rotate(3deg);
}
/* CAROUSEL SHADOW ARTWORK */

/* NAVIGATION ARROWS */
.artistCarousel-wrapper nav span {
	position: absolute;
	background: #ddd url(../images/artistCarousel/images_nav/nav.png) no-repeat 4px 3px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	text-indent: -9000px;
	cursor: pointer;
	opacity: 0.8;
}

.artistCarousel-wrapper nav span:hover {
	opacity: 1.0;
	background-color: #8e2146;
}

.artistCarousel-horizontal nav span {
	top: 50%;
	left: 10px;
	margin-top: -11px;
}

.artistCarousel-vertical nav span {
	top: 10px;
	left: 50%;
	margin-left: -11px;
	background-position: -17px 5px;
}

.artistCarousel-horizontal nav span.artistCarousel-next {
	right: 10px;
	left: auto;
	background-position: 4px -17px;
}

.artistCarousel-vertical nav span.artistCarousel-next {
	bottom: 10px;
	top: auto;
	background-position: -17px -18px;
}
/*  ==== ==== ==== INDEX PAGE ARTIST CAROUSEL END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE BODY SECTION BEGIN  ==== ==== ==== */
body {
	width: 100%;
	text-align: center;
	background: #e0e3ec url(../images/bg.png) repeat top left;
	font-family: Calibri,Gill Sans,Gill Sans MT,Myriad Pro,Myriad,Frutiger,Frutiger Linotype,Univers,DejaVu Sans Condensed,Liberation Sans,Nimbus Sans L,Tahoma,Geneva,Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #5D5D5D;
	font-size: 14px;
	line-height:1.4em;	
	overflow-y: scroll;
	clear: both;
}

#containerBody{
	position: relative;
	width: 100%;
	max-width:1020px;
	min-width:584px;
	height:100%;
	margin:0 auto;
	background-color:#e0e3ec;
	background-image:url("images/bg.png") repeat top left;
}
/*  ==== ==== ==== COMMON PAGE BODY SECTION END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE HEADER SECTION BEGIN  ==== ==== ==== */
#containerHeader{
	position: relative;
	width: 100%;
	max-width:1024px;
	min-width:584px;
	height: 50px;
	margin:0;
	background-color:#FFF;
	border-bottom: 2px solid #8e2146;	
	z-index:500;
}
/*  ==== ==== ==== COMMON PAGE HEADER SECTION END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE LOGO BEGIN  ==== ==== ==== */
.headerLogo img {
	position: relative;
	display:block;
	top:3px;
	left:1.2%;
	height: 42px;
	z-index: 500;
	float:left;
}

.headerLogo a:hover img{
	opacity: 0.86;
}
/*  ==== ==== ==== COMMON PAGE LOGO END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE LANGUAGE MENU BEGIN  ==== ==== ==== */
.navigationLanguageBox {
	position:absolute;
	float:right;
	top:0;
	right:0.6%;
	width:30%;
	min-width:320px;
	text-align: center;
	padding: 1px 0 3px 0;
}

#languageMenu, #languageMenu ul{
	margin: 0 auto;
}

.navigationLanguage nav {
	padding:0;
	float:right;
	right:0.7em;
	z-index:500;
}

.navigationLanguage nav ul {
	list-style:inline;
	margin:1 auto;
}

.navigationLanguage nav ul li {
	float:right;
	display:inline;
	padding:0px 4px;				/* SPACE BETWEEN LANGUAGES */
}

.navigationLanguage nav a:link, .navigationLanugage nav a:visited {
	float:right;
	color:#8e2146;
	display: inline;
}

.navigationLanguage nav a:hover {
	float:right;
	color:#c49aa9;
	display:inline;
}

.navigationLanguage nav a:active, .navigationLanguage nav .active a:link, .navigationLanguage nav .active a:visited {
	float:right;
	color: #e2e2e2;
	display: inline;
}
/*  ==== ==== ==== COMMON PAGE LANGUAGE MENU END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE NAVIGATION MENU BEGIN  ==== ==== ==== */
.navigationMenuBox {		
	position:absolute;
	float:right;
  	text-align: left;
	width:30%;
	min-width:320px;
	top:21px;
	right:16%;
	margin:0 0 0 0;
	padding: 0px 10px 0px 0px;
}
/*  ==== ==== ==== COMMON PAGE NAVIGATION MENU END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE ELEMENTS BEGIN  ==== ==== ==== */
.headerPageHeader {
	padding: 1.2% 0% 0% 2%;
	text-align: left;
	background: #FFF;
}

.sidebarListHolder {
	width: 24%;
	padding: 8px 0 0 0;
	font-size:16px;
	line-height:1.1em;
}

/* -------> FONTS AND PARAGRAPHS <------- */
h1 {
	color: #FFF;
	font-size: 18px;
}

h2 {
	color:#FFF;	
}

h3 {
	font-size: 36px;
	color: #8f2146;
}

h4 {
	color: #e2e2e2;
}

h5 {
	color: #e2e2e2;
}

h6 {font-size: 14px;
	color: #8f2146;

}

h7 {font-size: 16px;

}

p {
	color:#5D5D5D;
}
/* -------> FONTS AND PARAGRAPHS <------- */

/* -------> LINKS <------- */
a {
	text-decoration: none;
}

a:link, a:visited {
	color: #8f2146;
}

a:hover, a:active {
	color: #c49aa9;
}
/* -------> LINKS <------- */
/*  ==== ==== ==== COMMON PAGE ELEMENTS END  ==== ==== ==== */

/*  ==== ==== ==== ==== ==== ====  HOMEPAGE ELEMENTS BEGIN ==== ==== ==== ==== ==== ==== */

/*   ==== ==== ==== HOMEPAGE FRONT PANEL SECTION BEGIN  ==== ==== ==== */
#containerFrontPanel {
	position: relative;
	left:0;
	width:100%;
	min-width:500px;
	height:100%;
	min-height:380px;
	z-index: 10;
	float:left;
	background-color:#FFF;
}

#containerFrontPanel img{
	position: relative;
	left:0;
	top:0%;
	width:100%;
	min-width:775px;
	height:auto;
	min-height:380px;
	z-index: 10;
	float:left;
	background-color:#5D5D5D;
}
/*  ==== ==== ==== HOMEPAGE FRONT PANEL SECTION END  ==== ==== ==== */

/*  ==== ==== ==== HOMEPAGE ARTIST CAROUSEL SECTION BEGIN  ==== ==== ==== */
#containerArtistCarousel {
	width:100%;
	min-width:420px;
	padding: 0 1% 0 0.6%;
	margin: 0 0 18px 0;
	text-align:left;
	position: relative;
	left:0;
	height:200px;
	min-height:200px;
	z-index: 10;
	float:left;
	background-color:#FFF;
}

#holderArtistCarousel {
	width:100%;
	min-width:420px;
	padding: 1% 0% 0% 0%;
}
/*  ==== ==== ==== HOMEPAGE ARTIST CAROUSEL SECTION END  ==== ==== ==== */


/* -----> ARTICLE SECTIONS **ALL ARTICLES <----- */
.post-IndexArticleInfo {
	text-align:left;
	padding: 0;
	line-height:1.4em;
}

.post-IndexImage {
	text-align:left;
	padding: 2% 2% 0 0;
	width:50%;
	color:#5D5D5D;
	font-size:12px;
	line-height:1.4em;
}

.post-IndexImage-info {		
	text-align:left;
	padding: 2% 2% 2% 0;
	width:100%;
	color:#5D5D5D;
	font-size:12px;
	line-height:1.4em;
}
/* -----> ARTICLE SECTIONS **ALL ARTICLES <----- */

/* -----> ARTICLES 1 AND 2 <----- */
.index-ArticleNo1and2 {
	text-align:left;
	padding: 1% 2% 2% 1%;
	background-color:#FFF;
}

.post-IndexContent {
	text-align:left;
	display:block;
	padding: 2% 2% 2% 1%;
	width:100%;
	height:100%;
	color:#5D5D5D;
	line-height:1.4em;
	text-wrap: none;
	overflow:hidden;
	background-color:#FFF;
}
/* -----> ARTICLES 1 AND 2 <----- */

/* -----> ARTICLE 3 (BLOG) <----- */
.index-ArticleNo3 {
	text-align:left;
	padding: 2.8% 1% 0.6% 2.5%;
	background-color:#FFF;
}
 
.post-contentIndexBlog {
	text-align:left;
	display:block;
	padding: 0.2% 10% 0 4%;
	width:100%;
	height:100%;
	color:#5D5D5D;
	line-height:1.4em;
	text-wrap: none;
	overflow:hidden;
	background-color:#FFF;
}

.post-IndexBlog-video {	
	text-align:left;
	padding: 0.6% 10px 0 0;
	width: 50%;
	min-height:300px;
}
/* -----> ARTICLE 3 (BLOG) <----- */

/* -----> VIDEO CONTAINER <----- */
.video-container {		
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px; 
	height: 0; 
	overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* -----> VIDEO CONTAINER <----- */

/* -----> ARTICLE 4 5 AND 6 <----- */
.index-ArticleNo45and6 {		/* INDEX PAGE LAST 3 ARTICLES */
	text-align:left;
	padding: 0% 1% 0% 0.5%;
	background-color:#FFF;
}

.post-IndexContentShort {		/* INDEX PAGE LAST 3 ARTICLES */
	text-align:left;
	display:block;
	padding: 2% 2% 0 1%;
	width:100%;
	height:100%;
	color:#5D5D5D;
	line-height:1.4em;
	text-wrap: none;
	overflow:hidden;
	background-color:#FFF;
}
/* -----> ARTICLE 4 5 AND 6 <----- */
/*  ==== ==== ==== HOMEPAGE ELEMENTS END  ==== ==== ==== */

/*  ==== ==== ==== ARTISTS THUMBNAILS PAGE BEGIN  ==== ==== ==== */
.articleArtistThumbnailsPage {
	text-align:left;
	padding: 0 0 0.6% 2%;
}

.wrapperArtistThumbnails {
  width: 100%;
  height: 420px;
  padding: 1.4% 0 0 0;
  text-align: left;
}
/*  ==== ==== ==== ARTISTS THUMBNAILS PAGE END  ==== ==== ==== */

/*  ==== ==== ==== ARTIST PAGES BEGIN  ==== ==== ==== */
.articleArtistThumbsPage {	
	text-align:left;
	padding: 0 0 0.6% 2%;
}

.headerArtHeader {
	padding: 1.2% 0 1.6% 1.6%;
	width:100%;
	text-align: left;
	background: #FFF;
}

.articleArtistThumbsPage h2 {
  color: #5D5D5D;
  font-size:15px;
}

.post-thumbs {	/*ARTIST PAGES - THUMBNAILS */
	text-align:left;
	padding: 0% 10px 22px 0;
	width: 26%;
	min-height:300px;
}
/*  ==== ==== ==== ARTIST PAGES END  ==== ==== ==== */

/*  ==== ==== ==== ARTIST PAGES LIGHTBOX THUMBNAILS BEGIN  ==== ==== ==== */
.thumbnailHolder {	/*ARTIST AND ARTISTS - THUMBNAILS */
	position:relative;
	float: left;
	padding:3px 0;
	line-height:0.8em;
	text-align:center;
	width: 144px;
	height: 168px;
	background:#FFF;
}

.thumbnailHolder p {	/*ARTIST AND ARTISTS PAGES - THUMBNAILS */
	line-height:0.8em;
}

.imageThumbnails {	/*ARTIST AND ARTISTS PAGES - THUMBNAILS */
  display: inline-block;
  line-height: 0;
  border: 0px;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.imageThumbnails:hover {	/*ARTIST AND ARTISTS PAGES  - THUMBNAILS */
	opacity: 0.6;
}

.thumbCaption {		/*ARTIST AND ARTISTS PAGES THUMBNAIL CAPTIONS - */
	position:relative;
	padding:3px 0;
	line-height:1.2em;
	text-align:center;
	width: 120px;
}
/*  ==== ==== ==== ARTIST PAGES LIGHTBOX THUMBNAILS END  ==== ==== ==== */

/*  ==== ==== ==== ARTIST PAGES COLLAPSABLE TEXT BEGIN  ==== ==== ==== */
.collapsableText { 
    vertical-align: top; 
    height:auto !important; 
}

.moreText {
    display:none; 
    height:auto;
    margin:0;
    float: left;
}

.moreText p{
    height:auto;
    margin:0;
}

.show {
    display: none; 
}

.hide:target + .show {
    display: inline; 
}

.hide:target {
    display: none; 
}

.hide:target ~ .moreText {
    display:inline; 
}

/*style the (+) and (-) */
.hide, .show {
    width: 70px;
    height: 30px;
    font-size: 12px;
    text-align: center;
    margin-right: 0;
    float: left;
}

.hide:hover, .show:hover {
    text-decoration: none;
}
/*  ==== ==== ==== ARTIST PAGES COLLAPSABLE TEXT END <------- */

/*  ==== ==== ==== INFO PAGE BEGIN  ==== ==== ==== */
.articleInfoPage {
	text-align:left;
	padding: 0 6% 0.6% 2%;
}
/*  ==== ==== ==== INFO PAGE END  ==== ==== ==== */



/*  ==== ==== ==== EXHIBITIONS PAGE BEGIN  ==== ==== ==== */
.articleExhibitionsPage {
	text-align:left;
	padding: 0 0 0.6% 2%;
}

.headerExhibition {
	padding: 0 0 0 4%;
}

.postExhibition-info {		
	text-align:left;
	padding: 8px 14% 0 0;
	width: 100%;
	line-height:1.2em;
}

.post-ExhibitionImage {		
	float: left;
	text-align:left;
	padding: 2% 2% 0 4%;
	width:46%;
}

.post-ExhibitionImage-info {		
	text-align:left;
	padding: 2% 2% 0 0;
	width:100%;
	color:#5D5D5D;
	font-size:12px;
	line-height:1.4em;
}
/*  ==== ==== ==== EXHIBITIONS PAGE END  ==== ==== ==== */

/*  ==== ==== ==== BLOG PAGE BEGIN  ==== ==== ==== */
.articleBlogPage {
	text-align:left;
	padding: 0 0 0.6% 2%;
}

.postBlog-info {		
	text-align:left;
	padding: 4px 14% 4% 0;
	width: 100%;
	line-height:1.4em;
}

.post-BlogImage {		
	text-align:left;
	padding: 1.2% 2% 4% 0;
	width:50%;
}

.post-BlogImage-info {		
	text-align:left;
	padding: 1% 2% 0 0;
	width:100%;
	color:#5D5D5D;
	font-size:12px;
	line-height:1.4em;
}

.post-BlogVideo {
	text-align:left;
	padding: 1.2% 2% 4% 0;
	width: 50%;
}

.video-container-blogpage {		
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px; 
	height: 0; 
	overflow: hidden;
}

.post-BlogVideo-info {		
	text-align:left;
	padding: 1.2% 2% 4% 0;
	width:100%;
	color:#5D5D5D;
	font-size:12px;
	line-height:1.4em;
}
/*  ==== ==== ==== BLOG PAGE END  ==== ==== ==== */

.article.Artist_Blog-Page {	
	text-align:left;
	padding: 0 0 0.6% 2%;
}

.article.ArtistThumbsPagee h1 {
  color: #5D5D5D;
  font-size:15px;
}


.article.ArtistThumbsPagee h2 {
  color: #5D5D5D;
  font-size:12px;
}

/*  ==== ==== ==== PROJECT PAGE BEGIN  ==== ==== ==== */
.articleProjectPage {
	text-align:left;
	padding: 0 0 0.6% 2%;
}

.postProject-info {		
	text-align:left;
	padding: 4px 14% 4% 0;
	width: 100%;
	line-height:1.4em;
}

.post-ProjectImage {		
	text-align:left;
	padding: 1.2% 2% 4% 0;
	width:50%;
}

.post-ProjectImage-info {		
	text-align:left;
	padding: 1% 2% 0 0;
	width:100%;
	color:#5D5D5D;
	font-size:12px;
	line-height:1.4em;
}
/*  ==== ==== ==== PROJECT PAGE END  ==== ==== ==== */

/*  ==== ==== ==== PRESS PAGES BEGIN  ==== ==== ==== */
.articlePressPage {
	text-align:left;
	padding: 0 0 0.6% 2%;
}

.postPress-info {		
	text-align:left;
	padding: 4px 14% 4% 0;
	width: 100%;
	line-height:1.4em;
}

.post-PressImage {		
	text-align:left;
	padding: 1.2% 2% 4% 0;
	width:50%;
}

.post-PressImage-info {		
	text-align:left;
	padding: 1% 2% 0 0;
	width:100%;
	color:#5D5D5D;
	font-size:12px;
	line-height:1.4em;
}

.post-PressProjectImage {		
	text-align:left;
	padding: 1.2% 0 0 4%;
	width:46%;
}

.post-PressProjects-info {
	text-align:left;
	padding: 0 4% 2% 0;
	line-height:1.4em;
}

.wrapperPressThumbnails {
  max-width: 100%;
  padding: 0;
  text-align: left;
}

.thumbnailPressPDF {						
	position:relative;
	float: left;
	padding:0px 0 2px 0;
	line-height:1.0em;
	text-align:center;
	width: 144px;
	height: 182px;
	background:#FFF;
}

.imagePressPDFS {
  display: inline-block;
  padding: 4px 0 0 0;
}
/*  ==== ==== ==== PRESS PAGES END  ==== ==== ==== */

/*  ==== ==== ==== CONTACT PAGE BEGIN  ==== ==== ==== */
.articleContact {
	padding: 9.2% 6% 52px 16%;
	text-align: center;
	line-height:1.4em;
}
/*  ==== ==== ==== CONTACT PAGE END  ==== ==== ==== */

/*  ==== ==== ==== FOOTER SECTION BEGIN  ==== ==== ==== */
#footerSection {
	width: 100%;
	height: 52px;
	background-color:#555;
	border-top: 2px solid #8e2146;
	padding: 0;
}

/* --- FOOTER EMAIL --- */
.footerClassEmail {
	width: 28%;
	float: left;
	color: #FFF;
	padding: 0;
	margin:6px 0 0 12%;
}

.footerClassEmail a:link {
	color: #FFF;
}

.footerClassEmail a:hover {
	color: #8f2146;
}

.divFooterEmail {
	top: 0;
	width: 100%;
	float: left;
	color: #FFF;
	padding: 0;
}

.divFooterEmail a:hover {
	color: #c49aa9;
}


.divFooterEmail p {
	top: 0;
	padding: 0 0 10px 0;
}

.divFooterEmailLogo {
	float: left;
	text-align:right;
	width: 20%;
	padding: 0 0 0 0;	
}

.divFooterEmailAddress {
	float: left;
	text-align:left;
	width: 80%;
	padding: 6px 0 0 4px;
}
/* --- FOOTER EMAIL --- */

/* --- FOOTER PHONE --- */
.footerClassPhone {
	width: 26%;
	float: left;
	padding: 0;
	margin: 6px 0 0 0;
}

.footerClassPhone p {
	color: #FFF;
}

.divFooterPhone {
	top: 0;
	width: 100%;
	float: left;
	color: #FFF;
	padding: 0;
}

.divFooterPhone p {
	top: 0;
	padding: 0 0 10px 0;
}

.divFooterPhoneLogo {
	float: left;
	text-align:right;
	width: 20%;
	padding: 0 0 0 0;	
}

.divFooterPhoneNumber {
	float: left;
	text-align:left;
	width: 80%;
	padding: 6px 0 0 4px;
}
/* --- FOOTER PHONE --- */

/* --- FOOTER SOCIAL --- */
.footerClassSocial {
	width: 32%;
	height: 48px;
	float: left;
	padding: 0;
}

.divFooterSocialLogo a:link {
	opacity: 1;	
}

.divFooterSocialLogo a:hover {
	opacity: 0.6;	
}

.divFooterSocialLogo {
	top: 0;
	width: 100%;
	float: left;
	color: #FFF;
	padding: 0;
}

.divFooterFacebookLogo {
	float: left;
	width: 20%;
}

.divFooterTwitterLogo {
	float: left;
	width: 20%;
}

.divFooterYouTubeLogo {
	float: left;
	width: 20%;
}

/* --- FOOTER COPYRIGHT --- */
.divFooterCopyright {
	width: 100%;
	height: 22px;
	text-align:right;
	float: left;
	background-color: #555;
}

.footerClassCopyright {
	width: 100%;
	height: 22px;
	text-align:right;
	float: left;
	background-color: #555;
}

.footerClassCopyright p {
	padding: 0 1% 0 0;
	color: #999;
}
/*  ==== ==== ==== FOOTER SECTION END  ==== ==== ==== */

/*  ==== ==== ==== LIGHBOX SECTION BEGIN  ==== ==== ==== */
body:after {
  content: url(../images/lightBox/close.png) url(../images/lightBox/loading.gif) url(../images/lightBox/prev.png) url(../images/lightBox/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: white;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.9;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0%;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/lightBox/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
}

.lb-prev, .lb-next {
  width: 49%;
  height: 100%;
  cursor: pointer;
  /* Trick IE into showing hover */
  display: block;
}

.lb-prev {
  left: 0;
  float: left;
}

.lb-prev:hover {
  background: url(../images/lightBox/prev.png) left 48% no-repeat;
  opacity: 0.62;
}

.lb-next {
  right: 0;
  float: right;
}

.lb-next:hover {
  background: url(../images/lightBox/next.png) right 48% no-repeat;
  opacity: 0.62;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}


.lb-data {
  padding: 0 4px;
  color: #bbbbbb;
}

.lb-data .lb-details { 		/* full size image details */
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;

}

.lb-data .lb-caption {		/* title/captions */
  font-size: 12px;
  color:#5D5D5D;
  line-height: 1em;
  
}

.lb-data .lb-number {			/* number of */		
  display: block;
  clear: left;
  padding: 12px 0 12px 0;
  font-size: 11px;
  color:#5D5D5D;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/lightBox/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.8;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/*  ==== ==== ==== LIGHBOX SECTION END  ==== ==== ==== */




/*  ==== ==== ==== ==== ==== ==== ==== ==== ====   ALTERNATIVE DISPLAY VERSIONS   ==== ==== ==== ==== ==== ==== ==== ==== ====  */
/*  ==== ==== ==== ==== ==== ==== ==== ==== ====   ALTERNATIVE DISPLAY VERSIONS   ==== ==== ==== ==== ==== ==== ==== ==== ====  */

/* SMARTPHONES (PORTRAIT AND LANDSCAPE) ----------- */
@media only screen
and (min-width : 320px)
and (max-width : 480px) {
/*  ==== ==== ==== COMMON PAGE GRID FORMAT BEGIN  ==== ==== ==== */
[class*='bit-1'] {
  padding: 2px 5px;
}

[class*='bit-articlePageContainer'] {
  padding: 2px 5px;
}

[class*='bit-2'] {
  padding: 2px 5px;
}

[class*='bit-3'] {
  padding: 2px 5px;
}

[class*='bit-4'] {
  padding: 2px 5px;
}

/* Main Widths */
.bit-1  {width: 100%;}
.bit-articlePageContainer  {width: 52%;}
.bit-2  {width: 100%;}
.bit-3  {width: 100%;}
.bit-4  {width: 50%;}
/*  ==== ==== ==== COMMON PAGE GRID FORMAT END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE BODY SECTION BEGIN  ==== ==== ==== */
#containerBody{
	max-width:480px;
	min-width:320px;
}
/*  ==== ==== ==== COMMON PAGE BODY SECTION END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE HEADER SECTION BEGIN  ==== ==== ==== */
#containerHeader{
	max-width:480px;
	min-width:480px;
	height: 98px;
}
/*  ==== ==== ==== COMMON PAGE HEADER SECTION END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE NAVIGATION MENU BEGIN  ==== ==== ==== */
.navigationMenuBox {		
	float:left;
	max-width:420px;
	min-width:320px;
	top:48px;
	right:0%;
	padding: 0px 0px 0px 0px;
}
/*  ==== ==== ==== COMMON PAGE NAVIGATION MENU END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE LOGO BEGIN  ==== ==== ==== */
.headerLogo img {
	left:8px;
}
/*  ==== ==== ==== COMMON PAGE LOGO END  ==== ==== ==== */

/*  ==== ==== ==== HOMEPAGE ELEMENTS BEGIN  ==== ==== ==== */
/*  ==== ==== ==== HOMEPAGE FRONT PANEL SECTION BEGIN  ==== ==== ==== */
#containerFrontPanel {
	min-width:420px;
	min-height:240px;
}

#containerFrontPanel img{
	min-width:420px;
	min-height:380px;
}
/*  ==== ==== ==== HOMEPAGE FRONT PANEL SECTION END  ==== ==== ==== */

/* -----> ARTICLE SECTIONS **ALL ARTICLES <----- */
.post-IndexArticleInfo {
	padding: 1% 0 0 1%;
	line-height:1.2em;
}

.post-IndexImage {
	width:90%;
	line-height:1.2em;
}

.post-IndexImage img {
	padding: 8px 0 1% 10%;
}

.post-IndexImage-info {		
	padding: 3% 5% 5% 12%;
	line-height:1.2em;
}
/* -----> ARTICLE SECTIONS **ALL ARTICLES <----- */

/* -----> ARTICLES 1 AND 2<----- */
.index-ArticleNo1and2 {
	padding: 1% 0 1% 0;
}

.post-IndexContent {
	padding: 1% 0 1% 0;
	line-height:1.2em;
}
/* -----> ARTICLES 1 AND 2<----- */

/* -----> ARTICLE 3 (BLOG) <----- */
.index-ArticleNo3 {
	padding: 1% 0 0 1%;
}
 
.post-contentIndexBlog {
	padding: 1% 0 0 1%;
	line-height:1.2em;
	height:auto;
}

.post-IndexBlog-video {	
	padding: 5px;
	min-height:100%;
}
/* -----> ARTICLE 3 (BLOG) <----- */

/* -----> VIDEO CONTAINER <----- */
.video-container {		
    position: relative;
	padding: 0px 5px 5px 5px;
	width:290px;
	height: 180px; 
	overflow:show;
}

.video-containerBlog {		
    position: relative;
	padding: 0px 5px 5px 5px;
	width:560px;
	height: 347px; 
	overflow:show;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: relative;
    top: 5px;
    left: 0;

}
/* -----> VIDEO CONTAINER <----- */

/* -----> ARTICLE 4 5 AND 6 <----- */
.index-ArticleNo45and6 {		/* INDEX PAGE LAST 3 ARTICLES */
	padding: 1% 0 0 1%;
}

.post-IndexContentShort {		/* INDEX PAGE LAST 3 ARTICLES */
	padding: 1% 0 0 1%;
	line-height:1.2em;
}
/* -----> ARTICLE 4 5 AND 6 <----- */

/*  ==== ==== ==== HOMEPAGE ARTIST CAROUSEL SECTION BEGIN  ==== ==== ==== */
#containerArtistCarousel {
	width:100%;
	min-width:300px;
	padding: 0 3px 0 3px;
	min-height:180px;
	z-index: 10;
	float:left;
	background-color:#FFF;
}

#holderArtistCarousel {
	width:100%;
	max-width:420px;
	min-width:300px;
	padding: 1% 0% 0 0%;	
}
/*  ==== ==== ==== HOMEPAGE ARTIST CAROUSEL SECTION END  ==== ==== ==== */
/*  ==== ==== ==== HOMEPAGE ELEMENTS END  ==== ==== ==== */

/*  ==== ==== ==== COMMON PAGE ELEMENTS BEGIN  ==== ==== ==== */
.headerPageHeader {
	padding: 1.2% 0% 0% 2%;
}

.sidebarListHolder {
	width: 48%;
	padding: 8px 0 0 0;
	font-size:16px;
	line-height:1.1em;
}

/*  ==== ==== ==== FOOTER SECTION BEGIN  ==== ==== ==== */
#footerSection {
	height: 152px;
}

/* --- FOOTER EMAIL --- */
.footerClassEmail {
	width: 100%;
	margin:6px 0 0 4%;
}
/* --- FOOTER EMAIL --- */

/* --- FOOTER PHONE --- */
.footerClassPhone {
	width: 100%;
	margin: 6px 0 0 4%;
}
/* --- FOOTER PHONE --- */

/* --- FOOTER SOCIAL --- */
.footerClassSocial {
	width: 100%;
	padding: 5px 0 0 12%;
}
/* --- FOOTER COPYRIGHT --- */
.footerClassCopyright p {
	padding: 0 2% 0 0;
}
/*  ==== ==== ==== FOOTER SECTION END  ==== ==== ==== */
/*  ==== ==== ==== COMMON PAGE ELEMENTS END  ==== ==== ==== */

/*  ==== ==== ==== ARTISTS THUMBNAILS PAGE BEGIN  ==== ==== ==== */
.wrapperArtistThumbnails {
  height: 100%;
}
/*  ==== ==== ==== ARTISTS THUMBNAILS PAGE END  ==== ==== ==== */

/*  ==== ==== ==== ARTIST PAGES BEGIN  ==== ==== ==== */
.post-thumbs {	/*ARTIST PAGES - THUMBNAILS */
	width: 46%;
}
/*  ==== ==== ==== ARTIST PAGES END  ==== ==== ==== */

/*  ==== ==== ==== EXHIBITIONS PAGE BEGIN  ==== ==== ==== */
.postExhibition-info {		
	padding: 8px 2% 0 0;
}

.post-ExhibitionImage {		
	width:100%;
	padding: 0 0 0 0;
}

.post-ExhibitionImage-info {		
	padding: 2% 2% 8px 0;
}
/*  ==== ==== ==== EXHIBITIONS PAGE END  ==== ==== ==== */

/*  ==== ==== ==== BLOG PAGE BEGIN  ==== ==== ==== */
.postBlog-info {		
	padding: 4px 2% 4% 0;
	line-height:1.2em;
}

.post-BlogImage {		
	width:100%;
}

.post-BlogImage-info {		
	padding: 1% 2% 8px 0;
}

.post-BlogVideo {
	padding: 1.2% 2% 4% 0;
	width: 100%;
}

.video-container-blogpage {		
	width: 100%;
	height: 160px; 
}

.post-BlogVideo-info {		
	width:100%;
}
/*  ==== ==== ==== BLOG PAGE END  ==== ==== ==== */

/*  ==== ==== ==== PROJECT PAGE BEGIN  ==== ==== ==== */
.postProject-info {		
	padding: 4px 2% 4% 0;
}

.post-ProjectImage {		
	width:100%;
}
/*  ==== ==== ==== PROJECT PAGE END  ==== ==== ==== */

/*  ==== ==== ==== PRESS PAGES BEGIN  ==== ==== ==== */

.postPress-info {		
	padding: 4px 2% 0% 0;
}

.post-PressImage {		
	width:100%;
	padding: 0 2% 12px 0;	
}

.post-PressProjectImage {		
	width:100%;
}
/*  ==== ==== ==== PRESS PAGES END  ==== ==== ==== */

/*  ==== ==== ==== CONTACT PAGE BEGIN  ==== ==== ==== */
.articleContact {
	padding: 9.2% 6% 22px 16%;
}
/*  ==== ==== ==== CONTACT PAGE END  ==== ==== ==== */

/*  ==== ==== ==== INDEX NAVIGATION MENU BEGIN  ==== ==== ==== */
	#menu, #menu ul {
		margin: 0;
		padding: 0 0 0 0;
		list-style: none;
}

 /* -- MENU ATTRIBUTES */
	#menu {						/* -- MENU HOLDER */
		min-width: 320px;
		height:50px;
	}

 /* -- MENU ATTRIBUTES */
	#menu li {				/*-- MENU PADDING CONTROLLER --*/
		float:right;
		margin:0 0 0 12px; /*-- MARGIN BETWEEN MENU ITEMS --*/
	}
/*  ==== ==== ==== INDEX NAVIGATION MENU END  ==== ==== ==== */

/*  ==== ==== ==== ==== ==== ====  INDEX PAGE FRONT PANEL BEGIN   ==== ==== ==== ==== ==== ==== */
/*FRONT PANEL CONTAINER ==================================================== */
.da-slider{
	min-width: 320px;
	height:240px;
	min-height:240px;
}
/*FRONT PANEL CONTAINER ==================================================== */
.da-slider-fb .da-slide .da-link{
	left: 88.8%;
	opacity: 1;
}

.da-slide .da-link{
	top: 208px; /*depends on p height*/
	left: 0%;
}

.da-slide-current .da-link{
	left: 68.8%;
}

/* DA SLIDE VALUES BEGIN  ================ */
.da-slide h2{
	font-size: 17px;
	top: 8px;
	left:48px;
}

.da-slide p{
	font-size: 14px;
	top: 30px;
	left:48px;
}

.da-slide h3{
	font-size: 20px;
	top: 52px;
	left:48px;
}

.da-slide p2{
	font-size: 16px;
	top: 76px;
	left:48px;
}

.da-slide p3{
	font-size: 12px;
	top: 114px;
	left: 48px;
}

.da-slide .da-img{
	max-width:480px;
	min-width:480px;
}

.da-slide-current h2,
.da-slide-current h3,
.da-slide-current p,
.da-slide-current p2,
.da-slide-current p3{
	left: 48px;
}

/* DA SLIDE CURRENT VALUES=========================*/
/* DA SLIDER FB VALUES=========================*/
.da-slider-fb .da-slide h2,
.da-slider-fb .da-slide h3,
.da-slider-fb .da-slide p,
.da-slider-fb .da-slide p2,
.da-slider-fb .da-slide p3{
	left: 48px;
	opacity: 1;
	z-index: 30;
}
/* DA SLIDER FB VALUES =========================*/
/* DA SLIDE VALUES END ================================================ */
/* Animation classes and animations ========================= */

/* Slide in from the right ============================================= */
@-webkit-keyframes fromRightAnim1{
	0%{left: 80%; opacity: 0;}
	100%{left: 48px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim2{
	0%{left: 80%; opacity: 0;}
	100%{left: 48px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-webkit-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-webkit-keyframes fromRightAnim5{
	0%{left: 80%; opacity: 0;}
	100%{left: 48px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim6{
	0%{left: 80%; opacity: 0;}
	100%{left: 48px; opacity: 1;}
}
@-webkit-keyframes fromRightAnim7{
	0%{left: 80%; opacity: 0;}
	100%{left: 48px; opacity: 1;}
}


@-moz-keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-moz-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-moz-keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}


@-o-keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-o-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-o-keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}


@-ms-keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-ms-keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-ms-keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-ms-keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-ms-keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-ms-keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-ms-keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}


@keyframes fromRightAnim1{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromRightAnim2{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromRightAnim3{
	0%{ left: 110%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@keyframes fromRightAnim4{
	0%{ left: 100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@keyframes fromRightAnim5{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromRightAnim6{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromRightAnim7{
	0%{ left: 80%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}

/* Slide out to the right ============================================= */
@-webkit-keyframes toRightAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-webkit-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-webkit-keyframes toRightAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-webkit-keyframes toRightAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}


@-moz-keyframes toRightAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-moz-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-moz-keyframes toRightAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-moz-keyframes toRightAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}


@-o-keyframes toRightAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-o-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-o-keyframes toRightAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-o-keyframes toRightAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}




@-ms-keyframes toRightAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@-ms-keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@-ms-keyframes toRightAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@-ms-keyframes toRightAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}


@keyframes toRightAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	100%{ left: 110%; opacity: 0; }
}
@keyframes toRightAnim4{
	0%{ left: 0%;  opacity: 1; }
	100%{ left: 100%; opacity:1; }
}
@keyframes toRightAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}
@keyframes toRightAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: 60%; opacity: 0; }
}

/* Slide in from the left ============================================= */
@-webkit-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim5{
	0%{ left: -100%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-webkit-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}


@-moz-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-moz-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-moz-keyframes fromLeftAnim5{
	0%{ left: -100%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-moz-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}


@-o-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-o-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-o-keyframes fromLeftAnim5{
	0%{ left: -100%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-o-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}


@-ms-keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-ms-keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-ms-keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@-ms-keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@-ms-keyframes fromLeftAnim5{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@-ms-keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}

@-ms-keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}


@keyframes fromLeftAnim1{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromLeftAnim2{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromLeftAnim3{
	0%{ left: 20%; opacity: 0; }
	100%{ left: 88.8%; opacity: 1; }
}
@keyframes fromLeftAnim4{
	0%{ left: -100%; opacity: 1; }
	100%{ left: 0%; opacity: 1; }
}
@keyframes fromLeftAnim5{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromLeftAnim6{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}
@keyframes fromLeftAnim7{
	0%{ left: -20%; opacity: 0; }
	100%{ left: 48px; opacity: 1; }
}

/* Slide out to the left ============================================= */
@-webkit-keyframes toLeftAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-webkit-keyframes toLeftAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-webkit-keyframes toLeftAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@-moz-keyframes toLeftAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-moz-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-moz-keyframes toLeftAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-moz-keyframes toLeftAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@-o-keyframes toLeftAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-o-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-o-keyframes toLeftAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-o-keyframes toLeftAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@-ms-keyframes toLeftAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@-ms-keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@-ms-keyframes toLeftAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@-ms-keyframes toLeftAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}


@keyframes toLeftAnim1{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim2{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim3{
	0%{ left: 88.8%;  opacity: 1; }
	90%{ left:60%; opacity:0;}
	100%{ left: 50%; opacity: 0; }
}
@keyframes toLeftAnim4{
	0%{ left: 0%;  opacity:1; }
	100%{ left: -100%; opacity:1; }
}
@keyframes toLeftAnim5{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim6{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
@keyframes toLeftAnim7{
	0%{ left: 48px;  opacity: 1; }
	100%{ left: -20%; opacity: 0; }
}
/* ==== ==== ==== ==== ==== ==== INDEX PAGE FRONT PANEL END ==== ==== ==== ==== ==== ==== */

/* ==== ==== ==== ==== ==== ==== INDEX PAGE ARTIST CAROUSEL BEGIN ==== ==== ==== ==== ==== ==== */
.artistCarousel-wrapper {				/* WRAPPER */
	height:148px;						/* WRAPPER HEIGHT */
	width: 100%;
}

.artistCarousel-carousel ul li {		/* WIDTH BETWEEN IMAGES */
	min-width: 116px;	
}

.artistCarousel-carousel ul li a img {			/*IMAGE CONTROLLER*/
	height:92px;
	padding:0 15px;
}

.artistholder {						/*TEXT CONTAINER*/
	padding:3px 16px;
	text-align:center;
}
/* ==== ==== ==== ==== ==== ==== INDEX PAGE ARTIST CAROUSEL END ==== ==== ==== ==== ==== ==== */
}
