/* Stylesheet for square feature boxes 
	**********************************************************************************************************
	CUSTOMIZE:
   .featureBox {
      border-color: #003366;
   }
	.featureBoxTitle { 
     color: #003366; 
     background-color: #e6e6e6;
     border-bottom-color: #003366;
   }   
	**********************************************************************************************************
*/
.featureBox {
	width: 225px;
	float: right;
	clear: right;
	margin-left: 1em;
	margin-bottom: 1em;
	border-width: 1px;
	border-style: solid;
	border-color: #C00;
}
.featureBoxTitle {
	border-bottom-color: #C30;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	color: #000;
	background-color: #e6e6e6;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	padding: 5px 10px;
}
.featureBoxContent { 
	padding: 10px;
   font-size: 11px;
}
.featureBoxContent > p { /* first paragraph */
  margin-top: 0;
}

@media print {
	.featureBox {
		border: 1px solid #000;
	}
	.featureBoxTitle {
		border-bottom: 1px solid #000;
		color: Black;
		background-color: White;
	}
}
