/*
 * jQuery LiveTip Plugin v 0.1
 * 
 *
 * Copyright (c) 2009 Atarimarket
 *
 * Date: 2009-07-21
 * 
 */

/* ▼MODULE-LiveTip */
	.tip{
		position:absolute;
		display: none;
	}
	.tip-positon{}
	.tip-inner{
		margin:15px !important;
		font-size:10px !important;
	}
	.pop-inner{
		margin:15px !important;
		font-size:10px !important;
		color:#000 !important;
		font-weight:bold !important;
	}
	
	#tip_table{
		margin       : 0 !important;
		padding      : 0 !important;
		width        : 170px !important;
	}
	#tip_table td{ border:0; margin:0; padding:0;}
	#tip_body{
		border-left  : 1px solid #b4b4b4 !important;
		border-right : 1px solid #b4b4b4 !important;
		width        : 168px !important;
		background   : #fff !important;
	}
	#tip_top   {width:115px !important;height: 5px !important; background: url(/common/js/unique/images/tip_top.png) repeat-x;	}	
	#tip_bottom{width:115px !important;height:29px !important; background: url(/common/js/unique/images/tip_bottom.png) repeat-x;}
	#tip_tl    {width: 50px !important;height: 5px !important; background: url(/common/js/unique/images/tip_tl.png) no-repeat;}
	#tip_bl    {width: 50px !important;height:29px !important; background: url(/common/js/unique/images/tip_bl.png) no-repeat;}
	#tip_tr    {width:  5px !important;height: 5px !important; background: url(/common/js/unique/images/tip_tr.png) no-repeat;}
	#tip_br    {width:  5px !important;height:27px !important; background: url(/common/js/unique/images/tip_br.png) no-repeat;}


	.msg_position{
		position: absolute;
		display : none;
		width   : 220px;
		margin  : 0;
		padding : 0;
	}
	.msg-inner{
		margin:25px 15px !important;
		font-size:10px !important;
		color:#000 !important;
		font-weight:bold !important;	
	}
	#msg_table{
		margin       : 0 !important;
		padding      : 0 !important;
		width        : 220px !important;
	}
	#msg_table td{ border:0; margin:0; padding:0;}
	#msg_body{
		border-left  : 1px solid #b4b4b4 !important;
		border-right : 1px solid #b4b4b4 !important;
		width        : 218px !important;
		background   : #fff !important;
	}
	#msg_top   {width:165px !important;height: 5px !important; background: url(/common/js/unique/images/tip_top.png) repeat-x;}	
	#msg_bottom{width:165px !important;height:29px !important; background: url(/common/js/unique/images/tip_bottom.png) repeat-x;}
	#msg_tl    {width: 50px !important;height: 5px !important; background: url(/common/js/unique/images/tip_tl.png) no-repeat;}
	#msg_bl    {width: 50px !important;height:29px !important; background: url(/common/js/unique/images/tip_bl.png) no-repeat;}
	#msg_tr    {width:  5px !important;height: 5px !important; background: url(/common/js/unique/images/tip_tr.png) no-repeat;}
	#msg_br    {width:  5px !important;height:27px !important; background: url(/common/js/unique/images/tip_br.png) no-repeat;}
	

	.pop_position{
		position: absolute;
		display : none;
		min-width:190px; width:auto !important; width:190px; max-width:210px;
		margin  : 0;
		padding : 0;
	}
	.pop_position #pop_table{
		margin      : 0 !important;
		padding     : 0 !important;
		min-width:190px; width:auto !important; width:190px;
	}
	.pop_position #pop_table td{ background:none; border:0; margin:0; padding:0;}	
	.pop_position #pop_table .pop-inner{
		margin:15px !important;
		font-size:10px !important;
	}
	/*注意色*/
	.pop_position #pop_table .pop-inner span.caution{ font-weight:bold; color:#d10019 !important;}
	
	.pop_position #pop_table #pop_body{
		border-left : 2px solid #ff6c00 !important;
		border-right: 2px solid #ff6c00 !important;
		min-width:166px; width:auto !important; width:166px;
		background  : #fff !important;
	}
	.pop_position #pop_table #pop_top   {
		min-width:135px; width:auto !important; width:135px;
		height: 5px !important; background: url(/common/js/unique/images/pop_top.png) repeat-x;}	
	.pop_position #pop_table #pop_bottom{
		min-width:135px; width:auto !important; width:135px;
		height:29px !important; background: url(/common/js/unique/images/pop_bottom.png) repeat-x;}
	
	.pop_position #pop_table #pop_tl    {width: 50px !important; height: 5px !important; background: url(/common/js/unique/images/pop_tl.png) no-repeat;}
	.pop_position #pop_table #pop_bl    {width: 50px !important; height:29px !important; background: url(/common/js/unique/images/pop_bl.png) no-repeat;}
	.pop_position #pop_table #pop_tr    {width:  5px !important; height: 5px !important; background: url(/common/js/unique/images/pop_tr.png) no-repeat;}
	.pop_position #pop_table #pop_br    {width:  5px !important; height:27px !important; background: url(/common/js/unique/images/pop_br.png) no-repeat;}


/* PNG Alpha for IE6*/
	* html #pop_top,
	* html #pop_bottom,
	* html #msg_top,
	* html #msg_bottom,
	* html #tip_top,
	* html #tip_bottom{	
		behavior: expression(
		this.style.behavior || (
		this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale,src='"+this.currentStyle.getAttribute("backgroundImage").slice(5,-2)+"')",
		this.style.backgroundImage = "none",
		this.style.behavior = "none"
		)
		);
	}
	
	* html #pop_tl,
	* html #pop_bl,
	* html #pop_tr,
	* html #pop_br,

	* html #msg_tl,
	* html #msg_bl,
	* html #msg_tr,
	* html #msg_br,

	* html #tip_tl,
	* html #tip_bl,
	* html #tip_tr,
	* html #tip_br{
		behavior: expression(
		this.style.behavior || (
		this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=crop,src='"+this.currentStyle.getAttribute("backgroundImage").slice(5,-2)+"')",
		this.style.backgroundImage = "none",
		this.style.behavior = "none"
		)
		);	
	}
/* △MODULE-LiveTip */
