/**
* CSS nhm
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
html {
    overflow: hidden;
}

body {
    font-size: 11px;
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
	background: white;
}

#menu {
    width: 180px;
    overflow: hidden;
    top: 8px;
    bottom: 0;
	left: 0;
    position: fixed;
    height: 100%;
	background-color: white;
	line-height: 12px;
}

#content {
    height: 100%;
    margin: 0 0 0 215px;
    top: 0;
}

* html div#menu {
    width: 20%;
}

* html div#content {
    height: 100%;
    width: 80%;
    overflow: auto;
    position: absolute;
    margin: 0;
}

div.img {
	float:left;
	height:150;
	margin:0 2px 50px;
	text-align:left;
}

div.desc {
	color:#000000;
	font-family:Helvetica,Arial,sans-serif;
	font-size:10px;
	line-height:12px;
	margin:2px;
	text-align:left;
	text-decoration:none;
	text-transform:none;
}

img.png {
	background-image: expression(
		this.runtimeStyle.backgroundImage = "none",
		this.runtimeStyle.filter =
		"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src +
		"', sizingMethod='image')",
		this.src = "/path/to/transparent.gif"
	);
}