<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TheAccessPond.com &#187; Development</title>
	<atom:link href="http://theaccesspond.com/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://theaccesspond.com</link>
	<description>Making Accessibility A Reality!</description>
	<lastBuildDate>Thu, 29 Mar 2012 18:38:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Does accessibility require that focus be set to page content on page load?</title>
		<link>http://theaccesspond.com/2012/03/29/does-accessibility-require-that-focus-be-set-to-page-content-on-page-load/</link>
		<comments>http://theaccesspond.com/2012/03/29/does-accessibility-require-that-focus-be-set-to-page-content-on-page-load/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 18:36:35 +0000</pubDate>
		<dc:creator>Jeff Singleton</dc:creator>
				<category><![CDATA[Accessibility Resource]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[section 508]]></category>
		<category><![CDATA[WCAG]]></category>

		<guid isPermaLink="false">http://theaccesspond.com/?p=195</guid>
		<description><![CDATA[Recently I came across an accessibility question on a Q&#038;A site. The question was posted by user "Mike Jr" and was in regards to a disagreement Mike and his colleague were having about default focus in a newly opened window. What do you think?]]></description>
			<content:encoded><![CDATA[<p>Recently I came across an accessibility question on a Q&#038;A site. The question was posted by user &#8220;Mike Jr&#8221; and was in regards to a disagreement Mike and his colleague were having about default focus in a newly opened window. </p>
<p>Mike specifically asked about the Section 508 requirement 1194.21(c) &#8220;A well-defined on-screen indication of the current focus shall be provided that moves among interactive interface elements as the input focus changes. The focus shall be programmatically exposed so that assistive technology can track focus and focus changes.&#8221;</p>
<p>Mike wanted to apply this subpart to a log in page where he felt that focus should be forced to one of the input controls for the log in information. His colleague was arguing that it was not necessary to do this to conform to the Section 508 requirements.  </p>
<p>What do you think? I have included my answer to Mike Jr below for your review as it contains (in my opinion) a lot of food for thought. </p>
<p><strong>[Start of my reply to Mike Jr]</strong><br />
Hi Mike  Jr,</p>
<p>First off 1194.21 is the subpart of Section 508 that is dealing with Software Applications and Operating Systems. So &#8220;technically&#8221; it would not apply to Web-based intranet and Internet information and applications that are only HTML based. </p>
<p>That being said, the common approach today is to apply the Section 508 requirements across the board to whatever you are evaluating for conformance. This is because Section 508 is outdated, so for those standards to be beneficial in today’s world the blanket approach of applying to them to everything, regardless of category, is often employed.</p>
<p>As the Section 508 refresh in the process of being adopted it appears that Section 508 will most likely use, or closely follow, the WCAG 2.0 Level A, AA guidelines. So if you are looking to conform with the future refreshed requirements as well, shoot for the level AA guidelines of WCAG 2.0. </p>
<p>In answer your question about 1194.21 (c), that requirement is focusing on ensuring that the current focus is visible to the eye as well as visible to an assistive technology. So you must be able to discern where the current focus is visually as well as programmatically. This is true even if you are only applying this requirement to a web page, as you stated is the case.</p>
<p>In your example of a log in page loaded in a browser window it is not necessary to set the focus to one of the input controls on page load (initially opened) for conformance to Section 508, as long as the user can tab to those controls and visually discern the current focus and as long as that focus is also identifiable programmatically for the AT software. It doesn’t hurt to add that type of functionality as it does improve usability for everyone, but it not required for accessibility. See the guide to &#8220;Guide to the Standards&#8221; for Section 508, 1194.21 (c) at this link: <a href="http://www.access-board.gov/sec508/guide/1194.21.htm#(c)" title="Section 508 Guide to the Standards - 1194.21 (c)" target="_blank">http://www.access-board.gov/sec508/guide/1194.21.htm#(c)</a>)</p>
<p>Additionally you can refer to the WCAG 2.0 level AA 2.4.7 guideline on understanding making focus visible. That link is: <a href="http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-focus-visible.html" title="WCAG 2.0 Understanding Visible Focus" target="_blank">http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-focus-visible.html</a>. </p>
<p>To be clear, if we were talking about a software application window and not an Internet browser window then making sure a control had default focus when that application window is loaded would be necessary. You will notice that in a browser window if the web content does not have focus by default at least the one control that is part of the browser does have focus. I do not think this detail is actually covered under any of the accessibility guidelines but my guess is that it is outlined somewhere in the accepted standards for application/software, but I could not tell you where. </p>
<p>Anyway, kudos to you for wanting to improve the overall user experience along with your efforts for accessible access! Too many times developers only want to do the bare minimum to get the code ‘out the door’. A good user experience is important and ensuring that your content is designed for accessibility only helps to improve that user experience. Keep up the good fight! </p>
<p><strong>[End of my reply to Mike Jr]</strong></p>
<p>Mike Jr&#8217;s orginal question can be found here: <a href="http://stackoverflow.com/q/9896700/1301573" title="Mike Jr's Question on Default Focus" target="_blank">http://stackoverflow.com/q/9896700/1301573</a></p>
]]></content:encoded>
			<wfw:commentRss>http://theaccesspond.com/2012/03/29/does-accessibility-require-that-focus-be-set-to-page-content-on-page-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color Contrast and Accessibility</title>
		<link>http://theaccesspond.com/2012/02/23/color-contrast-and-accessibility/</link>
		<comments>http://theaccesspond.com/2012/02/23/color-contrast-and-accessibility/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 19:28:46 +0000</pubDate>
		<dc:creator>Mike Adams</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[WCAG]]></category>
		<category><![CDATA[508]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[accessible]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[contrast]]></category>
		<category><![CDATA[section 508]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://theaccesspond.com/?p=181</guid>
		<description><![CDATA[I recently came across a tool I hadn&#8217;t used before and wanted to share it and another resource for analyzing color contrasts. If we look at 1.4.3 within WCAG 2.0 it lays out the groundwork but having a tool to use is such a nice resource to have. Per the W3C: &#8220;1.4.3 Contrast (Minimum):The visual [...]]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <o:OfficeDocumentSettings> <o:AllowPNG /> </o:OfficeDocumentSettings> </xml><![endif][if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:EnableOpenTypeKerning /> <w:DontFlipMirrorIndents /> <w:OverrideTableStyleHps /> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif][if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif][if gte mso 10]><br />
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin-top:0in;
	mso-para-margin-right:0in;
	mso-para-margin-bottom:10.0pt;
	mso-para-margin-left:0in;
	line-height:115%;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
</style>
<p> <![endif]--></p>
<p class="MsoNormal">I recently came across a tool I hadn&#8217;t used before and wanted to share it and another resource for analyzing color contrasts.<span> </span>If we look at 1.4.3 within WCAG 2.0 it lays out the groundwork but having a tool to use is such a nice resource to have.</p>
<p class="MsoNormal">Per the W3C:</p>
<p class="MsoNormal">&#8220;1.4.3 Contrast (Minimum):The visual presentation of text and images of text has a contrast ratio of at least 4.5:1, except for the following: (Level AA)</p>
<p class="MsoNormal">•Large Text: Large-scale text and images of large-scale text have a contrast ratio of at least 3:1;</p>
<p class="MsoNormal">•Incidental: Text or images of text that are part of an inactive user interface component, that are pure decoration, that are not visible to anyone, or that are part of a picture that contains significant other visual content, have no contrast requirement.</p>
<p class="MsoNormal">•Logotypes: Text that is part of a logo or brand name has no minimum contrast requirement.&#8221;</p>
<p class="MsoNormal">
<p class="MsoNormal">Additional contrast items are addressed in 1.4.6:</p>
<p class="MsoNormal">&#8220;1.4.6 Contrast (Enhanced):The visual presentation of text and images of text has a contrast ratio of at least 7:1, except for the following: (Level AAA)</p>
<p class="MsoNormal">?Large Text: Large-scale text and images of large-scale text have a contrast ratio of at least 4.5:1;</p>
<p class="MsoNormal">?Incidental: Text or images of text that are part of an inactive user interface component, that are pure decoration, that are not visible to anyone, or that are part of a picture that contains significant other visual content, have no contrast requirement.</p>
<p class="MsoNormal">?Logotypes: Text that is part of a logo or brand name has no minimum contrast requirement.&#8221;</p>
<p class="MsoNormal">(http://www.w3.org/TR/2008/REC-WCAG20-20081211/#visual-audio-contrast-contrast)</p>
<p class="MsoNormal">
<p class="MsoNormal">There are two free tools I&#8217;m listing for use though surely there are more available:</p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -0.25in;"><span><span>1.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><strong>Luminosity Colour Contrast Ratio Analyzer</strong>-Juicy Studios</p>
<p class="MsoListParagraphCxSpMiddle">This seems like a very usable resource and operates directly from the website of Juicy Studios.<span> </span>I&#8217;m impressed at the simplicity of it and appreciate the efforts to make it not just a tool for usability and accessibility but accessible in itself.<span> </span><a href="http://juicystudio.com/services/luminositycontrastratio.php#specify">http://juicystudio.com/services/luminositycontrastratio.php#specify</a></p>
<p class="MsoListParagraphCxSpMiddle">
<p class="MsoListParagraphCxSpMiddle" style="text-indent: -0.25in;"><span><span>2.<span style="font: 7pt &quot;Times New Roman&quot;;"> </span></span></span><strong>Contrast Analyser</strong> -The Paciello Group</p>
<p class="MsoListParagraphCxSpMiddle">I&#8217;ve used this many times and you get a simple interface that allows you to enter the html for your colors or switch modes and use a mouse pointer to select given colors that are currently on your screen.<span> </span>This is a nice touch when actively looking at a page.<span> </span>It does however require you to download it and run it from your desktop.<span> </span><a href="http://www.paciellogroup.com/resources/contrast-analyser.html">http://www.paciellogroup.com/resources/contrast-analyser.html</a></p>
<p class="MsoListParagraphCxSpLast">
<p class="MsoNormal">Depending on your needs I&#8217;d expect either of these will work well for you and encourage you to meet the guidelines for easier use by all.</p>
]]></content:encoded>
			<wfw:commentRss>http://theaccesspond.com/2012/02/23/color-contrast-and-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WCAG Reference</title>
		<link>http://theaccesspond.com/2012/02/23/wcag-reference/</link>
		<comments>http://theaccesspond.com/2012/02/23/wcag-reference/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 18:37:50 +0000</pubDate>
		<dc:creator>Mike Adams</dc:creator>
				<category><![CDATA[Accessibility Resource]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WCAG]]></category>

		<guid isPermaLink="false">http://theaccesspond.com/?p=176</guid>
		<description><![CDATA[It&#8217;s been awhile but it recently dawned on me that a pointer to the actual WCAG reference might be helpful for some. This link should take you to the a great starting place for WCAG guidelines and additional information. http://www.w3.org/WAI/intro/wcag]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been awhile but it recently dawned on me that a pointer to the actual WCAG reference might be helpful for some.  This link should take you to the a great starting place for WCAG guidelines and additional information.</p>
<p>http://www.w3.org/WAI/intro/wcag</p>
]]></content:encoded>
			<wfw:commentRss>http://theaccesspond.com/2012/02/23/wcag-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe expanding the accessibility of Acrobat and Flash!</title>
		<link>http://theaccesspond.com/2010/03/25/adobe-expanding-the-accessibility-of-acrobat-and-flash/</link>
		<comments>http://theaccesspond.com/2010/03/25/adobe-expanding-the-accessibility-of-acrobat-and-flash/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 22:10:04 +0000</pubDate>
		<dc:creator>Jeff Singleton</dc:creator>
				<category><![CDATA[Accessibility and PDF]]></category>
		<category><![CDATA[Accessibility in the News]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://theaccesspond.com/?p=155</guid>
		<description><![CDATA[It sure is nice to see these advancements being made in products like these. The hope is that the industry as a whole will follow the Adobe’s example!]]></description>
			<content:encoded><![CDATA[<p>This week I am attending the <a href="http://www.csunconference.org/index.cfm?EID=80000218">International Technology &#038; Persons with Disabilities Conference in San Diego</a>.</p>
<p>Today I sat in on the the &#8220;Assistive Technology Access to Flash and PDF&#8221; session presented by Matt May from Adobe Systems. </p>
<p>There it was announced that the next release of Acrobat, Acrobat Reader, Flash Player and Flex will support the iAccessible2 API. MSAA is what these products currently use which limits the accessible API to Windows platforms. This is great news as this will expand accessibility for these products beyond the Windows platform and allow users of OS2 and Linux to make use of the accessibility features in these products.</p>
<p>If you are not sure what iAccessible2 is, Peter Korn’s Weblog has a great explanation at: <a href="http://blogs.sun.com/korn/entry/completing_the_accessibility_picture_iaccessible2">http://blogs.sun.com/korn/entry/completing_the_accessibility_picture_iaccessible2</a>.</p>
<p>In addition to the support of iAccessible2, Adobe is planning on including support for the <a href="http://www.w3.org/WAI/intro/aria ">ARIA specifications</a> in the near future for Flash Player and Flex. This will make it easier for developers to expose Flash content to assistive technologies. </p>
<p>It sure is nice to see advancements like this being made in these products. The hope is that the industry as a whole will follow Adobe’s example!</p>
<p>If you happen to be at this conference, feel free to stop by the HiSoftware booth #108 and say &#8216;hello&#8217; as that is where I’ll be hanging out!</p>
]]></content:encoded>
			<wfw:commentRss>http://theaccesspond.com/2010/03/25/adobe-expanding-the-accessibility-of-acrobat-and-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is the new CKEditor accessible?</title>
		<link>http://theaccesspond.com/2009/09/04/is-the-new-ckeditor-accessible/</link>
		<comments>http://theaccesspond.com/2009/09/04/is-the-new-ckeditor-accessible/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 19:56:24 +0000</pubDate>
		<dc:creator>Jeff Singleton</dc:creator>
				<category><![CDATA[Accessibility and JAWS]]></category>
		<category><![CDATA[Accessibility in the News]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Keyboard Shortcuts]]></category>
		<category><![CDATA[Legal & Policy]]></category>
		<category><![CDATA[section 508]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[WCAG]]></category>

		<guid isPermaLink="false">http://theaccesspond.com/?p=125</guid>
		<description><![CDATA[The CKEditor is the newest release of the popular open source web page text editor formally known as the FCKEditor. Unfortunately the previous name was often misrepresented as the [bad word] editor. So the name has been updated and hopefully this will avoid any unpleasant or offensive connections in the future. I first became aware [...]]]></description>
			<content:encoded><![CDATA[<p>The CKEditor is the newest release of the popular open source web page text editor formally known as the FCKEditor. Unfortunately the previous name was often misrepresented as the [bad word] editor. So the name has been updated and hopefully this will avoid any unpleasant or offensive connections in the future.</p>
<p>I first became aware of the new version of this editor from the following news article:<a href="http://www.h-online.com/open/FCKEditor-drops-the-F--/news/item/114156" target="_blank"> FCKEditor drops the F</a>. This article mentioned that the editor was now &#8216;fully&#8217; accessible to screen readers and keyboard only users. Even the main page for the CKeditor website (<a href="http://ckeditor.com/" target="_blank">http://ckeditor.com/</a>) makes the claim that it has full accessibility support.</p>
<p>This editor is open source and versatile when it comes to implementation so it is has a large install base. You may have used this editor yourself without even knowing it. With the growing attention to accessibility and the legal requirements around this topic an updated &#8216;accessible&#8217; version of this editor is very timely.</p>
<p>I have done some testing in the past with the FCKEditor in regards to accessibility and was curious if this new version was really accessible. So I took a &#8216;quick&#8217; peek to see for myself. My focus for this quick test was not if the editor created accessible content, but on if the editor itself was accessible.</p>
<p><strong>Keyboard Only</strong></p>
<p>I was pleasantly surprised to find that the CKEditor does in fact support the use of only a keyboard! Many of the past keyboard problems with the FCKEditor have been fix. I honestly did not expect the level of keyboard support that I found in the new version of this editor.</p>
<p>To say the least I was very pleased! The one drawback was finding the reference to the keyboard only commands. It wasn’t that hard to find but did take me a few minutes. What would be nice is to have a link or easily discoverable way to allow a user to get this information from within the editor itself.</p>
<p>You can find the reference for the most common supported keyboard commands and navigation shortcuts in the <a href="http://docs.fckeditor.net/CKEditor_3.x/Accessibility" target="_blank">CKEditor Accessibility topics document</a>.</p>
<p><strong>Screen Reader</strong></p>
<p>When it came to using a screen reader like JAWS with the CKEditor I was sure I would discover some major issues. Again, to my surprise JAWS and the CKEditor worked fairly well together. There is still a steep learning curve and at times JAWS got lost which required some screen refreshing and rediscovering of current focus to get my bearings. Compared to the way JAWS and the FCKEditor worked (or should I say did not work) together in the past this was a tremendous improvement.</p>
<p>To CKEditor&#8217;s credit most issues of using JAWS with this product are documented. This was in the <a href="http://docs.fckeditor.net/CKEditor_3.x/Accessibility" target="_blank">CKEditor&#8217;s Accessibility document </a>mentioned early or if you prefer <a href="http://docs.fckeditor.net/CKEditor_3.x/Accessibility#JAWS" target="_blank">jump directly to the JAWS section of that document here</a>.</p>
<p>In case you are interested I used IE 7.0.6001.18000 and JAWS 10.0.1142 for my testing.</p>
<p><strong>In Summary</strong></p>
<p>There are still some areas that are problematic such as switching from <abbr title="What You See Is What You Get">WYSIWYG</abbr> view to the Source view. When this switch occurs the focus jumps from the editor to the top of the page. This is not good for a screen reader user, screen magnifier user or a keyboard only user.</p>
<p>Also, I was not able to find a complete list of keyboard commands for ALL available tool bar options. It could be that those have been deprecated. The FCKEditor had a much larger list than that outlined in the current <a href="http://docs.fckeditor.net/CKEditor_3.x/Accessibility" target="_blank">CKEditor Accessibility Document</a>.</p>
<p>In all fairness I did not do an exhaustive search but I still feel a reference like that, if still applicable,   should be easily discoverable and even be referenced within the <a href="http://docs.fckeditor.net/CKEditor_3.x/Accessibility" target="_blank">CKEditor Accessibility Document</a>.</p>
<p>I should also mention that I did not do a complete test of the editor for accessibility but took a high level approach. Even so, that high level approach shows that the creators of CKEditor have put great effort in making this an accessible product.</p>
<p>This is very commendable because all too often the minimal effort is done so a product can be called accessible. I am not saying that the CKEditor does not have accessibility issues but compared to the previous versions of the FCKEditor the difference is night and day! This was a <strong>*real*</strong> effort to create an accessible product and so I offer a hearty &#8216;WOOT!&#8217; to the CKEditor team!</p>
<p>If you have had a similar or different experience with the new CKEditor please post your comment here.</p>
]]></content:encoded>
			<wfw:commentRss>http://theaccesspond.com/2009/09/04/is-the-new-ckeditor-accessible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Inspect32 to Inspect Links and Images on Web Sites</title>
		<link>http://theaccesspond.com/2009/03/26/using-inspect32-to-inspect-links-and-images-on-web-sites/</link>
		<comments>http://theaccesspond.com/2009/03/26/using-inspect32-to-inspect-links-and-images-on-web-sites/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 18:32:35 +0000</pubDate>
		<dc:creator>Thomas Logan</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://theaccesspond.com/?p=91</guid>
		<description><![CDATA[Inspect32 is a tool from Microsoft that enables a developer to verify that information is being correctly exposed through MSAA (Microsoft Active Accessibility). MSAA is an information source for an assistive technology. As a developer or tester, by verifying that the &#8220;Name&#8221; property is being passed through, you will be able to ensure that screen [...]]]></description>
			<content:encoded><![CDATA[<p>Inspect32 is a tool from Microsoft that enables a developer to verify that information is being correctly exposed through MSAA (Microsoft Active Accessibility). MSAA is an information source for an assistive technology. As a developer or tester, by verifying that the &#8220;Name&#8221; property is being passed through, you will be able to ensure that screen readers can properly read the labels for your content to a visually impaired person.</p>
<p><a title="Download Inspect32" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3755582A-A707-460A-BF21-1373316E13F0&amp;amp;displaylang=en">Download Inspect32 from here</a>.</p>
<p><a title="Inspect32 Video Tutorial" href="http://www.theaccesspond.com/videos/BP1Flash/BP1Flash.html">Watch Video Tutorial Full Screen</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://theaccesspond.com/2009/03/26/using-inspect32-to-inspect-links-and-images-on-web-sites/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ColdFusion and Accessibility</title>
		<link>http://theaccesspond.com/2008/09/14/coldfusion-and-accessibility/</link>
		<comments>http://theaccesspond.com/2008/09/14/coldfusion-and-accessibility/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 07:20:34 +0000</pubDate>
		<dc:creator>Ken Nakata</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://theaccesspond.com/?p=71</guid>
		<description><![CDATA[As my wife Laura can attest, I&#8217;ve been burning the midnight oil recently working on my secret project that involves a lot of Adobe ColdFusion.  I&#8217;ve been an on-again-off-again CF author for some time, first working with ColdFusion 4 (or was it 3?) back in 1998 when I put together the CAVNET site for my friend [...]]]></description>
			<content:encoded><![CDATA[<p>As my wife Laura can attest, I&#8217;ve been burning the midnight oil recently working on my secret project that involves a lot of Adobe ColdFusion.  I&#8217;ve been an on-again-off-again CF author for some time, first working with ColdFusion 4 (or was it 3?) back in 1998 when I put together the <a href="http://www.cavnet.org">CAVNET</a> site for my friend <a href="mailto:mdubin@pobox.com">Marc Dubin</a> (send him&#8211;not me&#8211; the hate mail for not keeping it up-to-date since he left the Department of Justice).  I haven&#8217;t coded anything recently in CF 8 and boy has it changed.  And, it has me rethinking some of my ideas about accessibility.</p>
<p>For those of you who might not know what it is, ColdFusion is used on web application servers to do much of the magic that we associate with Internet web pages.  It&#8217;s used for querying databases and creating content that then magically shows up on your browser when you go to Amazon to buy a book or Alaska Airlines to book a flight.  CF is kinda like PHP or Active Server Pages.  The neat thing for techno dummies like me is that CF is super-easy to use.</p>
<p>In fact, potentially too easy&#8230; which gets me to <strong>New Accessibility Thought Number </strong><strong>One:</strong><em><strong> &#8220;Accessibility Might Get Harder as Tools Get Easier.&#8221; </strong> </em>In CF, it&#8217;s ridiculously easy to do things that would otherwise be really hard.  Use a &lt;CFCHART&gt; tag and your data gets magically transformed into a JPEG, use a &lt;CFDOCUMENT&gt; tag and your printer-ugly HTML suddenly becomes a beautifully formatted Acrobat file that you can e-mail to your client.  Sure, there are a million and one attributes that each tag can take&#8211; and these all affect some little part of what comes out&#8211; but I ultimately have no idea how this stuff works.  Worse yet, I have no idea how it will work with the different AT&#8217;s out there.  Now don&#8217;t get me wrong: I think Macromedia (and now Adobe) are industry leaders in accessibility.  But, from working on the &#8220;other side&#8221; of accessibility for so long, I also know that solutions are often a matter of rolling up your sleeves and playing with the code and seeing how a screen reader hits it.  Now, when I hit <em>View | Source </em> in IE and see what CF created, my head spins looking at the code that I have no control over (if you don&#8217;t believe me, try an innocent-looking &lt;CFTREE&gt; control in your CF template and see what shows up).  Then again, my dad has the same complaint about his new Toyota and not being able to fix it like his good ole Ford.</p>
<p>At the same time, my recent foray to the other side of the techie world has me babbling heretical <strong>New Accessibility Thought Number Two:<em>&#8220;Retrofitting Ain&#8217;t That Bad.&#8221;  </em><span style="font-weight: normal;">When you create a new building and forget to put in a ramp, retrofitting means calling out the jack hammers and making some really costly repairs.  In most HTML and CSS, it isn&#8217;t that bad provided that the design isn&#8217;t that dynamic to start.  The techniques are well-understood.  Here comes the real heresy, however&#8211; in the mock-up and brainstorming phase, accessibility sometimes gets in the way.  Why put an alt attribute on an image if I&#8217;m still so early in the design phase that I&#8217;m not even sure I&#8217;m going to keep the image at all?  Why put headers and id attributes in table cell tags when I&#8217;m not even sure how many columns and rows the table is ultimately going to have?  I can&#8217;t believe that even the most die-hard, accessibility-oriented web developers out there make their rough drafts fully accessible&#8211; and it&#8217;s precisely because they know that retrofitting some things are just going to be really easy later on.</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://theaccesspond.com/2008/09/14/coldfusion-and-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

