/*  div wrapped around entire staff list  */
div.staff-member-listing {

}

/*  div wrapped around each staff member  */
div.staff-member {
        float:left;
        width: 50%;
        margin:10px auto;
	    padding-bottom: 2em;
	/*border-bottom: thin dotted #aaa;*/
}

/*  "Even" staff member  */
div.staff-member.even {
	clear:left;
}

/*  "Odd" staff member  */
div.staff-member.odd {
}

/*  Last staff member  */
div.staff-member.last {
	float:none;
	width: 70%;
	margin: 10px auto;
	padding-bottom: 0;
	border: none;
}

div.staff-member.even + div.staff-member.odd.last {
	float:left;
	width: 50%;
	margin: 10px auto;
	padding-bottom: 0;
	border: none;
}

/*  Wrap around staff info  */
.staff-member-info-wrap;{
	width: 100%;
	margin:0 auto;
	text-align:center;
}

/*  [staff-bio-formatted]  */
div.staff-member-bio {
        display: block;
        padding: 5px 20px;
}

/*  p tags within [staff-bio-formatted]  */
div.staff-member-bio p {
	  text-align:justify;
	  line-height:1.5em;

}

/*  [staff-photo]  */
img.staff-member-photo {

}
/* photo positioning */
div.picturePosition {
     width:90%;
     height: 300px;
     margin:0 auto;
     overflow:hidden;
}
/*  [staff-email-link]  */
a.staff-member-email {
	
	text-align:center;

}

div.staffEmail {
width:100%;
text-align:center;
}

/*  [staff-name-formatted]  */
div.staff-member-listing h3.staff-member-name {
    text-align:center;
	margin: 0;
}

/*  [staff-position-formatted]  */
div.staff-member-listing h4.staff-member-position {
	margin: 0;
        text-align:center;
        color:#565656;
        font-weight:100;
	font-style: italic;
}

/* Clearfix for div.staff-member */
div.staff-member:after {
	content: "";
	display: block;
	clear: both;
}

/* Clearfix for <= IE7 */
* html div.staff-member { height: 1%; }
div.staff-member { display: block; }