@charset "utf-8";

/* These are just the general site styles. 
   It has nothing to do with ImageFlow
========================================== */
@media screen, projection, print {
	html {
		height:100%;
		width:100%;
	}
	body {
		color:#fff;
		background:url('bg.png')repeat;
		font-size:0.8em;
		font-family:Segoe UI, Segoe UI Symbol;
		line-height:1.4em;
		padding:1em 0;
		margin:0;
	}
	a {
		color:#fff;
	}
	
	h1 {
		font-size:2.2em;
		text-align:center;
		margin:0.4em 0 1.3em 0;
	}
	
	#wrapper{
		width:950px;
		height:50px;
		margin:0px auto;
		padding:20px;
		}
	
	#menu{
		position:absolute;
		width:100%;
		height:44px;
		right:0px;
		top:0px;
		z-index:1;
		}
		
	#menu ul{
		list-style:none;
		font-family:Tahoma, Verdana, sans serif;
		font-size:13px;
		float:left;
		}
		
	#menu ul li{
		float:left;
		margin-left:25px;
		margin-right:5px;
		margin-bottom:1px;
		}
		
	#menu li div{
		height:20px;
		width:100%;
		color:white;
		text-align:center;
		transition:all 0.5s ease;
		-webkit-transition:all 0.5s ease;
		-moz-transition:all 0.5s ease;
		-o-transition:all 0.5s ease;
		}
		
	#menu li div:hover{
		background-color:#92ca8e;
		color:#000;
		}
		
	#menu li a{
		text-decoration:none;
		font-weight:bold;
		}
}