@charset "UTF-8";



nav {
	width: 750px;
	margin: 100px auto 0 auto;
}
#inspiration, #web, #other, #projects {
	width: 150px;
	margin-right: 50px;
	position: relative; /* parent container for absolute positioning of ul.submenu */
	float: left;	
}

#projects {
	margin: 0;
}

/*IMAGES*/

.inspiration-icon, .resources-web-icon, .resources-other-icon,.resources-projects-icon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    background-image: url(../images/project1.png);
}

.inspiration-icon {
	background-position: 0px 0px;
	transition: all 0.5s linear;
}

.inspiration-icon:hover {
	background-position: 0px -150px;
}

.resources-web-icon {
	background-position: 300px 0;
	transition: all 0.5s linear;
}
.resources-web-icon:hover {
	background-position: 300px -150px;
}

.resources-other-icon {
	background-position: 450px 0;
	transition: all 0.5s linear;
}
.resources-other-icon:hover {
	background-position: 450px -150px;
}

.resources-projects-icon {
	background-position: 150px 0;
	transition: all 0.5s linear;
}
.resources-projects-icon:hover {
	background-position: 150px -150px;
}

/*DROPDOWN MENUS*/

li a {
	display: block;
	width: 140px;
	padding-left: 10px;
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size:.8em;
	text-transform: uppercase;
	line-height: 32px;
	background-color: #ffc3dc;
	color: white;
	border-bottom: 2px dotted #ffdde7;
}

/*TOP MENU ITEMS*/

a.inspirational {
	background-color: #ffc3dc;
	border-bottom: none;
}

a.web {
	background-color:#ffc3dc;
	border-bottom: none;
}


a.other {
	background-color: #ffc3dc;
	border-bottom: none;
}
 
a.projects {
	background-color: #ffc3dc;
	border-bottom: none;
}


/*HIDE SHOW MENU*/

ul.submenu {
	position: absolute;
	left: -9000em;
	height: 0;
	transition: height 1.5s ease-in-out;
	overflow: hidden;
}

.topmenu li:hover ul.submenu {
	left: 0;
	height: 500px;
}

/*SUBMENU HOVER*/

ul.submenu li a:hover {
	background-color: #c8a3ae;
	border-bottom: 2px solid #c8a3ae;
}

/*TOP MENU ITEM SUSTAINED HOVER*/

li:hover a.inspirational, li:hover a.web, li:hover a.other, li:hover a.projects {
	background-color: #fd95b5;
	
	
	
	
	