diff --git a/application/modules/courses/views/scripts/view/change-ace.phtml b/application/modules/courses/views/scripts/view/change-ace.phtml
index 1ecbd332482203b908845371d40396b50c91d6a0..5b7406b4515a8bf6953065469a3c6f3d439f9b63 100644
--- a/application/modules/courses/views/scripts/view/change-ace.phtml
+++ b/application/modules/courses/views/scripts/view/change-ace.phtml
@@ -69,7 +69,7 @@ foreach ($currentAceReinforcements as $index => $currentAceReinforcement) {
 	        <?php echo $aceOutcome['slo']; ?>:
 	        <?php echo $aceOutcome['description']; ?>
 	    </div>
-	    <ol>
+	    <ol class="questionList">
 	        <li>
 	            <div class="question">
 	                Describe opportunities students should have to learn the outcome.<br />
@@ -146,7 +146,7 @@ foreach ($currentAceReinforcements as $index => $currentAceReinforcement) {
 	        <?php echo $aceOutcome['slo']; ?>:
 	        <?php echo $aceOutcome['description']; ?>
 	    </div>
-	    <ol>
+	    <ol class="questionList">
 	        <li>
 	            <div class="question">
 	                Describe opportunities students should have to learn the outcome.<br />
diff --git a/application/modules/courses/views/scripts/view/course-info.phtml b/application/modules/courses/views/scripts/view/course-info.phtml
index 41f7b018c06156e5d514ac2a3babb576b767620b..4336e5b4cef0182bf55e4faa4d8a8d90d1dac235 100644
--- a/application/modules/courses/views/scripts/view/course-info.phtml
+++ b/application/modules/courses/views/scripts/view/course-info.phtml
@@ -38,61 +38,80 @@
 
 /*****************************ACE COURSE***************************************/
     if (in_array($this->request->getViewType(), array('ChangeACE', 'RecertifyACE'))) {
-    	echo $this->partial('view/change-ace.phtml', 'courses', $this);
+        echo $this->partial('view/change-ace.phtml', 'courses', $this);
     }
     
     if (in_array($this->request->getViewType(), array('RecertifyACE'))) { 
         $recertification = $course->getAceRecertification();
 ?>
+<div id="aceRecertification">
     <h2>Recertification</h2>
     <dl>
-    	<dt>
-    		Please indicate the semesters the course has been taught as an ACE certified course.
-    	</dt>
-    	<dd><?php 
+        <dt>
+            Please indicate the semesters the course has been taught as an ACE certified course.
+        </dt>
+        <dd><?php 
             $semestersTaught = array();
             foreach ($recertification['semestersTaught'] as $semesterTaught) {
                 $semestersTaught[] = $this->termDescription($semesterTaught) . ' (' . $semesterTaught . ')';
             }
             echo implode(', ', $semestersTaught); 
         ?></dd>
-    	<dt>
-    		What have assessment data revealed about how the course helps students
-    		achieve the designated Student Learning Outcome(s)?  (You might be
-    		able to complete this textbox by copying information found in the Summary
-    		&amp; Conclusion sections from your Department/Program ACE Assessment
-    		Report.)
-    	</dt>
-    	<dd><?php echo nl2br(htmlentities($recertification['dataRevealed'], ENT_COMPAT, 'UTF-8')); ?></dd>
-    	<dt>
-    		How have those assessment data been used to help the course meet the
-			certified Student Learning Outcome(s)?  (You might be able to complete
-			this textbox by copying information found in the Summary &amp; Conclusion
-			sections from your Department/Program ACE Assessment Report.)
-    	</dt>
-    	<dd><?php echo nl2br(htmlentities($recertification['dataFeedback'], ENT_COMPAT, 'UTF-8')); ?></dd>
-    	<dt>
-    		If your assessment plan does not include collection of student work
-			from all sections each time the course is taught, indicate how your
-			department ensures that all sections are taught in accordance with
-			the ACE plan.
-    	</dt>
-    	<dd><?php echo nl2br(htmlentities($recertification['dataIncomplete'], ENT_COMPAT, 'UTF-8')); ?></dd>
-    	<dt>
-    		If the response in the original proposal for ACE certification indicated
-			that the assessment process was still being developed, the UCC/ACE
-			subcommittee expects an explanation of the process.  (May be referenced
-			in the Methods section of the Department ACE Assessment Report.)
-    	</dt>
-    	<dd><?php echo nl2br(htmlentities($recertification['developPlan'], ENT_COMPAT, 'UTF-8')); ?></dd>
     </dl>
-    
+    <ol class="questionList">
+        <li>
+			<div class="question">
+                What have assessment data revealed about how the course helps students
+                achieve the designated Student Learning Outcome(s)?  (You might be
+                able to complete this textbox by copying information found in the Summary
+                &amp; Conclusion sections from your Department/Program ACE Assessment
+                Report.)
+            </div>
+            <div class="answer">
+                <?php echo nl2br(htmlentities($recertification['dataRevealed'], ENT_COMPAT, 'UTF-8')); ?>
+            </div>
+        </li>
+        <li>
+			<div class="question">
+                How have those assessment data been used to help the course meet the
+                certified Student Learning Outcome(s)?  (You might be able to complete
+                this textbox by copying information found in the Summary &amp; Conclusion
+                sections from your Department/Program ACE Assessment Report.)
+            </div>
+            <div class="answer">
+                <?php echo nl2br(htmlentities($recertification['dataFeedback'], ENT_COMPAT, 'UTF-8')); ?>
+            </div>
+        </li>
+        <li>
+			<div class="question">
+                If your assessment plan does not include collection of student work
+                from all sections each time the course is taught, indicate how your
+                department ensures that all sections are taught in accordance with
+                the ACE plan.
+            </div>
+            <div class="answer">
+                <?php echo nl2br(htmlentities($recertification['dataIncomplete'], ENT_COMPAT, 'UTF-8')); ?>
+            </div>
+        </li>
+        <li>
+			<div class="question">
+                    If the response in the original proposal for ACE certification indicated
+                    that the assessment process was still being developed, the UCC/ACE
+                    subcommittee expects an explanation of the process.  (May be referenced
+                    in the Methods section of the Department ACE Assessment Report.)
+            </div>
+            <div class="answer">
+                <?php echo nl2br(htmlentities($recertification['developPlan'], ENT_COMPAT, 'UTF-8')); ?>
+            </div>
+        </li>
+    </ol>
+</div>
     
 <?php }
     
     if (in_array($this->request->getViewType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) {
 ?>
-<div>
+<div id="aceCertification">
     <h2 id="aceHeading">Ace Course Proposal</h2>
 
     <h3>Outcome(s)</h3>
@@ -101,7 +120,7 @@
         <?php echo $aceOutcome['slo']; ?>:
         <?php echo $aceOutcome['description']; ?>
     </div>
-    <ol>
+    <ol class="questionList">
         <li>
             <div class="question">
                 Describe opportunities students should have to learn the outcome.<br />
@@ -113,8 +132,8 @@
         </li>
         <li>
             <div class="question">
-	            Describe student work that will be used to assess student achievement
-	            of the outcome and explain how the students demonstrate the knowledge
+                Describe student work that will be used to assess student achievement
+                of the outcome and explain how the students demonstrate the knowledge
                 and skills specified by the outcome.
             </div>
             <div class="answer">
@@ -123,13 +142,13 @@
         </li>
         <li>
             <div class="question">
-	            As part of the ACE certification process, the department/unit agrees to
-	            collect and assess a reasonable sample of students' work and provide
-	            reflections on students' achievement of the Learning Outcomes for its
-	            respective ACE-certified courses.<br />
-	            Please comment on your plans to develop a process to collect and evaluate
-	            student work over time for the purpose of assessing student success for
-	            this ACE outcome.
+                As part of the ACE certification process, the department/unit agrees to
+                collect and assess a reasonable sample of students' work and provide
+                reflections on students' achievement of the Learning Outcomes for its
+                respective ACE-certified courses.<br />
+                Please comment on your plans to develop a process to collect and evaluate
+                student work over time for the purpose of assessing student success for
+                this ACE outcome.
             </div>
             <div class="answer">
                 <?php echo $aceOutcome['assesmentPlan']; ?>
diff --git a/document_root/css/courses/view/course-info.css b/document_root/css/courses/view/course-info.css
index 5d43fe0d63bc1522cff0bf4968a97c49f46bf3a7..961801646b9f6cc8f1af51e329d0de60284eb64e 100644
--- a/document_root/css/courses/view/course-info.css
+++ b/document_root/css/courses/view/course-info.css
@@ -77,3 +77,16 @@
     text-align: right;
     padding-right: 0.5em;    
 }
+
+.questionList li {
+	margin: 1em 0;
+}
+
+.questionList .question {
+	font-weight: bold;
+	margin-bottom: 1em;
+}
+
+#aceRecertification .questionList {
+	list-style-type: upper-alpha;
+}
\ No newline at end of file