/* CSS Document */



#items

{

	float: left;

	width: 600px;

	border: 1px solid #f9f9f9;

}

 

#cart

{

	float: right;

	width: 181px;

	background-color: #fff;

	border: 1px solid #f9f9f9;

	padding-bottom: 50px;

}

 

#cart .info

{

	color: #444;

/*	font-size: 0.9em;

	text-align: center;

	font-weight: bold;*/

 

}

 

.item {

	float: left;

	position: relative;

	width: 170px;

	height: 175px;

	border: 1px solid #eee;

	margin: 5px;

	border-right: 2px solid #ddd;

	border-bottom: 2px solid #ddd;

	background-color: #fff;

	background-position: left top;

	background-repeat: no-repeat;

	cursor: default; /*cursor: pointer;*/

}

#cart .item {

	width: 75px;

	height: 75px;

	margin: 5px;

	background-position: -40px -22px;

	border-width: 1px;

	cursor: default;

}

 

.item span

{

	position: absolute;

	bottom: 0;

	left: 0;

/*	font-size: 0.8em;

	font-weight: bold;*/

	width: 100%;

	text-align: center;

 

}




