/* Styles for Expanding Box */

DIV.ExpandingBoxHeader {
	  margin-bottom: 2px;
	  border-style: solid;
    border-color: #19194B;
    border-width: 1px;
    cursor: default;
    width:99%;
}

DIV.ExpandingBoxHeader.Expanded {
   	margin-bottom: 0px;	
    border-width: 0px;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
}

DIV.ExpandingBoxHeader TABLE {
	  width:100%;
    font-family: Verdana, Helvetica, Arial;
    font-size: 10pt;
    background-color:#cfcff0;
    font-style:normal;	  
    font-weight: bold;
	  height: 14px;	
}

DIV.ExpandingBoxHeader TD.Label {
    padding-left: 4px;
}

DIV.ExpandingBoxHeader TD.Icon {
	background-image: url('../images/icons/expand_open.gif'); 
	background-repeat: no-repeat; 
	background-position-x: right;
	background-position-y: 1px;
	width:16px;
	cursor: pointer;
  cursor: hand;
}

DIV.ExpandingBoxHeader.Expanded TD.Icon {
	background-image: url('../images/icons/expand_close.gif');
}

DIV.ExpandingBox {
    background-color:#f2f2f2;
	  margin-bottom: 2px;
	  border-style: solid;
    border-color: #19194B;
    border-width: 0px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    cursor: default;
    width:99%;
}

