/* Notice that we need to set the padding because Opera's default is not zero.
   Also, we set the background colour to another colour, because Netscape 6 for the
   Macintosh defaults to a background colour of gray. */
body {
    margin:     0px 0px 0px 0px;
    padding:    0px;
    background: #d1d1e1;
    font-family:      arial;
    font-size:        9pt;
    }
h1 {
	color: #00008b;
	font-weight: bold;
	font-size: 14pt;
	font-variant: small-caps; text-transform: capitalize}
h2 {
	color: #00008b;
	font-weight: bold;
	font-size: 12pt;}
h3 {
	color: #FF00CC;
	font-weight: bold;
	font-size: 10pt;}
 
pre {
	margin-left: 10%;}

a:link { 
	color: #00f; 
	background: none; }
a:visited {
	color: #800080; 
	background: none; }
/*table
    {
    background-color: #d1d1e1;  
    background-color: #FFFFFF;   
    color:            #000000;
    border:           1px solid #0b198c;
    }
*/
th
    {
    background: #7988B7;
    color:            #ffffff;
	text-align: left;
    font-style:       normal;
    font-variant:     normal;
    font-weight:      bold;
    font-size:        10pt;
    font-family:      arial;
    }
td {
	font: 			 arial;
	font-size: 	     10pt;
	}*/


/* CSS Borders: http://www.yourhtmlsource.com/stylesheets/cssborders.html */
#heading {
	/* Div Position */
	margin-top:    5px;
    margin-left:   5px;
    margin-right:  5px;
    margin-bottom: 0px; /* Leave as 0; in IE affects non-relative, but not relative divs */

	/* Div Properties */
    background:    #ccccff;
    border-style:  dashed;
    border-color:  gray;
    border-width:  3px;
    padding-left:  5px;
    padding-right: 5px;
}

#main {
	/* Div Position */
	margin-top:    5px;
	margin-bottom: 5px;
    margin-left:   260px;
    margin-right:  260px;

	/* Div Properties */
    background:    #ccccff;
    border-style:  dashed;
    border-color:  blue;
    border-width:  3px;
    padding-left:  5px;
    padding-right: 5px;
}

#left {
    /* Div Position */
	position: absolute;
	left:     5px;
	width:    250px;
    margin-top: 5px;
    
	/* Div Properties */
    background:    #ccccff;
    border-style:  dashed;
    border-color:  green;
    border-width:  3px;
    padding-left:  5px;
    padding-right: 5px;
}
#right {
	/* Div Position */
	position: absolute;
	width:    250px;
	right:    5px;
    margin-top: 5px;
    
	/* Div Properties */
    background:    #ccccff;
    border-style:  dashed;
    border-color:  red;
    border-width:  3px;
    padding-left:  5px;
    padding-right: 5px;
}
