Index: wp-admin/css/wp-admin-rtl.dev.css
===================================================================
--- wp-admin/css/wp-admin-rtl.dev.css	(revision 19170)
+++ wp-admin/css/wp-admin-rtl.dev.css	(working copy)
@@ -1323,6 +1323,11 @@
 	margin-left: 10px;
 }
 
+.freedoms-php .about-wrap ol li:before {
+	left: auto;
+	right: -20px;
+}
+
 /*------------------------------------------------------------------------------
   23.0 - Misc
 ------------------------------------------------------------------------------*/
Index: wp-admin/css/wp-admin.dev.css
===================================================================
--- wp-admin/css/wp-admin.dev.css	(revision 19170)
+++ wp-admin/css/wp-admin.dev.css	(working copy)
@@ -4890,11 +4890,20 @@
 
 .freedoms-php .about-wrap ol {
 	margin: 40px 60px;
+	counter-reset: item -1;
 }
 .freedoms-php .about-wrap ol li {
-	list-style-type: decimal;
+	list-style-type: none;
 	font-weight: bold;
+	position: relative;
 }
+.freedoms-php .about-wrap ol li:before {
+	content: counter(item) ". ";
+	counter-increment: item;
+	left: -20px;
+	top: 3px;
+	position: absolute;
+}
 .freedoms-php .about-wrap ol p {
 	font-weight: normal;
 	margin: 0.6em 0;
Index: wp-admin/freedoms.php
===================================================================
--- wp-admin/freedoms.php	(revision 19170)
+++ wp-admin/freedoms.php	(working copy)
@@ -37,7 +37,7 @@
 
 <p class="about-description"><?php printf( __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 'http://wordpress.org/about/license/' ); ?></p>
 
-<ol start="0">
+<ol>
 	<li><p><?php _e( 'You have the freedom to run the program, for any purpose.' ); ?></p></li>
 	<li><p><?php _e( 'You have access to the source code, the freedom to study how the program works, and the freedom to change it to make it do what you wish.' ); ?></p></li>
 	<li><p><?php _e( 'You have the freedom to redistribute copies of the original program so you can help your neighbor.' ); ?></p></li>
