*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	list-style:none;
	text-decoration:none;
}
body{
	background-color:#f7f7f7;
}
.header{
	background:green;
	width:100%;
	min-height:70px;
}
.brand{
	background:;
	width:55%;
	height:70px;
	line-height:70px;
	text-align:left;
	float:left;
}
.brand h3{
	color:white;
	margin-left:60px;
}
.notification{
	background:;
	width:25%;
	height:70px;
	float:left;
}
.notifDiv{
	background:;
	height:70px;
	width:25%;
	float:right;
	position:relative;
	text-align:center;
}
.notifDiv i{
	font-size:40px;
	color:white;
	margin-top:15px;
}
.nodi{
	background:red;
	width:30px;
	height:30px;
	line-height:30px;
	border-radius:50%;
	font-size:17px;
	color:white;
	text-align:center;
	position:absolute;
	top:2px;
	left:40px;
}
.notifiDiv{
	background:red;
	width:50px;
	height:50px;
	border-radius:50%;
	position:absolute;
	top:10px;
	left:10px;
}



.logout{
	background:;
	width:20%;
	height:70px;
	line-height:70px;
	float:left;
	text-align:center;
}
.logout a{
	text-decoration:none;
	color:white;
	font-size:20px;
}



.container{
	background:#f7f7f7;
	width:100%;
	min-height:90vh;
	position:absolute;
}
.nav{
	background:#f7f7f7;
	width:18%;
	height:auto;
	float:left;
	border-right:solid #c4c4c4 1px;
}
.menu{
	width:100%;
	overflow:hidden;
}
.item{
	border-top:1px solid white;
	overflow:hidden;
	
}
.btn{
	display:block;
	padding:12px 20px;
	background:green;
	color:white;
	position:relative;
}
.btn:before{
	content:" ";
	position:absolute;
	width:14px;
	height:14px;
	background:green;
	left:20px;
	bottom:-7px;
	transform:rotate(45deg);
}
.btn i{
	margin-right:10px;
}
.smenu{
	background:black;
	overflow:hidden;
	transition: 0.5s;
	max-height:0;
}
.smenu a{
	display:block;
	padding:8px 26px;
	color:white;
	font-size:14px;
	letter-spacing:1px;
	margin:4px 0px;
	position:relative;
}
.smenu a:before{
	content:" ";
	position:absolute;
	width:6px;
	height:100%;
	background:green;
	left:0;
	top:0;
	transition:0.5s;
	opacity:0;
}
.smenu a:hover:before{
	opacity:1;
}
.item:target .smenu{
	max-height:10em;
}




.user{
	background:#fff0e6;
	width:100%;
	text-align:center;
}
.user img{
	width:100px;
	height:100px;
	border-radius:50%;
	padding:4px;
}
.user p{
	background:#803300;
	font-size:22px;
	color:white;
	padding:5px;
}



.content{
	background:#f7f7f7;
	width:82%;
	min-height:90vh;
	float:left;
	border-left:solid #c4c4c4 1px;
	padding-left:-1px;
}
.head{
	background:#f7f7f7;
	width:100%;
	min-height:50px;
	float:left;
	display:inline-block;
}
.title{
	background: #803300;
	color:white;
	width:21%;
	height:50px;
	line-height:50px;
	text-align:center;
	float:left;
}
.title p{
	font-size:22px;
	font-weight:bold;
}
.msg{
	background:#fff0e6;
	width:79%;
	height:50px;
	line-height:50px;
	text-align:center;
	float:left;
	padding:0px 30px;
}
marquee{
	font-size:20px;
	letter-spacing:0.8px;
}
.data-content{
	border-left:solid #c4c4c4 1px;
	margin-left:-1px;
}
.footer{
	background:green;
	width:100%;
	text-align:center;
	float:left;
	padding:10px;
	color:white;
}