/* ########### CORNERS ################## */
.photo_container
{
    margin:0px;
    padding:0px;
	position: relative;
	top: 0px;
	left: 0px;
	overflow: hidden;
}

.photo_container img
{
    margin:0px;
    padding:0px;
}

.lt_corner
{
	width:10px;
	height:10px;
	overflow: hidden;
	position: absolute;
	top:-1px;
	left:0px;

}

.lt_corner img
{
	display: none;
}
.lt_corner > img
{
	display: block;
}

.rt_corner
{
	width:10px;
	height:10px;
	overflow: hidden;
	position: absolute;
	top:-1px;
	right:-1px;

}

.photo_container > .rt_corner
{
	right:0px;
}

.rt_corner img
{
	display: none;	
}
.rt_corner > img
{
	display: block;
}

.lb_corner
{
	width:10px;
	height:10px;
	overflow: hidden;
	position: absolute;
	color:white;
	bottom: 1px;
	left:0px;

}

.photo_container > .lb_corner
{
	bottom: 0px;
}

.lb_corner img
{
	display: none;
}
.lb_corner > img
{
	display: block;
}

.rb_corner
{
	width:10px;
	height:10px;
	overflow: hidden;
	position: absolute;
	bottom: -1px;
	right:-1px;

}

.photo_container > .rb_corner
{
	bottom: 0px;
	right:0px;
}

.rb_corner img
{
	display: none;
}
.rb_corner > img
{
	display: block;
}
/* ############ CORNERS END ################## */
