@charset "utf-8";
/* CSS Document */


/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height: 277px;
	padding: 0;
	width: 900px;
	margin: 0 auto;
	background-image: url(../images/security/security_ickenham.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

/* accordion header */
#accordion h2 {
	display: inline-block;
    float:right;
    margin: 0;
    cursor:pointer;
	width: 55px;
	height: 277px;
	overflow: hidden;
	border-right: solid 1px #004;
	z-index: 100;
}

/* currently active header */
#accordion h2.current {
    cursor:default;
	float: left;
}
#accordion h2.current img {
	margin-top: -277px;
}
#accordion h2.left {
	float: left;
}
/*
  accordion pane. should initially have zero width and display:none.
  the first pane should override these with inline style
  */
#accordion div.pane {
	z-index: 50;
    float:left;
    display:none;
    margin-right:10px;
	position: relative;
}
#accordion div.pane p {
	display: block;
	width: 760px;
	height: 67px;
	position: absolute;
	margin: 0;
	padding: 8px;
	bottom: 0;
	left: 0;
	background: #001441;
	opacity: 0.8;
	color: #fff;
}