/*  global style used on all elements */
div.pagebody{
	background-color:#4F63A3;
	color: white;
	font-size: x-small;
	text-align: left;
            font-family: "MS Sans Serif";
}
/* We are not using H1, H2, H3 headers but classes instead */
/* This is equivilent to an H1                                              */
div.header {
	font-size: small ;
	font-weight: bold;
	background-color: black;
	color: white;
            font-family: "MS Sans Serif";
}
/* We are not using H1, H2, H3 headers but classes instead */
/* This is equivilent to an H1                                              */
div.footer {
	font-size: small;
	font-weight: bold;
            background-color: #4F63A3;
            font-family: "MS Sans Serif";

}
/*  Make author info stand out.                                          */
.author {
	font-weight: bold;
	color: red;
}
/*  link style  */
A {
	background-color: transparent;
	color: yellow;
	}
A:Hover {
	background-color: white;
	color: black;
	}

/*css mobile recommendations */
table, tbody, tr, td, th { 
display: block; }

/* pre processing */
pre { white-space: -pre-wrap; 
    /* Opera CSS Extension */  
      white-space: pre-wrap; 
    /* CSS 2.1 Addition */}