/* layoutstyles.css */

/* Universal style rule */
*{
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #453126;
}

#wrapper{
  width: 52em;
  background-color: #DDBE9E;
  /* Put 0px margin above the wrapper */
  /* Set right and left to auto for centering */
  margin:auto;
  /* Required for absolutely-positioned layout only */
  position:relative;

}

/********** Major layout divisions **********/
#branding{
  background:#DDBE9E url("images/dcsptsHeader.jpg") no-repeat center;
  /* For absolutely-positioned hyperlinks */
  position:relative;
  height:6.5625em;
} 

/* Fixes the mysterious image gap */
#branding img{
  display:block;
}


/********** More Major layout divisions **********/

/* Navbar division */
#navbar{
  background:#453126;
  height:1.7em;
  /* For absolutely-positioned navbar */
  position:absolute;
  top:6.5625em; /* Same as branding div height */
  width:52em;
  left:0;
}

/* 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:78.5%;
  color:#fff;
  background:#453126;
  display:block;
  height:2em;
  width:9.2em;
  border-right: solid 1px #ddd;
  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:#DDBE9E;
  color:#000;
  z-index:100;

}


/* Drop-down menu styles */
/* Applies to drop-down menus in navbar */
#navbar li ul{
  position:absolute;
  z-index:100;
  visibility:hidden;
  
}

/* Make drop-down visible on navbar hover */
#navbar li:hover ul,
#navbar li a:hover ul{ /* IE6 hack */
  visibility:visible;
  top:1.5em; 
  left:0; 
}

/* Applies to links on the drop-down menu */
#navbar li:hover ul li a,
  background-color:#DDBE9E;
  color:#000;
  text-align:left;
  display:block;
  width:8.25em;
  padding:0 0 0 1em;
  height:auto; 
}

#navbar li a:hover ul li a{ /* IE6 hack */
  background:#DDBE9E; /* Removes background image */
  color:#000;
  text-align:left;
  display:block;
  width:10em;
  padding:0 0 0 1em;
  height:auto; 
}

/* Hover on drop-down menu links */
#navbar li:hover ul li a:hover,
#navbar li a:hover ul li a:hover{ /* IE6 hack */
  background:#B8A182; 
  color:#000;
}

/* IE6 hack applies to its table drop-down */
#navbar table {
  margin:-1px; 
  border-collapse:collapse; 
  position:absolute;
  top:0.4em;
  left:0;
  z-index:100;
}


#content{
  background-color:#DDBE9E;
  color:#000;
  padding:2em 10px 10px 20px;
  /* margin-left:1.3em; */
  border-left:solid 5px #453126;
  border-right:solid 5px #453126;
}

/* 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:1em;
}

td.caption{
  font-size:0.75em;
  font-family:Verdanda, Geneva, Univers, sans-serif;
  text-align:right;
  line-height:1.2em;
}

/* Applies to all list text in the content division */
#content u1 li{
  line-height:1em;
  font-size:0.90em;
  font-family:Verdanda, Geneva, Univers, sans-serif;
}

/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:10px 0 10px 0px;
  font-size:0.90em;
  list-style-type:none;
}


/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: Arial, Tahoma, Univers, sans-serif;
  color:#000;
  font-weight:bold;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}

/* Size h1 headings in the content division */
#content h1{
  font-size:2.5em;
}

/* 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:bold;
}
#content table{
  font-family: Arial, Tahoma, Univers, sans-serif;
  font-size: 0.83em;
  border-top: solid 1px #ccc;
} 


#footer{
  background-color:#453126;
  border-top: solid 2px #c9b786;
  padding:0.5em;
  text-align:center;
  font-size:0.79em;
  color:#fff;
}
  
#footer p{
  color:#CCC;
}


#footer a:link,
#footer a:visited{
/* No underline on links */
  text-decoration:none;
  color:#c9b786;
}

#footer a:hover,
#footer a:active{
  color:#CCC;
}

.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 */
}