/* CSS Document */

<!--
 a.beyaz:link {
	color: #FFFFFF;
		text-decoration: none;
}
 a.beyaz:visited {
	color: #FFFFFF;
		text-decoration: none;
}

a.siyah:link {
	color: #000000;
		text-decoration: none;
}
 a.siyah:visited {
	color: #000000;
		text-decoration: none;
}
-->
#mainContainer{
	
	margin:0 auto; 	/* Center alignment */
	text-align:left;
	background-color:#FFF;
}
#leftColumn{	/* Left column of the page */
	width:600px;
	float:left;
	padding-right:5px;
}

#rightColumn{	/* right column, i.e. shopping cart column */
	width:240px;
	float:right;
	height:600px;
	background-color:#DDD;
	padding-right:10px;
}
#shopping_cart{	/* Shopping cart */
	margin:3px;
	padding:3px;
}
.clear{	
	clear:both;
}

.product_container{	/* Div for each product */
	width:150px;
	margin-right:0px;
	float:left;
	margin-top:0px;
	padding:0px;
	font-weight:bold;
}

.sliding_product img{	/* Float product images */
	float:left;
	margin:0px;
}
img{	/* No image borders */
	border:0px;
}


