/* 
author:		jason gonzales
created:		11.03.2008
updated:		11.03.2008
file:			cssglobal.css
description:	CSS file that handles the global definition rules for the library's web site
*/

/* rule for aligning an image to the left of text */
img.floatLeft	{
			  float:	left;
			  margin:	0px 15px 0px 0px;
			  border:	none;
}

/* rule for aligning an image to the right of text */
img.floatRight	{
				  float:	right;
				  margin:	0px 0px 0px 15px;
				  border:	none;
}

/* rule for eliminating the border around an image */
img.noBorder	{
				  border:	none;
}

/* definition to use for bolding text as needed */
.title	{
	  font-weight:	bold;
}

/* definition to use for bolding text as needed */
.titleU	{
	  	  text-decoration:	underline;
}

/* definition for disclamers used on various MPL web pages */
.disclamer	{
			  text-align:	center;
			  font-size:	75%;
			  font-style:	italic;
}

/* definition for those pages that use a menu of links at the top of the page to reference various sections of the same page */
#anchoredLinkListing	{
					  padding-top:	10px;
					  text-align:		center;
					  font-weight:		bold;
}

/* removes bulleted list from unordered lists, specifically the anchored list */
ul	{
	  list-style: none;
}

/* color for horizontal rules used throughout the web site */
hr	{
	  color:	#820015;
}

/* color of links when mouse is hovered over them */
a:hover	{
		  color:	#00ff00;
}

/* setting the top margin for items enclosed with the h4 tag */
h4	{
	  margin:	30px 0 0 0;
}

/* definition for aligning the contents of items enclosed with the p tag */
p.center	{
		  text-align:	center;
}
