*
{
    margin:0; 
    padding:0;
    font-family:"宋体" Verdana, Arial, Helvetica, sans-serif;
    font-size:12px;
}

table{border:0;margin:0;border-collapse:collapse;}
table td{padding:0;}   
a{color:black;text-decoration:none;}



/* 
■   补背景图
*/

    body     /* 包含顶部导航条的body,是个外部的body,这里的内容都是嵌入到外部那个body中的。 */
	{
	}

    .bg_1
	{
		background-image:url(images/bg_menu.jpg);
        background-repeat:repeat-x;
        background-position:0;
	}

    .bg_2
	{
		background-image:url(images/bg_search.jpg);
        background-repeat:repeat-x;
	}
   
    .table_1
	{
	}

/* 
■   最外层 容器外层
*/


	.page
	{
	   width:1000px;
	}

	.page_top
	{
	   width:100%;
	}
			.page_top_logo 
			{
	           width:100%;
			   height:95px;
			}

			.page_top_menu 
			{
			   height:42px;
			   width:100%;
			}

			.page_top_search 
			{
			   height:38px;
			   width:100%;
			}


    .page_body
	{
	   padding-top:10px;
	   padding-bottom:10px;
	   width:100%;
	}

            .page_body_left
			{
			   width:250px;
               float:left;
			}

            .page_body_right
			{
			   width:750px;                    
			   float:right;
			}

                 .pbr_left
				 {
					 width:515px;
					 float:left;
				 }

                 .pbr_right
				 {
					 width:235px;
					 float:right;
				 }


	.page_copyright
	{
	   width:987px;
	   clear:both;
	}

/* 
■   容器层
*/

	.content_1,.content_2,.content_3
	{
	   width:320px;
	   overflow:hidden;
	}

	.content
	{
	    width:987px;
	    clear:both;
	}



	.content_a
	{
		width:515px;
	}

	.content_b
	{
		width:255px;
		float:left;
	}

	.content_c                     
	{
		width:255px;
		float:right;
	}

	.content_d                     
	{
		width:515px;
	    float:none;
	    clear:both;
	}

	.content_e
	{
		width:255px;
		float:left;
	}

	.content_f                     
	{
		width:255px;
		float:right;
	}

	.content_g                     
	{
		width:515px;
	    float:none;
	    clear:both;
	}

    /******************/

	.content_h
	{
	    width:221px;
	}

	.content_i
	{
	   width:743px;
	   float:left;
	   clear:both;
	}

	.content_j
	{
	   width:987px;
	   clear:both;
	}

	.content_k
	{
	   width:238px;
	}

	.content_l
	{
	   width:743px;
	   float:left;
	   clear:both;
	}
/* 
■   菜单样式
*/
/*
<div class="page_top_menu">
	<div class="hidden">[menu]</div>
</div>
*/

    .hidden
	{
	    overflow:hidden;
	    position:relative;
		margin-bottom:3px;
	    height:33px;
	}

    .hidden table
	{
		position:relative;
		float:left;
		left:0px;
		/* width:100% */                                        /* 不要设置 width 100% 会影响后面单个菜单的大小 */
	    /* background-color:red; */                             /* 有效 */
	}

	.menu                                                       /* 菜单样式外部样式 table */ /* ■ 好像没这属性 */
	{
	/*
		height:30px;
		position:relative;
		right:-20px;
    */
    }

    .menuitem table                                             /* 选中项菜单的那个 table */
	{
	    width:100%;
	}

	.menuitem td                                                /* 菜单每一项的样式 */ 
	{	
		text-align:center;
	}
 
                                                                /* link 设置 a 对象在未被访问前的样式。 ■ 伪类最好一定要分开写，顺序 link > visited > hover */

	a:link.menuitem                                             
	{
		color:#ffffff;
		display:block;
		width:64px;
		height:33px;
		line-height:33px;
		text-align:center;
		text-indent:3px;
		text-decoration:none;
		font-weight:;
		background-image:;
        background-repeat:;
        background-position:;
		/*  background-position: 5px; left */                  /* 这么写在火狐中出错 */

	}

	a:active.menuitem                                            /* 不写 active ，火狐里面有问题 */              
	{
		color:#ffffff;
		display:block;
		width:64px;
		height:33px;
		line-height:33px;
		text-align:center;
		text-indent:3px;
		text-decoration:none;
		font-weight:;
		background-image:;
        background-repeat:;
        background-position:;
	}

    a:visited.menuitem
	{
		color:#ffffff;
		display:block;
		width:64px;
		height:33px;
		line-height:33px;
		text-align:center;
		text-indent:3px;
		text-decoration:none;
		font-weight:;
		background-image:;
        background-repeat:;
        background-position:;
	}

	a:hover.menuitem                                            /* 菜单浮动样式 */ 
	{
		color:#ffffff;
		display:block;
		width:64px;
		height:33px;
		line-height:33px;
		text-align:center;
		text-indent:3px;
		text-decoration:underline;
		font-weight:bold;
        background-repeat:no-repeat;
	}

 
    .menuitemhover a                                            /* ■ 好像没这属性 */
    {
	}


                                                                /* 菜单选择项样式 */
	.menuselecteditem a:link,.menuselecteditem a:visited,.menuselecteditem a:active,.menuselecteditem a:hover                                         
	{
		color:white;
		display:block;
		width:82px;
		height:33px;
		line-height:33px;
		text-align:center;
		text-indent:3px;
		text-decoration:none;
		font-weight:bold;
		background-image:url(images/bg_menuitem1.jpg);
	}


