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

/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

/*  scrollgeneric is used for corrective styling of elements, and should not be modified or removed */ 
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbar {
width: 14px;
background: #FFFFFF url(/images/scrollbar.png) -14px 0px repeat-y;
/* do not forget to put colors for backgrounds for before image(s) can load , this is more important for
the scrollbar itself than the scrollbase, as user can live without an image on the base but cannot see
any scrollbar when images cannot load. */
}
.vscrollerbarbeg {
/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
height: 9px !important;
/* ...unless we force the size using an !important decleration */
/* forcing would not be required if Webkit-Safari did not have a background-repeat bug*/
/* this may be fixed by the time Safari 3.0 is released. */
width: 14px;
background: url(/images/scrollbar.png) -42px -9px no-repeat;
}
.vscrollerbarend {
/* height of this element should be set */
height: 9px;
width: 14px;
background: url(/images/scrollbar.png) -42px 0px no-repeat;
}

.vscrollerbase {
width: 14px;
background: #FFFFFF url(/images/scrollbar.png) 0px 0px repeat-y;
}
.vscrollerbasebeg {
/* height of this element is auto set to fit the scrollbase, to cover the base */
/* this element can be used to place a faux top arrow image */
width: 14px;
height: 9px !important; /*Again, the safari fix, normally this line is not needed.*/
background: url(/images/scrollbar.png) -28px -9px no-repeat;
}
.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 9px;
width: 14px;
background: url(/images/scrollbar.png)  -28px 0px no-repeat;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
height: 9px; background-color: #FFFFFF;
}
.hscrollerbar {
height: 9px; background-color: #FFFFFF;
}

.vscrollerbar, .hscrollerbar {
/* paddings of these elements will decide how far the scrollbar will stop in both ends, and are not actually
used for styling, and are set to 0 by the script, here we will set them the size of our faux arrows */
padding: 9px;
z-index: 2;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 16px;
height: 10px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #FFFFFF;
}

#twitter_feed {
/* Typical fixed height and fixed width example */
width: 269px;
height: 290px;
text-align:left;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color: #FFFFFF;
margin:0;
padding:0;
}
#twitter_feed a {
	text-decoration:none;
}
#twitter_feed a:hover{
	text-decoration:underline;
}
#twitter_feed ul{
	margin:0; 
	padding:0;
}
#twitter_feed li{
	font-size:11px;
	line-height:14px;
	list-style-type: none;
	padding:10px 10px 0 10px;
	margin:0;
}
/* Scroll Bar Master Styling Ends Here */

