
/* -----------*/

#content {
    background-color: white;

    /* Overall placement of the content block */
    position: absolute;
    left: 1em;
    right: 10em;
    top: 4em;
    bottom: 3.4em;

    padding: 0;
}
#content_inner {
    /*background-color: red;*/
}
#content_inner img {
    /* Size of the main picture.
       This will normally be dynamically overridden by Javascript;
       this is a sensible default in case Javascript isn't working.
       (todo: for non-IE6 make this 100%) */
    height: 25em;
}


/* -----------*/

#sidebar {
    background-color: white;

    /* Overall placement of the sidebar block */
    position: absolute;
    top: 4em;
    bottom: 3.4em;
    right: 1em;
    width: 9em;

    padding: 0;

    overflow: auto;  /* show vertical scrollbar if thumbs don't all fit in the height */
}
#sidebar_inner {
    font-size: 8pt;

    text-align: right;
    white-space: nowrap;
}
#sidebar a img.thumb {
    border: none;
    padding: 0 0 0.4em 0.6em;
    height: auto;
    width: 4.3em;
}


/* -----------*/

#prev, #next {
    display: none;
}
