/* CSS Document */

/*Composed by: Ty Shelton   e-mail - ty@mooredigitalideas.com*/

/*this is the css style sheet that links to both the "Home" and "Instructions"
pages of http://www.flylineminder.com.*/

/*below is the css defaults for text inside of the body tags.*/
body
{
	/*set the default size.*/
	font-size:9px;
	/*set the default font weight.*/
	font-weight:bold;
	/*set the default color.*/
	color:#000000;
}

/*below is the css for any text within the paragraph tags.*/
td
{
	/*set the font size.*/
	font-size:14px;
	/*set the font to bold.
	font-weight:bold;*/
	/*set the font color.*/
	color:#000000;
}

/*below is the css for all of the links.*/
a
{
	/*set the color.*/
	color:#000000;
	/*set the font size.*/
	font-size:18px;
	/*set the font to bold.*/
	font-weight:bold;
	/*set the text decoration.*/
	text-decoration:underline;
}

a:hover
{
	color:#666666;
}
