/* The Carpenter's Project main style sheet. */

.menuminwidth0 {             /* for all browsers (non-IE) that obey min-width */
	position:relative;
	border:0;
	margin:0;
	padding:0;
	width:100%;

	min-width:800px;
}

/* suppress our whole menu when not an interactive mode (when printing, etc.) */
@media print, projection { .menuminwidth0 { d\isplay:none; } }

* html .menuminwidth1 { /* this allows IE5/6 to simulate min-width capability */
	position:relative;  /* we can simulate a minimum width by creating a large */
	float:left;          /* border in this first div, then placing our content */
	height: 1px;          /* into a second nested div (see 2nd nested div next */
	border-left:800px solid #fff;    /* CSS box-model borders are a fixed size */
}

* html .menuminwidth2 {    /* used to simulate min-width capability for IE5/6 */
	position:relative;
	margin-left:-800px;
	height: 1px;
}

body {
  color: black;
  background:url('images/bg-1.gif') repeat-x;
  min-width:800px;
  max-width:70em; 
  margin: 0 auto 0 auto;
  text-align:center;
}

h1 {
  color: #e3e3e3;
  background: url('images/hgrad.jpg') repeat-y;
  font:bold 22px Times, sans-serif;
  text-align:left;
  margin:0.5em 0 -0.5em 0;
  padding:0 0 0 2px;
}

IMG.centered {
  display:block;
  margin-left:auto;
  margin-right:auto;
}

P {
  margin:0;
  padding:0 0 1em 0;
}

P.centered {
  text-align:center;
}

P.indent {
  margin:0 0 0 50px;
}

P.pad {
  margin:0 50px 0 50px;
}

.tplist ol {
  margin: 0 0 0 0;
  line-height:1.0em;
}

.tplist ol li {
  margin: 0 0 0.5em 0;
}

ol.indent {
  margin:0 0 0 0;
}

#content {clear:both}
#main {
  display:block;
  width:800px;
  margin:0 auto 0 auto;
  padding:7px 15px 0 15px;
  background:#fff;
  position:relative;
  font:18px Times, serif;
  text-align:justify;
  z-index:0;
}

#leftimage {
  float:left;
  width:350px;
  margin:0;
  padding:0 5px 6px 0;
  background:#fff;
}

#rightimage {
  float:right;
  width:335px;
  margin:0;
  padding:0 0 6px 15px;
  background:#fff;
}

#limage1 {
  float:left;
  width:226px;
  margin:0;
  padding:0;
  background:#fff;
}

#limage2 {
  float:left;
  width:350px;
  margin:0;
  padding:0 20px 0 0;
  background:#fff;
}

#limage3 {
  float:left;
  width:256px;
  margin:0;
  padding:10px 20px 0 0;
  background:#fff;
}

#rimage1 {
  float:right;
  width:226px;
  margin:0;
  padding:0;
  background:#fff;
}

#rimage2 {
  float:right;
  width:256px;
  margin:0;
  padding:0 0 0 20px;
  background:#fff;
}

#rimage3 {
  float:right;
  width:350px;
  margin:0;
  padding:0 0 0 20px;
  background:#fff;
}

#cimage {
  width:227px;
  margin:0 auto 0 auto;
  padding:0;
  background:#fff;
}

#cimage2 {
  width:350px;
  margin:0 auto 0 auto;
  padding:0;
  background:#fff;
}

#righttext {
  position:absolute;
  top:230px;
  left:360px;
  width:424px;
  margin:0;
  padding:0;
  background:#fff;
}

#blank {
  display:block;
  position:relative;
  width:750px;
  height:260px;
  margin:50px 0 0 0;
  padding:0 0 0 0;
  background:#fff;
}

#blank2 {
  display:block;
  position:relative;
  width:750px;
  height:260px;
  margin:0 0 0 0;
  padding:0 0 0 0;
  background:#fff;
}

#blank3 {
  display:block;
  position:relative;
  width:800px;
  height:350px;
  margin:0 0 0 0;
  padding:0 0 0 0;
  background:#fff;
}

