/* ************************************************	*/
/*  Author:		    Roy DeHaven					              */
/*  CSS editor:		Roy DeHaven				                */
/*  editor Email: rynait@rt66.com			              */
/*  Current File:	cell.css		  		                */
/*  Version: 		  1.1						                    */
/*  Purpose:		  fixing size bug as reported      */
/*  Modified from: 	cell.old                        */
/*  Modified on:  08/29/2006                        */
/*  Create/edit: 	07/28/2006 				                */
/* ************************************************	*/

/* ************************************************	*/
/*  This is created based on study of an Original.  */
/*   Major source on guiding the creation of this   */
/*   current css file was:                          */
/*                               		                */
/*  CSSbox.css as produced by                       */
/*   http://bluerobot.com/web/layouts/view_css.asp  */
/*   (extracted: 03/06/2006)				                */
/*                                                	*/
/*  note: there are extensive and multiple          */
/*    differences to record here. Therefore is      */
/*    assigned version 1.0 as new instead.        	*/
/*                                                	*/
/* ************************************************	*/

/* define existing html elements */
.declare {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #000099;
}
  
/* create new class assignments */
/* to use this, example <p class=redtext> */

.redtext {
color: #FF0000;
}

/* create cell units */
/* assumption calendar sized (7 cells) */

/* whole screen defined */
.block {
  width: 100%;
  padding: 0em;
  }
  
body {
  font-size: middle;
  padding: 0em;
  }
   
/* single cell */
.cube {
  height: 78px;
  width: 12%;
  border: 1px solid;
  padding: 0.12em;
  float: left;
  margin: 0em;
  text-align: right;
  line-height: 1em;
  }

.cubehead {
  width: 12%;
  height: 40px;
  border: 1px solid;
  padding: 0.12em;
  float: left;
  margin: 0em;
  text-align: center;
  line-height: 1.2em;
  /*font-size: 1em;*/
  }
  
.newline, .newrow {
  
  clear: left;
  }
  
/* move cell forward in a row */
.skip1 {
  /* width: 12.824%; /* based on viewable size of skip 5 */
  width: 12%;
  }

.skip2 {
  width: 25%;
  }
.skip3 {
  width: 38%;
  }
.skip4 {
  width: 51%;
  }
.skip5 {
  /* viewable size 64.120*/
  width: 64.120%;
  }
.skip6 {
  width: 76%;
  }


  
  

