/* This section is going to be defining my page content */
#all{ 
	width:900px; /*This will be setting the width of the container for the content*/
	border-width:2px; /*This will set the thickness of the border line*/
	border-style:solid; /* This will set the style of the border, which will just be a solid line */
	border-color:black; /* This will set the color of the border line */
}
img{
	float:right;
}
imgText{
	float:left;
	padding-left: 12px;
	padding-bottom: 12px;
	text-align: justify;
}
a:link{
	color:darkblue;
	font-style:bold; 
	font-size:18px;
	text-decoration:none;
}
a:visited{
	color:purple;
	text-decoration:none;
}
a:hover{
	color:dodgerblue;
	text-decoration:underline;
}
a:active{
	color:yellow;
	font-style:italic;
}
