/* layoutstyles.css */

/* Universal style rule */
*{
  margin: 0;
  padding: 0;
}

body {
  background:#e77844 url(images/bkgrd.gif) repeat;
  font-family: Arial, Helvetica, sans-serif;
}

#wrapper{
  width: 52em;
  background-color: #e77817;
  /* Put 0px margin above the wrapper */
  /* Set right and left to auto for centering */
  margin: 0px auto;
  /* Required for absolutely-positioned layout only */
  position:relative;
} 

/********** Major layout divisions **********/
#branding{
  /* For absolutely-positioned hyperlinks */
  position:relative;
  height:9.15em;
} 

/** branding division hyperlinks **/
#branding a{
  /* Postions are set in tags in layout.htm */
  position:absolute;
  text-decoration:none;
  color:#000;
  font-size:0.8em; 
}

#branding a:link, #branding a:visited{
  color:#000;
}

#branding a:hover{
  color:#0f0;
}
#branding a:active{
  color:#1bb498;
}

/* Fixes the mysterious image gap */
#branding img{
  display:block;
}

/************* Leftcolumn division styles ****************/
/* Leftcolumn styling */

.menu {
z-index:1000;
font-family: verdanda, arial, helvetica sans-serif;
font-size:90%;
font-style:bold;
position:absolute;
top:10.125em;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:138px;
}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; margin-left:0;}
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
background:#000;
height:26px;
float:left;
}

/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:137px;
color:#fff;
text-indent:5px;
border:1px solid #fc0;
border-width:0 1px 1px 0;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {background:#d4d8bd; width:138px; width:137px;}
/* style the link hover */
* html .menu a:hover {color:#fff; background:#000;}

.menu :hover > a {
color:#000; 
background:#e77817;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:138px; 
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}



/********** More Major layout divisions **********/

/* Navbar division */
#navbar{
/* Layout width minus leftcolumn width */
  width:43.125em;
  /* Left margin must match leftcolumn width */
  height:1/7em;
  /* Center images and text inside this div */
  text-align:center;
  /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:9.15em; /* Same as branding div height */
  left:8.875em; /* Same as leftcolumn width */
  background:#e77817; /* Removes background image */

}

/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}

/* List items in the navbar */
#navbar li{
  float:left;
  /* Required for drop-down menus */
  position:relative;
}

/* Applies to navbar links, unvisited and visited */
#navbar a,
#navbar a:link,
#navbar a:visited{
  text-decoration:none;
  font-family:Arial, Helvetica, Sans-Serif;
  font-weight:bold;
  font-size:79%;
  color:#000;
  background:#e77817; /* Removes background image */
  display:block;
  height:2em;
  width:7.65em;
  border-right: solid 1.5px #000;
  border-bottom: solid 3px #000; 
  line-height:2em;
  text-align:center;
  outline-style:none;
}

/* Navbar hover, active, and current page links */
#navbar a:hover,
#navbar a:active,
#navbar li.selected a:link,
#navbar li.selected a:visited{
  background:#000; /* Removes background image */
  color:#fff;
}




/* Content area begins here */
#content{
/* Left margin must match leftcolumn width */
  margin-left:8.75em;
  border-left: solid 2px #000;
  background-color:#fff;
  color:#000;
  padding:2em 10px 10px 20px;
}

/* Applies to tables in content division */
#content table{
  border:0;
  padding:1em;
}

/* Applies to lists in tables in content division */
#content table ul li{
  margin-left:-1.5em;
}

/* Applies to paragraphs in the content division */
#content p{
  line-height:1.5em;
  font-size:0.83em;
  font-family:Verdanda, Geneva, Univers, sans-serif;
  text-indent:0;
}

/* Applies to all list text in the content division */
#content u1 li{
  line-height:1em;
  font-size:0.83em;
  font-family:Verdanda, Geneva, Univers, sans-serif;
}

/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:10px 0 10px 40px;
  font-size:0.83em;
}


/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: Charcoal, Impact, sans-serif;
  color:#000;
  font-weight:normal;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}

/* Size h1 headings in the content division */
#content h1{
  font-size:2em;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1.5em;
}
/* Size h3 headings in the content division */
#content h3{
  font-size:1.25em;
  font-style:normal;
}



/* Thumbnail images for Gallery Pics */

/* Style for tables of thumbnail images */
table.thumbs{
	vertical-align:middle;
	text-align:center;
	border-collapse:collapse;
}

/* Style for table cells that contain thumbnails */
td.thumbs{
	border: solid 2px #000;
	padding: 2px;
}

/* Style for thumbnail images */
img.thumbs{
	width:7em;
	height:6.25em;
	border-width: 0;
}





#footer{
  background-color:#000;
  border-top: solid 2px #000;
  padding:0.5em;
  text-align:center;
  font-size:0.83em;}
  
#footer p{
  color:#fff;
}


#footer a:link,
#footer a:visited{
/* No underline on links */
  text-decoration:none;
  color:#FFF;
}

#footer a:hover,
#footer a:active{
  color:#fff;
}

.hotkey{
  text-decoration:underline;
}


@media print{
/* Start printer-friendly styles */
  /* Set wrapper to fill page width */
#wrapper{
  width:100%;
}

/* Hide leftcolumn, navbar,and footer */
#leftcolumn,
#navbar,
#footer{
  display:none;
}

/* Get rid of content div margins and
padding. Use a different font for print */
#content{
  margin:0;
  padding:0;
  font-family:'Century Schoolbook', Times, Serif;
  font-size:1em;
}



/*End printer-friendly styles */
}