/* CSS Document */



h2.tut{
	/* This is the "MY TWEETS" title */
	color:#666666;
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.31em;
	font-weight: bold;
	padding:12px 0 0 58px;

	/* The CSS3 text-shadow property
	text-shadow:2px 1px 6px #333; */
}

#twitter-ticker{
	/* Styling the ticker */
	width:200px;
	height:460px;; //IE7
	background:url(/img/content/socialmedia/slickbg.png) no-repeat #f5f5f5;

	display:none;

	/* Rounded corners */
	-moz-border-radius:10px 10px 6px 6px;
	-khtml-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius:6px;
	text-align:left;
}

#tweet-container{
	/* This is where the tweets are inserted */
	height:740px;; //IE7
	width:auto;
	overflow:hidden;
}

#tweet-containersmall{
	/* This is where the tweets are inserted */
	height:300px;; //IE7
	width:auto;
	overflow:hidden;
}

#twitIcon{
	/* Positioning the icon holder absolutely and moving it to the upper-left */
	position:absolute;
	top:-10px;
	left:-10px;
}

#top-bar{
	height:32px;
	position:relative;
	margin-bottom:5px;

	/* Rounding the top part of the ticker, works only in Firefox unfortunately */
	-moz-border-radius:6px 6px 0 0;
}

.tweet{
	 /* Affects the tweets */
	 padding:5px;
	 margin:0 8px 8px 0;
	 font-size:0.9em;
	 border:1px solid #F0F0F0;
	 background:url(/img/content/socialmedia/transparent.png);
	 line-height: 16px;
	 width:160px;
	 overflow:hidden;
}

.tweet .avatar,
.tweet .user,
.tweet .time{
	float:left;
}

.tweet .time{
	text-transform:uppercase;
	font-size:0.9em;

	white-space:nowrap;
}

.tweet .avatar img{
	width:36px;
	height:36px;
	border:2px solid #eeeeee;
	margin:0 5px 5px 0;
}

.tweet .txt{
	/* Using the text container to clear the floats */
	clear:both;
}

.tweet .user{
	font-weight:bold;
}

a, a:visited {
	/* Styling the links */

	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

#loading{
	/* The loading gif animation */
	margin:100px 95px;
}