#blank4 {
  display:block;
  position:relative;
  width:800px;
  margin:0 0 0 0;
  padding:0 0 20px 0;
  background:#fff;
}

#copyright {
  display:block;
  color:#000;
  margin: 5px auto 5px auto;
  padding: 0;
  text-align:center;
}


.menu {
  position:relative;
  text-align:center;
  margin:4px 0 0 0;
  border:0;
  padding:0;
  width:100%;
  height:auto;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:16px;
  background:white;
  z-index:99;
}



.drop {
	display:block;
	padding:1px 0.33em;	       /* this sets the l/r margins for our menu item */
	margin:0;
	text-align:left;   /* this right alignment goes with the float:left below */
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
	cursor:hand;           /* IE5 only knows about "hand", so set it both ways */
}

.drop span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down menus which link to sub-menus */
}

.rightmenu {
	position:relative;  /* establish a local positioning context for YAH label */
	float:right;                  /* and right-align it at the top of our page */
}

.menu img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}


.menu ul {
	padding:0;
        margin:0 auto 0 auto;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
  position:relative;
  display:inline;
  padding:0;
  text-align:left;
  margin:0 -2px 0 -2px;
}


.menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:16px;        /* this sets the base font size for our entire menu */
}

.menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:2px;                         /* this is our box border width */
}

.menu ul li a,
.menu ul li a:visited {
  color:#960b0b;
/*  background:#e3e3e3; */
  background:url('images/nav_default1.jpg') repeat-x;
  padding:2px 8px 2px 8px;
  height:20px;
  width:auto;
  border-top:1px solid #b3b3b3; 
  border-right:1px solid #b3b3b3;
  border-bottom:2px solid #b3b3b3;
  border-left:1px solid #b3b3b3;
  text-decoration:none;
  text-align:left;
  font:bold 16px Arial, Helvetica, sans-serif;
}

.menu ul li a:hover {
  color:#fff;
  background:#697da9;
}

.menu ul li:first-child a{
  border-left:1px solid #b3b3b3;
  margin-left:0;
}

.menu ul li:hover ul,
.menu ul li a:hover ul {
	display:block;
	position:absolute;
	margin:0;
        padding:0;
	top:23px;              /* place us just up underneath the top-level images */
	left:-2px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:10em;
	color:#960b0b;                        /* this sets the unselected-text color */
	background:#b3b3b3;         /* this sets our menu's effective "border" color */
}

.menu ul li:hover ul.leftbutton,
.menu ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

.menu ul li:hover ul.skinny,
.menu ul li a:hover ul.skinny {             /* 2nd level skinny drop-down box */
	width:5.4em;   /* with a 18px default font, this is 97px width (97/18) */
}

.menu ul.rightmenu li:hover ul,
.menu ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
	width:400px;      /* with a 12px default font, this is 228px width (228/12) */
}

* html  ul.rightmenu li a:hover ul {         /* IE5/6 needs a tweak here */
	right:-1px;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
        float:left;
	border:0;
	margin:0;
	padding:4px;
	height:auto;
	color:#960b0b;               /* this sets the unselected drop-down text color */
	background:#e3e3e3;       /* this sets the drop-down menu background color */
	width:10em;
	font:16px Arial, Helvetica, sans-serif;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#fff;
	background:#697da9;
}

.menu ul li:hover ul.skinny li a,
.menu ul li a:hover ul.skinny li a,
.menu ul li:hover ul.skinny li a:hover,
.menu ul li a:hover ul.skinny li a:hover {     /* 2nd level un+selected items */
	width:10em;
}

/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}
     
.menu ul li:hover ul li:hover ul,
.menu ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:relative;
	margin-top:-1px;	      /* bring the top edge of the 3rd level menu up one */
	margin-left:1em;
	top:0;
	left:0;
	width:10.3em;
}

.menu ul li:hover ul li:hover ul li a,
.menu ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
        font-size:14px;
	color:#960b0b;
	width:10.3em;
	background:#b3b3b3;
}

.menu ul li:hover ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
        font-size:14px;
        color:#fff;
	width:10.3em;
	background:#b3b3b3;
}
