@charset "utf-8";
/* CSS Document */
/* ==============================================================================
	Style settings for the help section	
================================================================================= */
#HelpWindow { 
	z-index: 100; 
	border: 2px solid #CCC;
  	width:625px;	
  	background: #FFF;
	/*font: 1em Arial, Verdana, Helvetica, sans-serif;	
	color: #666;*/
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 2px outset #ababab;
}
#HelpWindow #DraggableHotSpot {
	cursor: move;
	font-weight: bold;
	height:40px;
	background: #D3D3D3;
	border: 1px solid #666;
	-moz-border-top-left-radius: .5em;
	-moz-border-top-right-radius: .5em;
	border-top-left-radius: .5em;
	border-top-right-radius: .5em;
}
#HelpWindow #HelpHeader {
	float: left;
	font-weight: bold;
	padding:2px;
	width:575px;
}
#HelpWindow #HelpToolBar {
	float: right;
	padding: .5em;
}
#HelpWindow #HelpContent h3 {
	margin:0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	margin-bottom:5px;
	padding:5px 0 1px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:14px;
	color:#1C50B3;/*2d3694*/
	border-bottom:1px solid #1C50B3;
	font-family:Georgia, "Times New Roman", Times, serif;
}

#HelpWindow #HelpContent {
	padding:5px;
	/*color: #00F;*/
	overflow: auto;
	height:100%;
}
#HelpWindow #HelpContent h2 {
	margin:0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding-bottom:5px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	margin-bottom:10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#B01C40;/*A90101*/
	font-size:16px;
	font-weight:bold;
	border-bottom:1px groove #B01C40;
}
#HelpWindow #CloseHelpPage {
	cursor: auto;
}

