Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 19 of 19

Thread: Call Extension Data or Meta Dscription in xml package

  1. #1
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Call Extension Data or Meta Dscription in xml package

    Ok, I've finally worked out a few things and my redesign is almost complete: https://www.davidscottco.com/default.aspx?skinid=3

    The Accordion on the sidebar functions in https and I have a slidehow that is built using the xml package below:

    Code:
    <?xml version="1.0" standalone="yes" ?>
    <!-- ###################################################################################################### -->
    <!-- Copyright AspDotNetStorefront.com, 1995-2009.  All Rights Reserved.					                -->
    <!-- http://www.aspdotnetstorefront.com														                -->
    <!-- For details on this license please visit  the product homepage at the URL above.		                -->
    <!-- THE ABOVE NOTICE MUST REMAIN INTACT.																	-->
    <!-- ###################################################################################################### -->
    <!-- #20091103  Clone from rev.categories.xml.config (Modify to show only the top level from category)	  # -->
    <!-- ###################################################################################################### -->
    <package version="2.1" displayname="Categories" debug="false" includeentityhelper="true">
        <PackageTransform>
            <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aspdnsf="urn:aspdnsf" exclude-result-prefixes="aspdnsf">
                <xsl:output method="html" omit-xml-declaration="yes"/>
    
                <xsl:param name="CategoryID">
                    <xsl:choose>
                        <xsl:when test="/root/System/PageName = 'showmanufacturer.aspx' or /root/System/PageName = 'showsection.aspx' or /root/System/PageName = 'showdistributor.aspx' or /root/System/PageName = 'showvector.aspx' or /root/System/PageName = 'showgenre.aspx'">0</xsl:when>
                        <xsl:when test="/root/System/PageName = 'showcategory.aspx' and boolean(/root/QueryString/categoryid)">
                            <xsl:value-of select="/root/QueryString/categoryid"/>
                        </xsl:when>
                        <xsl:when test="(/root/System/PageName = 'showcategory.aspx' or /root/System/PageName = 'showproduct.aspx') and boolean(/root/Cookies/lastviewedentityinstanceid) and /root/Cookies/lastviewedentityname = 'Category'">
                            <xsl:value-of select="/root/Cookies/lastviewedentityinstanceid"/>
                        </xsl:when>
                        <xsl:otherwise>0</xsl:otherwise>
                    </xsl:choose>
                </xsl:param>
    
                <xsl:param name="AncestorID">
                    <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
                        <xsl:value-of select="ancestor::*/EntityID"/>
                    </xsl:for-each>
                </xsl:param>
    
                <xsl:param name="ParentID">
                    <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
                        <xsl:value-of select="parent::*/EntityID"/>
                    </xsl:for-each>
                </xsl:param>
    
    			
    
                <xsl:template match="/">
                    <xsl:element name="ul">
                        <xsl:attribute name="class">
                            <![CDATA[bjqs]]>
                        </xsl:attribute>
    
                        <xsl:apply-templates select="/root/EntityHelpers/Category/Entity">
                            <xsl:with-param name="prefix" select="''"/>
                       </xsl:apply-templates>
    					
                    </xsl:element>
                </xsl:template>
    
    			<xsl:template match="Entity">
                    <xsl:param name="prefix"></xsl:param>
                    <xsl:param name="eName" select="aspdnsf:GetMLValue(Name)" />
    
                    <li>
                    
                    
                        <xsl:value-of select="$prefix" />
                        <xsl:if test="number(ParentEntityID) != 0">
                            <span class="catMark">&gt;&gt;</span>&#160;
                        </xsl:if>
                        <a href="{concat('c-',EntityID,'-',SEName,'.aspx')}">
                            <xsl:if test="EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID">
                                <xsl:attribute name="style">
    								font-weight:bold</xsl:attribute>
                            </xsl:if>
                            <div id="name"><xsl:value-of select="$eName"/></div>
                            <div id="smeta">(!METADESCRIPTION!)</div>
                            <xsl:value-of select="aspdnsf:LookupEntityImage(EntityID, 'Category', 'large', 0, '')" disable-output-escaping="yes" /> 
                        </a>
    
    					<!-- Hide child level
                        <xsl:if test="count(child::Entity)&gt;0 and (EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID)">
                            <ul class="tame2">
                                <xsl:apply-templates select="Entity">
                                    <xsl:with-param name="prefix" select="concat($prefix, '&#160;&#0160;')"/>
                                </xsl:apply-templates>
                            </ul>
                        </xsl:if>
    					-->
                    </li>
                </xsl:template>
    
            </xsl:stylesheet>
        </PackageTransform>
    </package>
    But, I'd like to add the meta description to the slideshow. I tried to put the following into the xmlpackage, but it didn't work for me.
    Code:
    <div id="smeta">(!METADESCRIPTION!)</div>
    Anyone know how I can get that, or a duplicate field, I was thinking extension data that just contained text, to display?

    Thanks!
    Matt

  2. #2
    Skriver is offline Senior Member
    Join Date
    Apr 2012
    Posts
    188

    Default

    You could try something like this to call the Extension Data

    SQL Query

    <query name="Categories" rowElementName="Category">
    <sql>
    <![CDATA[
    select ExtensionData from Category where CategoryID = @CatID
    ]]>
    </sql>
    <queryparam paramname="@CatID" paramtype="runtime" requestparamname="CatID" sqlDataType="int" defvalue="0" validationpattern="" />
    </query>

    XSL Code

    <xsl:variable name="CatExt">
    <xsl:value-of select="aspdnsfecode(/root/Categories/Category/ExtensionData)" />
    </xsl:variable>

  3. #3
    Skriver is offline Senior Member
    Join Date
    Apr 2012
    Posts
    188

    Default

    No idea why that smiley is there

    the smiley is a : with a D after

  4. #4
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Thanks

    Skriver, where do I add the sql query?

  5. #5
    Skriver is offline Senior Member
    Join Date
    Apr 2012
    Posts
    188

    Default

    Put it before the opening <PackageTransform> tag. The code below works on our category pages to call Extension Data we use as an additional text box. Can't see any reason why similar code would not work in your xml package. You may just need to check the naming but should be ok

  6. #6
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Nothing yet.

    I added your code into my xml package below and it is not showing. Any ideas on what I did wrong?

    Code:
    <?xml version="1.0" standalone="yes" ?>
    <!-- ###################################################################################################### -->
    <!-- Copyright AspDotNetStorefront.com, 1995-2009.  All Rights Reserved.					                -->
    <!-- http://www.aspdotnetstorefront.com														                -->
    <!-- For details on this license please visit  the product homepage at the URL above.		                -->
    <!-- THE ABOVE NOTICE MUST REMAIN INTACT.																	-->
    <!-- ###################################################################################################### -->
    <!-- #20091103  Clone from rev.categories.xml.config (Modify to show only the top level from category)	  # -->
    <!-- ###################################################################################################### -->
    <package version="2.1" displayname="Categories" debug="false" includeentityhelper="true">
    
    <query name="Categories" rowElementName="Category">
    <sql>
    <![CDATA[
    select ExtensionData from Category where CategoryID = @CatID
    ]]>
    </sql>
    <queryparam paramname="@CatID" paramtype="runtime" requestparamname="CatID" sqlDataType="int" defvalue="0" validationpattern="" />
    </query>
    
        <PackageTransform>
            <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aspdnsf="urn:aspdnsf" exclude-result-prefixes="aspdnsf">
                <xsl:output method="html" omit-xml-declaration="yes"/>
    
                <xsl:param name="CategoryID">
                    <xsl:choose>
                        <xsl:when test="/root/System/PageName = 'showmanufacturer.aspx' or /root/System/PageName = 'showsection.aspx' or /root/System/PageName = 'showdistributor.aspx' or /root/System/PageName = 'showvector.aspx' or /root/System/PageName = 'showgenre.aspx'">0</xsl:when>
                        <xsl:when test="/root/System/PageName = 'showcategory.aspx' and boolean(/root/QueryString/categoryid)">
                            <xsl:value-of select="/root/QueryString/categoryid"/>
                        </xsl:when>
                        <xsl:when test="(/root/System/PageName = 'showcategory.aspx' or /root/System/PageName = 'showproduct.aspx') and boolean(/root/Cookies/lastviewedentityinstanceid) and /root/Cookies/lastviewedentityname = 'Category'">
                            <xsl:value-of select="/root/Cookies/lastviewedentityinstanceid"/>
                        </xsl:when>
                        <xsl:otherwise>0</xsl:otherwise>
                    </xsl:choose>
                </xsl:param>
    
                <xsl:param name="AncestorID">
                    <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
                        <xsl:value-of select="ancestor::*/EntityID"/>
                    </xsl:for-each>
                </xsl:param>
    
                <xsl:param name="ParentID">
                    <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
                        <xsl:value-of select="parent::*/EntityID"/>
                    </xsl:for-each>
                </xsl:param>
    
    			
    
                <xsl:template match="/">
                    <xsl:element name="ul">
                        <xsl:attribute name="class">
                            <![CDATA[bjqs]]>
                        </xsl:attribute>
    
                        <xsl:apply-templates select="/root/EntityHelpers/Category/Entity">
                            <xsl:with-param name="prefix" select="''"/>
                       </xsl:apply-templates>
    					
                    </xsl:element>
                </xsl:template>
    
    			<xsl:template match="Entity">
                    <xsl:param name="prefix"></xsl:param>
                    <xsl:param name="eName" select="aspdnsf:GetMLValue(Name)" />
    
                    <li>
                    
                    
                        <xsl:value-of select="$prefix" />
                        <xsl:if test="number(ParentEntityID) != 0">
                            <span class="catMark">&gt;&gt;</span>&#160;
                        </xsl:if>
                        <a href="{concat('c-',EntityID,'-',SEName,'.aspx')}">
                            <xsl:if test="EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID">
                                <xsl:attribute name="style">
    								font-weight:bold</xsl:attribute>
                            </xsl:if>
                            <div id="name"><xsl:value-of select="$eName"/></div>
                            <div id="smeta">
    						<xsl:variable name="CatExt">
    						<xsl:value-of select="aspdnsf:Decode(/root/Categories/Category/ExtensionData)" />
    						</xsl:variable> 
    						</div>
                            <xsl:value-of select="aspdnsf:LookupEntityImage(EntityID, 'Category', 'large', 0, '')" disable-output-escaping="yes" /> 
                        </a>
    
    					<!-- Hide child level
                        <xsl:if test="count(child::Entity)&gt;0 and (EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID)">
                            <ul class="tame2">
                                <xsl:apply-templates select="Entity">
                                    <xsl:with-param name="prefix" select="concat($prefix, '&#160;&#0160;')"/>
                                </xsl:apply-templates>
                            </ul>
                        </xsl:if>
    					-->
                    </li>
                </xsl:template>
    
            </xsl:stylesheet>
        </PackageTransform>
    </package>
    Here's that link again: https://www.davidscottco.com/default.aspx?skinid=3

  7. #7
    Skriver is offline Senior Member
    Join Date
    Apr 2012
    Posts
    188

    Default

    have you anything in the category Extension Data?

  8. #8
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Yes

    I do have data there in plain text. Is it supposed to be formatted?

    For instance, the Home Healthcare category (slide 2 or 3) has the following in the extension data field.

    "Test extension data...Test extension data...Test extension data...Test extension data...Test extension data...Test extension data...Test extension data...Test extension data..."

  9. #9
    Skriver is offline Senior Member
    Join Date
    Apr 2012
    Posts
    188

    Default

    Hmm I think its because our xmlpackage is using a bespoke String Resource to call the data.

    This thread should be able to help you, if not I would raise a ticket with Support

    http://forums.aspdotnetstorefront.co...Extension-Data

  10. #10
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Still no luck

    Hey Skriver,

    I read that thread, but it didn't help.

    Matt

  11. #11
    GoVedia is offline Member
    Join Date
    Oct 2012
    Location
    Orange, CA
    Posts
    98

    Default

    @Mtuttle,

    First off, what version of ASPDNSF are you working with? If 9 or later, you will want to have a look at the skin tokens here: http://manual.aspdotnetstorefront.co...in-tokens.aspx (<%$ Tokens:METADESCRIPTION %>) to pull in the meta description.

    Secondly, the query you are trying to use to pull in the extension data is expecting a runtime parameter "CatID", which is most likely not being provided since you are executing the XML package on your homepage.

    Hope that helps!
    Robert
    Robert Kanaan
    AspDotNetStorefront Development Partner
    robert@GoVedia.com
    408-758-8845

    GoVedia
    http://GoVedia.com
    Approved AspDotNetStorefront Development Partner
    AspDotNetStorefront Recommended Reseller

  12. #12
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Thanks

    Hey Robert,

    Thanks for the reply. I'm using ML8. How would I get the category id to be pulled since it is on the homepage?

  13. #13
    GoVedia is offline Member
    Join Date
    Oct 2012
    Location
    Orange, CA
    Posts
    98

    Default Modify Your Query

    Are you setting up a slide for each category? If so, you can modify your query to retrieve the extension data field for every category, and not have to worry about the runtime parameter.

    Like so:
    Code:
    <query name="Categories" rowElementName="Category">
    <sql>
    <![CDATA[
    SELECT CategoryID, ExtensionData FROM Category WITH(nolock)
    ]]>
    </sql>
    </query>
    Then, insert the following code where you want your meta data to appear:
    Code:
    <div id="smeta"><xsl:value-of select="/root/Categories/Category[CategoryID=EntityID]/ExtensionData" disable-output-escaping="yes" /></div>
    Let me know if that works out for you.
    Robert
    Robert Kanaan
    AspDotNetStorefront Development Partner
    robert@GoVedia.com
    408-758-8845

    GoVedia
    http://GoVedia.com
    Approved AspDotNetStorefront Development Partner
    AspDotNetStorefront Recommended Reseller

  14. #14
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Div shows, not populating

    Hi Robert,

    I am setting up a category slideshow here: https://www.davidscottco.com/ and my extension data isn't getting pulled in with that change. The div is showing in Firebug but on info is being called. Does that make sense?

    Here's my xmlpackage:

    Code:
    <?xml version="1.0" standalone="yes" ?>
    <!-- ###################################################################################################### -->
    <!-- Copyright AspDotNetStorefront.com, 1995-2009.  All Rights Reserved.					                -->
    <!-- http://www.aspdotnetstorefront.com														                -->
    <!-- For details on this license please visit  the product homepage at the URL above.		                -->
    <!-- THE ABOVE NOTICE MUST REMAIN INTACT.																	-->
    <!-- ###################################################################################################### -->
    <!-- #20091103  Clone from rev.categories.xml.config (Modify to show only the top level from category)	  # -->
    <!-- ###################################################################################################### -->
    <package version="2.1" displayname="Categories" debug="false" includeentityhelper="true">
    
    <query name="Categories" rowElementName="Category">
    <sql>
    <![CDATA[
    SELECT CategoryID, ExtensionData FROM Category WITH(nolock)
    ]]>
    </sql>
    </query>
    
        <PackageTransform>
            <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aspdnsf="urn:aspdnsf" exclude-result-prefixes="aspdnsf">
                <xsl:output method="html" omit-xml-declaration="yes"/>
    
                <xsl:param name="CategoryID">
                    <xsl:choose>
                        <xsl:when test="/root/System/PageName = 'showmanufacturer.aspx' or /root/System/PageName = 'showsection.aspx' or /root/System/PageName = 'showdistributor.aspx' or /root/System/PageName = 'showvector.aspx' or /root/System/PageName = 'showgenre.aspx'">0</xsl:when>
                        <xsl:when test="/root/System/PageName = 'showcategory.aspx' and boolean(/root/QueryString/categoryid)">
                            <xsl:value-of select="/root/QueryString/categoryid"/>
                        </xsl:when>
                        <xsl:when test="(/root/System/PageName = 'showcategory.aspx' or /root/System/PageName = 'showproduct.aspx') and boolean(/root/Cookies/lastviewedentityinstanceid) and /root/Cookies/lastviewedentityname = 'Category'">
                            <xsl:value-of select="/root/Cookies/lastviewedentityinstanceid"/>
                        </xsl:when>
                        <xsl:otherwise>0</xsl:otherwise>
                    </xsl:choose>
                </xsl:param>
    
                <xsl:param name="AncestorID">
                    <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
                        <xsl:value-of select="ancestor::*/EntityID"/>
                    </xsl:for-each>
                </xsl:param>
    
                <xsl:param name="ParentID">
                    <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
                        <xsl:value-of select="parent::*/EntityID"/>
                    </xsl:for-each>
                </xsl:param>
    
    			
    
                <xsl:template match="/">
                    <xsl:element name="ul">
                        <xsl:attribute name="class">
                            <![CDATA[bjqs]]>
                        </xsl:attribute>
    
                        <xsl:apply-templates select="/root/EntityHelpers/Category/Entity">
                            <xsl:with-param name="prefix" select="''"/>
                       </xsl:apply-templates>
    					
                    </xsl:element>
                </xsl:template>
    
    			<xsl:template match="Entity">
                    <xsl:param name="prefix"></xsl:param>
                    <xsl:param name="eName" select="aspdnsf:GetMLValue(Name)" />
    
                    <li>
                    
                    
                        <xsl:value-of select="$prefix" />
                        <xsl:if test="number(ParentEntityID) != 0">
                            <span class="catMark">&gt;&gt;</span>&#160;
                        </xsl:if>
                        <a href="{concat('c-',EntityID,'-',SEName,'.aspx')}">
                            <xsl:if test="EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID">
                                <xsl:attribute name="style">
    								font-weight:bold</xsl:attribute>
                            </xsl:if>
                            <div id="name"><xsl:value-of select="$eName"/></div>
                            <div id="smeta"><xsl:value-of select="/root/Categories/Category[CategoryID=EntityID]/ExtensionData" disable-output-escaping="yes" /></div>
                            <xsl:value-of select="aspdnsf:LookupEntityImage(EntityID, 'Category', 'large', 0, '')" disable-output-escaping="yes" /> 
                        </a>
    
    					<!-- Hide child level
                        <xsl:if test="count(child::Entity)&gt;0 and (EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID)">
                            <ul class="tame2">
                                <xsl:apply-templates select="Entity">
                                    <xsl:with-param name="prefix" select="concat($prefix, '&#160;&#0160;')"/>
                                </xsl:apply-templates>
                            </ul>
                        </xsl:if>
    					-->
                    </li>
                </xsl:template>
    
            </xsl:stylesheet>
        </PackageTransform>
    </package>
    See anything I did wrong?

  15. #15
    GoVedia is offline Member
    Join Date
    Oct 2012
    Location
    Orange, CA
    Posts
    98

    Default Debug XML Package

    Hi Matt,

    Try debugging your xml package, to ensure that the extensiondata values are in the xml tree.

    If you can, copy the entirety of the tree and paste it here for me.

    <package version="2.1" displayname="Categories" debug="true" includeentityhelper="true">
    Last edited by GoVedia; 11-30-2012 at 09:35 AM.
    Robert Kanaan
    AspDotNetStorefront Development Partner
    robert@GoVedia.com
    408-758-8845

    GoVedia
    http://GoVedia.com
    Approved AspDotNetStorefront Development Partner
    AspDotNetStorefront Recommended Reseller

  16. #16
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Where do I find the tree?

    Still very new to asp, sorry if that's a dumb question.

  17. #17
    GoVedia is offline Member
    Join Date
    Oct 2012
    Location
    Orange, CA
    Posts
    98

    Default

    Note: This will cause data to be dumped on the front end of your website. Be cautious if doing so on a production site.

    First, set debug to true at the top of your xml package:
    Code:
    <package version="2.1" displayname="Categories" debug="true" includeentityhelper="true">
    Next, visit the appropriate page using that xml package. You should see several text area boxes filled with data. Look for the one labeled [yourxmlpackage]_store.runtime.xml

    Lastly, don't forget to set debug back to "false".
    Robert Kanaan
    AspDotNetStorefront Development Partner
    robert@GoVedia.com
    408-758-8845

    GoVedia
    http://GoVedia.com
    Approved AspDotNetStorefront Development Partner
    AspDotNetStorefront Recommended Reseller

  18. #18
    MTuttle is offline Junior Member
    Join Date
    Oct 2012
    Posts
    26

    Default Think I got it!

    Robert,

    Is this what you are looking for?

    Code:
    <root>
      <System>
        <IsAdminSite>False</IsAdminSite>
        <IsAdminSiteInt>0</IsAdminSiteInt>
        <CustomerID>365529</CustomerID>
        <DefaultVATSetting>1</DefaultVATSetting>
        <CustomerVATSetting>2</CustomerVATSetting>
        <UseVATSetting>2</UseVATSetting>
        <CustomerLevelID>0</CustomerLevelID>
        <CustomerLevelName>
        </CustomerLevelName>
        <CustomerFirstName>Guest</CustomerFirstName>
        <CustomerLastName>Guest</CustomerLastName>
        <CustomerFullName>Guest Guest</CustomerFullName>
        <SubscriptionExpiresOn>
        </SubscriptionExpiresOn>
        <CustomerRoles>Free,Admin,SuperAdmin,NoSubscription,Registered</CustomerRoles>
        <IsAdminUser>True</IsAdminUser>
        <IsSuperUser>True</IsSuperUser>
        <VAT.Enabled>false</VAT.Enabled>
        <VAT.AllowCustomerToChooseSetting>true</VAT.AllowCustomerToChooseSetting>
        <LocaleSetting>en-US</LocaleSetting>
        <CurrencySetting>USD</CurrencySetting>
        <CurrencyDisplayLocaleFormat>
        </CurrencyDisplayLocaleFormat>
        <WebConfigLocaleSetting>en-US</WebConfigLocaleSetting>
        <SqlServerLocaleSetting>en-US</SqlServerLocaleSetting>
        <PrimaryCurrency>USD</PrimaryCurrency>
        <PrimaryCurrencyDisplayLocaleFormat>
        </PrimaryCurrencyDisplayLocaleFormat>
        <Date>11/30/2012</Date>
        <Time>1:29 PM</Time>
        <SkinID>4</SkinID>
        <AffiliateID>0</AffiliateID>
        <IPAddress>72.70.228.9</IPAddress>
        <QueryStringRAW>
        </QueryStringRAW>
        <UseStaticLinks>
        </UseStaticLinks>
        <PageName>default.aspx</PageName>
        <FullPageName>/default.aspx</FullPageName>
        <XmlPackageName>rev.industries2</XmlPackageName>
        <StoreUrl>https://www.davidscottco.com/</StoreUrl>
        <CurrentDateTime>Fri, 30 Nov 2012 18:29:34 GMT</CurrentDateTime>
        <CustomerIsRegistered>true</CustomerIsRegistered>
        <RequestedPage>default.aspx</RequestedPage>
        <RequestedQuerystring>
        </RequestedQuerystring>
      </System>
      <QueryString />
      <Form />
      <Session />
      <Cookies>
        <SkinID>4</SkinID>
        <__utma>87760781.1655354329.1351526625.1354292118.1354298076.54</__utma>
        <__utmz>87760781.1351788103.10.2.utmcsr=forums.aspdotnetstorefront.com|utmccn=(referral)|utmcmd=referral|utmcct=/showthread.php</__utmz>
        <StatsView>Chart</StatsView>
        <CategoryFilterID>0</CategoryFilterID>
        <SectionFilterID>0</SectionFilterID>
        <ManufacturerFilterID>0</ManufacturerFilterID>
        <DistributorFilterID>0</DistributorFilterID>
        <GenreFilterID>0</GenreFilterID>
        <VectorFilterID>0</VectorFilterID>
        <ProductTypeFilterID>0</ProductTypeFilterID>
        <Referrer>http://forums.aspdotnetstorefront.com/showthread.php?41115-Category-Icons&amp;p=125329</Referrer>
        <ViewStatsSelectedIndex>0</ViewStatsSelectedIndex>
        <LastViewedEntityName>Category</LastViewedEntityName>
        <LastViewedEntityInstanceID>2</LastViewedEntityInstanceID>
        <LastViewedEntityInstanceName>Medical</LastViewedEntityInstanceName>
        <__utmc>87760781</__utmc>
        <ASPDNSFGUID>C51EA9B41854B8E4AB0E07FAAE3BC4F0EAE240EE15FD44B0FB3742EB697D6A0A000B7D733B1F727E9AD5A3E42BEADFD0E5454475FC099D75937F78C6A8E3A506B38B8A496E507F1EFBCC7AFED8E91E271012D17ECFAD37AB8686C70455E88285C253D8C7D0DAAF56CC523C5B2220BFC88A66A616368E671F8679DFB471C9B078784C9F356195201A413907D9AFA89DA65AD855B56902679ADB8FF73F1793423CAFC048BDD57F939CCE63BED582D6E074828EC7EA</ASPDNSFGUID>
        <__utmb>87760781.8.10.1354298076</__utmb>
      </Cookies>
      <ServerVariables>
        <HTTP_HOST>www.davidscottco.com</HTTP_HOST>
        <HTTP_USER_AGENT>Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101 Firefox/16.0</HTTP_USER_AGENT>
        <AUTH_TYPE>Forms</AUTH_TYPE>
        <AUTH_USER>47beec5c-821b-4903-9285-c9710bf02e28</AUTH_USER>
        <AUTH_PASSWORD>
        </AUTH_PASSWORD>
        <HTTPS>on</HTTPS>
        <LOCAL_ADDR>172.16.20.212</LOCAL_ADDR>
        <PATH_INFO>/default.aspx</PATH_INFO>
        <PATH_TRANSLATED>D:\Inetpub\wwwroot\D01088 - David Scott Company\davidscottco.com\www\default.aspx</PATH_TRANSLATED>
        <SCRIPT_NAME>/default.aspx</SCRIPT_NAME>
        <SERVER_NAME>www.davidscottco.com</SERVER_NAME>
        <SERVER_PORT_SECURE>1</SERVER_PORT_SECURE>
        <HTTP_CLUSTER_HTTPS>
        </HTTP_CLUSTER_HTTPS>
      </ServerVariables>
      <Runtime>
        <IPAddress>72.70.228.9</IPAddress>
        <IsAdminSite>False</IsAdminSite>
        <StoreUrl>https://www.davidscottco.com/</StoreUrl>
        <CurrencySetting>USD</CurrencySetting>
        <IsSuperUser>True</IsSuperUser>
        <CustomerLastName>Guest</CustomerLastName>
        <PrimaryCurrency>USD</PrimaryCurrency>
        <WebConfigLocaleSetting>en-US</WebConfigLocaleSetting>
        <CurrencyDisplayLocaleFormat>
        </CurrencyDisplayLocaleFormat>
        <XmlPackageName>rev.industries2</XmlPackageName>
        <VAT.AllowCustomerToChooseSetting>True</VAT.AllowCustomerToChooseSetting>
        <AffiliateID>0</AffiliateID>
        <CustomerIsRegistered>true</CustomerIsRegistered>
        <SkinID>4</SkinID>
        <QueryStringRAW>
        </QueryStringRAW>
        <LocaleSetting>en-US</LocaleSetting>
        <CustomerLevelName>
        </CustomerLevelName>
        <FullPageName>/default.aspx</FullPageName>
        <CustomerLevelID>0</CustomerLevelID>
        <DefaultVATSetting>1</DefaultVATSetting>
        <SqlServerLocaleSetting>en-US</SqlServerLocaleSetting>
        <CustomerVATSetting>2</CustomerVATSetting>
        <IsAdminUser>True</IsAdminUser>
        <Date>11/30/2012</Date>
        <CustomerRoles>Free,Admin,SuperAdmin,NoSubscription,Registered</CustomerRoles>
        <VAT.Enabled>False</VAT.Enabled>
        <UseStaticLinks>False</UseStaticLinks>
        <Time>1:29 PM</Time>
        <SubscriptionExpiresOn>
        </SubscriptionExpiresOn>
        <CustomerFirstName>Guest</CustomerFirstName>
        <PageName>default.aspx</PageName>
        <UseVATSetting>2</UseVATSetting>
        <CustomerFullName>Guest Guest</CustomerFullName>
        <PrimaryCurrencyDisplayLocaleFormat>
        </PrimaryCurrencyDisplayLocaleFormat>
        <IsAdminSiteInt>0</IsAdminSiteInt>
      </Runtime>
      <Categories>
        <Category>
          <CategoryID>1</CategoryID>
          <ExtensionData>Motorcycle gel seat pads are the best solution for a more comfortable motorcycle ride. Motorcycle gel pads alleviate riding distress by absorbing unpleasant vibrations from the road.</ExtensionData>
        </Category>
        <Category>
          <CategoryID>2</CategoryID>
          <ExtensionData>Manufacturer and Distributor of Hospital Surgical Supplies for Operating Rooms, Hospitals, SurgiCenters, clinics, labs, medical offices.</ExtensionData>
        </Category>
        <Category>
          <CategoryID>3</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>4</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>5</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>6</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>7</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>8</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>9</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>10</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>11</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>12</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>13</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>14</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>15</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>16</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>17</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>18</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>19</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>20</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>21</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>22</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>23</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>24</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>25</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>26</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>27</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>28</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>29</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>30</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>31</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>32</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>33</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>34</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>35</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>36</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>37</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>38</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>39</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>40</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>41</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>42</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>43</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>44</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>45</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>46</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>47</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>48</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>49</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>50</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>51</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>52</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>53</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>54</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>55</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>56</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>57</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>58</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>59</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>60</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>61</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>62</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>63</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>64</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>65</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>66</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>67</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>68</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>69</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>70</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>71</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>72</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>73</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>74</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>75</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>76</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>77</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>78</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>79</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>80</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>81</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>82</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>83</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>84</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>85</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>86</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>87</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>88</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>89</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>90</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>91</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>92</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>93</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>94</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>95</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>96</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>97</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>98</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>99</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>100</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>101</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>102</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>103</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>104</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>105</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>106</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>107</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>108</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>109</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>110</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>111</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>112</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>113</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>114</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>115</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>116</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>117</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>118</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>119</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>120</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>121</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>122</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>123</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>124</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>125</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>126</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>127</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>128</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>129</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>130</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>131</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>132</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>133</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>134</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>135</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>136</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>137</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>138</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>139</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>140</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>141</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>142</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>143</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>144</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>145</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>146</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>147</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>148</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>149</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>150</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>151</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>152</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>153</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>154</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>155</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>156</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>157</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>158</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>159</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>160</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>161</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>162</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>163</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>164</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>165</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>166</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>167</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>168</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>169</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>170</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>171</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>172</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>173</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>174</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>175</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>176</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>177</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>178</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>179</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>180</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>181</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>182</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>183</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>184</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>185</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>186</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>187</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>188</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>189</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>190</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>191</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>192</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>193</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>194</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>195</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>196</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>197</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>198</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>199</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>200</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>201</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>202</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>203</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>204</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>205</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>206</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>207</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>208</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>209</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>210</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>211</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>212</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>213</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>214</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>215</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>216</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>217</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>218</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>219</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>220</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>221</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>222</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>223</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>224</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>225</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>226</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>227</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>228</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>229</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>230</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>231</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>232</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>233</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>234</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>235</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>236</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>237</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>238</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>239</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>240</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>241</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>242</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>243</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>244</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>245</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>246</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>247</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>248</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>249</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>250</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>251</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>252</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>253</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>254</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>255</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>256</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>257</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>258</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>259</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>260</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>261</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>262</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>263</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>264</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>265</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>266</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>267</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>268</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>269</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>270</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>271</CategoryID>
          <ExtensionData>These translucent gel sheets are amazing. They can be scissor or die cut to your exact shape.</ExtensionData>
        </Category>
        <Category>
          <CategoryID>272</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>273</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>274</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>275</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>276</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>277</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>278</CategoryID>
          <ExtensionData>Anti Fatigue Floor Mats come in many different colors, styles and application uses. We offer a complete line of:
    
    Rubber Floor Mats are extremely durable virgin rubber anti fatigue floor mats.
    Comfort Anti Fatigue Floor Mats are nitrile closed cell anti fatigue floor mats that are very comfortable.
    Autoclavable Floor mats are sterilizable.
    Wearwell Mats ,an industry leader with diverse product options for anti fatigue floor mats. </ExtensionData>
        </Category>
        <Category>
          <CategoryID>279</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>280</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>281</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>282</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>283</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>284</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>285</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>286</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>287</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>288</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>289</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>290</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>291</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>292</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>293</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>294</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>295</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>296</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>297</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>298</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>299</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>300</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>301</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>302</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>303</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>304</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>305</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>306</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>307</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>308</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>309</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>310</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>311</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>312</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>313</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>314</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>315</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>316</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>317</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>318</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>319</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>320</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>321</CategoryID>
          <ExtensionData />
        </Category>
        <Category>
          <CategoryID>322</CategoryID>
          <ExtensionData>Test extension data...Test extension data...Test extension data...Test extension data...Test extension data...Test extension data...Test extension data...Test extension data...</ExtensionData>
        </Category>
      </Categories>
      <EntityHelpers>
        <Category>
          <Entity>
            <EntityID>2</EntityID>
            <Name>Medical</Name>
            <ColWidth>4</ColWidth>
            <Description>Manufacturer and Distributor of Hospital Surgical Supplies for Operating Rooms, Hospitals, SurgiCenters, clinics, labs, medical offices.</Description>
            <SEKeywords />
            <SEDescription>Manufacturer and Distributor of Hospital Surgical Supplies for Operating Rooms, Hospitals, SurgiCenters, clinics, labs, medical offices.</SEDescription>
            <SETitle>Gel pads | Operating Room Supplies | OR Table Pads | Operating Room | Surgical Supplies | Hospital Products | Surgical Positioners</SETitle>
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.default_industry_medical.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>medical</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>0</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary>&lt;FONT size=3&gt;&lt;STRONG&gt;Please select from desired category below:&lt;/STRONG&gt;&lt;/FONT&gt;</Summary>
            <SkinID>0</SkinID>
            <TemplateName />
            <Entity>
              <EntityID>6</EntityID>
              <Name>Anesthesia Screens  Nerve Stimulators and more...</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Malleable Anesthesia Screen &amp;#8226; Flexible Anesthesia Screen &amp;#8226;&amp;nbsp; Ether Screen &amp;#8226; Rigid Anesthesia Screen&amp;nbsp;&amp;#8226;&amp;nbsp;Table Mount Anesthesia Screens&amp;nbsp;&amp;#8226; Rail Mount Anesthesia Screens&amp;#8226; Prone Positioners&amp;nbsp;&amp;#8226; Stick-on Temperature Monitor &amp;#8226; Stick on Thermometers &amp;#8226; Anesthesia Utility Tables &amp;#8226; Peripheral Nerve Stimulators &amp;#8226; Muscle Relaxant Monitor&amp;nbsp;&amp;#8226; Nerve Stimulators&amp;nbsp;&amp;#8226; Anesthesia Nerve Stimulators&lt;/strong&gt;&lt;/font&gt;&lt;hr style=""&gt;
    &lt;/div&gt;
    &lt;font color="#000080"&gt;&lt;font size="3"&gt;&lt;strong&gt;Please choose from one of these categories:&lt;/strong&gt;&lt;/font&gt;&lt;span style="font-size: large;"&gt;&lt;hr style=""&gt;
    &lt;/span&gt;&lt;/font&gt;
    </Description>
              <SEKeywords>anesthesia, anesthesia products, anesthesia accessories, temperature monitors, malleable anesthesia screens, adjustable anesthesia screens, rigid anesthesia screens, anesthesia utility tables, anesthesia</SEKeywords>
              <SEDescription>Anesthesia Products such as Anestesia Screens and Prone Positioners</SEDescription>
              <SETitle>Prone Positoners | Anesthesia Products | Anesthesia Screens | Malleable Flexible Anesthesia Screens | Anesthesia Utility Tables|  David Scott Company</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>anesthesia-screens-nerve-stimulators-and-more</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>15</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>300</EntityID>
                <Name>Anesthesia Screens</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Adjustable Height Anesthesia Screen &amp;#8226; Anesthesia Screens &amp;#8226; Malleable Flexible Anesthesia Screens &amp;#8226; Rigid Anesthesia Screens&amp;nbsp;&amp;#8226; Table Mount Anesthesia Screens&amp;nbsp;&amp;#8226; Rail Mount Anesthesia Screens&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;br&gt;
    </Description>
                <SEKeywords>Anethesia Screens, ether screens, adjustable anesthesia screens, malleable anesthestia screens, table mount anthesesia screens, rigid anesthesia screens</SEKeywords>
                <SEDescription />
                <SETitle>Anesthesia Screens | Malleable Flexible Anesthesia Screens | Rigid Anethesia Screens | David Scott Company</SETitle>
                <SENoScript />
                <SEAltText>Anesthesia Screens</SEAltText>
                <ParentEntityID>6</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>anesthesia-screens</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>5</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>299</EntityID>
                <Name>Nerve Stimulators Anesthesia Peripheral</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Nerve Stimulators Anesthesia &amp;#8226;Peripheral Nerve Stimulators &amp;#8226; Muscle Relaxant Monitor&amp;nbsp;&amp;#8226; Anesthesia Nerve Stimulators&amp;nbsp;&amp;#8226; Neuro Stimulators&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Periphereal Nerve Stimulators for Anesthesia|  David Scott Company | Anesthesia Products</SETitle>
                <SENoScript />
                <SEAltText>Peripheral Nerve Stimulators</SEAltText>
                <ParentEntityID>6</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>nerve-stimulators-anesthesia-peripheral</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>11</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>24</EntityID>
              <Name>Arm Boards- Arm Supports</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Arm Boards &lt;font&gt;&amp;#8226;&lt;/font&gt; Armboards &lt;font&gt;&amp;#8226;&lt;/font&gt; Surgical Arm Boards &lt;font&gt;&amp;#8226;&lt;/font&gt; Medical Arm Boards &lt;font&gt;&amp;#8226;&lt;/font&gt; Operating Table Arm Boards &lt;font&gt;&amp;#8226;&lt;/font&gt; Steris Arm Boards &lt;font&gt;&amp;#8226;&lt;/font&gt; Skytron Arm Boards &lt;font&gt;&amp;#8226;&lt;/font&gt; Hospital Arm Boards&lt;/font&gt;&lt;span style="font-weight: normal; font-size: large;"&gt;&lt;hr style=""&gt;
    &lt;/span&gt;&lt;font size="4" style="font-weight: normal;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/h1&gt;
    &lt;p&gt;&lt;span style="color: rgb(0, 0, 128); font-family: Tahoma, Verdana, sans-serif; background-color: rgb(255, 255, 255);"&gt;&lt;font size="3"&gt;Please choose from one of these categories:&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
              <SEKeywords>arm boards, medical arm boards, hospital arm boards, surgical arm boards, operating room arm boards, arm board pads, arm board accessories</SEKeywords>
              <SEDescription>Arm Boards. Order Medical Arm Boards, Arm Board Pads. David Scott Has Arm Boards, Hospital Arm Boards, Arm Board Pads, Medical Arm Boards, Surgical Arm Boards, Operating Room Arm Boards, Arm Board Pads and Accessories.</SEDescription>
              <SETitle>Arm Boards &amp;gt; Hospital Arm Boards Pads Medical Arm Boards Surgical Arm Boards</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>arm-boards-arm-supports</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>16</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1 style="TEXT-ALIGN: center; FONT-SIZE: 1.7em"&gt;Arm Boards&lt;/h1&gt;
    &lt;p&gt;Medical Arm Boards and Surgical Armboards help with patient stabilization during surgical procedures. arm boards help maintain optimal patient positioning in the operating room. David Scott carries a large inventory of surgical arm boards, medical arm boards, and arm board pads used on most operating tables in hospital operating rooms.&lt;/p&gt;
    &lt;p&gt;We carry arm boards from the top surgical arm board manufacturers. Find some of the lowest prices on arm boards, medical arm boards, hospital arm boards, surgical arm boards ideal for healthcare facilities, medical and surgical settings including: medical clinics, operating rooms, outpatient surgery centers, hospitals, emergency medical centers and more.&lt;/p&gt;
    &lt;p&gt;Arm Boards provide more cushioning and comfort for surgical patients. Surgical Arm Boards can be securely fastened to operating room tables and many arm boards lock easily to operating table side rails, these flexible patient positioners enable: seated, prone, or lateral patient positioning. Top quality arm boards are top easy to clean and long lasting. Find low prices on arm boards, medical arm boards, hospital arm boards, surgical arm boards all on sale and ready for immediate delivery in our secure, online store.&lt;/p&gt;
    &lt;br&gt;
    &lt;p style="TEXT-ALIGN: center; FONT-SIZE: 1.1em"&gt;&lt;strong&gt;Arm Boards &amp;amp; Hospital Arm Boards&lt;br&gt;
    Order Online&lt;/strong&gt;&lt;/p&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>27</EntityID>
                <Name>Arm Boards with Pad</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Arm Boards | Armboards | Surgical Arm Boards | Medical Arm Boards | Operating Table Arm Boards | Steris Arm Boards | Skytron Arm Boards | Hospital Arm Boards
    &lt;/font&gt;&lt;/h1&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Arm Boards with arm board Foam Pads for Operating Tables&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;font size="4"&gt;&lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Armboards with Pad</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>24</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>arm-boards-with-pad</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>7</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>167</EntityID>
                <Name>Arm Boards (No Pad)</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Arm Boards | Armboards
    | Surgical Arm Boards | Medical Arm Boards | Operating Table Arm Boards
    | Steris Arm Boards | Skytron Arm Boards | Hospital Arm Boards&lt;/font&gt;&lt;/h1&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Arm Boards without arm board pads for Operating Tables &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Armboards (No Pad)</SETitle>
                <SENoScript />
                <SEAltText>Armboards</SEAltText>
                <ParentEntityID>24</ParentEntityID>
                <DisplayOrder>2</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>arm-boards-no-pad</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>84</EntityID>
                <Name>Arm Board Foam Replacement Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Arm Boards | Armboards
    | Surgical Arm Boards | Medical Arm Boards | Operating Table Arm Boards
    | Steris Arm Boards | Skytron Arm Boards | Hospital Arm Boards&lt;/font&gt;&lt;/h1&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Replacement Foam Arm Board pads for Operating Table Arm boards&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Armboard Foam Replacement Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>24</ParentEntityID>
                <DisplayOrder>3</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>arm-board-foam-replacement-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>8</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>281</EntityID>
                <Name>Surgical Arm Boards</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Arm Boards | Armboards | Surgical Arm Boards | Medical Arm Boards | Operating Table Arm Boards | Steris Arm Boards | Skytron Arm Boards | Hospital Arm Boards
    &lt;/font&gt;&lt;/h1&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Arm Boards with arm board pads for Operating Tables&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;font size="4"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;font size="4"&gt;&lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Surgical Arm Boards</SETitle>
                <SENoScript />
                <SEAltText>Surgical Arm Boards</SEAltText>
                <ParentEntityID>24</ParentEntityID>
                <DisplayOrder>4</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>surgical-arm-boards</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>12</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>280</EntityID>
                <Name>Medical Arm Boards</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Arm Boards | Armboards | Surgical Arm Boards | Medical Arm Boards | Operating Table Arm Boards | Steris Arm Boards | Skytron Arm Boards | Hospital Arm Boards
    &lt;/font&gt;&lt;/h1&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Arm Boards with armboard pads for Operating Tables&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;font size="4"&gt;&lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Medical Arm Boards</SETitle>
                <SENoScript />
                <SEAltText>Medical Arm Boards</SEAltText>
                <ParentEntityID>24</ParentEntityID>
                <DisplayOrder>5</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>medical-arm-boards</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>13</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>166</EntityID>
              <Name>Arm Shields |  Toboggan Arm Guards</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;noscript&gt;Medical Arm Shields. Surgical Arm Shields. Toboggan Arm Shield Products. David Scott Company.&lt;/noscript&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Medical Arm Shields | Surgical Arm Shields | Toboggan Arm Shields | Toboggan Arm Guards&amp;nbsp;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-size: medium;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: medium;"&gt;| Surgical Arm Sleds&lt;/span&gt;&lt;/h1&gt;
    &lt;div align="center"&gt;&lt;span&gt;&lt;br&gt;
    &lt;/span&gt;&lt;/div&gt;
    </Description>
              <SEKeywords>medical arm shields, medical arm shield, surgical arm shields, surgical arm shield, toboggan arm shields, toboggan arm shield, arm shield, arm shields, armshields, surgery arm shield, surgery arm shields, toboggan style arm shield, patient arm shield, lexan arm shield, lexan arm shields, arm shield with gel pad, arm shields with gel pads, medical armshields, surgical armshields, david scott company, david scott co, medical arm shields, surgery arm shields</SEKeywords>
              <SEDescription>Medical Arm Shields. Surgical Arm Shields. Toboggan Arm Shield Products. David Scott Co. Provides A Wide Assortment Of Low Priced Medical Arm Shields and Toboggan Arm Shield Products. David Scott Co. - The Leading Distributor of Medical Supplies.</SEDescription>
              <SETitle>Medical Arm Shields | Surgical Arm Shields | Toboggan Arm Shield Products | Toboggan Arm Guards</SETitle>
              <SENoScript>Medical Arm Shields. Surgical Arm Shields. Toboggan Arm Shield Products. David Scott Company.</SENoScript>
              <SEAltText>Medical Arm Shields. Surgical Arm Shields. Toboggan Arm Shield Products. David Scott Co. Provides A Wide Assortment Of Low Priced Medical Arm Shields and Toboggan Arm Shield Products. David Scott Co. - The Leading Distributor of Medical Supplies.</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>arm-shields-toboggan-arm-guards</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>7</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1 style="font-size: 1.8em;"&gt;Medical Arm Shields | Surgical Arm Shields&lt;/h1&gt;
    &lt;p&gt;The medical arm shields and surgical arm shield products from David Scott are among the most durable and cost-effective medical arm shield products in the industry. Promote a more ergonomic atmosphere with the versatile surgical arms shields and toboggan arm shields from David Scott. Not only do medical arm shields enhance overall patient comfort during surgery, but medical arm shield products help prevent patient injury. Discover the amazing functionality and exceptional value of the toboggan arm shield, medical arm shield and surgical arm shield products by David Scott.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Medical Arm Shield Products&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The medical arm shield products by David Scott are highly beneficial tools for the operating room. The medical arm shields from David Scott are designed to help prevent operation-related injuries, strain and nerve damage. In addition, toboggan arm shields and surgical arm shields with gel pads are ideal for prolonged procedures where a patient is immobilized for long periods of time. For fully functional medical arm shield products, trust David Scott for wide assortment of surgical armshields.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Surgical Arm Shields&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Surgical arm shields are ideal for many types of surgeons and physicians. With a surgical arm shield securely in place, the physician's weight can rest upon the surgical arm shield rather than on the body or limbs of the patient. This promotes comfort and ease for both the doctor and the patient. Additionally, surgical arm shields help facilitate mobility for a smoother operation. To help ensure the safety and comfort of patients, browse the inventory of surgical arm shields and toboggan arm shields from David Scott.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Toboggan Arm Shield Products&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Toboggan arms shield products are especially useful for easy application and removal during an operation. For long operations, toboggan arm shields and medical armshields with gel pads offer the most accommodating features. Toboggan arm shields slide conveniently between the patient and the &lt;a href="http://www.davidscottco.com/c-39-amsco-steris-table-pads.aspx"&gt;surgical table pad&lt;/a&gt; with minimal disruptions. Select from several medical arm shields, lexan arm shields and toboggan arm shield products below.&lt;/p&gt;
    &lt;h2 style="border: medium none; font-size: 1em;"&gt;Medical arm shields and surgical arm shields offer a number of valuable benefits including:&lt;/h2&gt;
    &lt;ul&gt;
        &lt;li&gt;Surgical arm shield products slide conveniently between the surgical table pad and the patient to greatly improve stability&lt;/li&gt;
        &lt;li&gt;Toboggan arm shields are versatile for long operations and surgical procedures&lt;/li&gt;
        &lt;li&gt;Medical armshields help prevent the patient's arm or limb from sliding off the sides of the table&lt;/li&gt;
        &lt;li&gt;Surgery arm shields are designed to prevent muscle tension in the patient&lt;/li&gt;
        &lt;li&gt;With a lexan arm shield in place, medical professionals can rest upon the lexan arm shield rather than the patient&lt;/li&gt;
        &lt;li&gt;Medical arm shields help prevent interference with anesthesia lines&lt;/li&gt;
        &lt;li&gt;Surgical armshields help prevent nerve damage from pressure point sensitivity&lt;/li&gt;
        &lt;li&gt;Toboggan arm shields are rounded for quick and easy application and removal&lt;/li&gt;
    &lt;/ul&gt;
    &lt;h2 style="border: medium none; font-size: 1.1em; text-align: center;"&gt;Learn More About Medical Arm Shields, Surgical Arm Shields &amp;amp;&lt;br&gt;
    Toboggan Arm Shields &lt;br&gt;
    &lt;br&gt;
    Click Any Of The Surgical Arm Shield, Medical Arm Shield&lt;br&gt;
    Or Toboggan Arm Shield Products&lt;/h2&gt;
    &lt;br&gt;
    &lt;p&gt;&lt;font size="4"&gt;&lt;strong&gt;ArmShields &amp;#8226; Arm Shields &amp;#8226; Surgical Arm Shields &amp;#8226; Toboggan Arm Shields&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>79</EntityID>
              <Name>Bariatrics</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;noscript&gt;Bariatric Medical Supplies. Bariatric Patient Positioners. Bariatric Nissen Straps. Bariatric Restraints. Bariatric Stirrups. David Scott Company.&lt;/noscript&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Bariatric Medical Supplies &amp;amp; Bariatric Surgery Equipment&lt;/font&gt;&lt;/h1&gt;
    &lt;h2 style="border: medium none; text-align: center;"&gt;&lt;strong&gt;&lt;font size="3"&gt;Bariatric Medical Equipment&lt;/font&gt;&lt;/strong&gt;&lt;/h2&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;font size="3"&gt;Bariatrics | Bariatric Positioners | Medical Bariatric Restraints&lt;br&gt;
    Bariatric Stirrups | Bariatric Nissen&amp;#174; Straps&lt;/font&gt;&lt;/strong&gt;&lt;/div&gt;
    &lt;br&gt;
    &lt;br&gt;
    </Description>
              <SEKeywords>bariatric medical supplies, bariatric surgery equipment, bariatric surgery supplies, bariatric medical equipment, bariatric equipment, bariatric supplies, medical bariatric supplies, medical bariatric equipment, bariatric patient positioners, nissen straps, bariatric nissen straps, nissen bariatric straps, bariatric restraints, bariatric stirrups, bariatric surgical equipment, bariatric surgical supplies, bariatrics equipment, medical supplies for bariatrics, surgery equipment for bariatrics, surgery supplies for bariatrics, surgical bariatric equipment, bariatric surgery, medical equipment for bariatrics, david scott company, david scott co, bariatric medical supplies, bariatric surgery equipment</SEKeywords>
              <SEDescription>Bariatric Medical Supplies. Bariatric Surgery Equipment. Bariatric Patient Positioners, Nissen Straps, Stirrups. David Scott Has A Wide Assortment Of Bariatric Medical Supplies And Surgery Equipment From The Leading Manufacturers. David Scott Co. - The Leading Distributor of Bariatric Medical Supplies.</SEDescription>
              <SETitle>Bariatric Medical Supplies | Bariatric Surgery Equipment | Bariatric Patient Positioners, Nissen Straps, Stirrups | David Scott Company</SETitle>
              <SENoScript>Bariatric Medical Supplies. Bariatric Patient Positioners. Bariatric Nissen Straps. Bariatric Restraints. Bariatric Stirrups. David Scott Company.</SENoScript>
              <SEAltText>Bariatric Medical Supplies. Bariatric Patient Positioners. Bariatric Nissen Straps, Restraints, Stirrups. David Scott Co. Has A Wide Assortment Of Bariatric Medical Supplies From The Leading Bariatric Medical Equipment Manufacturers. David Scott Co. - The Leading Distributor of Bariatric Medical Supplies.</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>bariatrics</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>16</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1 style="font-size: 1.7em;"&gt;Bariatric Medical Supplies | Bariatric Surgery Equipment&lt;/h1&gt;
    &lt;p&gt;The bariatric medical supplies and bariatric surgery equipment from David Scott significantly improve the efficiency of bariatric operations for surgeons and health care professionals. The growing demand for bariatric surgery procedures makes it a necessity to use top quality bariatric medical supplies and bariatric surgical equipment. For a wide assortment of bariatric medical supplies, including bariatric patient positioners, bariatric stirrups, bariatric Nissen&amp;#174; straps as well as many other types of bariatric surgery equipment, David Scott the is the one-stop source for it all.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Bariatric Surgery Equipment From The Leading Manufacturers&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Improving the processes of bariatric surgery operations requires the industry's most advanced bariatric surgery equipment from the leading manufacturers of bariatric medical supplies. The premium bariatric surgery equipment and bariatric medical supplies from David Scott are designed from the top manufacturers of surgical bariatric equipment in the industry. David Scott provides an extensive selection of bariatric patient positioners, bariatric Nissen&amp;#174; straps and more. In addition, medical professionals can choose from a variety of bariatric patient restraints and bariatric surgical bean bags in many different sizes. The most advanced and versatile bariatric surgery supplies and bariatric medical equipment can be found at David Scott Company.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Surgical Bariatric Medical Supplies&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;David Scott provides a wide variety of surgical bariatric medical supplies for enhanced procedural management and efficiency. Hospital practitioners can greatly improve their processes and surgical performance with the industry-leading medical bariatric surgery equipment. David Scott offers surgical bariatric Nissen&amp;#174; straps and bariatric stirrups for optimal patient mobility and comfort. Additionally, the &lt;a href="http://www.davidscottco.com/p-237-bariatric-style-lift-assisted-stirrup.aspx"&gt;bariatric lift-assisted stirrup&lt;/a&gt; offers the ideal bariatric surgery equipment solution by offering a pneumatic lift-assisted stirrup feature designed to handle up to 800 lbs.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Bariatric Patient Positioners, Nissen&amp;#174; Straps And More&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Facilitate bariatric patient mobility and comfort with bariatric patient positioners, Nissen&amp;#174; bariatric straps and many other bariatric medical supplies and bariatric equipment from David Scott. For bariatric equipment offering the most accommodating and fully functional features, browse the inventory of bariatric medical supplies and bariatric surgery equipment from David Scott Company.&lt;/p&gt;
    &lt;h2 style="border: medium none; font-size: 1em;"&gt;Bariatric surgery supplies and surgical bariatric medical equipment offer a number of valuable benefits including:&lt;/h2&gt;
    &lt;ul&gt;
        &lt;li&gt;Bariatric positioners and other bariatric surgery supplies come in multiple sizes to accommodate to various patients.&lt;/li&gt;
        &lt;li&gt;Bariatric gel bean bags are made with Blue Diamond&amp;#174; Gel for additional comfort and protection.&lt;/li&gt;
        &lt;li&gt;Bariatric surgery equipment and surgical bariatric medical supplies are designed to minimize patient discomfort and injury.&lt;/li&gt;
        &lt;li&gt;The surgical bariatric stirrup with lift-assisted features offers convenient pneumatic lifting options.&lt;/li&gt;
        &lt;li&gt;Surgical bariatric medical supplies facilitate patient mobility during operations.&lt;/li&gt;
        &lt;li&gt;Bariatric surgery equipment and bariatric medical supplies are designed for optimal patient comfort.&lt;/li&gt;
        &lt;li&gt;The bariatric patient restraint straps are fully adjustable to accommodate to various patients.&lt;/li&gt;
        &lt;li&gt;Surgical bariatric medical equipment and bariatric medical supplies help prevent pressure point injuries&lt;a href="javascript:void(0);" onclick="mds();return false;" class="dsna"&gt;.&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;h2 style="border: medium none; font-size: 1.1em; text-align: center;"&gt;Learn More About Surgical Bariatric Medical Supplies, Bariatric Patient&lt;br&gt;
    Positioners &amp;amp; Bariatric Surgery Equipment&lt;br&gt;
    &lt;br&gt;
    Or Click Any Of The Bariatric Surgery Supplies &amp;amp;&lt;br&gt;
    Bariatric Medical Equipment For More Information&lt;/h2&gt;
    &lt;p style="text-align: center;"&gt;&lt;font size="4"&gt;&lt;strong&gt;Bariatrics &amp;#8226; Bariatric Positioners &amp;#8226; Medical Bariatric Restraints&lt;br&gt;
    Bariatric Stirrups &amp;#8226; Bariatric Nissen&lt;sup&gt;&amp;#174;&lt;/sup&gt; Straps&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;div id="dso"&gt;
    &lt;a href="http://www.americanbathind.com/bathroom-shower-enclosures-renovations-san-jose-ca.htm"&gt;shower enclosures san jose&lt;/a&gt; |
    &lt;a href="http://www.weldvent.com/"&gt;weld smoke&lt;/a&gt; |
    &lt;a href="http://www.dmc.org/?id=452&amp;amp;sid=1"&gt;sleep apnea detroit&lt;/a&gt; |
    &lt;a href="http://www.avatech.com/revitarchitecture"&gt;revit architecture&lt;/a&gt; |
    &lt;a href="http://www.mypigeonforgeandgatlinburg.com/"&gt;pigeon forge attractions&lt;/a&gt;&lt;br&gt;
    &lt;a href="http://www.lawndoctor.com/"&gt;lawn care&lt;/a&gt; |
    &lt;a href="http://www.custommarbledesign.com/"&gt;marble kitchen countertops&lt;/a&gt; |
    &lt;a href="http://www.dmc.org/spineback/"&gt;spine surgery detroit&lt;/a&gt; |
    &lt;a href="http://www.batterygiant.com/jazzy-wheelchair-replacement-battery.htm"&gt;jazzy wheelchair battery&lt;/a&gt;
    &lt;/div&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>274</EntityID>
              <Name>Bean Bag Positioners</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;noscript&gt;Surgical Bean Bag Positioner. Medical Bean Bags. Blue Diamond Gel Bean Bag Positioners.&lt;/noscript&gt;
        &lt;H1 align=center&gt;&lt;FONT size=3&gt;&lt;FONT color=#ff0000&gt;&lt;FONT color=#000000&gt;***&lt;/FONT&gt;BEAN BAG POSITIONERS ON SALE FOR A LIMITED TIME ONLY&lt;/FONT&gt;***&lt;/FONT&gt;&lt;/H1&gt;
        &lt;H1 style="TEXT-ALIGN: center"&gt;&lt;FONT size=3&gt;Surgical Bean Bag Positioner &amp;#8226; Medical Bean Bags &amp;#8226; Steep Trendelenburg Bean Bag Positioner &amp;#8226;&lt;FONT size=3&gt;&amp;nbsp;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: Tahoma, sans-serif"&gt;&lt;FONT size=3&gt;Surgical Bean Bags&lt;/FONT&gt;&amp;nbsp;&lt;/SPAN&gt;&amp;#8226;&lt;/FONT&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: Tahoma, sans-serif"&gt;&lt;FONT size=3&gt;&amp;nbsp;Medical Bean Bag Positioners&lt;/FONT&gt;&amp;nbsp;&lt;/SPAN&gt;&amp;#8226;&amp;nbsp;&lt;SPAN style="LINE-HEIGHT: 115%"&gt;&lt;FONT size=3 face=Verdana&gt;Bean Bag Positioners with integral Gel layer&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;#8226;&lt;SPAN style="LINE-HEIGHT: 115%"&gt;&lt;FONT face="Tahoma, sans-serif"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT size=3 face=Verdana&gt;Vac Pac style Bean Bags&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;#8226;&lt;/FONT&gt;&lt;STRONG&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: Tahoma, sans-serif"&gt;&lt;FONT size=4&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: Tahoma, sans-serif; FONT-SIZE: 10pt"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/H1&gt;
        &lt;H1 style="TEXT-ALIGN: center"&gt;&lt;FONT size=3&gt;The Butterfly&amp;#8482; Steep Trendelenburg Positioner&lt;/FONT&gt;&lt;SPAN style="FONT-SIZE: large"&gt;
        &lt;HR&gt;
        &lt;/SPAN&gt;&lt;/H1&gt;
        &lt;SPAN style="BACKGROUND-COLOR: rgb(255,255,255); FONT-FAMILY: Tahoma, Verdana, sans-serif; COLOR: rgb(0,0,128); FONT-SIZE: large"&gt;Please choose from one of these categories:&lt;/SPAN&gt;
        &lt;HR&gt;</Description>
              <SEKeywords>Surgical Bean Bag, Medical Bean Bag Positioner, surgical bean bag, bean bag positioner, medical bean bag, bean bag positioners, bean bag, surgical bean bags, medical bean bags, gel bean bag, gel bean bag, bean bags, surgery bean bag, surgery bean bags, patient bean bag, patient bean bags, patient positioner bean bags, bariatric bean bag, bean bags for surgery, bean bag for surgery, hospital bean bag, blue diamond bean bag, blue diamond gel bean bag, vac pac bean bag, medical bean bag positioner, surgical bean bag positioner, medical bean bag positioners, surgical bean bag positioners, medical bean bags for surgery, david scott company, vac-pac, vac pack, surgical bean bag, Butterfly Postioner</SEKeywords>
              <SEDescription>Surgical Bean Bag Positioner, Butterfly Steep Trendelenburg Positioner. Medical Bean Bags. Blue Diamond Gel Bean Bag Positioners for Surgery. David Scott Offers A Wide Assortment Of The Best Priced Medical Bean Bag Positioners For Many Types Of Surgery Procedures. Surgical Bean Bags for Optimal Patient Comfort From David Scott Company. Call 1-800-804-0333.</SEDescription>
              <SETitle>Surgical Bean Bag Positioner | Medical Bean Bags | Blue Diamond Gel Bean Bag Positioners | Vac Pacs</SETitle>
              <SENoScript>Surgical Bean Bag Positioner. Medical Bean Bags. Blue Diamond Gel Bean Bag Positioners.</SENoScript>
              <SEAltText>Surgical Bean Bag Positioner. Medical Bean Bags. Blue Diamond Gel Bean Bag Positioners. David Scott Offers A Wide Assortment Of The Best Priced Medical Bean Bag Positioners For Many Types Of Surgery Procedures. Surgical Bean Bags For Optimal Patient Comfort From David Scott Company.</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>bean-bag-positioners</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>18</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;H1 style="FONT-SIZE: 1.7em"&gt;Surgical Bean Bag Positioner | Medical Bean Bags | Bean Bag Positioner&lt;/H1&gt;
        &lt;BR&gt;
        &lt;BR&gt;
        &lt;DIV style="BORDER-BOTTOM: rgb(238,238,238) 1px solid; BORDER-LEFT: rgb(238,238,238) 1px solid; MARGIN: 0px 0px 5px 5px; FLOAT: right; HEIGHT: 170px; OVERFLOW: hidden; BORDER-TOP: rgb(238,238,238) 1px solid; BORDER-RIGHT: rgb(238,238,238) 1px solid"&gt;&lt;IMG style="MARGIN: -135px 10px 0pt" alt="Medical Vac Pac. Surgical Vac Pacs. Blue Diamond Gel Vac-Pac Positioners. David Scott Company Provides Medical Vac-Pac Positioners Designed For Optimal Patient Comfort During Surgical Procedures. Premium Surgical Vac Pacs From David Scott Co. - The Leading Distributor of Medical Supplies." src="images/beanbag%20in%20use.jpg" width=290 height=290&gt;&lt;/DIV&gt;
        &lt;P&gt;Surgical bean bag positioners and medical bean bags are ideal for improved surgical positioning. Medical bean bag positioners for surgery provide optimal patient comfort and stability. David Scott carries an extensive inventory of surgical bean bags, vac pac bean bag positioners and Blue Diamond&amp;#174; Gel bean bags in many different shapes and sizes. Check out our new Steep Trendelenburg Bean Bag positioner named The Butterfly&amp;#8482;. &lt;/P&gt;
        &lt;P&gt;&lt;STRONG style="FONT-SIZE: 1.4em"&gt;Medical Bean Bag Positioners&lt;/STRONG&gt;&lt;/P&gt;
        &lt;P&gt;Medical bean bag positioners offer a better method for patient positioning during surgical procedures. Medical bean bags for surgery procedures conform to the patient's body comfortably, preventing strain and promoting a more ergonomic position. In addition, surgical bean bag positioners and Blue Diamond&amp;#174; Gel bean bag positioners support the body in a way to help reduce tension and pressure points. By distributing the patient's weight evenly, the medical bean bag and surgical bean bag positioners help to prevent injury during an operation.&lt;/P&gt;
        &lt;P&gt;&lt;STRONG style="FONT-SIZE: 1.4em"&gt;Versatile Surgical Bean Bags&lt;/STRONG&gt;&lt;/P&gt;
        &lt;P&gt;David Scott carries versatile surgical bean bags and medical bean bag positioners from the top manufacturers of hospital bean bag equipment. Check out our new Steep Trendelenburg Bean Bag positioner named The Butterfly&amp;#8482;. Most of the surgical bean bags for patient positioning are designed with a durable polyurethane film for long lasting use. All surgical bean bags and medical bean bags feature a replaceable valve if damaged. In addition, David Scott provides a wide array of medical bean bag and surgical bean bag accessories for replacement and repair components. Discover the benefits of the premium surgical bean bags and medical bean bag positioners from David Scott. Check out our new Steep Trendelenburg Bean Bag positioner named The Butterfly&amp;#8482;.&lt;/P&gt;
        &lt;P&gt;&lt;STRONG style="FONT-SIZE: 1.4em"&gt;Patient Bean Bags With Blue Diamond&amp;#174; Gel&lt;/STRONG&gt;&lt;/P&gt;
        &lt;P&gt;Patient bean bags with Blue Diamond&amp;#174; Gel are some of the best for patient positioning. David Scott carries a large supply of Blue Diamond&amp;#174; Gel bean bag positioners in a variety of sizes. The patient positioning bean bags with Blue Diamond&amp;#174; Gel are useful for a wide range of applications. Additionally, gel bean bags provide more comfort while holding the patient securely during surgery. The increased comfort of gel bean bag positioners alleviates tension from pressure points and other sensitive areas. Check out our new Steep Trendelenburg Bean Bag positioner named The Butterfly&amp;#8482;.&lt;/P&gt;
        &lt;H2 style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; FONT-SIZE: 1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Medical bean bags and surgical bean bag positioners are beneficial in a number of ways:&lt;/H2&gt;
        &lt;UL&gt;
            &lt;LI&gt;Medical bean bags and surgical bean bag positioners are ideal for patient positioning and mobility during surgery.
            &lt;LI&gt;Surgical bean bags offer quick and easy repositioning, saving valuable time during operations.
            &lt;LI&gt;Patient bean bag positioners help prevent injury.
            &lt;LI&gt;Medical bean bag positioners and surgery bean bags hold patients securely during surgical procedures.
            &lt;LI&gt;Patient positioning bean bags for surgery help prevent discomfort caused by pressure points.
            &lt;LI&gt;Gel bean bags with Blue Diamond&amp;#174; Gel are among the most preferred for improved patient comfort.
            &lt;LI&gt;Bean bag positioners and vac pac surgical bean bags from David Scott come in multiple sizes and shapes.
            &lt;LI&gt;Bariatric bean bags are designed to significantly improved bariatric surgery procedures. &lt;/LI&gt;
        &lt;/UL&gt;
        &lt;H2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; FONT-SIZE: 1.1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Learn More About Medical Bean Bags &amp;amp; Surgical Bean Bag Positioners &lt;BR&gt;
        &lt;BR&gt;
        Or Click One Of The Premium Medical Bean Bag Positioners&lt;BR&gt;
        Or Surgical Bean Bags For More Information&lt;/H2&gt;
        &lt;DIV align=center&gt;&lt;STRONG&gt;Check out our new Steep Trendelenburg Bean Bag positioner named The Butterfly&amp;#8482;&lt;/STRONG&gt; &lt;/DIV&gt;
        &lt;DIV align=center&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Surgical Bean Bags&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR&gt;
        &lt;FONT size=2&gt;&lt;STRONG&gt;Traditional Medical Bean Bag Positioners&lt;BR&gt;
        Bean Bag Positioners with integral Gel layer&lt;BR&gt;
        Vac Pac style Bean Bags&lt;BR&gt;
        Steep Trendelenburg Bean Bag Positioner "The Butterfly&amp;#8482;"&lt;BR&gt;
        &lt;BR&gt;
        Gel Bean Bags are made with Blue Diamond&lt;SUP&gt;&amp;#174;&lt;/SUP&gt; Gel&lt;BR&gt;
        &lt;BR&gt;
        &lt;BR&gt;
        &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;
        &lt;HR&gt;
        &lt;BR&gt;</Summary>
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>275</EntityID>
                <Name>Gel Surgical Bean Bag Positioners</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h1 align="center"&gt;&lt;font size="3"&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000"&gt;***&lt;/font&gt;GEL BEAN BAG POSITIONERS ON SALE FOR A LIMITED TIME ONLY&lt;/font&gt;***&lt;/font&gt;&lt;/h1&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Surgical Gel Bean Bag Positioner &amp;#8226; Medical Bean Bags w/ Gel &amp;#8226; Steep Trendelenburg Gel Bean Bag Positioner &lt;/font&gt;&lt;/h1&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;The Butterfly&amp;#8482; Steep Trendelenburg Gel Positioner&lt;/font&gt;&lt;/h1&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;&lt;/h2&gt;
    </Description>
                <SEKeywords>gel bean bags, medical gel bean bags, surgical gel bean bags, patient positioning gel bean bags, patient positioning gel pads, gel positioning aids, gel bean bags, Surgical Bean Bag, Medical Bean Bag Positioner</SEKeywords>
                <SEDescription>Surgical Bean Bag Positioner, Butterfly Steep Trendelenburg Positioner. Medical Bean Bags. Blue Diamond Gel Bean Bag Positioners for Surgery. David Scott Offers A Wide Assortment Of The Best Priced Medical Bean Bag Positioners For Many Types Of Surgery Procedures. Surgical Bean Bags for Optimal Patient Comfort From David Scott Company. Call 1-800-804-0333.</SEDescription>
                <SETitle>Butterfly Trendelenburg Positioner | Gel Bean Bag Positioners | Medical Gel Bean Bag positioners | Surgical Gel Bean Bag Patient Positioning Device | Gel Bean Bags</SETitle>
                <SENoScript />
                <SEAltText>Gel Bean Bags</SEAltText>
                <ParentEntityID>274</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>gel-surgical-bean-bag-positioners</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>8</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>276</EntityID>
                <Name>Surgical Bean Bag Positioners- No Gel</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;H1 align=center&gt;&lt;SPAN style="FONT-WEIGHT: normal"&gt;&lt;FONT size=3&gt;&lt;FONT color=#ff0000&gt;&lt;FONT color=#000000&gt;***&lt;/FONT&gt;BEAN BAG POSITIONERS ON SALE FOR A LIMITED TIME ONLY&lt;/FONT&gt;***&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/H1&gt;
        &lt;H1 style="TEXT-ALIGN: center"&gt;&lt;FONT size=3&gt;Surgical Bean Bag Positioner &amp;#8226; Medical Bean Bags &amp;#8226; Steep Trendelenburg Bean Bag Positioner &lt;/FONT&gt;&lt;/H1&gt;
        &lt;H1 style="TEXT-ALIGN: center"&gt;&lt;FONT size=3&gt;The Butterfly&amp;#8482; Steep Trendelenburg Positioner&lt;/FONT&gt;&lt;SPAN style="FONT-SIZE: large"&gt;
        &lt;HR&gt;
        &lt;/SPAN&gt;&lt;/H1&gt;
        &lt;H2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;&lt;/H2&gt;</Description>
                <SEKeywords>, Surgical Bean Bag Positioner, Medical Bean Bags, traditional bean bags, bean bag patient positioning, patient positioning bean bag, bean bag patient positioners, or bean bag, or bean bags, or patient positioners, or patient positioning, prone positioning, surgical positioning, supine positioning, surgical patient positioning, surgical positioning devices, traditional bean bags</SEKeywords>
                <SEDescription>Traditional Bean Bags. Surgical Bean Bag Positioner, Butterfly Steep Trendelenburg Positioner. Medical Bean Bags. Blue Diamond Gel Bean Bag Positioners for Surgery. David Scott Offers A Wide Assortment Of The Best Priced Medical Bean Bag Positioners For Many Types Of Surgery Procedures. Surgical Bean Bags for Optimal Patient Comfort From David Scott Company. Call 1-800-804-0333.</SEDescription>
                <SETitle>Surgical Bean Bags | Bean Bag Patient Positioning and OR Bean Bag Patient Positioners, Surgical Bean Bag Positioner, Medical Bean Bags</SETitle>
                <SENoScript />
                <SEAltText>Traditional BeanBags</SEAltText>
                <ParentEntityID>274</ParentEntityID>
                <DisplayOrder>2</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>surgical-bean-bag-positioners-no-gel</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>9</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>277</EntityID>
                <Name>Bean Bag Accessories</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h1 align="center"&gt;&lt;span style="font-weight: normal; "&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000"&gt;&lt;font size="4"&gt;*&lt;/font&gt;&lt;font size="3"&gt;**&lt;/font&gt;&lt;/font&gt;&lt;font size="3"&gt;BEAN BAG POSITIONERS ON SALE FOR A LIMITED TIME ONLY&lt;/font&gt;&lt;/font&gt;&lt;font size="3"&gt;***&lt;/font&gt;&lt;/span&gt;&lt;/h1&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;Surgical Bean Bag Positioner &amp;#8226; Medical Bean Bags &amp;#8226; Steep Trendelenburg Bean Bag Positioner &amp;#8226;&lt;/font&gt;&lt;/h1&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;font size="3"&gt;The Butterfly&amp;#8482; Steep Trendelenburg Positioner&lt;/font&gt;&lt;span style="font-size: large;"&gt;&lt;hr style=""&gt;
    &lt;/span&gt;&lt;/h1&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;/h1&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;&lt;/h2&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Bean Bag Accessories</SETitle>
                <SENoScript />
                <SEAltText>Accesories</SEAltText>
                <ParentEntityID>274</ParentEntityID>
                <DisplayOrder>3</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>bean-bag-accessories</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>10</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>29</EntityID>
              <Name>Carts Covers</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font&gt;&lt;span style="font-family: Tahoma;"&gt;&lt;font size="3"&gt;&lt;strong&gt;Cart Covers &amp;#8226; Linen Cart Covers &amp;#8226; Laundry Cart Covers&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;br&gt;
    &lt;font face="Verdana" size="3"&gt;&lt;em&gt;Cart Covers are available in 2 different weight materials:&lt;/em&gt; &lt;/font&gt;&lt;/font&gt;&lt;font face="Tahoma" size="2"&gt;&lt;br&gt;
    &lt;/font&gt;
    &lt;font face="Tahoma" size="2"&gt;&lt;strong&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;font face="Tahoma" size="2"&gt;&lt;br&gt;
    &lt;/font&gt;
    &lt;div align="center"&gt;&lt;font face="Tahoma" size="2"&gt;
    &lt;/font&gt;
    &lt;/div&gt;
    &lt;strong style="font-family: Tahoma; font-size: medium;"&gt;&amp;#8226;&amp;nbsp;&lt;/strong&gt;&lt;font face="Verdana" size="3"&gt;200 Denier a windbreaker type nylon material&lt;br&gt;
    &lt;/font&gt;&lt;strong style="font-family: Tahoma; font-size: medium;"&gt;&amp;#8226;&amp;nbsp;&lt;/strong&gt;&lt;font face="Verdana" size="3"&gt;400 Denier a heavy duty more durable nylon material
    &lt;/font&gt;
    &lt;ul&gt;
    &lt;/ul&gt;
    &lt;font face="Verdana" size="3"&gt;Color Choices:&lt;br&gt;
    &lt;font color="#0000ff"&gt;
    Royal Blue&lt;/font&gt;, &lt;font color="#000080"&gt;Navy Blue&lt;/font&gt;, White,&lt;font color="#ffff00"&gt;Yellow&lt;/font&gt;, &lt;font color="#ff0000"&gt;Red&lt;/font&gt;, &lt;font color="#008000"&gt;Dark Green &lt;/font&gt;and &lt;font color="#008000"&gt;Kelly Green&lt;/font&gt; &lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;
    &lt;div align="left"&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana" size="3"&gt;
    All covers are are constructed with Velcro&lt;sup&gt;&amp;#174;&lt;/sup&gt; closures &lt;br&gt;
    (call for cost for Zipper closure)&lt;br&gt;
    &lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana" size="3"&gt;&lt;strong&gt;&lt;em&gt;Custom Cart Cover Request Form&lt;/em&gt;&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;&lt;a href="/images/document/Custom%20Cart%20Cover%20form.pdf"&gt;&lt;img src="/images/pdf%20image.jpeg" border="0" width="31" height="31"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;hr&gt;
    &lt;br&gt;
    &lt;div style="text-align: center;"&gt;&lt;em&gt;&lt;font size="2"&gt;*All Cart Covers are made to order and can not be returned unless manufacturing error which will be corrected upon confirmation.&lt;/font&gt;&lt;/em&gt;&lt;/div&gt;
    </Description>
              <SEKeywords>carts covers, cart covers, medical cart covers, medical carts covers, denier nylon cart covers, denier nylon carts covers, custom cart cover, custom cart covers, custom cart covers, custom carts covers, custom nylon cart covers, custom nylon carts covers, 200 denier nylon, 400 denier nylon, carts covers</SEKeywords>
              <SEDescription>Carts Covers. Medical Cart Covers From David Scott Are Available In 200 Denier Nylon, A Windbreaker-Type Nylon Material, And 400 Denier Nylon, A More Heavy Duty Nylon Material.</SEDescription>
              <SETitle>Carts Covers | Medical Cart Covers, Denier Nylon Cart Covers</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>carts-covers</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>12</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>126</EntityID>
              <Name>Carts/Cabinets/Sinks</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;blockquote&gt;&lt;blockquote&gt;&lt;blockquote&gt;
    &lt;div align="left"&gt;
    &lt;ul&gt;
        &lt;li&gt;&lt;font size="2"&gt; &lt;strong&gt;Blickman &lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="2"&gt;Stainless Steel Case Carts&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
        &lt;li&gt;&lt;strong&gt;&lt;font size="2"&gt;Medical Case Carts&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
        &lt;li&gt;&lt;strong&gt;&lt;font size="2"&gt;Closed Case Carts &amp;amp; Open Case Carts&lt;br&gt;
        &lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
        &lt;li&gt;&lt;strong&gt;&lt;font size="2"&gt;Stainless Steel Utility Cabinets&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
        &lt;li&gt;&lt;strong&gt;&lt;font size="2"&gt;Freestanding Cabinets&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
        &lt;li&gt;&lt;strong&gt;&lt;font size="2"&gt;Medical Sinks&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
        &lt;li&gt;&lt;font size="2"&gt;&lt;strong&gt;Hands Free Sinks&lt;span&gt;&lt;hr style=""&gt;
        &lt;/span&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(0, 0, 128); font-family: Tahoma, Verdana, sans-serif; font-size: large; font-weight: normal; background-color: rgb(255, 255, 255);"&gt;Please choose from one of these categories:&lt;/span&gt;&lt;hr&gt;
    &lt;/span&gt;
    &lt;ul&gt;
    &lt;/ul&gt;
    &lt;/div&gt;
    &lt;/blockquote&gt;&lt;/blockquote&gt;&lt;/blockquote&gt;
    </Description>
              <SEKeywords>medical carts, medical cabinets, medical sinks, operating room equipment, stainless steel case carts, medical case carts, closed case carts, open case carts, stainless steel utility cabinets, freestanding cabinets, medical sinks, hands free sinks, medical carts</SEKeywords>
              <SEDescription>Medical Carts, Medical Cabinets, Medical Sinks. Operating Room Equipment From David Scott Includes Stainless Steel Case Carts, Medical Case Carts, Closed Case Carts &amp; Open Case Carts, Stainless Steel Utility Cabinets, Freestanding Cabinets, Medical Sinks, And Hands Free Sinks In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Carts/Cabinets/Sinks | Operating Room Equipment</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>cartscabinetssinks</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>0</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>133</EntityID>
                <Name>Bassinets</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle>Bassinets</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>126</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>bassinets</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>130</EntityID>
                <Name>Blanket Solution Warming Cabinets</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle>Blanket Solution Warming Cabinets</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>126</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blanket-solution-warming-cabinets</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>3</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>129</EntityID>
                <Name>Blickman Case Carts</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;div align="center"&gt;&lt;font size="2"&gt;&lt;strong&gt;Blickman Case Cart &amp;#8226; Blickman Open Case Carts &amp;#8226; Blickman Closed Case Carts&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;font size="2"&gt;The section features surgical case carts. Both open case carts and closed case carts are offered. Stainless Steel case carts are used to transport medical trays and products. Please &lt;a href="mailto:customerservice@davidscottco.com?subject=Case%20Carts"&gt;Click Here&lt;/a&gt; if you require a different style case cart than what is offered.&lt;/font&gt;&lt;br&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Case Carts</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>126</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blickman-case-carts</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>127</EntityID>
                <Name>Cabinets</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle>Cabinets</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>126</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>cabinets</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>2</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>135</EntityID>
                <Name>Free Standing Cabinets</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;font size="2"&gt;&amp;nbsp;Free Standing Surgical Cabinets are made to store supplies in a medical environment. Medical Supply Cabinets are offered in different configurations. &lt;a href="mailto:customerservice@davidscottco.com?subject=Free%20Standing%20Medical%20Cabinet"&gt;Click Here&lt;/a&gt; if you require a different configuration than what is offered.&lt;/font&gt;&lt;br&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Free Standing Cabinets</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>126</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>free-standing-cabinets</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>2</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>128</EntityID>
                <Name>Scrub Sinks</Name>
                <ColWidth>4</ColWidth>
                <Description>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SURGICAL SCRUB SINK&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SCRUB SINK FOR MEDICAL OFFICE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DOCTORS SCRUB SINK
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Scrub Sinks</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>126</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>scrub-sinks</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>1</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>131</EntityID>
                <Name>Utility Cart</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle>Utility Cart</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>126</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>utility-cart</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>1</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>7</EntityID>
              <Name>Endoscopy</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;font color="#000000" size="2"&gt;&lt;/font&gt;
    &lt;p align="center"&gt;&lt;font color="#000000" size="3"&gt;&lt;strong&gt;Antifog Solutions &amp;#8226;Scope Clearing Solutions &amp;#8226; Kittners &amp;#8226; Insufflation Tubing&lt;/strong&gt;&lt;/font&gt; &lt;/p&gt;
    &lt;hr&gt;
    </Description>
              <SEKeywords>endoscopy, insufflation tubing, scope clearing solutions, kittners, blue diamond alcohol-free antifog solution, endoscopy</SEKeywords>
              <SEDescription>Endoscopy. David Scott Has Antifog Solutions, Scope Clearing Solutions, Kittners, And Inflation Tubing For Endoscopy Procedures. Blue Diamond Alcohol-Free Antifog Solution For Endoscopes In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Endoscopy | Insufflation Tubing and Antifog Solutions</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>endoscopy</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>4</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>311</EntityID>
              <Name>Foam Operating Table Pads</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font face="Verdana"&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000"&gt;&lt;font size="3"&gt;Replacement OR Table pads &amp;#8226; Pads for Operating Tables &amp;#8226; Surgical Table Pads&lt;/font&gt;&lt;font size="4"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Operating Room Table Pads&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-family: Verdana; font-size: medium;"&gt;&amp;#8226;&amp;nbsp;&lt;/span&gt;&lt;font&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Amsco OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&amp;nbsp;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Steris&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Skytron&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Gettinge&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;span style="font-weight: normal;"&gt;&lt;font size="3"&gt;OR&lt;/font&gt; &lt;/span&gt;&lt;/strong&gt;Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;MDT&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Shampaine&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table&lt;/font&gt; &lt;font size="3"&gt;pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Maquet&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR&lt;/font&gt; &lt;font size="3"&gt;Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Siemens&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Midmark&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR &lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-weight: bold; font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;font size="3"&gt;Berchtold&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Foam Table Pads&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Pads for Operating Tables&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-weight: bold; font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;font size="3"&gt;Medical Foam Pads&lt;/font&gt;&lt;/font&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana"&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000" size="3"&gt;&lt;em&gt;&lt;strong&gt;Any Foam Table Pad for any OR Table&amp;nbsp;&lt;/strong&gt;&lt;/em&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana"&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000" size="3"&gt;&amp;nbsp;For a quote&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;a href="mailto:customerservice@davidscottco.com?subject=OR%20TABLE%20PAD%20QUOTE" style="text-decoration: underline; font-family: Verdana; font-size: large;"&gt;contact us&lt;/a&gt;&lt;span style="font-family: Verdana; font-size: large;"&gt;&amp;nbsp;&lt;span&gt;&lt;hr style=""&gt;
    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;
    &lt;div style="text-align: left;"&gt;&lt;span style="font-size: medium; font-family: Verdana;"&gt;&lt;br&gt;
    &lt;/span&gt;&lt;/div&gt;
    &lt;div style="text-align: left;"&gt;&lt;span style="font-size: medium; font-family: Verdana;"&gt;We offer 3 different levels of Pressure management to suit your budget&lt;/span&gt;&lt;/div&gt;
    &lt;font face="Verdana"&gt;
    &lt;div style="text-align: left;"&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
    &lt;/font&gt;
    &lt;/div&gt;
    &lt;strong&gt;
    &lt;h1&gt;&lt;font color="#ff0000" size="4"&gt; &lt;img src="../images/SG-small.jpg" height="119" width="149"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &lt;img src="../images/UC-small.jpg" height="130" width="152"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;font color="#ff0000" size="4"&gt;&lt;img src="../images/COMBO-small.jpg" height="125" width="149"&gt;&lt;/font&gt;&lt;font color="#ff0000" size="4"&gt;&amp;nbsp; &lt;/font&gt;&lt;/h1&gt;
    &lt;/strong&gt;&lt;font color="#ff0000" face="Verdana" size="3"&gt;
    &lt;div style="text-align: center;"&gt;&lt;span style="font-family: Verdana; font-size: medium;"&gt;Please Review Table Pad Series and choose your O.R. table manufacturer at the the bottom of the descriptions:&lt;/span&gt;&lt;/div&gt;
    &lt;/font&gt;
    &lt;p style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;SheerCare
    Series:&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;div style="border: 1pt solid windowtext; padding: 1pt 4pt;"&gt;
    &lt;p style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;A great place to start! This pad is
    constructed of high density base foam surrounded by a Fusion III&amp;#174; ultra
    soft 4-way stretch covering.&amp;nbsp;&amp;nbsp; Our SheerCare Series offers an
    economical alternative without compromising the comfort and safety of
    your patients.&lt;/p&gt;
    &lt;p style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→
    High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt; &lt;font color="#000000"&gt;→
    Fusion III&lt;sup&gt;&amp;#174;&lt;/sup&gt; Ultra Soft Covering&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p style="text-align: center; line-height: normal;"&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;strong style="text-align: center;"&gt;&lt;font size="3"&gt;UltraCare Series:&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;div style="border: 1pt solid windowtext; padding: 1pt 4pt 0in;"&gt;
    &lt;p style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;Our UltraCare Series table pad sets
    take “Pressure Management” to the next level. These pad sets are
    constructed with high density base memory foam, then topped with a &amp;#189;”
    layer of Visco memory foam and surrounded by a Fusion III&amp;#174; ultra soft
    4-way stretch covering.&lt;/p&gt;
    &lt;p style="text-align: center; line-height: normal;" align="left"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→
    High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt; &lt;font color="#ffa500"&gt;&lt;font color="#ff0000"&gt;→ Visco Memory Foam&lt;/font&gt;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;font color="#000000"&gt;→&lt;/font&gt; Fusion III&lt;sup&gt;&amp;#174;&lt;/sup&gt; Ultra Soft Covering&lt;/strong&gt;&lt;/p&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana" size="3"&gt;&lt;a target="_blank" href="../images/document/UltraCare%20Pad.pdf"&gt; Click Here for Ultra Care Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;p style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="3"&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img src="../images/Pressure%20map%20UC%20copy.jpg" border="0" height="55" width="94"&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;p style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;&lt;strong&gt;&lt;font size="3"&gt;Combo Series:&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;div style="border: 1pt solid windowtext; padding: 1pt 4pt;"&gt;
    &lt;p style="border: medium none; padding: 0in; margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;Our Combo
    Series is our most comprehensively designed pressure management table
    pad system. Our unique “tri-level” design is constructed of a
    high-density supportive base foam then topped with a &amp;#189;” layer of doughy
    soft cradling Visco memory foam.&amp;nbsp; A layer of Blue Diamond&amp;#174; Gel is placed
    just below the Fusion III&amp;#174; ultra soft 4-way stretch covering to ensure
    your patients the maximum protection available for pressure management.&lt;/p&gt;
    &lt;p style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→
    High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&amp;nbsp;&lt;font color="#ffa500"&gt;&amp;nbsp;&lt;font color="#ff0000"&gt; → Visco Memory Foam&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt; &lt;strong&gt;&lt;font color="#0000ff"&gt;→ Blue Diamond Gel&lt;sup&gt;&amp;#174;&lt;/sup&gt;&amp;nbsp;&lt;/font&gt;&amp;nbsp;&lt;font color="#000000"&gt; →
    Fusion III&lt;sup&gt;&amp;#174; &lt;/sup&gt;Ultra Soft Covering &lt;/font&gt;&lt;/strong&gt;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;&lt;a href="http://www.davidscottco.com/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;br&gt;
    &lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;p style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;&lt;a target="_blank" href="http://www.davidscottco.com/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Click Here for Combo Series Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;strong style=""&gt; &lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong style=""&gt; &lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong style=""&gt;&lt;a href="http://www.davidscottco.com/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="width: 94px; height: 55px;" src="http://www.davidscottco.com/images/Pressure%20map.jpg"&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong style=""&gt; &lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;strong&gt;
    &lt;br&gt;
    &lt;/strong&gt;&lt;font face="Verdana"&gt;&lt;br&gt;
    &lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(255, 0, 0); font-size: medium; font-family: Verdana;"&gt;Please select your table manufacturer:&lt;span&gt;&lt;hr style=""&gt;
    &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/font&gt;
    </Description>
              <SEKeywords>Steris Table pads, Berchtold Table Pads, Skytron Table Pads, Amsco Table Pads, Trump Table Ppads</SEKeywords>
              <SEDescription />
              <SETitle>Operating Room Table Pads | Amsco, Steris, Skytron, Gettinge, MDT, Shampaine, Maquet, Siemens, Midmark Replacement Operating Table Pads | Foam Table Pads | Pads for Operating Tables | Medical Foam Pads </SETitle>
              <SENoScript />
              <SEAltText>Foam Operating Table Pads</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>foam-operating-table-pads</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>0</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;p class="MsoNormal"&gt;David Scott offers a full line of replacement foam OR table
    pads for operating table manufacturers such as Steris OR table pads, Amsco foam
    operating table pads, Skytron replacement OR table pads, Berchtold Foam table
    pads, CMAX OR table pads, Gel table pads, foam table pads, Midmark table pads,
    Maquet foam table pads, Stryker Vertier replacement table pads, as well as
    Getinge table pads, MDT replacement OR table pads.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We have offered replacement OR table pads for years. We have
    numerous styles of foam replacement table pads for operating tables, stretcher pads,
    gurney pads, exam table pads, as well as custom configured replacement foam
    table pads.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;For custom a configured replacement OR table pads we just need
    a sketch of your foam OR table pads or your operating table dimensions. You can
    also email us and reference Custom Table Pad , or custom OR table pad to &lt;a href="mailto:customerserive@davidscottco.com"&gt;customerservice@davidscottco.com&lt;/a&gt;.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We offer a SheerCare Foam OR table pad for patient comfort,
    We offer an UltraCare Foam OR table pad as a replacement table pad for
    operating tables which offer Visco memory foam. So that is a memory foam OR table
    pad or Visco foam replacement OR table pad.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;Our Combo Series replacement OR table pad is a foam OR table
    pad, a Visco memoery foam table pad and a Blue Diamond&amp;#174; Gel table pad all
    rolled into one superior replacement Or table pad for a pressure management
    table pad.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We can also weld the seams on any of our replacement foam
    table pads as well as our combo series OR table pad.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We offer 2” foam table pads, 3” OR table pads, 4”
    replacement Foam OR table pads as well as Bariatric Foam Table pads which can
    be 5” or 6” thick. These Bariatric OR table pads can support hundreds of pounds.
    We can work to design Custom Table pads for your operating room and provide pressure
    management pads for your OR tables. &lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We can make any table pad for any OR table for any operating
    room.&lt;/p&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>312</EntityID>
                <Name>Amsco / Steris Table Pads</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;h1 style="text-align: center;"&gt;&lt;font size="3"&gt;Surgical Table Pads | Amsco Table Pads | Steris Operating Table Pad&lt;/font&gt;&lt;/h1&gt;
    &lt;hr&gt;
    &lt;h2 style="border: medium none; text-align: center;"&gt;&lt;font size="3"&gt;Surgical Table Pads, Amsco Table Pads &amp;amp;&lt;br&gt;
    Steris Operating Table Pad&lt;/font&gt;&lt;/h2&gt;
    &lt;h2 style="border: medium none; text-align: center;"&gt;&lt;font size="3" style="font-weight: normal;"&gt;Replacement Foam OR Table Pads&lt;br&gt;
    Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/font&gt;&lt;/h2&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;font size="3"&gt;Steris SheerCare OR Table Pads | Steris UltraCare OR Table Pads | Steris Combo Operating Table Pads&lt;/font&gt;&lt;br&gt;
    &lt;/strong&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare Pressure Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt; &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR Table Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;Please select your table model:&lt;/font&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;hr&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Amsco / Steris Table Pads</SEAltText>
                <ParentEntityID>311</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>amsco-steris-table-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>18</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;h1 style="font-size: 1.7em;"&gt;Surgical Table Pads | Amsco Table Pads | Steris Operating Table Pad&lt;/h1&gt;
    &lt;p&gt;For the most comforting and versatile surgical table pads, the Amsco
    table pads and Steris operating table pad products from David Scott are
    among the best in the industry. Operating table pads for Amsco and
    Steris tables offer innovative design features to promote optimal
    patient positioning and comfort. Unlike many other operating room
    replacement pads (OR replacement pads), the surgical table pad products
    from David Scott are proven to help prevent injury and alleviate
    soreness during operations. For a wide assortment of Amsco table pads,
    Steris table pads and other operating table pad products, trust David
    Scott Company - the leading distributor of medical supplies.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Amsco Table Pad Products&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Do not settle for standard operating table pads. The Amsco table pad
    products from David Scott are quality engineered for improved
    functioning and performance. The Amsco table pads help address a number
    of risks associated with extended surgical procedures. In addition,
    Amsco surgical table pads as well as other operating table pad products
    are manufactured to strict quality control standards to provide optimal
    durability and patient comfort. Browse David Scott's extensive inventory
    of Amsco table pads, gel table pads, Steris surgical table pad products
    and more.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;UltraCare Table Pads &amp;amp; SheerCare Table Pads&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The premium UltraCare table pads and SheerCare table pads from David
    Scott take "pressure management" to the next level. Created with Visco
    memory foam and Fusion III&amp;#174; ultra soft covering, the SheerCare table pad
    and Ultracare table pad products are ideal for patient positioning and
    comfort. Additionally, the UltraCare table pads and SheerCare pads for
    operating tables prevent pressure point injuries and discomfort caused
    by prolonged operations. Discover the exceptional value of UltraCare
    table pads and SheerGurad surgical table pads from David Scott.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Blue Diamond Gel&amp;#174; Pads For Operating Tables&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;David Scott provides Blue Diamond Gel&amp;#174; pads and operating room
    replacement pads (OR replacement pads) featuring a unique "tri-level"
    design. The "tri-level" design of our surgical table gel pads and OR
    replacement pads consist of a supportive base foam layer and is topped
    with doughy soft Visco memory foam. The "tri-level" OR replacement pad
    is complete with a Blue Diamond&amp;#174; Gel layer placed just below the Fusion
    III&amp;#174; ultra soft covering. This OR replacement pad design makes for a
    premium Blue Diamond Gel&amp;#174; pad that maximizes patient comfort while
    managing the strain caused by pressure points.&lt;/p&gt;
    &lt;h2 style="font-size: 1em; border: medium none;"&gt;Operating gel pads and OR replacement pads for surgical tables offer a number of valuable benefits including:&lt;/h2&gt;
    &lt;ul&gt;
        &lt;li&gt;SheerCare and UltraCare surgical table pads help protect the skin from soreness, chafing and bruising
        &lt;/li&gt;
        &lt;li&gt;Operating table pad products alleviate pressure points
        &lt;/li&gt;
        &lt;li&gt;Blue Diamond Gel&amp;#174; pads and Steris table pads easily conform to patients' bodies to evenly distribute their weight
        &lt;/li&gt;
        &lt;li&gt;UltraCare and SheerCare table pads are ideal for anesthesia procedures
        &lt;/li&gt;
        &lt;li&gt;Amsco table pad products help to prevent nerve damage
        &lt;/li&gt;
        &lt;li&gt;OR replacement pads promote a better, more efficient operating room environment for physicians and nurses
        &lt;/li&gt;
        &lt;li&gt;Surgical table gel pads facilitate surgery operations and post-op examinations for medical professionals
        &lt;/li&gt;
        &lt;li&gt;David Scott Company OR Surgical table pads help to prevent excess sheer &amp;amp; friction
        &lt;/li&gt;
    &lt;/ul&gt;
    &lt;h2 style="border: medium none; font-size: 1.1em; text-align: center;"&gt;Learn More About Surgical Table Pads, Amsco Table Pads&lt;br&gt;
    &amp;amp; Steris Operating Table Pads By Calling 1-800-804-0333&lt;br&gt;
    &lt;br&gt;
    Or Click Any Of The SheerCare Pad, UltraCare Pad Or&lt;br&gt;
    Combo Operating Table Pad Products&lt;/h2&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>313</EntityID>
                <Name>Skytron</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;h2 style="border: medium none; text-align: center;"&gt;&lt;font size="3"&gt;Surgical Table
    Pads, Skytron Table Pads &amp;amp;&lt;br&gt;
    Skytron Operating Table Pad&lt;span&gt;&lt;hr style=""&gt;
    &lt;/span&gt;Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/font&gt;&lt;/h2&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Replacement Foam OR Table Pads
    &lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;font size="3"&gt;
    Skytron SheerCare OR Table Pads | Skytron UltraCare OR Table Pads |Skytron&lt;/font&gt;&lt;font size="3"&gt;
    Combo Operating Table Pads&lt;/font&gt;&lt;br&gt;
    &lt;/strong&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;Please select your table model:&lt;/font&gt;&lt;br&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/div&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Skytron</SEAltText>
                <ParentEntityID>311</ParentEntityID>
                <DisplayOrder>2</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>skytron</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>15</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical Table Pads |
    Skytron&amp;nbsp;Table Pads | Skytron Operating Table Pad&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;For the most comforting and
    versatile surgical table pads, the Skytron table pads and Skytron operating
    table pad products from David Scott are among the best in the industry. Operating
    table pads for Skytron &amp;nbsp;tables offer innovative design features to promote
    optimal patient positioning and comfort. Unlike many other operating room
    replacement pads (OR replacement pads), the surgical table pad products from
    David Scott are proven to help prevent injury and alleviate soreness during
    operations. For a wide assortment of Skytron table pads, Skytron table pads and
    other operating table pad products, trust David Scott Company - the leading
    distributor of medical supplies.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Skytron Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Do not settle for standard operating
    table pads. The Skytron table pad products from David Scott are quality
    engineered for improved functioning and performance. The Skytron &amp;nbsp;table
    pads help address a number of risks associated with extended surgical
    procedures. In addition, Skytron surgical table pads as well as other operating
    table pad products are manufactured to strict quality control standards to
    provide optimal durability and patient comfort. Browse David Scott's extensive
    inventory of Skytron table pads, gel table pads, Skytron surgical table pad
    products and more.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare Table Pads &amp;amp;
    SheerCare Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;The premium UltraCare table pads and
    SheerCare table pads from David Scott take "pressure management" to
    the next level. Created with Visco memory foam and Fusion III&amp;#174; ultra soft
    covering, the SheerCare&amp;nbsp; OR Surgical table pads and Ultracare Surgical
    table pad products are ideal for patient positioning and comfort. Additionally,
    the UltraCare table pads and SheerCare pads for operating tables prevent
    pressure point injuries and discomfort caused by prolonged operations. Discover
    the exceptional value of UltraCare table pads and SheerCare surgical table
    pads from David Scott.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; Pads For Operating
    Tables&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott provides Blue Diamond
    Gel&amp;#174; pads and operating room replacement pads (OR replacement pads) featuring a
    unique "tri-level" design. The "tri-level" design of our
    surgical table gel pads and OR replacement pads consist of a supportive base
    foam &amp;nbsp;layer and is topped with doughy soft Visco memory foam. The
    "tri-level" OR replacement pad is complete with a Blue Diamond&amp;#174; Gel
    layer placed just below the Fusion III&amp;#174; ultra soft covering. This OR
    replacement pad design makes for a premium Blue Diamond Gel&amp;#174; pad that maximizes
    patient comfort while managing the strain caused by pressure points.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating gel pads and OR
    replacement pads for surgical tables offer a number of valuable benefits
    including:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;ul type="disc"&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;SheerCare and UltraCare surgical table pads help
        protect the skin from soreness, chafing and bruising &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating table pad products alleviate pressure points &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; pads and Skytron table pads easily
        conform to patients' bodies to evenly distribute their weight &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare and SheerCare&amp;nbsp; OR table pads are ideal
        for anesthesia procedures &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Replacement Skytron OR table pad products help to
        prevent nerve damage &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;OR replacement pads promote a better, more efficient
        operating room environment for physicians and nurses &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical table gel pads facilitate surgery operations
        and post-op examinations for medical professionals &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott Company OR table pads help to prevent sheer
        &amp;amp; friction&amp;nbsp; &lt;/span&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;div align="center"&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Learn
    More About Surgical Table Pads, Skytron Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &amp;amp; Skytron Operating Table Pads By Calling 1-800-804-0333&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Or Click Any Of The SheerCare Pad, UltraCare Pad Or&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Combo Operating Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>314</EntityID>
                <Name>Getinge / MDT / Shampaine</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;h2 style="border: medium none; text-align: center;"&gt;&lt;font size="3"&gt;Surgical Table
    Pads, Getinge MDT Shampaine Table Pads &amp;amp; Getinge MDT
    Shampaine Operating Table Pad&lt;/font&gt;&lt;span style="font-weight: normal; font-size: large;"&gt;&lt;hr style=""&gt;
    &lt;/span&gt;&lt;font size="4" style="font-weight: normal;"&gt;Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/font&gt;&lt;/h2&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Replacement OR Table Pad Products&lt;/strong&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;span style="font-weight: bold;"&gt;&lt;font size="3"&gt;Getinge&lt;/font&gt; &lt;/span&gt;&lt;strong&gt;SheerCare OR Table Pads | &lt;/strong&gt;&lt;span style="font-weight: bold;"&gt;&lt;font size="3"&gt;Getinge &lt;/font&gt;&lt;/span&gt;&lt;strong&gt;UltraCare OR Table Pads |
    &lt;/strong&gt;&lt;span style="font-weight: bold;"&gt;&lt;font size="3"&gt;Getinge&lt;/font&gt; &lt;/span&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="3"&gt;Combo Operating Table Pads&lt;/font&gt;&lt;br&gt;
    &lt;/strong&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure
    Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure
    Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table
    Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;Please select your table model:&lt;/font&gt;&lt;br&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;span style="font-family: 'Verdana','sans-serif'; color: rgb(153, 0, 0); font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;br&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Getinge / MDT / Shampaine</SEAltText>
                <ParentEntityID>311</ParentEntityID>
                <DisplayOrder>3</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>getinge-mdt-shampaine</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>15</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical Table Pads | Getinge -
    Shampaine - MDT&amp;nbsp;Table Pads | Getinge - Shampaine - MDT Operating Table Pad&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;For the most comforting and
    versatile surgical table pads, the Getinge - Shampaine - MDT table pads and
    Getinge - Shampaine - MDT operating table pad products from David Scott are
    among the best in the industry. Operating table pads for Getinge - Shampaine -
    MDT &amp;nbsp;tables offer innovative design features to promote optimal patient
    positioning and comfort. Unlike many other operating room replacement pads (OR
    replacement pads), the surgical table pad products from David Scott are proven
    to help prevent injury and alleviate soreness during operations. For a wide
    assortment of Getinge - Shampaine - MDT table pads, Getinge - Shampaine - MDT
    table pads and other operating table pad products, trust David Scott Company -
    the leading distributor of medical supplies.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Getinge - Shampaine - MDT Table Pad
    Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Do not settle for standard operating
    table pads. The Getinge - Shampaine - MDT table pad products from David Scott
    are quality engineered for improved functioning and performance. The Getinge -
    Shampaine - MDT &amp;nbsp;table pads help address a number of risks associated with
    extended surgical procedures. In addition, Getinge - Shampaine - MDT surgical
    table pads as well as other operating table pad products are manufactured to
    strict quality control standards to provide optimal durability and patient
    comfort. Browse David Scott's extensive inventory of Getinge - Shampaine - MDT
    table pads, gel table pads, Getinge - Shampaine - MDT surgical table pad
    products and more.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare Table Pads &amp;amp;
    SheerGuard Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;The premium UltraCare table pads and
    SheerGuard table pads from David Scott take "pressure management" to
    the next level. Created with Visco memory foam and Fusion III&amp;#174; ultra soft
    covering, the SheerGuard&amp;nbsp; OR Surgical table pads and Ultracare Surgical
    table pad products are ideal for patient positioning and comfort. Additionally,
    the UltraCare table pads and SheerGuard pads for operating tables prevent
    pressure point injuries and discomfort caused by prolonged operations. Discover
    the exceptional value of UltraCare table pads and SheerGuard surgical table
    pads from David Scott.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; Pads For Operating
    Tables&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott provides Blue Diamond
    Gel&amp;#174; pads and operating room replacement pads (OR replacement pads) featuring a
    unique "tri-level" design. The "tri-level" design of our
    surgical table gel pads and OR replacement pads consist of a supportive base
    foam &amp;nbsp;layer and is topped with doughy soft Visco memory foam. The
    "tri-level" OR replacement pad is complete with a Blue Diamond&amp;#174; Gel
    layer placed just below the Fusion III&amp;#174; ultra soft covering. This OR
    replacement pad design makes for a premium Blue Diamond Gel&amp;#174; pad that maximizes
    patient comfort while managing the strain caused by pressure points.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating gel pads and OR
    replacement pads for surgical tables offer a number of valuable benefits
    including:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;ul type="disc"&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;SheerGuard and UltraCare surgical table pads help
        protect the skin from soreness, chafing and bruising &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating table pad products alleviate pressure points &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; pads and Getinge - Shampaine - MDT
        table pads easily conform to patients' bodies to evenly distribute their
        weight &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare and SheerGuard&amp;nbsp; OR table pads are ideal
        for anesthesia procedures &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Replacement Getinge - Shampaine - MDT OR table pad
        products help to prevent nerve damage &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;OR replacement pads promote a better, more efficient
        operating room environment for physicians and nurses &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical table gel pads facilitate surgery operations
        and post-op examinations for medical professionals &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott Company OR table pads help to prevent sheer
        &amp;amp; friction&amp;nbsp; &lt;/span&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;div align="center"&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Learn
    More About Surgical Table Pads, Getinge - Shampaine - MDT Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &amp;amp; Getinge - Shampaine - MDT Operating Table Pads By Calling 1-800-804-0333&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Or Click Any Of The SheerGuard Pad, UltraCare Pad Or&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Combo Operating Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>316</EntityID>
                <Name>Midmark</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;h2 style="border: medium none; text-align: center;"&gt;&lt;font size="3"&gt;Surgical Table
    Pads, Midmark Table Pads &amp;amp;&lt;br&gt;
    Midmark Operating Table Pad&lt;/font&gt;&lt;span&gt;&lt;hr style=""&gt;
    &lt;/span&gt;Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/h2&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Midmark Replacement OR Table Pad Products&lt;/strong&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;strong&gt;Midmark SheerCare&amp;nbsp; OR Table Pads | Midmark UltraCare&amp;nbsp; OR Table
    Pads |
    Midmark Combo Operating Table Pads&lt;br&gt;
    &lt;/strong&gt;
    &lt;/font&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure
    Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure
    Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table
    Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;div style="text-align: center;"&gt;&lt;strong style="font-size: medium;"&gt;&lt;font color="#000080"&gt;Please select your table
    model:&lt;span&gt;&lt;hr style=""&gt;
    &lt;/span&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/div&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Midmark</SEAltText>
                <ParentEntityID>311</ParentEntityID>
                <DisplayOrder>4</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>midmark</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>9</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical Table Pads |
    Midmark&amp;nbsp;Table Pads | Midmark Operating Table Pad&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;For the most comforting and
    versatile surgical table pads, the Midmark table pads and Midmark operating
    table pad products from David Scott are among the best in the industry. Operating
    table pads for Midmark &amp;nbsp;tables offer innovative design features to promote
    optimal patient positioning and comfort. Unlike many other operating room
    replacement pads (OR replacement pads), the surgical table pad products from
    David Scott are proven to help prevent injury and alleviate soreness during
    operations. For a wide assortment of Midmark table pads, Midmark table pads and
    other operating table pad products, trust David Scott Company - the leading
    distributor of medical supplies.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Midmark Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Do not settle for standard operating
    table pads. The Midmark table pad products from David Scott are quality
    engineered for improved functioning and performance. The Midmark &amp;nbsp;table
    pads help address a number of risks associated with extended surgical
    procedures. In addition, Midmark surgical table pads as well as other operating
    table pad products are manufactured to strict quality control standards to
    provide optimal durability and patient comfort. Browse David Scott's extensive
    inventory of Midmark table pads, gel table pads, Midmark surgical table pad
    products and more.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare Table Pads &amp;amp;
    SheerCare Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;The premium UltraCare table pads and
    SheerCare table pads from David Scott take "pressure management" to
    the next level. Created with Visco memory foam and Fusion III&amp;#174; ultra soft
    covering, the SheerCare&amp;nbsp; OR Surgical table pads and Ultracare Surgical
    table pad products are ideal for patient positioning and comfort. Additionally,
    the UltraCare table pads and SheerCare pads for operating tables prevent
    pressure point injuries and discomfort caused by prolonged operations. Discover
    the exceptional value of UltraCare table pads and SheerCare surgical table
    pads from David Scott.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; Pads For Operating
    Tables&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott provides Blue Diamond
    Gel&amp;#174; pads and operating room replacement pads (OR replacement pads) featuring a
    unique "tri-level" design. The "tri-level" design of our
    surgical table gel pads and OR replacement pads consist of a supportive base
    foam &amp;nbsp;layer and is topped with doughy soft Visco memory foam. The
    "tri-level" OR replacement pad is complete with a Blue Diamond&amp;#174; Gel
    layer placed just below the Fusion III&amp;#174; ultra soft covering. This OR
    replacement pad design makes for a premium Blue Diamond Gel&amp;#174; pad that maximizes
    patient comfort while managing the strain caused by pressure points.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating gel pads and OR
    replacement pads for surgical tables offer a number of valuable benefits
    including:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;ul type="disc"&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;SheerCare and UltraCare surgical table pads help
        protect the skin from soreness, chafing and bruising &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating table pad products alleviate pressure points &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; pads and Midmark table pads easily
        conform to patients' bodies to evenly distribute their weight &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare and SheerCare&amp;nbsp; OR table pads are ideal
        for anesthesia procedures &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Replacement Midmark OR table pad products help to
        prevent nerve damage &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;OR replacement pads promote a better, more efficient
        operating room environment for physicians and nurses &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical table gel pads facilitate surgery operations
        and post-op examinations for medical professionals &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott Company OR table pads help to prevent sheer
        &amp;amp; friction&amp;nbsp; &lt;/span&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;div align="center"&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Learn
    More About Surgical Table Pads, Midmark Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &amp;amp; Midmark Operating Table Pads By Calling 1-800-804-0333&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Or Click Any Of The SheerCare Pad, UltraCare Pad Or&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Combo Operating Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>315</EntityID>
                <Name>Maquet / Siemens</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h2 style="border: medium none; text-align: center;"&gt;&lt;font size="3"&gt;Surgical Table
    Pads, Maquet Table Pads &amp;amp;&lt;br&gt;
    Maquet Operating Table Pad&amp;nbsp;
    |&amp;nbsp; Alpahastar&lt;/font&gt;&lt;span&gt;&lt;hr style=""&gt;
    &lt;/span&gt;Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/h2&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Maquet Alphastar Table Pad Products&lt;/strong&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;&lt;strong&gt;&lt;font size="3"&gt;SheerGuard&amp;nbsp; OR Table Pads | UltraCare&amp;nbsp; OR Table
    Pads |
    Combo Operating Table Pads&lt;/font&gt;&lt;br&gt;
    &lt;/strong&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure
    Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure
    Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table
    Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;div style="text-align: center;"&gt;&lt;strong style="font-size: medium;"&gt;&lt;font color="#000080"&gt;Please select your table
    model:&lt;/font&gt;&lt;/strong&gt;&lt;/div&gt;
    &lt;strong&gt;&lt;hr&gt;
    &lt;/strong&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Maquet / Siemens</SEAltText>
                <ParentEntityID>311</ParentEntityID>
                <DisplayOrder>5</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>maquet-siemens</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>5</EntityID>
              <Name>Foam Reusable Positioners</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div style="text-align: center;"&gt;&lt;strong style="font-size: medium; "&gt;Medical Foam Positioners &amp;#8226; Surgical Foam Positioners &amp;#8226; Prone Positioners &amp;#8226; Well Leg Holder &amp;#8226; Frogger Vein Harvesting Positioner&amp;nbsp;&amp;#8226; Custom Foam Wedges&lt;/strong&gt;&lt;/div&gt;
    &lt;hr style="text-align: center;"&gt;
    &lt;br&gt;
    </Description>
              <SEKeywords>foam reusable positioners, armboards, armboard pads, head positioners, foam positioners, prone headrests, frogger positioners, reusable foam positioners, donut head positioners, abduction pillows, well holders, foam reusable positioners</SEKeywords>
              <SEDescription>Foam Reusable Positioners. David Scott Has Armboards, Head Positioners, Foam Positioners, Prone Headrests, Abduction Pillows, Well Holders, Frogger Positioners, And Other Reusable Foam Positioners In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Foam Reusable Positioners | Armboards, Head Positioners and Foam Positioners</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>foam-reusable-positioners</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>7</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>43</EntityID>
              <Name>Gel Positioners (Blue Diamond®)</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;noscript&gt;
    &lt;h1&gt;Operating Room Positioner OR Positioners&lt;br&gt;
    Blue Diamond Gel Positioners Operating Room Gel Positioner.&lt;/h1&gt;
    &lt;/noscript&gt;
    &lt;div align="center"&gt;
    &lt;style&gt;
        &lt;!--
     /* Font Definitions */
     @font-face
    	{font-family:Wingdings;
    	panose-1:5 0 0 0 0 0 0 0 0 0;
    				}
    @font-face
    	{font-family:"Cambria Math";
    	panose-1:2 4 5 3 5 4 6 3 2 4;
    				}
    @font-face
    	{font-family:Cambria;
    	panose-1:2 4 5 3 5 4 6 3 2 4;
    				}
    @font-face
    	{font-family:Calibri;
    	panose-1:2 15 5 2 2 2 4 3 2 4;
    				}
    @font-face
    	{font-family:Tahoma;
    	panose-1:2 11 6 4 3 5 4 4 2 4;
    				}
    @font-face
    	{font-family:Verdana;
    	panose-1:2 11 6 4 3 5 4 4 2 4;
    				}
     /* Style Definitions */
     p.MsoNormal, li.MsoNormal, div.MsoNormal
    	{		
    	margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	margin-left:0in;
    	line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    			
    				
    	}
    p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
    	{		
    	margin:0in;
    	margin-bottom:.0001pt;
    		font-size:8.0pt;
    	font-family:"Tahoma","sans-serif";
    		}
    p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
    	{			margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	margin-left:.5in;
    		line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    							
    	}
    p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
    	{				margin-top:0in;
    	margin-right:0in;
    	margin-bottom:0in;
    	margin-left:.5in;
    	margin-bottom:.0001pt;
    		line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    							
    	}
    p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
    	{				margin-top:0in;
    	margin-right:0in;
    	margin-bottom:0in;
    	margin-left:.5in;
    	margin-bottom:.0001pt;
    		line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    							
    	}
    p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
    	{				margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	margin-left:.5in;
    		line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    							
    	}
    span.BalloonTextChar
    	{
    					
    			font-family:"Tahoma","sans-serif";
    					}
    .MsoChpDefault
    	{				
    				
    	}
    .MsoPapDefault
    	{	margin-bottom:10.0pt;
    	line-height:115%;}
    @page Section1
    	{size:8.5in 11.0in;
    	margin:1.0in 1.0in 1.0in 1.0in;
    			}
    div.Section1
    	{page:Section1;}
     /* List Definitions */
     @list l0
    	{		}
    @list l0:level1
    	{				text-indent:-.25in;
    	font-family:Symbol;}
    ol
    	{margin-bottom:0in;}
    ul
    	{margin-bottom:0in;}
    --&gt;
    &lt;/style&gt;
    &lt;style&gt;
        &lt;!--
     /* Font Definitions */
     @font-face
    	{font-family:"Cambria Math";
    	panose-1:2 4 5 3 5 4 6 3 2 4;
    				}
    @font-face
    	{font-family:Calibri;
    	panose-1:2 15 5 2 2 2 4 3 2 4;
    				}
    @font-face
    	{font-family:Verdana;
    	panose-1:2 11 6 4 3 5 4 4 2 4;
    				}
     /* Style Definitions */
     p.MsoNormal, li.MsoNormal, div.MsoNormal
    	{		
    	margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	margin-left:0in;
    	line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    							
    	}
    .MsoChpDefault
    	{								
    	}
    .MsoPapDefault
    	{	margin-bottom:10.0pt;
    	line-height:115%;}
    @page Section1
    	{size:8.5in 11.0in;
    	margin:1.0in 1.0in 1.0in 1.0in;
    			}
    div.Section1
    	{page:Section1;}
    --&gt;
    &lt;/style&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;
    &lt;style&gt;
        &lt;!--
     /* Font Definitions */
     @font-face
    	{font-family:"Cambria Math";
    	panose-1:2 4 5 3 5 4 6 3 2 4;
    				}
    @font-face
    	{font-family:Calibri;
    	panose-1:2 15 5 2 2 2 4 3 2 4;
    				}
    @font-face
    	{font-family:Verdana;
    	panose-1:2 11 6 4 3 5 4 4 2 4;
    				}
     /* Style Definitions */
     p.MsoNormal, li.MsoNormal, div.MsoNormal
    	{		
    	margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	margin-left:0in;
    	line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    							
    	}
    .MsoChpDefault
    	{								
    	}
    .MsoPapDefault
    	{	margin-bottom:10.0pt;
    	line-height:115%;}
    @page Section1
    	{size:8.5in 11.0in;
    	margin:1.0in 1.0in 1.0in 1.0in;
    			}
    div.Section1
    	{page:Section1;}
    --&gt;
    &lt;/style&gt;
    &lt;style&gt;
        &lt;!--
     /* Font Definitions */
     @font-face
    	{font-family:"Cambria Math";
    	panose-1:2 4 5 3 5 4 6 3 2 4;
    				}
    @font-face
    	{font-family:Calibri;
    	panose-1:2 15 5 2 2 2 4 3 2 4;
    				}
    @font-face
    	{font-family:Verdana;
    	panose-1:2 11 6 4 3 5 4 4 2 4;
    				}
     /* Style Definitions */
     p.MsoNormal, li.MsoNormal, div.MsoNormal
    	{		
    	margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	margin-left:0in;
    	line-height:115%;
    		font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    							
    	}
    .MsoChpDefault
    	{								
    	}
    .MsoPapDefault
    	{	margin-bottom:10.0pt;
    	line-height:115%;}
    @page Section1
    	{size:8.5in 11.0in;
    	margin:1.0in 1.0in 1.0in 1.0in;
    			}
    div.Section1
    	{page:Section1;}
    --&gt;
    &lt;/style&gt;
    &lt;style&gt;
        &lt;!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;    } @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;    } @font-face {font-family:Verdana; panose-1:2 11 6 4 3 5 4 4 2 4;    } /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {   margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%;  font-size:11.0pt; font-family:"Calibri","sans-serif";        } .MsoChpDefault {         } .MsoPapDefault { margin-bottom:10.0pt; line-height:115%;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in;   } div.Section1 {page:Section1;} --&gt;
    &lt;/style&gt;
    &lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&lt;span style="font-family: 'Times New Roman', serif; "&gt;&lt;font face="Verdana"&gt;&lt;font size="3"&gt;Medical Gel Pads &amp;nbsp;&amp;#8226; &amp;nbsp;Surgical Gel Pads &amp;nbsp;&amp;#8226; &amp;nbsp;Polymer Gel Pads &amp;nbsp;&amp;#8226; &amp;nbsp;Gel Positioners &amp;nbsp;&amp;#8226; &amp;nbsp;Surgical Positioners&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-family: Verdana; font-size: medium;"&gt;&amp;#8226; Gel pads&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana; font-size: medium;"&gt;&amp;#8226; Gel Positioners&lt;/span&gt;&lt;/strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&lt;span style="font-family: 'Times New Roman', serif; "&gt;&lt;font face="Verdana"&gt;&lt;br&gt;
    &lt;font&gt;&lt;font face="Verdana"&gt;&lt;font color="#ff0000"&gt;&lt;br&gt;
    &lt;font size="4"&gt;&lt;strong&gt;*&lt;/strong&gt;SALE on select &lt;/font&gt;&lt;/font&gt;&lt;font size="4"&gt;&lt;font color="#000080" style="font-weight: bold;"&gt;BLUE DIAMOND&amp;#174;&lt;/font&gt;&lt;font color="#ff0000"&gt; Surgical Gel Positioners&lt;strong&gt;*&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-family: 'Times New Roman', serif;"&gt;&lt;strong style="font-size: 12pt;"&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;font size="3" face="Verdana" style="font-size: 12pt;"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;Blue Diamond&amp;#174;&lt;/font&gt;&lt;/strong&gt; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;br&gt;
    &lt;em&gt;Here are some supportive documents our customers have found useful:&lt;/em&gt;&lt;/font&gt;&lt;strong style="font-size: 12pt;"&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;font&gt;&lt;a href="/images/document/BD%20Gel%20Heating-Cooling.pdf" target="_media"&gt;&lt;font face="Verdana" size="3"&gt;Blue Diamond&amp;#174; Gel Suggestive Heating-Cooling Fact&amp;nbsp;&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana" style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;a href="/images/document/BD%20Gel%20Heating-Cooling.pdf" target="_blank" style="font-size: 12pt;"&gt;&lt;font face="Verdana"&gt;&lt;img style="WIDTH: 25px; HEIGHT: 25px" border="0" src="/images/pdf%20image.jpeg"&gt;&lt;/font&gt;&lt;/a&gt;&lt;br&gt;
    &lt;font size="3"&gt;
    &amp;nbsp; &lt;/font&gt;&lt;a href="/images/document/BD%20recommended%20use%20&amp;amp;%20care_Domestic_.pdf" target="_blank" style="font-size: 12pt;"&gt;&lt;font face="Verdana"&gt;Blue Diamond&amp;#174; Gel Recommended Use &amp;amp; Care&amp;nbsp;&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana" style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;a href="/images/document/BD%20recommended%20use%20&amp;amp;%20care_Domestic_.pdf" target="_blank" style="font-size: 12pt;"&gt;&lt;font face="Verdana"&gt;&lt;img style="WIDTH: 25px; HEIGHT: 25px" border="0" src="/images/pdf%20image.jpeg"&gt;&lt;/font&gt;&lt;/a&gt;&lt;br&gt;
    &lt;font size="3"&gt;
    &amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;a href="/images/document/Disinfectant%20Resistance%20Chart%20for%20Blue%20Diamond.pdf" style="font-size: 12pt;"&gt;&lt;font face="Verdana"&gt;Blue Diamond&amp;#174; Gel Disinfectant Resistance Chart&amp;nbsp;&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana" style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;a href="/images/document/Disinfectant%20Resistance%20Chart%20for%20Blue%20Diamond.pdf" target="_blank" style="font-size: 12pt;"&gt;&lt;font face="Verdana"&gt;&lt;img style="WIDTH: 25px; HEIGHT: 25px" border="0" src="/images/pdf%20image.jpeg"&gt;&lt;/font&gt;&lt;/a&gt;&lt;br&gt;
    &lt;font size="3"&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/font&gt;&lt;a href="/images/document/LATEX%20FREE%20STATEMENT.pdf" target="_media" style="font-size: 12pt;"&gt;&lt;font face="Verdana"&gt;Blue Diamond&amp;#174; Gel Latex Free Statement&amp;nbsp;&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana" style="font-size: 12pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;a href="/images/document/LATEX%20FREE%20STATEMENT.pdf" target="_blank" style="font-size: 12pt;"&gt;&lt;font face="Verdana"&gt;&lt;img style="WIDTH: 25px; HEIGHT: 25px" border="0" src="/images/pdf%20image.jpeg"&gt;&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;font face="Verdana" style="font-size: 12pt;"&gt; &lt;/font&gt;&lt;br&gt;
    &lt;/span&gt;&lt;/div&gt;
    &lt;font face="Verdana"&gt;&lt;strong&gt;
    &lt;div align="left"&gt;
    &lt;hr&gt;
    &lt;/div&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;span style="font-family: 'Times New Roman', serif; "&gt;&lt;font size="4" style="font-size: 12pt; "&gt;
    &lt;/font&gt;
    &lt;div align="center"&gt;&lt;font color="#000080"&gt;&lt;font&gt;&lt;font face="Verdana" size="3"&gt;&lt;strong&gt;For your convenience we have broken down our Gel Positioners by extremity.&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;font color="#000080"&gt;&lt;font&gt;&lt;font face="Verdana" size="3"&gt;&lt;strong&gt;&amp;nbsp;Please click on one of the following links below:&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face="Verdana"&gt;&lt;font size="3"&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;font color="#000080"&gt;&lt;font face="Verdana" style="font-size: 12pt; "&gt;&lt;strong&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;/font&gt;
    &lt;div align="left" style="font-size: 12pt; "&gt;&lt;font face="Verdana"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;
    &lt;/font&gt;&lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;/span&gt;
    </Description>
              <SEKeywords>operating room positioner, or positioners, blue diamond gel positioners, viscoelastic operating room gel positioners, patient positioner operating room, operating room positioner</SEKeywords>
              <SEDescription>Operating Room Positioner. Blue Diamond Gel Positioners OR Positioners, Operating Room Gel Positioners, Reusable Viscoelastic Gel Positioners Operating Room Positioner Reduces Pressure During Surgery. Operating Room Positioners In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Operating Room Positioner, OR Positioners, Blue Diamond Gel Positioners Viscoelastic Operating Room Gel Positioner</SETitle>
              <SENoScript>Operating Room Positioner OR Positioners&lt;br&gt;Blue Diamond Gel Positioners Operating Room Gel Positioner.</SENoScript>
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>gel-positioners-blue-diamond</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>0</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>46</EntityID>
                <Name>Blue Diamond® Gel Head Positioners Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;span style="FONT-FAMILY: Verdana; FONT-SIZE: medium"&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;font size="4"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font face="Verdana"&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;font size="3"&gt;Blue Diamond&amp;#174; Gel Head Positioners for head protection during Surgery&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="2"&gt;
    &lt;hr&gt;
    &lt;/font&gt;
    &lt;p align="center"&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;font size="3"&gt;These &lt;strong&gt;Blue Diamond&amp;#174;&lt;/strong&gt; Viscoelastic Medical Gel Positioning Pads for the Cephallic region are truly versatile. They are&amp;nbsp;unique in that the film is thermo-formed so that surface tension does not take away from the benefits of the medical grade surgical gel. These gel head postioners can aid in the prevention of hair loss or ulcers during longer procedures. We offer Gel head donuts, pediatric gel donuts, neonatal gel head donuts as well as prone gel postioners and other specialty surgical gel head postioners.&lt;/font&gt;&lt;/p&gt;
    </Description>
                <SEKeywords>Gel Donut, Gel Head Donut, Action Gel, Gel Head Ring</SEKeywords>
                <SEDescription />
                <SETitle>Head Positioners Gel Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-gel-head-positioners-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>13</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>44</EntityID>
                <Name>Blue Diamond® Gel OR Table Surface Gel Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners for the OR Table Surface &amp;#8226; Medical Gel Positioners&amp;nbsp;&lt;strong&gt;&amp;#8226; Surgical Positioners&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;&lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;
    &lt;p&gt;&lt;/p&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>OR Table Surface Gel Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>2</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-gel-or-table-surface-gel-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>13</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>47</EntityID>
                <Name>Blue Diamond® Arm &amp; Elbow Gel Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners for the Arm &amp;amp; Elbow Gel Pads &amp;#8226; Medical Gel Positioners&amp;#8226; Surgical Positioners &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;font size="4"&gt;&lt;font face="Verdana"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font face="Verdana"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174; &lt;/strong&gt;Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;
    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Arm &amp; Elbow Gel Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>3</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-arm-elbow-gel-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>10</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>49</EntityID>
                <Name>Blue Diamond® Foot &amp; Ankle Gel Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners for the Foot &amp;amp; Ankle Gel Pads &amp;#8226; Medical Gel Positioners&amp;nbsp;&amp;#8226; Surgical Positioners &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;/span&gt;&amp;nbsp;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174;&lt;/strong&gt; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;
    &lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;
    &amp;nbsp;&lt;/strong&gt;&lt;/font&gt; &lt;/p&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Foot &amp; Ankle Gel Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>4</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-foot-ankle-gel-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>7</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>51</EntityID>
                <Name>Blue Diamond® Gel Chest Rolls / Axillary Rolls / Flat Bottom Positioners</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners&amp;nbsp;&amp;#8226; Gel Chest Rolls&amp;nbsp;&amp;#8226; Gel Axillary Rolls &amp;#8226; Flat Bottom Chest Rolls for Surgical Positioning &amp;#8226; Medical Gel Positioners&amp;nbsp;&lt;strong&gt;&amp;#8226; Surgical Positioners&lt;/strong&gt;&lt;/strong&gt;&lt;strong&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;font size="3"&gt;&lt;strong&gt;
    &lt;/strong&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;strong&gt;&lt;font face="Verdana"&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174;&lt;/strong&gt; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;
    &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;p align="center"&gt;&lt;/p&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Chest Roll / Axillary Roll / Flat Bottom Gel Positioners</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>5</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-gel-chest-rolls-axillary-rolls-flat-bottom-positioners</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>20</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&amp;nbsp;&lt;strong&gt;&lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;MEDICAL GEL &amp;#8226; SURGICAL GEL &amp;#8226; POLYMER GEL&lt;/span&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt; &amp;#8226; GEL POSITIONERS&amp;nbsp;&lt;br&gt;
    &lt;/span&gt;&lt;/font&gt;&lt;/strong&gt;&lt;font face="Verdana"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Tahoma"&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;strong&gt; &lt;/strong&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>301</EntityID>
                <Name> Blue Diamond® Gel Pediatric Positioner Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;
    &lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners for the Pediatric Surgical Positioners&amp;nbsp;&amp;#8226; Medical Gel Positioners&amp;nbsp;&amp;#8226; Surgical Positioners for Pediatrics &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174;&lt;/strong&gt; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;
    &lt;p&gt;&lt;/p&gt;
    &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Pediatric Gel Pads</SEAltText>
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>6</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-gel-pediatric-positioner-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>13</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>48</EntityID>
                <Name>Blue Diamond® Gel Lower Extremeties Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners for lower extremities &amp;#8226; Medical Gel Positioners&amp;nbsp;&amp;#8226;Surgical Gel Positioners &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;
    &lt;p align="center"&gt;&amp;nbsp;
    &lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174; &lt;/strong&gt;Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt; &lt;/span&gt;&lt;/font&gt;
    &lt;p&gt;&lt;/p&gt;
    &lt;font size="4" face="Tahoma"&gt;
    &lt;/font&gt;&lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Lower Extremeties Gel Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>7</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-gel-lower-extremeties-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>13</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>50</EntityID>
                <Name>Blue Diamond® Gel Sandbag Postioners</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners &amp;#8226; Sandbag Positioner Gel Pads&amp;#8226; Medical Gel Positioners&amp;nbsp;&amp;#8226; Surgical Sandbags for Surgical Positioning&lt;/strong&gt;&lt;strong&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;font size="3"&gt;&lt;strong&gt;
    &lt;/strong&gt;
    &lt;p align="center"&gt;&lt;strong&gt;&lt;/strong&gt;
    &lt;/p&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174;&lt;/strong&gt; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt; &lt;/span&gt;&lt;/font&gt;
    &lt;p&gt;&lt;/p&gt;
    &lt;font size="4" face="Tahoma"&gt;
    &lt;/font&gt;&lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Sandbag Postioners (Gel)</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>8</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-gel-sandbag-postioners</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>8</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>54</EntityID>
                <Name>Blue Diamond® Gel Specialty Frames Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners for Specialty Surgical Frames &amp;#8226; Medical Gel Positioners&amp;nbsp;&amp;#8226; Surgical Positioners&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;
    &lt;p align="center"&gt;&lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="4" face="Tahoma"&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174;&lt;/strong&gt; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;
    &lt;p&gt;&lt;/p&gt;
    &lt;/font&gt;
    &lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Specialty Frames Gel Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>9</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>blue-diamond-gel-specialty-frames-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>19</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>53</EntityID>
                <Name>Miscellaneous Blue Diamond® Gel Pads</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Blue Diamond&amp;#174; Viscoelastic Polymer Gel Surgical Positioners for assorted applications &amp;#8226; Medical Gel Positioners&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;
    &lt;p align="center"&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174;&lt;/strong&gt; Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;
    &lt;p&gt;&lt;/p&gt;
    &lt;/font&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Miscellaneous Gel Pads</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>10</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>miscellaneous-blue-diamond-gel-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>19</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>272</EntityID>
                <Name>Repair Kits</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;strong&gt;&lt;font size="3" face="Tahoma"&gt;Gel pad Repair Kits &lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&amp;#8226; &lt;/span&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;Patches to repair Gel pads &lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&amp;#8226;&lt;/span&gt;&lt;/font&gt;&lt;font size="3"&gt; Gel pad Repair Kits &lt;/font&gt;&lt;font size="4" face="Tahoma"&gt;&lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&amp;#8226;&lt;/span&gt;&lt;/font&gt;&lt;font size="3"&gt; Torn Gel pads can be Repaired!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;font size="3"&gt;
    &lt;hr&gt;
    &lt;/font&gt;
    &lt;p align="center"&gt;&lt;font size="3"&gt;&lt;/font&gt;&lt;span style="font-family: Verdana; font-size: medium; "&gt;MEDICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL GEL &amp;nbsp;&amp;#8226; &amp;nbsp;POLYMER GEL &amp;nbsp;&amp;#8226; &amp;nbsp;GEL POSITIONERS &amp;nbsp;&amp;#8226; &amp;nbsp;SURGICAL POSITIONERS&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;span style="FONT-FAMILY: 'Times New Roman','serif'; FONT-SIZE: 12pt"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Blue Diamond&amp;#174; &lt;/strong&gt;Viscoelastic Polymer Gel Positioners are a reusable gel positioner used primarily as a surgical positioner to offer pressure reduction during medical/surgical procedures. Our gel pads are designed to reduce sheer and friction. They are also a dry viscoelastic polymer which is recommended by AORN standards. We offer surgical positioners for the whole body as well as specialty surgical positioners for many positioning devices.&lt;/font&gt;&lt;/span&gt;
    &lt;p&gt;&lt;/p&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Repair Kits</SETitle>
                <SENoScript />
                <SEAltText>Repair Kits</SEAltText>
                <ParentEntityID>43</ParentEntityID>
                <DisplayOrder>11</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>repair-kits</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>2</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>302</EntityID>
              <Name>Glove Box Holders</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;strong&gt;&lt;font size="4"&gt;Glove Box Holders&amp;nbsp;&amp;#8226;&lt;font size="4"&gt; Glove Dispensers&lt;/font&gt;&amp;nbsp;&amp;#8226; &lt;font size="4"&gt;Wall Mounted Glove Box&lt;/font&gt;&amp;nbsp;&lt;/font&gt;&lt;br&gt;
    &lt;/strong&gt;
    &lt;p&gt;&lt;font size="3"&gt;Click on either Powder Coated Glove Box Holder or Stainless Steel Glove Box Holder for various sizing options&lt;/font&gt;
    &lt;/p&gt;
    &lt;hr&gt;
    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords />
              <SEDescription />
              <SETitle />
              <SENoScript />
              <SEAltText>Glove Box Holders</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>glove-box-holders</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>2</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>30</EntityID>
              <Name>Hampers</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="4"&gt;&lt;strong&gt;Medical Hampers at discounted prices&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;font size="4"&gt;&amp;nbsp;&lt;/font&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;Step-on Hampers&lt;/font&gt;
    &lt;span style="font-family: Verdana; font-size: medium; "&gt;&amp;#8226;&lt;/span&gt;&amp;nbsp;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;&amp;nbsp;Round Hampers&amp;nbsp;&lt;/font&gt;&lt;/font&gt;
    &lt;span style="font-family: Verdana; font-size: medium; "&gt;&amp;#8226;&lt;/span&gt;&amp;nbsp;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;&amp;nbsp;Tilt-top Hampers&amp;nbsp;&lt;/font&gt;&lt;/font&gt;
    &lt;span style="font-family: Verdana; font-size: medium; "&gt;&amp;#8226;&lt;/span&gt;&amp;nbsp;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;&amp;nbsp;&lt;br&gt;
    Folding Hampers&amp;nbsp;&lt;/font&gt;&lt;/font&gt;
    &lt;span style="font-family: Verdana; font-size: medium; "&gt;&amp;#8226;&lt;/span&gt;&amp;nbsp;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;Triangle Hampers&amp;nbsp;&lt;/font&gt;&lt;/font&gt;
    &lt;span style="font-family: Verdana; font-size: medium; "&gt;&amp;#8226;&lt;/span&gt;&amp;nbsp;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;Stainless Steel Hampers Hospital Hampers &amp;#8226; Operating Room Linen Hampers&amp;nbsp;&amp;#8226; Medical Hampers &amp;#8226; Metal Hampers&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;
    </Description>
              <SEKeywords>medical hampers, pvc hospital hampers, hospital hampers, hospital hampers pvc, hospital hamper bags, hospital linen bags, medical basins, surgery room hampers, operating room hampers, hospital linen hamper bags, single bag hampers with foot pedals, medical hampers leakproof bags, leakproof pvc hospital hampers, hampers medical</SEKeywords>
              <SEDescription>Medical Hampers, PVC Hospital Hampers, Hospital Linen Hamper Bags Medical Basins, Surgery Operating Room Hampers and Hospital Linen Hamper Bags. Order Online   Single Bag Hampers with Optional Foot Pedals and Leakproof Bags - Custom and Bulk Order Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>Medical Hampers, PVC Hospital Hampers, Hospital Linen Hamper Bags Medical Disposal Hampers Surgery Operating Room Hampers</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>hampers</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>7</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;br&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;font size="2"&gt;David Scott Company is an authorized distributor of the Blickman product line! Blickman sets industry standards by supporting all of its products with a limited lifetime warranty.&lt;/font&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;br&gt;
    &lt;/div&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>55</EntityID>
              <Name>Hand Surgery Tables</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Hand Surgery Tables &amp;#8226; Medical Arm &amp;amp; Hand Tables &amp;#8226; Surgical Hand Tables &amp;#8226; Tables for Hand Surgery &amp;#8226; Legless&amp;nbsp; Arm &amp;amp; Hand Surgery Tables &amp;#8226; Arm Surgery Tables &amp;#8226; Free Standing Hand Surgery Tables &amp;#8226; Medical Hand Surgery Tables with Post &amp;#8226; Surgical Arm &amp;amp; Hand Tables with legs&amp;nbsp;&amp;#8226; Hand Table Pads&amp;nbsp;&amp;#8226; Foam Pads for Hand Tables&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
              <SEKeywords>hand surgery tables, medical hand surgery tables, surgical hand tables, tables for hand surgery, legless hand surgery tables, arm surgery tables. david scott has free standing hand surgery tables, medical hand surgery tables with post, surgical arm tables with legs, hand surgery tables</SEKeywords>
              <SEDescription>Complete Line of Arm &amp; Hand Surgery Tables, Medical Hand Surgery Tables, Surgical Hand Tables, Tables for Arm &amp; Hand Surgery, Legless Hand Surgery Tables, Arm Surgery Tables. David Scott Has Free Standing Hand Surgery Tables, Medical Hand Surgery Tables with Post, Surgical Arm Tables with legs and more. Custom and Bulk Order Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>Hand Surgery Tables | Medical Arm &amp; Hand Surgery Tables | Surgical Hand Tables | Tables for Hand  &amp; Arm Surgery | Legless Hand Surgery Tables | Arm Surgery Tables</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>hand-surgery-tables</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>20</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>12</EntityID>
              <Name>Instrument Tables-Medical</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font color="#000000" size="2"&gt;&lt;font size="3"&gt;&lt;strong&gt;Stainless Steel Surgical Tables &amp;#8226; Back Tables &amp;#8226; Prep Tables&amp;nbsp;&amp;nbsp;&amp;#8226; Surgical Back Tables&amp;nbsp;&amp;nbsp;&amp;#8226; Stainless Steel Medical Instrument Tables&amp;nbsp;&amp;#8226; Medical Tables&amp;nbsp;&amp;nbsp;&amp;#8226; Instrument Tables &lt;br&gt;
    &lt;br&gt;
    &lt;/strong&gt;We offer a wide range of Surgical Medical tables. Most tables have 3" rubber casters, guard rails can be added, most have square tubular legs, most are constructed with 16 gauge heavy duty stainless steel. If you do not see what you are looking for &lt;/font&gt;&lt;a href="mailto:customerservice@davidscottco.com?subject=Stainless%20Steel%20Surgical%20Tables"&gt;&lt;font size="3"&gt;Click Here&lt;/font&gt;&lt;/a&gt;&lt;font size="3"&gt;.&lt;/font&gt; &lt;/font&gt;&lt;/p&gt;
    &lt;font color="#000000" size="2"&gt;
    &lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;
    &lt;/font&gt;
    &lt;p align="center"&gt;&lt;strong&gt;&lt;font&gt;&lt;font color="#000080" size="3"&gt;Please Select below whether you want a Full Shelf or an H-brace lower support Stainless Steel Instrument Table:&lt;/font&gt;&lt;font size="2"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;hr style=""&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;font size="2"&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;p&gt;&lt;/p&gt;
    </Description>
              <SEKeywords>medical instrument tables, stainless steel medical instrument tables, back tables, prep tables, medical tables, surgical medical tables, medical instrument tables for operating rooms, medical instrument tables for surgery centers, medical instrument tables for medical clinics, medical Instrument table, instrument tables medical</SEKeywords>
              <SEDescription>Medical Instrument Tables, Stainless Steel Medical Instrument Tables, Back Tables, Prep Tables, Medical Tables, Surgical Medical Tables. Bulk Order Medical Instrument Tables For Operating Rooms, Medical Instrument Tables For Surgery Centers and Medical Instrument Tables For Medical Clinics. Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>Medical Instrument Tables, Stainless Steel Medical Instrument Tables, Back Tables, Prep Tables, Medical Tables, Surgical Medical Tables</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>instrument-tables-medical</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>0</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>164</EntityID>
                <Name>Instrument Tables with FULL SHELF</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords>full shelf instrument tables, full shelf medical instrument tables, medical instrument tables with full shelf, full shelf medical instrument tables, medical instrument tables full shelf</SEKeywords>
                <SEDescription>Full Shelf Instrument Tables, Medical Instrument Tables with Full Shelf. Bulk Order Full Shelf Medical Instrument Tables For Operating Rooms, Surgery Centers and Medical Treatment Centers. Call David Scott 1-800-804-0333.</SEDescription>
                <SETitle>Full Shelf Instrument Tables, Medical Instrument Tables With Full Shelf</SETitle>
                <SENoScript />
                <SEAltText>Tables with FULL SHELF</SEAltText>
                <ParentEntityID>12</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>instrument-tables-with-full-shelf</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>11</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>162</EntityID>
                <Name>Instrument Tables with H-BRACE</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords>h brace instrument tables, instrument tables h brace, medical instrument tables h brace</SEKeywords>
                <SEDescription>Instrument Tables With H Brace. Medical Instrument Tables with H Brace Instrument Tables. Bulk Order H Brace Instrument Tables For Operating Rooms, Surgery Centers and Medical Treatment Centers. Call David Scott 1-800-804-0333.</SEDescription>
                <SETitle>Instrument Tables With H Brace, Medical Instrument Tables with H Brace Instrument Tables</SETitle>
                <SENoScript />
                <SEAltText>Tables with H-BRACE</SEAltText>
                <ParentEntityID>12</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>instrument-tables-with-h-brace</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>10</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>112</EntityID>
              <Name>Instruments</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;With close to 40 years experience in the medical marketplace, David Scott Company has access to thousands of instruments.&amp;nbsp;Most instruments are available in the following 3 Grades:&amp;nbsp;&lt;br&gt;
    &lt;br&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;strong&gt;&amp;nbsp;Premium Surgical Grade Instruments&lt;br&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;General Surgical German Style&amp;nbsp;&lt;br&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Floor Grade&amp;nbsp;Instruments&lt;/strong&gt;&lt;br&gt;
    &lt;br&gt;
    Please contact us for specific details and pricing. &lt;/font&gt;&lt;/p&gt;
    </Description>
              <SEKeywords>surgical Instruments, operating room instruments, or instruments, medical instruments for surgery, medical instruments for Operating rooms, premium surgical grade instruments, general surgical instrument, german style surgical instruments, floor grade surgical instruments</SEKeywords>
              <SEDescription>Surgical Instruments, Operating Room Instruments, OR Instruments, Medical Instruments For Surgery and Operating Rooms. We offer 40 years experience in the medical marketplace, David Scott Company has access to thousands of medical and surgical instruments in 3 Grades Premium Surgical Grade Instruments, General Surgical German Style Instruments and Floor Grade Surgical Instruments.</SEDescription>
              <SETitle>Surgical Instruments, Operating Room Instruments, OR Instruments, Medical Instruments For Surgery and Operating Rooms</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>instruments</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>1</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>152</EntityID>
              <Name>IV Poles</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;strong&gt;&lt;font size="3"&gt;IV Poles &lt;/font&gt;&lt;font size="3"&gt;&amp;#8226; Irrigation Tower&lt;/font&gt;&lt;/strong&gt;&lt;font size="3"&gt;&lt;br&gt;
    Surgical IV poles &lt;/font&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;font size="3"&gt; Medical IV Poles &lt;/font&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;font size="3"&gt; 2 Hook IV poles &lt;/font&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;font size="3"&gt; 4 Hook IV Poles &lt;/font&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;font size="3"&gt; Adjustable IV Poles &lt;/font&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;font size="3"&gt; Irrigation Stands&amp;nbsp;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;All can all be found below. Please contact us with any special request for variations on IV Poles.&lt;strong&gt;
    &lt;hr&gt;
    &lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    </Description>
              <SEKeywords>iv poles, surgical iv poles, medical iv poles, 2 hook iv poles, 4 hook iv poles, adjustable iv poles, irrigation stands, iv poles</SEKeywords>
              <SEDescription>IV Poles, Surgical IV Poles, Medical IV Poles, 2 Hook IV Poles, 4 Hook IV Poles, Adjustable IV Poles, Irrigation Stands. David Scott Company Has Surgical IV poles, Medical IV Poles, 2 Hook IV poles, 4 Hook IV Poles, Adjustable IV Poles, Irrigation Stands can all be found below. Please contact us with any special request for variations on IV Poles.</SEDescription>
              <SETitle>IV Poles | Surgical IV Poles | Medical IV Poles | 2 Hook IV Poles | 4 Hook IV Poles | Adjustable IV Poles | Irrigation Stands</SETitle>
              <SENoScript />
              <SEAltText>IV Poles</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>iv-poles</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>11</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>31</EntityID>
              <Name>Kick Buckets</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="4"&gt;Kick Buckets &amp;#8226; Mop Buckets &amp;#8226; Collection Buckets &amp;#8226; Surgical Pails &amp;#8226; Collection Pails &amp;#8226; Stainless Steel Kick Bucket for Operating Rooms&lt;/font&gt;&lt;/p&gt;
    </Description>
              <SEKeywords>medical kick buckets, surgical kick buckets, operating room kick buckets, or kick buckets, stainless steel medical kick buckets, mobile kick buckets, rolling kick buckets, steel kick buckets, kick buckets surgical, kick buckets medical</SEKeywords>
              <SEDescription>Medical Kick Buckets, Surgical Kick Buckets, Operating Room Kick Buckets, Stainless Steel Medical Kick Buckets For Surgical Waste. Bariatric Surgery Kick Buckets With Mobile Bumpered Frames. Bulk Order Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>Medical Kick Buckets, Surgical Kick Buckets, Operating Room Kick Buckets OR Stainless Steel Medical Kick Buckets For Surgical Waste</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>kick-buckets</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>3</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>294</EntityID>
              <Name>Knee Support</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="4"&gt;Knee Crutch Supports &amp;#8226; Arthroscopic Leg Holders &amp;#8226; TKR's &amp;#8226; Knee Stabilizers &amp;#8226; Well Leg Holders are offered below for Surgical Knee Positioning&lt;/font&gt;
    &lt;hr&gt;
    &lt;br&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>knee supports, knee crutch supports, surgical knee positioning, knee supports for operating rooms, knee supports for surgery centers, knee supports for medical clinics, Arthroscopic leg holders, well leg holders, thr, thrs, knee stabilizers, knee supports</SEKeywords>
              <SEDescription>Knee Supports, Knee Stabilizers Knee Crutch Supports THRs Knee Supports Surgical Knee Positioning. Arthroscopic Leg Holders, Well Leg Holders Bulk Order Knee Supports For Operating Rooms, Knee Supports For Surgery Centers and Knee Supports For Medical Clinics - Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>Knee Supports, Knee Stabilizers Knee Crutch Supports THRs Knee Supports Surgical Knee Positioning Arthroscopic Leg Holders Well Leg Holders</SETitle>
              <SENoScript />
              <SEAltText>Knee Support</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>knee-support</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>14</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>157</EntityID>
              <Name>Lateral Supports</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;P align=center&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Surgical Lateral Supports &amp;#8226; Lateral Braces &amp;#8226; Surgical Braces &amp;#8226; Kidney Horns&amp;nbsp;&amp;#8226; Surgical Supports &amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt; &lt;/P&gt;
        &lt;HR&gt;
        &lt;BR&gt;</Description>
              <SEKeywords>lateral supports, surgical lateral supports, surgical lateral supports, surgical braces. bulk order lateral supports for operating rooms, lateral supports for surgery centers, lateral supports for medical clinics, lateral supports</SEKeywords>
              <SEDescription>Lateral Supports, Surgical Lateral Supports, Surgical Lateral Supports, Surgical Braces. Bulk Order Lateral Supports For Operating Rooms, Lateral Supports For Surgery Centers and Lateral Supports For Medical Clinics - Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>Lateral Supports, Surgical Lateral Supports, Surgical Lateral Supports, Surgical Braces</SETitle>
              <SENoScript />
              <SEAltText>Lateral Supports</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>lateral-supports</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>5</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>154</EntityID>
              <Name>Leg Supports / Lower Extremities</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;noscript&gt;Surgical Leg Supports. Lower Extremity Support Systems. Arthroscopic Leg Supports For Operating Rooms.&lt;/noscript&gt;
    &lt;h1 style="text-align: center; "&gt;&lt;span style="font-weight: normal; "&gt;&lt;font size="4"&gt;Surgical Leg Supports&lt;/font&gt;&lt;/span&gt;&lt;/h1&gt;
    &lt;p style="TEXT-ALIGN: center"&gt;&lt;strong&gt;&lt;font size="3"&gt;Surgical Leg Supports &amp;#8226; Lithotomy Supports &amp;#8226; Surgical Stirrups &amp;#8226; Arthroscopic Leg Holder&lt;/font&gt;&lt;br&gt;
    &lt;font size="3"&gt;
    Leg Prepper &amp;#8226; Stirrup Leg Holder &amp;#8226; Surgical Supports &amp;#8226; Total Knee Support &amp;#8226; Pediatric Stirrups&lt;/font&gt;&lt;br&gt;
    &lt;font size="3"&gt;
    Basic Leg Holders &amp;#8226; Allen Style Stirrups &amp;#8226; Candy Cane Stirrups &amp;#8226; Allen Stirrups &amp;#8226; Yellowfin Pads&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;a href="http://www.davidscottco.com/c-155-accessories.aspx"&gt;&lt;font size="4"&gt;Click here for Pads &amp;amp; Accessories&lt;/font&gt;&lt;/a&gt; &lt;/strong&gt;&lt;/p&gt;
    </Description>
              <SEKeywords>surgical leg supports, leg supports, medical leg supports, surgery leg supports, operating room supports, operating room leg supports, patient leg supports, arthroscopic leg supports, arthroscopic supports, pediatric leg supports, adjustable surgical leg supports, adjustable leg supports, surgical leg support, lower extremity support, lower extremity supports, supports lower extremities, david scott, surgical leg supports</SEKeywords>
              <SEDescription>Surgical Leg Supports. Lower Extremity Support Systems. Arthroscopic Leg Supports For Operating Rooms. David Scott Offers A Wide Assortment Of Arthroscopic Surgical Leg Supports Applicable For All Patients And Surgery Procedures. Call 1-800-804-0333.</SEDescription>
              <SETitle>Surgical Leg Supports | Lower Extremity Support Systems | Arthroscopic Leg Supports For Operating Rooms | David Scott Company</SETitle>
              <SENoScript>Surgical Leg Supports. Lower Extremity Support Systems. Arthroscopic Leg Supports For Operating Rooms.</SENoScript>
              <SEAltText>Surgical Leg Supports. Lower Extremity Support Systems. Arthroscopic Leg Supports For Operating Rooms. David Scott Offers A Wide Assortment Of Arthroscopic Surgical Leg Supports Applicable For All Patients And Surgery Procedures. Call 1-800-804-0333.</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>leg-supports-lower-extremities</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>17</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;div&gt;
    &lt;h1 style="DISPLAY: inline; FONT-SIZE: 1.8em"&gt;Surgical Leg Supports&lt;/h1&gt;
    &lt;strong style="FONT-SIZE: 1.8em"&gt;from David Scott Company&lt;/strong&gt;&lt;/div&gt;
    &lt;p&gt;David Scott carries an assortment of surgical leg supports and operating room leg holders for lower extremity support during surgery procedures. From basic leg preppers to arthroscopic leg supports to pediatric stirrups, David Scott is the one-stop source for a variety of surgical leg supports and medical leg holders. The complete line of surgical leg supports accommodate virtually all patients, surgeries and operating room applications. For arthroscopic surgical leg holders and operating room stirrups medical professionals and hospitals trust, David Scott is an industry leader for lower extremity support and surgery-related medical supplies.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;Surgical Leg Supports Promoting Patient Comfort&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;During prolonged surgeries, patient comfort is a primary concern for medical practitioners. The surgical leg supports and medical leg holders from David Scott are designed to improve patient comfort during timely procedures. Many of the arthroscopic leg holders and surgical leg supports are equipped with a soft padding to relieve pressure and minimize surgery-related injuries. Additionally, the operating room leg support products by David Scott provide the added convenience and versatility to easily run cables and tubes over the operating room table. The simple yet durable design of David Scott's surgical leg supports and arthroscopic leg support systems is proven in countless operating rooms all over the world.&lt;/p&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; FONT-SIZE: 1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;David Scott offers a wide variety of arthroscopic leg holders and surgical leg support products, including:&lt;/h2&gt;
    &lt;ul&gt;
        &lt;li&gt;Fully adjustable surgical leg supports
        &lt;/li&gt;
        &lt;li&gt;Bariatric lower extremity support systems
        &lt;/li&gt;
        &lt;li&gt;Pediatric leg supports and surgical leg holders
        &lt;/li&gt;
        &lt;li&gt;Padded surgical leg supports
        &lt;/li&gt;
        &lt;li&gt;Basic leg preppers
        &lt;/li&gt;
        &lt;li&gt;Lithotomy leg supports
        &lt;/li&gt;
        &lt;li&gt;Candy cane surgical leg supports and medical stirrups
        &lt;/li&gt;
        &lt;li&gt;Single loop surgical leg supports
        &lt;/li&gt;
        &lt;li&gt;Allen style stirrups
        &lt;/li&gt;
        &lt;li&gt;Stirrup style surgical leg supports &lt;/li&gt;
    &lt;/ul&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; FONT-SIZE: 1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Learn More About Surgical Leg Supports &amp;amp; Arthroscopic Leg Support Systems By Calling 1-800-804-0333&lt;br&gt;
    Or Click One Of The Medical Leg Supports Or Arthroscopic Leg Holders For More Information&lt;/h2&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>155</EntityID>
                <Name>Accessories</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Lower Extremity Surgical Support&lt;br&gt;
    &lt;br&gt;
    Inserts for Arthroscopic Leg Holders &amp;#8226; Foam pads for leg Holders &amp;#8226; Knee Crutch Pads &amp;#8226; Leg Prepper Pads &amp;#8226; Stirrup Pads &amp;#8226; Surgical Boot Pads&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Accessories</SETitle>
                <SENoScript />
                <SEAltText>Accessories</SEAltText>
                <ParentEntityID>154</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>accessories</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>17</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>151</EntityID>
              <Name>Mayo Instrument Stands</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Surgical Instrument Stands &amp;#8226; Mayo Stands &amp;#8226; Adjustable Mayo Stands &amp;#8226; Foot Operated Instrument Stands &amp;#8226; MR Safe Mayo Stands &amp;#8226; Chrome Mayo Instrument Stands &amp;#8226; Surgery Utility Tables &amp;#8226; Foot Operated Mayo Stands&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
              <SEKeywords>mayo stands, mr safe mayo stands, mayo instrument stands, adjustable mayo stands, chrome mayo Instrument stands, foot operated surgical instrument stands mayo. bulk order mayo instrument stands for operating rooms, mayo instrument stands for surgery centers and mayo instrument stands for medical clinics, mayo stands</SEKeywords>
              <SEDescription>Mayo Stands, MR Safe Mayo Stands, Mayo Instrument Stands, Adjustable Mayo Stands, Chrome Mayo Instrument Stands, Foot Operated Surgical Instrument Stands Mayo. Bulk Order Mayo Instrument Stands For Operating Rooms, Mayo Instrument Stands For Surgery Centers and Mayo Instrument Stands For Medical Clinics. Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>Mayo Stands, MR Safe Mayo Stands, Mayo Instrument Stands, Adjustable Mayo Stands, Chrome Mayo Instrument Stands, Foot Operated Surgical Instrument Stands</SETitle>
              <SENoScript />
              <SEAltText>Stands</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>mayo-instrument-stands</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>9</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>136</EntityID>
              <Name>MR Safe Equipment</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;MR Safe Surgical Tables &amp;#8226; MR Safe Stools &amp;#8226; MR Safe IV poles &amp;#8226; MR Safe Mayo Stand &amp;#8226; MR Safe Instrument Stand &amp;#8226; MR Safe Medical Products&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
              <SEKeywords>mr safe equipment, mr safe surgical tables, mr safe stools, mr safe iv poles, mr safe instrument stand, mr mayo stand, mr safe surgical instrument stands, mr safe equipment</SEKeywords>
              <SEDescription>MR Safe Equipment, MR Safe Surgical Tables, MR Safe Stools, MR Safe IV Poles, MR Safe Instrument Stand, MR Mayo Stand. Bulk Order MR Safe Surgical Instrument Stands For Operating Rooms, MR Safe Surgical Instrument Stands For Surgery Centers and MR Safe Surgical Instrument Stands For Medical Treatment Centers. Call David Scott 1-800-804-0333.</SEDescription>
              <SETitle>MR Safe Equipment, MR Safe Surgical Tables, MR Safe Stools, MR Safe IV Poles, MR Safe Instrument Stand, MR Mayo Stand</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>mr-safe-equipment</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>15</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>23</EntityID>
              <Name>ONLINE SPECIAL DEALS</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="3" face="Verdana"&gt;This section features some of our online specials for medical and surgical devices we offer. All of these items are also offered in their regular specialty category which can be browsed using the navigation bar&amp;nbsp;running down the left side of the website.&lt;/font&gt;&lt;/p&gt;
    </Description>
              <SEKeywords />
              <SEDescription />
              <SETitle>ONLINE SPECIAL DEALS</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>online-special-deals</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>10</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>8</EntityID>
              <Name>Operating Table Accessories</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;h1 style="TEXT-ALIGN: center; FONT-SIZE: 1.7em"&gt;Operating Table Accessories&lt;/h1&gt;
    &lt;p&gt;Operating table accessories from David Scott have a reputation as the industry standard for premium quality operating room table accessories and products. The assortment of operating table accessories provide a wide variety of upgrades and add-ons to enhance surgical performance and patient comfort. The operating room table accessories from David Scott range from Blue Diamond&amp;#174; Gel pads to sterile drain bags to shoulder supports and foot board extension. These operating table surgical accessories are ideal to improve operating room functionality and performance. Operating table accessories provide a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For operating room accessories designed for optimal patient positioning, David Scott is the source for state-of-the-art operating table accessories and operating room products.&lt;br&gt;
    &lt;br&gt;
    &lt;em&gt;&lt;strong&gt;**Most items in this category are broken down into their particular specialty category bydescription which can be browsed on the&amp;nbsp;navigation bar running down the left side of the page.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
    </Description>
              <SEKeywords>operating table accessories, operating room table accessories, surgical table accessories, urocatch drain bags, shoulder supports, universal lateral hip positioners, footboard extension braces, da vinci restraining bump, stainless steel clark sockets, operating table accessories</SEKeywords>
              <SEDescription>Operating Table Accessories. Operating Room Table Accessories From David Scott Include Urocatch Drain Bags, Shoulder Supports, Universal Lateral Hip Positioners, Footboard Extension Braces, DaVinci Restraining Bump And Stainless Steel Clark Sockets In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Operating Table Accessories | Surgical Accessories, Operating Room Table Accessories</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>operating-table-accessories</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>14</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;Operating Table Accessories From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The operating table accessories from David Scott provide a full range benefits. With advanced operating table accessories, medical practitioners can perform surgical procedures and medical examinations easier and more efficiently. Operating table surgical accessories are designed with unique features to facilitate the range of motion during surgery. Patients can experience improved comfort and mobility with operating table medical accessories. David Scott is a leader in operating table accessories and provides premium quality medical supplies, surgical equipment and operating room accessories. Receive top-quality operating room table accessories from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>45</EntityID>
              <Name>Peg Board- Lateral</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Surgical Positioning Peg Board&lt;/strong&gt;&lt;strong&gt; | Peg Board Lateral Positioning System | PegBoard | Surgical Peg Board | Hip Positioner Peg Board&amp;nbsp;&lt;strong&gt;| Morph Board&lt;/strong&gt;&amp;nbsp; &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;&lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;Our Surgical Peg Board Hip Positioner can be purchased as a complete set, with the Peg Board, Peg Board posts, both 6" pegs and 8" pegs for the Peg Board for surgery, as well as the fixation clamps to hold the Peg Board to the surgical table. All of the items for the surgical hip positioning peg board can also be purchased separately.&amp;nbsp;Options include&amp;nbsp;gel pads for peg boards, Gel pads for pegs, 4" extensions for the Peg Board pegs and side rail clamps to affix to OR Table.&lt;/font&gt;
    </Description>
              <SEKeywords>peg board, peg board patient positioning, peg board patient positioning system, peg board system for lateral positioning, gel table pads, gel table pad, gel overlays, gel overlay, gel wraps, gel wrap, peg board, morph board</SEKeywords>
              <SEDescription>Peg Board. Peg Board Patient Positioning System For Lateral Patient Positioning From David Scott. Also Available Are Gel Table Pads, Gel Overlays And Gel Wraps In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Surgical Positioning Peg Board | Peg board Lateral Positioning System | PegBoard | Surgical PegBoard | Morph board</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>peg-board-lateral</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>14</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;font size="3"&gt;&lt;strong&gt;Surgical Positioning Peg Board&lt;/strong&gt;&lt;/font&gt; &lt;font size="3"&gt;| &lt;strong&gt;Peg board Lateral Positioning System&lt;/strong&gt; | &lt;strong&gt;PegBoard&lt;/strong&gt; |&lt;strong&gt; Surgical PegBoard&lt;br&gt;
    &lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;Peg Board System for Lateral Positioning. Our Peg Board for Surgical procedures is a durable single board that does not have to be assembled and broken down between cases. You can buy replacement pegs, fixation clamps, and rail clamps for our Surgical Peg Board. Orthopedic peg Board Positioner like a Morph Board.&lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>13</EntityID>
              <Name>Restraints - Velcro® Restraints- Surgical Restraints</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;p align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Surgical Restraints &amp;#8226; OR Table Restraints &amp;#8226; Patient Restraints &amp;#8226; Bariatric Patient Restraint &amp;#8226; Nylon Medical Restraints &amp;#8226; Nissen Thigh Restr&lt;/strong&gt;&lt;strong&gt;aints &amp;#8226; Surgery Straps&lt;/strong&gt; &lt;strong&gt;&amp;#8226; Surgical Securing Straps&amp;nbsp;&lt;strong&gt;&amp;#8226; Velcro&amp;#174;&amp;nbsp;Restraints&lt;/strong&gt;&lt;/strong&gt;&amp;nbsp;&lt;strong&gt;&amp;#8226;&amp;nbsp;Disposable Restraints&amp;nbsp;&amp;#8226; Hook &amp;amp; Loop Restraints&lt;/strong&gt;&lt;/font&gt; &lt;/p&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Description>
              <SEKeywords>restraints, surgical restraints, or table restraints, patient restraints, restraint straps, nylon restraint straps, thigh retractors, davinci restraining bumps, bariatric patient restraint straps, restraints</SEKeywords>
              <SEDescription>Surgical Patient Restraints for Operating Tables. Patient Restraints. Surgical Restraints Include OR Table Restraints, Patient Restraints, Restraint Straps, Nylon Restraint Straps, Thigh Retractors, DaVinci Restraining Bumps And Bariatric Patient Restraint Straps</SEDescription>
              <SETitle>Restraints | Surgical Restraints | OR Table Restraints | Patient Restraints</SETitle>
              <SENoScript />
              <SEAltText>Patient Restriants for Surgery</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>restraints-velcro-restraints-surgical-restraints</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>20</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;p&gt;David Scott Company Surgical Restraints&lt;a class="dsna" onclick="mds();return false;" href="javascript:void(0);"&gt;.&lt;/a&gt;&lt;/p&gt;
    &lt;div id="dso"&gt;&lt;a href="http://www.davidscottco.com/c-24-arm-boards.aspx"&gt;Arm Boards&lt;/a&gt; | &lt;a href="http://www.dmc.org/spineback/"&gt;detroit back center&lt;/a&gt; | &lt;a href="http://www.americanbathind.com/bathroom-bath-tub-shower-enclosures.html%20"&gt;shower enclosures&lt;/a&gt; | &lt;a href="http://www.batterygiant.com/nikon-camera-replacement-battery.htm"&gt;nikon camera battery&lt;/a&gt; | &lt;a href="http://sports.dmc.org/"&gt;sports medicine detroit&lt;/a&gt;&lt;br&gt;
    &lt;a href="http://www.barnesjewish.org/heart-transplant"&gt;heart transplant&lt;/a&gt; | &lt;a href="http://www.batterygiant.com/personal-watercraft-jet-ski-batteries/"&gt;jet ski battery&lt;/a&gt; | &lt;a href="http://www.biocorrect.com/custom-shoes-foot-orthotics.html2"&gt;custom orthotics&lt;/a&gt; | &lt;a href="http://www.lawndoctor.com/"&gt;lawn care&lt;/a&gt; &lt;/div&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>317</EntityID>
                <Name>Disposable Velcro® Straps</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;strong&gt;&lt;font size="3"&gt;Disposable Velcro&amp;#174; Straps &amp;#8226; Disposable Patient Restraint &amp;#8226; Hook and Loop Securing Strap in one &amp;#8226; Disposable Self Securing Restraint Strap&lt;br&gt;
    &lt;br&gt;
    &lt;img style="WIDTH: 160px; HEIGHT: 161px" alt="" src="/images/Vel-Wrap.jpg" width="224" height="355"&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;strong&gt;
    &lt;p align="center"&gt;&lt;font size="3"&gt;Designed to easily immobilize patient with a sanitary securing strap&lt;br&gt;
    &lt;br&gt;
    Can be cut to any desired length&lt;br&gt;
    &lt;br&gt;
    Hook and loop are laminated together&lt;br&gt;
    &lt;br&gt;
    Latex Free&lt;/font&gt;&lt;/p&gt;
    &lt;/strong&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Disposable Velcro Straps</SEAltText>
                <ParentEntityID>13</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>disposable-velcro-straps</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>20</EntityID>
              <Name>Roller/Transfer Boards &amp; Patient Shifters</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;strong&gt;&lt;font size="2"&gt;The patient transfer aids are designed to reduce the risk of back injuries to staff. These products are commonly referred to as roller boards, shifter boards, glider boards, &lt;/font&gt;&lt;font size="2"&gt;patient transfer roller boards&lt;/font&gt;&lt;font size="2"&gt;, patient transfer aids&lt;/font&gt;&lt;/strong&gt;. &lt;font size="2"&gt;&lt;strong&gt;We have several different styles to choice from roller boards and glider boards&lt;/strong&gt;.&lt;/font&gt;&lt;br&gt;
    </Description>
              <SEKeywords>roller transfer boards, transfer boards, patient transfer board, patient shifters, patient transfer aids, roller boards, shifter boards, glider boards, patient transfer devices, patient transfer device, medical transfer board,  patient transfer roller boards, roller transfer boards</SEKeywords>
              <SEDescription>Roller Transfer Boards. These Patient Transfer Aids Are Designed To Reduce The Risk Of Back Injuries To Staff. David Scott Company Has Several Different Styles of Roller Boards, Shifter Boards, Glider Boards, And Patient Transfer Roller Boards In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Roller Transfer Boards | Patient Shifters, Patient Transfer Roller Boards</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>rollertransfer-boards-patient-shifters</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>11</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>303</EntityID>
              <Name>SANDEL Medical Products</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;hr&gt;
    &lt;div align="center"&gt;&lt;font size="4" face="Verdana"&gt;SANDEL MEDICAL &lt;/font&gt;&lt;font size="4" face="Verdana"&gt;| Sandel Medical Products &lt;/font&gt;&lt;font size="4" face="Verdana"&gt;| Products from Sandel Medical&lt;/font&gt;&lt;br&gt;
    &lt;hr&gt;
    We are pleased to offer the complete line of medical products from Sandel Medical. The bright orange color is now synonymous with the quality medical products designed by Sandel medical. As an authorized distributor of Sandel Medical products please let us know if you do not see a Sandel Medical item on our site as we can still quote you on any Sandel Medical product.&lt;br&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords />
              <SEDescription />
              <SETitle />
              <SENoScript />
              <SEAltText>SANDEL Medical Products</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>sandel-medical-products</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>0</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>305</EntityID>
                <Name>Ergonomic Workplace Safety</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Ergonomic Workplace Safety</SEAltText>
                <ParentEntityID>303</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>ergonomic-workplace-safety</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>309</EntityID>
                <Name>Keep It Up System</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>Keep It Up System</SEAltText>
                <ParentEntityID>303</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>keep-it-up-system</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>3</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>304</EntityID>
                <Name>TIME OUT Safety</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle />
                <SENoScript />
                <SEAltText>TIME OUT Safety</SEAltText>
                <ParentEntityID>303</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>time-out-safety</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>4</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>14</EntityID>
              <Name>Shoulder Chairs</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="4"&gt;Beach Chair &lt;/font&gt;&lt;font size="4" face="Verdana"&gt;| Shoulder Chair &lt;/font&gt;&lt;font size="4" face="Verdana"&gt;| Surgical Shoulder Chair &lt;/font&gt;&lt;font size="4" face="Verdana"&gt;|Surgical Beach Chair &lt;/font&gt;&lt;font size="4" face="Verdana"&gt;| Surgical Positioner for Shoulder Surgery&lt;br&gt;
    &lt;/font&gt;&lt;/div&gt;
    &lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:WordDocument&gt;
      &lt;w:View&gt;Normal&lt;/w:View&gt;
      &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
      &lt;w:TrackMoves/&gt;
      &lt;w:TrackFormatting/&gt;
      &lt;w:PunctuationKerning/&gt;
      &lt;w:ValidateAgainstSchemas/&gt;
      &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
      &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
      &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
      &lt;w:DoNotPromoteQF/&gt;
      &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
      &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
      &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
      &lt;w:Compatibility&gt;
       &lt;w:BreakWrappedTables/&gt;
       &lt;w:SnapToGridInCell/&gt;
       &lt;w:WrapTextWithPunct/&gt;
       &lt;w:UseAsianBreakRules/&gt;
       &lt;w:DontGrowAutofit/&gt;
       &lt;w:SplitPgBreakAndParaMark/&gt;
       &lt;w:DontVertAlignCellWithSp/&gt;
       &lt;w:DontBreakConstrainedForcedTables/&gt;
       &lt;w:DontVertAlignInTxbx/&gt;
       &lt;w:Word11KerningPairs/&gt;
       &lt;w:CachedColBalance/&gt;
      &lt;/w:Compatibility&gt;
      &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;
      &lt;m:mathPr&gt;
       &lt;m:mathFont m:val="Cambria Math"/&gt;
       &lt;m:brkBin m:val="before"/&gt;
       &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
       &lt;m:smallFrac m:val="off"/&gt;
       &lt;m:dispDef/&gt;
       &lt;m:lMargin m:val="0"/&gt;
       &lt;m:rMargin m:val="0"/&gt;
       &lt;m:defJc m:val="centerGroup"/&gt;
       &lt;m:wrapIndent m:val="1440"/&gt;
       &lt;m:intLim m:val="subSup"/&gt;
       &lt;m:naryLim m:val="undOvr"/&gt;
      &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
      DefSemiHidden="true" DefQFormat="false" DefPriority="99"
      LatentStyleCount="267"&gt;
      &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
      &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
      &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
      &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
      &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
       UnhideWhenUsed="false" Name="Table Grid"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
      &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
      &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
     &lt;/w:LatentStyles&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
    &lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;style reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1'&gt;
     /* 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-qformat:yes;
    	mso-style-parent:"";
    	mso-padding-alt:0in 5.4pt 0in 5.4pt;
    	mso-para-margin:0in;
    	mso-para-margin-bottom:.0001pt;
    	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-fareast-font-family:"Times New Roman";
    	mso-fareast-theme-font:minor-fareast;
    	mso-hansi-font-family:Calibri;
    	mso-hansi-theme-font:minor-latin;}
    &lt;/style&gt;
    &lt;![endif]--&gt;
    &lt;p class="MsoNormal"&gt;&lt;/p&gt;
    </Description>
              <SEKeywords>shoulder chairs, shoulder chair, shoulder arthroscopy chair, shoulder arthroscopy chairs, adjustable position shoulder arthroscopy chairs, disposable head straps, disposable chin straps, shoulder chair disposable pad sets, chair foam replacement kit, shoulder chairs</SEKeywords>
              <SEDescription>Shoulder Chairs. Adjustable Position Shoulder Arthroscopy Chairs For Surgical Operating Tables, And Disposable Head And Chin Straps. Also Available From David Scott Company Are Shoulder Chair Disposable Pad Sets And Chair Foam Replacement Kits In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Shoulder Chairs | Shoulder Arthroscopy Chairs, Shoulder Chair Disposable Pads</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>shoulder-chairs</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>4</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>153</EntityID>
              <Name>Shoulder Supports / Lateral Braces</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;Shoulder Braces &amp;#8226; Lateral Brace &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; Surgical Shoulder Brace Pads &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; 3 piece Surgical Lateral Brace &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; Universal Lateral Hip Positioner &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; Hip Surgery Positioners&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/div&gt;
    &lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;
    </Description>
              <SEKeywords />
              <SEDescription />
              <SETitle>Shoulder Supports / Lateral Braces</SETitle>
              <SENoScript />
              <SEAltText>Shoulder Supports</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>shoulder-supports-lateral-braces</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>6</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>60</EntityID>
              <Name>Side Rail Bumpers / Seizure pads</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&lt;strong&gt;Seizure Pads &lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; Side Rail Bumpers &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; Pads for Stretchers &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; Bumper Pads for Side Rails &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;&amp;#8226; Hospital Stretcher Pads and Bumpers&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>side rail bumpers, seizure pads, side rail bumper pads, stretcher side rail pads, side rail bumpers</SEKeywords>
              <SEDescription>Side Rail Bumpers. Seizure Pads And Side Rail Bumper Pads For Stretcher Side Rails. David Scott Company Has Multiple Sizes Of Stretcher Side Rail Pads, Side Rail Bumpers And Seizure Pads In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Side Rail Bumpers | Stretcher Side Rail Pads, Seizure Pads</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>side-rail-bumpers-seizure-pads</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>3</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>18</EntityID>
              <Name>Sockets / Clamps</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;noscript&gt;Surgical Table Clamps. Operating Table Sockets. Universal Blade Rail Clamp and Clark Socket Products.&lt;/noscript&gt;
    &lt;p align="center"&gt;&lt;font size="4"&gt;Clark Sockets &amp;#8226;&lt;/font&gt;&amp;nbsp;&lt;font size="4"&gt;&lt;font face="Verdana"&gt;Surgical Table Clamps &amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt; Surgical Rail Clamps&lt;font size="4" face="Verdana"&gt;&amp;nbsp;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt; OR Table Clamps&amp;nbsp;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt;&lt;font size="4" face="Verdana"&gt;&amp;nbsp;&amp;#8226;&lt;/font&gt; OR table Side Rail Sockets&lt;font size="4" face="Verdana"&gt;&amp;nbsp;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt; Blade Clamps for OR Tables&lt;/font&gt;&lt;font size="4" face="Verdana"&gt;&lt;font size="4" face="Verdana"&gt;&amp;nbsp;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt; Blade Clamps&amp;nbsp;&lt;font size="4" face="Verdana"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt; Rail Clamps&lt;font size="4" face="Verdana"&gt;&amp;nbsp;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt;Clamps and Sockets for Surgical Devices&lt;font size="4" face="Verdana"&gt;&amp;nbsp;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt; Universal Rail Clamps&lt;font size="4" face="Verdana"&gt;&amp;nbsp;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt; Surgery Clamps for round posts and flat post&lt;/font&gt;&lt;/p&gt;
    &lt;hr&gt;
    &lt;br&gt;
    &lt;font size="4"&gt;Surgical Table Rail Clamp Products &amp;amp; Premium Operating Table Sockets - Order Online&lt;/font&gt;
    &lt;p&gt;&lt;/p&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;Universal Blade Rail Clamp and Clark Socket Products&lt;br&gt;
    &lt;/font&gt;&lt;br&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; FONT-SIZE: 1.1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Learn More About Surgical Table Clamps And Medical Table Sockets Products By Clicking Any Of The Surgical Table Clamp Products &lt;/h2&gt;
    &lt;/div&gt;
    &lt;hr&gt;
    </Description>
              <SEKeywords>surgical table clamps, operating table sockets, surgical table clamp, operating table socket, surgical clamps, medical clamps, surgical clamp, medical clamp, surgical sockets, medical sockets, surgical socket, medical socket, surgery clamp, surgery socket, surgery clamps, operating table clamps, surgery sockets, surgical rail clamps, surgical rail clamp, surgery table clamps, rail clamp, surgery clamp, surgery table clamp, medical table clamp, medical table clamps, clamp for surgery table, clamps for surgery table, socket for surgery table, sockets for surgery table, hospital clamps, surgical clamp manufacturers, surgical clamp suppliers, universal rail clamps, universal surgical clamps, clark socket, clark sockets, blade rail clamps, tri clamp socket, triclamp adjustable socket, table sockets, david scott, surgical clamps, medical clamps, medical sockets, surgical sockets</SEKeywords>
              <SEDescription>Surgical Table Clamps. Operating Table Sockets. Universal Blade Rail Clamp and Clark Socket Products. David Scott Co. Has A Wide Selection Of Low Priced Surgical Table Clamps, Clark Sockets And More. David Scott Co. - The Leading Distributor of Medical Supplies.</SEDescription>
              <SETitle>Surgical Table Clamps | Operating Table Sockets | Universal Blade Rail Clamp &amp;amp; Clark Socket Products | David Scott Company</SETitle>
              <SENoScript>Surgical Table Clamps. Operating Table Sockets. Universal Blade Rail Clamp and Clark Socket Products.</SENoScript>
              <SEAltText>Surgical Table Clamps. Operating Table Sockets. Universal Blade Rail Clamp and Clark Socket Products. David Scott Co. Has A Wide Selection Of Low Priced Surgical Table Clamps, Clark Sockets And More. David Scott Co. - The Leading Distributor of Medical Supplies.</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>sockets-clamps</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>7</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1 style="FONT-SIZE: 1.8em"&gt;Surgical Table Clamps | Operating Table Sockets&lt;/h1&gt;
    &lt;p&gt;Surgical table clamps and operating table sockets from David Scott serve a wide range of functions. The universal rail clamps and adjustable Clark socket products provide optimal versatility for surgery tables. Designed with durable stainless steel components, the surgical table rail sockets and operating table clamp products are built for lasting use. David Scott offers a wide variety of premium medical clamps and Clark sockets for surgical tables that are suitable for a variety of applications.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;Surgical Table Rail Clamp Products&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The surgical table rail clamp products from David Scott are strong yet lightweight operating table clamps. The array of blade rail clamps and sockets for surgery tables are designed to prevent unwanted sliding and movement. In addition, many of the operating table clamp products offer ergonomic features to promote easy adjustments. David Scott even provides several universal rail clamps and tri clamp adjustable sockets that are applicable for many different surgery tables and medical devices. Get the most functionality from surgical clamp and medical socket products by choosing the universal rail sockets and surgical table clamps from David Scott.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;Premium Clark Sockets For Surgical Table Rails&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The premium Clark sockets for surgical table rails from David Scott are some of the best the industry. Operating table rail sockets from Clark are made from stainless steel and include precision locking teeth for long lasting use. Designed for maximum locking pressure, Clark rail sockets prevent movement of attached accessories when fully secured. Compatible with virtually all U.S. made operating tables, the adjustable tri-clamp rail sockets from David Scott are some of the best medical socket products on the market.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;Universal Blade Rail Clamps And Sockets For Operating Tables&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The high quality universal blade rail clamps and sockets for operation tables promote a more efficient operating room environment. The Clark sockets and universal surgical table clamps from David Scott can by applied to nearly all types of examination tables. Additionally, operating table clamps provide medical professionals a hassle-free solution for attaching surgical devices and accessories to the side rail of operating tables. For a wide selection of surgical table clamp, tri-clamp adjustable socket, universal rail clamp, Clark socket and blade rail socket products, David Scott is a trusted distributor of operating table clamps and sockets in the medical supplies industry.&lt;/p&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; FONT-SIZE: 1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Operating table clamps and surgical table rail sockets are designed with several high-performing features:&lt;/h2&gt;
    &lt;ul&gt;
        &lt;li&gt;Universal blade rail clamps and surgical table sockets are applicable for a wide range of operating tables and medical devices
        &lt;/li&gt;
        &lt;li&gt;Many medical table socket and surgery table clamp products offer improved clamping force to ensure that operating table side rail clamps remain secure
        &lt;/li&gt;
        &lt;li&gt;Blade side rail socket and surgery table clamps are functional on many different operation tables
        &lt;/li&gt;
        &lt;li&gt;Blade rail clamp and surgery table socket products are made from durable stainless steel or aluminum materials
        &lt;/li&gt;
        &lt;li&gt;Several operating table sockets and universal table clamps come equipped with convenient release levers for easy adjustments
        &lt;/li&gt;
        &lt;li&gt;Clark rail sockets are designed with secure locking teeth to minimize unwanted shifting on surgical tables
        &lt;/li&gt;
        &lt;li&gt;Versatile surgical table tri clamp adjustable socket design allows medical devices to be mounted virtually anywhere along the operating table rail
        &lt;/li&gt;
        &lt;li&gt;Operating table sockets and rail clamps can be easily cleaned to promote a more sanitary surgical environment &lt;/li&gt;
    &lt;/ul&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; FONT-SIZE: 1.1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Learn More About Surgical Clamps And Medical Table Sockets By Clicking Any Of The Surgical Table Clamp Products&lt;/h2&gt;
    &lt;br&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>293</EntityID>
              <Name>Solution Stands - Ring Stands</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;strong&gt;&lt;font size="3"&gt;Ring Stands &lt;font face="Verdana"&gt;| Surgical Solution Stands &lt;/font&gt;&lt;font face="Verdana"&gt;| Single Basin Solution Stands &lt;/font&gt;&lt;font face="Verdana"&gt;| Double Basin Solution Stands &lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Verdana"&gt;&lt;font size="3"&gt;|Stainless Solution Ring Stands&lt;/font&gt;&amp;nbsp;&lt;/font&gt;&lt;/strong&gt;&lt;/div&gt;
    </Description>
              <SEKeywords>solution stands, single basin solution stands, double basin solution stands, stainless steel solution stands, baker solution stands, snyder solution stands, 8.5 quart solution stands, 8.5 qt solution stands, solution stands</SEKeywords>
              <SEDescription>Single, Double Basin Solution Stands. Baker Single Basin And Snyder Double Basin Solutions Stands Are Available At David Scott Company In 8.5 Quart Stainless Steel, In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Solution Stands | Single Basin, Double Basin, Solution Stands</SETitle>
              <SENoScript />
              <SEAltText>Solution Stands</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>solution-stands-ring-stands</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>8</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>319</EntityID>
              <Name>Spinal Positioner- Cervical</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;P align=center&gt;&lt;FONT size=4&gt;Spine Positioning System&lt;BR&gt;
        Spinal Positioning System&lt;BR&gt;
        &lt;BR&gt;
        The Spine Positioning System is&amp;nbsp;an integral component of the Pain Management fluoroscopy suite, enhancing efficiencies of the physician&amp;nbsp;&amp;amp; medical staff.&amp;nbsp; By reducing the amount of patient set up time per appointment while providing added comfort, minimizing unwanted movement during a procedure, the SPS enables&amp;nbsp;the injection target to be quickly seen under fluoro &amp;amp; helps the physician deliver a safe &amp;amp; accurate injection in the least amount of time.&lt;BR&gt;
        &lt;/P&gt;
        &lt;UL&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Quick patient set up&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Use for Cervical, Lumbar &amp;amp; Thoracic procedures&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;No metal artifacts in image&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Wider Torso pad for added support&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Torso pad abdominal recess for comfort &amp;amp; support&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Contoured torso supports allow for greater shoulder roll off&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Firm adjuster pads &amp;amp; wedges allow for support without compression&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Cut out in base allows for patient aeration &amp;amp; comfort&lt;/STRONG&gt; &lt;/FONT&gt;
            &lt;LI&gt;&lt;STRONG&gt;&lt;FONT size=2&gt;Handles all prone positioning needs&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/LI&gt;
        &lt;/UL&gt;
        &lt;/FONT&gt;</Description>
              <SEKeywords />
              <SEDescription />
              <SETitle />
              <SENoScript />
              <SEAltText>Spinal postioner- Cervical</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>spinal-positioner-cervical</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>1</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>88</EntityID>
              <Name>Sterilization Trays -Plastic</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;P align=center&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Plastic Sterilization Trays &amp;#8226; Silicone Pin Mats for Instrument Trays &amp;#8226; Small Instrument Trays &amp;#8226;&amp;nbsp;Scope&amp;nbsp;Trays&amp;nbsp;&amp;#8226; Sterilization Trays for Instruments &amp;#8226; Similar to Riley Trays &amp;#8226; Specialty Instrument Trays&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</Description>
              <SEKeywords>sterilization trays, sterilization tray, sterilizing trays, sterilizing tray, instrument sterilizing trays, instrument sterilizing tray, deep sterilizing trays, micro sterilizing trays, scope sterilizing trays, deep sterilizing tray, micro sterilizing tray, scope sterilizing tray, sterilization trays</SEKeywords>
              <SEDescription>Sterilization Trays. Instrument Sterilizing Trays Available From David Scott Company Include Double Decker Large Trays, Deep Trays, Micro Trays, Scope Trays, Trays With Base, Trays With Lids, Trays With Mats And More In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Sterilization Trays | Sterilizing Tray, Instrument Sterilization Tray</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>sterilization-trays-plastic</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>7</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>66</EntityID>
              <Name>Stirrups</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;noscript&gt;
    &lt;h1&gt;Lithotomy Stirrups Bariatric Lithotomy Stirrups OB/GYN Lithotomy Stirrups.&lt;/h1&gt;
    &lt;/noscript&gt;
    &lt;h1 align="center"&gt;Lithotomy Stirrups&lt;/h1&gt;
    &lt;p align="center"&gt;&lt;strong&gt;Top Quality stirrups help with lithotomy positioning.&lt;/strong&gt;&lt;/p&gt;
    &lt;p align="center"&gt;David Scott Company carries a huge inventory of lithotomy stirrups, medical stirrups, surgical stirrups, operating room leg supports, gel pads, patient positioners, hand tables, roller boards, medical gel pads and more. Find top quality lithotomy stirrups on sale at David Scott Company.&lt;/p&gt;
    &lt;p align="center"&gt;David Scott Company offers an extensive inventory of lithotomy stirrups, lithotomy gyn stirrups, pediatric stirrups, infant stirrups, bariatric stirrups and more. lithotomy stirrups and lift assist medical stirrups help support medical patients in operating rooms. Lithotomy Stirrups are now available with an advanced boot system that helps accomodate patient positioning in both short and long surgical procedures. Booted cane lithotomy stirrups, candy cane stirrups and lithotomy stirrups also enable safer low lithotomy leg posturing and leg positioning for prostate exam lithotomy stirrups or lithotomy stirrups and gel assist stirrups for laparoscopy and many related surgical procedures.&lt;/p&gt;
    &lt;p align="center"&gt;David Scott carries an extensive selection of lithotomy stirrups, medical stirrups, sirgical stirrups including: lift assist stirrups, lithotomy stirrups, pediatric stirrups, basic lithotomy stirrups, lithotomy stirrup accessories and more. Similar in concept to Yellowfin stirrups or Allen Stirrups.&lt;/p&gt;
    </Description>
              <SEKeywords>lithotomy stirrups, obgyn lithotomy stirrups, ob lithotomy stirrups, gyn lithotomy stirrups, bariatric lithotomy stirrups, operating room lithotomy, or lithotomy stirrups, pediatric lithotomy stirrups, or lithotomy stirrups, leg holders</SEKeywords>
              <SEDescription>Lithotomy Stirrups 1-800-804-0333 Bariatric Lithotomy Stirrups OB/GYN Lithotomy Stirrups OB Exam Room Lithotomy Stirrups Booted Cane Lithotomy Stirrups Leg Holders for Women Infants Bariatric Patients. Operating Room Lithotomy Leg Posturing Sirrrups ideal for short or long surgical procedures helping move patients legs through the full range of lithotomy gently, easily and quickly, protecting against over-abduction.</SEDescription>
              <SETitle>Lithotomy Stirrups - Bariatric Lithotomy Stirrups OB/GYN Lithotomy Stirrups Exam Operating Room Lithotomy Stirrups leg Holders</SETitle>
              <SENoScript>Lithotomy Stirrups Bariatric Lithotomy Stirrups OB/GYN Lithotomy Stirrups.</SENoScript>
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>stirrups</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>9</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;p align="center"&gt;&lt;strong&gt;Top Quality stirrups help with lithotomy positioning.&lt;/strong&gt;&lt;/p&gt;
    &lt;p align="center"&gt;David Scott Company carries a huge inventory of lithotomy stirrups, medical stirrups, surgical stirrups, operating room leg supports, gel pads, patient positioners, hand tables, roller boards, medical gel pads and more. Find top quality lithotomy stirrups on sale at David Scott Company.&lt;/p&gt;
    &lt;p align="center"&gt;David Scott Company offers an extensive inventory of lithotomy stirrups, lithotomy gyn stirrups, pediatric stirrups, infant stirrups, bariatric stirrups and more. lithotomy stirrups and lift assist medical stirrups help support medical patients in operating rooms. Lithotomy Stirrups are now available with an advanced boot system that helps accomodate patient positioning in both short and long surgical procedures. Booted cane lithotomy stirrups, candy cane stirrups and lithotomy stirrups also enable safer low lithotomy leg posturing and leg positioning for prostate exam lithotomy stirrups or lithotomy stirrups and gel assist stirrups for laparoscopy and many related surgical procedures.&lt;/p&gt;
    &lt;p align="center"&gt;David Scott carries an extensive selection of lithotomy stirrups, medical stirrups, sirgical stirrups including: lift assist stirrups, lithotomy stirrups, pediatric stirrups, basic lithotomy stirrups, lithotomy stirrup accessories and more. Similar in concept to Yellowfin stirrups or Allen Stirrups.&lt;/p&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>67</EntityID>
                <Name>Lift Assist</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;noscript&gt;Lift Assist Stirrups. Bariatric Lift-Assisted Stirrups Lift Assist Lithotomy Stirrups Surgical Lift Assist Stirrup Systems.&lt;/noscript&gt;
    &lt;h1 style="font-size: 1.7em; text-align: center;"&gt;Lift Assist Stirrups&lt;/h1&gt;
    &lt;p&gt;Lift assist stirrups from David Scott have a reputation as the industry standard for premium quality pneumatic lift-assisted stirrup products. Lift assist stirrups feature easy to use pneumatic lift functions to achieve the optimal lithotomy position during surgeries. The standard lift assist lithotomy stirrup can handle up to 500lbs, while the bariatric lift assist stirrup is capable of handling up to 800lbs. In addition to the pneumatic lift-assisted stirrup features, both lift assist stirrups provide a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For lift assist stirrup systems designed for lithotomy positioning, David Scott is the source for state-of-the-art pneumatic lift-assisted stirrups and bariatric lift assist stirrups.&lt;/p&gt;
    </Description>
                <SEKeywords>lift assist stirrups, lift assist stirrup, lift-assisted stirrups, lift-assisted stirrup, lift assisted stirrups, bariatric lift assist stirrup, bariatric lift assisted stirrups, lift assist lithotomy stirrups, lift assist lithotomy stirrup, lithotomy lift assist stirrups, lithotomy lift assist stirrup, assisted stirrup, pneumatic stirrup, pneumatic stirrups, pneumatic stirrup lift, pneumatic lift stirrups, pneumatic lift stirrup, pneumatic lift assist stirrups, lift stirrups, lift assist stirrups</SEKeywords>
                <SEDescription>Lift Assist Stirrups 1-800-804-0333 Bariatric Lift-Assisted Stirrups Lift Assist Lithotomy Stirrups Surgical Lift Assist Stirrup Systems. Pneumatic lift assist stirrups for lithotomy medical examinations and bariatric surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality lift assisted stirrups and surgical procedure from David Scott.</SEDescription>
                <SETitle>Lift Assist Stirrups - Bariatric Lift-Assisted Stirrups Lift Assist Lithotomy Stirrups Surgical Lift Assist Stirrup Systems</SETitle>
                <SENoScript>Lift Assist Stirrups. Bariatric Lift-Assisted Stirrups Lift Assist Lithotomy Stirrups Surgical Lift Assist Stirrup Systems.</SENoScript>
                <SEAltText>Lift Assist Stirrups 1-800-804-0333 Bariatric Lift-Assisted Stirrups Lift Assist Lithotomy Stirrups Surgical Lift Assist Stirrup Systems. Pneumatic lift assist stirrups for lithotomy medical examinations and bariatric surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality lift assisted stirrups and surgery procedure equipment from David Scott.</SEAltText>
                <ParentEntityID>66</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>lift-assist</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Lift Assist Stirrups From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Lift assist stirrups from David Scott are ideal for lithotomy positioning. With pneumatic lift assist stirrups, medical practitioners can perform surgical procedures and medical examinations easier and more efficiently. Lift assist stirrups are designed with unique features to facilitate the range of motion during surgery. Patients can experience improved comfort and mobility with lift assist stirrup products. David Scott is a leader in lithotomy lift assist stirrups and provides premium quality medical supplies and surgical equipment. Receive lift assist stirrups from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>68</EntityID>
                <Name>Basic Stirrups</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;noscript&gt;Basic Stirrup. Leg Holders Lithotomy Positioning Leg Preppers Surgery Stirrups Lithotomy Stirrup Systems.&lt;/noscript&gt;
    &lt;h1 style="font-size: 1.7em; text-align: center;"&gt;Basic Stirrups &amp;amp; Leg Holders&lt;/h1&gt;
    &lt;p&gt;Basic stirrups, surgery leg holders and leg preppers from David Scott have a reputation as the industry standard for premium quality lithotomy positioning stirrup products. Basic lithotomy position stirrups offer ergonomic design features to achieve optimal patient comfort and positioning during surgeries. The standard basic stirrup leg holder offers better support than traditional Candy Cane style leg holders, while the single loop leg prepper serve to run cables and tubes over the operating table. In addition to the versatile options each surgical leg holder and leg holder provides, David Scott's basic stirrup systems feature a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For lithotomy positioning stirrups, surgery leg holders, and surgery leg preppers, Davide Scott is the source for state-of-the-art stirrup systems.&lt;/p&gt;
    </Description>
                <SEKeywords>basic stirrups, leg preppers, leg holders, basic stirrup, leg prepper, leg holder, lithotomy positioning stirrups, lithotomy position stirrups, lithotomy position stirrup, surgery stirrups, stirrup system, surgical leg holders, surgical leg preppers, single loop leg prepper, lithotomy surgery stirrups, lithotomy medical stirrups, lithotomy surgery stirrup, lithotomy medical stirrup, basic stirrups</SEKeywords>
                <SEDescription>Basic Stirrups 1-800-804-0333 Leg Holders Lithotomy Positioning Leg Preppers Surgery Stirrups Lithotomy Stirrup Systems. Lithotomy position stirrups, surgery leg holders and leg preppers are ideal for medical examinations, lithotomy positioning, and surgical procedures. Receive premium quality lithotomy positioning stirrups, leg holders and leg preppers from David Scott.</SEDescription>
                <SETitle>Basic Stirrups - Leg Holders Lithotomy Positioning Leg Preppers Surgery Stirrups Lithotomy Stirrup Systems</SETitle>
                <SENoScript>Basic Stirrup. Leg Holders Lithotomy Positioning Leg Preppers Surgery Stirrups Lithotomy Stirrup Systems.</SENoScript>
                <SEAltText>Basic Stirrups 1-800-804-0333 Leg Holders Lithotomy Positioning Leg Preppers Surgery Stirrups Lithotomy Stirrup Systems. Lithotomy position stirrups, surgery leg holders and leg preppers are ideal for medical examinations, lithotomy positioning, and surgical procedures. Receive premium quality lithotomy positioning stirrups, leg holders and leg preppers from David Scott.</SEAltText>
                <ParentEntityID>66</ParentEntityID>
                <DisplayOrder>2</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>basic-stirrups</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>9</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Basic Stirrups, Surgical Leg Preppers and Surgical Leg Holders From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The basic stirrups, surgical leg preppers, and surgical leg holders from David Scott are ideal for lithotomy positioning. With basic stirrup systems, medical professionals can perform surgical procedures and medical examinations easier and more efficiently. Surgical leg holders and leg preppers are designed with unique features to facilitate the range of motion during surgery. Patients can experience improved comfort and mobility with basic stirrup system products. David Scott is a leader in lithotomy positioning stirrups and provides premium quality medical supplies and surgical equipment. Receive basic stirrups, surgical leg holders, and surgical leg preppers from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>69</EntityID>
                <Name>Candy Cane Stirrups</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;noscript&gt;Candy Cane Stirrups. Adjustable Candy Cane Stirrups Candy Cane Lithotomy Stirrups Surgical Candy Cane Stirrup Systems.&lt;/noscript&gt;
    &lt;h1 style="font-size: 1.7em; text-align: center;"&gt;Candy Cane Stirrups&lt;/h1&gt;
    &lt;p&gt;Candy cane stirrups from David Scott have a reputation as the industry standard for premium quality candy cane stirrup products. Adjustable candy cane stirrups offer easy to use straps and foot positioning features to achieve the optimal lithotomy position during surgeries. The candy cane lithotomy stirrups from David Scott are equipped with cotton foot straps to adapt to a wide range of patients. In addition, customers can upgrade the standard candy cane stirrup cotton straps to premium gel lined foot straps for extended comfort. The adjustable candy cane stirrups provide a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For candy cane stirrup systems designed for lithotomy positioning, David Scott is the source for state-of-the-art adjustable candy cane stirrups and gel lined replacement straps for candy cane stirrup systems.&lt;/p&gt;
    </Description>
                <SEKeywords>candy cane stirrups, candy cane stirrup, adjustable candy cane stirrups, stirrups candy cane, stirrup candy cane, candy cane lithotomy stirrups, candy cane lithotomy stirrup, lithotomy candy cane stirrups, lithotomy candy cane stirrup, cane stirrups, cane stirrup, replacement straps for candy cane stirrups, stirrup replacement straps, stirrup straps, stirrup replacement strap, stirrup strap, candy cane style stirrups, candy cane stirrups</SEKeywords>
                <SEDescription>Candy Cane Stirrups 1-800-804-0333 Adjustable Candy Cane Stirrups Candy Cane Lithotomy Stirrups Surgical Candy Cane Stirrup Systems. Candy cane stirrups for lithotomy positioning, medical examinations, and bariatric surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality adjustable candy cane stirrups and surgical equipment from David Scott.</SEDescription>
                <SETitle>Candy Cane Stirrups - Adjustable Candy Cane Stirrups Candy Cane Lithotomy Stirrups Surgical Candy Cane Stirrup Systems</SETitle>
                <SENoScript>Candy Cane Stirrups. Adjustable Candy Cane Stirrups Candy Cane Lithotomy Stirrups Surgical Candy Cane Stirrup Systems.</SENoScript>
                <SEAltText>Candy Cane Stirrups 1-800-804-0333 Adjustable Candy Cane Stirrups Candy Cane Lithotomy Stirrups Surgical Candy Cane Stirrup Systems. Candy cane stirrups for lithotomy positioning, medical examinations, and bariatric surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality adjustable candy cane stirrups and surgical equipment from David Scott.</SEAltText>
                <ParentEntityID>66</ParentEntityID>
                <DisplayOrder>3</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>candy-cane-stirrups</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>4</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Adjustable Candy Cane Stirrups From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Adjustable candy cane stirrups from David Scott are ideal for lithotomy positioning. With candy cane stirrup systems, medical practitioners can perform surgical procedures and medical examinations easier and more efficiently. Adjustable candy cane stirrups are designed with unique features to facilitate the range of motion during surgery. Patients can experience improved comfort and mobility with candy cane stirrup products. David Scott is a leader in lithotomy candy cane stirrups and provides premium quality medical supplies and surgical equipment. Receive adjustable candy cane stirrups from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>160</EntityID>
                <Name>Pediatric Stirrups</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;noscript&gt;Pediatric Stirrups. Lithotomy Pediatric Stirrups Pediatric Style Stirrups Surgical Pediatric Stirrup Systems.&lt;/noscript&gt;
    &lt;h1 style="font-size: 1.7em; text-align: center;"&gt;Pediatric Stirrups&lt;/h1&gt;
    &lt;p&gt;Pediatric stirrups from David Scott have a reputation as the industry standard for premium quality pediatric stirrup products. Lithotomy pediatric stirrups offer easy to use straps and foot positioning features to achieve the optimal surgical position during medical procedures. The pediatric lithotomy stirrups from David Scott are designed with stainless rods that are shorter in length than a traditional stirrup. This allows the pediatric surgery stirrups to fit children and small patients with ease. Pediatric lithotomy stirrups provide a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For pediatric stirrup systems designed for lithotomy positioning, David Scott is the source for state-of-the-art pediatric stirrups and adjustable pediatric stirrup systems.&lt;/p&gt;
    </Description>
                <SEKeywords>pediatric stirrups, pediatric stirrup, lithotomy pediatric stirrups, stirrups pediatric, stirrup pediatric, pediatric lithotomy stirrups, pediatric lithotomy stirrup, lithotomy pediatric stirrup, pediatric surgical stirrups, pediatric medical stirrups, pediatric surgical stirrup, pediatric medical stirrup, pediatric style stirrups, pediatric stirrups</SEKeywords>
                <SEDescription>Pediatric Stirrups 1-800-804-0333 Lithotomy Pediatric Stirrups Pediatric Style Stirrups Surgical Pediatric Stirrup Systems. Pediatric stirrups for lithotomy positioning, medical examinations, and pediatric surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality pediatric stirrups and surgical equipment from David Scott.</SEDescription>
                <SETitle>Pediatric Stirrups - Lithotomy Pediatric Stirrups Pediatric Style Stirrups Surgical Pediatric Stirrup Systems</SETitle>
                <SENoScript>Pediatric Stirrups. Lithotomy Pediatric Stirrups Pediatric Style Stirrups Surgical Pediatric Stirrup Systems.</SENoScript>
                <SEAltText>Pediatric Stirrups 1-800-804-0333 Lithotomy Pediatric Stirrups Pediatric Style Stirrups Surgical Pediatric Stirrup Systems. Pediatric stirrups for lithotomy positioning, medical examinations, and pediatric surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality pediatric stirrups and surgical equipment from David Scott.</SEAltText>
                <ParentEntityID>66</ParentEntityID>
                <DisplayOrder>4</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>pediatric-stirrups</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>4</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Pediatric Stirrups From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The pediatric stirrups from David Scott are ideal for lithotomy positioning. With pediatric stirrup systems, medical practitioners can perform surgical procedures and medical examinations on smaller patients easier and more efficiently. Lithotomy pediatric stirrups are designed with unique features to facilitate the range of motion during surgery. Pediatric patients can experience improved comfort and mobility with pediatric stirrup products. David Scott is a leader in lithotomy pediatric stirrups and provides premium quality medical supplies and surgical equipment. Receive pediatric stirrups from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>70</EntityID>
                <Name>Accessories</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;noscript&gt;Lithotomy Accessories. Surgical Lithotomy Accessories For Lithotomy Positioning Medical Lithotomy Accessories.&lt;/noscript&gt;
    &lt;h1 style="font-size: 1.7em; text-align: center;"&gt;Lithotomy Accessories&lt;/h1&gt;
    &lt;p&gt;Lithotomy accessories from David Scott have a reputation as the industry standard for premium quality surgical lithotomy accessories and products. The assortment of medical lithotomy accessories provide a wide range of upgrades and add-ons to enhance surgical performance and patient comfort. The lithotomy accessories from David Scott range from Blue Diamond&amp;#174; Gel pads to replacement boot liners for Yellofin&amp;#174; stirrups. These lithotomy surgical accessories are ideal to improve operating room functionality and performance. Lithotomy accessories provide a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For medical lithotomy accessories designed for optimal patient positioning, David Scott is the source for state-of-the-art lithotomy accessories and lithotomy positioning products.&lt;/p&gt;
    </Description>
                <SEKeywords>lithotomy accessories, surgical lithotomy accessories, medical lithotomy accessories, accessories lithotomy, accessories for lithotomy, lithotomy medical accessories, lithotomy surgical accessories, lithotomy positioning accessories, lithotomy surgery accessories, surgery lithotomy accessories, lithotomy accessories</SEKeywords>
                <SEDescription>Lithotomy Accessories 1-800-804-0333 Surgical Lithotomy Accessories For Lithotomy Positioning Medical Lithotomy Accessories. Surgical lithotomy accessories for medical examinations, surgery procedures, and lithotomy positioning facilitate patient mobility, range of motion and comfort. Receive premium quality lithotomy medical accessories and surgical equipment from David Scott.</SEDescription>
                <SETitle>Lithotomy Accessories - Surgical Lithotomy Accessories For Lithotomy Positioning Medical Lithotomy Accessories</SETitle>
                <SENoScript>Lithotomy Accessories. Surgical Lithotomy Accessories For Lithotomy Positioning Medical Lithotomy Accessories.</SENoScript>
                <SEAltText>Lithotomy Accessories 1-800-804-0333 Surgical Lithotomy Accessories For Lithotomy Positioning Medical Lithotomy Accessories. Surgical lithotomy accessories for medical examinations, surgery procedures, and lithotomy positioning facilitate patient mobility, range of motion and comfort. Receive premium quality lithotomy medical accessories and surgical equipment from David Scott.</SEAltText>
                <ParentEntityID>66</ParentEntityID>
                <DisplayOrder>5</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>accessories</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>18</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Lithotomy Accessories From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Lithotomy accessories from David Scott provide a full range benefits. With lithotomy accessories, medical practitioners can perform surgical procedures and medical examinations easier and more efficiently. Lithotomy medical accessories are designed with unique features to facilitate the range of motion during surgery. Patients can experience improved comfort and mobility with lithotomy surgical accessories. David Scott is a leader in lithotomy accessories and provides premium quality medical supplies, surgical equipment and lithotomy positioning accessories. Receive quality surgical lithotomy accessories from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>291</EntityID>
                <Name>Medical Stirrups</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;noscript&gt;Medical Stirrups. Lithotomy Medical Stirrups Medical Lithotomy Stirrups Surgery Medical Stirrup Systems.&lt;/noscript&gt;
    &lt;h1 style="font-size: 1.7em; text-align: center;"&gt;Medical Stirrups&lt;/h1&gt;
    &lt;p&gt;Medical stirrups from David Scott have a reputation as the industry standard for premium quality medical stirrup products. Lithotomy medical stirrups offer easy to use straps and foot positioning features to achieve the optimal surgical position during medical procedures. The medical lithotomy stirrups from David Scott are designed with easily adjustable components and gel lined padding. This allows the medical stirrups to accommodate to a wide range of patients. Lithotomy medical stirrups provide a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For medical stirrup systems designed for lithotomy positioning, David Scott is the source for state-of-the-art medical stirrups and adjustable medical stirrup systems.&lt;/p&gt;
    &lt;p&gt;&lt;strong&gt;&lt;font size="2"&gt;Please follow this link to view all &lt;a href="http://www.davidscottco.com/c-66-lithotomy-stirrups.aspx"&gt;lithotomy stirrups&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    </Description>
                <SEKeywords>medical stirrups, medical stirrup, lithotomy medical stirrups, stirrups medical, stirrup medical, medical lithotomy stirrups, medical lithotomy stirrup, lithotomy medical stirrup, medical surgical stirrups, surgical medical stirrups, medical surgery stirrup, surgery medical stirrup, medical style stirrups, lithotomy positioning medical stirrups, lithotomy positioning medical stirrup, medical stirrups</SEKeywords>
                <SEDescription>Medical Stirrups 1-800-804-0333 Lithotomy Medical Stirrups Medical Lithotomy Stirrups Surgery Medical Stirrup Systems. Medical stirrups for lithotomy positioning, medical examinations, and surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality medical stirrups and surgical equipment from David Scott.</SEDescription>
                <SETitle>Medical Stirrups - Lithotomy Medical Stirrups Medical Lithotomy Stirrups Surgery Medical Stirrup Systems</SETitle>
                <SENoScript>Medical Stirrups. Lithotomy Medical Stirrups Medical Lithotomy Stirrups Surgery Medical Stirrup Systems.</SENoScript>
                <SEAltText>Medical Stirrups 1-800-804-0333 Lithotomy Medical Stirrups Medical Lithotomy Stirrups Surgery Medical Stirrup Systems. Medical stirrups for lithotomy positioning, medical examinations, and surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality medical stirrups and surgical equipment from David Scott.</SEAltText>
                <ParentEntityID>66</ParentEntityID>
                <DisplayOrder>6</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>medical-stirrups</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>10</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Medical Stirrups From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Medical stirrups from David Scott are ideal for lithotomy positioning. With medical stirrup systems, medical practitioners can perform surgical procedures and medical examinations on patients easier and more efficiently. Lithotomy medical stirrups are designed with unique features to facilitate the range of motion during surgery. Surgery patients can experience improved comfort and mobility with medical stirrup products. David Scott is a leader in lithotomy medical stirrups and provides premium quality medical supplies and surgical equipment. Receive medical stirrups from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>292</EntityID>
                <Name>Surgical Stirrups</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;noscript&gt;Surgical Stirrups. Lithotomy Surgical Stirrups Surgical Lithotomy Stirrups Medical Surgical Stirrup Systems.&lt;/noscript&gt;
    &lt;h1 style="font-size: 1.7em; text-align: center;"&gt;Surgical Stirrups&lt;/h1&gt;
    &lt;p&gt;Surgical stirrups from David Scott have a reputation as the industry standard for premium quality surgical stirrup products. Lithotomy surgical stirrups offer easy to use straps and foot positioning features to achieve the optimal position during surgical procedures. The surgical lithotomy stirrups from David Scott are designed with easily adjustable components and gel lined padding. This allows the surgical stirrups to accommodate to a wide range of patients. Lithotomy surgical stirrups provide a number of supportive benefits that enhance patient comfort and prevent surgery related injuries. For surgical stirrup systems designed for lithotomy positioning, David Scott is the source for state-of-the-art surgical stirrups and adjustable surgical stirrup systems.&lt;/p&gt;
    &lt;p&gt;&lt;strong&gt;&lt;font size="2"&gt;Please follow this link to view all &lt;a href="http://www.davidscottco.com/c-66-lithotomy-stirrups.aspx"&gt;lithotomy stirrups&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    </Description>
                <SEKeywords>surgical stirrups, surgical stirrup, lithotomy surgical stirrups, stirrups surgical, stirrup surgical, surgical lithotomy stirrups, surgical lithotomy stirrup, lithotomy surgical stirrup, surgical surgical stirrups, surgical surgical stirrups, surgical surgery stirrup, surgery surgical stirrup, surgical style stirrups, lithotomy positioning surgical stirrups, lithotomy positioning surgical stirrup, surgical stirrups</SEKeywords>
                <SEDescription>Surgical Stirrups 1-800-804-0333 Lithotomy Surgical Stirrups Surgical Lithotomy Stirrups Medical Surgical Stirrup Systems. Surgical stirrups for lithotomy positioning, medical examinations, and surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality surgical stirrups and medical equipment from David Scott.</SEDescription>
                <SETitle>Surgical Stirrups - Lithotomy Surgical Stirrups Surgical Lithotomy Stirrups Medical Surgical Stirrup Systems</SETitle>
                <SENoScript>Surgical Stirrups. Lithotomy Surgical Stirrups Surgical Lithotomy Stirrups Medical Surgical Stirrup Systems.</SENoScript>
                <SEAltText>Surgical Stirrups 1-800-804-0333 Lithotomy Surgical Stirrups Surgical Lithotomy Stirrups Medical Surgical Stirrup Systems. Surgical stirrups for lithotomy positioning, medical examinations, and surgical procedures facilitate patient mobility, range of motion and comfort. Receive premium quality surgical stirrups and medical equipment from David Scott.</SEAltText>
                <ParentEntityID>66</ParentEntityID>
                <DisplayOrder>7</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>surgical-stirrups</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>10</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p&gt;&lt;strong style="font-size: 1.4em;"&gt;Surgical Stirrups From David Scott&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Surgical stirrups from David Scott are ideal for lithotomy positioning. With surgical stirrup systems, medical practitioners can perform surgical procedures and medical examinations on patients easier and more efficiently. Lithotomy surgical stirrups are designed with unique features to facilitate the range of motion during surgery. Patients can experience improved comfort and mobility with surgical stirrup products. David Scott is a leader in lithotomy surgical stirrups and provides premium quality medical supplies and surgical equipment. Receive surgical stirrups from an equipment provider hospitals and medical professionals trust.&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>72</EntityID>
              <Name>Stools</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;DIV align=center&gt;&lt;BR&gt;
        &lt;FONT size=3&gt;Surgical Stools&amp;#8226;Step Stools&amp;#8226;&lt;/FONT&gt;&lt;FONT size=3&gt;StepStools&amp;#8226;Pneumatic Stools&amp;#8226;Surgeons Stools&amp;#8226;Lab Stools&amp;#8226;Stacking Step Stools&amp;#8226;Hydraulic Stools&amp;#8226;Adjustable Height Stools&lt;/FONT&gt;&lt;FONT size=3&gt;&amp;#8226;Medical Step Stools&lt;/FONT&gt;&lt;BR&gt;
        &lt;A href="/images/document/UPHOL2.pdf"&gt;&lt;IMG border=0 src="/images/UPHOL%20COLOR.jpg" width=120 height=120&gt;&lt;/A&gt; &lt;/DIV&gt;</Description>
              <SEKeywords>stools, stool, medical exam stools, medical exam stool, laboratory stools, laboratory stool, stools</SEKeywords>
              <SEDescription>Stools. Medical Stools, Exam Stools, Rolling Stools and Foot Stools Available At David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Stools | Medical Stools, Exam Stools, Rolling Stools</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>stools</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>16</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>149</EntityID>
                <Name>Adjustable Height Stools</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;font size="3" face="Tahoma"&gt;&lt;strong&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;p align="center"&gt;&lt;font size="3" face="Tahoma"&gt;&lt;strong&gt;&lt;font size="3"&gt;&lt;strong&gt;Surgical Stools &amp;#8226; Step Stools &amp;#8226; StepStools &amp;#8226; Pneumatic Stools &amp;#8226; Surgeons Stools &amp;#8226; Lab Stools &amp;#8226; Stacking Step Stools &amp;#8226; Hydraulic Stools &amp;#8226; Adjustable Height Stools &amp;#8226; Medical Step Stools&lt;br&gt;
    &lt;/strong&gt;&lt;br&gt;
    Stool Upholstery Color Choices&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt; &lt;/p&gt;
    &lt;p align="center"&gt;&lt;a href="../images/document/UPHOL2.pdf"&gt;&lt;img border="0" src="../images/UPHOL%20COLOR.jpg" width="142" height="142"&gt;&lt;/a&gt;&lt;/p&gt;
    </Description>
                <SEKeywords>adjustable height stools, adjustable height stool, round foot ring stools, round foot ring stool, aluminum base stools, aluminum base stool, adjustable height stools</SEKeywords>
                <SEDescription>Adjustable Height Stools. 4-Leg And 5-Leg Adjustable Height Stools With Aluminum Base And Back Available At David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
                <SETitle>Adjustable Height Stools | Round Foot Ring Stool, Aluminum Base Stool</SETitle>
                <SENoScript />
                <SEAltText>Adjustable Stools</SEAltText>
                <ParentEntityID>72</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>adjustable-height-stools</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>8</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>148</EntityID>
                <Name>Pneumatic Stools</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;p align="center"&gt;&lt;font size="3" face="Tahoma"&gt;&lt;strong&gt;Surgical Stools &amp;#8226; Step Stools &amp;#8226; StepStools &amp;#8226; Pneumatic Stools &amp;#8226; Surgeons Stools &amp;#8226; Lab Stools &amp;#8226; Stacking Step Stools &amp;#8226; Hydraulic Stools &amp;#8226; Adjustable Height Stools &amp;#8226; Medical Step Stools&lt;br&gt;
    &lt;br&gt;
    Stool Upholstery Color Choices &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3" face="Tahoma"&gt;&lt;strong&gt;
    &lt;p align="center"&gt;&lt;a href="/images/document/UPHOL2.pdf"&gt;&lt;img border="0" src="/images/UPHOL%20COLOR.jpg" width="142" height="142"&gt;&lt;/a&gt;&lt;/p&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    </Description>
                <SEKeywords>pneumatic stools, pneumatic stool, pneumatic lab stools, pneumatic lab stool, pneumatic exam stools, pneumatic exam stool, pneumatic stools</SEKeywords>
                <SEDescription>Pneumatic Stools. 5-Leg Pneumatic Lab Stools And Chrome Exam Stools Available At David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
                <SETitle>Pneumatic Stools | Pneumatic Lab Stools, Pneumatic Exam Stools</SETitle>
                <SENoScript />
                <SEAltText>Pneumatic Stools</SEAltText>
                <ParentEntityID>72</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>pneumatic-stools</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>5</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>147</EntityID>
                <Name>Surgical Step Stools</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;div align="center"&gt;&lt;font size="4" face="Tahoma"&gt;&lt;font size="3" face="Verdana"&gt;&lt;strong&gt;Foot Stools &amp;#8226; Step Stools &amp;#8226; Surgical Step Stools &amp;#8226; Surgeon Step Stool &amp;#8226;&amp;nbsp; Surgeon Foot Stool &amp;#8226; Surgical Stools &amp;#8226; Step Stools &amp;#8226; StepStools &amp;#8226; Pneumatic Stools &amp;#8226; Surgeons Stools &amp;#8226; Lab Stools &amp;#8226; Stacking Step Stools &amp;#8226; Hydraulic Stools &amp;#8226; Adjustable Height Stools &amp;#8226; Medical Step Stools&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;p align="center"&gt;&lt;a href="/images/document/UPHOL2.pdf"&gt;&lt;/a&gt;&lt;/p&gt;
    &lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    </Description>
                <SEKeywords>surgical step stools, surgical step stool, 2 step stainless steel foot stools, 2 step stainless steel foot stool, stainless steel step stools, stainless steel step stool, e-z stack step stools, e-z stack step stool, surgical step stools</SEKeywords>
                <SEDescription>Surgical Step Stools. 2 Step Stainless Steel Foot Stools, Stainless Steel Step Stools, E-Z Stack Step Stools And Transport Dolly For E-Z Stacking Step Stools Available At David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
                <SETitle>Surgical Step Stools | Stainless Steel Foot Stools, Stainless Steel Step Stools</SETitle>
                <SENoScript />
                <SEAltText>Foot Stools</SEAltText>
                <ParentEntityID>72</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>surgical-step-stools</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>8</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>64</EntityID>
              <Name>Stretcher Pads</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;REPLACEMENT STRETCHER PADS &amp;#8226; GURNEY PADS &amp;#8226; STRETCHER PADS FOR STRYKER &amp;#8226; PADS FOR HILL-ROM STRETCHER&lt;br&gt;
    &lt;/strong&gt;&lt;br&gt;
    To order custom stretcher pads please complete this form&lt;/font&gt; &lt;br&gt;
    &lt;a href="/images/document/Stretcher%20Pad%20Dimensions.pdf"&gt;&lt;img src="/images/pdf%20image.jpeg"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>stretcher pads, stretcher pad, medical stretcher pads, medical stretcher pad, standard stretcher pads, standard stretcher pad, universal stretcher pads, universal stretcher pad, gel/foam stretcher pads, gel/foam stretcher pad, gel stretcher pads, gel stretcher pad, foam stretcher pads, foam stretcher pad, extra-wide stretcher pads, extra-wide stretcher pad, stretcher pads with velcro, stretcher pads</SEKeywords>
              <SEDescription>Stretcher Pads. Medical Stretcher Pads, Standard Stretcher Pads, Universal Stretcher Pads, Gel/Foam Stretcher Pads, Extra-Wide Stretcher Pads, Stretcher Pads With Velcro And More Available At David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Stretcher Pads | Gel/Foam Stretcher Pads, Universal Stretcher Pads</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>stretcher-pads</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>9</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>38</EntityID>
              <Name>Table Pads (Operating Room)</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;div align="center"&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana"&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000"&gt;&lt;font size="3"&gt;Replacement OR Table pads &amp;#8226; Pads for Operating Tables &amp;#8226; Surgical Table Pads&lt;/font&gt;&lt;font size="4"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Operating Room Table Pads&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-size: medium; font-family: Verdana;"&gt;&amp;#8226;&amp;nbsp;&lt;/span&gt;&lt;font&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Amsco OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&amp;nbsp;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Steris&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Skytron&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Gettinge&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;span style="font-weight: normal;"&gt;&lt;font size="3"&gt;OR&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;MDT&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Shampaine&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table&lt;/font&gt;&amp;nbsp;&lt;font size="3"&gt;pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Maquet&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR&lt;/font&gt;&amp;nbsp;&lt;font size="3"&gt;Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;nbsp;Siemens&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Midmark&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;Table pad&lt;/font&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;font size="3"&gt;Berchtold&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;OR Table pad&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Foam Table Pads&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font size="3"&gt;&amp;#8226;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&amp;nbsp;&lt;font size="3"&gt;Pads for Operating Tables&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&amp;#8226;&lt;/span&gt;&lt;span style="font-family: Verdana;"&gt;&lt;font&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;font size="3"&gt;Medical Foam Pads&lt;/font&gt;&lt;/font&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana"&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000" size="3"&gt;&lt;em&gt;&lt;strong&gt;Any Foam Table Pad for any OR Table&amp;nbsp;&lt;/strong&gt;&lt;/em&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;font face="Verdana"&gt;&lt;font color="#ff0000"&gt;&lt;font color="#000000" size="3"&gt;&amp;nbsp;For a quote&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;a href="mailto:customerservice@davidscottco.com?subject=OR%20TABLE%20PAD%20QUOTE" style="text-decoration: underline; font-family: Verdana; font-size: large;"&gt;contact us&lt;/a&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&lt;hr&gt;
    &lt;/span&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;
    &lt;div style="text-align: left;"&gt;&lt;span style="font-size: medium; font-family: Verdana;"&gt;We offer 3 different levels of Pressure management to suit your budget&lt;/span&gt;&lt;/div&gt;
    &lt;font face="Verdana"&gt;
    &lt;div style="text-align: left;"&gt;&lt;span style="font-size: large; font-family: Verdana;"&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
    &lt;/font&gt;&lt;/div&gt;
    &lt;div align="center"&gt;&lt;strong&gt;
    &lt;h1 style="display: inline !important;"&gt;&lt;font color="#ff0000" size="4"&gt;&lt;img src="../images/SG-small.jpg" width="149" height="119"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &lt;img src="../images/UC-small.jpg" width="152" height="130"&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/font&gt;&lt;font color="#ff0000" size="4"&gt;&lt;img src="../images/COMBO-small.jpg" width="149" height="125"&gt;&lt;/font&gt;&lt;font color="#ff0000" size="4"&gt;&amp;nbsp;&lt;/font&gt;&lt;/h1&gt;
    &lt;/strong&gt;&lt;/div&gt;
    &lt;font color="#ff0000"&gt;
    &lt;div style="text-align: center;"&gt;&lt;strong style="font-family: Tahoma; font-size: medium;"&gt;Please Review Table Pad Series and choose your O.R. table manufacturer at the the bottom of the descriptions:&lt;/strong&gt;&lt;/div&gt;
    &lt;/font&gt;
    &lt;p style="TEXT-ALIGN: center; LINE-HEIGHT: normal; MARGIN-BOTTOM: 0pt" align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;SheerCare Series:&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;div style="BORDER-BOTTOM: windowtext 1pt solid; BORDER-LEFT: windowtext 1pt solid; PADDING-BOTTOM: 1pt; PADDING-LEFT: 4pt; PADDING-RIGHT: 4pt; BORDER-TOP: windowtext 1pt solid; BORDER-RIGHT: windowtext 1pt solid; PADDING-TOP: 1pt"&gt;
    &lt;p style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; LINE-HEIGHT: normal; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP: medium none; BORDER-RIGHT: medium none; PADDING-TOP: 0in" align="center"&gt;A great place to start! This pad is constructed of high density base foam surrounded by a Fusion III&amp;#174; ultra soft 4-way stretch covering.&amp;nbsp;&amp;nbsp; Our SheerCare Series offers an economical alternative without compromising the comfort and safety of your patients.&lt;/p&gt;
    &lt;p style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; LINE-HEIGHT: normal; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP: medium none; BORDER-RIGHT: medium none; PADDING-TOP: 0in" align="center"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→ High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt; &lt;font color="#000000"&gt;→ Fusion III&lt;sup&gt;&amp;#174;&lt;/sup&gt; Ultra Soft Covering&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p style="LINE-HEIGHT: normal"&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
    &lt;p style="TEXT-ALIGN: center; LINE-HEIGHT: normal; MARGIN-BOTTOM: 0pt" align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;UltraCare Series:&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;div style="BORDER-BOTTOM: windowtext 1pt solid; BORDER-LEFT: windowtext 1pt solid; PADDING-BOTTOM: 0in; PADDING-LEFT: 4pt; PADDING-RIGHT: 4pt; BORDER-TOP: windowtext 1pt solid; BORDER-RIGHT: windowtext 1pt solid; PADDING-TOP: 1pt"&gt;
    &lt;p style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; LINE-HEIGHT: normal; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP: medium none; BORDER-RIGHT: medium none; PADDING-TOP: 0in" align="center"&gt;Our UltraCare Series table pad sets take “Pressure Management” to the next level. These pad sets are constructed with high density base memory foam, then topped with a &amp;#189;” layer of Visco memory foam and surrounded by a Fusion III&amp;#174; ultra soft 4-way stretch covering.&lt;/p&gt;
    &lt;p style="TEXT-ALIGN: center; LINE-HEIGHT: normal" align="left"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→ High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt; &lt;font color="#ffa500"&gt;&lt;font color="#ff0000"&gt;→ Visco Memory Foam&lt;/font&gt;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;font color="#000000"&gt;→&lt;/font&gt; Fusion III&lt;sup&gt;&amp;#174;&lt;/sup&gt; Ultra Soft Covering&lt;/strong&gt;&lt;/p&gt;
    &lt;font size="3" face="Verdana"&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;/a&gt;&lt;/font&gt;
    &lt;div align="center"&gt;&lt;font size="3" face="Verdana"&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf" target="_blank"&gt;Click Here for Ultra Care Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;p style="TEXT-ALIGN: center; LINE-HEIGHT: normal; MARGIN-BOTTOM: 0pt" align="center"&gt;&lt;font size="3"&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img border="0" src="../images/Pressure%20map%20UC%20copy.jpg" width="94" height="55"&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;p style="TEXT-ALIGN: center; LINE-HEIGHT: normal; MARGIN-BOTTOM: 0pt" align="center"&gt;&lt;strong&gt;&lt;font size="3"&gt;Combo Series:&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;div style="BORDER-BOTTOM: windowtext 1pt solid; BORDER-LEFT: windowtext 1pt solid; PADDING-BOTTOM: 1pt; PADDING-LEFT: 4pt; PADDING-RIGHT: 4pt; BORDER-TOP: windowtext 1pt solid; BORDER-RIGHT: windowtext 1pt solid; PADDING-TOP: 1pt"&gt;
    &lt;p style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; LINE-HEIGHT: normal; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; MARGIN-BOTTOM: 0pt; BORDER-TOP: medium none; BORDER-RIGHT: medium none; PADDING-TOP: 0in" align="center"&gt;Our Combo Series is our most comprehensively designed pressure management table pad system. Our unique “tri-level” design is constructed of a high-density supportive base foam then topped with a &amp;#189;” layer of doughy soft cradling Visco memory foam.&amp;nbsp; A layer of Blue Diamond&amp;#174; Gel is placed just below the Fusion III&amp;#174; ultra soft 4-way stretch covering to ensure your patients the maximum protection available for pressure management.&lt;/p&gt;
    &lt;p style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; LINE-HEIGHT: normal; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP: medium none; BORDER-RIGHT: medium none; PADDING-TOP: 0in" align="center"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→ High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&amp;nbsp;&lt;font color="#ffa500"&gt;&amp;nbsp;&lt;font color="#ff0000"&gt; → Visco Memory Foam&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt; &lt;strong&gt;&lt;font color="#0000ff"&gt;→ Blue Diamond Gel&lt;sup&gt;&amp;#174;&lt;/sup&gt;&amp;nbsp;&lt;/font&gt;&amp;nbsp;&lt;font color="#000000"&gt; → Fusion III&lt;sup&gt;&amp;#174; &lt;/sup&gt;Ultra Soft Covering &lt;/font&gt;&lt;/strong&gt;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;&lt;a href="http://www.davidscottco.com/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;br&gt;
    &lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;p style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; PADDING-BOTTOM: 0in; LINE-HEIGHT: normal; PADDING-LEFT: 0in; PADDING-RIGHT: 0in; BORDER-TOP: medium none; BORDER-RIGHT: medium none; PADDING-TOP: 0in" align="center"&gt;&lt;font size="3"&gt;&lt;font face="Verdana"&gt;&lt;a href="http://www.davidscottco.com/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf" target="_blank"&gt;Click Here for Combo Series Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;strong&gt; &lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;font size="3"&gt;&lt;font face="Verdana"&gt;&lt;a href="http://www.davidscottco.com/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;a href="http://www.davidscottco.com/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="WIDTH: 94px; HEIGHT: 55px" src="http://www.davidscottco.com/images/Pressure%20map.jpg"&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;br&gt;
    &lt;div style="text-align: center;"&gt;&lt;strong style="color: rgb(255, 0, 0); font-family: Tahoma; font-size: medium;"&gt;Please select your table manufacturer:&lt;/strong&gt;&lt;/div&gt;
    </Description>
              <SEKeywords>operating room table pads, operating room table pad, pads for operating tables, pad for operating tables, surgical table pads, surgical table pad, amsco operating room table pad, steris operating room table pad, skytron operating room table pad, gettinge operating room table pad, mdt operating room table pad, shampaine operating room table pad, maquet operating room table pad, siemens operating room table pad, midmark operating room table pad, operating room table pads</SEKeywords>
              <SEDescription>Operating Room Table Pads. Pads For Operating Tables, Surgical Table Pads For Amsco, Steris, Skytron, Gettinge, MDT, Shampaine, Maquet, Siemens And Midmark Available At David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Operating Room Table Pads |Operating Table Pads | Foam Table Pads | Pads for Operating Tables | Medical Foam Pads </SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>table-pads-operating-room</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>0</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:WordDocument&gt;
      &lt;w:View&gt;Normal&lt;/w:View&gt;
      &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
      &lt;w:TrackMoves/&gt;
      &lt;w:TrackFormatting/&gt;
      &lt;w:PunctuationKerning/&gt;
      &lt;w:ValidateAgainstSchemas/&gt;
      &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
      &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
      &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
      &lt;w:DoNotPromoteQF/&gt;
      &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
      &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
      &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
      &lt;w:Compatibility&gt;
       &lt;w:BreakWrappedTables/&gt;
       &lt;w:SnapToGridInCell/&gt;
       &lt;w:WrapTextWithPunct/&gt;
       &lt;w:UseAsianBreakRules/&gt;
       &lt;w:DontGrowAutofit/&gt;
       &lt;w:SplitPgBreakAndParaMark/&gt;
       &lt;w:DontVertAlignCellWithSp/&gt;
       &lt;w:DontBreakConstrainedForcedTables/&gt;
       &lt;w:DontVertAlignInTxbx/&gt;
       &lt;w:Word11KerningPairs/&gt;
       &lt;w:CachedColBalance/&gt;
      &lt;/w:Compatibility&gt;
      &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;
      &lt;m:mathPr&gt;
       &lt;m:mathFont m:val="Cambria Math"/&gt;
       &lt;m:brkBin m:val="before"/&gt;
       &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
       &lt;m:smallFrac m:val="off"/&gt;
       &lt;m:dispDef/&gt;
       &lt;m:lMargin m:val="0"/&gt;
       &lt;m:rMargin m:val="0"/&gt;
       &lt;m:defJc m:val="centerGroup"/&gt;
       &lt;m:wrapIndent m:val="1440"/&gt;
       &lt;m:intLim m:val="subSup"/&gt;
       &lt;m:naryLim m:val="undOvr"/&gt;
      &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
      DefSemiHidden="true" DefQFormat="false" DefPriority="99"
      LatentStyleCount="267"&gt;
      &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
      &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
      &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
      &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
      &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
       UnhideWhenUsed="false" Name="Table Grid"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
      &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
      &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
     &lt;/w:LatentStyles&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
    &lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;style reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1'&gt;
     /* 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-qformat:yes;
    	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-fareast-font-family:"Times New Roman";
    	mso-fareast-theme-font:minor-fareast;
    	mso-hansi-font-family:Calibri;
    	mso-hansi-theme-font:minor-latin;}
    &lt;/style&gt;
    &lt;![endif]--&gt;
    &lt;p class="MsoNormal"&gt;David Scott offers a full line of replacement foam OR table pads for operating table manufacturers such as Steris OR table pads, Amsco foam operating table pads, Skytron replacement OR table pads, Berchtold Foam table pads, CMAX OR table pads, Gel table pads, foam table pads, Midmark table pads, Maquet foam table pads, Stryker Vertier replacement table pads, as well as Getinge table pads, MDT replacement OR table pads.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We have offered replacement OR table pads for years. We have numerous styles of foam replacement table pads for operating tables, stretcher pads, gurney pads, exam table pads, as well as custom configured replacement foam table pads.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;For custom a configured replacement OR table pads we just need a sketch of your foam OR table pads or your operating table dimensions. You can also email us and reference Custom Table Pad , or custom OR table pad to &lt;a href="mailto:customerserive@davidscottco.com"&gt;customerservice@davidscottco.com&lt;/a&gt;.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We offer a SheerCare Foam OR table pad for patient comfort, We offer an UltraCare Foam OR table pad as a replacement table pad for operating tables which offer Visco memory foam. So that is a memory foam OR table pad or Visco foam replacement OR table pad.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;Our Combo Series replacement OR table pad is a foam OR table pad, a Visco memoery foam table pad and a Blue Diamond&amp;#174; Gel table pad all rolled into one superior replacement Or table pad for a pressure management table pad.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We can also weld the seams on any of our replacement foam table pads as well as our combo series OR table pad.&lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We offer 2” foam table pads, 3” OR table pads, 4” replacement Foam OR table pads as well as Bariatric Foam Table pads which can be 5” or 6” thick. These Bariatric OR table pads can support hundreds of pounds. We can work to design Custom Table pads for your operating room and provide pressure management pads for your OR tables. &lt;/p&gt;
    &lt;p class="MsoNormal"&gt;We can make any table pad for any OR table for any operating room.&lt;/p&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>39</EntityID>
                <Name>Amsco / Steris Table Pads</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;noscript&gt;Surgical Table Pads. Amsco Table Pads. Steris Operating Table Pad Products. David Scott Company.&lt;/noscript&gt;
    &lt;h1 style="TEXT-ALIGN: center; FONT-SIZE: 1.7em"&gt;&lt;font size="3"&gt;Surgical Table Pads | Amsco Table Pads | Steris Operating Table Pad&lt;/font&gt;&lt;/h1&gt;
    &lt;font size="3"&gt;
    &lt;hr&gt;
    &lt;/font&gt;&lt;br&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;&lt;font size="3"&gt;Surgical Table Pads, Amsco Table Pads &amp;amp;&lt;br&gt;
    Steris Operating Table Pad&lt;/font&gt;&lt;/h2&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;&lt;font size="3"&gt;Replacement Foam OR Table Pads&lt;br&gt;
    Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333&lt;/font&gt; &lt;/h2&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="2"&gt;&lt;strong&gt;Table Pad Products&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;font size="2"&gt;&lt;strong&gt;Steris SheerCare OR Table Pads | Steris UltraCare OR Table Pads | Steris Combo Operating Table Pads&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;a href="/images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font size="2" face="Tahoma"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="/images/document/UltraCare%20Pad.pdf"&gt;UltraCare Pressure Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="/images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt; &lt;/font&gt;&lt;a href="/images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="WIDTH: 40px; HEIGHT: 29px" border="0" src="/images/Pressure%20map%20UC%20copy.jpg"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font size="2" face="Verdana"&gt;&lt;a href="/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="/images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="WIDTH: 40px; HEIGHT: 29px" border="0" src="/images/Pressure%20map.jpg"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;ul&gt;&lt;/ul&gt;
        &lt;/div&gt;
        &amp;nbsp; &lt;strong&gt;&lt;font size="2" face="Verdana"&gt;&lt;a href="/images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR Table Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="/images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="WIDTH: 29px; HEIGHT: 29px" border="0" src="/images/pdf%20image.jpeg"&gt;&lt;/a&gt;&lt;br&gt;
        &lt;/div&gt;
        &lt;br&gt;
        &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Please select your table model:&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
        &lt;hr&gt;
    </Description>
                <SEKeywords>surgical table pads, operating table pads, surgical table pad, operating table pad, amsco table pads, amsco table pad, steris table pads, steris table pad, sheerguard pads, ultracare pads, sheerguard pad, ultracare pad, surgical pad, medical pad, surgery pad, surgical pads, medical pads, surgery pads, surgery table pad, surgery table pads, operation table pad, or replacement pad, or replacement pads, operation table pads, pad for operating table, pads for operating table, pad for surgical table, pads for surgical table, amsco pad, amsco pads, steris pad, steris pads, blue diamond gel pads, medical pads, gel table pads, sheerguard table pads, ultracare table pads, sheerguard table pad, ultracare table pad, david scott company, david scott co, surgical table pads, operating table pads</SEKeywords>
                <SEDescription>Surgical Table Pads. Amsco Table Pads. Steris Operating Table Pad Products. David Scott Co. Offers SheerGuard and UltraCare Table Pads for Amsco and Steris Operating Tables. Get Low Priced Surgical Table Pads David Scott Co. - The Leading Distributor of Medical Supplies.</SEDescription>
                <SETitle>Surgical Table Pads | Amsco Table Pads | Steris Operating Table Pad Products | David Scott Company</SETitle>
                <SENoScript>Surgical Table Pads. Amsco Table Pads. Steris Operating Table Pad Products. David Scott Company.</SENoScript>
                <SEAltText>Surgical Table Pads. Amsco Table Pads. Steris Operating Table Pad Products. David Scott Co. Offers SheerGuard and UltraCare Table Pads for Amsco and Steris Operating Tables. Get Low Priced Surgical Table Pads David Scott Co. - The Leading Distributor of Medical Supplies.</SEAltText>
                <ParentEntityID>38</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>amsco-steris-table-pads</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>18</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;h1 style="FONT-SIZE: 1.7em"&gt;Surgical Table Pads | Amsco Table Pads | Steris Operating Table Pad&lt;/h1&gt;
    &lt;p&gt;For the most comforting and versatile surgical table pads, the Amsco table pads and Steris operating table pad products from David Scott are among the best in the industry. Operating table pads for Amsco and Steris tables offer innovative design features to promote optimal patient positioning and comfort. Unlike many other operating room replacement pads (OR replacement pads), the surgical table pad products from David Scott are proven to help prevent injury and alleviate soreness during operations. For a wide assortment of Amsco table pads, Steris table pads and other operating table pad products, trust David Scott Company - the leading distributor of medical supplies.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;Amsco Table Pad Products&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Do not settle for standard operating table pads. The Amsco table pad products from David Scott are quality engineered for improved functioning and performance. The Amsco table pads help address a number of risks associated with extended surgical procedures. In addition, Amsco surgical table pads as well as other operating table pad products are manufactured to strict quality control standards to provide optimal durability and patient comfort. Browse David Scott's extensive inventory of Amsco table pads, gel table pads, Steris surgical table pad products and more.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;UltraCare Table Pads &amp;amp; SheerCare Table Pads&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;The premium UltraCare table pads and SheerCare table pads from David Scott take "pressure management" to the next level. Created with Visco memory foam and Fusion III&amp;#174; ultra soft covering, the SheerCare table pad and Ultracare table pad products are ideal for patient positioning and comfort. Additionally, the UltraCare table pads and SheerCare pads for operating tables prevent pressure point injuries and discomfort caused by prolonged operations. Discover the exceptional value of UltraCare table pads and SheerGurad surgical table pads from David Scott.&lt;/p&gt;
    &lt;p&gt;&lt;strong style="FONT-SIZE: 1.4em"&gt;Blue Diamond Gel&amp;#174; Pads For Operating Tables&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;David Scott provides Blue Diamond Gel&amp;#174; pads and operating room replacement pads (OR replacement pads) featuring a unique "tri-level" design. The "tri-level" design of our surgical table gel pads and OR replacement pads consist of a supportive base foam layer and is topped with doughy soft Visco memory foam. The "tri-level" OR replacement pad is complete with a Blue Diamond&amp;#174; Gel layer placed just below the Fusion III&amp;#174; ultra soft covering. This OR replacement pad design makes for a premium Blue Diamond Gel&amp;#174; pad that maximizes patient comfort while managing the strain caused by pressure points.&lt;/p&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; FONT-SIZE: 1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Operating gel pads and OR replacement pads for surgical tables offer a number of valuable benefits including:&lt;/h2&gt;
    &lt;ul&gt;
        &lt;li&gt;SheerCare and UltraCare surgical table pads help protect the skin from soreness, chafing and bruising
        &lt;/li&gt;
        &lt;li&gt;Operating table pad products alleviate pressure points
        &lt;/li&gt;
        &lt;li&gt;Blue Diamond Gel&amp;#174; pads and Steris table pads easily conform to patients' bodies to evenly distribute their weight
        &lt;/li&gt;
        &lt;li&gt;UltraCare and SheerCare table pads are ideal for anesthesia procedures
        &lt;/li&gt;
        &lt;li&gt;Amsco table pad products help to prevent nerve damage
        &lt;/li&gt;
        &lt;li&gt;OR replacement pads promote a better, more efficient operating room environment for physicians and nurses
        &lt;/li&gt;
        &lt;li&gt;Surgical table gel pads facilitate surgery operations and post-op examinations for medical professionals
        &lt;/li&gt;
        &lt;li&gt;David Scott Company OR Surgical table pads help to prevent excess sheer &amp;amp; friction &lt;/li&gt;
    &lt;/ul&gt;
    &lt;h2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; FONT-SIZE: 1.1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Learn More About Surgical Table Pads, Amsco Table Pads&lt;br&gt;
    &amp;amp; Steris Operating Table Pads By Calling 1-800-804-0333&lt;br&gt;
    &lt;br&gt;
    Or Click Any Of The SheerCare Pad, UltraCare Pad Or&lt;br&gt;
    Combo Operating Table Pad Products&lt;/h2&gt;
    &lt;br&gt;
    &lt;hr&gt;
    &lt;br&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>92</EntityID>
                <Name>Skytron</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;span style="font-family: 'Verdana','sans-serif'; color: rgb(153, 0, 0); font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;
    &lt;h2 style="border: medium none; text-align: center;"&gt;Surgical Table
    Pads, Skytron Table Pads &amp;amp;&lt;br&gt;
    Skytron Operating Table Pad&lt;br&gt;
    Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/h2&gt;
    &lt;div align="center"&gt;Replacement Foam OR Table Pads
    &lt;br&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;&lt;font size="2"&gt;&lt;strong&gt;Table Pad Products&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;font size="2"&gt;&lt;strong&gt;Skytron &lt;/strong&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;strong&gt;SheerCare OR Table Pads | &lt;/strong&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;strong&gt;Skytron &lt;/strong&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;strong&gt;UltraCare OR Table Pads |&lt;/strong&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;strong&gt;Skytron&lt;/strong&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;strong&gt;
    Combo Operating Table Pads&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Please select your table model:&lt;br&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/div&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Skytron</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>38</ParentEntityID>
                <DisplayOrder>2</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>skytron</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>15</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:WordDocument&gt;
      &lt;w:View&gt;Normal&lt;/w:View&gt;
      &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
      &lt;w:TrackMoves/&gt;
      &lt;w:TrackFormatting/&gt;
      &lt;w:PunctuationKerning/&gt;
      &lt;w:ValidateAgainstSchemas/&gt;
      &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
      &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
      &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
      &lt;w:DoNotPromoteQF/&gt;
      &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
      &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
      &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
      &lt;w:Compatibility&gt;
       &lt;w:BreakWrappedTables/&gt;
       &lt;w:SnapToGridInCell/&gt;
       &lt;w:WrapTextWithPunct/&gt;
       &lt;w:UseAsianBreakRules/&gt;
       &lt;w:DontGrowAutofit/&gt;
       &lt;w:SplitPgBreakAndParaMark/&gt;
       &lt;w:DontVertAlignCellWithSp/&gt;
       &lt;w:DontBreakConstrainedForcedTables/&gt;
       &lt;w:DontVertAlignInTxbx/&gt;
       &lt;w:Word11KerningPairs/&gt;
       &lt;w:CachedColBalance/&gt;
      &lt;/w:Compatibility&gt;
      &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;
      &lt;m:mathPr&gt;
       &lt;m:mathFont m:val="Cambria Math"/&gt;
       &lt;m:brkBin m:val="before"/&gt;
       &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
       &lt;m:smallFrac m:val="off"/&gt;
       &lt;m:dispDef/&gt;
       &lt;m:lMargin m:val="0"/&gt;
       &lt;m:rMargin m:val="0"/&gt;
       &lt;m:defJc m:val="centerGroup"/&gt;
       &lt;m:wrapIndent m:val="1440"/&gt;
       &lt;m:intLim m:val="subSup"/&gt;
       &lt;m:naryLim m:val="undOvr"/&gt;
      &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
      DefSemiHidden="true" DefQFormat="false" DefPriority="99"
      LatentStyleCount="267"&gt;
      &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
      &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
      &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
      &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
      &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
       UnhideWhenUsed="false" Name="Table Grid"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
      &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
      &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
     &lt;/w:LatentStyles&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
    &lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;style reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1'&gt;
     /* 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-qformat:yes;
    	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;}
    &lt;/style&gt;
    &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:WordDocument&gt;
      &lt;w:View&gt;Normal&lt;/w:View&gt;
      &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
      &lt;w:TrackMoves/&gt;
      &lt;w:TrackFormatting/&gt;
      &lt;w:PunctuationKerning/&gt;
      &lt;w:ValidateAgainstSchemas/&gt;
      &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
      &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
      &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
      &lt;w:DoNotPromoteQF/&gt;
      &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
      &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
      &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
      &lt;w:Compatibility&gt;
       &lt;w:BreakWrappedTables/&gt;
       &lt;w:SnapToGridInCell/&gt;
       &lt;w:WrapTextWithPunct/&gt;
       &lt;w:UseAsianBreakRules/&gt;
       &lt;w:DontGrowAutofit/&gt;
       &lt;w:SplitPgBreakAndParaMark/&gt;
       &lt;w:DontVertAlignCellWithSp/&gt;
       &lt;w:DontBreakConstrainedForcedTables/&gt;
       &lt;w:DontVertAlignInTxbx/&gt;
       &lt;w:Word11KerningPairs/&gt;
       &lt;w:CachedColBalance/&gt;
      &lt;/w:Compatibility&gt;
      &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;
      &lt;m:mathPr&gt;
       &lt;m:mathFont m:val="Cambria Math"/&gt;
       &lt;m:brkBin m:val="before"/&gt;
       &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
       &lt;m:smallFrac m:val="off"/&gt;
       &lt;m:dispDef/&gt;
       &lt;m:lMargin m:val="0"/&gt;
       &lt;m:rMargin m:val="0"/&gt;
       &lt;m:defJc m:val="centerGroup"/&gt;
       &lt;m:wrapIndent m:val="1440"/&gt;
       &lt;m:intLim m:val="subSup"/&gt;
       &lt;m:naryLim m:val="undOvr"/&gt;
      &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
      DefSemiHidden="true" DefQFormat="false" DefPriority="99"
      LatentStyleCount="267"&gt;
      &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
      &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
      &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
      &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
      &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
       UnhideWhenUsed="false" Name="Table Grid"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
      &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
      &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
     &lt;/w:LatentStyles&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
    &lt;div id='RadEditorStyleKeeper2' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper2' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper2' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper2' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper2' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;style reoriginalpositionmarker='RadEditorStyleKeeper2' reoriginalpositionmarker='RadEditorStyleKeeper2' reoriginalpositionmarker='RadEditorStyleKeeper2' reoriginalpositionmarker='RadEditorStyleKeeper2' reoriginalpositionmarker='RadEditorStyleKeeper2'&gt;
     /* 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-qformat:yes;
    	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;}
    &lt;/style&gt;
    &lt;![endif]--&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical Table Pads |
    Skytron&amp;nbsp;Table Pads | Skytron Operating Table Pad&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;For the most comforting and
    versatile surgical table pads, the Skytron table pads and Skytron operating
    table pad products from David Scott are among the best in the industry. Operating
    table pads for Skytron &amp;nbsp;tables offer innovative design features to promote
    optimal patient positioning and comfort. Unlike many other operating room
    replacement pads (OR replacement pads), the surgical table pad products from
    David Scott are proven to help prevent injury and alleviate soreness during
    operations. For a wide assortment of Skytron table pads, Skytron table pads and
    other operating table pad products, trust David Scott Company - the leading
    distributor of medical supplies.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Skytron Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Do not settle for standard operating
    table pads. The Skytron table pad products from David Scott are quality
    engineered for improved functioning and performance. The Skytron &amp;nbsp;table
    pads help address a number of risks associated with extended surgical
    procedures. In addition, Skytron surgical table pads as well as other operating
    table pad products are manufactured to strict quality control standards to
    provide optimal durability and patient comfort. Browse David Scott's extensive
    inventory of Skytron table pads, gel table pads, Skytron surgical table pad
    products and more.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare Table Pads &amp;amp;
    SheerCare Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;The premium UltraCare table pads and
    SheerCare table pads from David Scott take "pressure management" to
    the next level. Created with Visco memory foam and Fusion III&amp;#174; ultra soft
    covering, the SheerCare&amp;nbsp; OR Surgical table pads and Ultracare Surgical
    table pad products are ideal for patient positioning and comfort. Additionally,
    the UltraCare table pads and SheerCare pads for operating tables prevent
    pressure point injuries and discomfort caused by prolonged operations. Discover
    the exceptional value of UltraCare table pads and SheerCare surgical table
    pads from David Scott.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; Pads For Operating
    Tables&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott provides Blue Diamond
    Gel&amp;#174; pads and operating room replacement pads (OR replacement pads) featuring a
    unique "tri-level" design. The "tri-level" design of our
    surgical table gel pads and OR replacement pads consist of a supportive base
    foam &amp;nbsp;layer and is topped with doughy soft Visco memory foam. The
    "tri-level" OR replacement pad is complete with a Blue Diamond&amp;#174; Gel
    layer placed just below the Fusion III&amp;#174; ultra soft covering. This OR
    replacement pad design makes for a premium Blue Diamond Gel&amp;#174; pad that maximizes
    patient comfort while managing the strain caused by pressure points.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating gel pads and OR
    replacement pads for surgical tables offer a number of valuable benefits
    including:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;ul type="disc"&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;SheerCare and UltraCare surgical table pads help
        protect the skin from soreness, chafing and bruising &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating table pad products alleviate pressure points &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; pads and Skytron table pads easily
        conform to patients' bodies to evenly distribute their weight &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare and SheerCare&amp;nbsp; OR table pads are ideal
        for anesthesia procedures &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Replacement Skytron OR table pad products help to
        prevent nerve damage &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;OR replacement pads promote a better, more efficient
        operating room environment for physicians and nurses &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical table gel pads facilitate surgery operations
        and post-op examinations for medical professionals &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott Company OR table pads help to prevent sheer
        &amp;amp; friction&amp;nbsp; &lt;/span&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;p class="MsoNormal" style="text-align: center; line-height: normal;" align="center"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Learn
    More About Surgical Table Pads, Skytron Table Pads&lt;br&gt;
    &amp;amp; Skytron Operating Table Pads By Calling 1-800-804-0333&lt;br&gt;
    &lt;br&gt;
    Or Click Any Of The SheerCare Pad, UltraCare Pad Or&lt;br&gt;
    Combo Operating Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>101</EntityID>
                <Name>Getinge / MDT / Shampaine</Name>
                <ColWidth>3</ColWidth>
                <Description>&lt;h2 style="border: medium none; text-align: center;"&gt;Surgical Table
    Pads, Getinge MDT Shampaine Table Pads &amp;amp; Getinge MDT
    Shampaine Operating Table Pad&lt;br&gt;
    Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/h2&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="2"&gt;&lt;strong&gt;Replacement OR Table Pad Products&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;span style="font-weight: bold;"&gt;Getinge &lt;/span&gt;&lt;font size="2"&gt;&lt;strong&gt;SheerCare OR Table Pads | &lt;/strong&gt;&lt;/font&gt;&lt;span style="font-weight: bold;"&gt;Getinge &lt;/span&gt;&lt;font size="2"&gt;&lt;strong&gt;UltraCare OR Table Pads |
    &lt;/strong&gt;&lt;/font&gt;&lt;span style="font-weight: bold;"&gt;Getinge &lt;/span&gt;&lt;font size="2"&gt;&lt;strong&gt;Combo Operating Table Pads&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure
    Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure
    Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table
    Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Please select your table model:&lt;br&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;span style="font-family: 'Verdana','sans-serif'; color: rgb(153, 0, 0); font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;br&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;strong&gt;&lt;/strong&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Gettinge/MDT/Shampaine</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>38</ParentEntityID>
                <DisplayOrder>3</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>getinge-mdt-shampaine</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>15</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:WordDocument&gt;
      &lt;w:View&gt;Normal&lt;/w:View&gt;
      &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
      &lt;w:TrackMoves/&gt;
      &lt;w:TrackFormatting/&gt;
      &lt;w:PunctuationKerning/&gt;
      &lt;w:ValidateAgainstSchemas/&gt;
      &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
      &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
      &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
      &lt;w:DoNotPromoteQF/&gt;
      &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
      &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
      &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
      &lt;w:Compatibility&gt;
       &lt;w:BreakWrappedTables/&gt;
       &lt;w:SnapToGridInCell/&gt;
       &lt;w:WrapTextWithPunct/&gt;
       &lt;w:UseAsianBreakRules/&gt;
       &lt;w:DontGrowAutofit/&gt;
       &lt;w:SplitPgBreakAndParaMark/&gt;
       &lt;w:DontVertAlignCellWithSp/&gt;
       &lt;w:DontBreakConstrainedForcedTables/&gt;
       &lt;w:DontVertAlignInTxbx/&gt;
       &lt;w:Word11KerningPairs/&gt;
       &lt;w:CachedColBalance/&gt;
      &lt;/w:Compatibility&gt;
      &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;
      &lt;m:mathPr&gt;
       &lt;m:mathFont m:val="Cambria Math"/&gt;
       &lt;m:brkBin m:val="before"/&gt;
       &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
       &lt;m:smallFrac m:val="off"/&gt;
       &lt;m:dispDef/&gt;
       &lt;m:lMargin m:val="0"/&gt;
       &lt;m:rMargin m:val="0"/&gt;
       &lt;m:defJc m:val="centerGroup"/&gt;
       &lt;m:wrapIndent m:val="1440"/&gt;
       &lt;m:intLim m:val="subSup"/&gt;
       &lt;m:naryLim m:val="undOvr"/&gt;
      &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
      DefSemiHidden="true" DefQFormat="false" DefPriority="99"
      LatentStyleCount="267"&gt;
      &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
      &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
      &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
      &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
      &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
       UnhideWhenUsed="false" Name="Table Grid"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
      &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
      &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
     &lt;/w:LatentStyles&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
    &lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper1' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;style reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1' reoriginalpositionmarker='RadEditorStyleKeeper1'&gt;
     /* 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-qformat:yes;
    	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;}
    &lt;/style&gt;
    &lt;![endif]--&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical Table Pads | Getinge -
    Shampaine - MDT&amp;nbsp;Table Pads | Getinge - Shampaine - MDT Operating Table Pad&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;For the most comforting and
    versatile surgical table pads, the Getinge - Shampaine - MDT table pads and
    Getinge - Shampaine - MDT operating table pad products from David Scott are
    among the best in the industry. Operating table pads for Getinge - Shampaine -
    MDT &amp;nbsp;tables offer innovative design features to promote optimal patient
    positioning and comfort. Unlike many other operating room replacement pads (OR
    replacement pads), the surgical table pad products from David Scott are proven
    to help prevent injury and alleviate soreness during operations. For a wide
    assortment of Getinge - Shampaine - MDT table pads, Getinge - Shampaine - MDT
    table pads and other operating table pad products, trust David Scott Company -
    the leading distributor of medical supplies.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Getinge - Shampaine - MDT Table Pad
    Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Do not settle for standard operating
    table pads. The Getinge - Shampaine - MDT table pad products from David Scott
    are quality engineered for improved functioning and performance. The Getinge -
    Shampaine - MDT &amp;nbsp;table pads help address a number of risks associated with
    extended surgical procedures. In addition, Getinge - Shampaine - MDT surgical
    table pads as well as other operating table pad products are manufactured to
    strict quality control standards to provide optimal durability and patient
    comfort. Browse David Scott's extensive inventory of Getinge - Shampaine - MDT
    table pads, gel table pads, Getinge - Shampaine - MDT surgical table pad
    products and more.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare Table Pads &amp;amp;
    SheerGuard Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;The premium UltraCare table pads and
    SheerGuard table pads from David Scott take "pressure management" to
    the next level. Created with Visco memory foam and Fusion III&amp;#174; ultra soft
    covering, the SheerGuard&amp;nbsp; OR Surgical table pads and Ultracare Surgical
    table pad products are ideal for patient positioning and comfort. Additionally,
    the UltraCare table pads and SheerGuard pads for operating tables prevent
    pressure point injuries and discomfort caused by prolonged operations. Discover
    the exceptional value of UltraCare table pads and SheerGuard surgical table
    pads from David Scott.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; Pads For Operating
    Tables&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott provides Blue Diamond
    Gel&amp;#174; pads and operating room replacement pads (OR replacement pads) featuring a
    unique "tri-level" design. The "tri-level" design of our
    surgical table gel pads and OR replacement pads consist of a supportive base
    foam &amp;nbsp;layer and is topped with doughy soft Visco memory foam. The
    "tri-level" OR replacement pad is complete with a Blue Diamond&amp;#174; Gel
    layer placed just below the Fusion III&amp;#174; ultra soft covering. This OR
    replacement pad design makes for a premium Blue Diamond Gel&amp;#174; pad that maximizes
    patient comfort while managing the strain caused by pressure points.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating gel pads and OR
    replacement pads for surgical tables offer a number of valuable benefits
    including:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;ul type="disc"&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;SheerGuard and UltraCare surgical table pads help
        protect the skin from soreness, chafing and bruising &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating table pad products alleviate pressure points &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; pads and Getinge - Shampaine - MDT
        table pads easily conform to patients' bodies to evenly distribute their
        weight &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare and SheerGuard&amp;nbsp; OR table pads are ideal
        for anesthesia procedures &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Replacement Getinge - Shampaine - MDT OR table pad
        products help to prevent nerve damage &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;OR replacement pads promote a better, more efficient
        operating room environment for physicians and nurses &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical table gel pads facilitate surgery operations
        and post-op examinations for medical professionals &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott Company OR table pads help to prevent sheer
        &amp;amp; friction&amp;nbsp; &lt;/span&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;p class="MsoNormal" style="text-align: center; line-height: normal;" align="center"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Learn
    More About Surgical Table Pads, Getinge - Shampaine - MDT Table Pads&lt;br&gt;
    &amp;amp; Getinge - Shampaine - MDT Operating Table Pads By Calling 1-800-804-0333&lt;br&gt;
    &lt;br&gt;
    Or Click Any Of The SheerGuard Pad, UltraCare Pad Or&lt;br&gt;
    Combo Operating Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>103</EntityID>
                <Name>Maquet/Siemens</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;font color="#ff0000" size="4"&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: rgb(153, 0, 0); font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/font&gt;&lt;br&gt;
    &lt;h2 style="border: medium none; text-align: center;"&gt;Surgical Table
    Pads, Maquet Table Pads &amp;amp;&lt;br&gt;
    Maquet Operating Table Pad&lt;br&gt;
    Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/h2&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="2"&gt;&lt;strong&gt;Table Pad Products&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;font size="2"&gt;&lt;strong&gt;SheerGuard&amp;nbsp; OR Table Pads | UltraCare&amp;nbsp; OR Table
    Pads |
    Combo Operating Table Pads&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure
    Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure
    Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table
    Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;Please select your table
    model:&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;hr&gt;
    &lt;br&gt;
    &lt;/strong&gt;&lt;/div&gt;
    &lt;strong&gt;
    &lt;/strong&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Maquet/Siemens</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>38</ParentEntityID>
                <DisplayOrder>4</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>maquetsiemens</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>6</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>108</EntityID>
                <Name>Midmark</Name>
                <ColWidth>4</ColWidth>
                <Description>&lt;h2 style="border: medium none; text-align: center;"&gt;Surgical Table
    Pads, Midmark Table Pads &amp;amp;&lt;br&gt;
    Midmark Operating Table Pad&lt;br&gt;
    Order Online Now &amp;#8226; Call&amp;nbsp; 1-800-804-0333
    &lt;/h2&gt;
    &lt;br&gt;
    &lt;div align="center"&gt;&lt;font size="2"&gt;&lt;strong&gt;Midmark Replacement OR Table Pad Products&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;font size="2"&gt;&lt;strong&gt;Midmark SheerCare&amp;nbsp; OR Table Pads | Midmark UltraCare&amp;nbsp; OR Table
    Pads |
    Midmark Combo Operating Table Pads&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;div align="left"&gt;
    &lt;font size="2"&gt;&lt;strong&gt;&lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div align="left"&gt;
    &lt;div align="left"&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font face="Tahoma" size="2"&gt;&lt;font face="Verdana"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;UltraCare
    Pressure
    Mappin&lt;/a&gt;&lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;g&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;
    &lt;/font&gt;&lt;a href="../images/document/UltraCare%20Pad.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map%20UC%20copy.jpg" border="0"&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Combo
    Pressure
    Mapping&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp; &lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img style="height: 29px; width: 40px;" src="../images/Pressure%20map.jpg" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;/div&gt;
    &amp;nbsp;
    &lt;strong&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;OR
    Table
    Pad Configuration Description&lt;/a&gt;&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &lt;a href="../images/document/DSC%20%20Table%20Pad%20Configuration.pdf"&gt;&lt;img style="width: 29px; height: 29px;" src="../images/pdf%20image.jpeg" border="0"&gt;&lt;/a&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;font size="3"&gt;&lt;strong&gt;Please select your table
    model:&lt;/strong&gt;&lt;/font&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: rgb(153, 0, 0); font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Verdana','sans-serif'; color: red; font-size: 12pt;"&gt;
    &lt;div style="border-style: solid none none; border-color: windowtext -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 1pt 0in 0in;"&gt;
    &lt;p style="border: medium none; margin: 0in 0in 0pt; padding: 0in; line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-family: 'Times New Roman','serif'; color: rgb(84, 141, 212); font-size: 14pt;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-family: 'Times New Roman','serif'; color: rgb(84, 141, 212); font-size: 14pt;"&gt;&lt;br&gt;
    &lt;/span&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;strong&gt;&lt;/strong&gt;
    </Description>
                <SEKeywords />
                <SEDescription />
                <SETitle>Midmark</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>38</ParentEntityID>
                <DisplayOrder>5</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>midmark</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>0</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary>&lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical Table Pads |
    Midmark&amp;nbsp;Table Pads | Midmark Operating Table Pad&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;For the most comforting and
    versatile surgical table pads, the Midmark table pads and Midmark operating
    table pad products from David Scott are among the best in the industry. Operating
    table pads for Midmark &amp;nbsp;tables offer innovative design features to promote
    optimal patient positioning and comfort. Unlike many other operating room
    replacement pads (OR replacement pads), the surgical table pad products from
    David Scott are proven to help prevent injury and alleviate soreness during
    operations. For a wide assortment of Midmark table pads, Midmark table pads and
    other operating table pad products, trust David Scott Company - the leading
    distributor of medical supplies.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Midmark Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Do not settle for standard operating
    table pads. The Midmark table pad products from David Scott are quality
    engineered for improved functioning and performance. The Midmark &amp;nbsp;table
    pads help address a number of risks associated with extended surgical
    procedures. In addition, Midmark surgical table pads as well as other operating
    table pad products are manufactured to strict quality control standards to
    provide optimal durability and patient comfort. Browse David Scott's extensive
    inventory of Midmark table pads, gel table pads, Midmark surgical table pad
    products and more.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare Table Pads &amp;amp;
    SheerCare Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;The premium UltraCare table pads and
    SheerCare table pads from David Scott take "pressure management" to
    the next level. Created with Visco memory foam and Fusion III&amp;#174; ultra soft
    covering, the SheerCare&amp;nbsp; OR Surgical table pads and Ultracare Surgical
    table pad products are ideal for patient positioning and comfort. Additionally,
    the UltraCare table pads and SheerCare pads for operating tables prevent
    pressure point injuries and discomfort caused by prolonged operations. Discover
    the exceptional value of UltraCare table pads and SheerCare surgical table
    pads from David Scott.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; Pads For Operating
    Tables&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott provides Blue Diamond
    Gel&amp;#174; pads and operating room replacement pads (OR replacement pads) featuring a
    unique "tri-level" design. The "tri-level" design of our
    surgical table gel pads and OR replacement pads consist of a supportive base
    foam &amp;nbsp;layer and is topped with doughy soft Visco memory foam. The
    "tri-level" OR replacement pad is complete with a Blue Diamond&amp;#174; Gel
    layer placed just below the Fusion III&amp;#174; ultra soft covering. This OR
    replacement pad design makes for a premium Blue Diamond Gel&amp;#174; pad that maximizes
    patient comfort while managing the strain caused by pressure points.&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating gel pads and OR
    replacement pads for surgical tables offer a number of valuable benefits
    including:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;ul type="disc"&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;SheerCare and UltraCare surgical table pads help
        protect the skin from soreness, chafing and bruising &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Operating table pad products alleviate pressure points &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Blue Diamond Gel&amp;#174; pads and Midmark table pads easily
        conform to patients' bodies to evenly distribute their weight &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;UltraCare and SheerCare&amp;nbsp; OR table pads are ideal
        for anesthesia procedures &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Replacement Midmark OR table pad products help to
        prevent nerve damage &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;OR replacement pads promote a better, more efficient
        operating room environment for physicians and nurses &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Surgical table gel pads facilitate surgery operations
        and post-op examinations for medical professionals &lt;/span&gt;&lt;/li&gt;
        &lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;David Scott Company OR table pads help to prevent sheer
        &amp;amp; friction&amp;nbsp; &lt;/span&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Learn
    More About Surgical Table Pads, Midmark Table Pads&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &amp;amp; Midmark Operating Table Pads By Calling 1-800-804-0333&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Or Click Any Of The SheerCare Pad, UltraCare Pad Or&lt;/span&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;strong&gt;&lt;span style="font-size: 8pt; font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;
    Combo Operating Table Pad Products&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
    </Summary>
                <SkinID>0</SkinID>
                <TemplateName />
                <Entity>
                  <EntityID>109</EntityID>
                  <Name>7100</Name>
                  <ColWidth>4</ColWidth>
                  <Description>&lt;p style="margin-bottom: 12pt; line-height: normal;"&gt;&lt;strong&gt;
    &lt;h1&gt;&lt;font size="4" color="#ff0000"&gt;Please review &amp;amp; select from one of the following three O.R. Table Pad Series below:&lt;/font&gt;&lt;/h1&gt;
    &lt;br&gt;
    &lt;!--[endif]--&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="4"&gt;&lt;strong&gt;&lt;font size="5"&gt;SheerGuard Series:&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;div style="border: 1pt solid windowtext; padding: 1pt 4pt;"&gt;
    &lt;p style="border: medium none ; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;A great place to start! This pad is constructed of high density base foam surrounded by a Fusion III&amp;#174; ultra soft 4-way stretch covering.&amp;nbsp;&amp;nbsp; Our SheerGuard Series offers an economical alternative without compromising the comfort and safety of your patients.&lt;/p&gt;
    &lt;p style="border: medium none ; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→ High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt; &lt;font color="#000000"&gt;→ Fusion III&amp;#174; Ultra Soft Covering&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p style="line-height: normal;"&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
    &lt;p style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="5"&gt;&lt;strong&gt;UltraCare Series:&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;div style="border: 1pt solid windowtext; padding: 1pt 4pt 0in;"&gt;
    &lt;p style="border: medium none ; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;Our UltraCare Series table pad sets take “Pressure Management” to the next level. These pad sets are constructed with high density base memory foam, then topped with a &amp;#189;” layer of Visco memory foam and surrounded by a Fusion III&amp;#174; ultra soft 4-way stretch covering.&lt;/p&gt;
    &lt;p style="border: medium none ; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→ High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt; &lt;font color="#ffa500"&gt;&lt;font color="#ff0000"&gt;→ Visco Memory Foam&lt;/font&gt;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;font color="#000000"&gt;→&lt;/font&gt; Fusion III&amp;#174; Ultra Soft Covering&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p style="text-align: center; line-height: normal;" align="center"&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
    &lt;p style="margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="5"&gt;&lt;strong&gt;Combo Series:&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;div style="border: 1pt solid windowtext; padding: 1pt 4pt;"&gt;
    &lt;p style="border: medium none ; padding: 0in; margin-bottom: 0.0001pt; text-align: center; line-height: normal;" align="center"&gt;Our Combo Series is our most comprehensively designed pressure management table pad system. Our unique “tri-level” design is constructed of a high-density supportive base foam then topped with a &amp;#189;” layer of doughy soft cradling Visco memory foam.&amp;nbsp; A layer of Blue Diamond&amp;#174; Gel is placed just below the Fusion III&amp;#174; ultra soft 4-way stretch covering to ensure your patients the maximum protection available for pressure management.&lt;/p&gt;
    &lt;p style="border: medium none ; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font color="#008000"&gt;&lt;strong&gt;→ High Density Base Foam&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&amp;nbsp;&lt;font color="#ffa500"&gt;&amp;nbsp;&lt;font color="#ff0000"&gt; → Visco Memory Foam&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt; &lt;strong&gt;&lt;font color="#0000ff"&gt;→ Blue Diamond Gel&amp;#174;&amp;nbsp;&lt;/font&gt;&amp;nbsp;&lt;font color="#000000"&gt; → Fusion III&amp;#174; Ultra Soft Covering&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p style="line-height: normal;"&gt;&amp;nbsp;&lt;/p&gt;
    &lt;strong&gt;&lt;font size="4" color="#ff0000"&gt;To make your selection, please click on a Table Pad Series link below&lt;/font&gt;&lt;font size="4" color="#ff0000"&gt;:&lt;/font&gt;&lt;/strong&gt;&lt;br&gt;
    </Description>
                  <SEKeywords />
                  <SEDescription />
                  <SETitle>7100</SETitle>
                  <SENoScript />
                  <SEAltText />
                  <ParentEntityID>108</ParentEntityID>
                  <DisplayOrder>1</DisplayOrder>
                  <SortByLooks>0</SortByLooks>
                  <XmlPackage>entity.grid.xml.config</XmlPackage>
                  <Published>1</Published>
                  <SEName>7100</SEName>
                  <ContentsBGColor />
                  <PageBGColor />
                  <GraphicsColor />
                  <NumObjects>0</NumObjects>
                  <PageSize>20</PageSize>
                  <QuantityDiscountID>0</QuantityDiscountID>
                  <Summary />
                  <SkinID>0</SkinID>
                  <TemplateName />
                  <Entity>
                    <EntityID>237</EntityID>
                    <Name>SheerCare Series</Name>
                    <ColWidth>3</ColWidth>
                    <Description>&lt;div style="border-style: solid none none; border-color: windowtext -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 1pt 0in 0in;"&gt;
    &lt;p style="border: medium none; margin: 0in 0in 0.0001pt; padding: 0in; text-align: center;" align="center"&gt;&lt;strong&gt;&lt;span style="font-size: 16pt; color: rgb(6, 15, 186);"&gt;SheerCare
    Series:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p class="MsoNormal" style="text-align: center; line-height: normal;" align="center"&gt;A
    great place to start! This pad is constructed of high density base foam
    surrounded by a Fusion III&amp;#174; ultra soft 4-way stretch covering.&lt;span style=""&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;Our SheerGuard Series offers an economical
    alternative without compromising the comfort and safety of your patients.&lt;/p&gt;
    &lt;div style="border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color windowtext; border-width: medium medium 1pt; padding: 0in 0in 1pt;"&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center;" align="center"&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt; line-height: 115%; color: rgb(146, 208, 80);"&gt;→ High Density Base Foam&lt;/span&gt;&lt;/strong&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt; line-height: 115%;"&gt; → Fusion III&amp;#174; Ultra
    Soft Covering&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p class="MsoNormal"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;
    </Description>
                    <SEKeywords />
                    <SEDescription />
                    <SETitle>SheerGuard Series</SETitle>
                    <SENoScript />
                    <SEAltText>SheerGuard Series</SEAltText>
                    <ParentEntityID>109</ParentEntityID>
                    <DisplayOrder>1</DisplayOrder>
                    <SortByLooks>1</SortByLooks>
                    <XmlPackage>entity.grid.xml.config</XmlPackage>
                    <Published>1</Published>
                    <SEName>sheercare-series</SEName>
                    <ContentsBGColor />
                    <PageBGColor />
                    <GraphicsColor />
                    <NumObjects>3</NumObjects>
                    <PageSize>20</PageSize>
                    <QuantityDiscountID>0</QuantityDiscountID>
                    <Summary />
                    <SkinID>0</SkinID>
                    <TemplateName />
                  </Entity>
                  <Entity>
                    <EntityID>236</EntityID>
                    <Name>UltraCare Series</Name>
                    <ColWidth>3</ColWidth>
                    <Description>&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CDavid%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;
    &lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CDavid%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;
    &lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CDavid%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:WordDocument&gt;
      &lt;w:View&gt;Normal&lt;/w:View&gt;
      &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
      &lt;w:TrackMoves/&gt;
      &lt;w:TrackFormatting/&gt;
      &lt;w:PunctuationKerning/&gt;
      &lt;w:ValidateAgainstSchemas/&gt;
      &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
      &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
      &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
      &lt;w:DoNotPromoteQF/&gt;
      &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
      &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
      &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
      &lt;w:Compatibility&gt;
       &lt;w:BreakWrappedTables/&gt;
       &lt;w:SnapToGridInCell/&gt;
       &lt;w:WrapTextWithPunct/&gt;
       &lt;w:UseAsianBreakRules/&gt;
       &lt;w:DontGrowAutofit/&gt;
       &lt;w:SplitPgBreakAndParaMark/&gt;
       &lt;w:DontVertAlignCellWithSp/&gt;
       &lt;w:DontBreakConstrainedForcedTables/&gt;
       &lt;w:DontVertAlignInTxbx/&gt;
       &lt;w:Word11KerningPairs/&gt;
       &lt;w:CachedColBalance/&gt;
      &lt;/w:Compatibility&gt;
      &lt;m:mathPr&gt;
       &lt;m:mathFont m:val="Cambria Math"/&gt;
       &lt;m:brkBin m:val="before"/&gt;
       &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
       &lt;m:smallFrac m:val="off"/&gt;
       &lt;m:dispDef/&gt;
       &lt;m:lMargin m:val="0"/&gt;
       &lt;m:rMargin m:val="0"/&gt;
       &lt;m:defJc m:val="centerGroup"/&gt;
       &lt;m:wrapIndent m:val="1440"/&gt;
       &lt;m:intLim m:val="subSup"/&gt;
       &lt;m:naryLim m:val="undOvr"/&gt;
      &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
      DefSemiHidden="true" DefQFormat="false" DefPriority="99"
      LatentStyleCount="267"&gt;
      &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
      &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
      &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
      &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
      &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
       UnhideWhenUsed="false" Name="Table Grid"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
      &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
      &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
     &lt;/w:LatentStyles&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;
    &lt;style&gt;
        &lt;!--
     /* Font Definitions */
     @font-face
    	{font-family:"Cambria Math";
    	panose-1:2 4 5 3 5 4 6 3 2 4;
    	mso-font-charset:0;
    	mso-generic-font-family:roman;
    	mso-font-pitch:variable;
    	mso-font-signature:-1610611985 1107304683 0 0 159 0;}
    @font-face
    	{font-family:Calibri;
    	panose-1:2 15 5 2 2 2 4 3 2 4;
    	mso-font-charset:0;
    	mso-generic-font-family:swiss;
    	mso-font-pitch:variable;
    	mso-font-signature:-1610611985 1073750139 0 0 159 0;}
     /* Style Definitions */
     p.MsoNormal, li.MsoNormal, div.MsoNormal
    	{mso-style-unhide:no;
    	mso-style-qformat:yes;
    	mso-style-parent:"";
    	margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	margin-left:0in;
    	line-height:115%;
    	mso-pagination:widow-orphan;
    	font-size:11.0pt;
    	font-family:"Calibri","sans-serif";
    	mso-fareast-font-family:Calibri;
    	mso-bidi-font-family:"Times New Roman";}
    p
    	{mso-style-priority:99;
    	mso-margin-top-alt:auto;
    	margin-right:0in;
    	mso-margin-bottom-alt:auto;
    	margin-left:0in;
    	mso-pagination:widow-orphan;
    	font-size:12.0pt;
    	font-family:"Times New Roman","serif";
    	mso-fareast-font-family:"Times New Roman";}
    .MsoChpDefault
    	{mso-style-type:export-only;
    	mso-default-props:yes;
    	font-size:10.0pt;
    	mso-ansi-font-size:10.0pt;
    	mso-bidi-font-size:10.0pt;
    	mso-ascii-font-family:Calibri;
    	mso-fareast-font-family:Calibri;
    	mso-hansi-font-family:Calibri;}
    @page Section1
    	{size:8.5in 11.0in;
    	margin:1.0in 1.0in 1.0in 1.0in;
    	mso-header-margin:.5in;
    	mso-footer-margin:.5in;
    	mso-paper-source:0;}
    div.Section1
    	{page:Section1;}
    --&gt;
    &lt;/style&gt;
    &lt;!--[if gte mso 10]&gt;
    &lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;style reoriginalpositionmarker='RadEditorStyleKeeper5'&gt;
     /* 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-qformat:yes;
    	mso-style-parent:"";
    	mso-padding-alt:0in 5.4pt 0in 5.4pt;
    	mso-para-margin:0in;
    	mso-para-margin-bottom:.0001pt;
    	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-fareast-font-family:"Times New Roman";
    	mso-fareast-theme-font:minor-fareast;
    	mso-hansi-font-family:Calibri;
    	mso-hansi-theme-font:minor-latin;
    	mso-bidi-font-family:"Times New Roman";
    	mso-bidi-theme-font:minor-bidi;}
    &lt;/style&gt;
    &lt;![endif]--&gt;
    &lt;div style="border-style: solid none none; border-color: windowtext -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 1pt 0in 0in;"&gt;
    &lt;p style="border: medium none; margin: 0in 0in 0.0001pt; padding: 0in; text-align: center;" align="center"&gt;&lt;strong&gt;&lt;span style="font-size: 16pt; color: rgb(6, 15, 186);"&gt;UltraCare
    Series:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    &lt;p class="MsoNormal" style="text-align: center; line-height: normal;" align="center"&gt;Our
    UltraCare Series table pad sets take “Pressure Management” to the next level.
    These pad sets are constructed with high density base memory foam, then topped
    with a &amp;#189;” layer of Visco memory foam and surrounded by a Fusion III&amp;#174; ultra soft
    4-way stretch covering.&lt;/p&gt;
    &lt;div style="border-style: none none solid; border-color: -moz-use-text-color -moz-use-text-color windowtext; border-width: medium medium 1pt; padding: 0in 0in 1pt;"&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt; color: rgb(146, 208, 80);"&gt;→ High Density Base Foam&lt;/span&gt;&lt;/strong&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt;"&gt; &lt;span style="color: red;"&gt;&lt;font size="3"&gt;→&lt;/font&gt;&lt;font size="3"&gt; &lt;span style=""&gt;&amp;nbsp;&lt;/span&gt;Visco Memory Foam&lt;/font&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&amp;nbsp; &lt;/span&gt;→ Fusion III&amp;#174; Ultra Soft Covering&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="3"&gt;&lt;a href="../images/document/DSC%202-inch%20UltraCare%20Pad%20-%20male%20-%205ft%209in%20-%20200lbs.pdf"&gt;Click
    Here
    for UltraCare Pressure Mapping&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;font size="3"&gt;&lt;a href="../images/document/DSC%202-inch%20UltraCare%20Pad%20-%20male%20-%205ft%209in%20-%20200lbs.pdf"&gt;&lt;img src="../images/Pressure%20map%20UC%20copy.jpg"&gt;&lt;br&gt;
    &lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;a style="position: absolute;" href="../images/document/DSC%202-inch%20UltraCare%20Pad%20-%20male%20-%205ft%209in%20-%20200lbs.pdf"&gt;&lt;br&gt;
    &lt;/a&gt;&lt;strike&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt;"&gt;&lt;hr&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;/strike&gt;&lt;/p&gt;
    &lt;div align="center"&gt;&lt;strike&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/strike&gt;&lt;/div&gt;
    &lt;a href="../images/document/UltracarePressureMap.pdf"&gt;&lt;br&gt;
    &lt;/a&gt;
    &lt;p  class="MsoNormal" style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;
    &lt;strong style=""&gt;&lt;span style="font-size: 12pt;"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt;"&gt;&lt;br&gt;
    &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p  class="MsoNormal" style="border: medium none; padding: 0in; text-align: center; line-height: normal;" align="center"&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;/div&gt;
    </Description>
                    <SEKeywords />
                    <SEDescription />
                    <SETitle>UltraCare Series</SETitle>
                    <SENoScript />
                    <SEAltText>UltraCare Series</SEAltText>
                    <ParentEntityID>109</ParentEntityID>
                    <DisplayOrder>2</DisplayOrder>
                    <SortByLooks>1</SortByLooks>
                    <XmlPackage>entity.grid.xml.config</XmlPackage>
                    <Published>1</Published>
                    <SEName>ultracare-series</SEName>
                    <ContentsBGColor />
                    <PageBGColor />
                    <GraphicsColor />
                    <NumObjects>3</NumObjects>
                    <PageSize>20</PageSize>
                    <QuantityDiscountID>0</QuantityDiscountID>
                    <Summary />
                    <SkinID>0</SkinID>
                    <TemplateName />
                  </Entity>
                  <Entity>
                    <EntityID>206</EntityID>
                    <Name>Combo Series</Name>
                    <ColWidth>3</ColWidth>
                    <Description>&lt;div style="border-style: solid none; border-color: windowtext -moz-use-text-color; border-width: 1pt medium; padding: 1pt 0in;"&gt;
    &lt;p style="border: medium none; margin: 0in 0in 0.0001pt; padding: 0in; text-align: center;" align="center"&gt;&lt;strong&gt;&lt;span style="font-size: 16pt; color: rgb(6, 15, 186);"&gt;Combo Series:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p style="border: medium none; margin: 0in 0in 0.0001pt; padding: 0in; text-align: center;" align="center"&gt;&lt;span style="font-size: 11pt; font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;Our Combo Series&lt;/span&gt;
    is &lt;span style="font-size: 11pt; font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;;"&gt;our most comprehensively designed pressure management table pad system.
    Our unique “tri-level” design is constructed of a high-density supportive base
    foam then topped with a &amp;#189;” layer of doughy soft cradling Visco memory
    foam.&lt;span style=""&gt;&amp;nbsp; &lt;/span&gt;A layer of Blue Diamond&amp;#174; Gel is
    placed just below the Fusion III&amp;#174; ultra soft 4-way stretch covering to ensure
    your patients the maximum protection available for pressure management.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center;" align="center"&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt; line-height: 115%; color: rgb(146, 208, 80);"&gt;→ High
    Density Base Foam&lt;/span&gt;&lt;/strong&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt; line-height: 115%;"&gt;&lt;span style=""&gt;&amp;nbsp;&amp;nbsp;
    &lt;/span&gt;&lt;span style="color: red;"&gt;&lt;font size="3"&gt;→&lt;/font&gt;&lt;font size="3"&gt; Visco Memory Foam&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 12pt; line-height: 115%;"&gt;&lt;font size="3"&gt; &lt;/font&gt;&lt;strong style=""&gt;→ &lt;br&gt;
    &lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center;" align="center"&gt;&lt;span style="font-size: 12pt; line-height: 115%;"&gt;&lt;strong style=""&gt;&lt;span style="color: rgb(1, 7, 237);"&gt;&lt;font size="3"&gt;Blue Diamond Gel&lt;/font&gt;&amp;#174;&lt;/span&gt;&lt;/strong&gt; &lt;strong style=""&gt;→&lt;/strong&gt;&lt;/span&gt;&lt;strong style=""&gt;&lt;span style="font-size: 12pt; line-height: 115%;"&gt; Fusion III&amp;#174; Ultra
    Soft Covering&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center;" align="center"&gt;&lt;font size="3"&gt;&lt;strong style=""&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;Click
    here
    for
    Combo Series Pressure Mapping&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;/p&gt;
    &lt;p class="MsoNormal" style="border: medium none; padding: 0in; text-align: center;" align="center"&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;
    &lt;/a&gt;&lt;font size="3"&gt;&lt;strong style=""&gt;&lt;a href="../images/document/DSC%204.25-inch%20Combo%20with%20Gel%20--%20male%205-ft%209-in%20200-lbs.pdf"&gt;&lt;img src="../images/Pressure%20map.jpg"&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;/div&gt;
    </Description>
                    <SEKeywords />
                    <SEDescription />
                    <SETitle>Combo Series</SETitle>
                    <SENoScript />
                    <SEAltText>Combo Series</SEAltText>
                    <ParentEntityID>109</ParentEntityID>
                    <DisplayOrder>3</DisplayOrder>
                    <SortByLooks>1</SortByLooks>
                    <XmlPackage>entity.grid.xml.config</XmlPackage>
                    <Published>1</Published>
                    <SEName>combo-series</SEName>
                    <ContentsBGColor />
                    <PageBGColor />
                    <GraphicsColor />
                    <NumObjects>3</NumObjects>
                    <PageSize>20</PageSize>
                    <QuantityDiscountID>0</QuantityDiscountID>
                    <Summary />
                    <SkinID>0</SkinID>
                    <TemplateName />
                  </Entity>
                </Entity>
              </Entity>
            </Entity>
            <Entity>
              <EntityID>270</EntityID>
              <Name>Urology</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;P align=center&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Urology Drain Frame &amp;#8226; Flexible Urological Drain Frame &amp;#8226; UroCatch&amp;#174; &amp;#8226; UroFrame Drain Bags &amp;#8226; Sterile Urological Frame Drain Bags &amp;#8226; Non- Sterile UroCatcher Drainage Bags &amp;#8226; Uro Catcher&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</Description>
              <SEKeywords>urology, urologic drain bags, sterile drain bags, urology drain bags, urology drainage systems, urologic drainage bags, sterile drainage bags, urology drainage bags, urology drain collection bags, urologic drainage collection bags</SEKeywords>
              <SEDescription>Urology Drainage Bags. Urologic Drain Bags And Sterile Drain Bags, Urology Drain Bags And Urology Drainage Systems From David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Urology | Drainage Bags, Urologic Drain Bags, Sterile Drain Bags</SETitle>
              <SENoScript />
              <SEAltText>Urology</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>urology</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>3</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>298</EntityID>
              <Name>Vac Pac</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;noscript&gt;Surgical Vac Pac. Medical Vac Pacs. Blue Diamond Gel Vac-Pac Positioners.&lt;/noscript&gt;
        &lt;P&gt;&amp;nbsp;&lt;/P&gt;
        &lt;P&gt;&amp;nbsp;&lt;/P&gt;
        &lt;H1 style="TEXT-ALIGN: center; FONT-SIZE: 1.7em"&gt;Medical Vac Pac | Surgical Vac Pacs&amp;nbsp;&amp;nbsp;| Bean Bag Postioners&lt;/H1&gt;
        &lt;HR&gt;
        &lt;BR&gt;
        &lt;H2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Medical Vac Pac Bags &amp;amp; Surgical Vac Pac Positioners&lt;BR&gt;
        Order Online&lt;/H2&gt;
        &lt;BR&gt;
        &lt;DIV align=center&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;Blue Diamond&amp;#174; Gel Vac Pacs&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR&gt;
        &lt;BR&gt;
        &lt;BR&gt;
        &lt;H2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; FONT-SIZE: 1.1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Learn More About Medical Vac Pacs &amp;amp; Surgical Vac Pac Positioners &lt;BR&gt;
        &amp;nbsp; Click Any Of The Premium Medical Vac Pac Bags Available &lt;/H2&gt;
        &lt;BR&gt;
        &lt;BR&gt;
        &lt;BR&gt;
        &lt;DIV align=center&gt;&lt;FONT size=3&gt;&lt;STRONG&gt;Please select from the products below:&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;
        &lt;/DIV&gt;
        &lt;HR&gt;</Description>
              <SEKeywords>medical vac pac, surgical vac pac, vac pac, vac-pac, vac pacs, medical vac pacs, surgical vac pacs, vac pac positioners, vac-pacs, olympic vac pac, vac pac bag, vac pac bags vac pac positioner, vac-pac positioners, vac-pac positioner, olympic vac-pac, olympic vac-pacs, surgical vac-pac, medical vac-pac, surgical vac-pacs, medical vac-pacs, gel vac pac, gel vac pacs, gel vac-pac, gel vac-pacs, olympic medical vac pac, olympic medical vac pacs, olympic medical vac-pac, olympic medical vac-pacs, latex free vac pac, vac pac for surgery, vac pacs for surgery, vac-pac for surgery, hospital vac pac, patient vac pac, blue diamond vac pac, blue diamond gel vac pac, vac pacs for surgery, surgical positioning, david scott company, vac-pac, vac pack, surgical vac pac</SEKeywords>
              <SEDescription>Medical Vac Pac. Surgical Vac Pacs. Blue Diamond Gel Vac-Pac Positioners. David Scott Company Provides Medical Vac-Pac Positioners Designed For Optimal Patient Comfort During Surgical Procedures. Premium Surgical Vac Pacs From David Scott Co. - The Leading Distributor of Medical Supplies.</SEDescription>
              <SETitle>Medical Vac Pac | Surgical Vac Pacs | Blue Diamond Gel Vac-Pac Positioners | David Scott Company</SETitle>
              <SENoScript>Surgical Vac Pac. Medical Vac Pacs. Blue Diamond Gel Vac-Pac Positioners.</SENoScript>
              <SEAltText>Medical Vac Pac. Surgical Vac Pacs. Blue Diamond Gel Vac-Pac Positioners. David Scott Company Provides Medical Vac-Pac Positioners Designed For Optimal Patient Comfort During Surgical Procedures. Premium Surgical Vac Pacs From David Scott Co. - The Leading Distributor of Medical Supplies.</SEAltText>
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>vac-pac</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>14</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;H1 style="FONT-SIZE: 1.8em"&gt;Medical Vac Pac | Surgical Vac Pacs&lt;/H1&gt;
        &lt;DIV style="BORDER-BOTTOM: rgb(238,238,238) 1px solid; BORDER-LEFT: rgb(238,238,238) 1px solid; MARGIN: 0px 0px 5px 5px; FLOAT: right; HEIGHT: 170px; OVERFLOW: hidden; BORDER-TOP: rgb(238,238,238) 1px solid; BORDER-RIGHT: rgb(238,238,238) 1px solid"&gt;&lt;IMG style="MARGIN: -135px 10px 0pt" alt="Medical Vac Pac. Surgical Vac Pacs. Blue Diamond Gel Vac-Pac Positioners. David Scott Company Provides Medical Vac-Pac Positioners Designed For Optimal Patient Comfort During Surgical Procedures. Premium Surgical Vac Pacs From David Scott Co. - The Leading Distributor of Medical Supplies." src="../images/beanbag%20in%20use.jpg" width=290 height=290&gt;&lt;/DIV&gt;
        &lt;P&gt;Medical vac pac and surgical vac pacs are ideal for improved surgical positioning. Vac pac positioners provide optimal patient comfort and stabilization. David Scott carries an extensive inventory of medical vac pac bags, surgical pac pac positioners and Blue Diamond&amp;#174; Gel vac pacs in many different shapes and sizes.&lt;/P&gt;
        &lt;H1 style="FONT-SIZE: 1.4em"&gt;Medical Vac Pac Bags&lt;/H1&gt;
        &lt;P&gt;Medical vac pac bags offer a better method for patient positioning during surgical procedures. Medical vac pacs conform to the patient's body comfortably, preventing strain and promoting a more ergonomic position. In addition, medical vac pac positioner bags support the body in a way to help reduce tension and pressure points. By distributing the patient's weight evenly, the medical vac pac helps to prevent injury during an operation.&lt;/P&gt;
        &lt;H1 style="FONT-SIZE: 1.4em"&gt;Surgical Vac Pac Positioners&lt;/H1&gt;
        &lt;P&gt;David Scott carries surgical vac pac positioners from the top manufacturers of vac pac bags and vac pac medical equipment. Most of the surgical vac pacs below are designed with a durable polyurethane film for long lasting use. All surgical vac pac positioners and medical vac pac bags feature a replaceable valve if damaged. The versatile surgical vac pacs from David Scott are a necessity in operating rooms.&lt;/P&gt;
        &lt;H1 style="FONT-SIZE: 1.4em"&gt;Blue Diamond&amp;#174; Gel Vac Pacs&lt;/H1&gt;
        &lt;P&gt;Blue Diamond&amp;#174; Gel vac pacs are some of the best in the surgical positioning device industry. David Scott carries a large supply of Blue Diamond&amp;#174; Gel vac pac positioners in variety of sizes. The medical vac pack bags with Blue Diamond&amp;#174; Gel are useful for a wide range of applications. Additionally, gel vac pacs provide more comfort while holding the patient securely during surgery.&lt;/P&gt;
        &lt;H2 style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; FONT-SIZE: 1.1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Medical vac pac bags and surgical vac pac positioners are beneficial in a number of ways:&lt;/H2&gt;
        &lt;UL&gt;
            &lt;LI&gt;Medical vac packs can easily place patients in certain positions other surgical positioning devices cannot.
            &lt;LI&gt;Vac pac positioners offer quick and easy repositioning, saving valuable time during operations.
            &lt;LI&gt;Surgical vac pac bags help prevent injury.
            &lt;LI&gt;Medical vac pac positioners hold patients securely during surgical procedures.
            &lt;LI&gt;Vac pac bags help prevent discomfort caused by pressure points.
            &lt;LI&gt;Blue Diamond&amp;#174; Gel vac-pac bags are among the most preferred in operating rooms compared to other surgical positioning devices. &lt;/LI&gt;
        &lt;/UL&gt;
        &lt;BR&gt;
        &lt;H2 style="BORDER-BOTTOM: medium none; TEXT-ALIGN: center; BORDER-LEFT: medium none; FONT-SIZE: 1.1em; BORDER-TOP: medium none; BORDER-RIGHT: medium none"&gt;Click Any Of The Medical Vac Pacs &amp;amp; Surgical Vac Pac Positioners To Learn More About&amp;nbsp; &lt;/H2&gt;
        &lt;BR&gt;
        &lt;HR&gt;
        &lt;BR&gt;</Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>11</EntityID>
              <Name>Velcro® - Disposable Velcro®</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;P align=center&gt;&lt;STRONG&gt;&lt;FONT size=3&gt;Velcro&amp;#174; Brand Hook &amp;amp; Loop&amp;nbsp;&lt;STRONG&gt;&amp;#8226; Disposable Velcro&amp;#174;&amp;nbsp;&lt;STRONG&gt;&amp;#8226; Disposable Hook &amp;amp; Loop Fasteners&amp;nbsp;&lt;STRONG&gt;&amp;#8226; Velcro&amp;#174; Coins&amp;nbsp;&lt;STRONG&gt;&amp;#8226; Hook &amp;amp; Loop Adhesive Backed Fasteners&amp;nbsp;&lt;STRONG&gt;&amp;#8226; Velcro&amp;#174; Restraints&amp;nbsp;&lt;STRONG&gt;&amp;#8226; Disposable Restraints&amp;nbsp;&lt;STRONG&gt;&amp;#8226; Hook &amp;amp; Loop Restraints&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</Description>
              <SEKeywords>velcro, adhesive velcro hooks, adhesive velcro loops, adhesive velcro kits, velcro rolls, velcro roll, velcro</SEKeywords>
              <SEDescription>Velcro. Adhesive Velcro Hooks And Adhesive Velcro Loops In A Variety Of Widths Available From David Scott Company In Stock And Ready For Immediate Delivery 1-800-804-0333.</SEDescription>
              <SETitle>Velcro | Velcro Coins, Velcro Rolls, Velcro Kits</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>2</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>velcro-disposable-velcro</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>14</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>322</EntityID>
            <Name>Rehab / Home Healthcare</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText>Rehab / Home Healthcare</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>1</SortByLooks>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>rehab-home-healthcare</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>0</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
            <Entity>
              <EntityID>35</EntityID>
              <Name>Seating &amp; WheelChair Pads</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;!-- landing_spotlight_area --&gt;
    &lt;div class="landing_spotlight_area"&gt;&lt;!-- spotlight_content --&gt;
    &lt;div class="spotlight_content"&gt;&lt;!-- slider_group --&gt;
    &lt;div style="DISPLAY: block" id="slide1" class="slider_group"&gt;
    &lt;div class="img"&gt;&lt;a href="/c-35-consumer.aspx"&gt;&lt;img title="" border="0" alt="" src="/skins/Skin_1/images/home/splash-consumer.jpg"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;div class="overlaybg"&gt;&lt;/div&gt;
    &lt;div class="txt"&gt;
    &lt;div class="txt_padding"&gt;
    &lt;h2&gt;&lt;a href="/c-35-consumer.aspx"&gt;Seating &amp;amp; WheelChair Cushions&lt;/a&gt;&lt;/h2&gt;
    &lt;ul class="ul_white"&gt;
        &lt;li&gt;&amp;nbsp;Seating, WheelChair&amp;nbsp;Cushions&amp;nbsp;
        &lt;/li&gt;
        &lt;li&gt;&amp;nbsp;Anti-fatigue Products
        &lt;/li&gt;
        &lt;li&gt;&amp;nbsp;Gel Products
        &lt;/li&gt;
        &lt;li&gt;&amp;nbsp;Custom Products available, please inquire! &lt;/li&gt;
    &lt;/ul&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;!-- /slider_group --&gt;&lt;/div&gt;
    &lt;!-- /spotlight_content --&gt;&lt;/div&gt;
    &lt;!-- /landing_spotlight_area --&gt;
    </Description>
              <SEKeywords>WheelChair, cushion, seat, chair</SEKeywords>
              <SEDescription>All made in the USA. Wheelchair cushins, WhellChair gel pads, Chair Gel pads</SEDescription>
              <SETitle>WheelChair Gel Cushions | Hair Salon Floor Mats | Chair Gel Cushions | Peel n' Stick Gel Sheets | Floor Mats</SETitle>
              <SENoScript />
              <SEAltText />
              <ParentEntityID>322</ParentEntityID>
              <DisplayOrder>4</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.default_industry_consumer.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>seating-wheelchair-pads</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>10</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
              <Entity>
                <EntityID>36</EntityID>
                <Name>WheelChair Cushions &amp; Seat Cushions</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle>Seating &amp; Bedding</SETitle>
                <SENoScript />
                <SEAltText />
                <ParentEntityID>35</ParentEntityID>
                <DisplayOrder>1</DisplayOrder>
                <SortByLooks>0</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>wheelchair-cushions-seat-cushions</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>10</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
              <Entity>
                <EntityID>165</EntityID>
                <Name>Health &amp; Beauty</Name>
                <ColWidth>4</ColWidth>
                <Description />
                <SEKeywords />
                <SEDescription />
                <SETitle>Health &amp; Beauty</SETitle>
                <SENoScript />
                <SEAltText>Health &amp; Beauty</SEAltText>
                <ParentEntityID>35</ParentEntityID>
                <DisplayOrder>2</DisplayOrder>
                <SortByLooks>1</SortByLooks>
                <XmlPackage>entity.grid.xml.config</XmlPackage>
                <Published>1</Published>
                <SEName>health-beauty</SEName>
                <ContentsBGColor />
                <PageBGColor />
                <GraphicsColor />
                <NumObjects>5</NumObjects>
                <PageSize>20</PageSize>
                <QuantityDiscountID>0</QuantityDiscountID>
                <Summary />
                <SkinID>0</SkinID>
                <TemplateName />
              </Entity>
            </Entity>
            <Entity>
              <EntityID>310</EntityID>
              <Name>Roll Away Beds, Folding Cots</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;p&gt;&lt;font face="Verdana" size="6"&gt;&lt;font size="5"&gt;Roll Away Bed &amp;#8226;Roll-A-Way Beds&amp;nbsp;&amp;#8226; Folding Cots&lt;/font&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/p&gt;
    &lt;p&gt;&lt;font face="Verdana"&gt;On May 17th, 2010 Our SUPRA line of roll-a-way beds is the world's most comfortable and
    functional commercial folding bed.&amp;nbsp; The time-tested&amp;nbsp;design of this folding cot has been used
    for over 25 years in the hospitality and rental industries.&amp;nbsp; Zinc
    plated steel tubing on these Roll Away Beds offers all the strength of angle iron&amp;nbsp;at only half
    the weight.&amp;nbsp; The Roll Away Bed stands on four 4" ball-bearing tires for easy
    maneuverability and long lasting wear.&amp;nbsp;&amp;nbsp;The 6" foam mattress for this folding cot sleeps as
    comfortable as any quality mattress and box spring set because of the
    1.35 density foam.&amp;nbsp; And&amp;nbsp;the mattress cover is&amp;nbsp;made with "Staph-Check",
    the same patented product used in hospital beds.&amp;nbsp; Three sizes are
    available to satisfy all&amp;nbsp;needs. The quality and durability of the Roll away bed lends it self for High use but is equally as useful in the residential community. This is a truck ship item. Additional freight charges may apply. You will be notified if additional freight is applicable. &lt;br&gt;
    &lt;/font&gt;&lt;/p&gt;
    &lt;p&gt;&lt;font face="Verdana"&gt;MADE IN THE USA&lt;/font&gt;&lt;/p&gt;
    </Description>
              <SEKeywords>Roll Away Beds | Cots | Sleeping Cots | Folding Cots | Spare Bed | Folding Bed</SEKeywords>
              <SEDescription>Roll Away Beds | Cots | Sleeping Cots | Folding Cots | Spare Bed | Folding Bed</SEDescription>
              <SETitle>Roll Away Beds | Cots | Sleeping Cots | Folding Cots | Spare Bed | Folding Bed</SETitle>
              <SENoScript />
              <SEAltText>Roll a Way Beds / Cots</SEAltText>
              <ParentEntityID>322</ParentEntityID>
              <DisplayOrder>5</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>roll-away-beds-folding-cots</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>1</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>271</EntityID>
              <Name>Peel n' Stick Gel</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;These &lt;font color="#000000"&gt;translucent &lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000000"&gt;gel sheets&lt;/font&gt; are amazing. They can be scissor or die cut to your exact shape.They are very
    tacky on one side so they stick to almost any surface and can be removed.You can
    clean the tacky side with water and it will stick again. The gel is
    covered with a thin layer of Ionic Silver Antimicrobial film (prohibits bacteria). &lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;This &lt;font color="#000080"&gt;Blue Diamond&amp;#174; Ge&lt;/font&gt;&lt;/strong&gt;&lt;strong&gt;l is a viscoelastic polymer.&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;div&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;div&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;font color="#000080"&gt;Thousands of uses&lt;/font&gt;: &lt;br&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;ul&gt;
        &lt;li&gt;&lt;font size="3"&gt;&lt;strong&gt;Hand grips, spot
        pressure relief, comfort grips, hot spots. &lt;br&gt;
        &lt;/strong&gt;&lt;/font&gt;&lt;/li&gt;
        &lt;li&gt;&lt;font size="3"&gt;&lt;strong&gt;Seats, saddles, custom braces, tools, hard
        surfaces, edges.&lt;br&gt;
        &lt;/strong&gt;&lt;/font&gt;&lt;/li&gt;
        &lt;li&gt;&lt;font size="3"&gt;&lt;strong&gt;Use it in your shoes, ski boots, skates, dance shoes, elbow pads, helmets. &lt;br&gt;
        &lt;/strong&gt;&lt;/font&gt;&lt;/li&gt;
        &lt;li&gt;&lt;font size="3"&gt;&lt;strong&gt;Great for
        Orthotics, Prosthetics, and Diabetics.&lt;/strong&gt;&lt;/font&gt;&lt;/li&gt;
        &lt;li&gt;&lt;font size="3"&gt;&lt;strong&gt;Usage is only limited to your imagination. &lt;br&gt;
        &lt;/strong&gt;&lt;/font&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords />
              <SEDescription>Sheets of self adhering gel that can be cut to size and adhered to tons of surfaces.</SEDescription>
              <SETitle>Peel n' Stick Gel | Gel sheets | Gel Sheeting | Sheets of self adhering Gel</SETitle>
              <SENoScript />
              <SEAltText>Peel n' Stick Gel</SEAltText>
              <ParentEntityID>322</ParentEntityID>
              <DisplayOrder>8</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.default_industry_peelnstickgel.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>peel-n-stick-gel</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>1</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>These translucent gel sheets are amazing. They can be scissor or die cut to exact shape.They are very
    tacky so they stick to almost any surface and can be removed.You can
    clean the tacky part with water so it will stick again. The gel is
    covered with a thin layer of Ionic Silver Antimicrobial film. Great for
    Orthotics,
    &lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CCOMPAQ%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;
    &lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CCOMPAQ%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;
    &lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CCOMPAQ%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:WordDocument&gt;
      &lt;w:View&gt;Normal&lt;/w:View&gt;
      &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
      &lt;w:TrackMoves/&gt;
      &lt;w:TrackFormatting/&gt;
      &lt;w:PunctuationKerning/&gt;
      &lt;w:ValidateAgainstSchemas/&gt;
      &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
      &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
      &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
      &lt;w:DoNotPromoteQF/&gt;
      &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
      &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
      &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
      &lt;w:Compatibility&gt;
       &lt;w:BreakWrappedTables/&gt;
       &lt;w:SnapToGridInCell/&gt;
       &lt;w:WrapTextWithPunct/&gt;
       &lt;w:UseAsianBreakRules/&gt;
       &lt;w:DontGrowAutofit/&gt;
       &lt;w:SplitPgBreakAndParaMark/&gt;
       &lt;w:DontVertAlignCellWithSp/&gt;
       &lt;w:DontBreakConstrainedForcedTables/&gt;
       &lt;w:DontVertAlignInTxbx/&gt;
       &lt;w:Word11KerningPairs/&gt;
       &lt;w:CachedColBalance/&gt;
      &lt;/w:Compatibility&gt;
      &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;
      &lt;m:mathPr&gt;
       &lt;m:mathFont m:val="Cambria Math"/&gt;
       &lt;m:brkBin m:val="before"/&gt;
       &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
       &lt;m:smallFrac m:val="off"/&gt;
       &lt;m:dispDef/&gt;
       &lt;m:lMargin m:val="0"/&gt;
       &lt;m:rMargin m:val="0"/&gt;
       &lt;m:defJc m:val="centerGroup"/&gt;
       &lt;m:wrapIndent m:val="1440"/&gt;
       &lt;m:intLim m:val="subSup"/&gt;
       &lt;m:naryLim m:val="undOvr"/&gt;
      &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
     &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
      DefSemiHidden="true" DefQFormat="false" DefPriority="99"
      LatentStyleCount="267"&gt;
      &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
      &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
      &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
      &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
      &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
      &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
       UnhideWhenUsed="false" Name="Table Grid"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
      &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
      &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
      &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
      &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
       UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
       UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
       UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
       UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
      &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
      &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
      &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
       UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
      &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
      &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
     &lt;/w:LatentStyles&gt;
    &lt;/xml&gt;&lt;![endif]--&gt;
    &lt;style&gt;
        &lt;!--
     /* Font Definitions */
     @font-face
    	{font-family:"Cambria Math";
    	panose-1:0 0 0 0 0 0 0 0 0 0;
    	mso-font-charset:1;
    	mso-generic-font-family:roman;
    	mso-font-format:other;
    	mso-font-pitch:variable;
    	mso-font-signature:0 0 0 0 0 0;}
    @font-face
    	{font-family:Calibri;
    	panose-1:2 15 5 2 2 2 4 3 2 4;
    	mso-font-charset:0;
    	mso-generic-font-family:swiss;
    	mso-font-pitch:variable;
    	mso-font-signature:-1610611985 1073750139 0 0 159 0;}
     /* Style Definitions */
     p.MsoNormal, li.MsoNormal, div.MsoNormal
    	{mso-style-unhide:no;
    	mso-style-qformat:yes;
    	mso-style-parent:"";
    	margin-top:0in;
    	margin-right:0in;
    	margin-bottom:10.0pt;
    	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-fareast-font-family:Calibri;
    	mso-fareast-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;}
    .MsoChpDefault
    	{mso-style-type:export-only;
    	mso-default-props:yes;
    	mso-ascii-font-family:Calibri;
    	mso-ascii-theme-font:minor-latin;
    	mso-fareast-font-family:Calibri;
    	mso-fareast-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;}
    .MsoPapDefault
    	{mso-style-type:export-only;
    	margin-bottom:10.0pt;
    	line-height:115%;}
    @page Section1
    	{size:8.5in 11.0in;
    	margin:1.0in 1.0in 1.0in 1.0in;
    	mso-header-margin:.5in;
    	mso-footer-margin:.5in;
    	mso-paper-source:0;}
    div.Section1
    	{page:Section1;}
    --&gt;
    &lt;/style&gt;
    &lt;!--[if gte mso 10]&gt;
    &lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;div id='RadEditorStyleKeeper5' style='display:none;'&gt;&amp;nbsp;&lt;/div&gt;&lt;style reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5' reoriginalpositionmarker='RadEditorStyleKeeper5'&gt;
     /* 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-qformat:yes;
    	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-fareast-font-family:"Times New Roman";
    	mso-fareast-theme-font:minor-fareast;
    	mso-hansi-font-family:Calibri;
    	mso-hansi-theme-font:minor-latin;}
    &lt;/style&gt;
    &lt;![endif]--&gt;
    Prosthetics
    , Diabetics.Thousands of uses Hand Grips, spot
    pressure relief, comfort grips, hot spots, seats, saddles, hard
    surfaces, edges.
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>1</EntityID>
            <Name>Motorcycle Gel Seat Pads</Name>
            <ColWidth>4</ColWidth>
            <Description>&lt;h1 style="MARGIN-TOP: 0px; FONT-SIZE: 1.8em"&gt;Motorcycle Gel Seat Pads&lt;/h1&gt;
    &lt;!-- landing_spotlight_area --&gt;
    &lt;div class="landing_spotlight_area"&gt;&lt;!-- spotlight_content --&gt;
    &lt;div class="spotlight_content"&gt;&lt;!-- slider_group --&gt;
    &lt;div id="slide4" class="slider_group"&gt;
    &lt;div class="img"&gt;&lt;a href="/c-1-motorcycle.aspx"&gt;&lt;img title="" border="0" alt="" src="/skins/Skin_1/images/home/splash-motorcycle.jpg"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;div class="overlaybg"&gt;&lt;/div&gt;
    &lt;div class="txt"&gt;
    &lt;div style="HEIGHT: 230px" class="txt_padding"&gt;
    &lt;h2&gt;&lt;a href="/c-1-motorcycle.aspx"&gt;&lt;strong&gt;&lt;font size="3"&gt;Motorcycle Gel Seat Pads&lt;/font&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;/a&gt;&lt;/h2&gt;
    &lt;ul class="ul_white"&gt;
        &lt;li&gt;Add Memory Foam for added gel pad comfort
        &lt;/li&gt;
        &lt;li&gt;Custom motorcycle gel seat pad sizes
        &lt;/li&gt;
        &lt;li&gt;Motorcycle gel seat pads easy to cut and customize
        &lt;/li&gt;
        &lt;li&gt;Buy gel seat pads direct from manufacturer
        &lt;/li&gt;
        &lt;li&gt;Medical grade motorcycle gel seat pads
        &lt;/li&gt;
        &lt;li&gt;Motorcycle gel seat pads feature dry viscoelastic polymer gel &lt;/li&gt;
        &lt;li&gt;&lt;strong style="text-align: center; "&gt;&lt;font color="#ffffff" size="1"&gt;ALL MOTORCYCLE GEL &amp;nbsp;PADS ARE ON SALE!&lt;/font&gt;&lt;/strong&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;h2&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h1&gt;Motorcycle Gel Seat Pads&lt;/h1&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/h2&gt;
    &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;br&gt;
    &lt;p&gt;Motorcycle gel seat pads are the best solution for a more comfortable motorcycle ride. Motorcycle gel pads alleviate riding distress by absorbing unpleasant vibrations from the road. All of the motorcycle gel seat pads and custom trimmable motorcycle gel pads from David Scott are made with Blue Diamond&amp;#174; gel. Some motorcycle gel seat pad products include an optional memory foam layer for additional gel seat pad protection. Many motorcycle gel pad customers find the combination of these materials to make for an exceptional motorcycle seat gel pad. Experience the ultimate riding relief with motorcycle gel seat pads and custom trimmable motorcycle gel pad products from David Scott.&lt;/p&gt;
    &lt;h3&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h2&gt;Motorcycle Gel Seat Pads Reduce Riding Numbness&lt;/h2&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/h3&gt;
    &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Motorcycle gel seat pads from David Scott are a great investment for all types of riders. From afternoon joy rides to weekend adventures, motorcycle gel seat pads are optimal for every occasion. The motorcycle gel seat pad products from David Scott are proven to help relieve numbness and discomfort while riding. By using medical grade quality materials, the difference in feel is amazing. In addition, gel seat pad customers notice their able to endure longer rides without stopping with motorcycle gel seat pads from David Scott.&amp;nbsp; &lt;/p&gt;
    &lt;h3&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h2&gt;Custom Motorcycle Gel Pad Products&lt;/h2&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/h3&gt;
    &lt;p&gt;With custom motorcycle gel pads, motorcyclists can trim the motorcycle gel seat pad to fit the exact shape and contours of their seat. Additionally, the motorcycle gel seat pads from David Scott are easy to apply. Simply peel and stick the gel pad over the motorcycle seat. Some customers choose to fabricate the motorcycle gel seat pad by covering the seat pad with personalized upholstery and fabric. &amp;nbsp; &lt;/p&gt;
    &lt;h3&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h2&gt;Motorcycle Gel Seat Pads Are A Wonderful Investment&lt;/h2&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/h3&gt;
    &lt;p&gt;The assortment of motorcycle gel seat pads offer the optimum riding comfort at the right price. Invest in a custom motorcycle gel seat pad and realize why hundreds of riders are satisfied with their motorcycle gel seat pad purchase from David Scott. The custom motorcycle gel pads come in a wide array of sizes to suit many unique applications. In addition, motorcycle gel seat pads can be used for more than just a gel pad for motorcycles. Motorcycle gel pads and be tailor for bicycle seat pads or gel seat pads for other related vehicles. &lt;/p&gt;
    &lt;p&gt;David Scott specializes in medical grade motorcycle gel seat pads and custom trimmable motorcycle gel pad products. Discover more information about each motorcycle gel seat pad below. &lt;/p&gt;
    &lt;p&gt;&lt;/p&gt;
    &lt;p style="text-align: center;"&gt;&lt;font size="3" color="#000080"&gt;&lt;strong&gt;ALL MOTORCYCLE GEL SEAT PADS ARE ON SALE!&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;br&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    </Description>
            <SEKeywords>motorcycle gel seat pads, motorcycle gel seat pad, motorcycle gel pads, motorcycle gel seats, motorcycle gel pad, motorcycle gel seat, blue diamond motorcycle gel pads, motorcycle gel pad inserts, motorcycle gel, motorcycle pad with gel, blue diamond gel seats, blue diamond motorcycle gel seats, blue diamond motorcycle gel pad, blue diamond motorcycle pad, gel pads for motorcycles, gel pad for motorcycles, motorcycle gel seat pads</SEKeywords>
            <SEDescription>Motorcycle Gel Seat Pads. Blue Diamond Motorcycle Gel Seat Pads. Motorcycle Gel Seat Cushions Inserts Gel Pads. David Scott Company carries motorcycle gel seat pads and gel cushion inserts for motorcycle seats that provide more comfortable riding sessions for motorcycle enthusiasts.</SEDescription>
            <SETitle>Motorcycle Gel Seat Pads – Motorcycle Gel Seat Cushions, Inserts Gel Pads Motorcycle Gel Seat Pads</SETitle>
            <SENoScript>&lt;h1&gt;Motorcycle Gel Seat Pads. Blue Diamond Motorcycle Gel Pads. Motorcycle Seat Pads Motorcycle Gel Seats.&lt;/h1&gt;</SENoScript>
            <SEAltText>Motorcycle Gel Seat Pads</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>2</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.default_industry_motorcycle.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>motorcycle-gel-seat-pads</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>16</NumObjects>
            <PageSize>24</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary>&lt;h2&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h1&gt;Motorcycle Gel Seat Pads&lt;/h1&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/h2&gt;
    &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;br&gt;
    &lt;p&gt;Motorcycle gel seat pads are the best solution for a more comfortable motorcycle ride. Motorcycle gel pads alleviate riding distress by absorbing unpleasant vibrations from the road. All of the motorcycle gel seat pads and custom trimmable motorcycle gel pads from David Scott are made with Blue Diamond&amp;#174; gel. Some motorcycle gel seat pad products include an optional memory foam layer for additional gel seat pad protection. Many motorcycle gel pad customers find the combination of these materials to make for an exceptional motorcycle seat gel pad. Experience the ultimate riding relief with motorcycle gel seat pads and custom trimmable motorcycle gel pad products from David Scott.&lt;/p&gt;
    &lt;h3&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h2&gt;Motorcycle Gel Seat Pads Reduce Riding Numbness&lt;/h2&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/h3&gt;
    &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
    &lt;p&gt;Motorcycle gel seat pads from David Scott are a great investment for all types of riders. From afternoon joy rides to weekend adventures, motorcycle gel seat pads are optimal for every occasion. The motorcycle gel seat pad products from David Scott are proven to help relieve numbness and discomfort while riding. By using medical grade quality materials, the difference in feel is amazing. In addition, gel seat pad customers notice their able to endure longer rides without stopping with motorcycle gel seat pads from David Scott.&amp;nbsp; &lt;/p&gt;
    &lt;h3&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h2&gt;Custom Motorcycle Gel Pad Products&lt;/h2&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/h3&gt;
    &lt;p&gt;With custom motorcycle gel pads, motorcyclists can trim the motorcycle gel seat pad to fit the exact shape and contours of their seat. Additionally, the motorcycle gel seat pads from David Scott are easy to apply. Simply peel and stick the gel pad over the motorcycle seat. Some customers choose to fabricate the motorcycle gel seat pad by covering the seat pad with personalized upholstery and fabric. &amp;nbsp; &lt;/p&gt;
    &lt;h3&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="+0"&gt;&lt;strong&gt;&lt;font size="1"&gt;&lt;strong&gt;
    &lt;h2&gt;Motorcycle Gel Seat Pads Are A Wonderful Investment&lt;/h2&gt;
    &lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/h3&gt;
    &lt;p&gt;The assortment of motorcycle gel seat pads offer the optimum riding comfort at the right price. Invest in a custom motorcycle gel seat pad and realize why hundreds of riders are satisfied with their motorcycle gel seat pad purchase from David Scott. The custom motorcycle gel pads come in a wide array of sizes to suit many unique applications. In addition, motorcycle gel seat pads can be used for more than just a gel pad for motorcycles. Motorcycle gel pads and be tailor for bicycle seat pads or gel seat pads for other related vehicles. &lt;/p&gt;
    &lt;p&gt;David Scott specializes in medical grade motorcycle gel seat pads and custom trimmable motorcycle gel pad products. Discover more information about each motorcycle gel seat pad below. &lt;/p&gt;
    </Summary>
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>278</EntityID>
            <Name>Anti Fatigue Floor Mats</Name>
            <ColWidth>4</ColWidth>
            <Description>&lt;DIV align=center&gt;&lt;FONT size=2&gt;Anti fatigue Floor Mats &lt;FONT color=#000000&gt;Our Anti fatigue floor mats are designed for comfort, back relief, foot relief, overall fatigue reduction. They have beveled edges. They can be custom made to specific configurations.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#000000&gt;&lt;BR&gt;
        &lt;FONT size=2&gt;&lt;STRONG&gt;Common areas of use are:&lt;/STRONG&gt;&lt;BR&gt;
        &lt;/FONT&gt;&lt;/DIV&gt;
        &lt;/FONT&gt;&lt;FONT color=#000000&gt;
        &lt;P align=center&gt;&lt;FONT color=#0000ff&gt;&lt;STRONG class=" RadEDomMouseOver"&gt;&lt;FONT color=#000000 size=2&gt;Kitchen floor mats&amp;nbsp;&amp;#8226; Commercial anti fatigue floor mats&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;
        &lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;FONT color=#0000ff&gt;&lt;STRONG class=" RadEDomMouseOver"&gt;&lt;FONT color=#000000&gt;&amp;nbsp; Medical anti fatigue flooring &amp;#8226; Industrial anti fatigue flooring&lt;BR&gt;
        &lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff&gt;&lt;STRONG class=" RadEDomMouseOver"&gt;&lt;FONT color=#000000&gt;&amp;nbsp;Labaratory anti fatigue flooring&amp;nbsp;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
        &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;
        &lt;P align=center&gt;&lt;IMG style="WIDTH: 119px; HEIGHT: 160px" alt="Health Care Mats" src="http://www.protechmats.com/images/hospitality.jpg"&gt;&lt;BR&gt;
        &lt;BR&gt;
        &lt;FONT color=#0000ff&gt;&lt;STRONG&gt;&lt;FONT size=2&gt;&lt;A href="http://www.davidscottco.com/c-124-ergo-anti-fatigue-floor-mats.aspx"&gt;Ergo mats&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT size=3&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;are extremely durable virgin rubber anti fatigue floor mats, some are autoclavable.&lt;/FONT&gt;&lt;BR&gt;
        &lt;FONT color=#0000ff&gt;&lt;FONT size=2&gt;&lt;STRONG&gt;&lt;A href="http://www.davidscottco.com/c-137-ortho-anti-fatigue-floor-mats.aspx"&gt;Ortho Mats&lt;/A&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#000000 size=2&gt; are closed cell structure anti fatigue floor mats that are very comfortable as well as durable.&lt;/FONT&gt; &lt;/P&gt;
        &lt;FONT color=#000000 size=2&gt;
        &lt;DIV align=left&gt;&lt;BR&gt;
        &lt;/DIV&gt;
        &lt;/FONT&gt;&lt;FONT color=#000000 size=2&gt;&lt;FONT size=2&gt;A more detailed description can be found in each anti fatigue matting /flooring section. David Scott Company distributes only top quality anti fatigue floor mats backed by the best manufacturers in the business. &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR&gt;
        &lt;BR&gt;
        &lt;STRONG&gt;&lt;FONT size=3&gt;&lt;FONT face=Tahoma&gt;Please choose from one of the following industries:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;</Description>
            <SEKeywords>anti fatigue mats, mats anti fatigue, floor mats anti fatigue, interlocking anti fatigue mats, anti fatigue floor mats, industrial anti fatigue mats, commercial anti fatigue mats, industrial anti fatigue floor mats, commercial anti fatigue floor mats, floor mats anti fatigue, lowest prices, sale prices, discounts, deals, clearance, anti fatigue mats</SEKeywords>
            <SEDescription>David Scott Distributes Top Quality Anti Fatigue Mats Interlocking Anti Fatigue Mats Industrial Anti Fatigue Floor Mats Commercial Anti Fatigue Floor Mats. Huge Inventory Immediate Delivery Highest Quality Anti Fatigue Floor Mats Backed by the Best Manufacturers in the Business.</SEDescription>
            <SETitle>Anti Fatigue Mats | Interlocking Anti Fatigue Floor Mats | Industrial Anti Fatigue Floor Mats | Commercial Anti Fatigue Floor Mats | Medical Floor Mats</SETitle>
            <SENoScript>Anti Fatigue Mats. Interlocking Anti Fatigue Mats. Industrial Anti Fatigue Floor Mats. Commercial Anti Fatigue Floor Mats.</SENoScript>
            <SEAltText>David Scott Distributes Top Quality Anti Fatigue Mats Interlocking Anti Fatigue Mats Industrial Anti Fatigue Floor Mats Commercial Anti Fatigue Floor Mats. Huge Inventory Immediate Delivery Highest Quality Anti Fatigue Floor Mats Backed by the Best Manufacturers in the Business.</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>3</DisplayOrder>
            <SortByLooks>1</SortByLooks>
            <XmlPackage>entity.default_industry_antifatiguefloormats.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>anti-fatigue-floor-mats</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>0</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary>&lt;H1&gt;&lt;FONT size=5&gt;Ortho Anti Fatigue Floor Mats From David Scott&lt;BR&gt;
        &lt;/FONT&gt;&lt;/H1&gt;
        &lt;H1&gt;&lt;FONT size=3&gt;Find Ortho Anti Fatigue Floor Mats To Meet Your Needs&lt;/FONT&gt;&lt;/H1&gt;
        The ortho anti fatigue floor mats from David Scott are ideal for enhanced workplace comfort. Ortho anti fatigue floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in ortho anti fatigue floor mats designed with industry advanced technology. All ortho anti fatigue floor mats come with a number of convenient features. The ortho anti fatigue floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most ortho anti fatigue floor mats are resistant to chemicals.&lt;BR&gt;
        &lt;BR&gt;
        &lt;H1&gt;&lt;FONT size=3&gt;Many Ortho Anti Fatigue Floor Mats To Choose From&lt;/FONT&gt;&lt;/H1&gt;
        At David Scott, customers can find ortho anti fatigue floor mats in a number of sizes. Also, several ortho anti fatigue floor mats come in various colors so customers can match the look of their working atmosphere. All of the ortho anti fatigue floor mat products from David Scott are made with a durable rubber base. Many of the ortho anti fatigue floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most ortho anti fatigue floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any ortho anti fatigue floor mat by clicking one of the available products.&lt;BR&gt;
        &lt;BR&gt;
        &lt;H1&gt;&lt;FONT size=3&gt;More About Ortho Anti Fatigue Floor Mats&lt;/FONT&gt;&lt;/H1&gt;
        Ortho anti fatigue floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The ortho anti fatigue floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with ortho anti fatigue floor mats. The ortho anti fatigue floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality ortho anti fatigue floor mat. &lt;BR&gt;
        &lt;BR&gt;
        &lt;H1&gt;&lt;FONT size=3&gt;Ortho Anti Fatigue Floor Mats Help Improve Working Conditions&lt;/FONT&gt;&lt;/H1&gt;
        Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Ortho anti fatigue floor mats are an affordable way to help prevent such issues. Ortho anti fatigue floor mats provide a viable solution to address the needs of a physically demanding work environment. Ortho anti fatigue floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's ortho anti fatigue floor mats is based on exceptional quality for optimal performance. Browse the various ortho anti fatigue floor mats available from David Scott.&lt;BR&gt;
        &lt;BR&gt;
        &lt;BR&gt;
        &lt;BR&gt;
        &lt;H2&gt;&lt;FONT size=2&gt;Ortho Anti Fatigue Floor Mats For An Array Of Applications&lt;/FONT&gt;&lt;/H2&gt;
        Work Stations Ortho Anti Fatigue Floor Mats &amp;#8226; X-Ray Ortho Anti Fatigue Floor Mats &amp;#8226; Operating Rooms Ortho Anti Fatigue Floor Mats &amp;#8226; Nurse Station Ortho Anti Fatigue Floor Mats &amp;#8226; Maintenance Ortho Anti Fatigue Floor Mats &amp;#8226; Admitting Ortho Anti Fatigue Floor Mats &amp;#8226; Hazardous Waste Areas Ortho Anti Fatigue Floor Mats &amp;#8226; Materials Management Ortho Anti Fatigue Floor Mats &amp;#8226; Central Services Ortho Anti Fatigue Floor Mats &amp;#8226; Fulfillment Ortho Anti Fatigue Floor Mats &amp;#8226; Fall Protection Rooms &amp;#8226; ReHab Room Ortho Anti Fatigue Floor Mats &amp;#8226; Exercise Room Ortho Anti Fatigue Floor Mats &amp;#8226; Geriatric Ortho Anti Fatigue Floor Mats &amp;#8226; Dental Surgery Room Ortho Anti Fatigue Floor Mats &amp;#8226; Day Care Ortho Anti Fatigue Floor Mats &amp;#8226;&amp;nbsp; Pharmacy Ortho Anti Fatigue Floor Mats &amp;#8226; Sterile Processing Ortho Anti Fatigue Floor Mats &amp;#8226; Pharmaceutical Manufacturing Ortho Anti Fatigue Floor Mats &amp;#8226; Kitchen Ortho Anti Fatigue Floor Mats</Summary>
            <SkinID>0</SkinID>
            <TemplateName />
            <Entity>
              <EntityID>137</EntityID>
              <Name>Ortho Anti Fatigue Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Ortho Anti Fatigue Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;p&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;The ultimate ortho anti fatigue floor mats for operating rooms, laboratories and food service areas. David Scott &lt;/font&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;ortho anti fatigue floor mats&lt;/font&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt; work well in all areas of the health care industry.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
    &lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;/font&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;p&gt;&lt;!-- Row 1 Column 2 --&gt;&lt;/p&gt;
    &lt;div align="center"&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;Orthopedic anti fatigue floor mats are ideal for all standing employees in health care facilities or other related jobs. The closed cell structure of the &lt;/font&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;ortho anti fatigue floor mats &lt;/font&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;eliminates absorption of liquids, fluids and airborne pathogens. All &lt;/font&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;ortho anti fatigue floor mats offer &lt;/font&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;antimicrobial and &lt;/font&gt;&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font color="#000080"&gt;i&lt;/font&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;font color="#000080" face="Tahoma"&gt;nfection control features to prevents mold, mildew and bacterial growth.&lt;/font&gt;&lt;strong&gt;
    &lt;hr&gt;
    &lt;/strong&gt;&lt;/font&gt;
    &lt;center&gt;&lt;img style="WIDTH: 119px; HEIGHT: 160px" alt="Health Care Mats" src="http://www.protechmats.com/images/hospitality.jpg"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
    &lt;/center&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
    &lt;strong&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;font size="2"&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;br&gt;
    &lt;strong&gt;&lt;font size="2"&gt;
    &lt;hr&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;/div&gt;
    &lt;ul&gt;
        &lt;ul&gt;&lt;/ul&gt;
        &lt;/ul&gt;
    </Description>
              <SEKeywords>ortho anti fatigue floor mats, ortho floor mats, ortho anti fatigue floor mat, ortho anti fatigue mats, ortho anti fatigue mat, orthopedic anti fatigue floor mats, orthopedic floor mats, orthopedic anti fatigue floor mat, orthopedic floor mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Ortho Anti Fatigue Floor Mats. David Scott Has Ortho Anti Fatigue Floor Mats For Hospitals, Clinics, Medical Labs, Food Processing Facilities. We carry premium orthopedic floor mats designed for easy cleanability and daily sanitation. Ortho floor mats combine quality orthonomics with chemical resistance.</SEDescription>
              <SETitle>Ortho Anti Fatigue Floor Mats | Premium Ortho Anti Fatigue Floor Mats And Orthopedic Floor Mats</SETitle>
              <SENoScript>Ortho Anti Fatigue Floor Mats</SENoScript>
              <SEAltText>Ortho Anti Fatigue Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>ortho-anti-fatigue-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>15</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;&lt;font size="5"&gt;Ortho Anti Fatigue Floor Mats From David Scott&lt;br&gt;
    &lt;/font&gt;&lt;/h1&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Ortho Anti Fatigue Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The ortho anti fatigue floor mats from David Scott are ideal for enhanced workplace comfort. Ortho anti fatigue floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in ortho anti fatigue floor mats designed with industry advanced technology. All ortho anti fatigue floor mats come with a number of convenient features. The ortho anti fatigue floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most ortho anti fatigue floor mats are resistant to chemicals.&lt;br&gt;
    &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Ortho Anti Fatigue Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find ortho anti fatigue floor mats in a number of sizes. Also, several ortho anti fatigue floor mats come in various colors so customers can match the look of their working atmosphere. All of the ortho anti fatigue floor mat products from David Scott are made with a durable rubber base. Many of the ortho anti fatigue floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most ortho anti fatigue floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any ortho anti fatigue floor mat by clicking one of the available products.&lt;br&gt;
    &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Ortho Anti Fatigue Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Ortho anti fatigue floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The ortho anti fatigue floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with ortho anti fatigue floor mats. The ortho anti fatigue floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality ortho anti fatigue floor mat. &lt;br&gt;
    &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Ortho Anti Fatigue Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Ortho anti fatigue floor mats are an affordable way to help prevent such issues. Ortho anti fatigue floor mats provide a viable solution to address the needs of a physically demanding work environment. Ortho anti fatigue floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's ortho anti fatigue floor mats is based on exceptional quality for optimal performance. Browse the various ortho anti fatigue floor mats available from David Scott.&lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;h2&gt;&lt;font size="2"&gt;Ortho Anti Fatigue Floor Mats For An Array Of Applications&lt;/font&gt;&lt;/h2&gt;
    Work Stations Ortho Anti Fatigue Floor Mats &amp;#8226; X-Ray Ortho Anti Fatigue Floor Mats &amp;#8226; Operating Rooms Ortho Anti Fatigue Floor Mats &amp;#8226; Nurse Station Ortho Anti Fatigue Floor Mats &amp;#8226; Maintenance Ortho Anti Fatigue Floor Mats &amp;#8226; Admitting Ortho Anti Fatigue Floor Mats &amp;#8226; Hazardous Waste Areas Ortho Anti Fatigue Floor Mats &amp;#8226; Materials Management Ortho Anti Fatigue Floor Mats &amp;#8226; Central Services Ortho Anti Fatigue Floor Mats &amp;#8226; Fulfillment Ortho Anti Fatigue Floor Mats &amp;#8226; Fall Protection Rooms &amp;#8226; ReHab Room Ortho Anti Fatigue Floor Mats &amp;#8226; Exercise Room Ortho Anti Fatigue Floor Mats &amp;#8226; Geriatric Ortho Anti Fatigue Floor Mats &amp;#8226; Dental Surgery Room Ortho Anti Fatigue Floor Mats &amp;#8226; Day Care Ortho Anti Fatigue Floor Mats &amp;#8226;&amp;nbsp; Pharmacy Ortho Anti Fatigue Floor Mats &amp;#8226; Sterile Processing Ortho Anti Fatigue Floor Mats &amp;#8226; Pharmaceutical Manufacturing Ortho Anti Fatigue Floor Mats &amp;#8226; Kitchen Ortho Anti Fatigue Floor Mats&lt;br&gt;
    &lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>124</EntityID>
              <Name>Ergo Anti Fatigue Floor Mats</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;span class="style26"&gt;&lt;span class="style9"&gt;&lt;strong&gt;&lt;font size="3" color="#000000" face="Tahoma"&gt;
    &lt;h1&gt;Ergo Anti Fatigue Floor Mats&lt;/h1&gt;
    &lt;/font&gt;
    &lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;hr&gt;
    &amp;nbsp; &lt;font size="3" face="Tahoma"&gt;All ergo anti fatigue floor mats are designed with a &lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;beveled edge to reduce tripping hazards. Virgin Rubber ergo anti fatigue floor mats come a&lt;/font&gt;&lt;font size="4" face="Tahoma"&gt;&lt;font size="3"&gt; p&lt;/font&gt;&lt;/font&gt;&lt;font size="4" face="Tahoma"&gt;&lt;font size="3"&gt;remium Virgin Rubber &lt;/font&gt;&lt;font size="3" color="#000000"&gt;3&lt;/font&gt;&lt;font size="3"&gt; year warranty.&lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;&lt;br&gt;
    &lt;font size="4" face="Tahoma"&gt;
    &lt;br&gt;
    &lt;/font&gt;
    &lt;div align="left"&gt;&lt;font size="3" face="Tahoma"&gt;David Scott provides the perfect ergo anti fatigue floor mats for the medical and food industries. In fact, many laboratories use the quality ergo anti fatigue floor mats from David Scott.&lt;/font&gt;&lt;font size="3" face="Tahoma"&gt;&lt;font size="3"&gt; All ergo anti fatigue floor mats are design for easy cleanability and daily sanitation. Available in 4 vibrant colors, the ergo anti fatigue floor mats offer great ergonomics and are resistant to most chemicals. Additionally, the ergo anti fatigue floor mat products from David Scott comply to USDA and CFIA standards/guidelines. Ergo anti fatigue floor mats are labeled Clean Room Class 2 (100).&amp;nbsp; &lt;/font&gt;&lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;font size="3" face="Tahoma"&gt;&lt;font size="3"&gt;
    &lt;/font&gt;&lt;span class="style26"&gt;&lt;/span&gt;&amp;nbsp; &lt;/font&gt;&lt;br&gt;
    &lt;/div&gt;
    &lt;div align="center"&gt;&lt;img src="../images/hygiene.jpg" height="105" width="201"&gt;&lt;br&gt;
    &lt;div align="center"&gt;&lt;strong&gt;&lt;font size="2"&gt;&lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;&lt;span class="style26"&gt;&lt;hr&gt;
    &lt;br&gt;
    &lt;/span&gt;&lt;/div&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>ergo anti fatigue floor mats, ergo floor mats, ergo anti fatigue floor mat, ergo anti fatigue mats, ergo anti fatigue mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Ergo Anti Fatigue Floor Mats. David Scott Has Ergo Anti Fatigue Floor Mats For Hospitals, Clinics, Medical Labs, Food Processing Facilities. We carry premium ergo anti fatigue floor mats designed for easy cleanability and daily sanitation. Ergo floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Ergo Anti Fatigue Floor Mats | Premium Ergo Anti Fatigue Floor Mats For Hospitals, Clinics, Medical Labs, Food Processing Facilities</SETitle>
              <SENoScript>Ergo Anti Fatigue Floor Mats</SENoScript>
              <SEAltText>Ergo Anti Fatigue Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>2</DisplayOrder>
              <SortByLooks>0</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>ergo-anti-fatigue-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>4</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;&lt;font size="5"&gt;Ergo Anti Fatigue Floor Mats From David Scott&lt;br&gt;
    &lt;/font&gt;&lt;/h1&gt;
    &lt;h2&gt;&lt;font size="3"&gt;Find Ergo Anti Fatigue Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h2&gt;
    The ergo anti fatigue floor mats from David Scott are ideal for enhanced workplace comfort. Ergo anti fatigue floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in ergo anti fatigue floor mats designed with industry advanced technology. All ergo anti fatigue floor mats come with a number of convenient features. The ergo anti fatigue floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most ergo anti fatigue floor mats are resistant to chemicals.&lt;br&gt;
    &lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Ergo Anti Fatigue Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find ergo anti fatigue floor mats in a number of sizes. Also, several ergo anti fatigue floor mats come in various colors so customers can match the look of their working atmosphere. All of the ergo anti fatigue floor mat products from David Scott are made with a durable rubber base. Many of the ergo anti fatigue floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most ergo anti fatigue floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any ergo anti fatigue floor mat by clicking one of the available products.&lt;br&gt;
    &lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Ergo Anti Fatigue Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Ergo anti fatigue floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The ergo anti fatigue floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with ergo anti fatigue floor mats. The ergo anti fatigue floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality ergo anti fatigue floor mat. &lt;br&gt;
    &lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Ergo Anti Fatigue Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Ergo anti fatigue floor mats are an affordable way to help prevent such issues. Ergo anti fatigue floor mats provide a viable solution to address the needs of a physically demanding work environment. Ergo anti fatigue floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's ergo anti fatigue floor mats is based on exceptional quality for optimal performance. Browse the various ergo anti fatigue floor mats available from David Scott.&lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>285</EntityID>
              <Name>Hospital Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="5"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Hospital Floor Mats&lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/h1&gt;
    &lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Sticky Hospital Floor Mats&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; &amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Tacky Hospital Floor Mats &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&amp;nbsp; &lt;br&gt;
    &lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Autoclavable &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Hospital &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Floor Mats &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&lt;br&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Comfort Hospital Mats &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    Anti fatigue Floor Mats-
    &lt;font color="#000000" size="2"&gt;Our Anti fatigue floor mats are designed
    for comfort, back relief, foot relief, overall fatigue reduction. They
    have beveled edges. &lt;/font&gt;&lt;font size="2"&gt;These floor mats are designed to stand on for hours of back pain relief&lt;/font&gt;.&lt;br&gt;
    &lt;br&gt;
    &lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>hospital floor mats, hospital floor mat, hospital mats, hospital mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Hospital Floor Mats. David Scott Has Hospital Floor Mats For Hospitals, Clinics, Medical Labs, Food Processing Facilities. We carry premium hospital floor mats designed for easy cleanability and daily sanitation. Hospital floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Hospital Floor Mats | Premium Hospital Floor Mats For Clinics, Medical Labs, Laboratories</SETitle>
              <SENoScript>Hospital Floor Mats</SENoScript>
              <SEAltText>Hospital Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>3</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>hospital-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>21</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;&lt;font size="5"&gt;Hospital Floor Mats From David Scott&lt;br&gt;
    &lt;/font&gt;&lt;/h1&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Hospital Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The hospital floor mats from David Scott are ideal for enhanced workplace comfort. Hospital floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in hospital floor mats designed with industry advanced technology. All hospital floor mats come with a number of convenient features. The hospital floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most hospital floor mats are resistant to chemicals.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Hospital Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find hospital floor mats in a number of sizes. Also, several hospital floor mats come in various colors so customers can match the look of their working atmosphere. All of the hospital floor mat products from David Scott are made with a durable rubber base. Many of the hospital floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most hospital floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any hospital floor mat by clicking one of the available products.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Hospital Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Hospital floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The hospital floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with hospital floor mats. The hospital floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality hospital floor mat. &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Hospital Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Hospital floor mats are an affordable way to help prevent such issues. Hospital floor mats provide a viable solution to address the needs of a physically demanding work environment. Hospital floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's hospital floor mats is based on exceptional quality for optimal performance. Browse the various hospital floor mats available from David Scott.&lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>283</EntityID>
              <Name>Autoclavable Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Autoclavable Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>autoclavable floor mats, autoclavable floor mat, autoclavable mats, autoclavable mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Autoclavable Floor Mats. David Scott Has Autoclavable Floor Mats For Autoclavables, Clinics, Medical Labs, Food Processing Facilities. We carry premium autoclavable floor mats designed for easy cleanability and daily sanitation. Autoclavable floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Autoclavable Floor Mats | Premium Autoclavable Floor Mats For Clinics, Medical Labs, Laboratories and More</SETitle>
              <SENoScript>Autoclavable Floor Mats</SENoScript>
              <SEAltText>Autoclavable Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>4</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>autoclavable-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>3</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="5"&gt;Autoclavable Floor Mats From David Scott&lt;br&gt;
    &lt;/font&gt;&lt;/h1&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Autoclavable Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The autoclavable floor mats from David Scott are ideal for enhanced workplace comfort. Autoclavable floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in autoclavable floor mats designed with industry advanced technology. All autoclavable floor mats come with a number of convenient features. The autoclavable floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most autoclavable floor mats are resistant to chemicals.&lt;br&gt;
    &amp;nbsp; &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Autoclavable Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find autoclavable floor mats in a number of sizes. Also, several autoclavable floor mats come in various colors so customers can match the look of their working atmosphere. All of the autoclavable floor mat products from David Scott are made with a durable rubber base. Many of the autoclavable floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most autoclavable floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any autoclavable floor mat by clicking one of the available products.&lt;br&gt;
    &lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Autoclavable Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Autoclavable floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The autoclavable floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with autoclavable floor mats. The autoclavable floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality autoclavable floor mat. &lt;br&gt;
    &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Autoclavable Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Autoclavable floor mats are an affordable way to help prevent such issues. Autoclavable floor mats provide a viable solution to address the needs of a physically demanding work environment. Autoclavable floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's autoclavable floor mats is based on exceptional quality for optimal performance. Browse the various autoclavable floor mats available from David Scott.
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>279</EntityID>
              <Name>Laboratory Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Laboratory Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Sticky
    Laboratory Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Tacky Laboratory Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Autoclavable Laboratory Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Comfort Laboratory Mats Mats&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;strong&gt;&lt;font size="2"&gt;&lt;br&gt;
    *Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>laboratory floor mats, laboratory floor mat, laboratory mats, laboratory mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Laboratory Floor Mats. David Scott Has Laboratory Floor Mats For Laboratorys, Clinics, Medical Labs, Food Processing Facilities. We carry premium laboratory floor mats designed for easy cleanability and daily sanitation. Laboratory floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Laboratory Floor Mats | Premium Laboratory Floor Mats For Clinics, Medical Labs, Hospitals and More</SETitle>
              <SENoScript>Laboratory Floor Mats</SENoScript>
              <SEAltText>Laboratory Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>5</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>laboratory-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>5</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;&lt;font size="5"&gt;Laboratory Floor Mats From David Scott&lt;/font&gt;&lt;/h1&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Laboratory Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The laboratory floor mats from David Scott are ideal for enhanced workplace comfort. Laboratory floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in laboratory floor mats designed with industry advanced technology. All laboratory floor mats come with a number of convenient features. The laboratory floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most laboratory floor mats are resistant to chemicals.&lt;font size="3"&gt;&lt;br&gt;
    &lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Laboratory Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find laboratory floor mats in a number of sizes. Also, several laboratory floor mats come in various colors so customers can match the look of their working atmosphere. All of the laboratory floor mat products from David Scott are made with a durable rubber base. Many of the laboratory floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most laboratory floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any laboratory floor mat by clicking one of the available products.&lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Laboratory Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Laboratory floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The laboratory floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with laboratory floor mats. The laboratory floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality laboratory floor mat. &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Laboratory Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Laboratory floor mats are an affordable way to help prevent such issues. Laboratory floor mats provide a viable solution to address the needs of a physically demanding work environment. Laboratory floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's laboratory floor mats is based on exceptional quality for optimal performance. Browse the various laboratory floor mats available from David Scott.
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>286</EntityID>
              <Name>Pharmacy Floor mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Pharmacy Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Sticky
    Pharmacy Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; Tacky Pharmacy Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Autoclavable Pharmacy Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Comfort Pharmacy Floor Mats &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>pharmacy floor mats, pharmacy floor mat, pharmacy mats, pharmacy mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Pharmacy Floor Mats. David Scott Has Pharmacy Floor Mats For Pharmacys, Clinics, Medical Labs, Food Processing Facilities. We carry premium pharmacy floor mats designed for easy cleanability and daily sanitation. Pharmacy floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Pharmacy Floor Mats | Premium Pharmacy Floor Mats For Clinics, Medical Labs, Hospitals and More</SETitle>
              <SENoScript>Pharmacy Floor Mats</SENoScript>
              <SEAltText>Pharmacy Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>5</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>pharmacy-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>6</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="5"&gt;Pharmacy Floor Mats From David Scott&lt;br&gt;
    &lt;/font&gt;&lt;/h1&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Pharmacy Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The pharmacy floor mats from David Scott are ideal for enhanced workplace comfort. Pharmacy floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in pharmacy floor mats designed with industry advanced technology. All pharmacy floor mats come with a number of convenient features. The pharmacy floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most pharmacy floor mats are resistant to chemicals.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Pharmacy Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find pharmacy floor mats in a number of sizes. Also, several pharmacy floor mats come in various colors so customers can match the look of their working atmosphere. All of the pharmacy floor mat products from David Scott are made with a durable rubber base. Many of the pharmacy floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most pharmacy floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any pharmacy floor mat by clicking one of the available products.&lt;font size="3"&gt;&lt;br&gt;
    &lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Pharmacy Floor Mat&lt;/font&gt;&lt;/h1&gt;
    Pharmacy floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The pharmacy floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with pharmacy floor mats. The pharmacy floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality pharmacy floor mat. &lt;font size="3"&gt;&lt;br&gt;
    &lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Pharmacy Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Pharmacy floor mats are an affordable way to help prevent such issues. Pharmacy floor mats provide a viable solution to address the needs of a physically demanding work environment. Pharmacy floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's pharmacy floor mats is based on exceptional quality for optimal performance. Browse the various pharmacy floor mats available from David Scott.&lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>297</EntityID>
              <Name>Salon Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Salon Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>salon floor mats, salon floor mat, salon mats, salon mat, anti fatigue floor mats	</SEKeywords>
              <SEDescription>Salon Floor Mats. David Scott Has Salon Floor Mats For Food Productions, Clinics, Medical Labs, Food Processing Facilities. We carry premium salon floor mats designed for easy cleanability and daily sanitation. Salon floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Salon Floor Mats | Premium Salon Floor Mats For Improved Comfort, Performance and Productivity</SETitle>
              <SENoScript>Salon Floor Mats</SENoScript>
              <SEAltText>Salon Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>7</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>salon-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>5</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;Salon Floor Mats By David Scott&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/h1&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Salon Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The salon floor mats from David Scott are ideal for enhanced workplace comfort. Salon floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in salon floor mats designed with industry advanced technology. All salon floor mats come with a number of convenient features. The salon floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most salon floor mats are resistant to chemicals.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Salon Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find salon floor mats in a number of sizes. Also, several salon floor mats come in various colors so customers can match the look of their working atmosphere. All of the salon floor mat products from David Scott are made with a durable rubber base. Many of the salon floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most salon floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any salon floor mat by clicking one of the available products.&lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Salon Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Salon floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The salon floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with salon floor mats. The salon floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality salon floor mat. &lt;br&gt;
    &lt;br&gt;
    David Scott salon floor mats shape to salon chairs and working stations with ease. This design provides a salon floor mat that promotes both mobility and comfort. Choose from a wide inventory of salon floor mats in a number of different thicknesses. &lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Salon Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Salon floor mats are an affordable way to help prevent such issues. Salon floor mats provide a viable solution to address the needs of a physically demanding work environment. Salon floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's salon floor mats is based on exceptional quality for optimal performance. Browse the various salon floor mats available from David Scott.
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>289</EntityID>
              <Name>Industrial Floor Mats</Name>
              <ColWidth>3</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="6"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Industrial Floor Mats&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/h1&gt;
    &lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&amp;nbsp; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Sticky
    Industrial Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Tacky Industrial Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Autoclavable Industrial Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Comfort Industrial Mats&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt; &lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;
    &lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>industrial floor mats, industrial floor mat, industrial mats, industrial mat, anti fatigue floor mats	</SEKeywords>
              <SEDescription>Industrial Floor Mats. David Scott Has Industrial Floor Mats For Industrials, Clinics, Medical Labs, Food Processing Facilities. We carry premium industrial floor mats designed for easy cleanability and daily sanitation. Industrial floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Industrial Floor Mats | Premium Industrial Floor Mats For Improved Comfort, Performance and Productivity</SETitle>
              <SENoScript>Industrial Floor Mats</SENoScript>
              <SEAltText>Industrial Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>8</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>industrial-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>5</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;Industrial Floor Mats From David Scott&lt;/h1&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Industrial Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The industrial floor mats from David Scott are ideal for enhanced workplace comfort. Industrial floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in industrial floor mats designed with industry advanced technology. All industrial floor mats come with a number of convenient features. The industrial floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most industrial floor mats are resistant to chemicals.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Industrial Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find industrial floor mats in a number of sizes. Also, several industrial floor mats come in various colors so customers can match the look of their working atmosphere. All of the industrial floor mat products from David Scott are made with a durable rubber base. Many of the industrial floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most industrial floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any industrial floor mat by clicking one of the available products.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Industrial Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Industrial floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The industrial floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with industrial floor mats. The industrial floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality industrial floor mat. &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Industrial Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Industrial floor mats are an affordable way to help prevent such issues. Industrial floor mats provide a viable solution to address the needs of a physically demanding work environment. Industrial floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's industrial floor mats is based on exceptional quality for optimal performance. Browse the various industrial floor mats available from David Scott.&lt;br&gt;
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>284</EntityID>
              <Name>Contamination Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Contamination Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; &amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Sticky Contamination Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; &amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Tacky Contamination Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; &amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Autoclavable Contamination Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; &amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Comfort Contamination Mats &lt;br&gt;
    &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>contamination floor mats, contamination floor mat, contamination mats, contamination mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Contamination Floor Mats. David Scott Has Contamination Floor Mats For Contaminations, Clinics, Medical Labs, Food Processing Facilities. We carry premium contamination floor mats designed for easy cleanability and daily sanitation. Contamination floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Contamination Floor Mats | Premium Contamination Floor Mats For Clinics, Medical Labs, Hospitals and More</SETitle>
              <SENoScript>Contamination Floor Mats</SENoScript>
              <SEAltText>Contamination Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>9</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>contamination-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>4</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;Contamination Floor Mats From David Scott&amp;nbsp;&amp;nbsp; &lt;/h1&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Contamination Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The contamination floor mats from David Scott are ideal for enhanced workplace comfort. Contamination floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in contamination floor mats designed with industry advanced technology. All contamination floor mats come with a number of convenient features. The contamination floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most contamination floor mats are resistant to chemicals.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Contamination Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find contamination floor mats in a number of sizes. Also, several contamination floor mats come in various colors so customers can match the look of their working atmosphere. All of the contamination floor mat products from David Scott are made with a durable rubber base. Many of the contamination floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most contamination floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any contamination floor mat by clicking one of the available products.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Contamination Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Contamination floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The contamination floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with contamination floor mats. The contamination floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality contamination floor mat. &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Contamination Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Contamination floor mats are an affordable way to help prevent such issues. Contamination floor mats provide a viable solution to address the needs of a physically demanding work environment. Contamination floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's contamination floor mats is based on exceptional quality for optimal performance. Browse the various contamination floor mats available from David Scott.
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>287</EntityID>
              <Name>Static Control Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Static Control Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>static control floor mats, static control floor mat, static control mats, static control mat, anti fatigue floor mats	</SEKeywords>
              <SEDescription>Static Control Floor Mats. David Scott Has Static Control Floor Mats For Static Controls, Clinics, Medical Labs, Food Processing Facilities. We carry premium static control floor mats designed for easy cleanability and daily sanitation. Static Control floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Static Control Floor Mats | Premium Static Control Floor Mats For Clinics, Medical Labs, Hospitals and More</SETitle>
              <SENoScript>Static Control Floor Mats</SENoScript>
              <SEAltText>Static Control Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>10</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>static-control-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>4</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;&lt;font size="5"&gt;Static Control Floor Mats From David Scott&lt;br&gt;
    &lt;/font&gt;&lt;/h1&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Static Control Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The static control floor mats from David Scott are ideal for enhanced workplace comfort. Static control floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in static control floor mats designed with industry advanced technology. All static control floor mats come with a number of convenient features. The static control floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most static control floor mats are resistant to chemicals.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Static Control Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find static control floor mats in a number of sizes. Also, several static control floor mats come in various colors so customers can match the look of their working atmosphere. All of the static control floor mat products from David Scott are made with a durable rubber base. Many of the static control floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most static control floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any static control floor mat by clicking one of the available products.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Static Control Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Static control floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The static control floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with static control floor mats. The static control floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality static control floor mat. &lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Static Control Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Static control floor mats are an affordable way to help prevent such issues. Static control floor mats provide a viable solution to address the needs of a physically demanding work environment. Static control floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's static control floor mats is based on exceptional quality for optimal performance. Browse the various static control floor mats available from David Scott.
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
            <Entity>
              <EntityID>290</EntityID>
              <Name>Food Productivity Floor Mats</Name>
              <ColWidth>4</ColWidth>
              <Description>&lt;div align="center"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;
    &lt;h1&gt;Food Productivity Floor Mats&lt;/h1&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Sticky
    Food Productivity Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Tacky Food Productivity Floor Mats &amp;#8226; &lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226; &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Autoclavable Food Productivity Floor Mats &amp;#8226;&lt;br&gt;
    &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; Food Productivity&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt; Comfort &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;Mats &lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;strong&gt;&lt;font color="#000080"&gt;&lt;font color="#000000"&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;
    &lt;br&gt;
    &lt;strong&gt;&lt;font size="2"&gt;*Custom Sizes May Be Available*&lt;/font&gt;&lt;/strong&gt;
    &lt;/div&gt;
    </Description>
              <SEKeywords>food productivity floor mats, food productivity floor mat, food productivity mats, food productivity mat, anti fatigue floor mats</SEKeywords>
              <SEDescription>Food Productivity Floor Mats. David Scott Has Food Productivity Floor Mats For Food Productions, Clinics, Medical Labs, Food Processing Facilities. We carry premium food productivity floor mats designed for easy cleanability and daily sanitation. Food Productivity floor mats combine quality ergonomics with chemical resistance.</SEDescription>
              <SETitle>Food Productivity Floor Mats | Premium Food Productivity Floor Mats For Improved Comfort, Performance and Productivity</SETitle>
              <SENoScript>Food Productivity Floor Mats</SENoScript>
              <SEAltText>Food Productivity Floor Mats</SEAltText>
              <ParentEntityID>278</ParentEntityID>
              <DisplayOrder>11</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>food-productivity-floor-mats</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>4</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary>&lt;h1&gt;Food Productivity Floor Mats By David Scott&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/h1&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Find Food Productivity Floor Mats To Meet Your Needs&lt;/font&gt;&lt;/h1&gt;
    The food productivity floor mats from David Scott are ideal for enhanced workplace comfort. Food productivity floor mats greatly improve the working environment for jobs that demand prolonged standing. David Scott, a leading provider in medical supplies, specializes in food productivity floor mats designed with industry advanced technology. All food productivity floor mats come with a number of convenient features. The food productivity floor mat products from David Scott are designed for easy cleaning and sanitation. In addition, most food productivity floor mats are resistant to chemicals.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Many Food Productivity Floor Mats To Choose From&lt;/font&gt;&lt;/h1&gt;
    At David Scott, customers can find food productivity floor mats in a number of sizes. Also, several food productivity floor mats come in various colors so customers can match the look of their working atmosphere. All of the food productivity floor mat products from David Scott are made with a durable rubber base. Many of the food productivity floor mats are designed with a beveled edge to reduce tripping hazards. In fact, most food productivity floor mats from David Scott comply with USDA and/or CFIA standards. Learn more about any food productivity floor mat by clicking one of the available products.&lt;br&gt;
    &lt;font size="3"&gt;&lt;/font&gt;
    &lt;h1&gt;&lt;font size="3"&gt;More About Food Productivity Floor Mats&lt;/font&gt;&lt;/h1&gt;
    Food productivity floor mats are a special type of anti fatigue floor mat recommended for use in retail, industrial, medical and other related working operations. The food productivity floor mat products that David Scott carries are available in a variety of sizes. Provide safer traction, improve working conditions, and facilitate better performance and productivity with food productivity floor mats. The food productivity floor mats from David Scott offer the features, level of comfort, and aesthetic qualities professionals seek in a quality food productivity floor mat. &lt;br&gt;
    &lt;h1&gt;&lt;font size="3"&gt;Food Productivity Floor Mats Help Improve Working Conditions&lt;/font&gt;&lt;/h1&gt;
    Studies have shown that over 83% of the industrial workforce has dealt with back, leg and foot related problems. Food productivity floor mats are an affordable way to help prevent such issues. Food productivity floor mats provide a viable solution to address the needs of a physically demanding work environment. Food productivity floor mats help reduce the potential for stiff muscles and worker fatigue. The design and technology applied to David Scott's food productivity floor mats is based on exceptional quality for optimal performance. Browse the various food productivity floor mats available from David Scott.
    </Summary>
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>320</EntityID>
            <Name>Ergonomics</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText>Ergonomics</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>5</DisplayOrder>
            <SortByLooks>1</SortByLooks>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>ergonomics</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>0</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
            <Entity>
              <EntityID>321</EntityID>
              <Name>Wrist Rest</Name>
              <ColWidth>4</ColWidth>
              <Description />
              <SEKeywords />
              <SEDescription />
              <SETitle />
              <SENoScript />
              <SEAltText>Wrist Rest</SEAltText>
              <ParentEntityID>320</ParentEntityID>
              <DisplayOrder>1</DisplayOrder>
              <SortByLooks>1</SortByLooks>
              <XmlPackage>entity.grid.xml.config</XmlPackage>
              <Published>1</Published>
              <SEName>wrist-rest</SEName>
              <ContentsBGColor />
              <PageBGColor />
              <GraphicsColor />
              <NumObjects>0</NumObjects>
              <PageSize>20</PageSize>
              <QuantityDiscountID>0</QuantityDiscountID>
              <Summary />
              <SkinID>0</SkinID>
              <TemplateName />
            </Entity>
          </Entity>
          <Entity>
            <EntityID>140</EntityID>
            <Name>OEM</Name>
            <ColWidth>4</ColWidth>
            <Description>&lt;!-- landing_spotlight_area --&gt;
    &lt;div class="landing_spotlight_area"&gt;
    &lt;!-- spotlight_content --&gt;
    &lt;div class="spotlight_content"&gt;
    &lt;!-- slider_group --&gt;
    &lt;div class="slider_group" id="slide5"&gt;
    &lt;div class="img"&gt;&lt;a href="/c-140-oem.aspx"&gt;&lt;img src="/skins/Skin_1/images/home/splash-oem1.jpg" alt="" title="" border="0"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;div class="overlaybg"&gt;&lt;/div&gt;
    &lt;div class="txt"&gt;
    &lt;div class="txt_padding"&gt;
    &lt;h2&gt;&lt;a href="/c-140-oem.aspx"&gt;OEM&lt;/a&gt;&lt;/h2&gt;
    &lt;ul class="ul_white"&gt;
        &lt;li&gt;Call us toll-free 800-804-0333 and let us quote your custom project&lt;/li&gt;
        &lt;li&gt;Small &amp;amp; Large quantity runs available&lt;/li&gt;
        &lt;li&gt;Let our staff help you take your idea to the next level&lt;/li&gt;
        &lt;li&gt;David Scott Company has over 38 years experience&lt;/li&gt;
        &lt;li&gt;And More!&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;!-- /slider_group --&gt;
    &lt;/div&gt;
    &lt;!-- /spotlight_content --&gt;
    &lt;/div&gt;
    &lt;!-- /landing_spotlight_area --&gt;
    &lt;p&gt;&lt;strong&gt;David Scott Company&lt;/strong&gt; was incorporated in
    1972. Our involvement in the medical device industry has led us down an
    insightful path. We have grown and expanded our knowledge base to other
    industries.&lt;/p&gt;
    &lt;p&gt;Working intimately with manufacturers
    we are able to offer numerous alternative to unique project concepts. We have
    relationships with injection molders, soft format TPE/ TPU molders and
    extruders, silicone dispensing and curing houses, as well as urethane
    dispensing and over molding.&lt;/p&gt;
    &lt;p&gt;Our broad resource base allows us to
    quickly offer samples and solutions for applications ranging from:&lt;/p&gt;
    &lt;ul&gt;
        &lt;li&gt;Seating&lt;/li&gt;
        &lt;li&gt;Padding&lt;/li&gt;
        &lt;li&gt;Cushioning&lt;/li&gt;
        &lt;li&gt;Supporting&lt;/li&gt;
        &lt;li&gt;Shock and Impact Absorption&lt;/li&gt;
        &lt;li&gt;Pressure Reduction&lt;/li&gt;
        &lt;li&gt;Comfort&lt;/li&gt;
    &lt;/ul&gt;
    &lt;p&gt;We have created concepts and products for industries such as:&lt;/p&gt;
    &lt;ul&gt;
        &lt;li&gt;Medical&lt;/li&gt;
        &lt;li&gt;Footwear&lt;/li&gt;
        &lt;li&gt;Seating&lt;/li&gt;
        &lt;li&gt;Bedding&lt;/li&gt;
        &lt;li&gt;Chiropractic&lt;/li&gt;
        &lt;li&gt;Message Therapy&lt;/li&gt;
        &lt;li&gt;Health &amp;amp; Beauty&lt;/li&gt;
        &lt;li&gt;Sporting Goods&lt;/li&gt;
        &lt;li&gt;Safety&lt;/li&gt;
    &lt;/ul&gt;
    &lt;p&gt;Just to name a few...&lt;/p&gt;
    &lt;p&gt;We are also proud to be able to offer
    logistics to our customers. We have helped customers take products from a
    thought to a reality while keeping their needs and budgetary guidelines in
    check.&lt;/p&gt;
    &lt;p&gt;As an established company you can be
    assured we value every relationship with every customer and look to create a
    long working relationship with you. Please do not hesitate to phone us
    toll-free at 800-804-0333, via fax at 508-875-3375 or e-mail at &lt;a href="mailto:dkaplan@davidscottco.com"&gt;sales@davidscottco.com&lt;/a&gt; with any questions or possible project ideas.&lt;/p&gt;
    </Description>
            <SEKeywords />
            <SEDescription />
            <SETitle>Gel Manufacturer | Custom Gel | Custom Gel pads | Private label Gel products</SETitle>
            <SENoScript />
            <SEAltText>OEM</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>6</DisplayOrder>
            <SortByLooks>1</SortByLooks>
            <XmlPackage>entity.default_industry_oem.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>oem</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>0</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>80</EntityID>
            <Name>Equestrian Gel Saddle Pads</Name>
            <ColWidth>4</ColWidth>
            <Description>&lt;!-- landing_spotlight_area --&gt;
    &lt;div class="landing_spotlight_area"&gt;&lt;!-- spotlight_content --&gt;
    &lt;div class="spotlight_content"&gt;&lt;!-- slider_group --&gt;
    &lt;div class="img"&gt;&lt;a href="/c-80-equestrian.aspx"&gt;&lt;img style="WIDTH: 695px; HEIGHT: 277px" title="" border="0" alt="" align="top" src="/skins/Skin_1/images/home/splash-equestrian1.jpg"&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;div class="overlaybg"&gt;&lt;/div&gt;
    &lt;div class="txt"&gt;
    &lt;h2 class="txt_padding"&gt;&lt;a href="/c-80-equestrian.aspx"&gt;&lt;font size="6"&gt;Equestrian&lt;/font&gt;&lt;/a&gt;&lt;/h2&gt;
    &lt;li&gt;View our Gel Saddle pads &amp;amp; covers
    &lt;/li&gt;
    &lt;li&gt;Buy direct from the manufacturer and SAVE$$
    &lt;/li&gt;
    &lt;li&gt;Gel saddle pads will reduce vibration and shock
    &lt;/li&gt;
    &lt;li&gt;Added comfort for you and your horse &lt;/li&gt;
    &lt;/div&gt;
    &lt;p class="slider_group"&gt;&amp;nbsp;&lt;/p&gt;
    &lt;hr&gt;
    &lt;p class="slider_group"&gt;&amp;nbsp;&lt;/p&gt;
    &lt;p&gt;&amp;nbsp;&lt;/p&gt;
    &lt;p align="center"&gt;&lt;font size="3"&gt;Gel pads for Horses &amp;#8226; Saddle Pads &amp;#8226; Split Saddle pads with gel &amp;#8226; Gel Saddle pads &amp;#8226; Tombstone shaped Gel pads for riding &amp;#8226; Equestrian Saddle Pads&lt;/font&gt;&lt;/p&gt;
    &lt;!-- /slider_group --&gt;&lt;/div&gt;
    &lt;!-- /spotlight_content --&gt;&lt;/div&gt;
    &lt;!-- /landing_spotlight_area --&gt;
    </Description>
            <SEKeywords>Gel Pads Equestrian, Horse pads, Gel Saddle pads</SEKeywords>
            <SEDescription>Made in the USA Equestrian Gel pads for Horses, saddles, and riders.</SEDescription>
            <SETitle>Gel Saddle Pads | Horse Pads | Gel pads for Horse Saddles | Rider Gel Pads | Made in the USA!!!</SETitle>
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>7</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.default_industry_equestrian.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>equestrian-gel-saddle-pads</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>14</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary>&lt;p align="center"&gt;&lt;font size="3"&gt;Gel pads for Horses &amp;#8226; Saddle Pads &amp;#8226; Split Saddle pads with gel &amp;#8226; Gel Saddle pads &amp;#8226; Tombstone shaped Gel pads for riding &amp;#8226; Equestrian Saddle Pads&lt;/font&gt;&lt;/p&gt;
    </Summary>
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
        </Category>
        <Section>
          <Entity>
            <EntityID>7</EntityID>
            <Name>Anti-Fatigue Floor Matting</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText>Anti-Fatigue Floor Matting</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>1</SortByLooks>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>anti-fatigue-floor-matting</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>30</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary>&lt;p&gt;David Scott Company Anti Fatigue Floor Mats&lt;a href="javascript:void(0);" onclick="mds();return false;" class="dsna"&gt;.&lt;/a&gt;&lt;/p&gt;
    &lt;div id="dso"&gt;
    &lt;a href="http://www.lawndoctor.com/"&gt;lawn care&lt;/a&gt; |
    &lt;a href="http://www.lucktruck.com/san-antonio-apartments.htm"&gt;san antonio apartments&lt;/a&gt; |
    &lt;a href="http://www.mypigeonforgeandgatlinburg.com/"&gt;pigeon forge attractions&lt;/a&gt; |
    &lt;a href="http://www.hendricks.org/respiratory-disorders-lung-disease"&gt;lung disease indianapolis&lt;/a&gt; |
    &lt;a href="http://www.americanbathind.com/bathroom-shower-enclosures-renovations-redwood-city-ca.htm"&gt;shower enclosures redwood city&lt;/a&gt;&lt;br&gt;
    &lt;a href="http://www.dmc.org/?id=27&amp;amp;sid=1"&gt;senior services detroit&lt;/a&gt; |
    &lt;a href="http://www.batterygiant.com/cordless-power-tool-batteries/"&gt;power tool battery&lt;/a&gt; |
    &lt;a href="http://www.dmc.org/?id=436"&gt;wound care detroit&lt;/a&gt; |
    &lt;a href="http://www.americanbathind.com/bathroom-shower-enclosures-renovations-sacramento-ca.htm"&gt;shower enclosures sacramento&lt;/a&gt;
    &lt;/div&gt;
    </Summary>
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>3</EntityID>
            <Name>Consumer</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.default_industry_consumer.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>consumer</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>33</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>4</EntityID>
            <Name>Equestrian</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.default_industry_equestrian.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>equestrian</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>14</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>2</EntityID>
            <Name>Medical</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.default_industry_medical.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>medical</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>520</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>1</EntityID>
            <Name>Motorcycle</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.default_industry_motorcycle.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>motorcycle</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>16</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>5</EntityID>
            <Name>OEM</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText>OEM</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>1</SortByLooks>
            <XmlPackage>entity.default_industry_oem.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>oem</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>0</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>6</EntityID>
            <Name>Peel n' Stick Gel</Name>
            <ColWidth>4</ColWidth>
            <Description>These translucent gel sheets are amazing. They can be scissor or die cut to exact shape.They are very
    tacky so they stick to almost any surface and can be removed.You can
    clean the tacky part with water so it will stick again. The gel is
    covered with a thin layer of Ionic Silver Antimicrobial film. Great for
    Orthotics, Prosthetics, Diabetics.Thousands of uses Hand Grips, spot
    pressure relief, comfort grips, hot spots, seats, saddles, hard
    surfaces, edges.
    </Description>
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText>Peel n' Stick Gel</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>1</SortByLooks>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>peel-n-stick-gel</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>1</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary>These translucent gel sheets are amazing. They can be scissor or die cut to exact shape.They are very
    tacky so they stick to almost any surface and can be removed.You can
    clean the tacky part with water so it will stick again. The gel is
    covered with a thin layer of Ionic Silver Antimicrobial film. Great for
    Orthotics, Prosthetics, Diabetics.Thousands of uses Hand Grips, spot
    pressure relief, comfort grips, hot spots, seats, saddles, hard
    surfaces, edges.
    </Summary>
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
        </Section>
        <Manufacturer>
          <Entity>
            <EntityID>1</EntityID>
            <Name>Generic Mfg</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage />
            <Published>1</Published>
            <SEName>generic-mfg</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>647</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID />
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>3</EntityID>
            <Name>SANDEL Medical</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText>SANDEL Medical</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>sandel-medical</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>13</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
          <Entity>
            <EntityID>2</EntityID>
            <Name>Wearwell</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText>Wearwell</SEAltText>
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage>entity.grid.xml.config</XmlPackage>
            <Published>1</Published>
            <SEName>wearwell</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>10</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID>0</QuantityDiscountID>
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
        </Manufacturer>
        <Library />
        <Distributor>
          <Entity>
            <EntityID>1</EntityID>
            <Name>Dist1</Name>
            <ColWidth>4</ColWidth>
            <Description />
            <SEKeywords />
            <SEDescription />
            <SETitle />
            <SENoScript />
            <SEAltText />
            <ParentEntityID>0</ParentEntityID>
            <DisplayOrder>1</DisplayOrder>
            <SortByLooks>0</SortByLooks>
            <XmlPackage />
            <Published>1</Published>
            <SEName>dist1</SEName>
            <ContentsBGColor />
            <PageBGColor />
            <GraphicsColor />
            <NumObjects>599</NumObjects>
            <PageSize>20</PageSize>
            <QuantityDiscountID />
            <Summary />
            <SkinID>0</SkinID>
            <TemplateName />
          </Entity>
        </Distributor>
        <Genre />
        <Vector />
      </EntityHelpers>
    </root>

  19. #19
    GoVedia is offline Member
    Join Date
    Oct 2012
    Location
    Orange, CA
    Posts
    98

    Default This should do it

    Okay, that looks right.

    I made a couple of adjustments to your xml package. This should do the trick:
    Code:
    <?xml version="1.0" standalone="yes" ?>
    <!-- ###################################################################################################### -->
    <!-- Copyright AspDotNetStorefront.com, 1995-2009.  All Rights Reserved.					                -->
    <!-- http://www.aspdotnetstorefront.com														                -->
    <!-- For details on this license please visit  the product homepage at the URL above.		                -->
    <!-- THE ABOVE NOTICE MUST REMAIN INTACT.																	-->
    <!-- ###################################################################################################### -->
    <!-- #20091103  Clone from rev.categories.xml.config (Modify to show only the top level from category)	  # -->
    <!-- ###################################################################################################### -->
    <package version="2.1" displayname="Categories" debug="false" includeentityhelper="true">
    
      <query name="Categories" rowElementName="Category">
        <sql>
          <![CDATA[
    SELECT CategoryID, ExtensionData FROM Category WITH(nolock)
    ]]>
        </sql>
      </query>
    
      <PackageTransform>
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aspdnsf="urn:aspdnsf" exclude-result-prefixes="aspdnsf">
          <xsl:output method="html" omit-xml-declaration="yes"/>
    
          <xsl:param name="CategoryID">
            <xsl:choose>
              <xsl:when test="/root/System/PageName = 'showmanufacturer.aspx' or /root/System/PageName = 'showsection.aspx' or /root/System/PageName = 'showdistributor.aspx' or /root/System/PageName = 'showvector.aspx' or /root/System/PageName = 'showgenre.aspx'">0</xsl:when>
              <xsl:when test="/root/System/PageName = 'showcategory.aspx' and boolean(/root/QueryString/categoryid)">
                <xsl:value-of select="/root/QueryString/categoryid"/>
              </xsl:when>
              <xsl:when test="(/root/System/PageName = 'showcategory.aspx' or /root/System/PageName = 'showproduct.aspx') and boolean(/root/Cookies/lastviewedentityinstanceid) and /root/Cookies/lastviewedentityname = 'Category'">
                <xsl:value-of select="/root/Cookies/lastviewedentityinstanceid"/>
              </xsl:when>
              <xsl:otherwise>0</xsl:otherwise>
            </xsl:choose>
          </xsl:param>
    
          <xsl:param name="AncestorID">
            <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
              <xsl:value-of select="ancestor::*/EntityID"/>
            </xsl:for-each>
          </xsl:param>
    
          <xsl:param name="ParentID">
            <xsl:for-each select="/root/EntityHelpers/Category//Entity[EntityID = $CategoryID]">
              <xsl:value-of select="parent::*/EntityID"/>
            </xsl:for-each>
          </xsl:param>
    
    
    
          <xsl:template match="/">
            <xsl:element name="ul">
              <xsl:attribute name="class">
                <![CDATA[bjqs]]>
              </xsl:attribute>
    
              <xsl:apply-templates select="/root/EntityHelpers/Category/Entity">
                <xsl:with-param name="prefix" select="''"/>
              </xsl:apply-templates>
    
            </xsl:element>
          </xsl:template>
    
          <xsl:template match="Entity">
            <xsl:param name="prefix"></xsl:param>
            <xsl:param name="eName" select="aspdnsf:GetMLValue(Name)" />
            <xsl:param name="EID" select="EntityID" />
    
            <li>
    
    
              <xsl:value-of select="$prefix" />
              <xsl:if test="number(ParentEntityID) != 0">
                <span class="catMark">&gt;&gt;</span>&#160;
              </xsl:if>
              <a href="{concat('c-',EntityID,'-',SEName,'.aspx')}">
                <xsl:if test="EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID">
                  <xsl:attribute name="style">
                    font-weight:bold
                  </xsl:attribute>
                </xsl:if>
                <div id="name">
                  <xsl:value-of select="$eName"/>
                </div>
                <div id="smeta">
                  <xsl:value-of select="/root/Categories/Category[CategoryID=$EID]/ExtensionData" disable-output-escaping="yes" />
                </div>
                <xsl:value-of select="aspdnsf:LookupEntityImage(EntityID, 'Category', 'large', 0, '')" disable-output-escaping="yes" />
              </a>
    
              <!-- Hide child level
                        <xsl:if test="count(child::Entity)&gt;0 and (EntityID = $CategoryID or descendant::Entity/EntityID = $CategoryID)">
                            <ul class="tame2">
                                <xsl:apply-templates select="Entity">
                                    <xsl:with-param name="prefix" select="concat($prefix, '&#160;&#0160;')"/>
                                </xsl:apply-templates>
                            </ul>
                        </xsl:if>
    					-->
            </li>
          </xsl:template>
    
        </xsl:stylesheet>
      </PackageTransform>
    </package>
    Robert Kanaan
    AspDotNetStorefront Development Partner
    robert@GoVedia.com
    408-758-8845

    GoVedia
    http://GoVedia.com
    Approved AspDotNetStorefront Development Partner
    AspDotNetStorefront Recommended Reseller