@charset "utf-8";
/*******************************************************************************/
/************* These are the main settings for the page layout *****************/
/*******************************************************************************/
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size:12pt;
	background: #FFFFFF;
	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;
}

.twoColFixLtHdr #container { 
	width: 1004px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #DDDDDD; 
	/* padding: 0 10px 0 20px;  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. */
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left;  /*since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 5px 15px 10px;
	background: #FFFFFF/*#008DFF;*/
}
.twoColFixLtHdr #mainContent { 
	margin: 1px 0 0 205px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer { 
	 padding: 1px 5px 15px 10px; /*this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF; 
} 
.twoColFixLtHdr #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 */
}
/**************************************************************
/* These are for the main template tables etc...
***************************************************************/
.twoColFixLtHdr #table_bgcolor {
	background-color:#FFFFFF;
}
.twoColFixLtHdr #main_header {
	background:url(../images/main_header.gif);
}
.twoColFixLtHdr #left_top {
	background:url(../images/left_top.gif);
}
.twoColFixLtHdr #left_bottom {
	background:url(../images/left_bottom.gif);
}
.twoColFixLtHdr #centre_tl_cnr {
	background:url(../images/centre_tl_cnr.gif);
}
.twoColFixLtHdr #centre_top {
	background:url(../images/centre_top.gif);
}
.twoColFixLtHdr #centre_tr_cnr {
	background:url(../images/centre_tr_cnr.gif);
}
.twoColFixLtHdr #centre_left {
	background:url(../images/centre_left.gif);
}
.twoColFixLtHdr #centre_right {
	background:url(../images/centre_right.gif);
}
.twoColFixLtHdr #centre_bl_cnr {
	background:url(../images/centre_bl_cnr.gif);
}
.twoColFixLtHdr #centre_bottom {
	background:url(../images/centre_bottom.gif);
}
.twoColFixLtHdr #centre_br_cnr {
	background:url(../images/centre_br_cnr.gif);
}
.twoColFixLtHdr #centre_bottom {
	background:url(../images/centre_bottom.gif);
}
.twoColFixLtHdr #footer_end_left {
	background:url(../images/footer_end_left.gif);
}
.twoColFixLtHdr #footer_end_right {
	background:url(../images/footer_end_right.gif);
}

.twoColFixLtHdr #a:hover {
color:#00FF33;
text-decoration:none;
}
/*****************************************************************/
.oneColElsCtr #container {
	width: 36em;
	background: #008DFF;
	/* margin: 0 auto; the auto margins (in conjunction with a width) center the page
	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtr #mainContent {
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.iFrameInfo {
	background: #008DFF;
	margin-left:0.2em;
	margin-right:0.5em;
	margin-top:0.2em;
	text-align: left;
	color: #cccccc;
}
/*******************************************************************************/
/************* These are the link colours on the page *****************/
/*******************************************************************************/
a:link {
	color: #043FC1;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #0033CC;
}
a:hover {
	text-decoration: none;
	color: #00FF33;
}
a:active {
	text-decoration: none;
	color: #0033CC;
}
/*******************************************************************************/
/************* These are the main font styles for the site *****************/
/*******************************************************************************/
.smallBold {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: small;
	color: #CCCCCC;
}

.secondaryMenu {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: x-small;
	color: #CCCCCC;
}

.tinyBold {
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:8pt;
	font-weight:bold;
	color:#043FC1
}

footer, td, th {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 8pt;
	color: #CCCCCC;
}

h1 {	
	font-size: 18pt;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-weight: normal;
}
body {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #CCCCCC;
	font-style: normal;
	font-weight: normal;
}
.maillink{
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 8pt;
	color: #CCCCCC;
}

.SDCNormal {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #CCCCCC;
	font-style: normal;
	font-weight: normal;
}
.SDCNormal9 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #CCCCCC;
	font-style: normal;
	font-weight: normal;
}
.SDC_WhtBldSC {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: small-caps;
	color: #FFFFFF;
}

.SDC_SmlWhtBldSC {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: small-caps;
	color: #FFFFFF;
}
.SDC_SmlGrayBldSC {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: small-caps;
	color: #CCCCCC;
}
.SDC_Standard {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: small-caps;
	color: #CCCCCC;
	background-color: #008dff;
}

.SDC_Emph {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	color: #00FF33;
	font-style: oblique;
	font-weight: 300;
}

.SDC_EmphLarge {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #00FF33;
	font-style: oblique;
	font-weight: 600;
}
.SDC_DiveSiteName {
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:12pt;
	color:#FFFFFF;
	font-weight:bolder;
}

.breadcrumbmenu {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: small;
	color: #043fc1;
}

.SDC_ColPanelHeader {	
	font-size: 14pt;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-weight: normal;
}

.SDC_PageHeading {	
	font-size: 18pt;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-weight: normal;
}

.SDC_ColPanelBody {	
	color: #FFFFFF;
	cursor: pointer;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: small;
}

.SDC_DirectionInfo {
	font-size:10pt;
	font-family:Gneva, Arial, Helvetica, sans-serif
	color:#000000;
	font-weight:normal;
}

.tableHeader {
	font-size: 16px;
	color: #33CCFF;
	font-weight: bold;
	border-bottom-style:groove;
	border-bottom-width:thin;
}
li {
	font-size:9pt;
	font-weight:normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style:normal;
	color:#cccccc;
}

ul.NoBullet {
  list-style-type: none
}
ul.NoBulletNoIndent {
  list-style-type: none;
  margin-left: 5px;
  padding-left: 0px
}
/*******************************************************************************/
/************* These are the main border settings *****************/
/*******************************************************************************/
.tableborder {
	border-left-style:groove;
	border-left-width:thin;
	padding-left:10px;
}
.tableTopBorder {
	border-top-style:groove;
	border-top-width:thin;
	padding-top:5px;
}

.DivBars {
	color: #043FC1;
	font-size:medium;
	}
.imageBorder {
	border-width: 4px;
	border-color: #008DFF;
}
.imageBorderR {
	border-width:thick;
	border-right-width: 10px;
	border-bottom-width:10px;
	border-top-width:5px;
	border-color: #008DFF;
}

.imageBorderL {
	border-width:thick;
	border-left-width: 10px;
	border-top-width:10px;
	border-color: #008DFF;
}
.bulletList {
	list-style-image:url(../images/j0115844.gif);
	list-style-type:disc;
	list-style-position:outside;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: normal;
	color: #FFFFFF;
}
.noIndentUL {
	margin-left:10px;
	padding-left:10px;
	font: bold 14pt Verdana;
	font-weight:normal;
	background-color: #008dFF;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #CCCCCC;
}
