/*
 * Social Network Sharing API Integration Kit
 * from Interfolio - www.interfolio.com
 * 
 * Special thanks to Dominic O'Connor who originally developed this for internal use
 * 
 * 
 */

/* Suckerfish-style drop down menu styles */
#shareMenu {
	font-family: sans-serif;
	position: relative;
}
/* share menu trigger link off/inactive state*/
#shareMenu .share a,
#shareMenu .share a:link, 
#shareMenu .share a:visited {
	/* put styles for the menu trigger (off state) here */
	text-decoration: none;
	line-height: 1.5em;
}

/* share menu trigger link on/hover state */
#shareMenu .share a:hover, 
#shareMenu .share a:active {
	/* put styles for the menu trigger (hover state) here */
	text-decoration: none;
}
 
/* top level menu/trigger button and its children */ 	
ul#shareMenu,
ul#shareMenu * {
	left: 0;
	list-style-type: none;
	list-style-image: none;
	list-style-position: outside;
	margin: 0;
	padding: 0;
	position:relative;
	top: 0;
}

/* top level menu/trigger button */ 
ul#shareMenu li {
	padding: 0 0 0 24px;
	background-image: url(/images/icons/icon_rightarrow.png);
	background-repeat: no-repeat;
	background-position: center left;
}

ul#shareMenu ul {
	position: absolute;
	top: 1.3em; /* needs to match #shareMenu line height and li.share ul top */
	width: 15em; /* width of hover menu */
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}
ul#shareMenu ul li {
	width: 100%;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

/* nested menu item styles */
li.share ul {
	display: none;
	position: absolute;
	top: 1em;/* needs to match #shareMenu line height and ul#shareMenu ul top */
	margin: 0;
	padding: 0;
	background-color: #fff;
	border: 1px solid #cfcfcf;
}

li.share:hover ul {
	display: block;
}

ul#menuItems {
	clear:both;
}

ul#menuItems a {
	display: block;
	width: auto;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}

/* menu item link styles */
/* default/off state */
ul#menuItems a:link,
ul#menuItems a:visited {
	background-color: #fff;
	text-decoration: none;
}
/*hover/on state*/
ul#menuItems a:hover,
ul#menuItems a:active {
	background-color: #cfcfcf;
	text-decoration: underline;
}

#shareMenu img {
	border: none;
	/*display: none;  set to display if images are to be used */
}

