@charset "UTF-8";
/* CSS Document */

/*photo captions. Alters the border around paragraphs below photos to simulate a caption*/
/* note you have to specify p.caption, .caption alone will not be specific enough to 
   override the general paragraph styling rule for the styled-paragraphs class */
 p.caption {
	border-top: none;
	border-bottom-color: black;
	border-bottom-style: solid;
	border-bottom-width: thin;
	padding-bottom: 2px;
	padding-top: 1px;
}
