/* CSS Document */
/*All items are absolutely positioned within horizontal white base. Only left and top attributes are necessary to position each item absolutely. Classes are applied in the meetus template.*/

/*Assigns position for person name*/
#PeopleName {
	position:absolute;
	left: 10px;
	top: 296px;
}
/*Assigns position and max width for person title below name*/
#PeopleTitle {
	position:absolute;
	left:10px;
	top:315px;
	width:170px;
}
/*Assigns position and max width and height for left paragraph*/
#BioLeft{
	position:absolute;
	left:183px;
	top:325px;
	width:180px;
	height:105px;
}
/*Assigns position and max width and height (same as left paragraph) for right paragraph*/
#BioRight{
	position:absolute;
	left:384px;
	top:325px;
	width:180px;
	height:105px;
}
