@import url(https://fonts.googleapis.com/css?family=Raleway:400,200);
.cssmenu,
.cssmenu ul,
.cssmenu ul li,
.cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cssmenu {
  width: 100%;
  color:darkblue;
}
.cssmenu ul ul {
  display: none;
}
.cssmenu > ul > li.active > ul {
  display: block;
}
.align-right {
  float: right;
}
.cssmenu > ul > li > a {
  border-bottom:1px solid #ccc;
  padding: 16px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  text-decoration: none;
  color: darkblue;
  background: #fff;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}

.cssmenu > ul > li > a:hover {
  background: yellow;
}
.cssmenu ul > li.has-sub:before {
  content: '';
  display: block;
  z-index: 1;
  position: absolute;
  top:0;
  left:9%;
  bottom: 0;
  border:1px dotted;
  border-width: 0 0 0 1px;
}

.cssmenu ul > li.has-sub > ul >li:before{
  content: "";
  display: block;
  width: 7px;
  z-index: 1;
  position: absolute;
  left:10%;
  top:50%;
  border:1px dotted;
  border-width: 1px 0 0 0;
}
.cssmenu ul > li.has-sub > ul li a{
  padding-left:15%;
}
.cssmenu ul > li.has-sub > a:after {
  position: absolute;
  right: 26px;
  top: 19px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: darkblue;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.cssmenu ul > li.has-sub > a:before {
  position: absolute;
  right: 22px;
  top: 23px;
  display: block;
  width: 10px;
  height: 2px;
  background: darkblue;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.cssmenu ul > li.has-sub.open > a:after,
.cssmenu ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cssmenu ul ul li a {
  border-bottom:1px solid #ccc;
  padding: 14px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  text-decoration: none;
  
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
.cssmenu ul ul ul li a {
  padding-left: 32px;
}

.cssmenu ul ul > li.has-sub > a:after {
  top: 16px;
  right: 26px;
  background: darkblue;
}
.cssmenu ul ul > li.has-sub > a:before {
  top: 20px;
  background: darkblue;
}
.right-sidebar {
  width: 100%;
  display: table;
  margin: 5px;
  margin-bottom: 8px;
}
.right-sidebar .showcalendar {
  width: 18%;
  float: left;
  color: white;
  padding-top: 5px;

}
.right-sidebar .showcalendar .day{
  width: 100%;
  padding: 2px 3px;
  font-size: 18px;
  background: yellow;
  color :black;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
  display: block;

}
.right-sidebar .showcalendar .monthyear{
  width: 100%;
  padding: 2px 3px;
  font-size: 10px;
  float: left;
  text-align: center;
  background:#999;
}
.right-sidebar .content{
  width: 75%;
  float: left;
  margin-left: 7px;
  text-align: justify;
}