.editRegion #mainContent {
	margin-top: 0px;
	margin-right: 260px;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border: thin none #999999;
}
.editRegion #mainRight {
	float: right;
	width: 340px;
	padding-right: 20px;
}
.editRegion #mainRight p {
	font-size: 10px;
	text-align: center;
}
.editRegion #mainLeft {
	margin-top: 0px;
	margin-right: 370px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.editRegion #mainLeft p {
	font-size: 10px;
	text-align: center;
}
.editRegion #sidebar {
	font-size: 12px;
	float: right;
	width: 200px;
	margin-top: 40px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #CCCCCC;
	padding-left: 10px;
	padding-top: 0px;
}
.editRegion #sidebar p {
	margin: 0px;
	padding: 0px;
}
.editRegion #sidebar h3 {
	font-size: 11px;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
	font-weight: normal;
	color: #000000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.picTag {
}
/* Image overlay*/
#eyeCandy {
	position:relative;
	height:337px;
	width:960px;
	margin:0 auto;
}
#eyeCandy img{
	position:absolute;
	left:0;
	-webkit-transition: opacity 1s ease-in-out;
  	-moz-transition: opacity 1s ease-in-out;
  	-o-transition: opacity 1s ease-in-out;
  	transition: opacity 1s ease-in-out;
}
/**************************************
keyframes parameters
a = presentation time one image
b = cross-fade time
n = number of images
t= animation duration = (a+b)n
animation delay = a+b
for n=4, a=3, b=1 keyframes:
	1:	0%
	2:	a/b * 100%
	3:	t/n
	4:	100% - b/t * 100%
	5:	100%
***************************************/
@-webkit-keyframes eyeCandyFadeInOut {
  0% {
    opacity:1;
  }
  18.75% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  93.75% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
/**************************************
Safari, Chrome, Opera
**************************************/
#eyeCandy img.fourth {
	-webkit-animation-delay: 0;
	-webkit-animation-name: eyeCandyFadeInOut;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 16s;
}
#eyeCandy img.third {
	-webkit-animation-delay: 4s;
	-webkit-animation-name: eyeCandyFadeInOut;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 16s;	
}
#eyeCandy img.second {
	-webkit-animation-delay: 8s;
	-webkit-animation-name: eyeCandyFadeInOut;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 16s;	
}
#eyeCandy img.first {
	-webkit-animation-delay: 12s;
	-webkit-animation-name: eyeCandyFadeInOut;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 16s;	
}
/**************************************
Firefox, IE10
**************************************/
@keyframes eyeCandyFadeInOut {
  0% {
    opacity:1;
  }
  18.75% {
    opacity:1;
  }
  25% {
    opacity:0;
  }
  93.75% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

#eyeCandy img.fourth {
	animation-delay: 0;
	animation-name: eyeCandyFadeInOut;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 16s;
}
#eyeCandy img.third {
	animation-delay: 4s;
	animation-name: eyeCandyFadeInOut;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 16s;	
}
#eyeCandy img.second {
	animation-delay: 8s;
	animation-name: eyeCandyFadeInOut;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 16s;	
}
#eyeCandy img.first {
	animation-delay: 12s;
	animation-name: eyeCandyFadeInOut;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 16s;	
}