/*
 Standard cascading style sheet for Paper Wise.
 Four main areas: top, left, middle, and right.
 The left, middle, and right are held in a table called main.
 Some defaults are used. When push comes to shove,
 defaults are intended for any tags in 
 the middle section.
 There is also a footer in the middle section.
*/

/******* Defaults ********/
/* Defaults are intended to be used
   primarily in the middle cell. 
   Exceptions may be where you 
   want to define a font family.
   This is sometimes done with body 
   definintions. */
a
{
color: #666699;
}

body
{
margin: 0px 0px 0px 0px;
font-family: helvetica, arial, sans-serif;
font-size: 8pt;
background-image: url(../images/BodyBackground.jpg);
background-repeat: repeat;
}

p
{
margin: 10px 10px 10px 10px;
}

h1
{
margin: 10px 10px 10px 10px;
}

h2
{
margin: 10px 10px 10px 10px;
}

h3
{
margin: 10px 10px 10px 10px;
}

h4
{
margin: 10px 10px 10px 10px;
}

img
{
margin 10px 10px 10px 10px;
padding 10px 10px 10px 10px;
}

/******** Main table that holds the 
     left, middle(default), and right cells ********/
table.main
{
width: 778px;
padding: 0px 0px 0px 0px;
}

/********  Top is the header across the top of the page ********/
.top
{
color: #ffffff
}

table.top
{
width:100%;
padding: 0 0 0 0;
height: 168px;
background-image: url(../images/TopBackground.jpg);
background-repeat: repeat-x;
text-align: left;
}

h1.top
{
font-size: 16pt;
}

td.top-space
{
width: 350px;
}

/*** Left is the cell on the left side of the page ***/
.left
{
margin: 0px 0px 0px 0px;
}

td.left
{
padding: 0px 0px 0px 8px;
width:142;
vertical-align: top;
}

a.left
{
text-decoration: none;
}

a.left:link {color: #666699;}
a.left:visited {color: #666699;}
a.left:hover {color: #666699; text-decoration: underline;}
a.left:active {font-weight: bold;}

/***** There are only a few definitions for the middle cell.   ******/
/*** The default styles are intended to be used in the middle cell. ***/
table.middle
{
width:100%;
background-color: #ffffff;
border: thin solid;
}
td.middle
{
width:490px;
vertical-align:top;
padding: 0px;
}
/******** Right cell ********/
/* The cell on the right is made up of
   smaller tables. */
td.right
{
width:145px;
vertical-align:top;
}
table.right
{
border: thin solid;
width:100%;
background-color: #ffffff;
}
p.right
{
margin: 5px 0px 10px 0px;
text-align:center;
}
/******** Footer ********/
/* The footer is in the bottom of the 
   middle cell. */
p.footer
{
text-align: center;
font-weight: bold;
}