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 companies.status IN ('A') 
  AND products.company_id = 1 
  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.company_id = 1 
  AND products.parent_product_id = 0 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  product asc, 
  products.product_id ASC 
LIMIT 
  128, 32

Query time 0.00642

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "40.23"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "companies",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "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": "6K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "ALL",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "rows_examined_per_scan": 84,
              "rows_produced_per_join": 3,
              "filtered": "4.00",
              "cost_info": {
                "read_cost": "19.53",
                "eval_cost": "0.67",
                "prefix_cost": "20.20",
                "data_read_per_join": "8K"
              },
              "used_columns": [
                "category_id",
                "storefront_id",
                "usergroup_ids",
                "status"
              ],
              "attached_condition": "(((`pankajecarter_systemfour`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`pankajecarter_systemfour`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`pankajecarter_systemfour`.`cscart_categories`.`usergroup_ids`)) and (`pankajecarter_systemfour`.`cscart_categories`.`status` in ('A','H')) and (`pankajecarter_systemfour`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "pankajecarter_systemfour.cscart_categories.category_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 10,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "3.61",
                "eval_cost": "2.02",
                "prefix_cost": "25.82",
                "data_read_per_join": "161"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "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": [
                "pankajecarter_systemfour.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "7.93",
              "cost_info": {
                "read_cost": "10.08",
                "eval_cost": "0.16",
                "prefix_cost": "37.92",
                "data_read_per_join": "3K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "usergroup_ids",
                "parent_product_id"
              ],
              "attached_condition": "((`pankajecarter_systemfour`.`products`.`parent_product_id` = 0) and (`pankajecarter_systemfour`.`products`.`company_id` = 1) and ((`pankajecarter_systemfour`.`products`.`usergroup_ids` = '') or find_in_set(0,`pankajecarter_systemfour`.`products`.`usergroup_ids`) or find_in_set(1,`pankajecarter_systemfour`.`products`.`usergroup_ids`)) and (`pankajecarter_systemfour`.`products`.`status` = 'A') and (`pankajecarter_systemfour`.`products`.`product_type` <> 'D'))"
            }
          },
          {
            "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": [
                "pankajecarter_systemfour.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.80",
                "eval_cost": "0.16",
                "prefix_cost": "38.88",
                "data_read_per_join": "3K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product",
                "full_description"
              ]
            }
          },
          {
            "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": [
                "pankajecarter_systemfour.products_categories.product_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 2,
              "filtered": "97.92",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.87",
                "eval_cost": "0.47",
                "prefix_cost": "40.23",
                "data_read_per_join": "56"
              },
              "used_columns": [
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`pankajecarter_systemfour`.`prices`.`lower_limit` = 1) and (`pankajecarter_systemfour`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          }
        ]
      }
    }
  }
}

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>
67 HTC Wildfire S - White (T-Mobile) CS-Cart P 0 <p>The HTC Wildfire S for T-Mobile is a 3G capable smartphone that adds style to a practical device. This sleek device runs on the Android&trade; 2.3 platform, so you can have the latest Android&trade; technology and access to thousands of apps. It also features a 3.2 inch capacitive touchscreen, a 5 megapixel camera for capturing important moments and Wi-Fi calling/hotspot capabilities! Weighing only 3.7 ounces, the Wildfire S is extremely portable. If you are looking for a stylish and fun smartphone that is easy to use, the HTC Wildfire S could be the phone for you!</p>
25 HW-D7000 AV Receiver with built-in Blu-ray Disc® Player CS-Cart P 0 <p>Replicate the theater experience in your own home by immersing yourself in 7.2 channel surround sound. You can position the speakers throughout your space to bring your favorite music and movies to life with cinematic sound, transforming your living room into the ultimate home theater.</p>
116 I Am Legend (DVD) (WS) CS-Cart P 0 <p> <p>fficial Website: <a title="http://iamlegend.warnerbros.com/" href="http://iamlegend.warnerbros.com/">http://iamlegend.warnerbros.com/</a></p> <p>Studio: Warner Bros.</p> <p>Theatrical Release Date: 12/13/2007</p> <p>Screen Aspect: 16 X 9 LETTERBOX</p> <p>Special Features:</p> <p>4 awesome animated comics: Death as a gift, Isolation, Sacrificing the Few for the Many and Shelter</p> <p>DVD-ROM PC weblink to intense bonus material databanki chronicling the movie's creation and exploring the history and current status</p> <p>of life-threatening viral infections</p> <p>Packaging Type: Amaray Case</p> <p>Copyright:</p> <p>(c) 2007 A Warner Bros. Entertainment Inc. All Rights Reserved</p> <p>Genre: Action/Adventure, Drama, Horror, Sci-Fi/Fantasy</p> <p>Synopsis:</p> <p>Robert Neville is a brilliant scientist, but even he could not contain the terrible virus that was unstoppable, incurable, and man-made. Somehow immune, Neville is now the last human survivor in what is left of New York City and maybe the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone. Mutant victims of the plague -- The Infected -- lurk in the shadows... watching Neville's every move... waiting for him to make a fatal mistake. Perhaps mankind's last, best hope, Neville is driven by only one remaining mission: to find a way to reverse the effects of the virus using his own immune blood. But he knows he is outnumbered... and quickly running out of time.</p> <p>"I Am Legend is mind-blowing excitement..." Pete Hammond / Maxim</p> </p>
213 Intel® Boxed Intel® Core™ i7-2600 CS-Cart P 0 <div class="proc-spec-title" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 8px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, Tahoma, Helvetica, sans-serif; font-size: 14px; color: #666666; background-color: #ffffff; margin: 0px; border: 0px initial initial;">Intel&reg; Boxed Intel&reg; Core&trade; i7-2600 Processor (8M Cache, 3.40 GHz) FC-LGA10 Desktop Processor Specification</div> <p>&nbsp;</p> <table style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; border-collapse: collapse; width: 100%; color: #666666; font-family: intel-neo-sans-1, intel-neo-sans-2, Tahoma, Helvetica, sans-serif; line-height: 16px; background-color: #ffffff; padding: 0px; margin: 0px; border: 0px initial initial;"> <tbody style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;"> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Processor Model #</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">i7-2600</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Platform Technology</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Desktop</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Cores/Threads</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">4/8</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Clock Speed</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">3.40 GHz</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Socket</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">LGA1155</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Max Turbo Frequency</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">3.80GHz</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">L2 Cache</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">8M</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Front Side Bus</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">N/A</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Max TDP</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">95</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Silicon</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">32nm</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Intel Turbo Boost Technology</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Y</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Intel Hyper Threading Technology</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Y</td> </tr> </tbody> </table>
215 Intel® Core™ i7 processor Extreme Edition 980X – i7-980X CS-Cart P 0 <div class="prod-details-processor-information" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, Tahoma, Helvetica, sans-serif; color: #555555; line-height: 16px; background-color: #ffffff; font-size: medium; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="prod-details-processor-image" style="outline-style: none; outline-width: initial; outline-color: initial; margin-top: 0px; margin-right: 20px; margin-bottom: 20px; border-image: initial; font: inherit; vertical-align: baseline; color: #666666; float: left; font-size: 14px; width: 90px; padding: 0px; border: 0px initial initial;"><img style="outline-style: none; outline-width: initial; outline-color: initial; border-style: initial; border-color: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px;" src="http://www.intel.com/sites/sitewide/pix/badges/core/ci7x_78x59.gif" alt="" /></div> <div class="prod-details-processor-details component" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; color: #666666; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="proc-spec-intelinside" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="proc-spec-title" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 8px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-size: 14px; margin: 0px; border: 0px initial initial;">Intel&reg; Core&trade; i7 processor Extreme Edition 980X &ndash; i7-980X Desktop Processor Specification</div> </div> </div> </div> <p>&nbsp;</p> <table style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; border-collapse: collapse; padding: 0px; margin: 0px; border: 0px initial initial; width: 100%;"> <tbody style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;"> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Processor Model #</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">i7-980X</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Platform Technology</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Desktop</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Cores/Threads</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">6/12</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Clock Speed</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">3.33 GHz</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Socket</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">FCLGA1366</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Max Turbo Frequency</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">3.60GHz</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">L2 Cache</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">12M</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Front Side Bus</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">6.4 GT/s</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Max TDP</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">130</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Silicon</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">32nm</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Intel Turbo Boost Technology</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Y</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Intel Hyper Threading Technology</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Y</td> </tr> </tbody> </table>
226 Intel® Core™ i7 Processor i7-950 CS-Cart P 0 <div class="prod-details-processor-information" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, Tahoma, Helvetica, sans-serif; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="prod-details-processor-image" style="outline-style: none; outline-width: initial; outline-color: initial; margin-top: 0px; margin-right: 20px; margin-bottom: 20px; border-image: initial; font: inherit; vertical-align: baseline; color: #666666; float: left; font-size: 14px; width: 90px; padding: 0px; border: 0px initial initial;"><img style="outline-style: none; outline-width: initial; outline-color: initial; border-style: initial; border-color: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px;" src="http://www.intel.com/sites/sitewide/pix/badges/core/ci7_78x59.gif" alt="" /></div> <div class="prod-details-processor-details component" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; color: #666666; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="proc-spec-intelinside" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="proc-spec-title" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 8px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-size: 14px; color: #666666; background-color: #ffffff; margin: 0px; border: 0px initial initial;">Intel&reg; Core&trade; i7 Processor i7-950 Desktop Processor Specification</div> </div> </div> </div> <table style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; border-collapse: collapse; color: #666666; line-height: 16px; background-color: #ffffff; padding: 0px; margin: 0px; border: 0px initial initial; width: 100%"> <tbody style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;"> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Processor Model #</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">i7-950</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Platform Technology</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Desktop</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Cores/Threads</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">4/8</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Clock Speed</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">3.06 GHz</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Socket</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">FCLGA1366</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Max Turbo Frequency</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">3.33GHz</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">L2 Cache</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">8M</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Front Side Bus</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">4.8 GT/s</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Max TDP</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">130</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Silicon</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">45nm</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Intel Turbo Boost Technology</td> <td class="proc-spec-table-row-odd" style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f2f2f2; margin: 0px; border: 0px initial initial;">Y</td> </tr> <tr style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; height: 21px; padding: 0px; margin: 0px; border: 0px initial initial;"> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Intel Hyper Threading Technology</td> <td style="outline-style: none; outline-width: initial; outline-color: initial; padding-top: 4px; padding-right: 0px; padding-bottom: 4px; padding-left: 0px; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, tahoma, helvetica, sans-serif; font-size: 12px; margin: 0px; border: 0px initial initial;">Y</td> </tr> </tbody> </table> <div class="prod-details-processor-information" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; font-family: intel-neo-sans-1, intel-neo-sans-2, Tahoma, Helvetica, sans-serif; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="prod-details-processor-details component" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; color: #666666; padding: 0px; margin: 0px; border: 0px initial initial;"> <div class="proc-spec-intelinside" style="outline-style: none; outline-width: initial; outline-color: initial; border-image: initial; font: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;"></div> </div> </div>
200 John Rutter - The Colours of Christmas CS-Cart P 0 <p> <p>The Colours of Christmas is a collection of the greatest Christmas carols by the composer/conductor whose music has, for many, been so associated with Christmas. Featuring the Royal Philharmonic Orchestra and The Bach Choir, with guest artists Over the Bridge and conducted by Rutter himself.&nbsp;</p> <p>&nbsp;</p> <p>The Colours of Christmas (track 2 from the album) is a newly composed carol by Rutter for this new album, and is testament to the very best of Rutter&rsquo;s music. Newly orchestrated for this album are the carols Ding Dong! Merrily On High and Hark! The Herald Angels Sing. All recordings on this album are brand new.</p> <p>TRACKLISTING</p> <p>1. Ding Dong! Merrily on High&nbsp;</p> <p>2. The Colours of Christmas&nbsp;</p> <p>3. In Dulci Jubilo&nbsp;</p> <p>4. What is this lovely fragrance?&nbsp;</p> <p>5. Away in a Manger&nbsp;</p> <p>6. Hodie Christus natus est&nbsp;</p> <p>7. Riu riu chiu&nbsp;</p> <p>8. I wonder as I wander&nbsp;</p> <p>9. Star Carol&nbsp;</p> <p>10. Once in Royal David's City&nbsp;</p> <p>11. Silent Night&nbsp;</p> <p>12. In the bleak midwinter&nbsp;</p> <p>13. Gabriel's Message&nbsp;</p> <p>14. Fanfare - O come, all ye faithful&nbsp;</p> <p>15. O Holy Night&nbsp;</p> <p>16. A New Year Carol&nbsp;</p> <p>17. Joy to the World&nbsp;</p> <p>18. Sleigh Ride&nbsp;</p> <p>19. Deck the Hall&nbsp;</p> <p>20. The Christmas Song&nbsp;</p> <p>21. The Twelve Days Of Christmas&nbsp;</p> <p>22. Have yourself a merry little Christmas&nbsp;</p> <p>23. Fanfare - Hark! the herald angels sing</p> </p>
154 JR900 Wireless Headphones CS-Cart P 0 <p>Koss JR900s are the music lover&rsquo;s answer to true stereo and cordless freedom. Operating on one of the highest power bands available on the market, the Koss JR900 headphone system (consisting of a high quality, battery operated RF transmitter with AC adapter) offers the best in wireless audio technology, allowing you to roam freely over a 70,000-square-foot area. From room to room, inside to outside, even in bright sunlight, you can move to your heart&rsquo;s content without the need for additional transmitters or worry of signal breakup.</p>
53 KFC-W3012 CS-Cart P 0 <p>Super-sturdy, super powerful, the KFC-W3012 is a 12-inch, 4-ohm sub that handles an impressive 1200W of power. A truly high-performance sub, the KFC-W3012 has a long stroke design and a silver textured pattern cone woofer that adds strength and rigidity to the cone for maximum bass performance.</p>
52 KFC-W3013PS CS-Cart P 0 <p>1200W Peak Power<br /> 400W RMS Power<br /> 4 ohms Impedance<br /> 34Hz - 300Hz Frequency Response<br /> 6" Mounting Depth<br /> PP Cone with Diamond Array Pattern<br /> Dual-Ventilation System<br /> Rubber Surround</p>
111 Last Samurai, The (DVD) (WS) CS-Cart P 0 <p> <p>Official Website: http://lastsamurai.warnerbros.com/</p> <p>Studio: Warner Bros.</p> <p>Theatrical Release Date: 12/04/2003</p> <p>Screen Aspect: 16 X 9 LETTERBOX</p> <p>Run Time: 154 minutes</p> <p>Special Features:</p> <p>Audio Commentary: Commentary by Edward Zwick</p> <p>Deleted Scenes: The Beheading (Behind the Beheading)</p> <p>&nbsp;</p> <p>Algren and Katsumoto</p> <p>&nbsp;</p> <p>Documentaries: History vs. Hollywood: The Last Samurai {History Channel Documentary)</p> <p>Featurette: Tom Cruise: A Warrior's Journey</p> <p>&nbsp;</p> <p>Edward Zwick: Director's Video Journal {Behind-the-scenes production journal - narrated by Ed Zwick and Tom Cruise</p> <p>&nbsp;</p> <p>A World of Detail: Production Design with Lilly Kilvert</p> <p>&nbsp;</p> <p>Silk and Armor: Costume Design with Ngila Dickson</p> <p>&nbsp;</p> <p>Imperial Army Basic Training: From Soldier to Samurai: The Weapons</p> <p>&nbsp;</p> <p>&nbsp;</p> <p>Interviews: Making an Epic: A Conversation with Edward Zwick</p> <p>Other: Japan Premieres {Tokyo &amp; Kyoto red carpet)</p> <p>Packaging Type: Eco Amaray Case</p> <p>Subtitle Languages:</p> <p>English</p> <p>French</p> <p>Spanish</p> <p>Copyright:</p> <p>&copy; 2003 Warner Bros. Entertainment Inc. All Rights Reserved.</p> <p>Genre: Action/Adventure, Drama, Period, War, WESTERN</p> <p>Synopsis:</p> <p>Epic Action Drama. Set in Japan during the 1870s, The Last Samurai tells the story of Capt. Nathan Algren (Tom Cruise), a respected American military officer hired by the Emperor of Japan to train the country's first army in the art of modern warfare. As the Emperor attempts to eradicate the ancient Imperial Samurai warriors in preparation for more Westernized and trade-friendly government policies, Algren finds himself unexpectedly impressed and influenced by his encounters with the Samurai, which places him at the center of a struggle between two eras and two worlds, with only his own sense of honor to guide him.</p> <p>"Two Thumbs Up" - EBERT &amp; ROEPER&nbsp;</p> <p>&nbsp;</p> <p>"A stunning beautiful epic adventure" - ROGER EBERT / EBERT &amp; ROEPER&nbsp;</p> <p>&nbsp;</p> <p>"It's a spectacular epic. Tom Cruise is truly magnificent. - PAUL CLINTON / CNN&nbsp;</p> <p>&nbsp;</p> <p>"Ken Watanabe is magnetic and majestic." - LISA SCHWARZBAUM / ENTERTAINMENT WEEKLY&nbsp;</p> <p>&nbsp;</p> <p>"The Last Samurai is a movie that demands our surrender" - RICHARD SCHICKEL / TIME&nbsp;</p> <p>&nbsp;</p> <p>"Bold and daring. The battle scenes are astonishing!" - JEFFREY LYONS / NBC&nbsp;</p> <p>&nbsp;</p> <p>"The Last Samurai' is a transfixing, majestic experience." - GENE SHAL</p> </p>
82 Legend of the Guardians: the Owls of Ga'hoole(VG) CS-Cart P 0 <ul class="desc_details" style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 11px; font-family: Verdana, Helvetica, Arial, sans-serif; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #ffffff; line-height: 11px; padding: 0px; border: 0px initial initial;"><li style="padding-bottom: 5px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; line-height: 15px; clear: left; margin: 0px; border: 0px initial initial;"><span style="color: #000000;"><strong>Studio:</strong> Warner Home Video</span></li> <li style="padding-bottom: 5px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; line-height: 15px; clear: left; margin: 0px; border: 0px initial initial;"><span style="color: #000000;"><strong>Theatrical Release Date: </strong>09/23/2010</span></li> <li style="padding-bottom: 5px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; line-height: 15px; clear: left; margin: 0px; border: 0px initial initial;"><span style="color: #000000;"><strong>Packaging Type:</strong> Wii</span></li> <li style="padding-bottom: 5px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; line-height: 15px; clear: left; margin: 0px; border: 0px initial initial;"><span style="color: #000000;"><strong>Genre:</strong> Action/Adventure</span></li> <li style="padding-bottom: 5px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; line-height: 15px; clear: left; margin: 0px; border: 0px initial initial;"> <ul class="desc_details" style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 11px; font-family: Verdana, Helvetica, Arial, sans-serif; vertical-align: baseline; list-style-position: initial; list-style-image: initial; color: #ffffff; line-height: 11px; padding: 0px; border: 0px initial initial;"> <li style="padding-bottom: 5px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; line-height: 15px; clear: left; margin: 0px; border: 0px initial initial;"><span style="color: #000000; background-color: #ffffff;"><strong style="border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;">Theatrical Release Date:</strong>&nbsp;09/23/2010</span></li> <li style="padding-bottom: 5px; border-image: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-style: inherit; font-family: inherit; vertical-align: baseline; line-height: 15px; clear: left; margin: 0px; border: 0px initial initial;"><span style="color: #000000; background-color: #ffffff;">Ships to U.S. Destinations Only</span></li> </ul> </li> </ul> <p>&nbsp;</p>
84 Lego Batman (Wii) CS-Cart P 0 <p>&nbsp;</p> <p>Studio: Warner Bros.</p> <p>Packaging Type: Wii</p> <p>Copyright:</p> <p>BATMAN and all related characters and elements are trademarks of and &copy; DC Comics. WBIE LOGO, WB SHIELD: &trade; &amp; &copy; Warner Bros. Entertainment Inc. (s08) LEGO, the LEGO logo and the Minifigure are trademarks of the LEGO Group. &copy; 2008 The LEGO Group. All Rights Reserved. LEGO BATMAN: THE VIDEOGAME Software &copy; 2008 TT Games Publishing Ltd. All other trademarks and copyrights are the property of their respective owners. All rights reserved.</p> <p>Genre: Action/Adventure, GAME</p> <p>Synopsis:</p> <p>Cartoon Violence</p> <p>&nbsp;</p> <p>When all the villains in Arkham Asylum team up and break loose, only the dynamic duo is bold enough to take them on to save Gotham City. The fun of LEGO, the drama of Batman and the uniqueness of the combination makes for a comical and exciting adventure in LEGO Batman: The Videogame. Play as Batman and his sidekick Robin as you build, drive, swing and fight your way through Gotham City capturing escaped villains including The Joker, Penguin, Scarecrow and more. Then, jump into the story from the other side and play as Batmans foes! Enjoy the power you wield and battle Batman while spreading chaos throughout the city. There is no rest for the good (or evil!).</p> <p>&nbsp;</p>
228 LG D2342P-PN CS-Cart P 0 <p> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"> <div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">NEXT GENERATION&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">3D MONITOR</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">With lightweight, battery-free glasses, and 3D picture quality that is clearer and brighter, the LG D2342P Cinema 3D monitor brings movie theater 3D effects to your desktop. Experience a new dimension in 3D gaming and enjoy your favorite 2D content converted to NEXT GENERATION 3D MONITOR 3D right in the comfort of your own home. Welcome to the next generation of LG 3D.</p> </div> </div> </div> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"> <div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">LESS COMPLICATED.&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">MORE COMFORTABLE</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">With lightweight, battery-free glasses, and 3D picture quality that is clearer and brighter, the LG D2342P Cinema 3D monitor brings movie theater 3D effects to your desktop. Experience a new dimension in 3D gaming and enjoy your favorite 2D content converted to 3D right in the comfort of your own home. Welcome to the next generation of LG 3D.</p> </div> </div> </div> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"> <div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">CLEARER, BRIGHTER,&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">SHARPER 3D</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">With 3D Effect Mode, LG Cinema 3D technology creates an even brighter and clearer 3D picture with especially calibrated settings optimized for 3D viewing. LG's 3D monitors also produce exceptionally clear and vivid images in 2D. Seeing really is believing.</p> </div> </div></div> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"><div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">BIG FUN.&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">BIG SAVINGS.</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">With 3D Effect Mode, LG Cinema 3D technology creates an even brighter and clearer 3D picture with especially calibrated settings optimized for 3D viewing. LG's 3D monitors also produce exceptionally clear and vivid images in 2D. Seeing really is believing.</p> </div> </div> </div> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"> <div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">MORE&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">IN 3D</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">Need even more 3D content? LG's 2D to 3D conversion function enables the enjoyment of a 3D effect even without original 3D content. See your favorite standard 2D images, games or movies in 3D. Note: 2D to 3D conversion requires install of included software.</p> </div> </div></div> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"><div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">YOU WON'T BELIEVE&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">YOUR EYES</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">LG's SUPER LED Backlighting technology provides a slim profile and delivers amazing brightness, clarity and color detail in both 2D and 3D, as well as greater energy efficiency compared to conventional monitors.</p> </div> </div> </div> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"> <div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">PICTURE&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">QUALITY MATTERS</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">This stunning picture is the reason you wanted HD in the first place. With almost double the pixel resolution, Full HD 1080p gives it superior picture quality over standard HD resolution. You'll see details and colors like never before.</p> </div> </div></div> <div class="bottom-gradient" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px; border-style: initial; border-color: initial; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; background-image: -webkit-linear-gradient(bottom, #f6f6f5, #ffffff 32px); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; border-bottom-style: solid; border-bottom-color: #cccccc; color: #222222; font-family: Arial, Helvetica, sans-serif; line-height: 14px; text-align: left; padding: 0px; margin: 0px;"><div class="text-col narrow" style="margin-top: 15px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 40px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; height: auto; border: 0px initial initial;"> <div class="feature-block feature-block2" style="margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"> <h3 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.5em; margin-left: 0px; border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; font-weight: normal; font-family: BryantLGMedium; text-transform: uppercase; padding: 0px; border: 0px initial initial;">GET&nbsp;<span style="border-image: initial; font-size: 20px; font: inherit; vertical-align: baseline; color: #d80546; padding: 0px; margin: 0px; border: 0px initial initial;">CONNECTED</span></h3> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 12px; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; border-image: initial; font-size: 12px; font: inherit; vertical-align: baseline; border: 0px initial initial;">Get deeper colors, take advantage of full HD and connect 3D devices experience with HDMI connectivity even without a PC. LG CINEMA 3D monitor makes it possible to view 3D content, whether from a game console, blu-ray disc&trade; player, set-top box or another source. Prepare yourself for tomorrow's technology today.</p> </div> </div> </div> </p>
85 Looney Tunes: Acme Arsenal (Wii) CS-Cart P 0 <p>&nbsp;</p> <p>Official Website: <a title="http://looneytunes.warnerbros.com/acmearsenal/" href="http://looneytunes.warnerbros.com/acmearsenal/">http://looneytunes.warnerbros.com/acmearsenal/</a></p> <p>Studio: Warner Home Video</p> <p>Packaging Type: Wii</p> <p>Genre: Action/Adventure</p> <p>Synopsis:</p> <p>Cartoon Violence</p> <p>&nbsp;</p> <p>Tag-team with the Tunes in the fight for their lives! Wield a major arsenal of ACME weapons as the tunes team-up to hunt down the mad scientist, chasing him through exotic locals from the past, present and future. Unite Bugs, Taz, Daffy, Marvin and more in a co-operative "whack-and-smash" romp through time - including online play! Melee and projectile weapons: Each character's weapon/melee skills can power up three times on the fly as you go. Vehicle Based Action: Race a jet scooter across an alien environment or wage battle on top of a giant flying Pterodactyl...the possibilities are endless! Travel to various locations such as Camelot, Ancient Egypt, Mars, the Wild West and more! Top-notch voice talent provides the characters with their classic voices and an authentic Looney Tunes slapstick adventure, while giving their look an updated, next-generation, modern edge.</p> <p>&nbsp;</p>
88 Lord of the Rings: War in the North(PS3) CS-Cart P 0 <p>&nbsp;</p> <p>Studio: Warner Home Video</p> <p>Packaging Type: PS3</p> <p>Genre: Action/Adventure, Racing</p> <p>Synopsis:</p> <p>In The Lord of the Rings: War in the North, players will experience an unrivaled Co-Op based Action/RPG gameplay experience &ndash; banding together on an untold journey to defeat the Dark Lord Sauron&rsquo;s forces and turn the tide in the War of the Ring.</p> <p>&nbsp;</p>
287 Luxury Rooms CS-Cart P 0
315 Luxury Rooms CS-Cart P 0
26 Mac OS X Lion: The Missing Manual CS-Cart P 0 <table style="color: #333333; font-family: Arial, Verdana, Geneva, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;" cellspacing="0" cellpadding="0" width="100%"> <tbody> <tr> <td style="font-size: 12px; font-family: Arial, Verdana, Geneva, Helvetica, sans-serif; color: #333333;"> <div> <div> <p>For a company that promised to "put a pause on new features," Apple sure has been busy-there's barely a feature left untouched in Mac OS X 10.6 "Snow Leopard." There's more speed, more polish, more refinement-but still no manual. Fortunately, David Pogue is back, with the humor and expertise that have made this the #1 bestselling Mac book for eight years straight. You get all the answers with jargon-free introductions to:</p> <p>&nbsp;</p> <ul> <li><strong>Big-ticket changes.</strong>&nbsp;A 64-bit overhaul. Faster everything. A rewritten Finder. Microsoft Exchange compatibility. All-new QuickTime Player. If Apple wrote it, this book covers it.</li> <li><strong>Snow Leopard Spots.</strong>&nbsp;This book demystifies the hundreds of smaller enhancements, too, in all 50 programs that come with the Mac: Safari, Mail, iChat, Preview, Time Machine.</li> <li><strong>Shortcuts.</strong>&nbsp;This must be the tippiest, trickiest Mac book ever written. Undocumented surprises await on every page.</li> <li><strong>Power usage.</strong>&nbsp;Security, networking, build-your-own Services, file sharing with Windows, even Mac OS X's Unix chassis-this one witty, expert guide makes it all crystal clear.</li> </ul> </div> </div> </td> </tr> </tbody> </table>
35 Managing Enterprise Content: A Unified Content Strategy, 2nd Edition CS-Cart P 0 <p> <p style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; padding-top: 0px; padding-bottom: 0px; line-height: 1.5em; color: #000000; font-family: 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff;">We can't just design content for one channel, device or medium anymore; we need to design responsive structured content to reach customers anytime, anywhere, and on any device. And we can't do that until we can define how each element associated with a content object should be effectively written to respond to different customer needs and context of the content as well as changes in display and different capabilities of devices. This book presents a unified content strategy model.<br /><br />A unified content strategy:</p> <ul style="margin-top: 0px; margin-bottom: 1em; margin-left: 1.5em; color: #000000; font-family: 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff; padding: 0px;"> <li style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em;">Identifies customer requirements</li> </ul> <ul style="margin-top: 0px; margin-bottom: 1em; margin-left: 1.5em; color: #000000; font-family: 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff; padding: 0px;"> <li style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em;">Defines structured content models for responsive content</li> </ul> <ul style="margin-top: 0px; margin-bottom: 1em; margin-left: 1.5em; color: #000000; font-family: 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff; padding: 0px;"> <li style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em;">Determines how content will be reused and repurposed across media and devices and how it will adapt to changing customer needs</li> </ul> <ul style="margin-top: 0px; margin-bottom: 1em; margin-left: 1.5em; color: #000000; font-family: 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff; padding: 0px;"> <li style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em;">Identifies the tags (metadata) for retrieval and dynamic delivery</li> </ul> <ul style="margin-top: 0px; margin-bottom: 1em; margin-left: 1.5em; color: #000000; font-family: 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff; padding: 0px;"> <li style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em;">Determines how content should be managed throughout the entire content lifecycle</li> </ul> <ul style="margin-top: 0px; margin-bottom: 1em; margin-left: 1.5em; color: #000000; font-family: 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif; background-color: #ffffff; padding: 0px;"> <li style="margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; line-height: 1.5em;">Defines the governance policies to manage the content from creation to retirement</li> </ul> </p>
47 MARVEL® VS. CAPCOM® 3: FATE OF TWO WORLDS SPECIAL EDITION (PS3) CS-Cart P 0 <p><span style="color: #242424; font-family: Arial, Verdana, Helvetica, sans-serif; text-align: left; background-color: #ffffff; font-size: xx-small; padding: 0px; margin: 0px;">The ultimate "VS." Series was born here!</span></p> <ul style="padding-top: 0px; padding-right: 20px; padding-bottom: 0px; padding-left: 20px; margin-top: 10px; margin-bottom: 20px; margin-left: 0px; list-style-position: initial; list-style-image: initial; color: #242424; font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;"> <li style="padding-top: 2px; padding-bottom: 8px; padding-left: 20px; background-image: url(http://drh.img.digitalriver.com/DRHM/Storefront/Site/capcomus/cm/images/site/bg_bullet.jpg); background-attachment: scroll; background-origin: initial; background-clip: initial; background-color: transparent; background-position: 0% 5px; background-repeat: no-repeat no-repeat; margin: 0px;"><strong style="padding: 0px; margin: 0px;">Innovative graphics and gameplay bring the Marvel&reg; and Capcom universes to life:</strong>Powered by an advanced version of MT Framework, the engine used in Resident Evil&reg; 5 and Lost Planet&reg; 2, Marvel&reg; vs. Capcom&reg; 3 brings beautiful backgrounds and character animations to the forefront</li> <li style="padding-top: 2px; padding-bottom: 8px; padding-left: 20px; background-image: url(http://drh.img.digitalriver.com/DRHM/Storefront/Site/capcomus/cm/images/site/bg_bullet.jpg); background-attachment: scroll; background-origin: initial; background-clip: initial; background-color: transparent; background-position: 0% 5px; background-repeat: no-repeat no-repeat; margin: 0px;"><strong style="padding: 0px; margin: 0px;">Evolved VS. Fighting System:</strong>&nbsp;Wild over-the-top gameplay complete with signature aerial combos, hyper combos and more. The evolved new battle system, the &ldquo;Team Aerial Combo,&rdquo; takes the exciting mind-reading game to a whole new level!</li> <li style="padding-top: 2px; padding-bottom: 8px; padding-left: 20px; background-image: url(http://drh.img.digitalriver.com/DRHM/Storefront/Site/capcomus/cm/images/site/bg_bullet.jpg); background-attachment: scroll; background-origin: initial; background-clip: initial; background-color: transparent; background-position: 0% 5px; background-repeat: no-repeat no-repeat; margin: 0px;"><strong style="padding: 0px; margin: 0px;">3-on-3 Tag Team Fighting:</strong>&nbsp;Players build their own perfect team by assigning unique &ldquo;Assist Attacks&rdquo; for each character and utilize each character&rsquo;s special moves to create their own unique fighting style</li> <li style="padding-top: 2px; padding-bottom: 8px; padding-left: 20px; background-image: url(http://drh.img.digitalriver.com/DRHM/Storefront/Site/capcomus/cm/images/site/bg_bullet.jpg); background-attachment: scroll; background-origin: initial; background-clip: initial; background-color: transparent; background-position: 0% 5px; background-repeat: no-repeat no-repeat; margin: 0px;"><strong style="padding: 0px; margin: 0px;">Simple Mode:</strong>&nbsp;Streamlined button mapping option allows novice players to perform moves like a pro</li> <li style="padding-top: 2px; padding-bottom: 8px; padding-left: 20px; background-image: url(http://drh.img.digitalriver.com/DRHM/Storefront/Site/capcomus/cm/images/site/bg_bullet.jpg); background-attachment: scroll; background-origin: initial; background-clip: initial; background-color: transparent; background-position: 0% 5px; background-repeat: no-repeat no-repeat; margin: 0px;"><strong style="padding: 0px; margin: 0px;">Living Comic Book Art Style:</strong>&nbsp;See the most adored characters from the Capcom and Marvel&reg; universes brought to life in a &ldquo;moving comic&rdquo; style, blurring the boundaries between 2D and 3D graphics</li> <li style="padding-top: 2px; padding-bottom: 8px; padding-left: 20px; background-image: url(http://drh.img.digitalriver.com/DRHM/Storefront/Site/capcomus/cm/images/site/bg_bullet.jpg); background-attachment: scroll; background-origin: initial; background-clip: initial; background-color: transparent; background-position: 0% 5px; background-repeat: no-repeat no-repeat; margin: 0px;"><strong style="padding: 0px; margin: 0px;">New Characters:</strong>&nbsp;Popular returning characters include Spider-Man, Ryu, Wolverine, Morrigan, Iron Man, Hulk, Captain America, Felicia, Chun-Li, Tron Bonne, Magneto and Doctor Doom. Viewtiful Joe will make his debut in the Marvel vs. Capcom franchise.&nbsp;<strong style="padding: 0px; margin: 0px;">New characters joining the playable cast for the first time in fighting game history include Chris Redfield, Thor, Trish, Super-Skrull, Amaterasu, Dormammu, Wesker, X-23, Arthur, Deadpool, Nathan Spencer, M.O.D.O.K. and Dante!</strong></li> </ul> <p>&nbsp;</p>
81 Minnetonka Original Cowhide Driving Moc CS-Cart P 0 <div class="linePadding leadingEquity">Authentic designs. Free-spirited heritage. Shaping the moccasin's place in history since 1946.</div> <div class="linePadding">Leather</div> <ul class="equityBullets firstSet"> <li>&bull; Genuine leather construction </li> <li>&bull; Lace-up front </li> <li>&bull; Long-wearing nub bottom </li> <li>&bull; Cushioned leather insole </li> <li>&bull; Contrast stitching </li> </ul>
107 Montblanc Classic Collection Money Clip CS-Cart P 0 <p>Platinum-plated money clip with black onyx inlay</p>
109 Montblanc Contemporary Collection Key Ring with Montblanc emblem CS-Cart P 0 <p>Stainless steel key ring with brown calf leather</p>
91 Montblanc Nicolas Rieussec Chronograph Automatic CS-Cart P 0 <p>43 mm watch with stainless steel case, Montblanc Calibre MB R200, monopusher chronograph with automatic winding, anthracite-coloured dial with applique hour circle, date display, second time zone with day/night display, chronograph counters with rotating discs.</p>
92 Montblanc TimeWalker Automatic CS-Cart P 0 <p>42 mm stainless steel watch with black dial, red-gold plated hands and numerals, automatic movement, date display, black alligator-skin strap</p>
161 MV800 16.1 Megapixel MultiView Compact Digital Camera CS-Cart P 0 <p>The 3.0" Flip-Out Display lets you take and view great pictures from multiple angles. Easily adjust the LCD from 0 to 180 degrees and make any shot possible. Snap a picture over a crowd or get waist-level candids of kids and pets, or spin the display for perfectly framed self-portraits. Choose from 3 shutter options to comfortably snap pics from any position.</p>
188 NEW Wilson Staff Fifty Elite Yellow Golf Ball CS-Cart P 0 <p>An aggressive core is offset by a responsive cover; Explosive distance is coupled with soft feel; Low driver spin is offset by high greenside spin; Long carry, quick stop</p>
202 New Year's Concert 2011 Diverse Klassik Welser-moest / Wiener Philharmoniker CS-Cart P 0 <p><strong style="color: #333333; font-family: 'Trebuchet MS', serif, Times, 'Times New Roman'; font-size: 12px; line-height: 18px; background-color: #ffffff;">New Year's Concert 2011</strong><br style="color: #333333; font-family: 'Trebuchet MS', serif, Times, 'Times New Roman'; font-size: 12px; line-height: 18px; background-color: #ffffff;" /><span style="color: #333333; font-family: 'Trebuchet MS', serif, Times, 'Times New Roman'; font-size: 12px; line-height: 18px; background-color: #ffffff;">Diverse Klassik</span><br style="color: #333333; font-family: 'Trebuchet MS', serif, Times, 'Times New Roman'; font-size: 12px; line-height: 18px; background-color: #ffffff;" /><span style="color: #333333; font-family: 'Trebuchet MS', serif, Times, 'Times New Roman'; font-size: 12px; line-height: 18px; background-color: #ffffff;">Welser-moest / Wiener Philharmoniker</span></p>