/**
*  @file: Tooltip.css
*  @brief: cascading style sheet for Tool top
*
*  @details: 
*
*  @version: 1.0
*  @author: Wang Xiuquan
*  @date: 2008/8/20
*
*  Copyright (c) 2008, Hillstone Inc.
*  All rights reserved.
**/
.tooltipBody
{
	position:absolute;
	left:100px;
	top:100px;
	width:216px;
	height:auto;
	min-height:30px;
	_height:30px;
	_min-height:30px;
	z-index:1000;
	visibility:hidden;
}
.tooltipTop
{
	width:216px;
	height:7px;
	font-size:0px; /* for IE 6.0 default div height */
}
.tooltipBot
{
	width:216px;
	height:7px;
	font-size:0px;  /* for IE 6.0 default div height */
}
.tooltipTopLeft
{
	background-image:url(images/round.gif);
	background-repeat:no-repeat;
	background-position:left top;
	width:7px;
	height:7px;
	float:left;
}
.tooltipTopMid
{
	background-image:url(images/top-bot-Bar.gif);
	background-repeat:repeat-x;
	background-position:left top;
	width:202px;
	height:7px;
	float:left;
}
.tooltipTopRight
{
	background-image:url(images/round.gif);
	background-repeat:no-repeat;
	background-position:right top;
	width:7px;
	height:7px;
	float:left;
}
.tooltipMidContent
{
	width:200px;
	height:auto;
	min-height:50px;
	_heght:50px;
	_min-height:50px;
	float:left;
	margin:0;
	padding:0 7px 0 7px;
	border-left: 1px solid #E1210D;
	border-right: 1px solid #E1210D;
	background-color:#FFFFFF;
	color:#787878;
	font-size:13px;
	word-wrap:break-word;
	font-family:Verdana;
	overflow:hidden;
	text-align:justify;
	text-justify:inter-ideograph;
}
.tooltipMidContent hr, .tooltipContentLine
{
	margin:4px 0 4px 0;
	height:1px;
	line-height:1px;
	font-size:0px;
	border:none;
	border-bottom:solid 1px #EFEFEF;
}
.tooltipBotLeft
{
	background-image:url(images/round.gif);
	background-repeat:no-repeat;
	background-position:left bottom;
	width:7px;
	height:7px;
	float:left;
}
.tooltipBotMid
{
	background-image:url(images/top-bot-Bar.gif);
	background-repeat:repeat-x;
	background-position:left bottom;
	width:202px;
	height:7px;
	float:left;
}
.tooltipBotRight
{
	background-image:url(images/round.gif);
	background-repeat:no-repeat;
	background-position:right bottom;
	width:7px;
	height:7px;
	float:left;
}

/* arrows */
.tooltipArrowTopLeft, .tooltipArrowTopRight, .tooltipArrowBotLeft, .tooltipArrowBotRight
{
	position:absolute;
	background-image:url(images/arrow.gif);
	background-repeat:no-repeat;
	width:216px;
	height:21px;
	z-index:1001;
	visibility:hidden;
}
.tooltipArrowTopLeft
{
	left:100px;
	top:80px;
	background-position:left top;
}
.tooltipArrowTopRight
{
	left:100px;
	top:80px;
	background-position:right -21px;
}
.tooltipArrowBotLeft
{
	left:100px;
	top:213px;
	background-position:left -42px;
}
.tooltipArrowBotRight
{
	left:100px;
	top:213px;
	background-position:right bottom;
}

/* added by honeyme at beijing 2009.7.8 */
.hmCopyrightlogo
{
	background-image:url(images/tips_logo.gif);
	background-repeat:no-repeat;
	background-position:right bottom;
	margin-top:15px;
	height:35px;
	width:100%;
	line-height:35px;
	color:#CDCDCD;
	font-family:Verdana;
	text-align:left;
	font-size:12px;
	text-indent:130px;
}


