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

#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

img.borderstroke { margin-bottom:10px;}

#nav li#menu {
	width: 288px;
	height: 288px;
	background-image: url(../images/img_home_menu.jpg);
	background-repeat: no-repeat;
	background-position: center;	
	padding:5px; border:1px solid #CCC;
}

#nav li#menu_sub {
	width: 288px;
	height: 110px;
	background-image: url(../images/img_sub_menu.jpg);
	background-repeat: no-repeat;
	background-position: center;	
	padding:5px; border:1px solid #CCC;
}

#nav li#experience {
	width: 288px;
	height: 288px;
	background-image: url(../images/img_home_experience.jpg);
	background-repeat: no-repeat;
	background-position: center;
	padding:5px; border:1px solid #CCC;
}

#nav li#experience_sub {
	width: 288px;
	height: 110px;
	background-image: url(../images/img_sub_experience.jpg);
	background-repeat: no-repeat;
	background-position: center;
	padding:5px; border:1px solid #CCC;
}

#nav li#philosophy {
	width: 288px;
	height: 288px;
	background-image: url(../images/img_home_philosophy.jpg);
	background-repeat: no-repeat;	
	background-position: center;	
	padding:5px; border:1px solid #CCC;
}

#nav li#philosophy_sub {
	width: 288px;
	height: 110px;
	background-image: url(../images/img_sub_philosophy.jpg);
	background-repeat: no-repeat;	
	background-position: center;	
	padding:5px; border:1px solid #CCC;
}

#nav li { /* all list items */
	float: left;
	position: relative;
	width: 300px;
}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	margin-top: 294px;
	left: 0;
	background-color: #fff;
	opacity: .90; /* most browsers */
	filter: alpha(opacity=90); /* IE 7 */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; /* IE 8 */

	
	
}

#nav li ul.sub {
	display: none;
	position: absolute;
	margin-top: 116px;
	left: 0;
}

#nav li ul li {
	border-bottom: 1px solid #ccc;
	padding: 8px 0px 8px 0px;
	display: block;
	margin-left: 8px;
	margin-right: 8px;
	width: 284px;
}

#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#nav li:hover ul, #nav li.over ul, #nav li:sfhover ul { /* lists nested under hovered list items */
	display: block;
	cursor: pointer;
}

#nav li:hover {
	cursor: pointer;	
}

#nav a:link, #nav a:visited {color: #a7a7a7; font-weight: bold; text-decoration: none; font-family:Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 12px;}
#nav a:hover, #nav a:active {color: #d1561e; text-decoration: none;}

