/* Twitter styling */

.latest-tweets {
    /* style tweet list wrapper */
}
.latest-tweets h3 {
    /* style whatever you did with the header */
}
.latest-tweets ul { 
    /* style tweet list*/
}
.latest-tweets li {
   /* style tweet item */
   padding-bottom: 3px;
   margin-bottom: 5px;
   border-bottom: solid;
   border-width: 1px;
   border-color: #999999;
   
}
.latest-tweets .tweet-text {
   /* style main tweet text */
}
.latest-tweets .tweet-text a {
   /* style links, hashtags and mentions */
   color: #36afaf;
}

.latest-tweets .tweet-text a:hover{
    color:orange;
}
.latest-tweets .tweet-details {
  /* style datetime and link under tweet */
  font-weight: normal;
  text-align: right;
  font-size: 12px;
  padding-top: 5px;
}

.latest-tweets .tweet-details a{
  color: #999999;
}

.latest-tweets .tweet-details a:hover{
    color: orange;
}
