/*ML: Taken from pmcbase1.css
Ideally this is shared, if update to pmcbase1, we got a problem*/

/* ================== Tileshop related image panel properties starts */
div.tileshop-panel-canvas
{display: 	block;
max-width: 	100%;
margin: 	auto;
border: 	solid 1px gray;
zoom: 		1; /*do not remove, it needs to calculate clientWidth property for IE6*/
*width:		expression( (this._w = this.clientWidth), (this._max_width && this._w > this._max_width ? this.style.width = this._max_width + 'px' : 0), "auto"); /*special case, which emulates max-width 100% and does not expand upto 100% if the width of the image (stored in @_max_width) narrower then 100% of parent element; fix for IE6*/
}

.tileshop-panel-canvas a
{display: 	block;
zoom: 		1; /*do not remove, it needs to calculate clientWidth property for IE6*/
}

.tileshop-panel-bar
{background-color: #ECF0F4;
line-height: 	2em;
text-align: 	center;
margin: 	auto;
max-width:	100%;
margin: 	auto;
}

img.tileshop-image
{max-width: 	100%;
zoom:   	1; /*do not remove, it needs to calculate clientWidth property for IE6*/
border: 	none;
cursor: 	pointer; 
cursor: 	hand; 
cursor: 	url(http://www.ncbi.nlm.nih.gov/corehtml/jsutils/cur/zoomin.cur), pointer;
*width:		expression( (this._w = this.clientWidth), (this.style.width = 1 + 'px'), (this._w > this.parentNode.clientWidth ? this.style.width = this.parentNode.clientWidth + 'px' : this.style.width = this._w + 'px'), "auto" ); /*emulates max-width: 100% for IE6*/
}
/* ================== Tileshop related image panel properties ends */
