#header {
	height: 72px;
	width: 100%;
	margin: 0;
}

#mainMenudiv {
	position: absolute;
	margin-left: 280px !important;
	margin-left: 280px;
	margin-top: 30px;
	margin-bottom: 0px;
	height: 42px;
}

#mainContent {
	height: 504px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0;
}

#sidebar {
	float: left;
	width: 180px;
	height: 500px;
	border-right: 1px solid rgb(211, 225, 213);
	background: #fff;
}


/*当content设定高度后，3像素会跑到content外侧，这样，我们用!important修正在ie下向左多浮动2像素，加上3像素的bug正好是5像素，所以在火狐和IE下显示是一样的*/

#headInfo {
	float: right;
	position: relative;
	margin-left: 220px;
	padding-right: 30px;
	padding-top: 2px;
	font-size: 12px;
	box-shadow: 0px;
	color: #fff;
}

.head_tab_text {
	padding: 3px 4px 3px 4px;
	border-radius: 3px;
}

.head_tab_text>a {
	color: #fff;
}

.head_tab_line {
	color: #fff;
	padding: 3px 4px 3px 4px;
}

.head_tab_text:hover {
	cursor: pointer;
	color: #fff !important;
	background: #0F6099;
}

#userInfo {
	float: right;
	position: relative;
	padding-right: 30px;
	padding-top: 4px;
	font-size: 12px;
	box-shadow: 0px;
	color: #333;
}

.main_tab_td:hover {
	background: #EAF3F9 !important;
}

#user_pic {
	border: 0px;
	width: 100%;
	height: 75px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

#submenusDiv {
	padding: 0px;
	font-size: 14px;
	width: 100%;
	font-weight: normal;
}

#head_line {
	width: 100%;
	position: absolute;
	height: 2px;
	background: #10619A;
	box-shadow: 0 1px 2px 0 RGBA(0, 0, 0, .3);
}

body {
	overflow-y: hidden;
	min-width: 1000px;
	margin: 0px;
	background: #fff;
}

#appName {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 54px;
	padding-left: 20px;
	padding-top: 10px;
	font-size: 18px;
	color: #FFF;
	width: 300px;
}

#btn_panel {
	position: relative;
	float: right;
	margin-top: -38px;
}

#result_body th {
	vertical-align: middle;
}

.openBottomSlide {
	float: right;
	animation: openBottom 0.5s ease 0s 1 normal running forwards;
	/* Firefox: */
	-moz-animation: openBottom 0.5s ease 0s 1 normal running forwards;
	/* Safari and Chrome: */
	-webkit-animation: openBottom 0.5s ease-out 0s 1 normal running forwards;
	/* Opera: */
	-o-animation: openBottom 0.5s ease 0s 1 normal running forwards;
}

.closeBottomSlide {
	float: right;
	animation: closeBottom 0.5s ease 0s 1 normal running forwards;
	/* Firefox: */
	-moz-animation: closeBottom 0.5s ease 0s 1 normal running forwards;
	/* Safari and Chrome: */
	-webkit-animation: closeBottom 0.5s ease 0s 1 normal running forwards;
	/* Opera: */
	-o-animation: closeBottom 0.5s ease 0s 1 normal running forwards;
}

.openRightSlide {
	float: right;
	animation: openRigth 0.5s ease 0s 1 normal running forwards;
	/* Firefox: */
	-moz-animation: openRigth 0.5s ease 0s 1 normal running forwards;
	/* Safari and Chrome: */
	-webkit-animation: openRigth 0.5s ease-out 0s 1 normal running forwards;
	/* Opera: */
	-o-animation: openRigth 0.5s ease 0s 1 normal running forwards;
}

.closeRightSlide {
	float: right;
	animation: closeRight 0.5s ease 0s 1 normal running forwards;
	/* Firefox: */
	-moz-animation: closeRight 0.5s ease 0s 1 normal running forwards;
	/* Safari and Chrome: */
	-webkit-animation: closeRight 0.5s ease 0s 1 normal running forwards;
	/* Opera: */
	-o-animation: closeRight 0.5s ease 0s 1 normal running forwards;
}

.mainframe-nav-pills>li {
	float: left;
}

.mainframe-nav-pills>li>a {
	border-radius: 0px;
}

.mainframe-nav-pills>li+li {
	margin-top: 0px;
	margin-left: 0px;
}

.mainframe-nav-pills>li>a:hover,
.mainframe-nav-pills>li>a:focus {
	text-decoration: none;
	background-color: #37424f;
}

.mainframe-nav-pills>li.active>a,
.mainframe-nav-pills>li.active>a:hover {}

.mainframe-nav-pills>li.active>a:focus {
	color: #fff;
	background-color: #09c;
}

.activeMenu {
	color: #fff;
	background-color: #09c;
}

a.activeMenu:hover {
	color: #fff;
	background-color: #09c;
}

.activeMenu>li>a {
	color: #fff;
	background-color: #09c;
}

