body {
	color: #000080;                        /* site wide ----------- dark blue text colour */
	background-color: #ccffff;             /* site wide ---- light blue background colour */
	font-size: 16px;
	font-family: Verdana, Geneva, sans-serif;
}
a:link, a:visited {color: blue;}         /* Link colour */
a:hover {color: #FF0000;}                /* Link Hover colour */
hr {width: 70%;}                         /* Draws a horizontal line 70% across the page -- */
img {border: 0;}                         /* 0 px Border around all images */
img, a, object {outline: none;}          /* Removes dotted lines generated by some browsers */
.cent {text-align: center;}              /* Aligns to the center anything with class="cent" */
.small {font-size: 14px;}
.floatright {float: right;}

/* Banner image and text - Top of every page */
.header {
	margin: 0 auto;
	width: 800px;
	height:250px;
	background-color: #ccc;
	color: #C30;	
	font-size: 48px;             /* -------Egypt Origins------------ */
	font-weight: bold;
	border: 1px solid black;
 	border-top-left-radius: 15px;
 	border-top-right-radius: 15px;
	-webkit-border-top-left-radius: 15px;
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-topright: 15px;
	text-shadow:2px 2px 2px #000;	
}
.header_image {
	float:left;
	margin: 25px 0 0 80px;
    -moz-box-shadow:12px 12px 9px #444, -1px -1px 0 #777;   /* shadow around banner image */
    -webkit-box-shadow:12px 12px 9px #444, -1px -1px 0 #777;
	box-shadow:12px 12px 9px #444, -1px -1px 0 #777;
	 }
.header_text {
	float: left;
	padding: 80px 0 0 80px;
}

/* --- Headings --- */
h1, h2, h3, h5 {                        /* ---all Heading text centered, bold and padded ----- */
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
}
h1 {
	font-size: 28px;                 /* Heading 1 text - (page Title) - large and dark red  */
	color: #C30;	
}
h2 {font-size: 24px;}
h3 {font-size: 18px;}
h5 {font-size: 13px;}

.quote, blockquote {
	margin: 50px;
	padding: 15px;
	font-size: 15px;
	background-color: #F2EFEA;
	border: 2px solid #fc3;
	border-radius: 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-style: italic;
}
a.box {                             /* ------  Page nav links ----- */
	margin: 8px;
	padding: 8px 10px;
	font-size: 16px;
	font-weight:bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-shadow: 0 -1px 0 rgba(0,0,0,.8);
	text-decoration: none;
	color: #C30;
	border: 1px solid #000;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #ccc;
}
a.box:hover {
	color: blue;
}
table.data {                 /* Styling for data tables */
	border: 4px solid #111;
	background-color: #ffffcc;
	border-collapse:collapse;
}
table.data th {
	font-weight: bold;
	text-align: center;
}
table.data td, table.data th {
	border: 2px solid #111;
	padding: 8px;	
}
table.pics {                 /* Styling for images in tables */
	background-color: #ffffcc;
	border-collapse:collapse;
}
table.pics td {
	font-weight: bold;
	text-align: center;
	border: 1px solid #111;
	padding: 8px;
}

/* Styling on the Home Page only */
#container {
	margin: 0 auto;
	width: 800px;                                /* make the page 800 px wide */
	text-align: left;
	background-color: #CCFFFF;
}
.content {
	float: right;
	width: 600px;                 /* make the content column right and 600 px */
	margin: 10px 0 20px 0;
	background-color: #F2EFEA;
	border: 1px solid #000;
}
.home_title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	text-shadow:1px 1px 1px #f0ffed;	
	padding: 0px;
	margin: 15px;
	background-color: #C2BBA9;
}
.content p {padding: 0 8px;}

/* Home page navigation list */
.navigation {         
	float: left;
	width: 180px;                 /* make the navigation column left and 180 px */
	font-size: 14px;
	font-weight: bold;
	padding: 4px 0 0 4px;
	margin: 10px 6px 0 0;
	border: 1px solid #000;        /* 1 px border around the navigation column */
	background-color: #ccc;
}
.navigation a:link, a:visited {
	color: #000;
}
.navigation a:hover {
	color: green;
}


