/*** The contents of this file were (ostensibly) written by Owen Briggs
@ www.thenoodleincident.com, and any Copyright rests with him. No
credit for the work that has gone into researching the use of font
sizes and styles rests with ClevaTreva Designs. 100% Kudos to Owen.
This is an EDITED version of the original! You will want to play with
these settings to make your own style for fonts and color other
bits. ***/

body {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size:100.1%; /*** Don't change this setting. Make all other
font-sizes in % (preferred) or ems ***/
	color:#000000;
	}
a {	text-decoration: none;	font-weight: bold;	outline: none; color: #1808f0;	}
a:link {	}
a:visited {	}
a:hover {	text-decoration: underline;	 color: #20e8f0;	}
a:active {	}

strong, b {	font-weight: bold;	}
hr {
	margin: 0px; /* fixes xhtml N6 bug where the hr sits to the left*/
	color: #ccc; /* for ie */
	background-color: #ccc; /* for everyone else */
	height: 1px;
	}
p {	font-size: 80%;	line-height: 1.1em;	margin-top: 1.5em;	margin-bottom: 1.5em; 	}
li {	font-size: 80%;	line-height: 1.1em;	margin-top: 0.3em;	margin-bottom: 0.2em; 	}
ul {	margin-top: 1.0em;	margin-bottom: 1.0em; 	}
td {	font-size: 90%;	}
hr {	margin-top: 2.0em;	margin-bottom: 2.0em;	}
img {	border: 0;	}
/*** the following styles and notes are (c) Copyright
Big John @ www.positioniseverything.net ***/
/*div,p{margin:0} dm*/

.italics-test, .italics-test-side {
font-style: italic; 
text-align: justify; 
}

/***
The following fixes prevent justified italic text
from destroying the layout in IE/win. 
***/

/* \*/
* html .italics-test, * html .italics-test-side {
overflow: hidden;
width: 100%;
o\verflow: visible;
w\idth: auto;
he\ight: 1px;
word-wrap: normal;
}

/* Next comes the css for the specific layout */

html,body{
  margin:0; /*** Do NOT set anything other than a left margin for the page
as this will break the design ***/
  padding:0;
  border:0;
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
}
body{
  background: #eee ;
  min-width:801px; /*** This is needed for moz. Otherwise, the header and footer will
slide off the left side of the page if the screen width is narrower than the design.
Not seen by IE. Left Col + Right Col + Center Col + Both Inner Borders + Both Outer Borders ***/
  text-align:center; /*** IE/Win (not IE/MAC) alignment of page ***/
}
.clear{
  clear:both;
/*** these next attributes are designed to keep the div
height to 0 pixels high, critical for Safari and Netscape 7 ***/
  height:1px;
  overflow:hidden;
  line-height:1%;
  font-size:0px;
  margin-bottom:-1px;
}
* html .clear{height:auto;margin-bottom:0} /*** stops IE browsers from displaying
the clear div/br in the page, as these are for Moz/Opera and
Safari only. If IE 5.x Win DID display these, the page is too high ***/
#fullheightcontainer{
  margin-left:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
  margin-right:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
  text-align:left; /*** IE Win re-alignment of page if page is centered ***/
  position:relative; /*** Needed for IE, othewise header and footer aren't contained
directly above and below the body ***/
  width:801px; /*** Needed for Moz/Opera to keep page from sliding to left side of
page when it calculates auto margins above. Can't use min-width. Note that putting
width in #fullheightcontainer shows it to IE and causes problems, so IE needs a hack
to remove this width. Left Col + Right Col + Center Col + Both Inner Border + Both Outer Borders ***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Needed for Moz to give full height design if page content is
too small to fill the page ***/
}
#wrapper{
  min-height:100%; /*** moz uses this to make full height design. As this #wrapper
is inside the #fullheightcontainer which is 100% height, moz will not inherit heights
further into the design inside this container, which you should be able to do with
use of the min-height style. Instead, Mozilla ignores the height:100% or
min-height:100% from this point inwards to the center of the design - a nasty bug.
If you change this to height:100% moz won't expand the design if content grows.
Aaaghhh. I pulled my hair out over this for days. ***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Fixes height for non moz browsers, to full height ***/
  border-right:1px solid #000000; /*** Sets the external right side border. ***/
  border-left:1px solid #000000; /*** Sets the external left side border. ***/
  background:#fff; /*** Set background color for side columns for Safari & IE ***/
}
#wrapp\65	r{ /*** for Opera and Moz (and some others will see it, but NOT Safari) ***/
  height:auto; /*** For moz to stop it fixing height to 100% ***/
}
/* \*/
* html #wrapper{
  height:100%;
}
/* Last style with height declaration hidden from Mac IE 5.x */
/*** Fixes height for IE, back to full height,
from esc tab hack moz min-height solution ***/
#outer{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  position:relative; /*** IE needs this or the contents won't show outside the parent container. ***/
  margin-left:150px; /*** Critical left col dimension value = left col width ***/
  width:648px; /*** Critical left and right col/divider dimension value (moves inversly) = center col width ***/
  border-left:1px solid #000000; /*** Sets the internal left side border. ***/
  background:#fff; /*** Sets background of center col***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Needed for full height inner borders in Win IE ***/
}
/*** The next style hack for widths are NOT needed if no internal side borders are needed ***/
* html #outer{ /*** IE5.x/win box model fix ***/
  width:649px; /*** Critical left and right col/divider dimension value
(moves inversly) = Center Col Width + Both Inner Borders ***/
  w\idth:648px; /*** Critical left and right col/divider dimension value (moves inversly) = Center Col Width ***/
}
#left{
  width:152px; /*** Critical left col/divider dimension value = Left Col Width + 1px + One Internal Border Width ***/
  float:left;
  display:inline;
  position:relative; /*** IE needs this or the contents won't show
outside the parent container. ***/
  margin-left:-151px; /*** Critical left col/divider dimension value = left col width + one internal border width ***/
}
*>html #left{width:151px;} /*** Fix only for IE/Mac = left col width + one internal border width ***/
#container-left{
  width:150px; /*** Critical left col dimension value = left col width - 1px ***/
}
/*** Static fixes ***/

