/* include this after ext-all.css
   adds specific styling changes to extjs for amerisave environment */

/* override ExtJS mask color, to make it darker

		original color was #CCCCCC

 	 and original opacity was:

		-moz-opacity: 0.5;
		opacity: .50;
		filter: alpha(opacity=50);
*/
.ext-el-mask
{
  background-color: #000;
  -moz-opacity: 0.7;
  opacity: .70;
  filter: alpha(opacity=70);
}

/*  make ExtJS window blend in better  
original background color is #DFE8F6 */

.x-window-mc {
  background-color:#fff;
}

/* hide bwrap child to make window content look nicer in all browsers */
.amerisave-hide-bwrap div.x-panel-bwrap{
	display:none;
}