@charset "UTF-8";
/* CSS Document */

.article-content blockquote.tweetthis{
  display:block;
  background: #fff;
  padding: 15px 20px 15px 55px;
  margin: 20px 20px 20px;
  position: relative;
  overflow: hidden;
  
  /*Font*/
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  text-align: justify;
  font-style: italic;
  
  /*Borders - (Optional)*/
  border-left: 15px solid #38224e;
  border-right: 2px solid #38224e;
  
  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

.article-content blockquote.tweetthis::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  
  /*Font*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  font-style: normal;
  
  /*Positioning*/
  position: absolute;
  left: 10px;
  top:0px;
}

.article-content blockquote.tweetthis::after{
  /*Reset to make sure*/
  content: "";
}

.article-content blockquote.tweetthis a{
  text-decoration: none;
  background: #ffffff;
  cursor: pointer;
  padding: 0 3px;
  color: #38224e;
}

.article-content blockquote.tweetthis a:hover{
 color: #666;
}

.article-content blockquote.tweetthis a.twitterlink {
	background: transparent url("http://209.43.94.223/tweetthis.png") no-repeat 0 0;
	display: block;
	padding: 0px 0px 0px 28px;
	font-weight: bold;
	float: right;
	margin: 17px 20px 5px 0px;
}

.article-content blockquote.tweetthis em{
  font-style: italic;
}