/*======================
    TABLE
========================*/
/*
border-collapse makes combines two lines into one so that you
don't get extra thick lines. 
*/
table
{
	border-collapse:collapse;
	border:solid 0px #000;
}
/*
Search engines place extra emphasis on th, so make sure
that every table uses them. 
*/
table th
{
	background:#ff8401;
	padding:0px;
	border:solid 1px #000;
	border-bottom-width:2px;
	color:#999999;
	font-weight:700;
}
table td
{
	padding:0px;
	border:solid 0px #000;
}
/*======================
   IMAGE
========================*/
img
{
	border:solid 0px #bdbdbd;
}
/*======================
   EVENTS
========================*/
/*
Each event should have some space below it
*/
.event
{
	float:left;
	margin-bottom:1px;
}
/*
Each event div has a title with a calendar icon. 
*/
.event span 
{
	background:url(../images/calendar.png) no-repeat;
	display:block;
	padding: 2px 0 0px 20px;
	font-size:10px;
	color:#717171;
}
.event a
{
	display:block;
	margin-bottom:1px;
}
/*
We're going to make the news text smaller and 
lighter because we want more emphasis on the title. 
*/
.event p
{
	font-size:10px;
	color:#999999;
}
/*======================
 	ITEM
========================*/
/*
Each item is separated by plenty of padding and a soft gray line. 
*/
.item
{
	float:left;
	width:705px;
	padding:10px 0 5px 0;
	border-bottom:solid 1px #dfdfdf;
	margin: 10px 2px 2px 2px;
	height: auto;
	color: #FFFFFF;
	
}
/*
The .last element removes the soft gray border. 
*/
.last{ border-bottom:0 }
/*
This positions the icon and makes sure that only certain 
dimensions are displayed. 
*/
.item .icon
{
	float:left;
	width:120px;
	margin: -10px 0px 5px 0px;
	background-color: #FF8401;
	text-align: center;
	border: 1px;
	border-color: #FF8401;
	padding: 1px;
}
/*
This removes any styling that the images might inherit 
from the global image style set in typography.css. 
*/
.item .icon img{ border: 0 }
/*
Even though this class doesn't need styling it's good
to declare it anyway for the sake of completeness. 
*/
.item .info
{

}
.item .rank {
	float:left;
	width:45px;
	margin: 0 0px 0 1px;
	text-align: center;
	background-color: #FF8401;
}
.item .rates {
	float:left;
	width:65px;
	margin: 0 1px 0 0px;
	text-align: center;
	background-color: #FF8401;
}
.item .green {
	float:left;
	width:65px;
	margin: 0 1px 0 0px;
	text-align: center;
	background-color: #9EC026;
}
.item .ratesorder {
	float:left;
	width:100px;
	margin: 0 1px 0 0px;
	text-align: center;
	background-color: #FF0000;
}

