@charset "utf-8";
/* CSS Document */
/* Jeanne's custom CSS for presentations */
/* jeanne@w3.org                         */

/* styling for named background */
div.background.flower {
  z-index: 2;
  bottom: 0; 
  height: 100%;
  background: transparent;
}

div.background.flower img { margin-top: 4em; width: 100%; height: 80% }

/* the following makes the pre background translucent */
/* opacity is a CSS3 property but supported by Mozilla family */
/* filter is an IE specific feature that also requires width */
div.slide.flower pre {
  width: 93%;  /* needed for IE filter to work */
  opacity: .8;
  filter: alpha(opacity=80);
}

div.background.blank {
  z-index: 2;
  bottom: 0; 
  height: 100%;
  background: transparent;
}

div.background.blank img { margin-top: 4em; width: 100%; height: 80% }

/* the following makes the pre background translucent */
/* opacity is a CSS3 property but supported by Mozilla family */
/* filter is an IE specific feature that also requires width */
div.slide.blank pre {
  width: 93%;  /* needed for IE filter to work */
  opacity: .8;
  filter: alpha(opacity=80);
}

img.floatLeft { 
  margin-top: 0.5em;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 1em;
  background:  #ffffff;
  border-width: 0;
  height: 3em;
  max-width: 400px;
  z-index: 2;
  float: left;
}
img.floatRight { 
  margin-top: 0.5em;
  margin-bottom: 0;
  margin-left: 1em;
  margin-right: 0;
  background:  #ffffff;
  border-width: 0;
  height: 3em;
  max-width: 400px;
  z-index: 2;
  float: right; 
}