.ddpanel .ddpanelcontent{ /*CSS for "content" DIV of Drop Down Panel*/
color: white;
background: #fff; /*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 */
position: relative;
}

.ddpanel .ddpaneltab{ /*CSS for "toggle" tab DIV of Drop Down Panel*/
position: relative;
right:10px;
top:-5px;
}

.ddpanel .ddpaneltab a{ /*"toggle" tab related CSS*/
float: right;
color: white;
background: #000;/* url('../images/toggleleft.gif') no-repeat left bottom;*/ /*background of toggle tab*/
text-decoration: none;
border-radius: 0 0 5px 5px;
}

.ddpanel .ddpaneltab a span{ /*"toggle" tab related CSS*/
float: left;
display: block;
background: #fff;/* url('../images/toggleright.gif') no-repeat right bottom;*/
cursor: pointer;
border-radius: 0 0 5px 5px;
}

.ddpanel .ddpaneltab a span img.pointerimage{ /*CSS for pointer image within toggle tab*/
padding:0 10px;
}

.ddpanel .ddpaneltab a:hover{ /*"toggle" tab related CSS*/
background: #fff; /*background of toggle tab onMouseover*/
opacity: .7
}

.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;
}