/*------------ Color Palette ------------*/
/*
LIGHT ORANGE: #e4644b
DARK ORANGE: #d05942
DARK BROWN: #484141
Menu text: #f7f1e3
Submenu text: #ae9f9f
*/

/*------------ General Settings ------------*/
/*@import url(https://fonts.useso.com/css?family=Montserrat);*/

/*body {
	margin:0;
	padding:0;
	font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", "FontAwesome", sans-serif;
	background: url("../images/bg.jpg") top center no-repeat;
	letter-spacing: 0.2px;
}*/

/*ul {
	list-style: none;
	width: 192px;
}*/

li {
	cursor: pointer; 
}
/*------------ Main Menu ------------*/
.mainmenu {
	font-size: 16px;
	position:relative;
	padding:0;
}

.mainmenu > li {
	 background:url(../images/t_dit.jpg) no-repeat; margin-top:5px;
	height: 44px;
	color: #1c66af;
	box-sizing: border-box;
	position:relative; text-align:center;
/*	padding:0 0 0 40px;*/
}

.mainmenu > li:first-child {
	border-radius: 7px 7px 0 0;
	border-top: 0;
}

.mainmenu > li:last-child {
	border-radius: 0 0 7px 7px;
}

.mainmenu > li span {
	display:block;
	line-height: 48px;
}

.mainmenu > li .icon {
	float: left;
	width: 20px;
	height: 20px;
	display:block;
	position:absolute;
	left:10px;
	top:15px;
}

.mainmenu > li .messages {
/*	background: url("../images/messages.png") no-repeat;*/
	padding: 0;
	margin-top: -33px;
	margin-right: 19px;
	float: right;
	display: block;
	width: 34px;
	height: 18px;
	text-align: center;
	font-size: 11px;
	line-height: 19px;
}

.expand-triangle {
	background: url("../images/ht.jpg") top left no-repeat;
	height: 10px;
	width: 192px;
	content: " ";
/*	margin-left: -40px;*/
}

/*------------ Sub Menu ------------*/
.submenu {
	box-sizing: border-box;
	color: #535353;
	font-size: 13px;
	content: " ";
	/*opacity: 0.5;*/
	
	 background:#FFF;
}

.submenu li {
	line-height: 35px;
	height: 35px;
	/*padding-top: 11px;
	margin-left: -40px;
	background-color: #484141;*/
/*	border-left: solid 6px #484141;
	transition: border-left 220ms ease-in;*/
}

.submenu .chosen,
.submenu .chosen:hover {
	border-left: solid 6px #1c66af;
}

.submenu li:hover {
	border-left: solid 6px #d05942;
}

.submenu li span {
	margin-left:30px;
}

.animate {
	animation: flip 2000ms ease-in-out alternate;
}

@keyframes flip {
	to {
		transform: rotateY(360deg);
	}
}