/*body {
	margin: 0px;
	padding: 0px;
	background: #fff;
	position: absolute;
	width: 100%;
	height: 100%;
}*/
#screen {
	position: relative;
	margin:auto;
	left:3%;
	top: 10%;
	width: 600px;
	height:700px;
	background: #fff;
	overflow:hidden;
}
.panel {
	position: relative;
	float: left;
	width: 21%;
	height: 16%;
	margin: 1%;
	overflow: hidden;
}
.imgPanel {
	position: absolute;
	border: none;
	text-decoration: none;
}
#comment{
	margin:500px 0px 0px 0px;
	padding:0px 0px 0px 200px;
}




/* 2010 Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #AAAAAA;
	-webkit-box-shadow:0 0 3px #AAAAAA;
	box-shadow:0 0 3px #AAAAAA;

	/* CSS3 Rounded Corners */

	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
	border-bottom-left-radius:4px;

	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px;

	border:1px solid white;

	background:url(img/panel.jpg) repeat-x bottom center #ffffff;

	/* The width of the gallery */
	width:600px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:600px;

	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:600px;
	overflow:hidden;
}

.slide{
	position: relative;
	float:left;
	width: 600px;
	height: 600px;
	text-align:center;
}

.slide .comment{
	position: absolute;
	top: 540px;
	left: 0;
	width: 235px;
	height: 60px;
	padding: 5px 10px;
	color: #fff;
	background: #000;
	font-size: 85%;
	text-align: left;
	line-height: 1.5;
	opacity: 0.5;
	-moz-opacity: 0.5;
	filter:alpha(opacity=50);
	
}

#menu{
	/* This is the container for the thumbnails */
	height:60px !important;
	padding-bottom: 10px;
}

#menu ul{
	margin:0px;
	padding:0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:55px;
	display:inline-block;
	list-style:none;
	height:60px;
	overflow:hidden;
}

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(img/pic_bg.png) repeat;
}

#menu li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(img/active_bg.png) no-repeat;
}

#menu li.act a{
	cursor:default;
}

#menu .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(img/divider.png) no-repeat right;
}

#menu li a{
	display:block;
	background:url(img/divider.png) no-repeat right;
	height:50px;
	padding-top:10px;
}

#menu a img{
	border:none;
	width: 50px;
	height: 50px;
}