﻿/* item grid styles */

.ItemGrid table
{
	border-collapse: separate;
    border-spacing: 2px;
}

.ItemGrid th, .ItemGrid td
{
	padding: 2px 5px 2px 5px;
}

.ItemGrid th
{
	background-color: #273d4d;
	color: #ffffff;
	font-weight: normal;
	font-size: 10px;
	text-transform: uppercase;
	height: 22px;
}

.ItemGrid td
{
	font-size: 10px;
	height: 25px;
}

.ItemGridOddRows
{
	/* background-color: #ffffe0; */
}

.ItemGridEvenRows
{
	background-color: #dddddd;
}

.ItemGridSelection td
{
	background-image: url("../images/down_arrow.gif");
	background-position: center;
	background-repeat: no-repeat;
}

.ItemGridSelection td:hover
{
	background-image: url("../images/down_arrow_hover.gif");
}


td.NoEdit, td:hover.NoEdit
{
	background-image: none;
}

td.SelectedForEditing, td:hover.SelectedForEditing
{
	background-image: url("../images/down_arrow_selected.gif");
}

