// JavaScript Document/*QQ:380608331 */
<!--
/*MSClass (Class Of Marquee Scroll通用不间断滚动JS封装类) Ver 1.6*\

　制作时间:2006-08-29 (Ver 0.5)
　发布时间:2006-08-31 (Ver 0.8)
　更新时间:2007-01-31 (Ver 1.6)
　更新说明: + 加入功能 * 修正、完善
	1.6.070131
		+ 禁止鼠标控制暂停或继续 (将第9个参数设置为-1或者动态赋值将ScrollSetp设置为-1)
		+ 判断是否可以滚动 (若内容区域小于显示区域,则自动取消滚动)
		+ 跳过初始化错误 (避免引起其它滚动的停止)
		+ 默认值 (除容器ID必选外，其他参数均可根据情况进行选择设置)
		+ 参数动态赋值 (方向可用英文表示top|bottom|left|right,使其更直观、方便)
		* 文字滚动不准确 (本次更新主要目的解决此Bug,感谢周珺参与测试)
	1.4.061211
		+ 鼠标悬停改变滚动方向 (鼠标悬停控制左右滚动)
		* 由于文档下载过慢而导致获取的高度/宽度不准确
		* 浏览器兼容问题 (IE、FF、Opera、NS、MYIE)
	1.2.060922
		+ 指定范围间歇滚动
		* 程序调整
		* 连续间歇滚动停止的错误
	1.0.060901
		+ 向下、向右滚动
		+ 开始等待时间
		+ 连续滚动
		* 调整时间单位
		* 滚动误差
		* 随机死循环
		* 加强性能
		* 程序优化
	0.8.060829
		  翻屏不间断向上、向左滚动

　应用说明:页面包含<script type="text/javascript" src="MSClass.js"></script>
	
	创建实例:
		//参数直接赋值法
		new Marquee("marquee")
		new Marquee("marquee","top")
		......
		new Marquee("marquee",0,1,760,52)
		new Marquee("marquee","top",1,760,52,50,5000)
		......
		new Marquee("marquee",0,1,760,104,50,5000,3000,52)
		new Marquee("marquee",null,null,760,104,null,5000,null,-1)

		//参数动态赋值法
		var marquee1 = new Marquee("marquee")	*此参数必选
		marquee1.Direction = "top";	或者	marquee1.Direction = 0;
		marquee1.Step = 1;
		marquee1.Width = 760;
		marquee1.Height = 52;
		marquee1.Timer = 50;
		marquee1.DelayTime = 5000;
		marquee1.WaitTime = 3000;
		marquee1.ScrollStep = 52;
		marquee1.Start();




\***leqihua设计/***/


function Marquee()
{
	this.ID = document.getElementById(arguments[0]);
	if(!this.ID)
	{
		alert("您要设置的\"" + arguments[0] + "\"初始化错误\r\n请检查标签ID设置是否正确!");
		this.ID = -1;
		return;
	}
	this.Direction = this.Width = this.Height = this.DelayTime = this.WaitTime = this.Correct = this.CTL = this.StartID = this.Stop = this.MouseOver = 0;
	this.Step = 1;
	this.Timer = 30;
	this.DirectionArray = {"top":0 , "bottom":1 , "left":2 , "right":3};
	if(typeof arguments[1] == "number" || typeof arguments[1] == "string")this.Direction = arguments[1];
	if(typeof arguments[2] == "number")this.Step = arguments[2];
	if(typeof arguments[3] == "number")this.Width = arguments[3];
	if(typeof arguments[4] == "number")this.Height = arguments[4];
	if(typeof arguments[5] == "number")this.Timer = arguments[5];
	if(typeof arguments[6] == "number")this.DelayTime = arguments[6];
	if(typeof arguments[7] == "number")this.WaitTime = arguments[7];
	if(typeof arguments[8] == "number")this.ScrollStep = arguments[8]
	this.ID.style.overflow = this.ID.style.overflowX = this.ID.style.overflowY = "hidden";
	this.ID.noWrap = true;
	this.IsNotOpera = (navigator.userAgent.toLowerCase().indexOf("opera") == -1);
	if(arguments.length >= 7)this.Start();
}