/*** a Note on the Holly hack: if IE/Win shows bugs it's a good idea to apply the height:1%
     hack to different elements and see if that fixes the problem. Sometimes it may be
     necessary to use "position: relative;" on certain elements, but it's hard to tell in
     advance which elements will need such fixes. ***/
/*** This is a STATIC fix for IE5/Win at the largest text size setting. ***/
/* \*/
* html #left{margin-right:-3px;}
/* Above style hidden from Mac IE */
/*** All the IE fixes that are inside seperate "Mac-hacks" may be grouped within
     just one Mac-hack for convenience if desired. However, each fix must come
     later than the rule it is fixing or the fix itself will be overridden. ***/
#center{
  width:648px; /*** Set to = center col width ***/
  float:right;
  display:inline;
/* \*/
  margin-left:-1px;
/* Hidden from IE-mac */
}
/*** clearheader heights are made from header height + borders +
any sidebar box height, less any sidebar intrusion.
Similar calcs for footers. ***/
#clearheadercenter{
  height:182px; /*** needed to make room for header in center column ***/
  overflow:hidden;
}
#clearheaderleft{
  height:182px; /*** needed to make room for header in left column ***/
  overflow:hidden;
}
#clearfootercenter{
  height:52px; /*** needed to make room for footer in center column ***/
  overflow:hidden;
}
#clearfooterleft{
	height:52px; /*** needed to make room for footer in left column ***/
	overflow:hidden;
}
#footer{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  position:absolute;
  clear: both;
  width:801px; /*** Set to Left Col + Right Col + Center Col + Both Inner Borders +
Both External Borders ***/
  height:52px; /*** = Bottom Margin + One Outer Border + body to footer divider depth +
subfooter1 height + any other subfooter heights ***/
  overflow:hidden;
  margin-top:-52px; /*** negative height ***/
}
#subfooter1{
  background:#3c9; /*** Background Color of Sub-footer #1 ***/
  text-align:center;
  margin:0 1px; /*** Margin to show left and right External Borders - all sub-headers and sub-footers ***/
  height:50px; /*** sub-footer row height ***/
}
#subfooter1 a.stats {display: block; float: right;}
#subfooter1 p {font-size: 80%; color: #000; padding-top: 10px; margin: 0;}
#subfooter1 p  a {text-decoration: underline; color: #000;}
#subfooter1 p  a:link {text-decoration: underline;}
#subfooter1 p  a:visited {text-decoration: underline;}
#subfooter1 p  a:hover {text-decoration: none;}
#subfooter1 p  a:active {text-decoration: underline;}

#header{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  position:absolute;
  top:0px;
  width:801px; /*** Set to Left Col (not if left sidebar fully intrudes into header or left sidebar is off)
+ Right Col (not if right sidebar fully intrudes into header or right sidebar is off) + Center Col + Both Inner
Borders (not if any sidebar intrudes into header or footer, or Inner Borders are off) + Both External Borders
(not if external borders are off) ***/
  height:182px; /*** = Top Margin + One Outer Border + header to body divider depth +
subheader1 height + any other subheader heights ***/
  overflow:hidden;
}
.outer_horiz_border, .sb_outer_horiz_border{
  background:#000000;
  height:1px;
  overflow:hidden;
  font-size:0px
}
#subheader1{
  background:#fff  url(../images/sculls.gif) no-repeat  center; /*** Background Color of Sub-header #1 ***/
	  text-align:center;
  margin:0 1px; /*** Margin to show left and right External Borders - all sub-headers and sub-footers ***/
  height:130px; /*** sub-header row height ***/
}
#subheader1 img {margin: 0 auto 0 10px; border: 0;}
#subheader1 a img {margin: 0;}
#subheader1 a {display: block; float: right; }
#subheader1 h2 {display: block; margin: 0 auto 0 200px; text-align: left;  }

