
.infoContainer{width:100%; margin-top:4px;}
/*********************************
 Mobile Layout: 480px and below. 
*********************************/
@media only screen and (max-width: 480px) {
	.fieldNames{font-weight:bold; width:100px;}
	.mobileExtrasBox{display:none;}
	.mobileExtrasDropDown{display:block;}
}

/******************************************************************** 
 Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. 
*********************************************************************/
@media only screen and (min-width: 481px) and (max-width: 769px) {
	.fieldNames{font-weight:bold; width:140px;}
	.mobileExtrasBox{display:block;}
	.mobileExtrasDropDown{display:none;}
}


/**************************************************************************************************** 
 Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. 
****************************************************************************************************/
@media only screen and (min-width: 769px) {
	.fieldNames{font-weight:bold; width:140px;}
	.mobileExtrasBox{display:block;}
	.mobileExtrasDropDown{display:none;}
}