/*  div wrapped around entire staff list  */
div.staff-member-listing {

}

/*  div wrapped around each staff member  */
div.staff-member {
  padding-bottom: 2em;
  border-bottom: thin dotted #aaa;
  
}

/*  "Even" staff member  */
div.staff-member.even {
  float: left;
  margin-top: 2em;
  height: 250px;
  width: 45%;
}
/*  "Odd" staff member  */
div.staff-member.odd {
  float: right;
  margin-top: 2em;
  height: 250px;
  width: 45%;
}

/*  Last staff member  */
div.staff-member.last {
	padding-bottom: 0;
	/*border: none;*/
}

/*  Wrap around staff info  */
.staff-member-info-wrap {
  float: right;
  margin-right: 10px;
  width: 220px;
}

/*  [staff-bio-formatted]  */
div.staff-member-bio {

}

/*  p tags within [staff-bio-formatted]  */
div.staff-member-bio p {

}

/*  [staff-photo]  */
img.staff-member-photo {
  /*float: left;*/
  width:80px;
}

/*  [staff-email-link]  */
.staff-member-email {

}

/*  [staff-name-formatted]  */
div.staff-member-listing h3.staff-member-name {
  font-size: 16px;
  margin: 0;
}

/*  [staff-position-formatted]  */
div.staff-member-listing h4.staff-member-position {
  font-size: 12px;
  margin: 0;
  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; }