/*
// COLORS
Aer Lingus Dark Green = rgb(0,131,116);	
Aer Lingus Shamrock Green = rgb(137,186,22);
Aer Lingus White = rgb(255,255,255);
Aer Lingus Orange Button = rgb(255,127,0);
*/

#container{
	position: absolute;
	width:970px;
	height: 250px;
	overflow: hidden;
	cursor: pointer;
	background-color: rgb(0,131,116);
}

.images{
	position: absolute;
	top:0px;
	left:0px;
	width:970px;
	height: 250px;
}

#overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 999;
}

#border {
	position: absolute;
	top:0px;
	left:0px;
  	width: 100%;
  	height: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  	border:1px solid #c2c2c2;
  	z-index: 999;	
}

body{
	color:rgb(255,255,255);
	margin:0;
	padding:0;
}
	
.svgLine{
	fill:none;
	stroke:rgb(255,255,255);
	stroke-width:9;
}

	#logo{
bottom: 69px;
    width: 350px;
    height: 86px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
	}
		
	.logoGreen{
		fill:rgb(137,186,22);
	}

	.logoWhite{
		fill:rgb(255,255,255);
	}





/* FOOTER END */

/*
 * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
 *
 * [1] IE9
 * [2] IE10+
 */
/* 1 */
.ie9 img[src$=".svg"] {
  width: 100%;
}
/* 2 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%;
  }
}