/* This is the main window, the DIV in our case. It's also the container for the table. */
#HelpTextWindow
{
	left: 100px;
	visibility: hidden;
	position: absolute;
	top: 200px;
}

/* This is the table that holds all of our information */
#HelpTextTable
{
	color: #999999;
}


/* This is the top bar of the window */
#HelpTextTitleBar
{
	background-color: #ececec;
}

/* This is the text in the title bar */
.HelpTextWindowTitle
{
	color: #000000;
}

/* This is the content area of the window */
#HelpTextContentArea
{
	color: #282828;
	background-color: #f5f5f5;
}

/* This is the link that's used to hide the window */
#HelpTextWindowClose
{
	font-weight: bolder;
	font-size: 14px;
	color: #808080;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
#HelpTextWindowClose:Hover
{
	/*font-weight: bolder;*/
	/*font-size: 14px;*/
	color: #000000;
	/*font-family: Verdana, Arial, Helvetica, sans-serif;*/
	/*text-decoration: none;*/
}

#HelpTextWindowClose:Active
{
	color: #ff0000;
}


/* These are the classes used to format the entire window when it's stationary and in motion */
.HelpTextTable_Normal
{
	filter: alpha(opacity=100);	/* IE */
	opacity: 1;									/* Safari, i think */
	-moz-opacity: 1;						/* Mozilla */
}

.HelpTextTable_Drag
{
	filter: alpha(opacity=70);	/* IE */
	opacity: 0.7;								/* Safari, i think */
	-moz-opacity: 0.7;					/* Mozilla */
}