/* xmas08.css */

/* Universal style rule */
*{
  margin: 0;
  padding: 0;
}

body {
  background-image:url(pics/bluestripe.gif);
  font-family: Arial, Helvetica, sans-serif;
}

#wrapper{
  width: 50em;
  background-color: #9BC5ED;
  /* 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;
} 

/** 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{
  /* Remember, content and navbar left margin must match this width */
  width:11em;
  /* Center images and text inside this div */
  text-align:center;
  /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:9.25em; /* Same as branding div height */
  left:0;
}

/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:100%;
}

/* Applies to paragraphs in the leftcolumn division */
#leftcolumn p{
  width:85%;
  font-size:0.8em;
  margin:1em auto;
  text-align:left;
  text-decoration:none;
}

/* Applies to text links in the leftcolumn division */
#leftcolumn a{
   text-decoration:none;
   font-weight:bold;
}

/* Applies to box in the leftcolumn division */
#leftcolumn .leftbox{
  border:double 4px #f00;
  background-color:white;
  padding:8px;
  width: 72%;
  font-size:0.85em;
  font-family:'Times New Roman',Times, serif;
  font-weight:bold;
  font-style:italic;

}

/* Applies to text links after visited in the leftcolumn division */
#leftcolumn a,
#leftcolumn a:link,
#leftcolumn a:visited{
   color:#2F1E6F;
}

/* Applies to hover, active, leftcolumn links */
#leftcolumn a:hover,
#leftcolumn a:active{
   color:#00F;
}


/********** More Major layout divisions **********/

/* Navbar division */
#navbar{
  background:#aaa url(images/navbak.jpg) repeat-x center;
  /* Left margin must match leftcolumn width */
  height:1.7em;
  /* For absolutely-positioned navbar */
  position:absolute;
  top:9.25em; /* Same as branding div height */
  left:11em; /* Same as leftcolumn width */
  width:39em; /* Layout width minus leftcolumn width */
}

/* 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:77%;
  color:#006;
  background:#aaa url(images/navbak.jpg) repeat-x center; 
  display:block;
  height:2em;
  width:8.0em;
  border-right: solid 1.5px #ccf; 
  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:#ddd url(images/navhover.jpg) repeat-x center;
  color:#000;
}






/* 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,
  color:#000;
  text-align:left;
  display:block;
  width:6.25em;
  padding:0 0 0 1em;
  height:auto; 
}

#navbar li a:hover ul li a{ /* IE6 hack */
  color:#000;
  text-align:left;
  display:block;
  width:9.5em;
  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: #ebebeb; 
  color:#006;
}

/* 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{
/* Left margin must match leftcolumn width */
  margin-left:11em;
  background-color:#fff;
  color:#000;
  padding:2em 10px 10px 20px;
  height:30em;
}

/* 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;
}

/* 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;
}

#content object{
  position:absolute;
}


/* 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;
}




/* Style for tables of thumbnail images */
table.thumbs{
  text-align:left;
  border-collapse:collapse;
}

/* Style for table cells that contain thumbnails */
td.thumbs{
  border:solid 1px #00bfff;
  padding:10px;
}

/* Style for thumbnail images */
img.thumbs{
  width:100px;
  height:125px;
}




#footer{
  background-color:#2F1E6F;
  border-top: solid 2px #0000FF;
  padding:0.5em;
  text-align:center;
  font-size:0.83em;
}
  
#footer p{
  color:#CCC;
}


#footer a:link,
#footer a:visited{
/* No underline on links */
  text-decoration:none;
  color:#FFF;
}

#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 */
}