@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4;
}
h1, h2, h3, h4, h5, h6  {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	word-spacing: normal;
	line-height: 32px;
}
#imprint {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	margin-right: 20px;
	margin-left: 20px;
}


/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#0000FF;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 14px;
}

a:visited {
	color: #0099FF;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.drop_down_box {
	width: 700px;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;
	font-weight: bold;
	height: 40px;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.header_box {
	width: 800px;
	color: #006;
	padding: 5px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 5px;
	text-align: center;
}
.centred_box {
	width: 820px;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #000;
}
.header_frame  {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.left_200 {
	float: left;
	width: 200px;
	padding-right: 2px;
	padding-left: 2px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: italic;
	font-weight: normal;
	color: #F00;
	text-align: center;
}
.right_200 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	float: right;
	width: 200px;
	font-style: italic;
	color: #F00;
	font-weight: normal;
	text-align: center;
	padding-right: 2px;
	padding-left: 2px;
}
.container {
	width: 850px;
	margin-right: auto;
	margin-left: auto;
}
#footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	font-weight: normal;
	background-color: #FF0;
	text-align: center;
	padding: 2px;
	width: 500px;
	border: thin solid #F00;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 2px;
	margin-left: auto;
}
.ls_links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #FFF;
	background-color: #F00;
	width: 800px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-top: 5px;
	padding-bottom: 5px;
}
.ls_links a:link {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0;
	background-color: #F00;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
	width: 750px;
	font-weight: bold;
}
.ls_links a:visited {
	color: #FFF;
}
