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

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #CEE7FF;
}
#container {
	width: 880px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #0000FF;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	color: #0000FF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	height: 77px;
	background-image: url(../images/index_banner.jpg);
}
#welcome {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #0000FF;
	height: 20px;
	width: 880px;
	z-index: 6;
	visibility: visible;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
}
#navigation {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #0000FF;
	text-align: center;
	padding: 2px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #0000FF;
	border-right-color: #0000FF;
	border-bottom-color: #0000FF;
	border-left-color: #0000FF;
	background-color: #DEDFDE;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	
}
#travel {
	background-image: url(../images/bigbutton.jpg);
	text-align: center;
	height: 390px;
	width: 240px;
	padding-top: 10px;
	z-index: 3;
	visibility: visible;
	margin-top: 23px;
	margin-bottom: 10px;
	text-decoration: none;
}
#london-shows {
	background-image: url(../images/bigbutton.jpg);
	text-align: center;
	height: 390px;
	width: 240px;
	padding-top: 10px;
	z-index: 4;
	visibility: visible;
	float: none;
	margin-left: 300px;
	position: absolute;
	top: 161px;
	margin-top: 14px;
}
#theme-parks {
	background-image: url(../images/bigbutton.jpg);
	text-align: center;
	height: 390px;
	width: 240px;
	padding-top: 10px;
	z-index: 4;
	visibility: visible;
	float: none;
	position: absolute;
	top: 161px;
	margin-top: 14px;
	margin-left: 600px;
	overflow: auto;
}
.h5 {
	color: #0000FF;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #0000FF;
} 
.bigbutton_text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #0000FF;
	line-height: 14px;
	text-decoration: none;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #0000FF;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

