/* CSS Document */

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
z-index: 1000;
position:relative;
text-align:left;
}

/*Top level list items*/
.suckertreemenu ul li{
	position: relative;
	display: inline;
	float: left;
	/*background-color: #FFFFFF;*/ /*overall menu background color*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	height: 14px;
	font-weight: bold;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: 80px; /*Width of top level menu link items*/
	padding: 0px 6px;
	text-decoration: none;
	color: #FFFFFF;
	margin: 0px;
}

.suckertreemenu ul li#portfoliohere {
	font-weight: bold;
	background-color: #F0F1E8;
	width: 55px;
	padding: 0px 6px;
}

/* Top level ID's for width */
.suckertreemenu ul li a:hover{
	color:#FA9700;
}
.suckertreemenu ul li#artistInfo {
	display: block;
	width: 70px;
	/* padding: 3px 6px 0px; */
	padding: 0px 6px;
	margin: 0px;
	color: #FFFFFF;
}
.suckertreemenu ul li#currentWork {
	width: 90px;
	padding: 0px 6px;
	color: #FFFFFF;
}
.suckertreemenu ul li#currentWorkhere {
	font-weight: bold;
	width: 90px;
	padding: 0px 6px;
}
.suckertreemenu ul li#home a{
	width: 39px;
}
.suckertreemenu ul li#blog a{
	width: 29px;
}
.suckertreemenu ul li#bloghere {
	font-weight: bold;
	width: 29px;
}
.suckertreemenu ul li#news a{
	width: 71px;
}
.suckertreemenu ul li#newshere {
	font-weight: bold;
	width: 71px;
	color:#FA9700;
	padding-left: 5px;
	padding-right: 5px;
}
.suckertreemenu ul li#contact a{
	width: 85px;
}
.suckertreemenu ul li#contacthere {
	font-weight: bold;
	width: 85px;
	color:#FA9700;
	padding-left: 5px;
	padding-right: 5px;
}
.suckertreemenu ul li ul li#statement a{
	width: 65px;
	padding: 3px 6px 0px;
	font-weight: normal;
}
.suckertreemenu ul li#statementhere {
	width: 75px;
	padding: 3px 6px 0px 11px;
	font-weight: bold;
	color:#FA9700;
}
.suckertreemenu ul li ul li#biography a{
	width: 65px;
	padding: 3px 6px 0px;
	font-weight: normal;
}
.suckertreemenu ul li#biographyhere {
	width: 65px;
	padding: 3px 6px 0px 11px;
	font-weight: bold;
	color:#FA9700;
}
.suckertreemenu ul li ul li#africa a{
	width: 65px;
	padding: 3px 6px 0px;
	font-weight: normal;
}
.suckertreemenu ul li#africahere {
	width: 65px;
	padding: 3px 6px 0px 11px;
	font-weight: bold;
	color:#FA9700;
}
.suckertreemenu ul li ul li#america a{
	width: 65px;
	padding: 3px 6px 0px;
	font-weight: normal;
}
.suckertreemenu ul li#americahere {
	width: 65px;
	padding: 3px 6px 0px 11px;
	font-weight: bold;
	color:#FA9700;
}
.suckertreemenu ul li ul li#asia a{
	width: 85px;
	padding: 3px 6px 0px;
	font-weight: normal;
}
.suckertreemenu ul li#asiahere {
	width: 105px;
	padding: 3px 6px 0px 11px;
	font-weight: bold;
	color:#FA9700;
}

.suckertreemenu ul li ul li a:hover{
	color:#FA9700;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
	left: 5px;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	width: 110px;
	background-image: url(../images/general/navBG.png);
	background-repeat: repeat-y;
	background-position: left top;
	padding-bottom: 5px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
	display: list-item;
	float: none;
	padding-bottom: 3px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0px;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block;
	width: 85px; /*width of sub menu levels*/
	color: #FFFFFF;
	text-decoration: none;
	margin-left: 5px;/* border: 1px solid #ccc; */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 0px;
}

.suckertreemenu ul li a:hover{
	background-image: url(../images/general/orangeArrow.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: url(../images/general/emptyArrow.gif) no-repeat left center;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: url(../images/general/orangeArrow.gif) no-repeat left center;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%;}
* html .suckertreemenu ul li a { float: left; height: 1%;}
* html .suckertreemenu ul li ul li { float: left;}
/* End */