/* 
■    下拉菜单样式
*/

	.menupopup                                   /*  弹出菜单外层 DIV */
	{
	}


	table.menupopupitem                          /*  这一项无效 *//* 每条下拉菜单是在一个表格中的 */                
	{
	}

	.menupopupitem td                            /*  下拉菜单每一项的样式 宽度根据下面来的。*/ /* 其它都正常 */
	{
	}

	a:link.menupopupitem
	{
	}

	a:active.menupopupitem
	{
	}

                                                 
	a:visited.menupopupitem
	{
	}

	a:hover.menupopupitem 
	{
	}


/* 
■   search 搜索 ------------------------------------------------------------------------------------------
*/


    .table_search
	{
	   float:right;
	   margin-top:;
	   /* border:1px dotted #888888; */ 
	   margin-right:18px;
	   margin-top:5px;
	   /* background-color:red; */
	}

	.searchcss                  /* 整个搜索  (table) */
	{
	   float:left;
	   margin-left:50px; 
	   margin-top:0px;
	   width:220px;             /* ■ 一定要加宽度，否则IE6里面，会错位 */
	}

		#psearchtype              /* 搜索商品下拉列表 */
		{
	        height:22px;
			margin-left:5px;
			display:none;
		}

        #psearchkey               /* 输入框  input */ 
		{
		   border:1px solid #cccccc;
		   height:16px;
		}

        #psearchproductcategory   /* 时尚女装下拉列表 */
		{
	        height:22px;
			margin-left:5px;
			display:none !important;
		}

        #psearchinfocategory      /* all */
		{
	        height:22px;
			margin-left:5px;
			display:none;
		}

		.searchcss span               
		{
		    display:block;
			float:left;


		   cursor:pointer;
		   background-image:url(images/button_search.jpg);
		   background-position:5px -1px;
		   background-repeat:no-repeat;
		   border:none;
		}


        #psearch                  /* 搜索按钮 */
		{
		   border:none;
		   width:65px;
		   height:18px;
		   visibility:hidden;
		}

/*****************************************************/

	.searchcss                  /* 整个搜索  (table) */
	{
	}

    .searchitembarcss           /* 搜索上部  (table) */
	{
	   display:none;
	}

    .searchmaincss              /* 搜索中间  (table) */
	{
	}

	.searchfootcss              /* 搜索底部  (table) */
	{
	   display:none;
	}



	.searchitemcss              /* 红色部分，类似于 menuitem */
	{

	}
         .searchitemcss a
		 {
		 }

         .searchitemcss a:link 
		 {
         }

         .searchitemcss a:active
		 {
		 }

         .searchitemcss a:hover
		 {
		 }


	.searchselecteditemcss      /* 蓝色部分，类似于 selectmenuitem */
	{
	}

		.searchselecteditemcss a:link,.searchselecteditemcss a:visited
		{
		}

	.searchboxcss               /* 输入框 td */
	{
	}
 
    .searchboxcss input
	{
	}


	.searchbuttoncss            /* 按钮 td */
	{
	}

	.searchbuttoncss input
	{
	}
        


/* 
■   补丁
*/


	.copyright,.content_a,.content_b,.content_c,.content_d,.content_e,.content_f,.content_g,.content_h,.content_i,.content_j,.content_k,.content_l,.page_content,.page_content_center,.page_center_center
	{
	   overflow:hidden;
	   text-align:left;
	}

	.page,.page_top,.page_top_logo,.page_top_menu,.page_top_search,.page_body,.page_body_left,.page_body_right,.pbr_left,.pbr_right,.page_copyright
	{
	  margin:auto;
	  text-align:center;
	}
