@charset "utf-8";
/* CSS Document */

/* Logo Body */
	ul#logo {
		width:100px;
		height:140px;
		list-style:none;
		float:left;
		padding:0;
	}
	
	/* Float LI Elements - horizontal display */
	ul#logo li {
		float:left;
	}
	
	/* Link - common attributes */
	ul#logo li a {
	background:url(logo.png) no-repeat scroll top left;
	display:block;
	height:140px;
	position:relative;
	visibility: inherit;
	float:left;
	}
	
	/* Specify width and background position attributes specifically for the class: "logoclick" */
	ul#logo li a.index {
		width:200px;
		background-position:-20px 0px;
		float:left;
	}
	
	/* Span (on hover) - common attributes */
	ul#logo li a span {
		background:url(logo.png) no-repeat scroll bottom left;
		display:block;
		top:0;
		left:0;
		height:100%;
		width:100%;
		z-index:100;
		float:left;
	}
	
	/* Span (on hover) - display pointer */
	ul#logo li a span:hover {
		cursor:pointer;
	}
	
	/* Shift background position on hover for the class: "logoclick" */
	ul#logo li a.index span {
		background-position:-20px -153px;
	}