/*
	Author	:	Christopher Robinson
	Email		:	christopher@edg3.co.uk
	Website	:	http://www.edg3.co.uk/
*/
* {
	border:0;
	margin:0;
	padding:0;
}

/* general */
a {
	color:DodgerBlue;
	text-decoration:none;
}

a:hover {
	color:DodgerBlue;
	text-decoration:underline;
}

/* body */
body {
	background:#e6ffe6;
	color:#555;
	font:0.8em Arial, Helvetica, "bitstream vera sans", sans-serif;
}

/* header */
#header {
	border-bottom:1px solid #999;
	height:80px;
	margin:0 auto;
	width:752px;
}
#header h1 {
	color:#888;
	font-size:300%;
	letter-spacing:-3px;
	text-align:left;
	padding:5px;
	margin-bottom:-20px;
}
#header h2 {
	color:#CCC;
	font-size:200%;
	letter-spacing:-2px;
	text-align:right;
}

/* navigation */
#navigation {
	background:#e6ffe6;
	border-right:1px solid #999;
	margin:0 auto;
	width:752px;
	height:50px;
	list-style:none;
}
#navigation li {
	border-left:1px solid #999;
	float:left;
	width:149px;
	list-style:none;
	font-size: 88%;
	font-weight: bold;
}
#navigation a {
	color:#555;
	display:block;
	line-height:50px;
	text-align:center;
}
#navigation a:hover {
	/*background:#e3e3e3;*/
	background:#b3ffb3;
	color:#555;
}

/* content */
#content {
	height:auto;
	margin:0 auto;
	padding:0 0 20px;
	width:752px;
}
#pic {
    float:right;
	text-align:left;
}

#img {
    align-items: center;
	text-align:left;
}
#img subpic {
    padding: 3px;
    margin-left: 3px;
}

#content h1 {
	border-bottom:1px dashed #999;
	font-size:1.8em;
	padding:20px 0 0;
}
#content p {
    font-size: 120%;
}


/* image container */
.container {
  display: flex;
  flex-wrap: wrap;
}

.container .image {
  width: 50%;
}
.container .full_image {
  width: 100%;
}

.container img {
  width: calc(100% - (5px * 2));
  height: 98%;
  margin: 4px;
}

.container iframe {
  width: calc(100% - (5px * 2));
  height: 98%;
  margin: 4px;
}