/* Copyright (C) 2007-2012 Bristle Software, Inc.
*  
*  This program is free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 1, or (at your option)
*  any later version.
*  
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*  
*  You should have received a copy of the GNU General Public License
*  along with this program; if not, write to the Free Software
*  Foundation, Inc.
*/

/******************************************************************************
* com_bristle_jslib_Presentation.css
*******************************************************************************
* Purpose:  
*       CSS stylesheet for the Bristle Software JavaScript Presentation Library
* Usage:
*       - The typical scenario for using this file is...
*               <link rel='stylesheet' 
*                     type='text/css' 
*                     href='com_bristle_jslib_Presentation.css'>
*         ... Use stylesheet like any other CSS stylesheet ...
* Assumptions:
*       - None.
* Effects:
*       - None.
* Anticipated Changes:
* Notes:
* Implementation Notes:
* Portability Issues:
* Revision History:
*   $Log$
******************************************************************************/

/* Div to hold the body of each slide
*/
div.com_bristle_jslib_css_Presentation_slideContentDIV 
{
/* Note: Don't do this.  It's not as useful as using position:fixed for the 
         footer.  Scroll bars on the div are distracting.
        position:absolute;
        height:500px;
        overflow:auto;
*/
}
  
div.com_bristle_jslib_css_Presentation_footerDIV 
{
        position:fixed;
        width:100%;
}

