/**************************************************
 * 设置整个网页的背景图像和整体框架样式
 **************************************************/	

/*  */
body {
	text-align:center;
	margin: 0px;
	padding: 0px;
	background-image: url(Images/main_background.jpg);
	background-repeat: repeat;
}

/* 设置居中显示 */
.main_center {
	width: 770px;
	margin: 0px;
}

/* 正文中部栏目（在没有左侧栏时显示在左侧与中间部分） */
#main_content {
	width: 580px;	
	height:auto;
	float:left;
	clear: both;
}

/* 右侧栏部分 */
#main_sideColumn {
	width:180px;
	height:auto;
	float: right;
}

/* */
#main_sideColumn_topFloat {
	
}

/* 横向分割条 */
.main_blank {
	clear:both;
	overflow:hidden;
	height:5px;
	width: auto;
}

/**************************************************
 * 设置栏目标题的格式
 **************************************************/	

/* 左侧大标题 */
h1 {
	font-family: "宋体";
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	float: left;
	margin-bottom: 10px;
	position: relative;
	padding-top: 10px;
	padding-left: 12px;
}

h1 a
{
    color: #000000;
    text-decoration:none;
}

h1 a:hover {
    color: #E33539;
    text-decoration: underline;
}

/* 左侧小标题  */
h2 {
    float: left;
	font-family: "宋体";
	font-size: 12px;
	color: #E33539;
	position: relative;
	top: 20px;
	right: 12px;
	padding-left: 21px;
}

/* 右侧大标题 */
h3 {
	float: right;
	font-family: "宋体";
	font-size: 14px;
	color: #0077c1;
	position: relative;
	top: 18px;
	right: 12px;
}

/* 右侧小标题 */
h5 {
	float: right;
	font-family: "宋体";
	font-size: 12px;
	color: #0077c1;
	position: relative;
	top: 20px;
	right: 12px;
    height: 12px;
}

/* <A>标签全局设定  */
a {
	color: #0077c1;
}


 