 /* CSS */

/* the appropriate background class will be applied based on class attached to the body */

body {
	margin: 0;
	padding: 0;
	font: Arial,Verdana, Helvetica, sans-serif;
}

#oneColLayout {
	background-color: #000000;
	margin: 20px;
}

/* default links */

a:link {
background-color: transparent;
color: #DD6161;
}
a:hover {
	color: #0687A4;
}
a:visited {
color: #DD6161;
}

/* headers here */

h1 {
margin: 0;
padding: 130px;
font-size: 150%;
color: #FF0000;
text-indent: -9000px;
}

/* main wrapper that holds it all centrally */

#wrapper {
	width:795px;
	margin:0 auto;
	padding: 0 0px 0px;
	background-repeat: repeat;
	background-color: #000000;
}

/* default masthead holding the banner and mainNav */

#header {
width: 795px;
height: 0px;
background:#FFFFFF;
}

/* box is the shaded area that holds a rounded corner box or flat box, fitting the given width of the column it is in. Usually combined with another class to control inner elements, eg box default */

.box {
	margin: 15px 0px 10px 10px;
	width: 795px;
	padding-right: 0px;
	padding-left: 0px;
}

/* Styling of the boxes if there is no JavaScript support */

.cbb {
	margin: 0 10px;
	background: #FFF;
	padding: 5px 0;
	line-height: 170%;
	width: 775px;
}

/* paragraph styles for any main boxes */
.cbb p, .cb p {
margin: 0;
padding: 0 5px 5px 10px;
color: #000000;
}

/* Insert the custom corners and borders for browsers with sufficient JavaScript support */

.cb {
margin: 0px;
line-height: 170%;
	}

/* Rules for the top corners and border */
.bt {
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.png) no-repeat 100% 0 !important;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.gif) no-repeat 100% 0;
	margin:0 0 0 18px;
	height:27px;
	}
.bt div {
	height:27px;
	width:18px;
	position:relative;
	left:-18px;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.png) no-repeat 0 0 !important;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.gif) no-repeat 0 0;
	}

/* Rules for the bottom corners and border */
.bb {
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.png) no-repeat 100% 100% !important;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.gif) no-repeat 100% 100%;
	margin:0 0 0 12px;
	height:14px;
	}
.bb div {
	height:14px;
	width:12px;
	position:relative;
	left:-12px;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.png) no-repeat 0 100% !important;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/box.gif) no-repeat 0 100%;
	}

/* Insert the left border */
.i1 {
	padding: 0 0 0 12px;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/borders.png) repeat-y 0 0 !important;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/borders.gif) repeat-y 0 0;
	}
/* Insert the right border */
.i2 {
	padding: 0 12px 0 0;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/borders.png) repeat-y 100% 0 !important;
	background:url(file:///C|/Documents and Settings/Ray/Desktop/MorseSite/borders.gif) repeat-y 100% 0;
	}
/* Wrapper for the content. Use it to set the background colour and insert some padding between the borders and the content. */
.i3 {
	background:#FFF;
border: 1px solid #FFF;
	border-width:1px 0;
	padding:0 5px;
	}
/* CSS for the box ends here */

/* erm, the footer */

#footer{
	clear:both;
	width: 835px;
	height: 35px;
	padding: 0px;
	background-color: #000000;
}
#footer p {
margin: 10px 10px 0 0;
padding: 10px 4px 4px 0;
font-weight: bold;
}

#footer a:link, #footer a:visited {
color: #FFFFFF;
}
#footer a:hover {
color: #cc3333;
}

/* For any images in the default boxes - the pencil icons - I don't want the 2px border. So I set border to 0 */

.default img {
	border: 0;
	margin-bottom: 5px;
}

/* For these larger images, I don't want them to float, for that causes the h3 above to be pushed to the right. I also declare a top margin to space the header and image apart, and also increase the border width slightly.  We also set it to display:block so that if body id is twoColLayout, the image will force the header and other bits to wrap around it */

.mainImage {
display: block;
float: none;
margin-top: 3px;
border: 3px solid #C5BDBD;
}

/* spacer used immediately after the floated gallery thumbnails to ensure the box expands to hold them all */

/* =Basic HTML, Non-essential
----------------------------------------------------------------------*/
p
{
	clear: both;
	font: 10px Verdana, sans-serif;
	padding: 10px 0;
	text-align: center;
}

/* =Hoverbox Code
----------------------------------------------------------------------*/

.hoverbox
{
	cursor: default;
	list-style: none;
}

.hoverbox img
{
	background: #fff;
	border-color: #aaa #ccc #ddd #bbb;
	border-style: solid;
	border-width: 1px;
	padding: 2px;
	
}

.hoverbox li
{
	background: #eee;
	border-color: #ddd #bbb #aaa #ccc;
	border-style: solid;
	border-width: 1px;
	float: left;
	margin: 3px;
	padding: 5px;
	position: relative;
}

.hoverbox a
{
	cursor: default;
	width: 100px;
	height: 75px;
}

.hoverbox a .preview
{
	display: none;
}

.hoverbox a:hover .preview
{
	display: block;
	position: absolute;
	top: -50%;
	left: -50%;
	z-index: 1;
}

.hoverbox .preview
{
	border-color: #000;
}

/* =Internet Explorer Hacks
----------------------------------------------------------------------*/

* html .hoverbox a
{
	position: relative;
}

* html .hoverbox a:hover
{
	font-size: 100%;
	z-index: 1;
}

* html .hoverbox a:hover .preview
{
	top: -50%;
	left: -50%;
}

* html .hoverbox li
{
	position: static;
}

.style1 {
	font-family: "Script MT Bold";
	font-size: 24px;
	color: #333333;
}
