/** CLASSES: ROUNDED CORNERS **/
.rcfull {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.rcbtm {
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	border-bottom-left-radius: 5px;
	
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
/** CLASSES: MISC **/
.left { text-align:left; }
.inline { display:inline; }
/** RESETS **/
body, img {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
img {
	border: none;
}
.noscroll {
	overflow-x: hidden;
}
.centred {
	margin: 0 auto;
	align: center;
}
/** ELEMENT RULES **/
a { color: blue; text-decoration: none; }
a:visited { color: blue; }
a:hover { text-decoration: underline; }

h1:hover {
	color: #a00;
}

hr {
	color: #000;
	height: 1px;
}

body {
	height: 1000px;
	width: 1000px;
	text-align: center;
	font-family: Calibri, Verdana, sans-serif;
}
#outer {
	position: relative;
}
#logo {
	position: relative;
	left: 0px;
	padding-top: 10px;
}
#nav {
	position: relative;
	top: 20px;
	height: 45px;
	background-color: #3a3a3a;
}
#nav a {
	/* T R B L */
	padding: 5px 15px 5px 5px;
	text-decoration: none;
	color: white;
	font-weight: 900;
	font-size: 2em;
	color: #0eabdc;
	text-shadow: #000 2px -2px 0px;
}
#nav a.current { color: #fff; }
#nav a:hover { color: #dc870e; text-shadow: #86210a 2px -3px 0px; }
#header {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 125px;
	background-color: #c4c5ff;
}
#main {
	position: relative;
	background-image: url('images/fd_fbg.jpg');
	background-repeat:none;
	height: 800px;
	width: 100%;
}
#content {
	background-color: white;
	position: relative;
	width: 900px;
	height: 700px;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=77)"; // first!
	filter: alpha(opacity=77);
	opacity: 0.77;
	padding: 10px 5px 5px 10px;
	overflow: auto;
	text-align: left;
}
#footer {
	position: relative;
	width: 995px;
	height: 50px;
	background-color: #333;
	color: white;
	font-family: Franklin Gothic Medium, inherit;
	padding: 5px 0px 0px 5px;
}
#cclic {
	position: relative;
	left: 1000px;
	top: -33px;
	margin-left: -100px; /* original image is 88x31 */
}

/** SUBNAV **/
#subnav .menu ul {
	display: inline;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
#subnav .menu ul li {
	list-style-type: none;
	display: inline;
	padding-left: 5px;
	padding-right: 5px;
	border-left: dotted 1px gray;
}
#subnav .menu ul li:first-child {
	/* first link */
	border: none;
}
/** OPACITY IMAGE HACK **/
#content img {
	opacity: 1.0;
}