#subheader2{
  background:#3c9; /*** Background Color of Sub-header #2 ***/
  text-align:center;
  margin:0 1px; /*** Margin to show left and right External Borders - all sub-headers and sub-footers ***/
  height:50px; /*** sub-header row height ***/
	padding: 0;  border: 1px solid #3c9  ;
}
#subheader2 h2 {margin: 0; padding: 0; text-align:center;}


#gfx_bg_middle{
  top:0px;
  position:absolute;
  height:100%;
  overflow:hidden;
  width:548px; /*** = Center Col Width ***/
  margin-left:150px; /*** = Left Col Width ***/
  background:#fff; /*** Set background color for center column for Mozilla & Opera ***/
  border-left:1px solid #000000;
  border-left:1px solid #000000;
}
* html #gfx_bg_middle{
  display:none; /*** Hides the moz fix from IE ***/
}

/*Aladropdown styles for the menu*/

#menu ul {	font: normal 110% verdana;	margin: 0;	padding: 0;	list-style: none;	
width: 150px; /* Width of Menu Items */
	border: 0;
	}
#menu ul li {	position: relative;	margin: 0;}
#menu ul li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}
/* Styles for Menu Items */
#menu ul li a {
	display: block;
	text-decoration: none;
	color: #000;
	background: #3c9; /* IE6 Bug */
	padding: 5px;
	border: 5px solid #3c9;
	border-bottom: 0;
	width: 130px; /*width required to avoid the IE whitesapce bug*/
	}
/* Fix IE. Hide from IE Mac \*/
* html #menu ul li { float: left; height: 1%; }
* html #menu ul li a { height: 1%; }
/* End */
#menu ul li a:hover { color: #f00008; background: #3c9; border-left: 5px solid #1808f0;} /* Hover Styles */	
#menu ul li ul li a { padding: 5px; } /* Sub Menu Styles */	
#menu ul li:hover ul, #menu ul li.over ul { display: block; } /* The magic */

/*end of Aladropdown styles for the menu*/

/*dm mark up*/

#container-center {padding: .5em;}
#container-center h2 {color: #f00008; font-size: 100%}
#container-center h3 {color: #000; font-size: 90%}
#container-center p {margin: 1.12em; }


ul.nodots {list-style:none}

p.readynote {display: block; width: 70%; margin: 1em auto; border: 1px solid #f03; padding: 10px;}

#left p {text-align: center; font-size: 70%; padding: 0 10px;}
#left img {display: block; margin: 1em auto; }

img.imgleft {display: block; float: left; border: 0; margin: 0 1em 1em 0;}
img.imgright {display: block; float: right; border: 0; margin: 0 0 1em 1em;}

table {
	border: 1px solid #3c9;
	margin: 0 auto; width: 95%;
}

table th {
	font: bold 100% Arial, Helvetica, sans-serif;
	vertical-align: top;
	padding: 0.5em;
	background-color: #3c9; color: #000;
			text-align:center;
	
}


table td {
	vertical-align: top;
	padding: 0.5em;
		border: 1px solid #3c9;
		text-align:center;
		font-size: 80%;
}

pre {	font-size: 8pt; background-color: #98fb98;}

.startorder h1 {font-size: 80%;}
.startorder p {	 background-color: #3c9;}



table.sortable a img {
  border: 0;
}

table.sortable {
  border-spacing: 0;
  border: 1px solid #000;
  border-collapse: collapse;
  test-align: center;
}

table.sortable th, table.sortable td {
  text-align: centre;
  padding: 2px 4px 2px 4px;
  width: 100px;
  border-style: solid;
  border-color: #444;
}

table.sortable th {
  border-width: 0px 1px 1px 1px;
  /*background-color: #ccc;*/
}

table.sortable td {
  border-width: 0px 1px 0px 1px;
}

table.sortable tr.odd td {
  background-color: #C2EDDF;
}

table.sortable tr.even td {
  background-color: #fff;
}

table.sortable tr.sortbottom td {
  border-top: 1px solid #444;
  background-color: #ccc;
  font-weight: bold;
}






@media print {
#fullheightcontainer {width: 90%; margin: 0 auto; border: 0;}
#wrapper {margin: 0; width: 100%; border: 0;}
#outer {margin: 0; width: 100%; border: 0;}
#left {display: none; border: 0; margin: 0;}
#center {width: 100%; border: 0; margin: 0;}
#header {display: none; border: 0;}
#clearheadercenter {display: none; border: 0;}
#container-center {margin: 0; width: 100%; border: 0; padding: 0; }
#clearfootercenter {display: none; border: 0;}
#clearheaderleft {display: none; border: 0;}
#gfx_bg_middle{display: none; border: 0;}
#footer {display: none;}
#drawhead {display: none;}
div.noprint {display: none;}
}
