.MyCarousel-bg {
    background-image: linear-gradient(to bottom, #4A4D54 0%, #6C7177 50%, #797D86 100%);
}
#MyCarousel {
    background-image: url('../img/index/slideshow_bg_1.jpg');
    background-repeat: no-repeat; 
    background-position: center;
    margin-top: 125px;
    color: #FFF;
    overflow: hidden;
    text-align: center;
}
.carousel-content {
    position: absolute;
    right: 50%;
    bottom: 0px;
    left: 0%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    z-index: 9;
    color: #ffffff;
    text-align: left;
    text-shadow: 0 1px 2px rgba(133, 243, 255, 0.6);
}
.carousel-content p{
    font-weight: bolder;
    font-size: 1.5em;
}
.carousel-content-right {
    position: absolute;
    right: 10%;
    bottom: 0px;
    left: 0%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    z-index: 9;
    color: #ffffff;
    text-align: left;
    text-shadow: 0 1px 2px rgba(133, 243, 255, 0.6);
}
.carousel-content-right p{
    font-weight: bolder;
    font-size: 1.5em;
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 30%;
    padding-left: 0;
    margin-left: -15%;
    list-style: none;
}
.carousel-indicators .active {
    border: 5px solid #2FAAD6;
    border-radius: 15px;
    width: 20px;
    height: 20px;
    background-color: #EDF6F7;
    opacity: 1;
    -webkit-transition: all 0.2s ease-out;
}
.carousel-indicators li{
    border: 0px solid #FFF;
    border-radius: 15px;
    width: 20px;
    height: 20px;
    background-color: #BAD7DB;
    -webkit-transition: all 0.2s ease-out;
}
.carousel-indicators-line {
    border-top: 8px solid #BAD7DB;
    width: 90%;
    margin: 0px auto;
    margin-top: -15px;
}
.carousel-control.left {
    background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0) 0), color-stop(rgba(0, 0, 0, 0) 100%));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=0);
    z-index: 10;
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0) 0), color-stop(rgba(0, 0, 0, 0) 100%));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=0);
    z-index: 10;
}
/*
==============================================
slideUp
==============================================
*/
.slideUp{
	animation-name: slideUp;
	-webkit-animation-name: slideUp;
        -moz-animation-name: slideUp;

	animation-duration: 2s;	
	-webkit-animation-duration: 2s;
        -moz-animation-duration: 2s;
        animation-delay: 0.15s;
        -webkit-animation-delay:0.15s;
        -moz-animation-delay:0.15s;

	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;
        -moz-animation-timing-function: ease;

	visibility: visible !important;			
}

@keyframes slideUp {
	0% {
		transform: translateY(300%);
	}
	50%{
		transform: translateY(-8%);
	}
	65%{
		transform: translateY(4%);
	}
	80%{
		transform: translateY(-4%);
	}
	95%{
		transform: translateY(2%);
	}			
	100% {
		transform: translateY(0%);
	}	
}

@-webkit-keyframes slideUp {
	0% {
		-webkit-transform: translateY(350%);
	}
        20% {
		-webkit-transform: translateY(350%);
	}
	50%{
		-webkit-transform: translateY(-8%);
	}
	65%{
		-webkit-transform: translateY(4%);
	}
	80%{
		-webkit-transform: translateY(-4%);
	}
	95%{
		-webkit-transform: translateY(2%);
	}			
	100% {
		-webkit-transform: translateY(0%);
	}	
}

@-moz-keyframes slideUp {
	0% {
		-moz-transform: translateY(350%);
	}
        20% {
		-moz-transform: translateY(350%);
	}
	50%{
		-moz-transform: translateY(-8%);
	}
	65%{
		-moz-transform: translateY(4%);
	}
	80%{
		-moz-transform: translateY(-4%);
	}
	95%{
		-moz-transform: translateY(2%);
	}			
	100% {
		-moz-transform: translateY(0%);
	}	
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn{
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;
        animation-delay: 0.15s;
        -webkit-animation-delay:0.15s;
        -moz-animation-delay:0.15s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	visibility: visible !important;	
}

@keyframes fadeIn {
	0% {
		transform: scale(0);
		opacity: 0.0;		
	}
	60% {
		transform: scale(1.1);	
	}
	80% {
		transform: scale(0.9);
		opacity: 1;	
	}	
	100% {
		transform: scale(1);
		opacity: 1;	
	}		
}

@-webkit-keyframes fadeIn {
	0% {
		-webkit-transform: scale(0);
		opacity: 0.0;		
	}
	60% {
		-webkit-transform: scale(1.1);
	}
	80% {
		-webkit-transform: scale(0.9);
		opacity: 1;	
	}	
	100% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}		
}


