﻿/* 重新设置 margin, padding 默认值 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td 
{ margin : 0; padding : 0; }

/* 设置h1-h6标题默认字号 */
h1,h2,h3,h4,h5,h6 { font-size : 100%; }

/* 移除列表的默认图标 */
ol,ul { list-style : none; }

/* 设置其他标签的默认字号和粗细 */
address, caption, cite, code, dfn, em, strong, th, var
{ font-style : normal; font-weight : normal; }

/* 设置表格的相邻边被合并 间距为零*/
table { border-collapse : collapse; border-spacing : 0; }

/* 父框和图片的边框为零 */
fieldset,img { border : 0; }

/* 设置表格的表头和标题中的文本左对齐 */
caption,th { text-align : left; }

/*layout.css*/
html {
	text-align: center;
	background-color: #000;
}

div#overall {
	position : relative;  /* 使body成为其子元素的包含块，对象不可层叠，但将依据 left ， right ， top ， bottom 等属性在正常文档流中偏移位置 */
	text-align: left;
}/*设置一个父框，做为内容容器，这样内容的宽度就可以是100%了*/

/*导航开始*/
div#nav {
	float: left;
	width: 1004px;
	height: 130px;
}
/*导航结束*/

/*页面内容开始*/
div#main {
	float: left;
	width: 1004px;
	height: auto;
}

div#main_right_01 {
	float: right;
	width: 704px;
	height: 600px;
	background: url(../images/bg-main.gif) no-repeat right top;
}

div#main_right_02 {
	float: right;
	width: 704px;
	height: auto;
}

/*页面内容结束*/
div#foot {
	float: left;
	clear: right;
	width: 1004px;
	height: 100px;
}
