/* GENERAL SPECS */
/* set colours for light and dark colour scheme */
.light {
   border: 1px solid #757575;
   border-top: 0px;
   padding: 1px 10px 1px 10px;
}
/* reset IE - problem with border on footer */
* html body .light {
	border-top: 0px;
}
.dark {
   background-color: #4D4D4D;
   height: 5px;
   border: 1px solid #757575;
   border-top: 0px;
   font-size: 1px;
}
/* set standard font and color */
body {
   font-family: Arial, Verdana, Geneva, sans-serif;
   background-color: #2B2B2B;
   font-size: 75%;
   line-height: 18px;
   text-align: center;
	margin: 0px;
	color: #FFF;
}
form {
   margin: 0px;
}
/* make input boxes and button look a bit better */
input {
   font-family: Arial, Verdana, Geneva, sans-serif;
   font-size: 1em;
   border: 1px solid #000;
}
select {
	font-size: 0.9em;
}
h1 {
	font-size: 1.4em;
   	font-weight: normal;
   	line-height: 20px;
}
img {
	border: 0px;
}
/* ---------------------------------------------------- */
/* outer casing for whole page - the margins keep the content centred as the user resizes the window */
#contentElement {
   position: relative;
   top: 0px;
   width: 760px;
   margin: 0px auto;
   text-align: left;
	background-color: #393939;
}
#header {
	margin: 0px;
	padding: 0px;
}
#panoramic {
	margin: 0px;
	border: 1px solid #757575;
	border-top: 0px;
	border-bottom: 0px;
}
#primary_nav {
	padding: 3px 0px 3px 10px;
	background-color: #4D4D4D;
	border: 1px solid #757575;
	font-size: 1.2em;
}
/* space out the links */
#primary_nav a{
	margin-right: 25px;
}
#breadcrumb {
	font-size: 0.9em;
}
/* ---------------------------------------------------- */
#outer_wrapper {
	border-right: 1px solid #757575;
}
#wrapper {
	border-left: 1px solid #757575;
}
#container {
	float: left;
}
#content {
	width: 740px;
	margin-left: 10px;
}
#main_left {
	float: left;
	width: 305px;
	border: 1px solid #757575;
	margin: 20px 0px 20px 10px;
	padding: 0px 20px 10px 20px;
}
/* reset IE*/
* html body #main_left {
	width: 305px;
	margin: 20px 0px 5px 5px;
	padding: 10px 20px 10px 20px;
}
#main_right {
	float: right;
	width: 305px;
	border: 1px solid #757575;
	margin: 20px 10px 20px 0px;
	padding: 0px 20px 10px 20px;
}
/* reset IE*/
* html body #main_right {
	width: 305px;
	margin: 20px 5px 5px 0px;
	padding: 10px 20px 10px 20px;
}
#main_left img {
	float: right;
	margin: 20px 0px 10px 10px;
}
#main_right img {
	float: right;
	margin: 20px 0px 10px 10px;
}
/* ---------------------------------------------------- */

#footer {
	margin-top: 0px;
	border: 1px solid #757575;
	height: 60px;
	padding: 5px 10px 0px 10px;
}
#if_logo {
	float: right;
	margin-top: 10px;
}
#qm_logo {
	float: left;
}
#copyright {
	text-align: center;
	margin-top: 10px;
	font-size: 0.9em;
	line-height: 16px;
}
/* ---------------------------------------------------- */
.clearing {
	height: 0;
	clear: both;
}
/* ---------------------------------------------------- */
/* CLASSES */

/* outline box - for images in right-hand column */
.box {
   border: 1px solid #666666;
}

/* smaller text for sporadic use where necessary*/
.small {
   font-size: 0.9em;
   line-height: 16px;
}
.top {
	text-align: right;
}
.centre {
	text-align: center;
}
/* ---------------------------------------------------- */
/* LINKS */
/* normal links */
a {
   text-decoration: underline;
   line-height: 16px;
}

a:link {
   color: #FFFFCC;	
}

a:visited {
   color: #FFFFCC;
}

a:hover {
   color: #FFF;
}

a:active {
   color: #FFFFCC;
}

