/* This is a trial .css */
/* Set style elements for the body, the whole  page. Dec. 20, 2012*/

body
 {
	background-color : rgb(165,165,165) ;
	color : black ;
	font-size : 120% ;
	margin-left : 60px ;	
}

p {
	margin-top : 3px ;
	margin-bottom : 0px ;
	margin-left: 10px ;
	text-indent:  20px;
	}


div  {
	margin:  20px;
	padding: 20px;
	border-style: solid ;
	border-width: 2px ; 
     }



/*Sept. 19, 2016:  Added the following division element that places an image and permits text to wrap around the image.  See p.196 and following for  details when using this element.*/

img.FloatLeft  {
	  float:  left;
	  margin:  10px;
	}
img.FloatRight {
	  float: Right;
	  margin: 10px;
	}

img.BorderedImage{
	border-style:  solid;
	border-width:  3px
	}
/* This is the end of the specified style elements */