/*
 * File:	resume.css
 * Author:	Charlie Root, ericx@vineyard.net
 * Date:	Mon Sep 15 13:58:58 2008
 * Time-stamp:	<2008-09-16 11:02:45 ericx>
 * Description:	one-off css sheet
 *
 * $Id: resume.css,v 1.1 2009/03/28 19:53:35 ericx Exp $
 * $Log: resume.css,v $
 * Revision 1.1  2009/03/28 19:53:35  ericx
 * As copied from ethel
 *
 */

body {
  width: 700px;
  /* yet another IE fix. adding this allows em proportional sizes to
   * function more or less correctly in IE 6 & 7 */
  font-size: 100%;
}

#header1, #header2 {
  float: right;
  padding: 20px;
  font-size: 0.75em;
}

h1 {
  font-family: sans-serif;
  font-variant: small-caps;
}

.location, .date {
  font-family: sans-serif;
  font-size: bigger;
}
.location {
  float: right;
}

dt {
  font-weight: bold;
  width: 100px;
  float: left;
}
dd {
  margin-left: 130px;
  margin-bottom: 30px;
}

/* ie6 can't handle this... */
ul + div.subhead {
  padding-top: 10px;
}

ul#references {
  list-style-type: none;
  margin-left: -2em;
}

.clear {
  clear: both;
}

/* The following is a fascinating hack I found on the net to simulate
 * the effect of fixed positioning in IE. I am not nearly smart enough
 * to claim authorship. */
@media screen
{
  body
  {
    margin: 0;
    padding: 195px 0 0 0;
    }
  div#fixedBox
  {
    overflow: auto;

    width: 100%;
    height: 195px;
    padding: 0 1em;

    position: fixed;
    top: 0;
    left: 0;

    /* background-color: #254977; */
    background-color: #fff;
    background-image: url(/images/white.png);
    }
  div#content
  {
    padding: 1em;
    }
}