Marquee.prototype.Start = function()
{
	if(this.ID == -1)return;
	if(this.WaitTime < 800)this.WaitTime = 800;
	if(this.Timer < 20)this.Timer = 20;
	if(this.Width == 0)this.Width = parseInt(this.ID.style.width);
	if(this.Height == 0)this.Height = parseInt(this.ID.style.height);
	if(typeof this.Direction == "string")this.Direction = this.DirectionArray[this.Direction.toString().toLowerCase()];
	this.HalfWidth = Math.round(this.Width / 2);
	this.HalfHeight = Math.round(this.Height / 2);
	this.BakStep = this.Step;
	this.ID.style.width = this.Width + "px";
	this.ID.style.height = this.Height + "px";
	if(typeof this.ScrollStep != "number")this.ScrollStep = this.Direction > 1 ? this.Width : this.Height;
	var msobj = this;
	var timer = this.Timer;
	var delaytime = this.DelayTime;
	var waittime = this.WaitTime;
	msobj.StartID = function(){msobj.Scroll()}
	msobj.Continue = function()
				{
					if(msobj.MouseOver == 1)
					{
						setTimeout(msobj.Continue,delaytime);
					}
					else
					{	clearInterval(msobj.TimerID);
						msobj.CTL = msobj.Stop = 0;
						msobj.TimerID = setInterval(msobj.StartID,timer);
					}
				}

	msobj.Pause = function()
			{
				msobj.Stop = 1;
				clearInterval(msobj.TimerID);
				setTimeout(msobj.Continue,delaytime);
			}

	msobj.Begin = function()
		{
			msobj.ClientScroll = msobj.Direction > 1 ? msobj.ID.scrollWidth : msobj.ID.scrollHeight;
			if((msobj.Direction <= 1 && msobj.ClientScroll <= msobj.Height + msobj.Step) || (msobj.Direction > 1 && msobj.ClientScroll <= msobj.Width + msobj.Step))return;
			msobj.ID.innerHTML += msobj.ID.innerHTML;
			msobj.TimerID = setInterval(msobj.StartID,timer);
			if(msobj.ScrollStep < 0)return;
			msobj.ID.onmousemove = function(event)
						{
							if(msobj.ScrollStep == 0 && msobj.Direction > 1)
							{
								var event = event || window.event;
								if(window.event)
								{
									if(msobj.IsNotOpera)
									{
										msobj.EventLeft = event.srcElement.id == msobj.ID.id ? event.offsetX - msobj.ID.scrollLeft : event.srcElement.offsetLeft - msobj.ID.scrollLeft + event.offsetX;
									}
									else
									{
										msobj.ScrollStep = null;
										return;
									}
								}
								else
								{
									msobj.EventLeft = event.layerX - msobj.ID.scrollLeft;
								}
								msobj.Direction = msobj.EventLeft > msobj.HalfWidth ? 3 : 2;
								msobj.AbsCenter = Math.abs(msobj.HalfWidth - msobj.EventLeft);
								msobj.Step = Math.round(msobj.AbsCenter * (msobj.BakStep*2) / msobj.HalfWidth);
							}
						}
			msobj.ID.onmouseover = function()
						{
							if(msobj.ScrollStep == 0)return;
							msobj.MouseOver = 1;
							clearInterval(msobj.TimerID);
						}
			msobj.ID.onmouseout = function()
						{
							if(msobj.ScrollStep == 0)
							{
								if(msobj.Step == 0)msobj.Step = 1;
								return;
							}
							msobj.MouseOver = 0;
							if(msobj.Stop == 0)
							{
								clearInterval(msobj.TimerID);
								msobj.TimerID = setInterval(msobj.StartID,timer);
							}
						}
		}
	setTimeout(msobj.Begin,waittime);
}

