SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  products.product_type, 
  products.parent_product_id, 
  descr1.full_description as full_description 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
WHERE 
  1 
  AND cscart_categories.category_id IN (172) 
  AND products.product_id NOT IN (212) 
  AND companies.status IN ('A') 
  AND (
    products.amount > 0 
    OR products.tracking = 'D'
  ) 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND products.parent_product_id = 0 
  AND products.company_id IN('1', '2', '3', '4', '5', '6') 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  product asc, 
  products.product_id ASC 
LIMIT 
  0, 4

Query time 0.00197

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "6.10"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.20",
                "prefix_cost": "0.00",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "category_id",
                "storefront_id",
                "usergroup_ids",
                "status"
              ]
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "range",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id",
                "product_id"
              ],
              "key_length": "6",
              "rows_examined_per_scan": 4,
              "rows_produced_per_join": 3,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "1.05",
                "eval_cost": "0.60",
                "prefix_cost": "1.65",
                "data_read_per_join": "48"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`products_categories`.`category_id` = 172) and (`atulecarter_atul_demo1`.`products_categories`.`product_id` <> 212))"
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status",
                "idx_parent_product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "17.03",
              "cost_info": {
                "read_cost": "3.00",
                "eval_cost": "0.10",
                "prefix_cost": "5.25",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "amount",
                "usergroup_ids",
                "tracking",
                "parent_product_id"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`products`.`parent_product_id` = 0) and ((`atulecarter_atul_demo1`.`products`.`amount` > 0) or (`atulecarter_atul_demo1`.`products`.`tracking` = 'D')) and ((`atulecarter_atul_demo1`.`products`.`usergroup_ids` = '') or find_in_set(0,`atulecarter_atul_demo1`.`products`.`usergroup_ids`) or find_in_set(1,`atulecarter_atul_demo1`.`products`.`usergroup_ids`)) and (`atulecarter_atul_demo1`.`products`.`status` = 'A') and (`atulecarter_atul_demo1`.`products`.`company_id` in ('1','2','3','4','5','6')) and (`atulecarter_atul_demo1`.`products`.`product_type` <> 'D'))"
            }
          },
          {
            "table": {
              "table_name": "companies",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "ref": [
                "atulecarter_atul_demo1.products.company_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "16.67",
              "cost_info": {
                "read_cost": "0.51",
                "eval_cost": "0.02",
                "prefix_cost": "5.87",
                "data_read_per_join": "613"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ],
              "attached_condition": "(`atulecarter_atul_demo1`.`companies`.`status` = 'A')"
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "usergroup",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 0,
              "filtered": "29.30",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.09",
                "eval_cost": "0.01",
                "prefix_cost": "6.01",
                "data_read_per_join": "1"
              },
              "used_columns": [
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`prices`.`lower_limit` = 1) and (`atulecarter_atul_demo1`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.07",
                "eval_cost": "0.01",
                "prefix_cost": "6.10",
                "data_read_per_join": "349"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product",
                "full_description"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name product_type parent_product_id full_description
211 HP Officejet Pro 8600 Premium e-All-in-One Printer CS-Cart P 0 <p>&nbsp;</p> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px; padding-bottom: 10px;">View apps on our Officejet Pro 8600A Premium e-All-in-One's large touchscreen. Get networking and versatile performance; get professional-color documents for a cost per page of up to 50% lower than with laser printers.<sup style="font-size: 0.8em;">1</sup>You can even print from a mobile device via HP<a class="udrline" style="color: #003366; text-decoration: underline;" href="http://www.hp.com/go/eprintbanner" target="_blank">ePrint</a>.<sup style="font-size: 0.8em;">2</sup></div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Professional color, economical price</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Get great-looking color</strong>for a cost per page of up to 50% lower than with lasers, and get better value with frequent printing<sup style="font-size: 0.8em;">3</sup></li> <li><strong>Resist fading,</strong>water and highlighter-pen smears when using HP Officejet inks<sup style="font-size: 0.8em;">4, 5</sup></li> <li><strong>Print at ISO speeds up to 20 ppm black</strong>and 16 color when using our affordable individual inks<sup style="font-size: 0.8em;">6</sup></li> <li><strong>Rely on the 25,000-page</strong>monthly<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">duty cycle</a></li> </ul> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Web connectivity and mobile printing</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Print from virtually anywhere,</strong>and from a variety of mobile devices, using HP ePrint</li> <li><strong>Use the large touchscreen</strong>with gesturing to access business apps, plus print and store files</li> <li><strong>View and print photos</strong>from a USB drive and<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">memory cards</a></li> <li><strong>Stay connected</strong>&mdash;share on a wireless or wired network<sup style="font-size: 0.8em;">7</sup></li> </ul> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Versatile for copying and scanning</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Make flawless copies</strong>with the CopySmart feature</li> <li><strong>Print a one-sided copy</strong>of a two-sided ID card</li> <li><strong>Automatically print, copy, and scan</strong>on both sides of the page</li> <li><strong>Get more done</strong>with the 50-page<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">automatic document feeder</a></li> <li><strong>Improve workflow</strong>&mdash;send faxes, scan documents to a PC or e-mail, and more</li> <li><strong>Create borderless, double-sided flyers</strong>and brochures, plus print impressive business photos</li> <li><strong>Use original HP ink</strong>for quality, reliability and rewards<sup style="font-size: 0.8em;">8</sup></li> </ul> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Energy and resource saver</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Reduce energy use</strong>by up to 50% compared with laser printers with this ENERGY STAR<sup style="font-size: 0.8em;">&reg;</sup>qualified printer<sup style="font-size: 0.8em;">9</sup>and preset on/off times</li> <li><strong>Use up to 70% less in supplies</strong>and packaging by weight, compared with laser printers<sup style="font-size: 0.8em;">10</sup></li> <li><strong>Automatically print two-sided</strong>with the<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">automatic document feeder</a>; cut your paper use in half</li> <li><strong>Recycle</strong>your cartridges&mdash;it's free and easy<sup style="font-size: 0.8em;">11</sup></li> </ul> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Peace of mind</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Protect your investment</strong>with World-class service and support. One-year limited hardware warranty, 24-hour, 7 days a week Web support, business hour phone support within warranty period.</li> </ul> </div> <div class="p10" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding: 10px;"> <p class="tinygray" style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; color: #666666; font-size: 10px;"><span style="font-size: small; color: #000000;">What's in the box?</span></p> </div> <div class="p10" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding: 10px;"> <p class="fl mt10 mr10" style="margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; float: left;"><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" longdesc="http://www.shopping.hp.com/product/printer/Officejet+Pro/1/storefronts/CN577A%2523B1H" src="http://hpshopping.speedera.net/s7d2.scene7.com/is/image/HPShopping/full3_fmt/cn577a_main.jpg" border="0" alt="HP Officejet Pro 8600 Premium e-All-in-One Printer" width="150" height="100" /></p> </div> <p>&nbsp;</p> <table border="0" cellspacing="0" cellpadding="0" width="100%"> <tbody> <tr> <td width="10" valign="top">&bull;</td> <td>Printer</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Automatic two-sided printing accessory</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Second 250 sheet input tray</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>HP 950 Setup Black Officejet Ink Cartridge (~ 1,000 pages)</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>HP 951 Setup Cyan Officejet Ink Cartridge</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>HP 951 Setup Magenta Officejet Ink Cartridge</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>HP 951 Setup Yellow Officejet Ink Cartridge: composite yield (~ 700 pages),</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Second set of color cartridges</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Power cord</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Phone cord</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Set-up poster</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Getting started guide</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>In-house marketing kit</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>CDs with software, Windows and Mac printer drivers, user guide</td> </tr> </tbody> </table> <p>&nbsp;</p> <div class="p10" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; margin-top: 10px; padding: 10px;"> <h2 class="theme_ruled" style="font-size: small; margin-bottom: 0px; margin-top: 1px; border-bottom-width: 4px; border-bottom-style: solid; padding-bottom: 1px; border-color: #000000;">Compatible with</h2> <p class="fl mt10 mr10" style="margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; float: left;"><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/logos/icon_windows_compatible.gif" alt="Windows compatible" width="20" height="15" /><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/logos/icon_compatible_mac.gif" alt="Mac compatible" width="20" height="15" /></p> </div> <p>&nbsp;</p>
210 HP Photosmart Plus e-All-in-One Printer - B210a CS-Cart P 0 <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px; padding-bottom: 10px;">Touch your way to easy, affordable printing with our Photosmart Plus e-All-in-One &ndash; B210a. You'll get affordable lab-quality photos, everyday documents, creative projects, and Web pages. Plus, HP<a class="udrline" style="color: #003366; text-decoration: underline;" href="http://www.hp.com/go/eprintbanner" target="_blank">ePrint</a><sup style="font-size: 0.8em;">1</sup>and<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">integrated wireless</a>will keep you connected on the go.<sup style="font-size: 0.8em;">1, 2</sup></div> <div class="fl" style="float: left; color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px;"><img style="border-style: initial; border-color: initial; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/overview/cn216a_right_facing.jpg" alt="HP Photosmart Plus e-All-in-One - B210a, right facing image" /></p> </div> <div class="col59pctL" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-bottom: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Easy and affordable</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Print photos and documents,</strong>make copies, and scan&mdash;all without turning on your PC</li> <li><strong>Get lab-quality,</strong>smudge-resistant photos that last<sup style="font-size: 0.8em;">3</sup></li> <li><strong>Use the automatic photo tray</strong>tray for easy picture printing</li> <li>Share photos with friends<sup style="font-size: 0.8em;">4</sup>via Snapfish</li> <li><strong>Have fun</strong>with photos using the included software</li> <li><strong>Print affordably</strong>with individual HP inks; save money with our high-capacity XL cartridges (sold separately) for frequent printing</li> <li><strong>Get templates</strong>for calendars and games with HP<a class="udrline" style="color: #003366; text-decoration: underline;" href="http://h71036.www7.hp.com/hho/us/en/ep/articles/quick-forms.html" target="_blank">Quick Forms</a><sup style="font-size: 0.8em;">4</sup></li> </ul> </div> <div class="fl" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-bottom: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Quick Web printing, no PC</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Print from the Web without a PC</strong>&mdash;photos, coupons, recipes, greeting cards and more with customizable<a class="udrline" style="color: #003366; text-decoration: underline;" href="http://www.hp.com/go/eprintcenter" target="_blank">print apps</a><sup style="font-size: 0.8em;">4</sup></li> <li><strong>Use the intuitive</strong>TouchSmart screen to make copies, photo reprints, and scans</li> <li><strong>Print and share</strong>from multiple PCs via the<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">integrated wireless</a><sup style="font-size: 0.8em;">2</sup></li> <li><strong>Just touch a button</strong>to print wirelessly<sup style="font-size: 0.8em;">5</sup></li> <li><strong>Print wirelessly</strong>from a smartphone with our<a class="udrline" style="color: #003366; text-decoration: underline;" href="http://www.hp.com/go/mobile-printing-solutions" target="_blank">mobile printing apps</a><sup style="font-size: 0.8em;">6</sup></li> </ul> </div> <div class="fr" style="float: right; color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-bottom: 10px;"> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px;"><img style="border-style: initial; border-color: initial; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/overview/cn216a_top_view.jpg" alt="HP Photosmart Plus e-All-in-One - B210a, top view image" /></p> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">If you can e-mail it, you can print it</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Print directly</strong>to your HP printer using a smartphone, laptop, or other mobile device with HP ePrint</li> <li><strong>Print from your iPad, iPhone, or iPod touch</strong><sup style="font-size: 0.8em;">7</sup>wirelessly with<a class="udrline" style="color: #003366; text-decoration: underline;" href="http://www.hp.com/go/airprint" target="_blank">AirPrint</a></li> </ul> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Helping conserve resources</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Save energy</strong>with this efficient, ENERGY STAR<sup style="font-size: 0.8em;">&reg;</sup>qualified machine</li> <li><strong>Recycle:</strong>return your cartridges via our Planet Partners program<sup style="font-size: 0.8em;">8</sup></li> </ul> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Peace of mind</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Protect your investment</strong>with the one-year limited warranty plus and one year of toll-free tech support</li> <li><strong>Get product questions answered</strong>toll-free, 24 x 7, or via e-mail in as little time as an hour</li> <li><strong>Get exclusive offers</strong>and discounts on supplies, shop from your own supplies list, and get free next-day shipping with "My Print Rewards"</li> </ul> </div> <div class="p10" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding: 10px;"> <h2 class="theme_ruled" style="font-size: small; margin-bottom: 0px; margin-top: 1px; border-bottom-width: 4px; border-bottom-style: solid; padding-bottom: 1px; border-color: #000000;">What's in the box?</h2> <p class="fl mt10 mr10" style="margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; float: left;"><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" longdesc="http://www.shopping.hp.com/product/printer/Photosmart/1/storefronts/CN216A%2523B1H" src="http://hpshopping.speedera.net/s7d2.scene7.com/is/image/HPShopping/full3_fmt/cn216a_main.jpg" border="0" alt="HP Photosmart Plus e-All-in-One Printer - B210a" width="150" height="100" /></p> </div> <p>&nbsp;</p> <table border="0" cellspacing="0" cellpadding="0" width="100%"> <tbody> <tr> <td width="10" valign="top">&bull;</td> <td>Printer</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Power supply</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Power cord</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Accessory bag</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>HP 564 black cartridge (approx. 250 pages)</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>HP 564 cyan, magenta, yellow cartridge (approx. 300 pages each)</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>CD with software</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Reference guide</td> </tr> </tbody> </table> <p>&nbsp;</p> <div class="p10" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; margin-top: 10px; padding: 10px;"> <h2 class="theme_ruled" style="font-size: small; margin-bottom: 0px; margin-top: 1px; border-bottom-width: 4px; border-bottom-style: solid; padding-bottom: 1px; border-color: #000000;">Compatible with</h2> <p class="fl mt10 mr10" style="margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; float: left;"><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/logos/icon_windows_compatible.gif" alt="Windows compatible" width="20" height="15" /><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/logos/icon_compatible_mac.gif" alt="Mac compatible" width="20" height="15" /></p> </div> <p>&nbsp;</p>
209 HP Scanjet G3110 Scanner CS-Cart P 0 <p>&nbsp;</p> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px; padding-bottom: 10px;">Make your photos, documents, slides, and negatives all look great by scanning them at 4800 x 9600<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">dpi</a>resolution<sup style="font-size: 0.8em;">1</sup>. Our Scanjet G3110 Photo Scanner comes with software that removes red eye, removes dust and scratches, and restores vibrant color to your old, faded images.</div> <div class="fl" style="float: left; color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff;"> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px;"><img style="border-style: initial; border-color: initial; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/overview/l2698a_open_left.jpg" alt="Top surface with slides" /></p> </div> <div class="col59pctL" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-bottom: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Excellent quality, affordable price</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Get great scans</strong>of black-and-white and color photos with the 4800 x 9600<a class="dotline" style="color: #003366; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #003366; cursor: default;">dpi</a>and 48-bit color</li> <li><strong>Remove red eye</strong>from scanned photos</li> <li><strong>Bring out the detail</strong>in dark photos, plus restore faded colors</li> <li><strong>Correct most flaws</strong>and scratches from damaged photos</li> </ul> </div> <div class="fl" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-bottom: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Versatile flatbed design</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Scan four 35 mm slides,</strong>five negatives, or three 4 x 6" photos at once, then save to separate files</li> <li><strong>Archive important records</strong>and documents: the G3110 scans sizes up to 8.5 x 11"</li> <li><strong>Get realistic</strong>scans of 3-D items, capturing more detail and depth (ideal for photos for on-line auctions)</li> <li><strong>Create word-processing files</strong>and PDFs from scanned documents with the included optical character recognition software</li> <li><strong>Scan directly to e-mail</strong>for quick and easy sharing</li> <li><strong>Print copies</strong>of scanned documents using a one-touch button and default printer</li> </ul> </div> <div class="fr" style="float: right; color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-bottom: 10px;"> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px;"><img style="border-style: initial; border-color: initial; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/overview/l2698a_portsview_right.jpg" alt="View of side ports" /></p> </div> <div class="fl" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-bottom: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">Fast and easy</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Save time</strong>on common jobs with scan shortcuts</li> <li><strong>Use four one-touch buttons</strong>for common tasks: scan, copy, scan to e-mail, scan to PDF</li> <li><strong>Organize, edit,</strong>print, share, and save scanned photos with the included HP Photosmart Essential Software</li> <li><strong>Connect to a PC</strong>for optimal scan transfer speeds with Hi-Speed USB 2.0</li> </ul> </div> <div class="fr" style="float: right; color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-bottom: 10px;"> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px;"><img style="border-style: initial; border-color: initial; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/overview/l2698a_top_right.jpg" alt="View of top buttons" /></p> </div> <div style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding-left: 10px; padding-right: 10px;"> <h3 class="cb large mb5" style="font-size: 14px; margin-bottom: 5px; margin-top: 1px; clear: both;">First-class warranty and support</h3> <ul style="margin-top: 0px; margin-bottom: 10px; margin-left: 20px; padding: 0px;"> <li><strong>Get peace of mind</strong>with the 90-day limited warranty and toll-free phone support</li> <li><strong>Find answers</strong>to your product questions online, 24 x 7, at our Consumer Support Forum, HP.com/support/consumer-forum</li> </ul> </div> <div class="p10" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; padding: 10px;"> <h2 class="theme_ruled" style="font-size: small; margin-bottom: 0px; margin-top: 1px; border-bottom-width: 4px; border-bottom-style: solid; padding-bottom: 1px; border-color: #000000;">What's in the box?</h2> <p class="fl mt10 mr10" style="margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; float: left;"><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" longdesc="http://www.shopping.hp.com/product/scanner/photo/1/storefronts/L2698A%2523B1H" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/products/l2698a_150.gif" border="0" alt="HP Scanjet G3110 Scanner" width="150" height="100" /></p> </div> <p>&nbsp;</p> <table border="0" cellspacing="0" cellpadding="0" width="100%"> <tbody> <tr> <td width="10" valign="top">&bull;</td> <td>Scanner</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>USB cable</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Power cord and supply</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>CDs with software and instructions</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Set-up poster</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>IRIS registration flyer</td> </tr> <tr> <td width="10" valign="top">&bull;</td> <td>Warranty statement</td> </tr> </tbody> </table> <p>&nbsp;</p> <div class="p10" style="color: #000000; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; background-color: #ffffff; margin-top: 10px; padding: 10px;"> <h2 class="theme_ruled" style="font-size: small; margin-bottom: 0px; margin-top: 1px; border-bottom-width: 4px; border-bottom-style: solid; padding-bottom: 1px; border-color: #000000;">Compatible with</h2> <p class="fl mt10 mr10" style="margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 0px; float: left;"><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/logos/icon_windows_compatible.gif" alt="Windows compatible" width="20" height="15" /><img style="border-style: initial; border-color: initial; display: inline; padding: 0px; margin: 0px;" src="http://hpshopping.speedera.net/www.shopping.hp.com/shopping/images/logos/icon_compatible_mac.gif" alt="Mac compatible" width="20" height="15" /></p> </div> <p>&nbsp;</p>