#wrapper #menuatas #nav {
		margin:0; 
		padding:0; 
		list-style:none;
		background: url(images/bg_menu.gif);
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#wrapper #menuatas  #nav li {
			font-size:9pt;
			font-family:arial;
			float:left; 
			display:block; 
			width:90px; 
			background: url(images/bg_menu.gif);
		
			position:relative;
			z-index:500; 
			margin:0 1px;
		}
		
		/* this is the parent menu */
		#wrapper #menuatas #nav li a {
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:700;  
			height:21px;
			
			text-decoration:none; 
			color: #FFFFFF; 
			text-align:left; 
			color: #FFFFFF;
					}

		#wrapper #menuatas #nav li a:hover {
			color:#fff;
			text-decoration:none; 
			background:#009933;
		}
	
		/* you can make a different style for default selected value */
		#wrapper #menuatas #nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#wrapper #menuatas #nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#wrapper #menuatas #nav ul li {
			width:150px; 
			float:left; 
			border-top:1px solid #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#wrapper #menuatas #nav ul a {
			font-size:8pt;
			display:block;  
			height:12px;
			padding: 8px 5px; 
			color: #FFFFFF;
		}
		
		#wrapper #menuatas #nav ul a:hover {
			text-decoration:none;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */

/* Galery slideshow */

body{
	font-family:arial
}

.clear {
	clear:both
}

#gallery {
	position:relative;
	top:5px;
	height:355px
}
	#gallery a {
		float:left;
		position:absolute;
	}
	
	#gallery a img {
		border:none;
	}
	
	#gallery a.show {
		z-index:500
	}

	#gallery .caption {
		z-index:600; 
		background-color:#000; 
		color:#ffffff; 
		height:75px; 
		width:100%; 
		position:absolute;
		bottom:0;
	}

	#gallery .caption .content {
		margin:2px 0 0 2px;
	}
	
	#gallery .caption .content h3 {
		margin:0;
		padding:0;
		color:#1DCCEF;
	}
	