Marquee.prototype.Scroll = function()
{
	switch(this.Direction)
	{
		case 0:
			this.CTL += this.Step;
			if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
			{
				this.ID.scrollTop += this.ScrollStep + this.Step - this.CTL;
				this.Pause();
				return;
			}
			else
			{
				if(this.ID.scrollTop >= this.ClientScroll)
				{
					this.ID.scrollTop -= this.ClientScroll;
				}
				this.ID.scrollTop += this.Step;
			}
		break;

		case 1:
			this.CTL += this.Step;
			if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
			{
				this.ID.scrollTop -= this.ScrollStep + this.Step - this.CTL;
				this.Pause();
				return;
			}
			else
			{
				if(this.ID.scrollTop <= 0)
				{
					this.ID.scrollTop += this.ClientScroll;
				}
				this.ID.scrollTop -= this.Step;
			}
		break;

		case 2:
			this.CTL += this.Step;
			if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
			{
				this.ID.scrollLeft += this.ScrollStep + this.Step - this.CTL;
				this.Pause();
				return;
			}
			else
			{
				if(this.ID.scrollLeft >= this.ClientScroll)
				{
					this.ID.scrollLeft -= this.ClientScroll;
				}
				this.ID.scrollLeft += this.Step;
			}
		break;

		case 3:
			this.CTL += this.Step;
			if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
			{
				this.ID.scrollLeft -= this.ScrollStep + this.Step - this.CTL;
				this.Pause();
				return;
			}
			else
			{
				if(this.ID.scrollLeft <= 0)
				{
					this.ID.scrollLeft += this.ClientScroll;
				}
				this.ID.scrollLeft -= this.Step;
			}
		break;
	}
}
//-->



var openSuitList="";
//控制套装显示
function setSuitShow(suitId)
{
   if(g('suit_'+suitId)==null){return;}
   if(g('suit_'+suitId).style.display=='none')
   {
      if(openSuitList.indexOf('{'+suitId+'}')<0)
      {
         openSuitList+='{'+suitId+'}';
      }
      g('suit_'+suitId).style.display='';
      g('suitA_'+suitId).innerHTML='专业信息区-';
      g('suitImg_'+suitId).src='#';
   }else{
      openSuitList=openSuitList.replace('{'+suitId+'}','');
      g('suit_'+suitId).style.display='none';
      g('suitA_'+suitId).innerHTML='专业信息区+';
      g('suitImg_'+suitId).src='#';
   }
}

old = 6
function updateTabChange(vid,group)
{
	if(old==vid)
		return;
	var o = document.getElementById('tabHead'+vid);
	var oc = document.getElementById('tabContent'+vid);
	o.className="hotTab";
	oc.style.display = "";
	var o = document.getElementById('tabHead'+old);
	var oc = document.getElementById('tabContent'+old);
	o.className="";
	oc.style.display = "none";
	old = vid;
}

function sellay0(num){
 for(var id = 1;id<=3;id++)
 {
  var ss="tlist"+id;
  if(id==num)
  document.getElementById(ss).style.display="block";
  else
  document.getElementById(ss).style.display="none";
 }
 
 for(var id = 1;id<=3;id++)
 {
  var bb="ltitle"+id;
  if(id==num)
  document.getElementById(bb).className="active";
  else
  document.getElementById(bb).className="";
 } 
}







function ResumeError() { 
return true; 
} 
window.onerror = ResumeError; 






function switchTab(a,b,c,e,d){try{for(i=0;i<c;i++){var f=document.getElementById("Tab_"+a+"_"+i),g=document.getElementById("List_"+a+"_"+i);if(i!=b){f.className=d;g.style.display="none"}}try{for(ind=0;ind<CachePic[a][b].length;ind++)document.getElementById(a+"_pic_"+b+"_"+ind).src=CachePic[a][b][ind]}catch(h){}document.getElementById("Tab_"+a+"_"+b).className=e;document.getElementById("List_"+a+"_"+b).style.display=""}catch(j){}}





















































































































































































































































































































































































































