/*
This is sample HTML of each class

<div class="HelpContainer">
	<div class="HelpContent">
		<table class="ContentTable">
			<tr>
				<td>Help Text ......</td>
			</tr>
		</table>
	</div>
</div>

*/

.HelpContainer 
{ 
	/* please do not change this, otherwise the sliding will not work */
	visibility: hidden; 
	position: relative; 
	background-color: transparent; 
}

.HelpContent
{

}

.ContentTable
{
	background-color: #f7f7f7; 
	border:1px solid #3d84cc;
}

.ContentTable td
{
	padding:5px;
	vertical-align: middle;
	color:#ff0000;
}

