/* 清除默认样式 */
a {
  color: inherit;       /* 继承父级颜色 */
  text-decoration: none; /* 去掉下划线 */
  font-size: inherit;   /* 继承父级字体大小 */
  font-family: inherit; /* 继承父级字体 */
  font-weight: inherit; /* 继承父级字体粗细 */
  /* 其他需要继承的样式 */
}

/* 确保所有状态下的链接都继承样式 */
a:link, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
}
/* 这里可以添加组件特定的样式 */
.SC_top_wrap{ background-color:#0b5c86;overflow:hidden; height:150px;}
.SC_top_wrap .main_box{ width:1000px;margin:auto; height:150px; overflow:hidden;}
.SC_top_wrap .main_box
.SC_top_info{ height:105px;}
.SC_top_nav{ height:45px;padding:0; margin:auto;width: 1000px;}
.SC_top_nav li{
	list-style-type:none;
	float:left;
	height:45px;
	width:98px;
	margin-right:2px;
	text-align:center;
	line-height:45px;
	background-image:url(/exam/images/nav_btn_bg.png);
	background-repeat:no-repeat;
	cursor: pointer;
	color:#FFF;
	font-size: 16px;
}
.nav_btn:hover{background-position:0 -45px;}
.SC_top_nav .btn_active{background-position:0 -90px; color:#033; font-weight:bold;}

.SC_top_info .SC_logo{float:left; width:390px; height:70px; margin-top:10px;}
.SC_top_info .SC_info{float:right; width:390px; height:70px; line-height:25px; margin-top:20px;font-size:14px; color:#FFF; text-align:right;}
.SC_main_wrap{
	background-color:#FFF;
	width:1200px;
	padding:auto;
	margin:auto;
	overflow:hidden;
}
.SC_top_nav li a {
    display: block;
    width: 100%;
    height: 100%;
}