/*
	Tweet Blender CSS
*/

/* title colour */
.widgettitle {
	color: #2380b5;
}

/* general container */
#tweetblender {
	padding:5px 0;
	margin-bottom:12px;
}

/* header */
div.tb_header {
	height: 25px;
	width:100%;
}

img.tb_twitterlogo {
	width: 86px;
	height: 20px;
	margin-bottom: 5px;
	float:left;
	border:none;
}

div.tb_tools {
	float:right;
	height:22px;
	width:28px;
	background-repeat:no-repeat;
}

a.tb_refreshlink {
	display:inline;
	float:right;
	height:16px;
	width:16px;
	-moz-opacity:.30; filter:alpha(opacity=30); opacity:.30;
	margin-right: 5px;
	margin-top:3px;
	margin-right:7px;
}
a.tb_refreshlink:hover, a.tb_refreshlink.loading {
	-moz-opacity:1; filter:alpha(opacity=100); opacity:1;
}
a.tb_refreshlink img {
	border:none;
}

a.tb_infolink {
	display:none;
	float:right;
	height:16px;
	width:16px;
	-moz-opacity:.30; filter:alpha(opacity=30); opacity:.30;
	margin-bottom:10px;
	margin-right: 7px;
	margin-top:3px;
}
a.tb_infolink:hover {
	-moz-opacity:1; filter:alpha(opacity=100); opacity:1;
}

/* messages below header and above list */
#tb_loading {
	text-align:center;
	clear:right;
}

/* tweets list */
div.tb_tweetlist {
	margin-top: 10px;
	padding:0;
}

div.tb_tweet {
	min-height: 60px;
	list-style:none;
	background:none;
	overflow:hidden;
	margin-bottom: 20px;
	font-size: 12px;
}

div.tb_tweet-tools {
	text-align:right;
	clear:both;
}

a.tb_photo {
	display:block;
	float:left;
	border:none;
}

a.tb_photo img {
	margin-right: 10px;
	width: 38px;
	height: 38px;
	display: block;
	padding: 3px;
	border: 1px solid #828282;
	color: white;
	text-decoration: underline;
	background: white;
	overflow: hidden;
	
	-webkit-transition: background 0.5s linear;
	-moz-transition: background 0.5s linear;
	-o-transition: background 0.5s linear;
	transition: background 0.5s linear;
}

a.tb_photo img:hover {
	background: #69bcd6;
	border: 1px solid #478192;
	color: #69bcd6;
}

.tb_author {
	font-weight:normal;
}

div.tb_msg {
	min-height: 40px;
	clear:right;
	margin-bottom: 10px;
}

#msg_loading {
	display: none !important;
}

.tb_msg {
	float: left;
	width: 158px;
	min-height: 50px;
}

.tb_msg a {
	color: #171717;
	font-weight: bold;
	text-decoration: none;
	
	-webkit-transition: color 0.5s linear;
	-moz-transition: color 0.5s linear;
	-o-transition: color 0.5s linear;
	transition: color 0.5s linear;
}

.tb_msg a:hover {
	color: #236a98;
}

.tb_tweet-info {
	font-style:italic;
}

.tb_tweet-info a {
	color: #407180;
	text-decoration:none;
	line-height: 1.8;
	font-weight: bold;
	margin-left:55px;
	border-bottom: 1px solid #fff;
	
	-webkit-transition: border-bottom 0.5s linear;
	-moz-transition: border-bottom 0.5s linear;
	-o-transition: border-bottom 0.5s linear;
	transition: border-bottom 0.5s linear;
}

.tb_tweet-info a:hover {
	border-bottom: 1px solid #407180;
}

.tooltip { 
	position: absolute; 
	top: 0; left: 0; 
	z-index: 300; 
	display: none; 
	background-color:#FFFFCC; 
	padding: 2px 8px; 
}

/* footer */

div.tb_footer {
	margin-bottom:8px;
	padding-bottom:15px;
}

a.tb_archivelink {
	float:right;
	padding: 4px 8px;
	text-decoration: none;
	color: #171717;
	font-size: 12px;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

a.tb_archivelink:hover {
	color: white;
	background: #fa802b;
}