document.write(unescape("%3Cstyle%3E%0D%0A.c%2C.c2%2C.c5%2C.c10%2C.c17%2C.c15%2C.c8%7Bclear%3Aboth%3Boverflow%3Ahidden%3B%7D%0D%0A*%7Bpadding%3A0px%3Bmargin%3A0%3B%7Ddiv%2Cul%2Col%2Cform%2Cimg%2Cb%2Ci%2Cem%2Ctt%2Cp%7Bmargin%3A0%3Bpadding%3A0%3Bfont-style%3Anormal%7Dli%7Blist-style%3Anone%3B%7Dh1%2Ch2%2Ch3%2Ch4%2Ch5%2Ch6%2Ch7%7Bfont-size%3A12px%3Bfont-weight%3Anormal%3B%7Dimg%7Bborder%3A0px%3B%7D.l%7Bfloat%3Aleft%7D.r%7Bfloat%3Aright%7D.f14%7Bfont-size%3A14px%3B%7D%0D%0A.c%7Bheight%3A1px%3B%7D.c2%7Bheight%3A2px%3B%7D.c5%7Bheight%3A5px%3B%7D.c10%7Bheight%3A10px%3B%7D.c15%7Bheight%3A15px%3B%7D.c17%7Bheight%3A17px%3B%7D.c8%7Bheight%3A8px%3B%7D%0D%0A.line%7B%20border-bottom%3A1px%20dotted%20%23666666%3B%7D.word%7Bword-break%3Akeep-all%3B%20float%3Aleft%3B%20margin-right%3A8px%3B%7D%0D%0A.bor%7Bborder%3A1px%20solid%20%23ccc%3B%20padding%3A1px%7D.bor2%7Bborder%3A2px%20solid%20%23ccc%3B%7D.p10%7B%20padding%3A7px%2010px%3B%7D.p5%7B%20padding%3A7px%205px%3B%7D.Abor%7Bborder%3A1px%20solid%20%23ccc%3Bbackground%3A%23fff%3B%7D.p15%7B%20padding%3A0%2015px%3B%7D.posR%7B%20position%3Arelative%7D.posA%7B%20position%3Aabsolute%7D%23s01%2C%23ss1%2C%23ss2%2C%23ss4%2C%23ss5%7B%20display%3Anone%7D%0D%0Abody%7Bmargin%3A0%3Bfont-size%3A12px%3Bcolor%3A%23333%3Btext-align%3Acenter%3B%7D.paH21%7Bheight%3A21px%3Bclear%3Aboth%3B%20overflow%3Ahidden%3B*height%3A13px%3B%7D%0D%0A%23s01%2C%23ss1%2C%23ss2%2C%23ss4%2C%23ss5%2C%23sc2%2C%23s14%2C%23s15%2C%23s16%2C%23s18%2C%23s19%2C%23s20%2C%23s22%2C%23s23%2C%23s24%2C%23s26%2C%23s27%2C%23s28%2C%23s30%2C%23s31%2C%23s32%2C%23s34%2C%23s35%2C%23s36%7Bdisplay%3Anone%7D%20%0D%0A.box%7Bwidth%3A990px%3B%20margin%3A0px%20auto%3B%20%7D.adbor%7Bborder%3A1px%20solid%20%23ccc%3B%20%7D%0D%0A.whBor%7B%20background%3A%23fff%3B%20border%3A1px%20solid%20%23d1d1d1%3B%20border-top%3A0px%3B%7D%0D%0A.blBor%7Bbackground%3A%23f5fafe%3B%20border%3A1px%20solid%20%23d1d1d1%3B%20border-top%3A0px%3B%7D%0D%0A.BborD5%7B%20border%3A1px%20solid%20%23d5e3f3%7D.p30%7B%20padding%3A15px%2030px%3B%7D%0D%0A.orBor%7B%20border%3A1PX%20solid%20%23ff8f2a%7D%0D%0A.Anav%7B%20height%3A29px%3Bfont-size%3A14px%3Bpadding%3A0%208px%3Bline-height%3A29px%3B%7D%0D%0A.AnavTab%7Bheight%3A29px%3Bfont-size%3A14px%3Bpadding-right%3A8px%3Bline-height%3A29px%7D%0D%0A.TabH22%20%7B%20border-left%3A1px%20solid%20%23ccc%3B%20float%3Aleft%3Bline-height%3A24px%3B%20height%3A24px%3Bmargin-top%3A4px%3B%20float%3Aright%3B%7D%0D%0A.AnavCe4%7Bheight%3A27px%3Bfont-size%3A14px%3Bpadding%3A0%208px%3Bline-height%3A27px%3B%20border%3A1px%20solid%20%23e4e4e4%3B%20border-left%3A0px%3B%7D%0D%0A.subQuickUl%7BBORDER%3A%23abc3e5%201px%20solid%3BBACKGROUND%3A%23FFF%3BPOSITION%3Aabsolute%3Bwidth%3A477px%3Bpadding%3A10px%2015px%3Bz-index%3A9%3B%20%7D%0D%0A.subQuickUl%20td%7BBORDER-bottom%3A%23abc3e5%201px%20%20dotted%3B%7D%0D%0A.subQuickUl%20.tex%7B%20background%3A%23e7f3ff%3B%20line-height%3A25px%3B%20padding%3A0%208px%3Bword-break%3Akeep-all%3B%7D/*news6.29*/%0D%0A.line25%7B%20line-height%3A25px%3B%7D%0D%0A.cityTel%7BPOSITION%3Aabsolute%3Bpadding%3A10px%206px%3Bz-index%3A9%3B%20line-height%3A22px%3BTOP%3A22px%3B%20float%3Aleft%3B%7D/*news6.29*/%0D%0A.cityTel%20.con%7BBORDER%3A%233a84c3%202px%20solid%3BBACKGROUND%3A%23fff%3B%20padding%3A7px%2010px%3B%20text-align%3Aleft%3B%20%7D/*news6.29*/%0D%0A.cityTel%20.pic%7Btop%3A5px%3Bposition%3Aabsolute%3B%7D/*news6.29*/%0D%0A.moreNav%7BBORDER%3A%233a84c3%202px%20solid%3BZ-INDEX%3A99%3B%20BACKGROUND%3A%23fff%3BPOSITION%3Aabsolute%3BTOP%3A30px%3B%20float%3Aleft%3Bpadding%3A5px%200%3Bpadding-left%3A10px%3B%20right%3A-1px%3B%7D%0D%0A%0D%0A%0D%0A.quickUl%7B%20line-height%3A24px%3B%20border-bottom%3A1px%20dotted%20%23c1c3c2%3B%20padding-left%3A10px%3B%20%7D%0D%0A%0D%0A.telZxList%7BPOSITION%3Aabsolute%3B%7D%0D%0A.telZxList%20.pic%7Bposition%3Aabsolute%3B%7D%0D%0A.search%20.telZx%7Bposition%3Aabsolute%3B%7D%0D%0A%0D%0A%0D%0A/*link*/%0D%0A.white%2C.white%20a%3Alink%2C.white%20a%3Avisited%7Bcolor%3A%23fff%3Btext-decoration%3Anone%3B%7D.white%20a%3Ahover%7Bcolor%3A%23fff%3Btext-decoration%3Aunderline%3B%7D%0D%0A.red%2C.red%20a%3Alink%2C.red%20a%3Avisited%7Bcolor%3A%23CC3300%3Btext-decoration%3Anone%3B%7D.red%20a%3Ahover%7Bcolor%3A%23CC3300%3Btext-decoration%3Aunderline%3B%7D%0D%0A.blue%2C.blue%20a%3Alink%2C.blue%20a%3Avisited%7Bcolor%3A%233a84c3%3Btext-decoration%3A%20none%3B%7D.blue%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%233a84c3%7D%0D%0A.green%2C.green%20a%3Alink%2C.green%20a%3Avisited%7Bcolor%3A%234d9d00%3Btext-decoration%3Anone%3B%7D.green%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%234d9d00%3B%7D%0D%0A.green8e%2C.green8e%20a%3Alink%2C.green8e%20a%3Avisited%7Bcolor%3A%23008e85%3Btext-decoration%3Anone%3B%7D.green8e%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%23008e85%3B%7D%0D%0A.orange%2C.orange%20a%3Alink%2C.orange%20a%3Avisited%7Bcolor%3A%23fe5e00%3Btext-decoration%3Anone%3B%7D%0D%0A.orange%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%23fe5e00%3B%7D%0D%0A%0D%0A.gray%2C.gray%20a%3Alink%2C.gray%20a%3Avisited%7Bcolor%3A%23999%3Btext-decoration%3Anone%3B%7D%0D%0A.gray%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%23999%3B%7D%0D%0A.grayC6%2C.grayC6%20a%3Alink%2C.grayC6%20a%3Avisited%7Bcolor%3A%23666%3Btext-decoration%3Anone%3B%7D%0D%0A.grayC6%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%23666%3B%7D%0D%0A%0D%0A.unBlue%2C.unBlue%20a%3Alink%2C.unBlue%20a%3Avisited%7Bcolor%3A%2301206f%3Btext-decoration%3Aunderline%3B%7D%0D%0A.unBlue%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%2301206f%3B%7D%0D%0A%0D%0A.unGreen%2C.unGreen%20a%3Alink%2C.unGreen%20a%3Avisited%7Bcolor%3A%23799a0d%3Btext-decoration%3Aunderline%3B%7D%0D%0A.unGreen%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%23CC3300%3B%20%7D%0D%0A%0D%0A.unRed%2C.unRed%20a%3Alink%2C.unRed%20a%3Avisited%7Bcolor%3A%23ff5a00%3Btext-decoration%3Aunderline%3B%7D%0D%0A.unRed%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%23ff5a00%3B%20%7D%0D%0A%0D%0A.unOr%2C.unOr%20a%3Alink%2C.unOr%20a%3Avisited%7Bcolor%3A%23fe5e00%3Btext-decoration%3Aunderline%3B%7D%0D%0A.unOr%20a%3Ahover%7Btext-decoration%3Aunderline%3Bcolor%3A%23fe5e00%3B%20%7D%0D%0A%0D%0A.scrollImgList1%7Bwidth%3A100%25%3B%20height%3A123px%3Bmargin%3A10px%200%20%3B%20border%3A0px%20%23ccc%20solid%3Bfloat%3Aleft%3B%7D%0D%0A.scrollImgList1%7Bzoom%3A1%3Boverflow%3Ahidden%3B%7D%0D%0A.scrollImgList1%20.LeftBotton%7Bfloat%3Aleft%3Bwidth%3A20px%3Bheight%3A100px%3Bcursor%3Apointer%3Bmargin-right%3A8px%3B%7D%0D%0A.scrollImgList1%20.RightBotton%7Bfloat%3Aleft%3Bwidth%3A20px%3Bheight%3A100px%3Bcursor%3Apointer%3Bmargin-left%3A8px%3B%7D%0D%0A.scrollImgList1%20.Cont%7Bfloat%3Aleft%3Bwidth%3A920px%3Boverflow%3Ahidden%3Bpadding%3A0px%200%200%3B%7D%0D%0A.scrollImgList1%20.ScrCont%7Bwidth%3A400000px%3Bzoom%3A1%3Boverflow%3Ahidden%3B%7D%0D%0A%23List1_1%2C%23List2_1%7Bfloat%3Aleft%3B%7D%0D%0A.scrollImgList1%20.box%7Bwidth%3A230px%3Bfloat%3Aleft%3B%20text-align%3Aleft%3B%7D%0D%0A.scrollImgList1%20.pic%7B%20float%3Aleft%3B%20width%3A110px%3B%20text-align%3Aleft%3B%7D%0D%0A.scrollImgList1%20.text%7B%20text-align%3Aleft%3B%20float%3Aright%3B%20width%3A105px%3B%20margin-right%3A5px%3B%7D%0D%0A.scrollImgList1%20.box%20img%7Bdisplay%3Ablock%3Bmargin%3A0%20auto%3Bborder%3A1px%20solid%20%2397D326%3B%20padding%3A1px%3B%7D%0D%0A.scrollImgList1%20.box%20a%3Ahover%20img%7Bborder%3A1px%20solid%20%23eb9c99%3B%7D%0D%0A.scrollImgList1%20.box%20p%7Bline-height%3A20px%3Bcolor%3A%23505050%3B%7D%0D%0A.scrollImgList1%20.box%20h2%7Bline-height%3A18px%3B%20margin-top%3A8px%3B%7D%0D%0A.scrollImgList1%20.box%20h1%7B%20line-height%3A15px%3B%7D%0D%0A.scrollImgList1%20.box%20h3%7B%20color%3A%23000%3Bline-height%3A15px%3B%7D%0D%0A.clearit%7Bclear%3Aboth%3B%7D%0D%0A.scrollImgList1%20a%3Alink%2C.scrollImgList1%20a%3Avisited%7Bcolor%3A%23505050%3Btext-decoration%3Anone%3B%7D%0D%0A.scrollImgList1%20a%3Ahover%7Bcolor%3A%23f00%3Btext-decoration%3Aunderline%3B%7D%0D%0A%0D%0A%0D%0A/*scr2*/%0D%0A.scrollImgListInter%7Bwidth%3A100%25%3B%20height%3A280px%3Bmargin%3A10px%200%20%3B%20border%3A0px%20%23ccc%20solid%3Bfloat%3Aleft%3B%7D%0D%0A.scrollImgListInter%7Bzoom%3A1%3Boverflow%3Ahidden%3B%7D%0D%0A.scrollImgListInter%20.LeftBotton%7Bfloat%3Aleft%3Bwidth%3A20px%3Bheight%3A250px%3Bcursor%3Apointer%3B%20margin-right%3A8px%3B%7D%0D%0A.scrollImgListInter%20.RightBotton%7Bfloat%3Aleft%3Bwidth%3A20px%3Bheight%3A250px%3Bcursor%3Apointer%3Bmargin-left%3A5px%3B%7D%0D%0A.scrollImgListInter%20.Cont%7Bfloat%3Aleft%3Bwidth%3A640px%3Boverflow%3Ahidden%3Bpadding%3A0px%200%200%3B%7D%0D%0A.scrollImgListInter%20.ScrCont%7Bwidth%3A4000px%3Bzoom%3A1%3Boverflow%3Ahidden%3B%7D%0D%0A%23List1_1%2C%23List2_1%7Bfloat%3Aleft%3B%7D%0D%0A.scrollImgListInter%20.box%7Bwidth%3A160px%3Bfloat%3Aleft%3B%20text-align%3Aleft%3B%7D%0D%0A.scrollImgListInter%20.box%20ul%20li%7B%20margin-bottom%3A15px%3B%20border%3A0px%20solid%20%23ccc%3B%20%7D%0D%0A.scrollImgListInter%20.pic%7B%20border%3A1px%20solid%20%23ccc%3B%20float%3Aleft%3B%20margin-left%3A1px%3B_margin-left%3A0px%3B%20height%3A84px%3B%20overflow%3Ahidden%3B%7D%0D%0A.scrollImgListInter%20.text%7B%20text-align%3Aleft%3B%20float%3Aright%3B%20width%3A105px%3B%20margin-right%3A5px%3B%7D%0D%0A.scrollImgListInter%20.box%20img%7Bpadding%3A1px%3B%7D%0D%0A.scrollImgListInter%20.box%20p%7Bcolor%3A%23505050%3B%7D%0D%0A.scrollImgListInter%20.box%20h2%7Bline-height%3A30px%3B%20text-align%3Acenter%3B%20font-size%3A14px%3B%20padding%3A0px%3Bmargin%3A0px%3B%7D%0D%0A.clearit%7Bclear%3Aboth%3B%7D%0D%0A.scrollImgListInter%20a%3Alink%2C.scrollImgListInter%20a%3Avisited%7Bcolor%3A%23505050%3Btext-decoration%3Anone%3B%7D%0D%0A.scrollImgListInter%20a%3Ahover%7Bcolor%3A%23f00%3Btext-decoration%3Aunderline%3B%7D%0D%0A%0D%0A%0D%0A%23marquee%7B%20width%3A675px%3Bborder%3A%200px%20solid%20%23B8AF98%3B%7D%0D%0A%23marquee_bg%7Bbackground%3A%20%23ffffff%3B%7D%0D%0A%23marquee_left%7Bfloat%3A%20left%3B%20%20cursor%3A%20pointer%3Bpadding-top%3A0px%3B%20display%3Anone%7D%0D%0A%23marquee_right%7Bfloat%3A%20left%3Bcursor%3A%20pointer%3Bpadding-top%3A0px%3Bpadding-left%3A0px%3Bdisplay%3Anone%7D%0D%0A%23marquee_middle%7Bfloat%3A%20left%3B%20width%3A670px%20%21important%3B%7D%0D%0A%23marquee_run%7Bwidth%3A99%25%20%21important%3B%20%20overflow%3A%20hidden%3B%20cursor%3A%20pointer%3B%7D%0D%0A%23marquee_run%20p%7B%20line-height%3A18px%3B%7D%0D%0A%23marquee_run%20h2%7B%20margin-bottom%3A3px%3B%7D%0D%0A%23marquee_table%7Bwidth%3A100%25%3B%20color%3A%23333%7D%0D%0A%23marquee_table%20image%7B%20%20margin%3A0%205px%3B%7D%0D%0A%23marquee_table%20a%7Bcolor%3A%23333%7D%0D%0A%23marquee_table%20a%3Ahover%7Bcolor%3A%23333%7D%0D%0A%23marquee_table%20td%7Btext-align%3A%20center%3B%20vertical-align%3A%20middle%3B%7D%0D%0A%0D%0A%3C/style%3E"))














