diff --git a/src/java/DmWebPortal/web/resources/css/portal.css b/src/java/DmWebPortal/web/resources/css/portal.css
index 1efe9da13ebdba8e4ce2c7de9c9361270bb7d8ec..efcf58f00182fee1dd34f1e324b11116549dca1c 100644
--- a/src/java/DmWebPortal/web/resources/css/portal.css
+++ b/src/java/DmWebPortal/web/resources/css/portal.css
@@ -177,6 +177,25 @@ a:link:hover, a:visited:hover  {
     font-size: 105%;
 }
 
+.entityDataInputText {
+    font-weight: normal;
+    float: left;
+    background: white;
+}
+
+.entityDataInputTextShort {
+    font-weight: normal;
+    float: left;
+    width: 150px;
+    background: white;
+}
+
+.entityDataEmphasizedInputText {
+    font-weight: bold;
+    font-size: 105%;
+    background: white;
+}
+
 .entityDataText {
     font-weight: normal;
     float: left;
diff --git a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml
index 6505933fd9afd4f7443de5be93f8ca82e9d0c263..4592178dbff2bf524dc02bb2fcacc920bc86bb92 100644
--- a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueCreatePanelGrid.xhtml
@@ -10,10 +10,10 @@
     <p:panelGrid columns="2" styleClass="createEntityDetails">
 
         <h:outputLabel for="policyValue" value="Policy Value" styleClass="entityDataLabel"/>
-        <h:inputText id="policyValue" value="#{allowedPolicyValueObject.policyValue}" title="Policy Value" styleClass="entityDataText"/>
+        <h:inputText id="policyValue" value="#{allowedPolicyValueObject.policyValue}" title="Policy Value" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{allowedPolicyValueObject.description}" title="Description" styleClass="entityDataText"/>        
+        <h:inputText id="description" value="#{allowedPolicyValueObject.description}" title="Description" styleClass="entityDataInputText"/>        
         
     </p:panelGrid>
 
diff --git a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml
index d589e947f63dd118bbb9d99cbf49108551c44ec7..553b5ddf865d46735db4c8f0bfda9f0d63dbbc01 100644
--- a/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml
+++ b/src/java/DmWebPortal/web/views/allowedPolicyValue/private/allowedPolicyValueListEditDataTable.xhtml
@@ -36,12 +36,12 @@ and open the template in the editor.
 
         <p:column sortBy="#{allowedPolicyValueObject.policyValue}" headerText="Policy Value" 
                   filterBy="#{allowedPolicyValueObject.policyValue}" filterMatchMode="contains" >
-            <h:inputText value="#{allowedPolicyValueObject.policyValue}" styleClass="entityDataTextShort"/>
+            <h:inputText value="#{allowedPolicyValueObject.policyValue}" styleClass="entityDataInputTextShort"/>
         </p:column>
 
         <p:column sortBy="#{allowedPolicyValueObject.description}" headerText="Description" 
                   filterBy="#{allowedPolicyValueObject.description}" filterMatchMode="contains">
-            <h:inputText value="#{allowedPolicyValueObject.description}" styleClass="entityDataTextShort"/>
+            <h:inputText value="#{allowedPolicyValueObject.description}" styleClass="entityDataInputTextShort"/>
         </p:column>
 
         <p:column headerText="Actions" >
diff --git a/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml
index f1183eff8a14923d1f7c0fe864ffb57c5b0aee12..d22c5438b8e57cceb1680e30cb0774b46b607790 100644
--- a/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/experiment/private/experimentCreatePanelGrid.xhtml
@@ -11,10 +11,10 @@
     <p:panelGrid columns="2" >
 
         <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="name" value="#{experimentObject.name}" title="Name" styleClass="entityDataEmphasizedText"/>
+        <h:inputText id="name" value="#{experimentObject.name}" title="Name" styleClass="entityDataEmphasizedInputText"/>
 
         <h:outputLabel for="experimentType" value="Experiment Type" styleClass="entityDataLabel"/>
-        <p:selectOneMenu id="experimentType" value="#{experimentObject.experimentType}" styleClass="entityDataText">
+        <p:selectOneMenu id="experimentType" value="#{experimentObject.experimentType}" styleClass="entityDataInputText">
             <f:selectItem itemLabel="Select Type" itemValue="" noSelectionOption="true" />
             <f:selectItems value="#{experimentTypeController.getAvailableItems()}" 
                            var="experimentType"
@@ -24,7 +24,7 @@
         </p:selectOneMenu>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataText"/>      
+        <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataInputText"/>      
 
         <h:outputLabel for="startDate" value="Start Date"/>
         <p:calendar id="startDate" value="#{experimentObject.startDate}" mode="popup" showOn="button" pattern="#{resources.DateTimePattern}" />
diff --git a/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml
index 880a70c75c1c0c960a2ffaf2071135a10174f2a1..d5a26b476b6f74bf94c5181a7193c77cdf890cc9 100644
--- a/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/experiment/private/experimentEditPanelGrid.xhtml
@@ -16,7 +16,7 @@
         <h:outputText id="experimentType" value="#{experimentObject.experimentType.name}" title="Name" styleClass="entityDataText"/>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataText"/>  
+        <h:inputText id="description" value="#{experimentObject.description}" title="Description" styleClass="entityDataInputText"/>  
         
         <h:outputLabel for="startDate" value="Start Date" styleClass="entityDataLabel"/>
         <p:calendar id="startDate" value="#{experimentObject.startDate}" mode="popup" showOn="button" pattern="#{resources.DateTimePattern}" />
diff --git a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml
index 0dbfd762c2adb3caa813cdec75fc4a7629b914d1..15ce12c4f9359c3f32c0b4e463ee6cdf1dd0139f 100644
--- a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeCreatePanelGrid.xhtml
@@ -10,13 +10,13 @@
     <p:panelGrid columns="2" styleClass="createEntityDetails">
 
         <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> 
+        <h:inputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedInputText"/> 
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataText"/>        
+        <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataInputText"/>        
 
         <h:outputLabel for="rootDataPath" value="Root Data Path" styleClass="entityDataLabel"/>
-        <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataText"/>
+        <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataInputText"/>
         
     </p:panelGrid>
 
diff --git a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml
index db6fdc866665913896112b033a6fd7bdb025ac46..fc27c0bef7da010805f44637719149653fa2351e 100644
--- a/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/experimentType/private/experimentTypeEditPanelGrid.xhtml
@@ -10,13 +10,13 @@
     <p:panelGrid columns="2" styleClass="editEntityDetails"> 
 
         <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> 
+        <h:outputText id="name" value="#{experimentTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/> 
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataText"/>     
+        <h:inputText id="description" value="#{experimentTypeObject.description}" title="Description" styleClass="entityDataInputText"/>     
 
         <h:outputLabel for="rootDataPath" value="Root Data Path" styleClass="entityDataLabel"/>
-        <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataText"/>
+        <h:inputText id="rootDataPath" value="#{experimentTypeObject.rootDataPath}" title="Root Data Path" styleClass="entityDataInputText"/>
         
     </p:panelGrid>
 </ui:composition>
diff --git a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml
index 178c21e3447199c5b03f18d341e67dfaa127b929..60673d8afd17ac4b4090133853e56b3fb44a7973 100644
--- a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyCreatePanelGrid.xhtml
@@ -10,22 +10,22 @@
     <p:panelGrid columns="2" styleClass="createEntityDetails">
 
         <h:outputLabel for="name" value="Name" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="name" value="#{policyPropertyObject.name}" title="Name" styleClass="entityDataEmphasizedText"/>
+        <h:inputText id="name" value="#{policyPropertyObject.name}" title="Name" styleClass="entityDataEmphasizedInputText"/>
 
         <h:outputLabel for="units" value="Units" styleClass="entityDataLabel"/>
-        <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataText"/>
+        <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="defaultValue" value="Default Value" styleClass="entityDataLabel"/>
-        <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataText"/> 
+        <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataInputText"/> 
 
         <h:outputLabel for="lowerLimit" value="Lower Limit" styleClass="entityDataLabel"/>
-        <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataText"/>
+        <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="upperLimit" value="Upper Limit" styleClass="entityDataLabel"/>
-        <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataText"/>
+        <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataText"/>        
+        <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataInputText"/>        
         
     </p:panelGrid>
 
diff --git a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml
index a8ffa0b18ce0da481253900e915ad12bfb7173b9..6129d15ccfceabeb60b6f97954caba483df33c5f 100644
--- a/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/policyProperty/private/policyPropertyEditPanelGrid.xhtml
@@ -13,19 +13,19 @@
         <h:outputText id="name" value="#{policyPropertyObject.name}" title="Name" styleClass="entityDataEmphasizedText"/>
 
         <h:outputLabel for="units" value="Units" styleClass="entityDataLabel"/>
-        <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataText"/>
+        <h:inputText id="units" value="#{policyPropertyObject.units}" title="Units" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="defaultValue" value="Default Value" styleClass="entityDataLabel"/>
-        <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataText"/>
+        <h:inputText id="defaultValue" value="#{policyPropertyObject.defaultValue}" title="Default Value" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="lowerLimit" value="Lower Limit" styleClass="entityDataLabel"/>
-        <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataText"/>
+        <h:inputText id="lowerLimit" value="#{policyPropertyObject.lowerLimit}" title="Lower Limit" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="upperLimit" value="Upper Limit" styleClass="entityDatadLabel"/>
-        <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataText"/>
+        <h:inputText id="upperLimit" value="#{policyPropertyObject.upperLimit}" title="Upper Limit" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataText"/>     
+        <h:inputText id="description" value="#{policyPropertyObject.description}" title="Description" styleClass="entityDataInputText"/>     
         
     </p:panelGrid>
 </ui:composition>
\ No newline at end of file
diff --git a/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml
index b8baac24f3c6fb3ccf3be4b4686438635e8d24cf..b941d5dfb255a6429cf65dd4668dd103d87c83a9 100644
--- a/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/policyType/private/policyTypeEditPanelGrid.xhtml
@@ -13,7 +13,7 @@
         <h:outputText id="name" value="#{policyTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{policyTypeObject.description}" title="Description" styleClass="entityDataText"/>     
+        <h:inputText id="description" value="#{policyTypeObject.description}" title="Description" styleClass="entityDataInputText"/>     
         
     </p:panelGrid>
 </ui:composition>
\ No newline at end of file
diff --git a/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml
index 805a2b51152abfe98290e5c6b4a753cf0d77edfe..3fea8f8c0836966a3385c22bb36e5eabaf00e697 100644
--- a/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/roleType/private/roleTypeEditPanelGrid.xhtml
@@ -14,7 +14,7 @@
         <h:outputText id="name" value="#{roleTypeObject.name}" title="Name" styleClass="entityDataEmphasizedText"/>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{roleTypeObject.description}" title="Description" styleClass="entityDataText"/>     
+        <h:inputText id="description" value="#{roleTypeObject.description}" title="Description" styleClass="entityDataInputText"/>     
         
     </p:panelGrid>
 </ui:composition>
diff --git a/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml b/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml
index 98998af7ebbf317d4f78e8e50713541cb77b1272..54d501f7ceb06251eaa5ecb1e25b71f36948965f 100644
--- a/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/userInfo/private/userInfoCreatePanelGrid.xhtml
@@ -10,31 +10,31 @@
     <p:panelGrid columns="2" styleClass="createEntityDetails">
 
         <h:outputLabel for="badge" value="Badge" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedText"/>
+        <h:inputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedInputText"/>
                      
         <h:outputLabel for="username" value="Username" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="username" value="#{userInfoObject.username}" title="Username" styleClass="entityDataEmphasizedText"/>
+        <h:inputText id="username" value="#{userInfoObject.username}" title="Username" styleClass="entityDataEmphasizedInputText"/>
 
         <h:outputLabel for="lastName" value="Last Name" styleClass="entityDataLabel"/>
-        <h:inputText id="lastName" value="#{userInfoObject.lastName}" title="Last Name" styleClass="entityDataText"/>
+        <h:inputText id="lastName" value="#{userInfoObject.lastName}" title="Last Name" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="firstName" value="First Name" styleClass="entityDataLabel"/>
-        <h:inputText id="firstName" value="#{userInfoObject.firstName}" title="First Name" styleClass="entityDataText"/> 
+        <h:inputText id="firstName" value="#{userInfoObject.firstName}" title="First Name" styleClass="entityDataInputText"/> 
 
         <h:outputLabel for="middleName" value="Middle Name" styleClass="entityDataLabel"/>
-        <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" styleClass="entityDataText"/>
+        <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="email" value="Email" styleClass="entityDataLabel"/>
-        <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataText"/>
+        <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="password" value="Password" styleClass="entityDataLabel"/>
-        <p:password id="password" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataText"/>
+        <p:password id="password" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataInputText"/>
         
         <h:outputLabel for="globusUsername" value="Globus Username" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataEmphasizedText"/>
+        <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataEmphasizedInputText"/>
 
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataText"/>        
+        <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataInputText"/>        
         
     </p:panelGrid>
 
diff --git a/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml b/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml
index 2fb6d2d1cadd9170c5b4504ad624c45a33622850..63b750aec8c8a9ac17b2613d22f8b554356d3f47 100644
--- a/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml
+++ b/src/java/DmWebPortal/web/views/userInfo/private/userInfoEditPanelGrid.xhtml
@@ -12,35 +12,35 @@
 
         
         <h:outputLabel for="badge" value="Badge" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedText"/>
+        <h:outputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedText"/>
 
         <h:outputLabel for="username" value="Username" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="username" value="#{userInfoObject.username}" rendered="#{isFieldWriteable}" title="Username" styleClass="entityDataEmphasizedText"/>
+        <h:inputText id="username" value="#{userInfoObject.username}" rendered="#{isFieldWriteable}" title="Username" styleClass="entityDataEmphasizedInputText"/>
         <h:outputText id="usernameOutput" value="#{userInfoObject.username}" rendered="#{!isFieldWriteable}" title="Username" styleClass="entityDataEmphasizedText"/>
 
         <h:outputLabel for="lastName" value="Last Name" styleClass="entityDataLabel"/>
-        <h:inputText id="lastName" value="#{userInfoObject.lastName}" rendered="#{isFieldWriteable}" title="Last Name" styleClass="entityDataText"/>
+        <h:inputText id="lastName" value="#{userInfoObject.lastName}" rendered="#{isFieldWriteable}" title="Last Name" styleClass="entityDataInputText"/>
         <h:outputText id="lastNameOutput" value="#{userInfoObject.lastName}" rendered="#{!isFieldWriteable}" title="Last Name" styleClass="entityDataText"/>
 
         <h:outputLabel for="firstName" value="First Name" styleClass="entityDataLabel"/>
-        <h:inputText id="firstName" value="#{userInfoObject.firstName}" rendered="#{isFieldWriteable}" title="First Name" styleClass="entityDataText"/>
+        <h:inputText id="firstName" value="#{userInfoObject.firstName}" rendered="#{isFieldWriteable}" title="First Name" styleClass="entityDataInputText"/>
         <h:outputText id="firstNameOutput" value="#{userInfoObject.firstName}" rendered="#{!isFieldWriteable}" title="First Name" styleClass="entityDataText"/> 
 
         <h:outputLabel for="middleName" value="Middle Name" styleClass="entityDataLabel"/>
-        <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" rendered="#{isFieldWriteable}" styleClass="entityDataText"/>
+        <h:inputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" rendered="#{isFieldWriteable}" styleClass="entityDataInputText"/>
         <h:outputText id="middleNameOutput" value="#{userInfoObject.middleName}" title="Middle Name" rendered="#{!isFieldWriteable}" styleClass="entityDataText"/>
 
         <h:outputLabel for="email" value="Email" styleClass="entityDataLabel"/>
-        <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataText"/>
+        <h:inputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataInputText"/>
 
         <h:outputLabel for="password" value="Password" styleClass="entityDataLabel" rendered="#{userInfoObject.isDmUser}"/>
-        <p:password id="password" rendered="#{userInfoObject.isDmUser}" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataText"/>
+        <p:password id="password" rendered="#{userInfoObject.isDmUser}" value="#{userInfoController.passwordEntry}" title="Password" feedback="true" styleClass="entityDataInputText"/>
         
-        <h:outputLabel for="globusUsername" value="Globus Username" styleClass="entityDataEmphasizedLabel"/>
-        <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataEmphasizedText"/>
+        <h:outputLabel for="globusUsername" value="Globus Username" styleClass="entityDataLabel"/>
+        <h:inputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataInputText"/>
         
         <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
-        <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataText"/>     
+        <h:inputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataInputText"/>     
         
     </p:panelGrid>
 </ui:composition>