.viewFramework-sidebar .sidebar-nav li.activeMenu a .nav-icon {
	color: #fff;
}

.viewFramework-sidebar .sidebar-nav li.activeMenu a:hover {
	color: #fff;
	background-color: #09c;
}

.kee-submenu>li>a {
	position: relative;
	color: #eee;
	display: block;
	padding: 10px 0px;
	border-radius: 0px;
}

@keyframes openBottom {
	0% {
		right: 0;
		top: 1000px;
	}
	100% {
		right: 0px;
		top: 50px;
	}
}

@-webkit-keyframes openBottom {
	0% {
		right: 0;
		top: 100%;
	}
	100% {
		right: 0px;
		top: 50px;
	}
}

@-moz-keyframes openBottom {
	0% {
		right: 0;
		top: 1000px;
	}
	100% {
		right: 0px;
		top: 50px;
	}
}

@keyframes closeBottom {
	0% {
		right: 0px;
		top: 50px;
	}
	100% {
		right: 0px;
		top: 1000px;
	}
}

@-webkit-keyframes closeBottom {
	0% {
		right: 0px;
		top: 50px;
	}
	100% {
		right: 0px;
		top: 100%;
	}
}

@-moz-keyframes closeBottom {
	0% {
		right: 0px;
		top: 50px;
	}
	100% {
		right: 0px;
		top: 1000px;
	}
}

@-o-keyframes closeBottom {
	0% {
		right: 0px;
		top: 50px;
	}
	100% {
		right: 0px;
		top: 1000px;
	}
}

@keyframes openRigth {
	0% {
		right: -1012px;
		top: 0px;
	}
	100% {
		right: 0px;
		top: 0px;
	}
}

@-webkit-keyframes openRigth {
	0% {
		right: -100%;
		top: 0px;
	}
	100% {
		right: 0px;
		top: 0px;
	}
}

@-moz-keyframes openRigth {
	0% {
		right: -1012px;
		top: 0px;
	}
	100% {
		right: 0px;
		top: 0px;
	}
}

@-o-keyframes openRigth {
	0% {
		right: -1012px;
		top: 0px;
	}
	100% {
		right: 0px;
		top: 0px;
	}
}

@keyframes closeRight {
	0% {
		right: 0px;
		top: 0px;
	}
	100% {
		right: -1012px;
		top: 0px;
	}
}

@-webkit-keyframes closeRight {
	0% {
		right: 0px;
		top: 0px;
	}
	100% {
		right: -1012px;
		top: 0px;
	}
}

@-moz-keyframes closeRight {
	0% {
		right: 0px;
		top: 0px;
	}
	100% {
		right: -1012px;
		top: 0px;
	}
}

@-o-keyframes closeRight {
	0% {
		right: 0px;
		top: 0px;
	}
	100% {
		right: -1012px;
		top: 0px;
	}
}

.kee-main-header {
	width: 100%;
	height: 50px;
	position: relative;
	background:url("images/u57.png") 0 0 no-repeat #ff1e3f;
}

.kee-main-header-logo {
	float: left;
	width: 50px;
	height: 50px;
}

.kee-main-header-title {
	float: left;
	height: 50px;
	padding-top: 12px;
	color: #FFFFFF;
}

.kee-main-header a {
	font-size: 14px;
	color: #FFFFFF;
}

.kee-main-header-title a {
	font-size: 20px;
	color: #FFFFFF;
}

.kee-header-drop-item {
	width: 100%;
	height: 36px;
	padding-top: 8px;
	text-align: center;
}

.kee-header-drop-item:hover {
	background: #2dc3e8;
}

.kee-header-toobar-btn {
	height: 50px;
	text-align: center;
	padding-top: 13px;
	cursor: pointer;
}

.kee-header-drop-panel {
	display: none;
	position: absolute;
	z-index: 200;
	left: 0;
	right: 0;
	background: #008fbf;
	top: 50px;
	height: auto;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.kee-header-toobar-btn:hover {
	background: #008fbf;
}

.kee-header-toobar-btn:hover .kee-header-drop-panel {
	display: block;
}

.kee-header-drop-panel:hover {
	display: block;
}


/**
			 * 菜单项
			 */

.kee-main-menu-item {
	background: #273240;
	;
	position: relative;
}

.kee-main-menu-icon {
	width: 50px;
	height: 40px;
	float: left;
	text-align: center;
	line-height: 40px;
	color: #aeb9c2;
	font-size: 16px;
}

.kee-main-menu-item:hover {
	background: #394555;
}

.kee-main-menu-item-active {
	background: #ff1e3e;
	color: #FFFFFF;
}

.kee-main-menu-item-active:hover {
	background: #ff1e3e;
	color: #FFFFFF;
}

.kee-main-menu-item-active .kee-main-menu-icon {
	color: #FFFFFF;
}

.kee-main-menu-item:hover .kee-main-menu-icon {
	color: #FFFFFF;
}