/*UtilityStyles.css*/

/* -----------------------------------------------------------------------------------------------------------------------------------------
	This file created on 032909hd.	Moved the utility classes from the other css files into this one to get a common base.
	This file is loaded along with the web-page-specific css flle for each page.

------------------------------------------------------------------------------------------------------------------------------------------ */


/*--------------------------------------------------------------------------------------------------------------------------------------------
	Define some utility classes
-------------------------------------------------------------------------------------------------------------------------------------------- */

p.small {line-height: 50%}
p.big {line-height: 200%}



/* These are for link characteristics, for the Main Menu chiefly at this time. 030209hd.		042609hd Has been expanded to other links.	*/

a:link			{color: blue}
a:visited		{color: blue}
a:hover		{color: green}
a:active		{color: yellow}

a.one:link {color: #ff0000}
a.one:visited {color: #0000ff}
a.one:hover {color: #ffcc00}

a.two:link {color: #ff0000}
a.two:visited {color: #0000ff}
a.two:hover {color: green; font-size: 150%}

a.three:link {color: #ff0000}
a.three:visited {color: #0000ff}
a.three:hover {background: #66ff66}

a.four:link {color: blue;}
a.four:visited {color: blue;}
a.four:hover {color: green; font-family: Times New Roman, Arial; font-size: 140%;}

a.five:link {color: #ff0000; text-decoration: none}
a.five:visited {color: #0000ff; text-decoration: none}
a.five:hover {text-decoration: underline}

/* END link characteristics.*/


			 
/* Define a Dropped Capital Letter capability */
	.DroppedCapital {
			position: relative;
			color: blue;
			font-size: 2em;
			top: -.5%;
			padding-left: 2px;
			padding-right: 2em;
			float: left;
		  }
		  
