/***************************************************************************
 * Drop Item Styling
*****************************************************************************/

.dropItem{
	margin:20px;
	border:2px solid #e3e3e3;
	/*CSS 3, not fully supported yet!*/
	-moz-border-radius:10px;
	-webkit-border-top-left-radius: 0px;
	-khtml-border-top-left-radius: 0px;	
	-moz-border-radius-topleft: 0px;
	border-top-left-radius: 0px;
}
.dropItem:nth-child(even){
	background: transparent url('/dropMenu/images/dropBackground.png') no-repeat;	
}
.dropItem .title{
	background-color:#e3e3e3;
	padding:10px;
}
.dropItem .title:hover{
	text-decoration:underline;
	cursor:pointer;
}
.dropItem .content{
	border-top:2px solid #e3e3e3;
}
.paddedContent{
	padding:10px;	
}

.dropItem .title{
	padding-left:20px;
	padding-top:5px;
	padding-bottom:5px;
	background:transparent url('/dropMenu/images/expand.png') 2px 5px no-repeat;
}
.dropItem .expanded{
	background-image:url('/dropMenu/images/contract.png');
}
