.ddpanel .ddpanelcontent{ /*CSS for "content" DIV of Drop Down Panel*/
color: white;
background: black; /*background of Drop Down Panel*/
/*Do NOT add any "padding" or "margin" properties here! Any padding/margin should be added to your content's container within this DIV instead */
}

.ddpanel .ddpaneltab{ /*CSS for "toggle" tab DIV of Drop Down Panel*/
margin-right: 20px;
font: normal 12px Arial;
}

.ddpanel .ddpaneltab a{ /*"toggle" tab related CSS*/
float: right;
color: white;
background: black url(images/toggleleft.gif) no-repeat left bottom; /*background of toggle tab*/
text-decoration: none;
letter-spacing: 1px;
}

.ddpanel .ddpaneltab a span{ /*"toggle" tab related CSS*/
float: left;
display: block;
background: transparent url(images/toggleright.gif) no-repeat right bottom;
padding: 1px 12px 4px 13px;
cursor: pointer;
}

.ddpanel .ddpaneltab a span img.pointerimage{ /*CSS for pointer image within toggle tab*/
margin-top: 2px;
margin-left: 5px;
}

.ddpanel .ddpaneltab a:hover{ /*"toggle" tab related CSS*/
background-color: navy; /*background of toggle tab onMouseover*/
}

.ddpanel .ddpaneltab a:active, .ddpanel .ddpaneltab a:focus{ /*"toggle" tab related CSS*/
outline: 0;
}

.ddpanel .ddpaneltab a:hover span{ /*"toggle" tab related CSS*/
background-color: transparent;
}

.arrowlistmenu{
		width: 700px; /*width of accordion menu*/		
		}
		
		.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
		font: bold 16px Arial;
		color: #5585cd;
		/*background: black url(images/titlebar.png) repeat-x center left;*/
		margin-bottom: 1px; /*bottom spacing between header and rest of content*/
		text-transform: uppercase;
		padding: 0px 0 0px 0px; /*header text is indented 10px*/
		cursor: hand;
		cursor: pointer;
		}
		
		.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
		/*background-image: url(images/titlebar-active.png);*/
		}
		
		.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
		list-style-type: none;
		margin: 0;
		padding: 0;
		margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
		}
		
		.arrowlistmenu ul li{
		padding-bottom: 2px; /*bottom spacing between menu items*/
		font-size:12px;
		color:#1c446f;
		}
		
		.arrowlistmenu ul li a{
		color: #A70303;
		background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
		display: block;
		padding: 2px 0;
		padding-left: 19px; /*link text is indented 19px*/
		text-decoration: none;
		font-weight: bold;
		border-bottom: 1px solid #dadada;
		font-size: 12px;
		font:arial;
		}
		
		.arrowlistmenu ul li a:visited{
		color: #A70303;
		}
		
		.arrowlistmenu ul li a:hover{ /*hover state CSS*/
		color: #A70303;
		background-color: #F3F3F3;
		}		