﻿/* CSS Document */

#nav_product_left {
 width:210px;
 line-height: 24px; 
 list-style-type: none;
 text-align:left;
    /*定义整个ul菜单的行高和背景色*/
}
/*==================一级目录===================*/
#nav_product_left a {
 width: 205px; 
 display: block;
 padding-left:5px;  
 /*Width(一定要)，否则下面的Li会变形*/
}
#nav_product_left li {
 background:#E3E3E3; /*一级目录的背景色*/
 border-bottom:#CCCCCC 1px solid; /*下面的一条白边*/
 float:left;
 /*float：left,本不应该设置，但由于在Firefox不能正常显示
 继承Nav的width,限制宽度，li自动向下延伸*/
}
#nav_product_left li a:hover{
 background:#FFFFFF; /*一级目录onMouseOver显示的背景色*/
  background-image:url(../images/ico16.gif);
 background-repeat:no-repeat;
 line-height:24px;
 background-position:8px 8px;
 text-indent:15px;
}
#nav_product_left a:link  {
 color:#2C2C2C; text-decoration:none;
 background-image:url(../images/ico16.gif);
 background-repeat:no-repeat;
 line-height:24px;
 background-position:8px 8px;
 text-indent:15px;
}
#nav_product_left a:visited  {
 color:#2C2C2C;text-decoration:none;
  background-image:url(../images/ico16.gif);
 background-repeat:no-repeat;
 line-height:24px;
 background-position:8px 8px;
 text-indent:15px;
}
#nav_product_left a:hover  {
 color:#BA1E22;text-decoration:none;
 background-image:url(../images/ico16.gif);
 background-repeat:no-repeat;
 line-height:24px;
 background-position:8px 8px;
 text-indent:15px;
}
/*==================二级目录===================*/
#nav_product_left li ul {
 list-style:none;
 text-align:left;
}
#nav_product_left li ul li{ 
 background:#F7F7F7; /*二级目录的背景色*/
}
#nav_product_left li ul a{
         padding-left:5px;
         width:205px;
 /* padding-left二级目录中文字向右移动，但Width必须重新设置=(总宽度-padding-left)*/
}
/*下面是二级目录的链接样式*/
#nav_product_left li ul a:link  {
 color:#2C2C2C; text-decoration:none;
 background-image:url(../images/arrow_3.gif);
 background-repeat:no-repeat;
 line-height:24px;
 background-position:14px 8px;
 text-indent:19px;
}
#nav_product_left li ul a:visited  {
 color:#2C2C2C;text-decoration:none;
  background-image:url(../images/arrow_3.gif);
 background-repeat:no-repeat;
 line-height:24px;
 background-position:14px 8px;
 text-indent:19px;
}
#nav_product_left li ul a:hover {
 color:#BA1E22;
 text-decoration:underline;
 font-weight:normal;
 background:#FFF;
 background-image:url(../images/arrow_3.gif);
 background-repeat:no-repeat;
 line-height:24px;
 background-position:14px 8px;
 text-indent:19px;
 /* 二级onmouseover的字体颜色、背景色*/
}
/*==============================*/
#nav_product_left li:hover ul {
 left: auto;
}
#nav_product_left li.sfhover ul {
 left: auto;
}
#content {
 clear: left; 
}
#nav_product_left ul.collapsed {
 display: none;
}
-->
#PARENT{
 width:210px;
 padding-left:0px;
}
