﻿.RatingTable
{
	padding:5px;
	background-color:#EEEEEE;
	border:2px solid #E1E1E1;
}
.RatingTableCell
{
	padding:5px;
	text-align:center;
}
.RatingCount
{
	font-size:2.2em;
}

/*-- Unselected styles --*/
.default_up_button
{
	background-color:#EEEEEE;
	border: solid, 0px, black;
}
.default_down_button
{
	background-color:#EEEEEE;
	border: solid, 0px, black;
}
.default_ignore_button
{
	background-color:#EEEEEE;
}

/*-- Current Selection --*/
/* css to apply to the img and td to designate the users current selection */
/*-- IMG (only TD below is currently implemented--*/
.vote_up_button_img
{
	background-color: Green;
}
.vote_down_button_img
{
	background-color: Red;
}
.vote_ignore_button_img
{
	background-color: Green;
}
/*-- TD --*/
.vote_up_button_td
{
	background-color: Green;
}
.vote_down_button_td
{
	background-color: Red;
}
.vote_ignore_button_td
{
	background-color: Gray;
}
/*-- End Current Selection --*/




/*------*/
.RatingBlock
{
	border:1px solid red;
	width:60px;
}