body {
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", Ubuntu, Consolas, Verdana, Tahoma, Arial, sans-serif;
    /* background:url(../images/bg.jpg); */
    background: #8e8e8e;
}

a{
  color:#0e1011;
}

#msgjug-navbar {
	margin-bottom:1em;
	border-radius:0px;
	border:none;
  /* background: #5a5e60 url( ../images/topbanner.jpg) center no-repeat; */
  background: #5a5e60;
  height:110px;
  position:relative;
}

#msgjug-navbar .navbar-brand {
	color:#ccc;
}

#msgjug-navbar .navbar-brand:hover {
	color:#ccc;
}


.navbar-toggle {
  border-width:10px;
  border-color:transparent;
  border-image: url(../images/btn.png) 9 stretch;
  border-radius: 15px;
  border-style:solid;
  background:#9e9e9e;
  /* min-height:45px; */
  color: #0e1011;
}
#msgjug-navbar-collapse {
  position: absolute;
  right:20px;
  z-index: 99;
  border-width:10px;
  border-color:transparent;
  border-image: url(../images/btn-black.png) 9 stretch;
  border-radius: 15px;
  border-style:solid;
  background:#0c1011;
  /* min-height:45px; */
  color: #ccc;
}

#msgjug-navbar-collapse .active > a {
	background-color:#ccc;
  color:#0e1011;
}
#msgjug-navbar-collapse a {
  background-color:#0c1011;
	color:#ccc;
}
#msgjug-navbar-collapse a:hover {
	background-color:#ccc;
  color:#0e1011;
}

.navtree {
  color:#ccc;
  font-weight:bold;
  position: absolute;
  left: calc(8% + 286px);
  bottom: 0.5em;
}
.navtree a {
  color: #ccc;
}

.search-bar {
  border-width:10px;
  border-color:transparent;
  border-image: url(../images/btn.png) 9 stretch;
  border-radius: 15px;
  border-style:solid;
  background:#9e9e9e;
  /* min-height:45px; */
  color: #0e1011;
  width:100%;
}

#main-content {

}

.container {
  margin:4em auto;
}

#msgjug-jumbotron {
	background:none;
	margin-bottom:0px;
}

.msgjug-bar {
  /* background: #8e8e8e; */
  padding: 0.2em;
  margin: 0.5em;
  color: #0e1011;
}
.msgjug-bar a {
  color: #0e1011;
  font-size:1.1em;
  font-weight:bold;
}

.msgjug-panel {
  position: relative;
  border-width:20px;
  border-color:transparent;
  border-image: url(../images/panel.png) 14 stretch;
  border-radius:25px;
  border-style:solid;
  background:#ccc;
  color: #0e1011;
  /* margin:2em 1em; */
  padding:0.8em;
  padding-top: calc( 0.8em + 5px );
  /* max-width:460px; */
}

.msgjug-panel a {
    color:#0e1011;
    font-size:1.2em;
    font-weight:bold;
}
.msgjug-panel .btn {
  color: #0e1011;
  font-size:1.2em;
  font-weight:bold;
}

.msgjug-panel .img-thumbnail {
	border: 2px solid rgba(0,0,0,1);
}

.msgjug-panel > .panel-footer {
    padding: 0px 10px;
    border-top: none;
    background: none;
    text-align: right;
    max-height:50em;
    overflow-y:scroll;
}

.msgjug-release-time {
  position: absolute;
  right:0;
  top:-5px;
  color:#5a5e60;
}

.msgjug-release-img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #0e1011;
}

.msgjug-aside-pad {
  border-width:20px;
  margin:-10px;
  border-color:transparent;
  border-image: url(../images/panel.png) 14 stretch;
  border-radius:25px;
  border-style:solid;
  background:#ccc;
  color: #0e1011;
  padding: 10px 0 0 0;
  margin-bottom:1.5em;
}
.msgjug-aside-pad > .title {
  font-weight: bold;
  font-size:1.5em;
  /* border-left: 1em solid #5a5e60; */
  padding-left: 0.3em;
  display:block;
}
.msgjug-aside-pad > ul {
  margin:0;
  padding:0 2em;
}

/* 
@media screen and (min-width:990px) {
  .container{
    display: flex;
    flex-flow : row wrap;
  }

  .msgjug-panel {
    flex-grow:1;
    width:40%;
  }
}
@media screen and (max-width:989px) {
  .container{
    display: inherit;
    flex-flow : inherit;
  }

  .msgjug-panel {
    flex-grow:inherit;
    width:inherit;
  }
} */

#footer {
	background:#5a5e60;
	color:#0e1011;
	padding-bottom:30px;
	padding-top:20px;
}

#footer h4, #footer h3 {
	color:#ccc;
}

#footer a {
    color:#0e1011;
}




.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}
.dropdown-submenu.pull-left {
  float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
