@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.Newsfeed {
  position: relative;
  width: 400px;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin: 0em 2em;
  border-radius: 2px;
 display: inline-grid;
 clear: both;
}

.Newsheader {
  width: 100%;
  height: 108%;;
  background-color: #004c25;
  overflow: hidden;
}
.Newsheader .circle {
  position: relative;
  top: 20px;
  left: 60px;
  width: 50px;
  height: 50px;
  background-color:  #598f39;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 10;
}
.Newsheader h1 {
  position: relative;
  top: 10px;
  left: 110px;
  font-size: 2.5em;
  color: #fff;
  border-bottom: 2px solid #598f39;

}

.Newsline {
  position: absolute;
  z-index: 0;
  top: 50px;
  left: 85px;
  height: calc(100% + 200px);
  width: 0px;
  border-right: 1px solid #598f39;
}

#Newscontent {
  width: 100%;
  height: 400px;
  overflow: hidden;
  padding-top: 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
#Newscontent::-webkit-scrollbar {
  width: 6px;
  background-color: #EBEBEB;
}
#Newscontent::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
#Newscontent .Newsobject {
  width: 100%;
}
#Newscontent .Newsobject:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
#Newscontent .Newsobject .Newsdate {
  float: left;
  width: 40px;
  height: 40px;
  margin: 20px;
  background-color: #004c25;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  line-height: 1.9em;
  font-size: 1.4em;
}
#Newscontent .Newsobject .circle {
  position: relative;
  float: left;
  z-index: 10;
  margin: 30px 0 0 -5px;
  width: 25px;
  height: 25px;
  background-color: #598f39;
  border-radius: 50%;
}
#Newscontent .Newsobject .Newscontext {
  
  color: #004c25;
  width: 250px;
  min-height: 40px;
  margin-left:30%;
  margin-top:-10%;
  padding: 10px;
  line-height: 1.5em;
}
#Newscontent .Newsobject .NewsTitle {
    
  float: left;
 color: #004c25;
 text-transform: uppercase;
 max-width: 250px;
 font-weight: bold;
  min-height: 40px;
  margin: 10px 0 10px 0px;
  padding: 20px;
  line-height: 1.5em;
  position: relative;
    
    
}
