/*
________________________________________________________________________________________
*	embedded_images.css
*   
*	CSS to enable images to be embedded in a page's text, either left or right
*	Master file should be copied to local site to enable client access
*
*	v1.00	19/07/10
*
*	(c) 2010 Thomas Daly - library code
________________________________________________________________________________________
*/


/* applied to a <div> container box to embed an image to the right in text.  May contain a caption under the image.  The correct width of this box should be specified locally */
.image_left	
						{
						float: left;
						margin-left: 0px;
						margin-top: 20px;
						margin-bottom: 20px;
						margin-right: 20px;
						font-size: 13px;
						font-weight: bold;
						text-align: center;
						}

/* The correct width of this element should be defined locally */					
.image_left img
						{
						border: none;
						margin-bottom: 8px;
						}

/* applied to a <div> container box to embed an image to the right in text.  May contain a caption under the image.  The correct width of this box should be specified locally */
.image_right	
						{
						float: right;
						margin-left: 20px;
						margin-top: 20px;
						margin-bottom: 20px;
						margin-right: 0px;
						font-size: 13px;
						font-weight: bold;
						text-align: center;
						}

/* The correct width of this element should be defined locally */					
.image_right img
						{
						border: none;
						margin-bottom: 8px;
						}