.navbar .navbar-inner {
	background-image: none;
	background-color: #FF5733;
	border: none;
}
.navbar.navbar-hl .navbar-inner {
	background-color: #FF5733;
}
.navbar ul.nav > li > a {
	height: 21px;
	line-height: 21px;
	padding: 16px 10px 12px 8px;
	vertical-align: middle;
	color: #fff;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 500;
}
.navbar ul.nav > li > a:hover, .navbar ul.nav > li.current a {
	border-color: #E12902;
	background: #E12902;
}
.navbar ul li.current_ancestor a {
	background: #E12902;
}
.cf-navbar ul li.current a, .cf-navbar ul li.current_ancestor a {
	background: white;
}

a.brand img {
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }