magento_absolute_theme_free - Version 2.0.0

Version Notes

Magento Absolute Theme

Download this release

Release Info

Developer TemplatesMaster
Extension magento_absolute_theme_free
Version 2.0.0
Comparing to
See all releases


Code changes from version 1.8.1 to 2.0.0

Files changed (574) hide show
  1. app/code/community/TM/CatalogConfigurableSwatches/Helper/Data.php +10 -0
  2. app/code/community/TM/CatalogConfigurableSwatches/etc/config.xml +27 -0
  3. app/code/community/TM/Core/Block/Adminhtml/Module/Grid.php +1 -1
  4. app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Tab/Main.php +3 -1
  5. app/code/community/TM/Core/Block/Adminhtml/Support/Edit.php +35 -0
  6. app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Form.php +16 -0
  7. app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Form/Element/Theard.php +39 -0
  8. app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Form/Element/Theard/Content.php +182 -0
  9. app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Tab/Main.php +207 -0
  10. app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Tabs.php +12 -0
  11. app/code/community/TM/Core/Block/Adminhtml/Support/List.php +12 -0
  12. app/code/community/TM/Core/Block/Adminhtml/Support/List/Grid.php +203 -0
  13. app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Field/Size.php +23 -0
  14. app/code/community/TM/Core/Block/Adminhtml/Widget/Form/Element/Wysiwyg.php +47 -0
  15. app/code/community/TM/Core/Block/Adminhtml/Widget/Form/Element/Wysiwyg/Content.php +35 -0
  16. app/code/community/TM/Core/Block/Adminhtml/Widget/Form/Renderer/Wysiwyg.php +13 -0
  17. app/code/community/TM/Core/Helper/Data.php +6 -2
  18. app/code/community/TM/Core/Model/Module.php +1 -1
  19. app/code/community/TM/Core/Model/Module/Upgrade.php +173 -0
  20. app/code/community/TM/Core/Model/Notification/Feed.php +4 -0
  21. app/code/community/TM/Core/Model/Oauth/Client.php +257 -0
  22. app/code/community/TM/Core/Model/Observer.php +37 -0
  23. app/code/community/TM/Core/Model/Resource/Module/MergedCollection.php +7 -1
  24. app/code/community/TM/Core/Model/Resource/Module/RemoteCollection.php +32 -93
  25. app/code/community/TM/Core/Model/Resource/Support/Collection.php +416 -0
  26. app/code/community/TM/Core/controllers/Adminhtml/Tmcore/SupportController.php +282 -0
  27. app/code/community/TM/Core/etc/adminhtml.xml +12 -2
  28. app/code/community/TM/Core/etc/config.xml +27 -4
  29. app/code/community/TM/Core/etc/system.xml +2 -2
  30. app/code/community/TM/Core/sql/tm_core_setup/mysql4-install-1.0.0.php +6 -3
  31. app/code/local/TM/Templatef001/etc/config.xml +11 -2
  32. app/code/local/TM/Templatef001/upgrades/2.0.0.php +262 -0
  33. app/design/adminhtml/default/default/layout/tmcore.xml +61 -0
  34. app/design/adminhtml/default/default/template/tmcore/popup.phtml +13 -0
  35. app/design/adminhtml/default/default/template/tmcore/ticket/edit/form/element/theard/content.phtml +93 -0
  36. app/design/frontend/base/default/layout/tm/configurableswatches.xml +101 -0
  37. app/design/frontend/base/default/template/tm/configurableswatches/catalog/media/js.phtml +20 -0
  38. app/design/frontend/base/default/template/tm/configurableswatches/catalog/product/view/type/configurable/swatch-js.phtml +10 -0
  39. app/design/frontend/default/f001/layout/catalog.xml +0 -422
  40. app/design/frontend/default/f001/layout/newsletter.xml +0 -71
  41. app/design/frontend/default/f001/layout/page.xml +0 -196
  42. app/design/frontend/default/f001/template/catalog/navigation/top.phtml +0 -51
  43. app/design/frontend/default/f001/template/catalog/product/list.phtml +0 -137
  44. app/design/frontend/default/f001/template/catalog/product/new.phtml +0 -61
  45. app/design/frontend/default/f001/template/catalogsearch/form.mini.phtml +0 -43
  46. app/design/frontend/default/f001/template/page/1column.phtml +0 -60
  47. app/design/frontend/default/f001/template/page/2columns-left.phtml +0 -61
  48. app/design/frontend/default/f001/template/page/2columns-right.phtml +0 -61
  49. app/design/frontend/default/f001/template/page/3columns.phtml +0 -64
  50. app/design/frontend/default/f001/template/page/html/footer.phtml +0 -53
  51. app/design/frontend/default/f001/template/page/html/header.phtml +0 -50
  52. app/design/frontend/default/f001/template/page/html/topmenu.phtml +0 -43
  53. app/design/frontend/f001/default/layout/configurableswatches.xml +79 -0
  54. app/design/frontend/f001/default/layout/local.xml +19 -0
  55. app/design/frontend/{default/f001 → f001/default}/locale/en_US/translate.csv +0 -0
  56. app/design/frontend/f001/default/template/catalog/layer/state.phtml +76 -0
  57. app/design/frontend/{default/f001 → f001/default}/template/catalog/navigation/sidebox.phtml +0 -0
  58. app/design/frontend/f001/default/template/catalog/navigation/top.phtml +51 -0
  59. app/design/frontend/{default/f001 → f001/default}/template/catalog/product/featured.phtml +0 -0
  60. app/design/frontend/f001/default/template/catalog/product/list.phtml +192 -0
  61. app/design/frontend/f001/default/template/catalog/product/new.phtml +61 -0
  62. app/design/frontend/f001/default/template/catalog/product/view/media.phtml +80 -0
  63. app/design/frontend/f001/default/template/catalog/product/view/type/options/configurable.phtml +70 -0
  64. app/design/frontend/f001/default/template/catalogsearch/form.mini.phtml +43 -0
  65. app/design/frontend/{default/f001 → f001/default}/template/checkout/cart/header.phtml +0 -0
  66. app/design/frontend/f001/default/template/configurableswatches/catalog/layer/filter/swatches.phtml +75 -0
  67. app/design/frontend/f001/default/template/configurableswatches/catalog/layer/state/swatch.phtml +59 -0
  68. app/design/frontend/f001/default/template/configurableswatches/catalog/media/js.phtml +40 -0
  69. app/design/frontend/f001/default/template/configurableswatches/catalog/product/list/swatches.phtml +77 -0
  70. app/design/frontend/f001/default/template/configurableswatches/catalog/product/view/type/configurable/swatch-js.phtml +31 -0
  71. app/design/frontend/f001/default/template/configurableswatches/catalog/product/view/type/options/configurable/swatches.phtml +86 -0
  72. app/design/frontend/f001/default/template/page/1column.phtml +60 -0
  73. app/design/frontend/f001/default/template/page/2columns-left.phtml +61 -0
  74. app/design/frontend/f001/default/template/page/2columns-right.phtml +61 -0
  75. app/design/frontend/f001/default/template/page/3columns.phtml +64 -0
  76. app/design/frontend/f001/default/template/page/html/footer.phtml +53 -0
  77. app/design/frontend/f001/default/template/page/html/header.phtml +50 -0
  78. app/design/frontend/f001/default/template/page/html/topmenu.phtml +43 -0
  79. app/etc/modules/TM_CatalogConfigurableSwatches.xml +9 -0
  80. app/locale/en_US/TM_Core.csv +48 -0
  81. js/tm/adminhtml/core/window.js +52 -0
  82. package.xml +4 -4
  83. skin/frontend/base/default/tm/configurableswatches/css/swatches.css +182 -0
  84. skin/frontend/base/default/tm/configurableswatches/images/bg_x.png +0 -0
  85. skin/frontend/base/default/tm/configurableswatches/js/app.js +291 -0
  86. skin/frontend/default/f001/css/custom.css +0 -314
  87. skin/frontend/default/f001/css/styles-ie.css +0 -193
  88. skin/frontend/default/f001/css/styles.css +0 -1772
  89. skin/frontend/default/f001/images/button.gif +0 -0
  90. skin/frontend/default/f001_green/css/custom.css +0 -329
  91. skin/frontend/default/f001_green/css/ie8.css +0 -16
  92. skin/frontend/default/f001_green/css/styles-ie.css +0 -193
  93. skin/frontend/default/f001_green/css/styles.css +0 -1772
  94. skin/frontend/default/f001_green/images/Thumbs.db +0 -0
  95. skin/frontend/default/f001_green/images/account_box_bg.gif +0 -0
  96. skin/frontend/default/f001_green/images/account_nav_head_bg.gif +0 -0
  97. skin/frontend/default/f001_green/images/ajax_loader.gif +0 -0
  98. skin/frontend/default/f001_green/images/base_mini_actions_bg.gif +0 -0
  99. skin/frontend/default/f001_green/images/base_mini_bg.gif +0 -0
  100. skin/frontend/default/f001_green/images/base_mini_head_bg.gif +0 -0
  101. skin/frontend/default/f001_green/images/base_mini_tabs_bg.gif +0 -0
  102. skin/frontend/default/f001_green/images/best_selling_tr_even_bg.gif +0 -0
  103. skin/frontend/default/f001_green/images/best_selling_tr_odd_bg.gif +0 -0
  104. skin/frontend/default/f001_green/images/bg_collapse.gif +0 -0
  105. skin/frontend/default/f001_green/images/bg_tierico.gif +0 -0
  106. skin/frontend/default/f001_green/images/bg_tierico1.gif +0 -0
  107. skin/frontend/default/f001_green/images/bkg_account_box.gif +0 -0
  108. skin/frontend/default/f001_green/images/bkg_block-actions.gif +0 -0
  109. skin/frontend/default/f001_green/images/bkg_block-currency.gif +0 -0
  110. skin/frontend/default/f001_green/images/bkg_block-layered-dd.gif +0 -0
  111. skin/frontend/default/f001_green/images/bkg_block-layered-dt.gif +0 -0
  112. skin/frontend/default/f001_green/images/bkg_block-layered-label.gif +0 -0
  113. skin/frontend/default/f001_green/images/bkg_block-layered-li.gif +0 -0
  114. skin/frontend/default/f001_green/images/bkg_block-layered-title.gif +0 -0
  115. skin/frontend/default/f001_green/images/bkg_block-layered1.gif +0 -0
  116. skin/frontend/default/f001_green/images/bkg_block-title-account.gif +0 -0
  117. skin/frontend/default/f001_green/images/bkg_block-title.gif +0 -0
  118. skin/frontend/default/f001_green/images/bkg_checkout.gif +0 -0
  119. skin/frontend/default/f001_green/images/bkg_collapse-gm.gif +0 -0
  120. skin/frontend/default/f001_green/images/bkg_collapse.gif +0 -0
  121. skin/frontend/default/f001_green/images/bkg_divider1.gif +0 -0
  122. skin/frontend/default/f001_green/images/bkg_form-search.gif +0 -0
  123. skin/frontend/default/f001_green/images/bkg_grand-total.gif +0 -0
  124. skin/frontend/default/f001_green/images/bkg_grid.gif +0 -0
  125. skin/frontend/default/f001_green/images/bkg_nav2.gif +0 -0
  126. skin/frontend/default/f001_green/images/bkg_opc-title-off.gif +0 -0
  127. skin/frontend/default/f001_green/images/bkg_pipe1.gif +0 -0
  128. skin/frontend/default/f001_green/images/bkg_pipe2.gif +0 -0
  129. skin/frontend/default/f001_green/images/bkg_pipe3.gif +0 -0
  130. skin/frontend/default/f001_green/images/bkg_product-view.gif +0 -0
  131. skin/frontend/default/f001_green/images/bkg_products-grid3.gif +0 -0
  132. skin/frontend/default/f001_green/images/bkg_rating.gif +0 -0
  133. skin/frontend/default/f001_green/images/bkg_sp-methods.gif +0 -0
  134. skin/frontend/default/f001_green/images/bkg_tfoot.gif +0 -0
  135. skin/frontend/default/f001_green/images/bkg_th-v.gif +0 -0
  136. skin/frontend/default/f001_green/images/bkg_th.gif +0 -0
  137. skin/frontend/default/f001_green/images/btn_edit.gif +0 -0
  138. skin/frontend/default/f001_green/images/btn_gm-close.gif +0 -0
  139. skin/frontend/default/f001_green/images/btn_google_checkout.gif +0 -0
  140. skin/frontend/default/f001_green/images/btn_mini_search.gif +0 -0
  141. skin/frontend/default/f001_green/images/btn_paypal_checkout.gif +0 -0
  142. skin/frontend/default/f001_green/images/btn_place_order.gif +0 -0
  143. skin/frontend/default/f001_green/images/btn_previous.gif +0 -0
  144. skin/frontend/default/f001_green/images/btn_proceed_to_checkout.gif +0 -0
  145. skin/frontend/default/f001_green/images/btn_proceed_to_checkout.png +0 -0
  146. skin/frontend/default/f001_green/images/btn_proceed_to_checkout_bg.gif +0 -0
  147. skin/frontend/default/f001_green/images/btn_proceed_to_checkout_dis.gif +0 -0
  148. skin/frontend/default/f001_green/images/btn_proceed_to_checkout_rad.gif +0 -0
  149. skin/frontend/default/f001_green/images/btn_remove.gif +0 -0
  150. skin/frontend/default/f001_green/images/btn_remove2.gif +0 -0
  151. skin/frontend/default/f001_green/images/btn_search.gif +0 -0
  152. skin/frontend/default/f001_green/images/btn_trash.gif +0 -0
  153. skin/frontend/default/f001_green/images/btn_window_close.gif +0 -0
  154. skin/frontend/default/f001_green/images/button.gif +0 -0
  155. skin/frontend/default/f001_green/images/calendar.gif +0 -0
  156. skin/frontend/default/f001_green/images/catalog/product/placeholder/image.jpg +0 -0
  157. skin/frontend/default/f001_green/images/catalog/product/placeholder/small_image.jpg +0 -0
  158. skin/frontend/default/f001_green/images/catalog/product/placeholder/thumbnail.jpg +0 -0
  159. skin/frontend/default/f001_green/images/chart_remove.gif +0 -0
  160. skin/frontend/default/f001_green/images/checkout_progress_corner.gif +0 -0
  161. skin/frontend/default/f001_green/images/close.gif +0 -0
  162. skin/frontend/default/f001_green/images/common.gif +0 -0
  163. skin/frontend/default/f001_green/images/container.gif +0 -0
  164. skin/frontend/default/f001_green/images/currency_switcher_bg.gif +0 -0
  165. skin/frontend/default/f001_green/images/customer_reviews_pager_bg.gif +0 -0
  166. skin/frontend/default/f001_green/images/cvv.gif +0 -0
  167. skin/frontend/default/f001_green/images/cvv.jpg +0 -0
  168. skin/frontend/default/f001_green/images/data_table_th_bg.gif +0 -0
  169. skin/frontend/default/f001_green/images/dotted_divider.gif +0 -0
  170. skin/frontend/default/f001_green/images/error_msg_icon.gif +0 -0
  171. skin/frontend/default/f001_green/images/fam_book_open.png +0 -0
  172. skin/frontend/default/f001_green/images/fam_world.png +0 -0
  173. skin/frontend/default/f001_green/images/form_button.gif +0 -0
  174. skin/frontend/default/f001_green/images/form_button_alt.gif +0 -0
  175. skin/frontend/default/f001_green/images/free_shipping_callout.jpg +0 -0
  176. skin/frontend/default/f001_green/images/gift-message-close.gif +0 -0
  177. skin/frontend/default/f001_green/images/gift-message-collapse.gif +0 -0
  178. skin/frontend/default/f001_green/images/gift-message-expand.gif +0 -0
  179. skin/frontend/default/f001_green/images/glider_bg.gif +0 -0
  180. skin/frontend/default/f001_green/images/grid-cal.gif +0 -0
  181. skin/frontend/default/f001_green/images/i_arrow-top.gif +0 -0
  182. skin/frontend/default/f001_green/images/i_asc_arrow.gif +0 -0
  183. skin/frontend/default/f001_green/images/i_asterick.gif +0 -0
  184. skin/frontend/default/f001_green/images/i_availability_only.gif +0 -0
  185. skin/frontend/default/f001_green/images/i_availability_only_arrow.gif +0 -0
  186. skin/frontend/default/f001_green/images/i_block-cart.gif +0 -0
  187. skin/frontend/default/f001_green/images/i_block-currency.gif +0 -0
  188. skin/frontend/default/f001_green/images/i_block-list.gif +0 -0
  189. skin/frontend/default/f001_green/images/i_block-poll.gif +0 -0
  190. skin/frontend/default/f001_green/images/i_block-related.gif +0 -0
  191. skin/frontend/default/f001_green/images/i_block-subscribe.gif +0 -0
  192. skin/frontend/default/f001_green/images/i_block-tags.gif +0 -0
  193. skin/frontend/default/f001_green/images/i_block-viewed.gif +0 -0
  194. skin/frontend/default/f001_green/images/i_block-wishlist.gif +0 -0
  195. skin/frontend/default/f001_green/images/i_cart_infobar.png +0 -0
  196. skin/frontend/default/f001_green/images/i_desc_arrow.gif +0 -0
  197. skin/frontend/default/f001_green/images/i_discount.gif +0 -0
  198. skin/frontend/default/f001_green/images/i_facebook.gif +0 -0
  199. skin/frontend/default/f001_green/images/i_folder-table.gif +0 -0
  200. skin/frontend/default/f001_green/images/i_folder_table.gif +0 -0
  201. skin/frontend/default/f001_green/images/i_lorry.gif +0 -0
  202. skin/frontend/default/f001_green/images/i_ma-info.gif +0 -0
  203. skin/frontend/default/f001_green/images/i_ma-reviews.gif +0 -0
  204. skin/frontend/default/f001_green/images/i_ma-tags.gif +0 -0
  205. skin/frontend/default/f001_green/images/i_ma_info.gif +0 -0
  206. skin/frontend/default/f001_green/images/i_ma_reviews.gif +0 -0
  207. skin/frontend/default/f001_green/images/i_ma_tags.gif +0 -0
  208. skin/frontend/default/f001_green/images/i_msg-error.gif +0 -0
  209. skin/frontend/default/f001_green/images/i_msg-note.gif +0 -0
  210. skin/frontend/default/f001_green/images/i_msg-success.gif +0 -0
  211. skin/frontend/default/f001_green/images/i_newsletter.gif +0 -0
  212. skin/frontend/default/f001_green/images/i_notice.gif +0 -0
  213. skin/frontend/default/f001_green/images/i_opc_back.gif +0 -0
  214. skin/frontend/default/f001_green/images/i_page1.gif +0 -0
  215. skin/frontend/default/f001_green/images/i_page2.gif +0 -0
  216. skin/frontend/default/f001_green/images/i_page_white.gif +0 -0
  217. skin/frontend/default/f001_green/images/i_page_white_text.gif +0 -0
  218. skin/frontend/default/f001_green/images/i_pager-next.gif +0 -0
  219. skin/frontend/default/f001_green/images/i_pager-prev.gif +0 -0
  220. skin/frontend/default/f001_green/images/i_print.gif +0 -0
  221. skin/frontend/default/f001_green/images/i_rss-big.png +0 -0
  222. skin/frontend/default/f001_green/images/i_rss.gif +0 -0
  223. skin/frontend/default/f001_green/images/i_search_criteria.gif +0 -0
  224. skin/frontend/default/f001_green/images/i_shipping.gif +0 -0
  225. skin/frontend/default/f001_green/images/i_special_price.gif +0 -0
  226. skin/frontend/default/f001_green/images/i_tag_add.gif +0 -0
  227. skin/frontend/default/f001_green/images/i_tier.gif +0 -0
  228. skin/frontend/default/f001_green/images/i_twitter.gif +0 -0
  229. skin/frontend/default/f001_green/images/i_twitter_large.gif +0 -0
  230. skin/frontend/default/f001_green/images/i_type_grid.gif +0 -0
  231. skin/frontend/default/f001_green/images/i_type_list.gif +0 -0
  232. skin/frontend/default/f001_green/images/icon_asterick.gif +0 -0
  233. skin/frontend/default/f001_green/images/icon_big_rss.png +0 -0
  234. skin/frontend/default/f001_green/images/icon_cart_item_remove.gif +0 -0
  235. skin/frontend/default/f001_green/images/icon_lorry.gif +0 -0
  236. skin/frontend/default/f001_green/images/icon_ma_info.gif +0 -0
  237. skin/frontend/default/f001_green/images/icon_ma_reviews.gif +0 -0
  238. skin/frontend/default/f001_green/images/icon_ma_tags.gif +0 -0
  239. skin/frontend/default/f001_green/images/icon_opc_back.gif +0 -0
  240. skin/frontend/default/f001_green/images/icon_page_white.gif +0 -0
  241. skin/frontend/default/f001_green/images/icon_page_white_text.gif +0 -0
  242. skin/frontend/default/f001_green/images/icon_rss.gif +0 -0
  243. skin/frontend/default/f001_green/images/icon_special_price.gif +0 -0
  244. skin/frontend/default/f001_green/images/icon_tag_add.gif +0 -0
  245. skin/frontend/default/f001_green/images/icon_world.gif +0 -0
  246. skin/frontend/default/f001_green/images/ie/Thumbs.db +0 -0
  247. skin/frontend/default/f001_green/images/list_remove_btn.gif +0 -0
  248. skin/frontend/default/f001_green/images/listing_type_grid.gif +0 -0
  249. skin/frontend/default/f001_green/images/listing_type_list.gif +0 -0
  250. skin/frontend/default/f001_green/images/magnifier_handle.gif +0 -0
  251. skin/frontend/default/f001_green/images/map_popup_arrow.gif +0 -0
  252. skin/frontend/default/f001_green/images/media/404_callout1.jpg +0 -0
  253. skin/frontend/default/f001_green/images/media/404_callout2.jpg +0 -0
  254. skin/frontend/default/f001_green/images/media/Thumbs.db +0 -0
  255. skin/frontend/default/f001_green/images/media/about_us_img.jpg +0 -0
  256. skin/frontend/default/f001_green/images/media/best_selling_img01.jpg +0 -0
  257. skin/frontend/default/f001_green/images/media/best_selling_img02.jpg +0 -0
  258. skin/frontend/default/f001_green/images/media/best_selling_img03.jpg +0 -0
  259. skin/frontend/default/f001_green/images/media/best_selling_img04.jpg +0 -0
  260. skin/frontend/default/f001_green/images/media/best_selling_img05.jpg +0 -0
  261. skin/frontend/default/f001_green/images/media/best_selling_img06.jpg +0 -0
  262. skin/frontend/default/f001_green/images/media/callout_side1.jpg +0 -0
  263. skin/frontend/default/f001_green/images/media/callout_side2.jpg +0 -0
  264. skin/frontend/default/f001_green/images/media/cell_phone_landing_banner1.jpg +0 -0
  265. skin/frontend/default/f001_green/images/media/col_left_callout.jpg +0 -0
  266. skin/frontend/default/f001_green/images/media/col_right_callout.jpg +0 -0
  267. skin/frontend/default/f001_green/images/media/electronics_cellphones.jpg +0 -0
  268. skin/frontend/default/f001_green/images/media/electronics_digitalcameras.jpg +0 -0
  269. skin/frontend/default/f001_green/images/media/electronics_laptops.jpg +0 -0
  270. skin/frontend/default/f001_green/images/media/furniture_callout_spot.jpg +0 -0
  271. skin/frontend/default/f001_green/images/media/furnitures_bed_room.jpg +0 -0
  272. skin/frontend/default/f001_green/images/media/furnitures_living_room.jpg +0 -0
  273. skin/frontend/default/f001_green/images/media/head_electronics_cellphones.gif +0 -0
  274. skin/frontend/default/f001_green/images/media/head_electronics_digicamera.gif +0 -0
  275. skin/frontend/default/f001_green/images/media/head_electronics_laptops.gif +0 -0
  276. skin/frontend/default/f001_green/images/media/laptop_callout_mid1.jpg +0 -0
  277. skin/frontend/default/f001_green/images/media/laptop_callout_mid2.jpg +0 -0
  278. skin/frontend/default/f001_green/images/media/laptop_callout_mid3.jpg +0 -0
  279. skin/frontend/default/f001_green/images/media/laptop_callout_spot.jpg +0 -0
  280. skin/frontend/default/f001_green/images/media/shirts_landing_banner1.jpg +0 -0
  281. skin/frontend/default/f001_green/images/mini_search_bg.gif +0 -0
  282. skin/frontend/default/f001_green/images/multi_address_box_bg.gif +0 -0
  283. skin/frontend/default/f001_green/images/narrow_by_dd_bg.gif +0 -0
  284. skin/frontend/default/f001_green/images/np_cart_thumb.gif +0 -0
  285. skin/frontend/default/f001_green/images/np_more_img.gif +0 -0
  286. skin/frontend/default/f001_green/images/np_product_main.gif +0 -0
  287. skin/frontend/default/f001_green/images/np_thumb.gif +0 -0
  288. skin/frontend/default/f001_green/images/np_thumb2.gif +0 -0
  289. skin/frontend/default/f001_green/images/opc-ajax-loader.gif +0 -0
  290. skin/frontend/default/f001_green/images/opc_off_head_bg.gif +0 -0
  291. skin/frontend/default/f001_green/images/opc_on_box_bg.gif +0 -0
  292. skin/frontend/default/f001_green/images/page_head_bg.gif +0 -0
  293. skin/frontend/default/f001_green/images/pager_arrow_left.gif +0 -0
  294. skin/frontend/default/f001_green/images/pager_arrow_right.gif +0 -0
  295. skin/frontend/default/f001_green/images/pager_bg.gif +0 -0
  296. skin/frontend/default/f001_green/images/payments.gif +0 -0
  297. skin/frontend/default/f001_green/images/point-con.gif +0 -0
  298. skin/frontend/default/f001_green/images/product_collateral_bg.gif +0 -0
  299. skin/frontend/default/f001_green/images/product_essential_bg.gif +0 -0
  300. skin/frontend/default/f001_green/images/product_info_box_bg.gif +0 -0
  301. skin/frontend/default/f001_green/images/product_rating_blank_star.gif +0 -0
  302. skin/frontend/default/f001_green/images/product_rating_full_star.gif +0 -0
  303. skin/frontend/default/f001_green/images/product_zoom_overlay_magnif.gif +0 -0
  304. skin/frontend/default/f001_green/images/saved_head_bg.gif +0 -0
  305. skin/frontend/default/f001_green/images/search_criteria.gif +0 -0
  306. skin/frontend/default/f001_green/images/search_form_button.gif +0 -0
  307. skin/frontend/default/f001_green/images/separator.gif +0 -0
  308. skin/frontend/default/f001_green/images/shipping_method_pointer.gif +0 -0
  309. skin/frontend/default/f001_green/images/slider_bg.gif +0 -0
  310. skin/frontend/default/f001_green/images/slider_btn_zoom_in.gif +0 -0
  311. skin/frontend/default/f001_green/images/slider_btn_zoom_out.gif +0 -0
  312. skin/frontend/default/f001_green/images/slogan.gif +0 -0
  313. skin/frontend/default/f001_green/images/sort_asc_arrow.gif +0 -0
  314. skin/frontend/default/f001_green/images/sort_desc_arrow.gif +0 -0
  315. skin/frontend/default/f001_green/images/spacer.gif +0 -0
  316. skin/frontend/default/f001_green/images/success_msg_icon.gif +0 -0
  317. skin/frontend/default/f001_green/images/validation_advice_bg.gif +0 -0
  318. skin/frontend/default/f001_green/images/xmlconnect/catalog/category/placeholder/image.jpg +0 -0
  319. skin/frontend/default/f001_green/images/xmlconnect/catalog/category/placeholder/small_image.jpg +0 -0
  320. skin/frontend/default/f001_green/images/xmlconnect/catalog/category/placeholder/thumbnail.jpg +0 -0
  321. skin/frontend/default/f001_green/images/xmlconnect/tab_account.png +0 -0
  322. skin/frontend/default/f001_green/images/xmlconnect/tab_cart.png +0 -0
  323. skin/frontend/default/f001_green/images/xmlconnect/tab_home.png +0 -0
  324. skin/frontend/default/f001_green/images/xmlconnect/tab_more.png +0 -0
  325. skin/frontend/default/f001_green/images/xmlconnect/tab_page.png +0 -0
  326. skin/frontend/default/f001_green/images/xmlconnect/tab_search.png +0 -0
  327. skin/frontend/default/f001_green/images/xmlconnect/tab_shop.png +0 -0
  328. skin/frontend/default/f001_green/js/glider.js +0 -190
  329. skin/frontend/default/f001_green/js/productInfo.js +0 -114
  330. skin/frontend/default/f001_green/js/slider.js +0 -89
  331. skin/frontend/default/f001_grey/css/custom.css +0 -329
  332. skin/frontend/default/f001_grey/css/ie8.css +0 -16
  333. skin/frontend/default/f001_grey/css/styles-ie.css +0 -193
  334. skin/frontend/default/f001_grey/css/styles.css +0 -1772
  335. skin/frontend/default/f001_grey/images/Thumbs.db +0 -0
  336. skin/frontend/default/f001_grey/images/account_box_bg.gif +0 -0
  337. skin/frontend/default/f001_grey/images/account_nav_head_bg.gif +0 -0
  338. skin/frontend/default/f001_grey/images/ajax_loader.gif +0 -0
  339. skin/frontend/default/f001_grey/images/base_mini_actions_bg.gif +0 -0
  340. skin/frontend/default/f001_grey/images/base_mini_alt_bg.gif +0 -0
  341. skin/frontend/default/f001_grey/images/base_mini_bg.gif +0 -0
  342. skin/frontend/default/f001_grey/images/base_mini_head_bg.gif +0 -0
  343. skin/frontend/default/f001_grey/images/base_mini_tabs_bg.gif +0 -0
  344. skin/frontend/default/f001_grey/images/best_selling_tr_even_bg.gif +0 -0
  345. skin/frontend/default/f001_grey/images/best_selling_tr_odd_bg.gif +0 -0
  346. skin/frontend/default/f001_grey/images/bg_collapse.gif +0 -0
  347. skin/frontend/default/f001_grey/images/bg_tierico.gif +0 -0
  348. skin/frontend/default/f001_grey/images/bg_tierico1.gif +0 -0
  349. skin/frontend/default/f001_grey/images/bkg_account_box.gif +0 -0
  350. skin/frontend/default/f001_grey/images/bkg_block-actions.gif +0 -0
  351. skin/frontend/default/f001_grey/images/bkg_block-currency.gif +0 -0
  352. skin/frontend/default/f001_grey/images/bkg_block-layered-dd.gif +0 -0
  353. skin/frontend/default/f001_grey/images/bkg_block-layered-dt.gif +0 -0
  354. skin/frontend/default/f001_grey/images/bkg_block-layered-label.gif +0 -0
  355. skin/frontend/default/f001_grey/images/bkg_block-layered-li.gif +0 -0
  356. skin/frontend/default/f001_grey/images/bkg_block-layered-title.gif +0 -0
  357. skin/frontend/default/f001_grey/images/bkg_block-layered1.gif +0 -0
  358. skin/frontend/default/f001_grey/images/bkg_block-title-account.gif +0 -0
  359. skin/frontend/default/f001_grey/images/bkg_block-title.gif +0 -0
  360. skin/frontend/default/f001_grey/images/bkg_checkout.gif +0 -0
  361. skin/frontend/default/f001_grey/images/bkg_collapse-gm.gif +0 -0
  362. skin/frontend/default/f001_grey/images/bkg_collapse.gif +0 -0
  363. skin/frontend/default/f001_grey/images/bkg_divider1.gif +0 -0
  364. skin/frontend/default/f001_grey/images/bkg_form-search.gif +0 -0
  365. skin/frontend/default/f001_grey/images/bkg_grand-total.gif +0 -0
  366. skin/frontend/default/f001_grey/images/bkg_grid.gif +0 -0
  367. skin/frontend/default/f001_grey/images/bkg_nav2.gif +0 -0
  368. skin/frontend/default/f001_grey/images/bkg_opc-title-off.gif +0 -0
  369. skin/frontend/default/f001_grey/images/bkg_pipe1.gif +0 -0
  370. skin/frontend/default/f001_grey/images/bkg_pipe2.gif +0 -0
  371. skin/frontend/default/f001_grey/images/bkg_pipe3.gif +0 -0
  372. skin/frontend/default/f001_grey/images/bkg_product-view.gif +0 -0
  373. skin/frontend/default/f001_grey/images/bkg_products-grid3.gif +0 -0
  374. skin/frontend/default/f001_grey/images/bkg_rating.gif +0 -0
  375. skin/frontend/default/f001_grey/images/bkg_sp-methods.gif +0 -0
  376. skin/frontend/default/f001_grey/images/bkg_tfoot.gif +0 -0
  377. skin/frontend/default/f001_grey/images/bkg_th-v.gif +0 -0
  378. skin/frontend/default/f001_grey/images/bkg_th.gif +0 -0
  379. skin/frontend/default/f001_grey/images/btn_edit.gif +0 -0
  380. skin/frontend/default/f001_grey/images/btn_gm-close.gif +0 -0
  381. skin/frontend/default/f001_grey/images/btn_google_checkout.gif +0 -0
  382. skin/frontend/default/f001_grey/images/btn_mini_search.gif +0 -0
  383. skin/frontend/default/f001_grey/images/btn_paypal_checkout.gif +0 -0
  384. skin/frontend/default/f001_grey/images/btn_place_order.gif +0 -0
  385. skin/frontend/default/f001_grey/images/btn_previous.gif +0 -0
  386. skin/frontend/default/f001_grey/images/btn_proceed_to_checkout.gif +0 -0
  387. skin/frontend/default/f001_grey/images/btn_proceed_to_checkout.png +0 -0
  388. skin/frontend/default/f001_grey/images/btn_proceed_to_checkout_bg.gif +0 -0
  389. skin/frontend/default/f001_grey/images/btn_proceed_to_checkout_dis.gif +0 -0
  390. skin/frontend/default/f001_grey/images/btn_proceed_to_checkout_rad.gif +0 -0
  391. skin/frontend/default/f001_grey/images/btn_remove.gif +0 -0
  392. skin/frontend/default/f001_grey/images/btn_remove2.gif +0 -0
  393. skin/frontend/default/f001_grey/images/btn_search.gif +0 -0
  394. skin/frontend/default/f001_grey/images/btn_trash.gif +0 -0
  395. skin/frontend/default/f001_grey/images/btn_window_close.gif +0 -0
  396. skin/frontend/default/f001_grey/images/button.gif +0 -0
  397. skin/frontend/default/f001_grey/images/calendar.gif +0 -0
  398. skin/frontend/default/f001_grey/images/catalog/product/placeholder/image.jpg +0 -0
  399. skin/frontend/default/f001_grey/images/catalog/product/placeholder/small_image.jpg +0 -0
  400. skin/frontend/default/f001_grey/images/catalog/product/placeholder/thumbnail.jpg +0 -0
  401. skin/frontend/default/f001_grey/images/chart_remove.gif +0 -0
  402. skin/frontend/default/f001_grey/images/checkout_progress_corner.gif +0 -0
  403. skin/frontend/default/f001_grey/images/close.gif +0 -0
  404. skin/frontend/default/f001_grey/images/common.gif +0 -0
  405. skin/frontend/default/f001_grey/images/currency_switcher_bg.gif +0 -0
  406. skin/frontend/default/f001_grey/images/customer_reviews_pager_bg.gif +0 -0
  407. skin/frontend/default/f001_grey/images/cvv.gif +0 -0
  408. skin/frontend/default/f001_grey/images/cvv.jpg +0 -0
  409. skin/frontend/default/f001_grey/images/data_table_th_bg.gif +0 -0
  410. skin/frontend/default/f001_grey/images/dotted_divider.gif +0 -0
  411. skin/frontend/default/f001_grey/images/error_msg_icon.gif +0 -0
  412. skin/frontend/default/f001_grey/images/fam_book_open.png +0 -0
  413. skin/frontend/default/f001_grey/images/fam_world.png +0 -0
  414. skin/frontend/default/f001_grey/images/form_button.gif +0 -0
  415. skin/frontend/default/f001_grey/images/form_button_alt.gif +0 -0
  416. skin/frontend/default/f001_grey/images/free_shipping_callout.jpg +0 -0
  417. skin/frontend/default/f001_grey/images/gift-message-close.gif +0 -0
  418. skin/frontend/default/f001_grey/images/gift-message-collapse.gif +0 -0
  419. skin/frontend/default/f001_grey/images/gift-message-expand.gif +0 -0
  420. skin/frontend/default/f001_grey/images/glider_bg.gif +0 -0
  421. skin/frontend/default/f001_grey/images/grid-cal.gif +0 -0
  422. skin/frontend/default/f001_grey/images/i_arrow-top.gif +0 -0
  423. skin/frontend/default/f001_grey/images/i_asc_arrow.gif +0 -0
  424. skin/frontend/default/f001_grey/images/i_asterick.gif +0 -0
  425. skin/frontend/default/f001_grey/images/i_availability_only.gif +0 -0
  426. skin/frontend/default/f001_grey/images/i_availability_only_arrow.gif +0 -0
  427. skin/frontend/default/f001_grey/images/i_block-cart.gif +0 -0
  428. skin/frontend/default/f001_grey/images/i_block-currency.gif +0 -0
  429. skin/frontend/default/f001_grey/images/i_block-list.gif +0 -0
  430. skin/frontend/default/f001_grey/images/i_block-poll.gif +0 -0
  431. skin/frontend/default/f001_grey/images/i_block-related.gif +0 -0
  432. skin/frontend/default/f001_grey/images/i_block-subscribe.gif +0 -0
  433. skin/frontend/default/f001_grey/images/i_block-tags.gif +0 -0
  434. skin/frontend/default/f001_grey/images/i_block-viewed.gif +0 -0
  435. skin/frontend/default/f001_grey/images/i_block-wishlist.gif +0 -0
  436. skin/frontend/default/f001_grey/images/i_cart_infobar.png +0 -0
  437. skin/frontend/default/f001_grey/images/i_desc_arrow.gif +0 -0
  438. skin/frontend/default/f001_grey/images/i_discount.gif +0 -0
  439. skin/frontend/default/f001_grey/images/i_facebook.gif +0 -0
  440. skin/frontend/default/f001_grey/images/i_folder-table.gif +0 -0
  441. skin/frontend/default/f001_grey/images/i_folder_table.gif +0 -0
  442. skin/frontend/default/f001_grey/images/i_lorry.gif +0 -0
  443. skin/frontend/default/f001_grey/images/i_ma-info.gif +0 -0
  444. skin/frontend/default/f001_grey/images/i_ma-reviews.gif +0 -0
  445. skin/frontend/default/f001_grey/images/i_ma-tags.gif +0 -0
  446. skin/frontend/default/f001_grey/images/i_ma_info.gif +0 -0
  447. skin/frontend/default/f001_grey/images/i_ma_reviews.gif +0 -0
  448. skin/frontend/default/f001_grey/images/i_ma_tags.gif +0 -0
  449. skin/frontend/default/f001_grey/images/i_msg-error.gif +0 -0
  450. skin/frontend/default/f001_grey/images/i_msg-note.gif +0 -0
  451. skin/frontend/default/f001_grey/images/i_msg-success.gif +0 -0
  452. skin/frontend/default/f001_grey/images/i_newsletter.gif +0 -0
  453. skin/frontend/default/f001_grey/images/i_notice.gif +0 -0
  454. skin/frontend/default/f001_grey/images/i_opc_back.gif +0 -0
  455. skin/frontend/default/f001_grey/images/i_page1.gif +0 -0
  456. skin/frontend/default/f001_grey/images/i_page2.gif +0 -0
  457. skin/frontend/default/f001_grey/images/i_page_white.gif +0 -0
  458. skin/frontend/default/f001_grey/images/i_page_white_text.gif +0 -0
  459. skin/frontend/default/f001_grey/images/i_pager-next.gif +0 -0
  460. skin/frontend/default/f001_grey/images/i_pager-prev.gif +0 -0
  461. skin/frontend/default/f001_grey/images/i_print.gif +0 -0
  462. skin/frontend/default/f001_grey/images/i_rss-big.png +0 -0
  463. skin/frontend/default/f001_grey/images/i_rss.gif +0 -0
  464. skin/frontend/default/f001_grey/images/i_search_criteria.gif +0 -0
  465. skin/frontend/default/f001_grey/images/i_shipping.gif +0 -0
  466. skin/frontend/default/f001_grey/images/i_special_price.gif +0 -0
  467. skin/frontend/default/f001_grey/images/i_tag_add.gif +0 -0
  468. skin/frontend/default/f001_grey/images/i_tier.gif +0 -0
  469. skin/frontend/default/f001_grey/images/i_twitter.gif +0 -0
  470. skin/frontend/default/f001_grey/images/i_twitter_large.gif +0 -0
  471. skin/frontend/default/f001_grey/images/i_type_grid.gif +0 -0
  472. skin/frontend/default/f001_grey/images/i_type_list.gif +0 -0
  473. skin/frontend/default/f001_grey/images/icon_asterick.gif +0 -0
  474. skin/frontend/default/f001_grey/images/icon_big_rss.png +0 -0
  475. skin/frontend/default/f001_grey/images/icon_cart_item_remove.gif +0 -0
  476. skin/frontend/default/f001_grey/images/icon_lorry.gif +0 -0
  477. skin/frontend/default/f001_grey/images/icon_ma_info.gif +0 -0
  478. skin/frontend/default/f001_grey/images/icon_ma_reviews.gif +0 -0
  479. skin/frontend/default/f001_grey/images/icon_ma_tags.gif +0 -0
  480. skin/frontend/default/f001_grey/images/icon_opc_back.gif +0 -0
  481. skin/frontend/default/f001_grey/images/icon_page_white.gif +0 -0
  482. skin/frontend/default/f001_grey/images/icon_page_white_text.gif +0 -0
  483. skin/frontend/default/f001_grey/images/icon_rss.gif +0 -0
  484. skin/frontend/default/f001_grey/images/icon_special_price.gif +0 -0
  485. skin/frontend/default/f001_grey/images/icon_tag_add.gif +0 -0
  486. skin/frontend/default/f001_grey/images/icon_world.gif +0 -0
  487. skin/frontend/default/f001_grey/images/ie/Thumbs.db +0 -0
  488. skin/frontend/default/f001_grey/images/ie/container.gif +0 -0
  489. skin/frontend/default/f001_grey/images/list_remove_btn.gif +0 -0
  490. skin/frontend/default/f001_grey/images/listing_type_grid.gif +0 -0
  491. skin/frontend/default/f001_grey/images/listing_type_list.gif +0 -0
  492. skin/frontend/default/f001_grey/images/login_box_bg.gif +0 -0
  493. skin/frontend/default/f001_grey/images/login_box_form_buttons_bg.gif +0 -0
  494. skin/frontend/default/f001_grey/images/magnifier_handle.gif +0 -0
  495. skin/frontend/default/f001_grey/images/map_popup_arrow.gif +0 -0
  496. skin/frontend/default/f001_grey/images/media/404_callout1.jpg +0 -0
  497. skin/frontend/default/f001_grey/images/media/404_callout2.jpg +0 -0
  498. skin/frontend/default/f001_grey/images/media/Thumbs.db +0 -0
  499. skin/frontend/default/f001_grey/images/media/about_us_img.jpg +0 -0
  500. skin/frontend/default/f001_grey/images/media/best_selling_img01.jpg +0 -0
  501. skin/frontend/default/f001_grey/images/media/best_selling_img02.jpg +0 -0
  502. skin/frontend/default/f001_grey/images/media/best_selling_img03.jpg +0 -0
  503. skin/frontend/default/f001_grey/images/media/best_selling_img04.jpg +0 -0
  504. skin/frontend/default/f001_grey/images/media/best_selling_img05.jpg +0 -0
  505. skin/frontend/default/f001_grey/images/media/best_selling_img06.jpg +0 -0
  506. skin/frontend/default/f001_grey/images/media/callout_side1.jpg +0 -0
  507. skin/frontend/default/f001_grey/images/media/callout_side2.jpg +0 -0
  508. skin/frontend/default/f001_grey/images/media/cell_phone_landing_banner1.jpg +0 -0
  509. skin/frontend/default/f001_grey/images/media/col_left_callout.jpg +0 -0
  510. skin/frontend/default/f001_grey/images/media/col_right_callout.jpg +0 -0
  511. skin/frontend/default/f001_grey/images/media/electronics_cellphones.jpg +0 -0
  512. skin/frontend/default/f001_grey/images/media/electronics_digitalcameras.jpg +0 -0
  513. skin/frontend/default/f001_grey/images/media/electronics_laptops.jpg +0 -0
  514. skin/frontend/default/f001_grey/images/media/furniture_callout_spot.jpg +0 -0
  515. skin/frontend/default/f001_grey/images/media/furnitures_bed_room.jpg +0 -0
  516. skin/frontend/default/f001_grey/images/media/furnitures_living_room.jpg +0 -0
  517. skin/frontend/default/f001_grey/images/media/head_electronics_cellphones.gif +0 -0
  518. skin/frontend/default/f001_grey/images/media/head_electronics_digicamera.gif +0 -0
  519. skin/frontend/default/f001_grey/images/media/head_electronics_laptops.gif +0 -0
  520. skin/frontend/default/f001_grey/images/media/laptop_callout_mid1.jpg +0 -0
  521. skin/frontend/default/f001_grey/images/media/laptop_callout_mid2.jpg +0 -0
  522. skin/frontend/default/f001_grey/images/media/laptop_callout_mid3.jpg +0 -0
  523. skin/frontend/default/f001_grey/images/media/laptop_callout_spot.jpg +0 -0
  524. skin/frontend/default/f001_grey/images/media/shirts_landing_banner1.jpg +0 -0
  525. skin/frontend/default/f001_grey/images/mini_search_bg.gif +0 -0
  526. skin/frontend/default/f001_grey/images/multi_address_box_bg.gif +0 -0
  527. skin/frontend/default/f001_grey/images/narrow_by_dd_bg.gif +0 -0
  528. skin/frontend/default/f001_grey/images/np_cart_thumb.gif +0 -0
  529. skin/frontend/default/f001_grey/images/np_more_img.gif +0 -0
  530. skin/frontend/default/f001_grey/images/np_product_main.gif +0 -0
  531. skin/frontend/default/f001_grey/images/np_thumb.gif +0 -0
  532. skin/frontend/default/f001_grey/images/np_thumb2.gif +0 -0
  533. skin/frontend/default/f001_grey/images/opc-ajax-loader.gif +0 -0
  534. skin/frontend/default/f001_grey/images/opc_off_head_bg.gif +0 -0
  535. skin/frontend/default/f001_grey/images/opc_on_box_bg.gif +0 -0
  536. skin/frontend/default/f001_grey/images/page_head_bg.gif +0 -0
  537. skin/frontend/default/f001_grey/images/pager_arrow_left.gif +0 -0
  538. skin/frontend/default/f001_grey/images/pager_arrow_right.gif +0 -0
  539. skin/frontend/default/f001_grey/images/pager_bg.gif +0 -0
  540. skin/frontend/default/f001_grey/images/payments.gif +0 -0
  541. skin/frontend/default/f001_grey/images/point-con.gif +0 -0
  542. skin/frontend/default/f001_grey/images/product_collateral_bg.gif +0 -0
  543. skin/frontend/default/f001_grey/images/product_essential_bg.gif +0 -0
  544. skin/frontend/default/f001_grey/images/product_info_box_bg.gif +0 -0
  545. skin/frontend/default/f001_grey/images/product_rating_blank_star.gif +0 -0
  546. skin/frontend/default/f001_grey/images/product_rating_full_star.gif +0 -0
  547. skin/frontend/default/f001_grey/images/product_zoom_overlay_magnif.gif +0 -0
  548. skin/frontend/default/f001_grey/images/saved_head_bg.gif +0 -0
  549. skin/frontend/default/f001_grey/images/search_criteria.gif +0 -0
  550. skin/frontend/default/f001_grey/images/search_form_button.gif +0 -0
  551. skin/frontend/default/f001_grey/images/separator.gif +0 -0
  552. skin/frontend/default/f001_grey/images/shipping_method_pointer.gif +0 -0
  553. skin/frontend/default/f001_grey/images/slider_bg.gif +0 -0
  554. skin/frontend/default/f001_grey/images/slider_btn_zoom_in.gif +0 -0
  555. skin/frontend/default/f001_grey/images/slider_btn_zoom_out.gif +0 -0
  556. skin/frontend/default/f001_grey/images/sort_asc_arrow.gif +0 -0
  557. skin/frontend/default/f001_grey/images/sort_desc_arrow.gif +0 -0
  558. skin/frontend/default/f001_grey/images/spacer.gif +0 -0
  559. skin/frontend/default/f001_grey/images/success_msg_icon.gif +0 -0
  560. skin/frontend/default/f001_grey/images/validation_advice_bg.gif +0 -0
  561. skin/frontend/default/f001_grey/images/xmlconnect/catalog/category/placeholder/image.jpg +0 -0
  562. skin/frontend/default/f001_grey/images/xmlconnect/catalog/category/placeholder/small_image.jpg +0 -0
  563. skin/frontend/default/f001_grey/images/xmlconnect/catalog/category/placeholder/thumbnail.jpg +0 -0
  564. skin/frontend/default/f001_grey/images/xmlconnect/tab_account.png +0 -0
  565. skin/frontend/default/f001_grey/images/xmlconnect/tab_cart.png +0 -0
  566. skin/frontend/default/f001_grey/images/xmlconnect/tab_home.png +0 -0
  567. skin/frontend/default/f001_grey/images/xmlconnect/tab_more.png +0 -0
  568. skin/frontend/default/f001_grey/images/xmlconnect/tab_page.png +0 -0
  569. skin/frontend/default/f001_grey/images/xmlconnect/tab_search.png +0 -0
  570. skin/frontend/default/f001_grey/images/xmlconnect/tab_shop.png +0 -0
  571. skin/frontend/default/f001_grey/js/glider.js +0 -190
  572. skin/frontend/default/f001_grey/js/productInfo.js +0 -114
  573. skin/frontend/default/f001_grey/js/slider.js +0 -89
  574. skin/frontend/default/f001_orange/css/custom.css +0 -295
app/code/community/TM/CatalogConfigurableSwatches/Helper/Data.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_CatalogConfigurableSwatches_Helper_Data extends Mage_Core_Helper_Abstract
4
+ {
5
+ public function isEnabled()
6
+ {
7
+ return Mage::helper('core')->isModuleOutputEnabled('Mage_ConfigurableSwatches')
8
+ && Mage::getStoreConfigFlag('configswatches/general/enabled');
9
+ }
10
+ }
app/code/community/TM/CatalogConfigurableSwatches/etc/config.xml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <TM_CatalogConfigurableSwatches>
5
+ <version>1.0.0</version>
6
+ </TM_CatalogConfigurableSwatches>
7
+ </modules>
8
+ <global>
9
+ <helpers>
10
+ <catalogconfigurableswatches>
11
+ <class>TM_CatalogConfigurableSwatches_Helper</class>
12
+ </catalogconfigurableswatches>
13
+ </helpers>
14
+ </global>
15
+ <frontend>
16
+ <tm_layout>
17
+ <updates>
18
+ <catalogconfigurableswatches
19
+ module="TM_CatalogConfigurableSwatches"
20
+ condition="catalogconfigurableswatches/isEnabled"
21
+ >
22
+ <file>tm/configurableswatches.xml</file>
23
+ </catalogconfigurableswatches>
24
+ </updates>
25
+ </tm_layout>
26
+ </frontend>
27
+ </config>
app/code/community/TM/Core/Block/Adminhtml/Module/Grid.php CHANGED
@@ -52,7 +52,7 @@ class TM_Core_Block_Adminhtml_Module_Grid extends Mage_Adminhtml_Block_Widget_Gr
52
  ));
53
 
54
  $this->addColumn('actions', array(
55
- 'header' => Mage::helper('adminnotification')->__('Actions'),
56
  'width' => '200px',
57
  'filter' => false,
58
  'sortable' => false,
52
  ));
53
 
54
  $this->addColumn('actions', array(
55
+ 'header' => Mage::helper('tmcore')->__('Actions'),
56
  'width' => '200px',
57
  'filter' => false,
58
  'sortable' => false,
app/code/community/TM/Core/Block/Adminhtml/Module/Manage/Tab/Main.php CHANGED
@@ -80,7 +80,9 @@ class TM_Core_Block_Adminhtml_Module_Manage_Tab_Main
80
  'values' => Mage::getSingleton('adminhtml/system_store')->getStoreValuesForForm(false, true)
81
  ));
82
  $renderer = $this->getLayout()->createBlock('adminhtml/store_switcher_form_renderer_fieldset_element');
83
- $field->setRenderer($renderer);
 
 
84
 
85
  if ($installedStores = $model->getStores()) {
86
  $fieldset->addField('installed_stores_info', 'label', array(
80
  'values' => Mage::getSingleton('adminhtml/system_store')->getStoreValuesForForm(false, true)
81
  ));
82
  $renderer = $this->getLayout()->createBlock('adminhtml/store_switcher_form_renderer_fieldset_element');
83
+ if ($renderer) {
84
+ $field->setRenderer($renderer);
85
+ }
86
 
87
  if ($installedStores = $model->getStores()) {
88
  $fieldset->addField('installed_stores_info', 'label', array(
app/code/community/TM/Core/Block/Adminhtml/Support/Edit.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Support_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ $this->_objectId = 'id';
8
+ $this->_blockGroup = 'tmcore';
9
+ $this->_controller = 'adminhtml_support';
10
+
11
+ parent::__construct();
12
+
13
+ $this->setData('form_action_url', $this->getUrl('*/*/save'));
14
+ // $this->_updateButton('save', 'label', Mage::helper('tmcore')->__('Save'));
15
+ $this->_removeButton('delete');
16
+ }
17
+
18
+ /**
19
+ * Get edit form container header text
20
+ *
21
+ * @return string
22
+ */
23
+ public function getHeaderText()
24
+ {
25
+ $model = Mage::registry('tmcore_support');
26
+ if (!$model->getId()) {
27
+ return Mage::helper('tmcore')->__(
28
+ 'Add New Ticket'
29
+ );
30
+ }
31
+ return Mage::helper('tmcore')->__(
32
+ 'Ticket "%s" (#%s)', $model->getTitle(), $model->getNumber()
33
+ );
34
+ }
35
+ }
app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Form.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Support_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
4
+ {
5
+ protected function _prepareForm()
6
+ {
7
+ $form = new Varien_Data_Form(array(
8
+ 'id' => 'edit_form',
9
+ 'action' => $this->getData('action'),
10
+ 'method' => 'post'
11
+ ));
12
+ $form->setUseContainer(true);
13
+ $this->setForm($form);
14
+ return parent::_prepareForm();
15
+ }
16
+ }
app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Form/Element/Theard.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class TM_Core_Block_Adminhtml_Support_Edit_Form_Element_Theard extends Varien_Data_Form_Element_Abstract
3
+ {
4
+ public function getElementHtml()
5
+ {
6
+ return $this->getContentHtml();
7
+ }
8
+
9
+ /**
10
+ * Prepares content block
11
+ *
12
+ * @return string
13
+ */
14
+ public function getContentHtml()
15
+ {
16
+ // return '--- THEARD --';
17
+ // /* @var $content TM_Helpmate_Block_Adminhtml_Ticket_Edit_Form_Element_Theard_Content */
18
+ // Mage_Adminhtml_Block_Catalog_Product_Helper_Form_Gallery_Content
19
+ $content = Mage::getSingleton('core/layout')
20
+ ->createBlock('tmcore/adminhtml_support_edit_form_element_theard_content');
21
+ //
22
+ $content->setId($this->getHtmlId() . '_content')
23
+ ->setElement($this);
24
+
25
+ return $content->toHtml();
26
+ }
27
+
28
+ public function getLabel()
29
+ {
30
+ return '';
31
+ }
32
+
33
+ public function toHtml()
34
+ {
35
+ return '<tr><td class="value" style="width:200%" colspan="3">' .
36
+ $this->getElementHtml() .
37
+ '</td></tr>';
38
+ }
39
+ }
app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Form/Element/Theard/Content.php ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class TM_Core_Block_Adminhtml_Support_Edit_Form_Element_Theard_Content extends Mage_Adminhtml_Block_Widget
3
+ {
4
+ /**
5
+ *
6
+ * @var TM_Helpmate_Model_Ticket
7
+ */
8
+ protected $_ticket;
9
+
10
+ public function __construct()
11
+ {
12
+ parent::__construct();
13
+ $this->setTemplate('tmcore/ticket/edit/form/element/theard/content.phtml');
14
+
15
+ $this->_ticket = Mage::registry('tmcore_support');
16
+ }
17
+
18
+ /**
19
+ *
20
+ * @return TM_Helpmate_Model_Ticket
21
+ */
22
+ public function getTicket()
23
+ {
24
+ return $this->_ticket;
25
+ }
26
+
27
+ /**
28
+ *
29
+ * @return array()
30
+ */
31
+ public function getTheards()
32
+ {
33
+ return $this->getTicket()->getTheards();
34
+ }
35
+
36
+ /**
37
+ *
38
+ * @param array $theard
39
+ * @return string
40
+ */
41
+ public function getTheardOwnerTitle(array $theard)
42
+ {
43
+ // Zend_Debug::dump($theard);
44
+ if (empty($theard['user_name'])) {
45
+ return 'Your said';
46
+ }
47
+
48
+ return $this->helper('helpmate')->__('%s said (admin)', $theard['user_name']);
49
+ }
50
+
51
+ /**
52
+ *
53
+ * @param array $theard
54
+ * @return string
55
+ */
56
+ public function getTheardCreatedAt(array $theard, $dateType = 'date', $format = 'medium')
57
+ {
58
+ if (!isset($theard['created_at'])) {
59
+ return '';
60
+ }
61
+ if ('date' === $dateType) {
62
+ return $this->helper('core')->formatDate($theard['created_at'], $format);
63
+ }
64
+ return $this->helper('core')->formatTime($theard['created_at'], $format);
65
+ }
66
+
67
+ /**
68
+ *
69
+ * @param array $theard
70
+ * @return string
71
+ */
72
+ public function getTheardModifiedAt(array $theard, $dateType = 'date', $format = 'medium')
73
+ {
74
+ if (!isset($theard['created_at'])) {
75
+ return '';
76
+ }
77
+ if ('date' === $dateType) {
78
+ return $this->helper('core')->formatDate($theard['modified_at'], $format);
79
+ }
80
+ return $this->helper('core')->formatTime($theard['modified_at'], $format);
81
+ }
82
+
83
+ /**
84
+ *
85
+ * @param array $theard
86
+ * @return string
87
+ */
88
+ public function getTheardStatus(array $theard)
89
+ {
90
+ $collection = $this->getTicket()->getStatuses();
91
+ $item = $collection->getItemById($theard['status']);
92
+ return $item ? $item->getName() : '';
93
+ }
94
+
95
+ /**
96
+ *
97
+ * @param array $theard
98
+ * @return string
99
+ */
100
+ public function getTheardDepartment(array $theard)
101
+ {
102
+ $collection = $this->getTicket()->getDepartmets();
103
+ $item = $collection->getItemById($theard['department_id']);
104
+ return $item ? $item->getName() : '';
105
+ }
106
+
107
+ public function getTheardPriority(array $theard)
108
+ {
109
+ $collection = $this->getTicket()->getPriorities();
110
+ $item = $collection->getItemById($theard['priority']);
111
+ return $item ? $item->getName() : '';
112
+ }
113
+
114
+ public function getTheardText(array $theard)
115
+ {
116
+ if (empty($theard['text'])) {
117
+ return '';
118
+ }
119
+
120
+ // if ($isSecure) {
121
+ // return Mage::helper('purify')->purify(nl2br($theard['text']));
122
+ // }
123
+
124
+ $content = $theard['text'];
125
+
126
+ // text/html convert pseudo text/palin
127
+ $tags = array (
128
+ 0 => '~<h[123][^>]+>~si',
129
+ 1 => '~<h[456][^>]+>~si',
130
+ 2 => '~<table[^>]+>~si',
131
+ 3 => '~<tr[^>]+>~si',
132
+ 4 => '~<li[^>]+>~si',
133
+ 5 => '~<br[^>]+>~si',
134
+ 6 => '~<p[^>]+>~si',
135
+ 7 => '~<div[^>]+>~si',
136
+ );
137
+ $content = preg_replace($tags, "\n", $content);
138
+ $content = preg_replace('~</t(d|h)>\s*<t(d|h)[^>]+>~si', ' - ', $content);
139
+ $content = preg_replace('~<[^>]+>~s', '', $content);
140
+ // reducing spaces
141
+ $content = preg_replace('~ +~s', ' ', $content);
142
+ $content = preg_replace('~^\s+~m', '', $content);
143
+ $content = preg_replace('~\s+$~m', '', $content);
144
+ // reducing newlines
145
+ $content = preg_replace('~\n+~s', "\n", $content);
146
+
147
+ $_content = '';
148
+ $isOld = false;
149
+ $content = wordwrap($content, 170, "\n");
150
+ foreach (explode("\n", $content) as $_line) {
151
+ $_isOld = ('>' === $_line[0]) ? true : false;
152
+ if ($_isOld && !$isOld) {
153
+ $isOld = true;
154
+ $_content .= '<span>' . $this->escapeHtml($_line) . "</span><div>";
155
+ continue;
156
+ }
157
+ if (!$_isOld && $isOld) {
158
+ $isOld = false;
159
+ $_content .= "</div>\n";
160
+ }
161
+ $_content .= $this->escapeHtml($_line) . "\n";
162
+ }
163
+ // $content = $this->escapeHtml($content, array('div', 'span', 'hr'));
164
+ return "<pre class=\"theard_content\" style=\"white-space:pre-wrap\">" .
165
+ "<code>" .
166
+ $_content .
167
+ '</code>' .
168
+ '</pre>';
169
+ }
170
+
171
+ public function getTheardFileUrl(array $theard)
172
+ {
173
+ $path = Mage::getBaseUrl('media') . 'helpmate' . DS;
174
+ $files = array_filter(explode(';', $theard['file']));
175
+
176
+ foreach ($files as &$file) {
177
+ $file = $path . $file;
178
+ }
179
+
180
+ return $files;
181
+ }
182
+ }
app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Tab/Main.php ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Support_Edit_Tab_Main
4
+ extends Mage_Adminhtml_Block_Widget_Form
5
+ implements Mage_Adminhtml_Block_Widget_Tab_Interface
6
+ {
7
+ protected function _prepareForm()
8
+ {
9
+ $model = Mage::registry('tmcore_support');
10
+ // Zend_Debug::dump($model->getData());
11
+
12
+ $isNew = !$model->getId();
13
+ // Zend_Debug::dump(__METHOD__);
14
+ $form = new Varien_Data_Form(
15
+ array('id' => 'edit_form', 'action' => $this->getData('action'), 'method' => 'post')
16
+ );
17
+
18
+ $form->setHtmlIdPrefix('module_');
19
+
20
+ $fieldset = $form->addFieldset(
21
+ 'ticket_form',
22
+ array('legend' => Mage::helper('tmcore')->__('Current state'))
23
+ );
24
+
25
+ $fieldset->addField('title', $isNew ? 'text' : 'label', array(
26
+ 'label' => Mage::helper('tmcore')->__('Title'),
27
+ 'required' => $isNew,
28
+ 'name' => 'title'
29
+ ));
30
+
31
+ if (!$isNew) {
32
+ $fieldset->addField('email', 'label', array(
33
+ 'label' => Mage::helper('tmcore')->__('From'),
34
+ 'name' => 'email'
35
+ ));
36
+
37
+
38
+ $fieldset->addField('id', 'hidden', array(
39
+ // 'label' => Mage::helper('tmcore')->__('Id'),
40
+ 'name' => 'id'
41
+ ));
42
+ //
43
+ // $fieldset->addField('number', 'label', array(
44
+ // 'label' => Mage::helper('tmcore')->__('Number'),
45
+ // 'name' => 'number'
46
+ // ));
47
+ }
48
+ $dapertments = array();
49
+ if ($model->getDepartmets() instanceof Varien_Data_Collection) {
50
+ $dapertments = $model->getDepartmets()->toOptionArray();
51
+ }
52
+ $fieldset->addField('department_id', 'select', array(
53
+ 'label' => Mage::helper('tmcore')->__('Department'),
54
+ 'name' => 'department_id',
55
+ 'disabled' => !$isNew,
56
+ 'required' => $isNew,
57
+ 'values' => $dapertments
58
+ ));
59
+ if (!$isNew) {
60
+ $statuses = array();
61
+ if ($model->getStatuses() instanceof Varien_Data_Collection) {
62
+ $statuses = $model->getStatuses()->toOptionArray();
63
+ }
64
+ $fieldset->addField('status', 'select', array(
65
+ 'label' => Mage::helper('tmcore')->__('Status'),
66
+ 'name' => 'status',
67
+ 'disabled' => true,
68
+ // 'disabled' => !$isNew,
69
+ // 'required' => $isNew,
70
+ 'values' => $statuses
71
+ ));
72
+ }
73
+ $priorities = array();
74
+ if ($model->getPriorities() instanceof Varien_Data_Collection) {
75
+ $priorities = $model->getPriorities()->toOptionArray();
76
+ }
77
+ $fieldset->addField('priority', 'select', array(
78
+ 'label' => Mage::helper('tmcore')->__('Priority'),
79
+ 'name' => 'priority',
80
+ 'disabled' => !$isNew,
81
+ 'required' => $isNew,
82
+ 'values' => $priorities
83
+ ));
84
+
85
+ if (!$isNew) {
86
+ $fieldset->addField('created_at', 'date', array(
87
+ 'label' => Mage::helper('tmcore')->__('Create date'),
88
+ // 'required' => true,
89
+ 'disabled' => true,
90
+ 'image' => $this->getSkinUrl('images/grid-cal.gif'),
91
+ 'format' => Varien_Date::DATETIME_INTERNAL_FORMAT,
92
+ //Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT)
93
+ 'name' => 'created_at',
94
+ ));
95
+
96
+ $fieldset->addField('modified_at', 'date', array(
97
+ 'label' => Mage::helper('tmcore')->__('Modified date'),
98
+ // 'required' => true,
99
+ 'disabled' => true,
100
+ 'image' => $this->getSkinUrl('images/grid-cal.gif'),
101
+ 'format' => Varien_Date::DATETIME_INTERNAL_FORMAT,
102
+ //Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT)
103
+ 'name' => 'modified_at',
104
+ ));
105
+ }
106
+ if ($model->getTheards()) {
107
+ $fieldsetTheards = $form->addFieldset(
108
+ 'ticket_theards_form',
109
+ array('legend' => Mage::helper('tmcore')->__('Theards'))
110
+ );
111
+ $fieldsetTheards->addType('support_theard', 'TM_Core_Block_Adminhtml_Support_Edit_Form_Element_Theard');
112
+ $fieldsetTheards->addField('theard', 'support_theard', array(
113
+ 'name' => 'theard'
114
+ ));
115
+ }
116
+
117
+
118
+ if (!$isNew) {
119
+ $fieldsetAddComment = $form->addFieldset(
120
+ 'ticket_add_comment_form',
121
+ array(
122
+ 'legend' => Mage::helper('tmcore')->__('Add Comment')
123
+ )
124
+ );
125
+ } else {
126
+ $fieldsetAddComment = $fieldset;
127
+ }
128
+
129
+ $wysiwygConfig = Mage::getSingleton('cms/wysiwyg_config')->getConfig(array(
130
+ 'tab_id' => $this->getTabId(),
131
+ 'add_variables' => false,
132
+ 'add_widgets' => false,
133
+ 'width' => '100%',
134
+ ));
135
+
136
+ $fieldsetAddComment->addField('text', 'editor', array(
137
+ 'label' => Mage::helper('tmcore')->__('Comment'),
138
+ 'name' => 'text',
139
+ 'config' => $wysiwygConfig,
140
+ 'wysiwyg' => true,
141
+ 'required' => true,
142
+ 'style' => "width: 640px"
143
+ ));
144
+ $fieldsetAddComment->addField('add', 'button', array(
145
+ 'value' => Mage::helper('helpmate')->__($isNew ? 'Save' : 'Add Comment'),
146
+ 'class' => 'form-button',
147
+ 'name' => 'add_comment_button',
148
+ 'onclick' => 'editForm.submit();return false;'
149
+ ));
150
+
151
+ $form->addValues($model->getData());
152
+ $this->setForm($form);
153
+
154
+ return parent::_prepareForm();
155
+ }
156
+
157
+ /**
158
+ * Prepare label for tab
159
+ *
160
+ * @return string
161
+ */
162
+ public function getTabLabel()
163
+ {
164
+ return Mage::helper('cms')->__('Main');
165
+ }
166
+
167
+ /**
168
+ * Prepare title for tab
169
+ *
170
+ * @return string
171
+ */
172
+ public function getTabTitle()
173
+ {
174
+ return Mage::helper('cms')->__('Main');
175
+ }
176
+
177
+ /**
178
+ * Returns status flag about this tab can be shown or not
179
+ *
180
+ * @return true
181
+ */
182
+ public function canShowTab()
183
+ {
184
+ return true;
185
+ }
186
+
187
+ /**
188
+ * Returns status flag about this tab hidden or not
189
+ *
190
+ * @return true
191
+ */
192
+ public function isHidden()
193
+ {
194
+ return false;
195
+ }
196
+
197
+ /**
198
+ * Check permission for passed action
199
+ *
200
+ * @param string $action
201
+ * @return bool
202
+ */
203
+ /*protected function _isAllowedAction($action)
204
+ {
205
+ return Mage::getSingleton('admin/session')->isAllowed('tmcore/module/' . $action);
206
+ }*/
207
+ }
app/code/community/TM/Core/Block/Adminhtml/Support/Edit/Tabs.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Support_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setId('support_tabs');
9
+ $this->setDestElementId('edit_form');
10
+ $this->setTitle(Mage::helper('tmcore')->__('Support Ticket'));
11
+ }
12
+ }
app/code/community/TM/Core/Block/Adminhtml/Support/List.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Support_List extends Mage_Adminhtml_Block_Widget_Grid_Container
4
+ {
5
+ public function __construct()
6
+ {
7
+ $this->_controller = 'adminhtml_support_list';
8
+ $this->_blockGroup = 'tmcore';
9
+ $this->_headerText = Mage::helper('tmcore')->__('Reports');
10
+ parent::__construct();
11
+ }
12
+ }
app/code/community/TM/Core/Block/Adminhtml/Support/List/Grid.php ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Support_List_Grid extends Mage_Adminhtml_Block_Widget_Grid
4
+ {
5
+ public function __construct()
6
+ {
7
+ parent::__construct();
8
+ $this->setId('supportGrid');
9
+ $this->setDefaultSort('modified_at');
10
+ $this->setDefaultDir('ASC');
11
+ $this->setSaveParametersInSession(true);
12
+ }
13
+
14
+ protected function _prepareCollection()
15
+ {
16
+ $collection = Mage::registry('tmcore_support_collection');
17
+ // Zend_Debug::dump($collection->getFirstItem());
18
+ if ($collection instanceof Varien_Data_Collection) {
19
+ $this->setCollection($collection);
20
+ }
21
+
22
+ return parent::_prepareCollection();
23
+ }
24
+
25
+ protected function _prepareColumns()
26
+ {
27
+
28
+ $model = Mage::registry('tmcore_support');
29
+
30
+ $this->addColumn('id', array(
31
+ 'header' => Mage::helper('helpmate')->__('ID'),
32
+ 'align' => 'right',
33
+ 'width' => '50px',
34
+ 'index' => 'id',
35
+ 'type' => 'number',
36
+ // 'filter_condition_callback' => array($this, '_filterId'),
37
+ ));
38
+
39
+ $this->addColumn('text', array(
40
+ 'header' => Mage::helper('helpmate')->__('Title'),
41
+ 'align' => 'left',
42
+ 'index' => 'title',
43
+ // 'filter_condition_callback' => array($this, '_filterTitle'),
44
+ ));
45
+
46
+ $this->addColumn('user_name', array(
47
+ 'header' => Mage::helper('helpmate')->__('Assigned'),
48
+ 'align' => 'left',
49
+ 'index' => 'user_name',
50
+ // 'filter_condition_callback' => array($this, '_filterUserName'),
51
+ ));
52
+
53
+ $dapertments = array();
54
+ if ($model->getDepartmets() instanceof Varien_Data_Collection) {
55
+ $dapertments = $model->getDepartmets()->toOptionHash();
56
+ }
57
+ $this->addColumn('department', array(
58
+ 'header' => Mage::helper('helpmate')->__('Department'),
59
+ 'align' => 'left',
60
+ 'index' => 'department_id',
61
+ 'type' => 'options',
62
+ 'options' => $dapertments,
63
+ // 'filter_condition_callback' => array($this, '_filterDepartamentId'),
64
+ ));
65
+
66
+ $priorities = array();
67
+ if ($model->getPriorities() instanceof Varien_Data_Collection) {
68
+ $priorities = $model->getPriorities()->toOptionHash();
69
+ }
70
+ $this->addColumn('priority', array(
71
+ 'header' => Mage::helper('helpmate')->__('Priority'),
72
+ 'align' => 'left',
73
+ 'width' => '80px',
74
+ 'index' => 'priority',
75
+ 'type' => 'options',
76
+ 'options' => $priorities,
77
+ 'frame_callback' => array($this, 'decorateStatus'),
78
+ // 'filter_condition_callback' => array($this, '_filterPriority'),
79
+ ));
80
+
81
+ $statuses = array();
82
+ if ($model->getStatuses() instanceof Varien_Data_Collection) {
83
+ $statuses = $model->getStatuses()->toOptionHash();
84
+ }
85
+ $this->addColumn('status', array(
86
+ 'header' => Mage::helper('helpmate')->__('Status'),
87
+ 'align' => 'left',
88
+ 'width' => '80px',
89
+ 'index' => 'status',
90
+ 'type' => 'options',
91
+ 'options' => $statuses,
92
+ // 'filter_condition_callback' => array($this, '_filterStatus'),
93
+ ));
94
+
95
+ $this->addColumn('created_at', array(
96
+ 'header' => Mage::helper('helpmate')->__('Created date'),
97
+ 'align' => 'left',
98
+ 'type' => 'datetime',
99
+ 'width' => '100px',
100
+ // 'filter_index' => 'rt.created_at',
101
+ 'index' => 'created_at',
102
+ // 'filter' => false
103
+ ));
104
+
105
+ $this->addColumn('modified_at', array(
106
+ 'header' => Mage::helper('helpmate')->__('Modified date'),
107
+ 'align' => 'left',
108
+ 'type' => 'datetime',
109
+ 'width' => '100px',
110
+ 'index' => 'modified_at',
111
+ // 'filter' => false
112
+ ));
113
+
114
+ $this->addExportType('*/*/exportCsv', Mage::helper('helpmate')->__('CSV'));
115
+ $this->addExportType('*/*/exportXml', Mage::helper('helpmate')->__('XML'));
116
+
117
+ return parent::_prepareColumns();
118
+ }
119
+
120
+ public function getRowUrl($row)
121
+ {
122
+ return $this->getUrl('*/*/edit', array('ticket_id' => $row->getId()));
123
+ }
124
+
125
+ /**
126
+ * Decorate status column values
127
+ *
128
+ * @return string
129
+ */
130
+ public function decorateStatus($value, $row, $column, $isExport)
131
+ {
132
+ $_classes = array('unknown', 'notice', 'minor', 'major', 'critical' , 'critical');
133
+ $_class = isset($_classes[$row->priority]) ? $_classes[$row->priority] : 'unknown';
134
+
135
+ return "<span class=\"grid-severity-{$_class}\"><span>{$value}</span></span>";
136
+ }
137
+
138
+ protected function _filterId($collection, $column)
139
+ {
140
+ $value = $column->getFilter()->getValue();
141
+ // $collection->addFilter('department_id', $value);
142
+ foreach ($collection as $item) {
143
+ if ($item->id < $value['from'] || $item->id > $value['to']) {
144
+ $collection->removeItemByKey($item->id);
145
+ }
146
+ }
147
+ }
148
+
149
+ protected function _filterTitle($collection, $column)
150
+ {
151
+ $value = $column->getFilter()->getValue();
152
+ // $collection->addFilter('department_id', $value);
153
+ foreach ($collection as $item) {
154
+ if (false === strpos($item->title, $value)) {
155
+ $collection->removeItemByKey($item->id);
156
+ }
157
+ }
158
+ }
159
+
160
+ protected function _filterUserName($collection, $column)
161
+ {
162
+ $value = $column->getFilter()->getValue();
163
+ // $collection->addFilter('department_id', $value);
164
+ foreach ($collection as $item) {
165
+ if (false === strpos($item->user_name, $value)) {
166
+ $collection->removeItemByKey($item->id);
167
+ }
168
+ }
169
+ }
170
+
171
+ protected function _filterDepartamentId($collection, $column)
172
+ {
173
+ $value = $column->getFilter()->getValue();
174
+ // $collection->addFilter('department_id', $value);
175
+ foreach ($collection as $item) {
176
+ if ($item->department_id != $value) {
177
+ $collection->removeItemByKey($item->id);
178
+ }
179
+ }
180
+ }
181
+
182
+ protected function _filterPriority($collection, $column)
183
+ {
184
+ $value = $column->getFilter()->getValue();
185
+ // $collection->addFilter('department_id', $value);
186
+ foreach ($collection as $item) {
187
+ if ($item->priority != $value) {
188
+ $collection->removeItemByKey($item->id);
189
+ }
190
+ }
191
+ }
192
+
193
+ protected function _filterStatus($collection, $column)
194
+ {
195
+ $value = $column->getFilter()->getValue();
196
+ // $collection->addFilter('department_id', $value);
197
+ foreach ($collection as $item) {
198
+ if ($item->status != $value) {
199
+ $collection->removeItemByKey($item->id);
200
+ }
201
+ }
202
+ }
203
+ }
app/code/community/TM/Core/Block/Adminhtml/System/Config/Form/Field/Size.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_System_Config_Form_Field_Size
4
+ extends Mage_Adminhtml_Block_System_Config_Form_Field
5
+ {
6
+ protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
7
+ {
8
+ $element->setStyle('width:70px;')
9
+ ->setName($element->getName() . '[]');
10
+
11
+ if ($element->getValue()) {
12
+ $values = explode(',', $element->getValue());
13
+ } else {
14
+ $values = array();
15
+ }
16
+
17
+ $width = $element->setValue(isset($values[0]) ? $values[0] : null)->getElementHtml();
18
+ $height = $element->setValue(isset($values[1]) ? $values[1] : null)->getElementHtml();
19
+ return Mage::helper('sales')->__('Width') . ' ' . $width
20
+ . ' '
21
+ . Mage::helper('sales')->__('Height') . ' ' . $height;
22
+ }
23
+ }
app/code/community/TM/Core/Block/Adminhtml/Widget/Form/Element/Wysiwyg.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Widget_Form_Element_Wysiwyg extends Varien_Data_Form_Element_Textarea
4
+ {
5
+ /**
6
+ * Retrieve additional html and put it at the end of element html
7
+ *
8
+ * @return string
9
+ */
10
+ public function getAfterElementHtml()
11
+ {
12
+ $html = parent::getAfterElementHtml();
13
+ if ($this->getIsWysiwygEnabled()) {
14
+ $disabled = ($this->getDisabled() || $this->getReadonly());
15
+ $html .= Mage::getSingleton('core/layout')
16
+ ->createBlock('adminhtml/widget_button', '', array(
17
+ 'label' => Mage::helper('catalog')->__('WYSIWYG Editor'),
18
+ 'type' => 'button',
19
+ 'disabled' => $disabled,
20
+ 'class' => /*($disabled) ? 'disabled btn-wysiwyg' : */'btn-wysiwyg',
21
+ 'onclick' => 'catalogWysiwygEditor.open(\''.Mage::helper('adminhtml')->getUrl('*/*/wysiwyg').'\', \''.$this->getHtmlId().'\')'
22
+ ))->toHtml();
23
+ }
24
+ return $html;
25
+ }
26
+
27
+ /**
28
+ * Check whether wysiwyg enabled or not
29
+ *
30
+ * @return boolean
31
+ */
32
+ public function getIsWysiwygEnabled()
33
+ {
34
+ $helper = Mage::helper('catalog');
35
+
36
+ if (method_exists($helper, 'isModuleEnabled')) {
37
+ if (Mage::helper('catalog')->isModuleEnabled('Mage_Cms')) {
38
+ return (bool)(Mage::getSingleton('cms/wysiwyg_config')->isEnabled());
39
+ }
40
+ } else {
41
+ return (bool)(Mage::getSingleton('cms/wysiwyg_config')->isEnabled()); // Magento 1401-1420
42
+ }
43
+
44
+ return false;
45
+ }
46
+ }
47
+
app/code/community/TM/Core/Block/Adminhtml/Widget/Form/Element/Wysiwyg/Content.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Widget_Form_Element_Wysiwyg_Content
4
+ extends Mage_Adminhtml_Block_Widget_Form
5
+ {
6
+ /**
7
+ * Modified Mage_Adminhtml_Block_Catalog_Helper_Form_Wysiwyg_Content to allow to use widgets
8
+ *
9
+ * @return Mage_Adminhtml_Block_Catalog_Helper_Form_Wysiwyg_Content
10
+ */
11
+ protected function _prepareForm()
12
+ {
13
+ $form = new Varien_Data_Form(array('id' => 'wysiwyg_edit_form', 'action' => $this->getData('action'), 'method' => 'post'));
14
+
15
+ $config['document_base_url'] = $this->getData('store_media_url');
16
+ $config['store_id'] = $this->getData('store_id');
17
+ $config['add_variables'] = true;
18
+ $config['add_widgets'] = true;
19
+ $config['add_directives'] = true;
20
+ $config['use_container'] = true;
21
+ $config['container_class'] = 'hor-scroll';
22
+ // $config['enabled'] = true;
23
+ // $config['hidden'] = true; // widget popup doesn't works if wysiwyg is visible by default
24
+
25
+ $form->addField($this->getData('editor_element_id'), 'editor', array(
26
+ 'name' => 'content',
27
+ 'style' => 'width:725px;height:460px',
28
+ 'required' => true,
29
+ 'force_load' => true,
30
+ 'config' => Mage::getSingleton('cms/wysiwyg_config')->getConfig($config)
31
+ ));
32
+ $this->setForm($form);
33
+ return parent::_prepareForm();
34
+ }
35
+ }
app/code/community/TM/Core/Block/Adminhtml/Widget/Form/Renderer/Wysiwyg.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Block_Adminhtml_Widget_Form_Renderer_Wysiwyg
4
+ extends Mage_Adminhtml_Block_Widget_Form_Renderer_Fieldset_Element
5
+ {
6
+ public function render(Varien_Data_Form_Element_Abstract $element)
7
+ {
8
+ $editor = new TM_Core_Block_Adminhtml_Widget_Form_Element_Wysiwyg($element->getData());
9
+ $editor->setId($element->getId());
10
+ $editor->setForm($element->getForm());
11
+ return parent::render($editor);
12
+ }
13
+ }
app/code/community/TM/Core/Helper/Data.php CHANGED
@@ -2,5 +2,9 @@
2
 
3
  class TM_Core_Helper_Data extends Mage_Core_Helper_Abstract
4
  {
5
-
6
- }
 
 
 
 
2
 
3
  class TM_Core_Helper_Data extends Mage_Core_Helper_Abstract
4
  {
5
+ public function isDesignPackageEquals($packageName)
6
+ {
7
+ $package = Mage::getSingleton('core/design_package');
8
+ return $package->getPackageName() === $packageName;
9
+ }
10
+ }
app/code/community/TM/Core/Model/Module.php CHANGED
@@ -102,7 +102,7 @@ class TM_Core_Model_Module extends Mage_Core_Model_Abstract
102
  */
103
  public function isValidationRequired()
104
  {
105
- return !$this->getRemote() || $this->getRemote()->getIdentityKeyLink();
106
  }
107
 
108
  /**
102
  */
103
  public function isValidationRequired()
104
  {
105
+ return $this->getRemote() && $this->getRemote()->getIdentityKeyLink();
106
  }
107
 
108
  /**
app/code/community/TM/Core/Model/Module/Upgrade.php CHANGED
@@ -80,6 +80,38 @@ abstract class TM_Core_Model_Module_Upgrade extends Varien_Object
80
  $this->up();
81
  }
82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  /**
84
  * @param array $data
85
  * <pre>
@@ -159,6 +191,9 @@ abstract class TM_Core_Model_Module_Upgrade extends Varien_Object
159
  $website = null;
160
  $store = null;
161
  } else {
 
 
 
162
  $website = $this->_getStore($storeId)->getWebsite()->getCode();
163
  $store = $this->_getStore($storeId)->getCode();
164
  }
@@ -480,6 +515,81 @@ abstract class TM_Core_Model_Module_Upgrade extends Varien_Object
480
  }
481
  }
482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  /**
484
  * Backup and create new labels
485
  *
@@ -507,6 +617,13 @@ abstract class TM_Core_Model_Module_Upgrade extends Varien_Object
507
  $isSingleStore = Mage::app()->isSingleStoreMode();
508
  foreach ($data as $labelData) {
509
  if (!empty($labelData['type']) && isset($typeMapping[$labelData['type']])) {
 
 
 
 
 
 
 
510
  $system = true;
511
  $modelType = 'prolabels/system';
512
  $collection = Mage::getModel($modelType)->getCollection()
@@ -676,6 +793,62 @@ abstract class TM_Core_Model_Module_Upgrade extends Varien_Object
676
  }
677
  }
678
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
  /**
680
  * Log installation errors
681
  *
80
  $this->up();
81
  }
82
 
83
+ /**
84
+ * @param array $mapping key=>value pairs of old and new path
85
+ * @return void
86
+ */
87
+ public function renameConfigPath($mapping)
88
+ {
89
+ $table = Mage::getResourceModel('core/config_data')->getMainTable();
90
+ $adapter = Mage::getModel('core/resource')
91
+ ->getConnection(Mage_Core_Model_Resource::DEFAULT_WRITE_RESOURCE);
92
+
93
+ $newPaths = array_values($mapping);
94
+ $collection = Mage::getResourceModel('core/config_data_collection');
95
+ $collection->addFieldToFilter('path', array('in' => $newPaths))
96
+ ->load();
97
+
98
+ $adapter->beginTransaction();
99
+ try {
100
+ foreach ($mapping as $oldPath => $newPath) {
101
+ if ($collection->getItemByColumnValue('path', $newPath)) {
102
+ continue;
103
+ }
104
+ $adapter->exec(
105
+ "UPDATE `$table` SET path='{$newPath}' WHERE path='{$oldPath}'"
106
+ );
107
+ }
108
+ $adapter->commit();
109
+ } catch (Exception $e) {
110
+ $adapter->rollBack();
111
+ throw $e;
112
+ }
113
+ }
114
+
115
  /**
116
  * @param array $data
117
  * <pre>
191
  $website = null;
192
  $store = null;
193
  } else {
194
+ if (!$this->_getStore($storeId)->getId()) {
195
+ continue;
196
+ }
197
  $website = $this->_getStore($storeId)->getWebsite()->getCode();
198
  $store = $this->_getStore($storeId)->getCode();
199
  }
515
  }
516
  }
517
 
518
+ /**
519
+ * Backup and create new tabs
520
+ * Alias is used as idendifier
521
+ *
522
+ * @param array $data
523
+ * <pre>
524
+ * title
525
+ * alias
526
+ * block
527
+ * template
528
+ * custom_option
529
+ * unset
530
+ * sort_order
531
+ * status
532
+ * store_id
533
+ * </pre>
534
+ * @return void
535
+ */
536
+ public function runEasytabs($data)
537
+ {
538
+ $existing = Mage::getModel('easytabs/config')->getCollection();
539
+ $isSingleStore = Mage::app()->isSingleStoreMode();
540
+
541
+ foreach ($data as $tabData) {
542
+ $tab = Mage::getModel('easytabs/config');
543
+ $tab->setStoreId($this->getStoreIds());
544
+
545
+ // backup existing tab with the same alias
546
+ if (!empty($tabData['alias'])) {
547
+ $tmp = $existing->getItemsByColumnValue('alias', $tabData['alias']);
548
+ foreach ($tmp as $tmbTab) {
549
+ if (!$tmbTab->getStatus()) {
550
+ continue;
551
+ }
552
+ $storesToLeave = array_diff($tmbTab->getStoreId(), $this->getStoreIds());
553
+ if (count($storesToLeave) && !$isSingleStore) {
554
+ $tmbTab->setStoreId($storesToLeave);
555
+ } else {
556
+ $tmbTab->setStatus(0)
557
+ ->setAlias($this->_getUniqueString($tmbTab->getAlias()));
558
+ }
559
+
560
+ try {
561
+ $tmbTab->save();
562
+ } catch (Exception $e) {
563
+ $this->_fault('easytabs_backup', $e);
564
+ continue;
565
+ }
566
+ }
567
+ }
568
+
569
+ if ('easytabs/tab_cms' === $tabData['block']
570
+ && !is_numeric($tabData['custom_option'])) {
571
+
572
+ // get cms block identifier
573
+ $collection = Mage::getModel('cms/block')
574
+ ->getCollection()
575
+ ->addStoreFilter($this->getStoreIds())
576
+ ->addFieldToFilter('identifier', $tabData['custom_option']);
577
+
578
+ if (!$isSingleStore) {
579
+ $collection->addStoreFilter($this->getStoreIds());
580
+ }
581
+ $cmsBlock = $collection->getFirstItem();
582
+
583
+ if (!$cmsBlock->getId()) {
584
+ continue;
585
+ }
586
+ $tabData['custom_option'] = $cmsBlock->getId();
587
+ }
588
+
589
+ $tab->addData($tabData)->save();
590
+ }
591
+ }
592
+
593
  /**
594
  * Backup and create new labels
595
  *
617
  $isSingleStore = Mage::app()->isSingleStoreMode();
618
  foreach ($data as $labelData) {
619
  if (!empty($labelData['type']) && isset($typeMapping[$labelData['type']])) {
620
+ Mage::getModel('prolabels/label')->load($typeMapping[$labelData['type']])
621
+ ->addData(array(
622
+ 'label_status' => isset($labelData['label_status']) ?
623
+ $labelData['label_status'] : 1
624
+ ))
625
+ ->save();
626
+
627
  $system = true;
628
  $modelType = 'prolabels/system';
629
  $collection = Mage::getModel($modelType)->getCollection()
793
  }
794
  }
795
 
796
+ /**
797
+ * @param array $data
798
+ * <pre>
799
+ * array(
800
+ * 'left' => array(
801
+ * 'name' => 'left',
802
+ * 'levels_per_dropdown' => 2,
803
+ * 'columns' => array(
804
+ * array(
805
+ * 'width' => 185
806
+ * )
807
+ * )
808
+ * )
809
+ * )
810
+ * </pre>
811
+ */
812
+ public function runNavigationpro($data)
813
+ {
814
+ $menuDefaults = array(
815
+ 'is_active' => 1,
816
+ 'columns_mode' => 'menu',
817
+ 'display_in_navigation' => 0,
818
+ 'levels_per_dropdown' => 1,
819
+ 'style' => 'dropdown'
820
+ );
821
+ $columnDefaults = array(
822
+ 'is_active' => 1,
823
+ 'sort_order' => '50',
824
+ 'type' => TM_NavigationPro_Model_Column::TYPE_SUBCATEGORY,
825
+ 'style' => 'dropdown',
826
+ 'levels_per_dropdown' => 1,
827
+ 'direction' => 'horizontal',
828
+ 'columns_count' => 1,
829
+ 'width' => 160
830
+ );
831
+
832
+ foreach ($data as $menuData) {
833
+ $menu = Mage::getModel('navigationpro/menu')
834
+ ->load($menuData['name'], 'name');
835
+ if ($menu->getId()) {
836
+ continue;
837
+ }
838
+
839
+ foreach ($menuData['columns'] as $i => $columnData) {
840
+ $menuData['columns'][$i] = array_merge($columnDefaults, $columnData);
841
+ }
842
+
843
+ $menu = Mage::getModel('navigationpro/menu')
844
+ ->setData(array_merge($menuDefaults, $menuData))
845
+ ->setStoreId(Mage_Catalog_Model_Abstract::DEFAULT_STORE_ID)
846
+ ->setSiblings(array())
847
+ ->setContent(array())
848
+ ->save();
849
+ }
850
+ }
851
+
852
  /**
853
  * Log installation errors
854
  *
app/code/community/TM/Core/Model/Notification/Feed.php CHANGED
@@ -29,6 +29,10 @@ class TM_Core_Model_Notification_Feed extends Mage_AdminNotification_Model_Feed
29
  */
30
  public function checkUpdate()
31
  {
 
 
 
 
32
  if (($this->getFrequency() + $this->getLastUpdate()) > time()) {
33
  return $this;
34
  }
29
  */
30
  public function checkUpdate()
31
  {
32
+ if (!Mage::helper('core')->isModuleEnabled('Mage_AdminNotification')) {
33
+ return $this;
34
+ }
35
+
36
  if (($this->getFrequency() + $this->getLastUpdate()) > time()) {
37
  return $this;
38
  }
app/code/community/TM/Core/Model/Oauth/Client.php ADDED
@@ -0,0 +1,257 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * http://inchoo.net/ecommerce/magento/consuming-magento-rest-zend_oauth_consumer/
4
+ * http://www.magentocommerce.com/knowledge-base/entry/how-to-use-extend-the-magento-rest-api-to-use-coupon-auto-generation
5
+ *
6
+ * @author Darko Goleš <darko.goles@inchoo.net>
7
+ * @author Alexander Krasko <0m3r.mail@gmail.com>
8
+ * @package Inchoo
9
+ * @subpackage RestConnect
10
+ */
11
+ class TM_Core_Model_Oauth_Client extends Mage_Core_Model_Abstract
12
+ {
13
+ private $_callbackUrl;
14
+ private $_siteUrl;
15
+ private $_consumerKey;
16
+ private $_consumerSecret;
17
+ private $_requestTokenUrl;
18
+ private $_accessTokenUrl;
19
+ private $_consumer;
20
+ private $_authorizeUrl;
21
+ private $_userAuthorizationUrl;
22
+ private $_authorized_token;
23
+
24
+ const OAUTH_STATE_NO_TOKEN = 0;
25
+ const OAUTH_STATE_REQUEST_TOKEN = 1;
26
+ const OAUTH_STATE_ACCESS_TOKEN = 2;
27
+ const OAUTH_STATE_ERROR = 3;
28
+
29
+ public function init($config)
30
+ {
31
+ $this->setOAuthConfig($config);
32
+ return $this;
33
+ }
34
+
35
+ public function setAuthorizedToken($token)
36
+ {
37
+ $this->_authorized_token = $token;
38
+ }
39
+
40
+ public function getAuthorizedToken()
41
+ {
42
+ if ($this->_authorized_token) {
43
+ return $this->_authorized_token;
44
+ }
45
+ return false;
46
+ }
47
+
48
+ public function reset()
49
+ {
50
+ return $this->resetSessionParams();
51
+ }
52
+
53
+ public function authenticate()
54
+ {
55
+ $state = $this->getOAuthState();
56
+ $consumer = $this->_getOAuthConsumer();
57
+ try {
58
+ switch ($state) {
59
+ case self::OAUTH_STATE_NO_TOKEN:
60
+ $requestToken = $this->getRequestToken();
61
+ $this->setOAuthState(self::OAUTH_STATE_REQUEST_TOKEN);
62
+ $consumer->redirect();
63
+ return self::OAUTH_STATE_REQUEST_TOKEN;
64
+ break;
65
+ case self::OAUTH_STATE_REQUEST_TOKEN:
66
+ $accessToken = $this->getAccessToken($this->getRequestToken());
67
+ $this->setAuthorizedToken($accessToken);
68
+ $this->setOAuthState(self::OAUTH_STATE_ACCESS_TOKEN);
69
+ return self::OAUTH_STATE_ACCESS_TOKEN;
70
+ break;
71
+ case self::OAUTH_STATE_ACCESS_TOKEN:
72
+ $accessToken = $this->_getAccessTokenFromSession();
73
+ if ($accessToken && $accessToken instanceof Zend_Oauth_Token_Access) {
74
+ $this->setAuthorizedToken($accessToken);
75
+ }
76
+ return self::OAUTH_STATE_ACCESS_TOKEN;
77
+ default:
78
+ $this->resetSessionParams();
79
+ return self::OAUTH_STATE_NO_TOKEN;
80
+ return;
81
+ break;
82
+ }
83
+ } catch (Zend_Oauth_Exception $e) {
84
+ $this->resetSessionParams();
85
+ Mage::logException($e);
86
+ } catch (Exception $e) {
87
+ Mage::logException($e);
88
+ }
89
+ return self::OAUTH_STATE_NO_TOKEN;
90
+ }
91
+
92
+ private function resetSessionParams()
93
+ {
94
+ $this->getSession()->unsetData('o_auth_state');
95
+ $this->getSession()->unsetData('request_token');
96
+ $this->getSession()->unsetData('o_auth_config');
97
+ $this->getSession()->unsetData('access_token');
98
+ return $this;
99
+ }
100
+
101
+ public function getRequestToken()
102
+ {
103
+ $token = $this->_getRequestTokenFromSession();
104
+ if ($token && $token instanceof Zend_Oauth_Token_Request) {
105
+ return $token;
106
+ }
107
+ $token = $this->_getRequestTokenFromServer();
108
+ if ($token && $token instanceof Zend_Oauth_Token_Request) {
109
+ $this->_saveRequestTokenInSession($token);
110
+ return $token;
111
+ }
112
+ return false;
113
+ }
114
+
115
+ public function getAccessToken($requestToken)
116
+ {
117
+ $token = $this->_getAccessTokenFromSession();
118
+ if ($token && $token instanceof Zend_Oauth_Token_Access) {
119
+ return $token;
120
+ }
121
+ $token = $this->_getAcessTokenFromServer($requestToken);
122
+ if ($token && $token instanceof Zend_Oauth_Token_Access) {
123
+ $this->_saveAccessTokenInSesion($token);
124
+ return $token;
125
+ }
126
+ }
127
+
128
+ private function _getAcessTokenFromServer($requestToken)
129
+ {
130
+ if ($requestToken && $requestToken instanceof Zend_Oauth_Token_Request) {
131
+ $accToken = $this->_getOAuthConsumer()->getAccessToken(
132
+ $_GET,
133
+ $requestToken
134
+ );
135
+ }
136
+ if ($accToken && $accToken instanceof Zend_Oauth_Token_Access) {
137
+ return $accToken;
138
+ }
139
+ return false;
140
+ }
141
+
142
+ private function _saveAccessTokenInSesion($accessToken)
143
+ {
144
+ $this->getSession()->setAccessToken(serialize($accessToken));
145
+ }
146
+
147
+ private function _getAccessTokenFromSession()
148
+ {
149
+ $accessToken = unserialize($this->getSession()->getData('access_token'));
150
+ if ($accessToken && $accessToken instanceof Zend_Oauth_Token_Access) {
151
+ return $accessToken;
152
+ }
153
+ return false;
154
+ }
155
+
156
+ private function _getRequestTokenFromServer()
157
+ {
158
+ $token = $this->_getOAuthConsumer()->getRequestToken();
159
+ return $token;
160
+ }
161
+
162
+ private function _saveRequestTokenInSession(Zend_Oauth_Token_Request $requestToken)
163
+ {
164
+ $this->getSession()->setRequestToken(serialize($requestToken));
165
+ }
166
+
167
+ private function _getRequestTokenFromSession()
168
+ {
169
+ $requestToken = unserialize($this->getSession()->getRequestToken());
170
+ if ($requestToken && $requestToken instanceof Zend_Oauth_Token_Request) {
171
+ return $requestToken;
172
+ }
173
+ return false;
174
+ }
175
+
176
+ public function getSession()
177
+ {
178
+ return Mage::getSingleton('core/session');
179
+ }
180
+
181
+ public function getOAuthToken()
182
+ {
183
+ return $this->getRequest()->getParam('oauth_token', false);
184
+ }
185
+
186
+ public function getRequest()
187
+ {
188
+ return Mage::app()->getRequest();
189
+ }
190
+
191
+ private function _getOAuthConsumer()
192
+ {
193
+ if ($consumer = $this->_consumer) {
194
+ if ($consumer instanceof Zend_Oauth_Consumer) {
195
+ return $this->_consumer;
196
+ }
197
+ }
198
+ $this->_consumer = new Zend_Oauth_Consumer($this->getOAuthConfig());
199
+ return $this->_consumer;
200
+ }
201
+
202
+ private function getOAuthConfig()
203
+ {
204
+ $config = array(
205
+ 'callbackUrl' => $this->_callbackUrl,
206
+ 'siteUrl' => $this->_siteUrl,
207
+ 'consumerKey' => $this->_consumerKey,
208
+ 'consumerSecret' => $this->_consumerSecret,
209
+ 'requestTokenUrl' => $this->_requestTokenUrl,
210
+ 'accessTokenUrl' => $this->_accessTokenUrl,
211
+ );
212
+ if ($this->_authorizeUrl && $this->_authorizeUrl != '') {
213
+ $config['authorizeUrl'] = $this->_authorizeUrl;
214
+ }
215
+ if ($this->_userAuthorizationUrl && $this->_userAuthorizationUrl != '') {
216
+ $config['userAuthorizationUrl'] = $this->_userAuthorizationUrl;
217
+ }
218
+ return $config;
219
+ }
220
+
221
+ private function setOAuthConfig($config)
222
+ {
223
+ $this->getSession()->setOAuthConfig(serialize($config));
224
+ foreach ($config as $key => $val) {
225
+ $_key = '_' . $key;
226
+ $this->$_key = $val;
227
+ }
228
+ }
229
+
230
+ public function getConfigFromSession()
231
+ {
232
+ $config = unserialize($this->getSession()->getOAuthConfig());
233
+ if ($config && is_array($config)) {
234
+ return $config;
235
+ }
236
+ return false;
237
+ }
238
+
239
+ private function setOAuthState($state)
240
+ {
241
+ $this->getSession()->setOAuthState($state);
242
+ }
243
+
244
+ public function getOAuthState()
245
+ {
246
+ $state = $this->getSession()->getOAuthState();
247
+ if ($state == null) {
248
+ return self::OAUTH_STATE_NO_TOKEN;
249
+ }
250
+ $paramOAuthToken = $this->getOAuthToken();
251
+ if ($paramOAuthToken == false && $state == self::OAUTH_STATE_REQUEST_TOKEN) {
252
+ $this->resetSessionParams();
253
+ return self::OAUTH_STATE_NO_TOKEN;
254
+ }
255
+ return $state;
256
+ }
257
+ }
app/code/community/TM/Core/Model/Observer.php CHANGED
@@ -14,4 +14,41 @@ class TM_Core_Model_Observer
14
  $feedModel->checkUpdate();
15
  }
16
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  }
14
  $feedModel->checkUpdate();
15
  }
16
  }
17
+
18
+ /**
19
+ * Add layout update files just before local.xml
20
+ * Conditions are supported too
21
+ */
22
+ public function addLayoutUpdate($observer)
23
+ {
24
+ // $area = Mage::getSingleton('core/design_package')->getArea();
25
+ $area = Mage_Core_Model_App_Area::AREA_FRONTEND;
26
+ $updates = $observer->getUpdates();
27
+ $extraNodes = Mage::app()->getConfig()->getNode($area.'/tm_layout/updates');
28
+ if (!$extraNodes) {
29
+ return;
30
+ }
31
+ foreach ($extraNodes->children() as $node) {
32
+ if ($node->getAttribute('condition')) {
33
+ $parts = explode('/', $node->getAttribute('condition'));
34
+ $helper = array_shift($parts);
35
+ $method = array_shift($parts);
36
+ if (count($parts)) {
37
+ $helper .= '/' . $method;
38
+ $method = array_shift($parts);
39
+ }
40
+ $helper = Mage::helper($helper);
41
+ if ($args = $node->getAttribute('args')) {
42
+ $args = explode(',', $args);
43
+ $enabled = call_user_func_array(array($helper, $method), $args);
44
+ } else {
45
+ $enabled = $helper->{$method}();
46
+ }
47
+ if (!$enabled) {
48
+ continue;
49
+ }
50
+ }
51
+ $updates->appendChild($node);
52
+ }
53
+ }
54
  }
app/code/community/TM/Core/Model/Resource/Module/MergedCollection.php CHANGED
@@ -45,13 +45,16 @@ class TM_Core_Model_Resource_Module_MergedCollection extends Varien_Data_Collect
45
  $module = $localCollection->getItemById($code);
46
  if (!$module) {
47
  $module = new $this->_itemObjectClass();
 
 
48
  }
49
 
50
  $localData = array_merge(
51
  array(
52
  'id' => $code,
53
  'data_version' => $module->getDataVersion(),
54
- 'code' => $code
 
55
  ),
56
  $values->asCanonicalArray()
57
  );
@@ -131,6 +134,9 @@ class TM_Core_Model_Resource_Module_MergedCollection extends Varien_Data_Collect
131
  if (isset($remote['data_version'])) {
132
  $dataCompare = version_compare($local['data_version'], $remote['data_version']);
133
  }
 
 
 
134
 
135
  if ($versionCompare > -1 && $dataCompare > -1) {
136
  $status = TM_Core_Model_Module::VERSION_UPDATED;
45
  $module = $localCollection->getItemById($code);
46
  if (!$module) {
47
  $module = new $this->_itemObjectClass();
48
+ } else {
49
+ $module->load($module->getId());
50
  }
51
 
52
  $localData = array_merge(
53
  array(
54
  'id' => $code,
55
  'data_version' => $module->getDataVersion(),
56
+ 'code' => $code,
57
+ 'available_upgrades' => $module->getUpgradesToRun()
58
  ),
59
  $values->asCanonicalArray()
60
  );
134
  if (isset($remote['data_version'])) {
135
  $dataCompare = version_compare($local['data_version'], $remote['data_version']);
136
  }
137
+ if ($local['available_upgrades']) {
138
+ $dataCompare = -1;
139
+ }
140
 
141
  if ($versionCompare > -1 && $dataCompare > -1) {
142
  $status = TM_Core_Model_Module::VERSION_UPDATED;
app/code/community/TM/Core/Model/Resource/Module/RemoteCollection.php CHANGED
@@ -36,7 +36,7 @@ class TM_Core_Model_Resource_Module_RemoteCollection extends Varien_Data_Collect
36
  $modules = array(
37
  'TM_Core' => array(
38
  'code' => 'TM_Core',
39
- 'version' => '1.1.1',
40
  'changelog' => '',
41
  'link' => '',
42
  'download_link' => '',
@@ -44,7 +44,7 @@ class TM_Core_Model_Resource_Module_RemoteCollection extends Varien_Data_Collect
44
  ),
45
  'TM_License' => array(
46
  'code' => 'TM_License',
47
- 'version' => '1.2.0',
48
  'changelog' => '',
49
  'link' => '',
50
  'download_link' => '',
@@ -52,113 +52,52 @@ class TM_Core_Model_Resource_Module_RemoteCollection extends Varien_Data_Collect
52
  ),
53
  'TM_Argento' => array(
54
  'code' => 'TM_Argento',
55
- 'version' => '1.2.0',
56
  'changelog' => '',
57
  'link' => '',
58
  'download_link' => '',
59
  'identity_key_link' => '',
60
- 'changelog' => "
61
- 1.2.0
62
- New Pure theme added
63
- Css styles optimization
64
- Css styles improvements for small tablet devices
65
- Removed php warnings during Argento installation
66
- Fixed upsell products decoration with first/last classes
67
- AjaxSearch
68
- * Security bugfix
69
- Askit
70
- * Grammar errors fixed
71
- Easyslider
72
- * Nivo slider updated to version 3.2
73
- Easybanner
74
- * Title field should not be required, when using html mode
75
- FacebookLikeButton
76
- * Fixed access to facebook like button config section when internet connection is not available
77
- Highlight
78
- * Added translation of the highlight page title
79
- Soldtogether
80
- * Fixed bug, when no product is available, but soldtogether block is called
81
-
82
- 1.1.2
83
- Argento
84
- * Html markup and css improvements. YSlow - 86 PageSpeed - 93
85
- * Review url fixed on product page
86
- * Lightboxpro config options updated to look good on mobile screens
87
- * Related products styles and image size improvements for small screen devices
88
- * All small images styles improved for mobile devices
89
- * Improved form styles
90
- * Fixed product listing on advanced search results
91
- * Facebook Like Button added
92
- * Scroll to top button added
93
- Soldtogether updated
94
- * Table prefix added to query
95
- * Amazon styled template will show only simple products
96
- * Fixed price calculation for bundle, configurable and grouped products when using amazon template
97
- * Collection queries improvements
98
- Easyslide updated
99
- * jQuery will not be added if nivo slider is not used
100
- * Default slider options added when creating new slider
101
- * Enabled option removed. Please use status option for each slider instance.
102
- * Load jQuery option now affects on adding jQuery library only: nivo javascript will be added if nivo slider is used.
103
- Easycatalogimg updated
104
- * Optional retina support added
105
- * Image dimensions added to html markup
106
- Easybanner updated
107
- * Ability to set image size added
108
- * Optional retina support added
109
- * Ability to use banner url for html mode added. Use the {{tm_banner_url}} variable in banner content.
110
- * Backend banner management interface improvements
111
- * Image dimensions added to html markup, when resizer is used
112
-
113
- 1.1.1
114
- Fixed column count with cache enabled on advanced search results and highlight pages
115
-
116
- 1.1.0
117
- Add to cart button improvements
118
- Header styles made more compact for mobile devices
119
- Sitemap toolbar style fixed
120
- Product page tabs made horizontal for wide screens
121
- Checkout page design improvements
122
- Product labels added to the product page image
123
- Product labels output fixed for mobile devices
124
- All module depends updated to the latest versions
125
-
126
- 1.0.0
127
- Release
128
- "
129
  ),
130
  'TM_ArgentoArgento' => array(
131
  'code' => 'TM_ArgentoArgento',
132
- 'version' => '1.1.2',
133
- 'changelog' => "
134
- 1.1.2
135
- See TM_Argento changelog
136
- Improved form styles
137
-
138
- 1.1.1
139
- See TM_Argento changelog
140
-
141
- 1.1.0
142
- See TM_Argento changelog
143
- Fixed box shadow around the product on category listing
144
-
145
- 1.0.0
146
- Release
147
- ",
 
 
148
  'link' => 'http://argentotheme.com',
149
  'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
150
  'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
151
  ),
152
  'TM_ArgentoPure' => array(
153
  'code' => 'TM_ArgentoPure',
154
- 'version' => '1.0.0',
155
- 'changelog' => "
156
- 1.0.0
157
- Release
158
- ",
159
  'link' => 'http://argentotheme.com',
160
  'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
161
  'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
 
 
 
 
 
 
 
 
162
  )
163
  );
164
  }
36
  $modules = array(
37
  'TM_Core' => array(
38
  'code' => 'TM_Core',
39
+ 'version' => '',
40
  'changelog' => '',
41
  'link' => '',
42
  'download_link' => '',
44
  ),
45
  'TM_License' => array(
46
  'code' => 'TM_License',
47
+ 'version' => '',
48
  'changelog' => '',
49
  'link' => '',
50
  'download_link' => '',
52
  ),
53
  'TM_Argento' => array(
54
  'code' => 'TM_Argento',
55
+ 'version' => '',
56
  'changelog' => '',
57
  'link' => '',
58
  'download_link' => '',
59
  'identity_key_link' => '',
60
+ 'changelog' => ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  ),
62
  'TM_ArgentoArgento' => array(
63
  'code' => 'TM_ArgentoArgento',
64
+ 'version' => '',
65
+ 'changelog' => "",
66
+ 'link' => 'http://argentotheme.com',
67
+ 'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
68
+ 'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
69
+ ),
70
+ 'TM_ArgentoMage2Cloud' => array(
71
+ 'code' => 'TM_ArgentoMage2Cloud',
72
+ 'version' => '',
73
+ 'changelog' => "",
74
+ 'link' => 'http://argentotheme.com',
75
+ 'download_link' => '',
76
+ 'identity_key_link' => ''
77
+ ),
78
+ 'TM_ArgentoMall' => array(
79
+ 'code' => 'TM_ArgentoMall',
80
+ 'version' => '',
81
+ 'changelog' => "",
82
  'link' => 'http://argentotheme.com',
83
  'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
84
  'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
85
  ),
86
  'TM_ArgentoPure' => array(
87
  'code' => 'TM_ArgentoPure',
88
+ 'version' => '',
89
+ 'changelog' => "",
 
 
 
90
  'link' => 'http://argentotheme.com',
91
  'download_link' => 'https://argentotheme.com/downloadable/customer/products/',
92
  'identity_key_link' => 'https://argentotheme.com/license/customer/identity/'
93
+ ),
94
+ 'TM_ArgentoTM' => array(
95
+ 'code' => 'TM_ArgentoTM',
96
+ 'version' => '',
97
+ 'changelog' => "",
98
+ 'link' => 'http://argentotheme.com',
99
+ 'download_link' => '',
100
+ 'identity_key_link' => ''
101
  )
102
  );
103
  }
app/code/community/TM/Core/Model/Resource/Support/Collection.php ADDED
@@ -0,0 +1,416 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Model_Resource_Support_Collection extends Varien_Data_Collection
4
+ {
5
+
6
+ protected $_rawItems = array();
7
+
8
+ /**
9
+ * Filter rendering helper variables
10
+ *
11
+ * @see Varien_Data_Collection::$_filter
12
+ * @see Varien_Data_Collection::$_isFiltersRendered
13
+ */
14
+ private $_filterIncrement = 0;
15
+ private $_filterBrackets = array();
16
+ private $_filterEvalRendered = '';
17
+
18
+
19
+ public function setFromArray(array $_items)
20
+ {
21
+ $this->_rawItems = $_items;
22
+ return $this;
23
+ }
24
+
25
+ /**
26
+ * Lauch data collecting
27
+ *
28
+ * @param bool $printQuery
29
+ * @param bool $logQuery
30
+ * @return Varien_Data_Collection_Filesystem
31
+ */
32
+ public function loadData($printQuery = false, $logQuery = false)
33
+ {
34
+ if ($this->isLoaded()) {
35
+ return $this;
36
+ }
37
+
38
+ $this->_filterAndSort();
39
+
40
+ // calculate totals
41
+ $this->_totalRecords = count($this->_rawItems);
42
+ $this->_setIsLoaded();
43
+
44
+ // paginate and add items
45
+ $from = ($this->getCurPage() - 1) * $this->getPageSize();
46
+ $to = $from + $this->getPageSize() - 1;
47
+ $isPaginated = $this->getPageSize() > 0;
48
+
49
+ $cnt = 0;
50
+ foreach ($this->_rawItems as $row) {
51
+ $cnt++;
52
+ if ($isPaginated && ($cnt < $from || $cnt > $to)) {
53
+ continue;
54
+ }
55
+ $item = new $this->_itemObjectClass();
56
+ $this->addItem($item->addData($row));
57
+ if (!$item->hasId()) {
58
+ $item->setId($cnt);
59
+ }
60
+ }
61
+
62
+ return $this;
63
+ }
64
+
65
+ /**
66
+ * With specified collected items:
67
+ * - generate data
68
+ * - apply filters
69
+ * - sort
70
+ *
71
+ * @param string $attributeName '_collectedFiles' | '_collectedDirs'
72
+ */
73
+ private function _filterAndSort()
74
+ {
75
+ // apply filters on generated data
76
+ if (!empty($this->_filters)) {
77
+ foreach ($this->_rawItems as $key => $row) {
78
+ if (!$this->_filterRow($row)) {
79
+ unset($this->_rawItems[$key]);
80
+ }
81
+ }
82
+ }
83
+
84
+ // sort (keys are lost!)
85
+ if (!empty($this->_orders)) {
86
+ usort($this->_rawItems, array($this, '_usort'));
87
+ }
88
+ }
89
+
90
+ protected function _usort($a, $b)
91
+ {
92
+ foreach ($this->_orders as $key => $direction) {
93
+ $result = $a[$key] > $b[$key] ? 1 : ($a[$key] < $b[$key] ? -1 : 0);
94
+ return (self::SORT_ORDER_ASC === strtoupper($direction) ? $result : -$result);
95
+ break;
96
+ }
97
+ }
98
+
99
+ /**
100
+ * Set select order
101
+ * Currently supports only sorting by one column
102
+ *
103
+ * @param string $field
104
+ * @param string $direction
105
+ * @return Varien_Data_Collection
106
+ */
107
+ public function setOrder($field, $direction = self::SORT_ORDER_DESC)
108
+ {
109
+ $this->_orders = array($field => $direction);
110
+ return $this;
111
+ }
112
+
113
+ /**
114
+ * Set a custom filter with callback
115
+ * The callback must take 3 params:
116
+ * string $field - field key,
117
+ * mixed $filterValue - value to filter by,
118
+ * array $row - a generated row (before generaring varien objects)
119
+ *
120
+ * @param string $field
121
+ * @param mixed $value
122
+ * @param string $type 'and'|'or'
123
+ * @param callback $callback
124
+ * @param bool $isInverted
125
+ * @return Varien_Data_Collection_Filesystem
126
+ */
127
+ public function addCallbackFilter($field, $value, $type, $callback, $isInverted = false)
128
+ {
129
+ $this->_filters[$this->_filterIncrement] = array(
130
+ 'field' => $field,
131
+ 'value' => $value,
132
+ 'is_and' => 'and' === $type,
133
+ 'callback' => $callback,
134
+ 'is_inverted' => $isInverted
135
+ );
136
+ $this->_filterIncrement++;
137
+ return $this;
138
+ }
139
+
140
+ /**
141
+ * The filters renderer and caller
142
+ * Aplies to each row, renders once.
143
+ *
144
+ * @param array $row
145
+ * @return bool
146
+ */
147
+ protected function _filterRow($row)
148
+ {
149
+ // render filters once
150
+ if (!$this->_isFiltersRendered) {
151
+ $eval = '';
152
+ for ($i = 0; $i < $this->_filterIncrement; $i++) {
153
+ if (isset($this->_filterBrackets[$i])) {
154
+ $eval .= $this->_renderConditionBeforeFilterElement($i, $this->_filterBrackets[$i]['is_and'])
155
+ . $this->_filterBrackets[$i]['value'];
156
+ }
157
+ else {
158
+ $f = '$this->_filters[' . $i . ']';
159
+ $eval .= $this->_renderConditionBeforeFilterElement($i, $this->_filters[$i]['is_and'])
160
+ . ($this->_filters[$i]['is_inverted'] ? '!' : '')
161
+ . '$this->_invokeFilter(' . "{$f}['callback'], array({$f}['field'], {$f}['value'], " . '$row))';
162
+ }
163
+ }
164
+ $this->_filterEvalRendered = $eval;
165
+ $this->_isFiltersRendered = true;
166
+ }
167
+ $result = false;
168
+ if ($this->_filterEvalRendered) {
169
+ eval('$result = ' . $this->_filterEvalRendered . ';');
170
+ }
171
+ return $result;
172
+ }
173
+
174
+ /**
175
+ * Invokes specified callback
176
+ * Skips, if there is no filtered key in the row
177
+ *
178
+ * @param callback $callback
179
+ * @param array $callbackParams
180
+ * @return bool
181
+ */
182
+ protected function _invokeFilter($callback, $callbackParams)
183
+ {
184
+ list($field, $value, $row) = $callbackParams;
185
+ if (!array_key_exists($field, $row)) {
186
+ return false;
187
+ }
188
+ return call_user_func_array($callback, $callbackParams);
189
+ }
190
+
191
+ /**
192
+ * Fancy field filter
193
+ *
194
+ * @param string $field
195
+ * @param mixed $cond
196
+ * @param string $type 'and' | 'or'
197
+ * @see Varien_Data_Collection_Db::addFieldToFilter()
198
+ * @return Varien_Data_Collection_Filesystem
199
+ */
200
+ public function addFieldToFilter($field, $cond, $type = 'and')
201
+ {
202
+ $inverted = true;
203
+
204
+ // simply check whether equals
205
+ if (!is_array($cond)) {
206
+ return $this->addCallbackFilter($field, $cond, $type, array($this, 'filterCallbackEq'));
207
+ }
208
+
209
+ // versatile filters
210
+ if (isset($cond['from']) || isset($cond['to'])) {
211
+ $this->_addFilterBracket('(', 'and' === $type);
212
+ if (isset($cond['from'])) {
213
+ $this->addCallbackFilter($field, $cond['from'], 'and', array($this, 'filterCallbackIsLessThan'), $inverted);
214
+ }
215
+ if (isset($cond['to'])) {
216
+ $this->addCallbackFilter($field, $cond['to'], 'and', array($this, 'filterCallbackIsMoreThan'), $inverted);
217
+ }
218
+ return $this->_addFilterBracket(')');
219
+ }
220
+ if (isset($cond['eq'])) {
221
+ return $this->addCallbackFilter($field, $cond['eq'], $type, array($this, 'filterCallbackEq'));
222
+ }
223
+ if (isset($cond['neq'])) {
224
+ return $this->addCallbackFilter($field, $cond['neq'], $type, array($this, 'filterCallbackEq'), $inverted);
225
+ }
226
+ if (isset($cond['like'])) {
227
+ return $this->addCallbackFilter($field, $cond['like'], $type, array($this, 'filterCallbackLike'));
228
+ }
229
+ if (isset($cond['nlike'])) {
230
+ return $this->addCallbackFilter($field, $cond['nlike'], $type, array($this, 'filterCallbackLike'), $inverted);
231
+ }
232
+ if (isset($cond['in'])) {
233
+ return $this->addCallbackFilter($field, $cond['in'], $type, array($this, 'filterCallbackInArray'));
234
+ }
235
+ if (isset($cond['nin'])) {
236
+ return $this->addCallbackFilter($field, $cond['nin'], $type, array($this, 'filterCallbackInArray'), $inverted);
237
+ }
238
+ if (isset($cond['notnull'])) {
239
+ return $this->addCallbackFilter($field, $cond['notnull'], $type, array($this, 'filterCallbackIsNull'), $inverted);
240
+ }
241
+ if (isset($cond['null'])) {
242
+ return $this->addCallbackFilter($field, $cond['null'], $type, array($this, 'filterCallbackIsNull'));
243
+ }
244
+ if (isset($cond['moreq'])) {
245
+ return $this->addCallbackFilter($field, $cond['moreq'], $type, array($this, 'filterCallbackIsLessThan'), $inverted);
246
+ }
247
+ if (isset($cond['gt'])) {
248
+ return $this->addCallbackFilter($field, $cond['gt'], $type, array($this, 'filterCallbackIsMoreThan'));
249
+ }
250
+ if (isset($cond['lt'])) {
251
+ return $this->addCallbackFilter($field, $cond['lt'], $type, array($this, 'filterCallbackIsLessThan'));
252
+ }
253
+ if (isset($cond['gteq'])) {
254
+ return $this->addCallbackFilter($field, $cond['gteq'], $type, array($this, 'filterCallbackIsLessThan'), $inverted);
255
+ }
256
+ if (isset($cond['lteq'])) {
257
+ return $this->addCallbackFilter($field, $cond['lteq'], $type, array($this, 'filterCallbackIsMoreThan'), $inverted);
258
+ }
259
+ if (isset($cond['finset'])) {
260
+ $filterValue = ($cond['finset'] ? explode(',', $cond['finset']) : array());
261
+ return $this->addCallbackFilter($field, $filterValue, $type, array($this, 'filterCallbackInArray'));
262
+ }
263
+
264
+ // add OR recursively
265
+ foreach ($cond as $orCond) {
266
+ $this->_addFilterBracket('(', 'and' === $type);
267
+ $this->addFieldToFilter($field, $orCond, 'or');
268
+ $this->_addFilterBracket(')');
269
+ }
270
+ return $this;
271
+ }
272
+
273
+ /**
274
+ * Prepare a bracket into filters
275
+ *
276
+ * @param string $bracket
277
+ * @param bool $isAnd
278
+ * @return Varien_Data_Collection_Filesystem
279
+ */
280
+ protected function _addFilterBracket($bracket = '(', $isAnd = true)
281
+ {
282
+ $this->_filterBrackets[$this->_filterIncrement] = array(
283
+ 'value' => $bracket === ')' ? ')' : '(',
284
+ 'is_and' => $isAnd,
285
+ );
286
+ $this->_filterIncrement++;
287
+ return $this;
288
+ }
289
+
290
+ /**
291
+ * Render condition sign before element, if required
292
+ *
293
+ * @param int $increment
294
+ * @param bool $isAnd
295
+ * @return string
296
+ */
297
+ protected function _renderConditionBeforeFilterElement($increment, $isAnd)
298
+ {
299
+ if (isset($this->_filterBrackets[$increment]) && ')' === $this->_filterBrackets[$increment]['value']) {
300
+ return '';
301
+ }
302
+ $prevIncrement = $increment - 1;
303
+ $prevBracket = false;
304
+ if (isset($this->_filterBrackets[$prevIncrement])) {
305
+ $prevBracket = $this->_filterBrackets[$prevIncrement]['value'];
306
+ }
307
+ if ($prevIncrement < 0 || $prevBracket === '(') {
308
+ return '';
309
+ }
310
+ return ($isAnd ? ' && ' : ' || ');
311
+ }
312
+
313
+ /**
314
+ * Does nothing. Intentionally disabled parent method
315
+ *
316
+ * @return Varien_Data_Collection_Filesystem
317
+ */
318
+ public function addFilter($field, $value, $type = 'and')
319
+ {
320
+ return $this;
321
+ }
322
+
323
+ /**
324
+ * Callback method for 'like' fancy filter
325
+ *
326
+ * @param string $field
327
+ * @param mixed $filterValue
328
+ * @param array $row
329
+ * @return bool
330
+ * @see addFieldToFilter()
331
+ * @see addCallbackFilter()
332
+ */
333
+ public function filterCallbackLike($field, $filterValue, $row)
334
+ {
335
+ // removing single quotes, added by filter for mysql query: "'%FILTER_TEXT%'"
336
+ $filterValue = preg_replace("/(^')(.*)('$)/", "$2", $filterValue);
337
+
338
+ $filterValueRegex = str_replace('%', '(.*?)', preg_quote($filterValue, '/'));
339
+ return (bool)preg_match("/^{$filterValueRegex}$/i", $row[$field]);
340
+ }
341
+
342
+ /**
343
+ * Callback method for 'eq' fancy filter
344
+ *
345
+ * @param string $field
346
+ * @param mixed $filterValue
347
+ * @param array $row
348
+ * @return bool
349
+ * @see addFieldToFilter()
350
+ * @see addCallbackFilter()
351
+ */
352
+ public function filterCallbackEq($field, $filterValue, $row)
353
+ {
354
+ return $filterValue == $row[$field];
355
+ }
356
+
357
+ /**
358
+ * Callback method for 'in' fancy filter
359
+ *
360
+ * @param string $field
361
+ * @param mixed $filterValue
362
+ * @param array $row
363
+ * @return bool
364
+ * @see addFieldToFilter()
365
+ * @see addCallbackFilter()
366
+ */
367
+ public function filterCallbackInArray($field, $filterValue, $row)
368
+ {
369
+ return in_array($row[$field], $filterValue);
370
+ }
371
+
372
+ /**
373
+ * Callback method for 'isnull' fancy filter
374
+ *
375
+ * @param string $field
376
+ * @param mixed $filterValue
377
+ * @param array $row
378
+ * @return bool
379
+ * @see addFieldToFilter()
380
+ * @see addCallbackFilter()
381
+ */
382
+ public function filterCallbackIsNull($field, $filterValue, $row)
383
+ {
384
+ return null === $row[$field];
385
+ }
386
+
387
+ /**
388
+ * Callback method for 'moreq' fancy filter
389
+ *
390
+ * @param string $field
391
+ * @param mixed $filterValue
392
+ * @param array $row
393
+ * @return bool
394
+ * @see addFieldToFilter()
395
+ * @see addCallbackFilter()
396
+ */
397
+ public function filterCallbackIsMoreThan($field, $filterValue, $row)
398
+ {
399
+ return $row[$field] > $filterValue;
400
+ }
401
+
402
+ /**
403
+ * Callback method for 'lteq' fancy filter
404
+ *
405
+ * @param string $field
406
+ * @param mixed $filterValue
407
+ * @param array $row
408
+ * @return bool
409
+ * @see addFieldToFilter()
410
+ * @see addCallbackFilter()
411
+ */
412
+ public function filterCallbackIsLessThan($field, $filterValue, $row)
413
+ {
414
+ return $row[$field] < $filterValue;
415
+ }
416
+ }
app/code/community/TM/Core/controllers/Adminhtml/Tmcore/SupportController.php ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Core_Adminhtml_Tmcore_SupportController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ protected function _initAction()
6
+ {
7
+ $this->loadLayout()
8
+ ->_setActiveMenu('templates_master/tmcore_module')
9
+ ->_addBreadcrumb('Templates Master', 'Templates Master')
10
+ ->_addBreadcrumb(Mage::helper('tmcore')->__('Support'), Mage::helper('tmcore')->__('Support'));
11
+ return $this;
12
+ }
13
+
14
+ /**
15
+ *
16
+ * @return string (uri)
17
+ */
18
+ protected function _getApiHost()
19
+ {
20
+ // return 'http://mage.local';
21
+ return Mage::getStoreConfig('tmcore/troubleshooting/url');
22
+ }
23
+
24
+ /**
25
+ *
26
+ * @return Zend_Oauth_Client
27
+ */
28
+ protected function _getRestApiClient()
29
+ {
30
+ $oAuthClient = Mage::getModel('tmcore/oauth_client');
31
+ $params = $oAuthClient->getConfigFromSession();
32
+ if (!$params) {
33
+ return false;
34
+ }
35
+ $oAuthClient->init($params);
36
+ $state = $oAuthClient->authenticate();
37
+ if ($state == TM_Core_Model_Oauth_Client::OAUTH_STATE_ACCESS_TOKEN) {
38
+ $accessToken = $oAuthClient->getAuthorizedToken();
39
+ }
40
+ $restClient = $accessToken->getHttpClient($params);
41
+
42
+ return $restClient;
43
+ }
44
+
45
+ /**
46
+ *
47
+ * @param type $response
48
+ * @return boolean
49
+ */
50
+ protected function _prepareApiRestResponseErrorMessages($response)
51
+ {
52
+ if (!is_object($response) || !property_exists($response, 'messages')) {
53
+ return false;
54
+ }
55
+ $messages = $response->messages;
56
+ if ($messages) {
57
+ $errors = $messages->error;
58
+ if ($errors) {
59
+ foreach ($errors as $error) {
60
+ Mage::getSingleton('adminhtml/session')->addError(
61
+ $error->message
62
+ );
63
+ }
64
+ // $this->_redirectReferer();
65
+ // die;
66
+ return true;
67
+ }
68
+ }
69
+ return false;
70
+ }
71
+
72
+ /**
73
+ *
74
+ * @param string $uri
75
+ * @return \Varien_Object|\TM_Core_Model_Resource_Support_Collection
76
+ */
77
+ protected function _getRestApiData($uri)
78
+ {
79
+ $restClient = $this->_getRestApiClient();
80
+
81
+ if (!$restClient) {
82
+ return false;
83
+ }
84
+
85
+ $restClient->setHeaders('Accept', 'application/json');
86
+ $restClient->setMethod(Zend_Http_Client::GET);
87
+
88
+ $host = $this->_getApiHost();
89
+ $restClient->setUri($host . '/api/rest' . $uri);
90
+
91
+ $response = $restClient->request();
92
+ $_items = json_decode($response->getBody());
93
+
94
+ $this->_prepareApiRestResponseErrorMessages($_items);
95
+
96
+ if (is_array($_items)) {
97
+ $collection = new TM_Core_Model_Resource_Support_Collection();
98
+ foreach ($_items as &$_item) {
99
+ $_item = (array)$_item;
100
+ }
101
+ $collection->setFromArray($_items);
102
+ return $collection;
103
+ }
104
+ $object = new Varien_Object();
105
+ $object->setData((array)$_items);
106
+ return $object;
107
+ }
108
+
109
+ /**
110
+ *
111
+ * @param type $uri
112
+ * @param type $params
113
+ * @return type
114
+ */
115
+ protected function _setRestApiData($uri, $params)
116
+ {
117
+ $restClient = $this->_getRestApiClient();
118
+
119
+ if (!$restClient) {
120
+ return false;
121
+ }
122
+
123
+ $restClient->setHeaders('Accept', 'application/json');
124
+ $restClient->setHeaders('Content-Type','application/json');
125
+ $restClient->setEncType('application/json');
126
+ $restClient->setMethod(Zend_Http_Client::POST);
127
+
128
+ $host = $this->_getApiHost();
129
+ $restClient->setUri($host . '/api/rest' . $uri);
130
+
131
+ $restClient->setRawData(json_encode($params));
132
+
133
+ $response = $restClient->request();
134
+ $object = json_decode($response->getBody());
135
+
136
+ $this->_prepareApiRestResponseErrorMessages($object);
137
+
138
+ return $object;
139
+ }
140
+
141
+ public function oauthAction()
142
+ {
143
+ $host = $this->_getApiHost();
144
+ $consumerKey = Mage::getStoreConfig('tmcore/troubleshooting/consumer_key');
145
+ $consumerSecret = Mage::getStoreConfig('tmcore/troubleshooting/consumer_secret');
146
+ //Basic parameters that need to be provided for oAuth authentication
147
+ //on Magento
148
+ $params = array(
149
+ 'siteUrl' => "{$host}/oauth",
150
+ 'requestTokenUrl' => "{$host}/oauth/initiate",
151
+ 'accessTokenUrl' => "{$host}/oauth/token",
152
+ 'authorizeUrl' => "{$host}/oauth/authorize",
153
+ // 'authorizeUrl' => "{$magentohost}/admin/oauth_authorize", //This URL is used only if we authenticate as Admin user type
154
+ 'consumerKey' => $consumerKey, //Consumer key registered in server administration
155
+ 'consumerSecret' => $consumerSecret, //Consumer secret registered in server administration
156
+ 'callbackUrl' => $this->getUrl('*/*/index')//Url of callback action below
157
+ );
158
+ $oAuthClient = Mage::getModel('tmcore/oauth_client');
159
+ $oAuthClient->reset();
160
+ $oAuthClient->init($params);
161
+ $oAuthClient->authenticate();
162
+ }
163
+
164
+ public function indexAction()
165
+ {
166
+ $collection = $this->_getRestApiData('/helpdesk/tickets');
167
+
168
+ if (empty($collection)) {
169
+ return $this->_redirect('*/*/oauth');
170
+ }
171
+ Mage::register('tmcore_support_collection', $collection);
172
+
173
+ $model = new Varien_Object();
174
+
175
+ $model->setDepartmets(
176
+ $this->_getRestApiData("/helpdesk/departments")
177
+ );
178
+
179
+ $model->setStatuses(
180
+ $this->_getRestApiData("/helpdesk/statuses")
181
+ );
182
+
183
+ $model->setPriorities(
184
+ $this->_getRestApiData("/helpdesk/priorities")
185
+ );
186
+
187
+ Mage::register('tmcore_support', $model);
188
+
189
+ $this->_initAction();
190
+ $this->renderLayout();
191
+ }
192
+
193
+ public function editAction()
194
+ {
195
+ $ticketId = $this->getRequest()->getParam('ticket_id');
196
+
197
+ $model = $this->_getRestApiData("/helpdesk/tickets/{$ticketId}");
198
+
199
+ if (empty($model)) {
200
+ return $this->_redirect('*/*/oauth');
201
+ }
202
+
203
+ $model->setTheards(
204
+ $this->_getRestApiData("/helpdesk/tickets/{$ticketId}/theards")
205
+ );
206
+
207
+ $model->setDepartmets(
208
+ $this->_getRestApiData("/helpdesk/departments")
209
+ );
210
+
211
+ $model->setStatuses(
212
+ $this->_getRestApiData("/helpdesk/statuses")
213
+ );
214
+
215
+ $model->setPriorities(
216
+ $this->_getRestApiData("/helpdesk/priorities")
217
+ );
218
+
219
+ Mage::register('tmcore_support', $model);
220
+
221
+ $this->_initAction();
222
+ $this->renderLayout();
223
+ }
224
+
225
+ public function newAction()
226
+ {
227
+ $model = new Varien_Object();
228
+ $model->setDepartmets(
229
+ $this->_getRestApiData("/helpdesk/departments")
230
+ );
231
+
232
+ $model->setStatuses(
233
+ $this->_getRestApiData("/helpdesk/statuses")
234
+ );
235
+
236
+ $model->setPriorities(
237
+ $this->_getRestApiData("/helpdesk/priorities")
238
+ );
239
+
240
+ Mage::register('tmcore_support', $model);
241
+
242
+ $this->_initAction();
243
+ $this->renderLayout();
244
+ }
245
+
246
+ public function saveAction()
247
+ {
248
+ $params = $this->getRequest()->getParams();
249
+ $ticketId = $this->getRequest()->getParam('id');
250
+ // $text = $this->getRequest()->getParam('text');
251
+ if (empty($params['text'])) {
252
+ throw new Exception('text is null');
253
+ }
254
+ //save ticket
255
+ if (empty($ticketId)) {
256
+ $response = $this->_setRestApiData("/helpdesk/tickets", array(
257
+ 'title' => $params['title'],
258
+ 'department_id' => $params['department_id'],
259
+ 'priority' => $params['priority'],
260
+ 'text' => $params['text'],
261
+ ));
262
+ } else { //save theard
263
+ $response = $this->_setRestApiData(
264
+ "/helpdesk/tickets/{$ticketId}/theards",
265
+ array('text' => $params['text'])
266
+ );
267
+ }
268
+ // $messages = $response->messages;
269
+ // if ($messages) {
270
+ // $errors = $messages->error;
271
+ // if ($errors) {
272
+ // foreach ($errors as $error) {
273
+ // Mage::getSingleton('adminhtml/session')->addError($error->message);
274
+ // }
275
+ // }
276
+ // }
277
+ Mage::getSingleton('adminhtml/session')->addSuccess(
278
+ Mage::helper('tmcore')->__('Item was successfully saved')
279
+ );
280
+ $this->_redirectReferer();
281
+ }
282
+ }
app/code/community/TM/Core/etc/adminhtml.xml CHANGED
@@ -5,9 +5,15 @@
5
  <title>Templates Master</title>
6
  <sort_order>71</sort_order>
7
  <children>
 
 
 
 
 
 
8
  <tmcore_module translate="title" module="tmcore">
9
  <title>Modules</title>
10
- <sort_order>999</sort_order>
11
  <action>adminhtml/tmcore_module/index</action>
12
  </tmcore_module>
13
  </children>
@@ -32,9 +38,13 @@
32
  <title>Templates Master</title>
33
  <sort_order>71</sort_order>
34
  <children>
 
 
 
 
35
  <tmcore_module translate="title" module="tmcore">
36
  <title>Modules</title>
37
- <sort_order>999</sort_order>
38
  </tmcore_module>
39
  </children>
40
  </templates_master>
5
  <title>Templates Master</title>
6
  <sort_order>71</sort_order>
7
  <children>
8
+ <!-- <tmcore_support translate="title" module="tmcore">
9
+ <title>Support</title>
10
+ <sort_order>1339</sort_order>
11
+ <action>adminhtml/tmcore_support/index</action>
12
+ </tmcore_support>-->
13
+
14
  <tmcore_module translate="title" module="tmcore">
15
  <title>Modules</title>
16
+ <sort_order>1340</sort_order>
17
  <action>adminhtml/tmcore_module/index</action>
18
  </tmcore_module>
19
  </children>
38
  <title>Templates Master</title>
39
  <sort_order>71</sort_order>
40
  <children>
41
+ <!-- <tmcore_support translate="title" module="tmcore">
42
+ <title>Support</title>
43
+ <sort_order>11</sort_order>
44
+ </tmcore_support> -->
45
  <tmcore_module translate="title" module="tmcore">
46
  <title>Modules</title>
47
+ <sort_order>1340</sort_order>
48
  </tmcore_module>
49
  </children>
50
  </templates_master>
app/code/community/TM/Core/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <TM_Core>
5
- <version>1.2.0</version>
6
  </TM_Core>
7
  </modules>
8
 
@@ -41,6 +41,17 @@
41
  </connection>
42
  </tm_core_setup>
43
  </resources>
 
 
 
 
 
 
 
 
 
 
 
44
  </global>
45
 
46
  <adminhtml>
@@ -75,9 +86,14 @@
75
  <title>Templates Master</title>
76
  <sort_order>71</sort_order>
77
  <children>
 
 
 
 
 
78
  <tmcore_module translate="title" module="tmcore">
79
  <title>Modules</title>
80
- <sort_order>999</sort_order>
81
  <action>adminhtml/tmcore_module/index</action>
82
  </tmcore_module>
83
  </children>
@@ -102,9 +118,13 @@
102
  <title>Templates Master</title>
103
  <sort_order>71</sort_order>
104
  <children>
 
 
 
 
105
  <tmcore_module translate="title" module="tmcore">
106
  <title>Modules</title>
107
- <sort_order>999</sort_order>
108
  </tmcore_module>
109
  </children>
110
  </templates_master>
@@ -129,7 +149,7 @@
129
  <default>
130
  <tmcore>
131
  <modules>
132
- <feed_url>templates-master.com/modules</feed_url>
133
  </modules>
134
  <license>
135
  <use_https>0</use_https>
@@ -144,6 +164,9 @@
144
  </notification>
145
  <troubleshooting>
146
  <text><![CDATA[Please <a href='http://templates-master.com/contacts' onclick='window.open(this.href); return false;'>contact us</a>, if you have some issues with one of our modules.]]></text>
 
 
 
147
  </troubleshooting>
148
  </tmcore>
149
  </default>
2
  <config>
3
  <modules>
4
  <TM_Core>
5
+ <version>1.2.1</version>
6
  </TM_Core>
7
  </modules>
8
 
41
  </connection>
42
  </tm_core_setup>
43
  </resources>
44
+ <events>
45
+ <core_layout_update_updates_get_after>
46
+ <observers>
47
+ <tm_layout>
48
+ <type>model</type>
49
+ <class>tmcore/observer</class>
50
+ <method>addLayoutUpdate</method>
51
+ </tm_layout>
52
+ </observers>
53
+ </core_layout_update_updates_get_after>
54
+ </events>
55
  </global>
56
 
57
  <adminhtml>
86
  <title>Templates Master</title>
87
  <sort_order>71</sort_order>
88
  <children>
89
+ <!-- <tmcore_support translate="title" module="tmcore">
90
+ <title>Support</title>
91
+ <sort_order>11</sort_order>
92
+ <action>adminhtml/tmcore_support/index</action>
93
+ </tmcore_support> -->
94
  <tmcore_module translate="title" module="tmcore">
95
  <title>Modules</title>
96
+ <sort_order>1340</sort_order>
97
  <action>adminhtml/tmcore_module/index</action>
98
  </tmcore_module>
99
  </children>
118
  <title>Templates Master</title>
119
  <sort_order>71</sort_order>
120
  <children>
121
+ <!-- <tmcore_support translate="title" module="tmcore">
122
+ <title>Support</title>
123
+ <sort_order>11</sort_order>
124
+ </tmcore_support> -->
125
  <tmcore_module translate="title" module="tmcore">
126
  <title>Modules</title>
127
+ <sort_order>1340</sort_order>
128
  </tmcore_module>
129
  </children>
130
  </templates_master>
149
  <default>
150
  <tmcore>
151
  <modules>
152
+ <feed_url>templates-master.com/modules.json</feed_url>
153
  </modules>
154
  <license>
155
  <use_https>0</use_https>
164
  </notification>
165
  <troubleshooting>
166
  <text><![CDATA[Please <a href='http://templates-master.com/contacts' onclick='window.open(this.href); return false;'>contact us</a>, if you have some issues with one of our modules.]]></text>
167
+ <url>http://templates-master.com/</url>
168
+ <consumer_key>b96f1fdbcc5df5608bab036f23caead2</consumer_key>
169
+ <consumer_secret>b17bb7641ffcdb267264b39460eee8ae</consumer_secret>
170
  </troubleshooting>
171
  </tmcore>
172
  </default>
app/code/community/TM/Core/etc/system.xml CHANGED
@@ -11,7 +11,7 @@
11
  <label>Core</label>
12
  <tab>templates_master</tab>
13
  <frontend_type>text</frontend_type>
14
- <sort_order>11</sort_order>
15
  <show_in_default>1</show_in_default>
16
  <show_in_website>1</show_in_website>
17
  <show_in_store>1</show_in_store>
@@ -34,7 +34,7 @@
34
  <show_in_website>0</show_in_website>
35
  <show_in_store>0</show_in_store>
36
  </modules>
37
- <notification translate="label" module="adminnotification">
38
  <label>Notifications</label>
39
  <frontend_type>text</frontend_type>
40
  <sort_order>30</sort_order>
11
  <label>Core</label>
12
  <tab>templates_master</tab>
13
  <frontend_type>text</frontend_type>
14
+ <sort_order>340</sort_order>
15
  <show_in_default>1</show_in_default>
16
  <show_in_website>1</show_in_website>
17
  <show_in_store>1</show_in_store>
34
  <show_in_website>0</show_in_website>
35
  <show_in_store>0</show_in_store>
36
  </modules>
37
+ <notification translate="label" module="tmcore">
38
  <label>Notifications</label>
39
  <frontend_type>text</frontend_type>
40
  <sort_order>30</sort_order>
app/code/community/TM/Core/sql/tm_core_setup/mysql4-install-1.0.0.php CHANGED
@@ -8,16 +8,19 @@ $installer->startSetup();
8
  /**
9
  * Create table 'tmcore/module'
10
  */
 
 
 
11
  $table = $installer->getConnection()
12
  ->newTable($installer->getTable('tmcore/module'))
13
- ->addColumn('code', Varien_Db_Ddl_Table::TYPE_TEXT, 50, array(
14
  'nullable' => false,
15
  'primary' => true,
16
  )
17
  )
18
  // ->addColumn('version', Varien_Db_Ddl_Table::TYPE_TEXT, 50)
19
- ->addColumn('data_version', Varien_Db_Ddl_Table::TYPE_TEXT, 50)
20
- ->addColumn('license_key', Varien_Db_Ddl_Table::TYPE_TEXT, 32);
21
  $installer->getConnection()->createTable($table);
22
 
23
  $installer->endSetup();
8
  /**
9
  * Create table 'tmcore/module'
10
  */
11
+ $typeText = defined('Varien_Db_Ddl_Table::TYPE_TEXT')
12
+ ? Varien_Db_Ddl_Table::TYPE_TEXT : Varien_Db_Ddl_Table::TYPE_VARCHAR;
13
+
14
  $table = $installer->getConnection()
15
  ->newTable($installer->getTable('tmcore/module'))
16
+ ->addColumn('code', $typeText, 50, array(
17
  'nullable' => false,
18
  'primary' => true,
19
  )
20
  )
21
  // ->addColumn('version', Varien_Db_Ddl_Table::TYPE_TEXT, 50)
22
+ ->addColumn('data_version', $typeText, 50)
23
+ ->addColumn('license_key', $typeText, 32);
24
  $installer->getConnection()->createTable($table);
25
 
26
  $installer->endSetup();
app/code/local/TM/Templatef001/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <TM_Templatef001>
5
- <version>1.7.0.0</version>
6
  </TM_Templatef001>
7
  </modules>
8
  <global>
@@ -17,4 +17,13 @@
17
  </templatef001_setup>
18
  </resources>
19
  </global>
20
- </config>
 
 
 
 
 
 
 
 
 
2
  <config>
3
  <modules>
4
  <TM_Templatef001>
5
+ <version>2.0.0</version>
6
  </TM_Templatef001>
7
  </modules>
8
  <global>
17
  </templatef001_setup>
18
  </resources>
19
  </global>
20
+ <frontend>
21
+ <tm_layout>
22
+ <updates>
23
+ <f001_custom condition="tmcore/isDesignPackageEquals" args="f001">
24
+ <file>custom.xml</file>
25
+ </f001_custom>
26
+ </updates>
27
+ </tm_layout>
28
+ </frontend>
29
+ </config>
app/code/local/TM/Templatef001/upgrades/2.0.0.php ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class TM_Templatef001_Upgrade_2_0_0 extends TM_Core_Model_Module_Upgrade
4
+ {
5
+ /**
6
+ * Create featured products, if they are not exists
7
+ */
8
+ public function up()
9
+ {
10
+ $visibility = Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds();
11
+ foreach ($this->getStoreIds() as $storeId) {
12
+ if ($storeId) {
13
+ $store = Mage::app()->getStore($storeId);
14
+ } else {
15
+ $store = Mage::app()->getDefaultStoreView();
16
+ }
17
+ if (!$store) {
18
+ continue;
19
+ }
20
+ $storeId = $store->getId();
21
+ $rootCategory = Mage::getModel('catalog/category')->load($store->getRootCategoryId());
22
+
23
+ if (!$rootCategory) {
24
+ continue;
25
+ }
26
+ /**
27
+ * @var Mage_Catalog_Model_Resource_Product_Collection
28
+ */
29
+ $visibleProducts = Mage::getResourceModel('catalog/product_collection');
30
+ $visibleProducts
31
+ ->setStoreId($storeId)
32
+ ->setVisibility($visibility)
33
+ ->addStoreFilter($storeId)
34
+ ->addCategoryFilter($rootCategory)
35
+ ->addAttributeToSort('entity_id', 'desc')
36
+ ->setPageSize(10)
37
+ ->setCurPage(1);
38
+
39
+ if (!$visibleProducts->count()) {
40
+ continue;
41
+ }
42
+
43
+ foreach ($visibleProducts as $product) {
44
+ $product->load($product->getId());
45
+ }
46
+
47
+ // get existing featured products
48
+ $featured = Mage::getResourceModel('catalog/product_collection');
49
+ $featured
50
+ ->setStoreId($storeId)
51
+ ->setVisibility($visibility)
52
+ ->addStoreFilter($storeId)
53
+ ->addCategoryFilter($rootCategory)
54
+ ->setPageSize(1)
55
+ ->setCurPage(1);
56
+
57
+ $attributeCode = 'featured';
58
+ if (!$featured->getAttribute($attributeCode)) { // Mage 1.6.0.0 fix
59
+ return;
60
+ }
61
+ $featured->addAttributeToFilter("{$attributeCode}", array('Yes' => true));
62
+
63
+ if (!$featured->count()) {
64
+ foreach ($visibleProducts as $product) {
65
+ // attribute should be saved in global scope
66
+ if (!in_array(Mage_Catalog_Model_Abstract::DEFAULT_STORE_ID, $this->getStoreIds())) {
67
+ $product->addAttributeUpdate($attributeCode, 0, Mage_Catalog_Model_Abstract::DEFAULT_STORE_ID);
68
+ }
69
+
70
+ $product->setStoreId($storeId);
71
+ $product->setFeatured(1);
72
+ $product->save();
73
+ }
74
+ }
75
+ }
76
+ }
77
+
78
+ public function getOperations()
79
+ {
80
+ return array(
81
+ 'configuration' => $this->_getConfiguration(),
82
+ 'cmsblock' => $this->_getCmsBlocks(),
83
+ 'cmspage' => $this->_getCmsPages(),
84
+ 'productAttribute' => $this->_getProductAttribute()
85
+ );
86
+ }
87
+
88
+ private function _getConfiguration()
89
+ {
90
+ return array(
91
+ 'design' => array(
92
+ 'package/name' => 'f001',
93
+ 'theme' => array(
94
+ 'template' => '',
95
+ 'skin' => '',
96
+ 'layout' => ''
97
+ )
98
+ ),
99
+ 'catalog/product_image/small_width' => 135
100
+ );
101
+ }
102
+
103
+ private function _getCmsBlocks()
104
+ {
105
+ return array(
106
+ 'contacts' => array(
107
+ 'title' => 'contacts',
108
+ 'identifier' => 'contacts',
109
+ 'status' => 1,
110
+ 'content' => <<<HTML
111
+ Company Name | USA, NY, Street Address | Phone: 1-800-000-0000
112
+ HTML
113
+ ),
114
+ 'menu' => array(
115
+ 'title' => 'menu',
116
+ 'identifier' => 'menu',
117
+ 'status' => 1,
118
+ 'content' => <<<HTML
119
+ <li class="nav-about"><a href="{{store url="about"}}"><span>About Us</span></a></li>
120
+ <li class="nav-contacts last"><a href="{{store url="contacts"}}"><span>Contact Us</span></a></li>
121
+ HTML
122
+ ),
123
+ 'footer_links' => array(
124
+ 'title' => 'footer_links',
125
+ 'identifier' => 'footer_links',
126
+ 'status' => 1,
127
+ 'content' => <<<HTML
128
+ <div class="box informational">
129
+ <ul>
130
+ <li><h6>About us</h6>
131
+ <ul>
132
+ <li><a href="{{store direct_url="about"}}">About Us</a></li>
133
+ <li><a href="{{store direct_url="our-company"}}">Our company</a></li>
134
+ <li><a href="{{store direct_url="catalog/seo_sitemap/category"}}">Sitemap</a></li>
135
+ </ul>
136
+ </li>
137
+ <li><h6>Customer information</h6>
138
+ <ul>
139
+ <li><a href="{{store direct_url="contacts"}}">Contact Us</a></li>
140
+ <li><a href="{{store direct_url="price-matching"}}">Price matching</a></li>
141
+ <li><a href="{{store direct_url="testimonials"}}">Testimonials</a></li>
142
+ </ul>
143
+ </li>
144
+ <li><h6>Security &amp; privacy</h6>
145
+ <ul>
146
+ <li><a href="{{store direct_url="privacy"}}">Privacy Policy</a></li>
147
+ <li><a href="{{store direct_url="safe-shopping"}}">Safe &amp; secure shopping</a></li>
148
+ <li><a href="{{store direct_url="terms"}}">Terms &amp; conditions</a></li>
149
+ </ul>
150
+ </li>
151
+ <li class="last"><h6>Shipping &amp; returns</h6>
152
+ <ul>
153
+ <li><a href="{{store direct_url="delivery"}}">Delivery information</a></li>
154
+ <li><a href="{{store direct_url="guarantees"}}">Satisfaction guarantee</a></li>
155
+ <li><a href="{{store direct_url="returns"}}">Returns policy</a></li>
156
+ </ul>
157
+ </li>
158
+ </ul>
159
+ </div>
160
+ HTML
161
+ )
162
+ );
163
+ }
164
+
165
+ private function _getCmsPages()
166
+ {
167
+ return array(
168
+ 'home' => array(
169
+ 'title' => 'home',
170
+ 'identifier' => 'home',
171
+ 'root_template' => 'two_columns_right',
172
+ 'meta_keywords' => '',
173
+ 'meta_description' => '',
174
+ 'content_heading' => '',
175
+ 'is_active' => 1,
176
+ 'content' => <<<HTML
177
+ <div id="slider">
178
+ <div class="slidercontrolwr">
179
+ <div class="slidercontrol">
180
+ <a href="#section1" title="Slide 1" class="">1</a>
181
+ <a href="#section2" title="Slide 2" class="">2</a>
182
+ <a href="#section3" title="Slide 3" class="">3</a>
183
+ <a href="#section4" title="Slide 4" class="">4</a>
184
+ <a href="#section5" title="Slide 5" class="">5</a>
185
+ </div>
186
+ </div>
187
+ <div class="scroller">
188
+ <div class="content">
189
+ <div class="sectionslide" id="section1">
190
+ <a href="{{store url=""}}"><img src="{{skin url="images/slider/slider1.jpg"}}" alt="" /></a>
191
+ </div>
192
+ <div class="sectionslide" id="section2">
193
+ <a href="{{store url=""}}"><img src="{{skin url="images/slider/slider2.jpg"}}" alt="" /></a>
194
+ </div>
195
+ <div class="sectionslide" id="section3">
196
+ <a href="{{store url=""}}"><img src="{{skin url="images/slider/slider3.jpg"}}" alt="" /></a>
197
+ </div>
198
+ <div class="sectionslide" id="section4">
199
+ <a href="{{store url=""}}"><img src="{{skin url="images/slider/slider4.jpg"}}" alt="" /></a>
200
+ </div>
201
+ <div class="sectionslide" id="section5">
202
+ <a href="{{store url=""}}"><img src="{{skin url="images/slider/slider5.jpg"}}" alt="" /></a>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ <script type="text/javascript" charset="utf-8">
208
+ var my_glider = new Glider('slider', {duration:0.5, autoGlide: true, frequency: 4, initialSection: 'section1'});
209
+ </script>
210
+ HTML
211
+ ,
212
+ 'layout_update_xml' => <<<HTML
213
+ <reference name="head">
214
+ <action method="addItem"><type>skin_js</type><name>js/glider.js</name></action>
215
+ <action method="addItem"><type>skin_js</type><name>js/slider.js</name></action>
216
+ <action method="addItem"><type>skin_js</type><name>js/productInfo.js</name></action>
217
+ </reference>
218
+ <reference name="content">
219
+ <block type="catalog/product_new" name="home.new" alias="product_new" template="catalog/product/new.phtml">
220
+ <action method="setProductsCount"><count>8</count></action>
221
+ <action method="addPriceBlockType">
222
+ <type>bundle</type>
223
+ <block>bundle/catalog_product_price</block>
224
+ <template>bundle/catalog/product/price.phtml</template>
225
+ </action>
226
+ </block>
227
+ </reference>
228
+ <reference name="right">
229
+ <block type="core/template" name="right.callout1" template="callouts/left_col.phtml" before="-">
230
+ <action method="setImgSrc"><src>images/media/callout_side1.jpg</src></action>
231
+ <action method="setImgAlt" translate="alt" module="catalog"><alt>Call Us Toll Free. (555) 555-555</alt></action>
232
+ <action method="setLinkUrl"><url>checkout/cart</url></action>
233
+ </block>
234
+ <block type="core/template" name="right.callout2" template="callouts/left_col.phtml" after="right.callout1">
235
+ <action method="setImgSrc"><src>images/media/callout_side2.jpg</src></action>
236
+ <action method="setImgAlt" translate="alt" module="catalog"><alt>Free domestic shippings</alt></action>
237
+ <action method="setLinkUrl"><url>checkout/cart</url></action>
238
+ </block>
239
+ <block type="newsletter/subscribe" name="right.newsletter" template="newsletter/subscribe.phtml" after="right.callout2"/>
240
+ <block type="tag/popular" name="tags_popular" template="tag/popular.phtml"/>
241
+ </reference>
242
+ <reference name="before_footer">
243
+ <block type="featured/featured" name="home.featured" template="catalog/product/featured.phtml">
244
+ <action method="setProductsCount"><count>25</count></action>
245
+ </block>
246
+ </reference>
247
+ HTML
248
+ )
249
+ );
250
+ }
251
+
252
+ private function _getProductAttribute()
253
+ {
254
+ return array(
255
+ array(
256
+ 'attribute_code' => 'featured',
257
+ 'frontend_label' => array('Featured'),
258
+ 'default_value' => 0
259
+ )
260
+ );
261
+ }
262
+ }
app/design/adminhtml/default/default/layout/tmcore.xml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout>
3
+ <adminhtml_tmcore_module_index>
4
+ <update handle="tmcore_popup"/>
5
+ <reference name="content">
6
+ <block type="tmcore/adminhtml_module" name="module.list"/>
7
+ </reference>
8
+ </adminhtml_tmcore_module_index>
9
+
10
+ <adminhtml_tmcore_module_grid>
11
+ <block type="tmcore/adminhtml_module_grid" name="root" output="toHtml"/>
12
+ </adminhtml_tmcore_module_grid>
13
+
14
+ <adminhtml_tmcore_module_manage>
15
+ <reference name="content">
16
+ <block type="tmcore/adminhtml_module_manage" name="module.manage"/>
17
+ </reference>
18
+ <reference name="left">
19
+ <block type="tmcore/adminhtml_module_manage_tabs" name="tmcore_module_manage_tabs">
20
+ <block type="tmcore/adminhtml_module_manage_tab_main" name="tmcore_module_manage_tab_main" />
21
+ <action method="addTab"><name>main_section</name><block>tmcore_module_manage_tab_main</block></action>
22
+ </block>
23
+ </reference>
24
+ </adminhtml_tmcore_module_manage>
25
+
26
+ <tmcore_popup>
27
+ <reference name="head">
28
+ <action method="addJs"><script>tm/adminhtml/core/window.js</script></action>
29
+ </reference>
30
+ <reference name="content">
31
+ <block type="core/template" name="tmcore.popup" template="tmcore/popup.phtml"/>
32
+ </reference>
33
+ </tmcore_popup>
34
+
35
+ <adminhtml_tmcore_support_index>
36
+ <reference name="content">
37
+ <block type="tmcore/adminhtml_support_list" name="support.list"/>
38
+ </reference>
39
+ </adminhtml_tmcore_support_index>
40
+
41
+ <adminhtml_tmcore_support_edit>
42
+ <reference name="content">
43
+ <block type="tmcore/adminhtml_support_edit" name="support.edit"/>
44
+ </reference>
45
+ <reference name="left">
46
+ <block type="tmcore/adminhtml_support_edit_tabs" name="tmcore_support_edit_tabs">
47
+ <block type="tmcore/adminhtml_support_edit_tab_main" name="adminhtml_support_edit_tab_main" />
48
+ <!-- -->
49
+ <action method="addTab">
50
+ <name>main_section</name>
51
+ <block>adminhtml_support_edit_tab_main</block>
52
+ </action>
53
+ <!-- -->
54
+ </block>
55
+ </reference>
56
+ </adminhtml_tmcore_support_edit>
57
+
58
+ <adminhtml_tmcore_support_new>
59
+ <update handle="adminhtml_tmcore_support_edit"/>
60
+ </adminhtml_tmcore_support_new>
61
+ </layout>
app/design/adminhtml/default/default/template/tmcore/popup.phtml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div id="popup-window-mask" style="display:none;"></div>
2
+ <div id="tmcore_popup" class="product-configure-popup" style="display:none;">
3
+ <div class="entry-edit">
4
+ <div class="entry-edit-head">
5
+ <h4 class="icon-head fieldset-legend" id="tmcore_popup_title"><?php echo Mage::helper('catalog')->__('Window') ?></h4>
6
+ <a href="javascript:void(0)" class="close f-right" onclick="tmcoreWindow.onCloseBtn()"><?php echo Mage::helper('catalog')->__('Close') ?></a>
7
+ </div>
8
+ <div id="tmcore_popup_content" class="content"></div>
9
+ <div class="buttons-set a-right">
10
+ <button type="button" class="scalable close" onclick="tmcoreWindow.onCloseBtn()"><span><span><span><?php echo Mage::helper('catalog')->__('Close') ?></span></span></span></button>
11
+ </div>
12
+ </div>
13
+ </div>
app/design/adminhtml/default/default/template/tmcore/ticket/edit/form/element/theard/content.phtml ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--
2
+ <link rel="stylesheet" href="http://yandex.st/highlightjs/7.2/styles/github.min.css">
3
+ <script src="http://yandex.st/highlightjs/7.2/highlight.min.js"></script>
4
+
5
+ <script type="text/javascript">
6
+ //<![CDATA[
7
+ document.observe("dom:loaded", function() {
8
+ hljs.initHighlightingOnLoad();
9
+ });
10
+ //]]>
11
+ </script>
12
+ -->
13
+
14
+ <div class="entry-edit">
15
+ <ul class="-note-list" style="width: 100%">
16
+ <?php
17
+ $theards = $this->getTheards();
18
+ $previosTheard = current($theards);
19
+ $diff = array();
20
+ foreach ($theards as $_theard): ?>
21
+ <li>
22
+ <strong>
23
+ <?php echo $this->getTheardOwnerTitle($_theard) ?>
24
+ </strong>
25
+ <span class="separator">|</span>
26
+ <strong><?php echo $this->getTheardCreatedAt($_theard) ?></strong>
27
+ <?php echo $this->getTheardCreatedAt($_theard, 'time') ?>
28
+ <span class="separator">|</span>
29
+ <strong title="<?php echo $this->helper('helpmate')->__('Status')?>">
30
+ <?php echo $this->getTheardStatus($_theard)?>
31
+ </strong>
32
+ <span class="separator">|</span>
33
+ <strong title="<?php echo $this->helper('helpmate')->__('Priority')?>">
34
+ <?php echo $this->getTheardPriority($_theard) ?>
35
+ </strong>
36
+ <span class="separator">|</span>
37
+ <strong title="<?php echo $this->helper('helpmate')->__('Departament')?>">
38
+ <?php echo $this->getTheardDepartment($_theard) ?>
39
+ </strong>
40
+
41
+ <?php if ($_text = $this->getTheardText($_theard)): ?>
42
+ <div class="box">
43
+ <?php echo $_text ?>
44
+ </div>
45
+ <?php endif; ?>
46
+ <script type='text/javascript'>
47
+
48
+ document.observe('dom:loaded', function() {
49
+ $$('.theard_content span').each(function(element){
50
+ element.observe('click', function(event) {
51
+ Effect.toggle(this.next('div'), 'blind', {duration: 0.8} );
52
+ });
53
+ element.setStyle('border: 1px solid #D6D6D6; border-bottom:none;background-color: #FFF9E9;display:block;')
54
+ });
55
+ $$('.theard_content div').each(function(element){
56
+ element.hide();
57
+ element.setStyle('border: 1px solid #D6D6D6; border-top:none;background-color: #FFF9E9;')
58
+ });
59
+ });
60
+
61
+ </script>
62
+ <?php if ($_theard['status'] !== $previosTheard['status']) :?>
63
+ <br/><small> <?php echo $this->helper('helpmate')->__(
64
+ 'Status has been changed from %s to %s',
65
+ $this->getTheardStatus($previosTheard),
66
+ $this->getTheardStatus($_theard)
67
+
68
+ ) ?>
69
+ </small>
70
+ <?php endif;
71
+ if ($_theard['priority'] !== $previosTheard['priority']) : ?>
72
+ <br/><small><?php echo $this->helper('helpmate')->__(
73
+ 'Priority has been changed from %s to %s',
74
+ $this->getTheardPriority($previosTheard),
75
+ $this->getTheardPriority($_theard)
76
+ );?>
77
+ </small>
78
+ <?php endif;
79
+ if ($_theard['department_id'] !== $previosTheard['department_id']) : ?>
80
+ <br/><small><?php echo $this->helper('helpmate')->__(
81
+ 'Department has been changed from %s to %s',
82
+ $this->getTheardDepartment($previosTheard),
83
+ $this->getTheardDepartment($_theard)
84
+ ) ?></small>;
85
+
86
+ <?php endif;?>
87
+
88
+ </li>
89
+ <?php
90
+ $previosTheard = $_theard;
91
+ endforeach; ?>
92
+ </ul>
93
+ </div>
app/design/frontend/base/default/layout/tm/configurableswatches.xml ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="head">
5
+ <action method="addJs"><script>lib/jquery/jquery-1.10.2.min.js</script></action>
6
+ <action method="addJs"><script>lib/jquery/noconflict.js</script></action>
7
+ <action method="addItem"><type>skin_js</type><name>js/lib/modernizr.custom.min.js</name></action>
8
+ <action method="addItem"><type>skin_js</type><name>js/lib/imagesloaded.js</name></action>
9
+
10
+ <action method="addItem"><type>skin_js</type><name>tm/configurableswatches/js/app.js</name></action>
11
+ <action method="addItem"><type>skin_css</type><name>tm/configurableswatches/css/swatches.css</name></action>
12
+ </reference>
13
+ </default>
14
+
15
+ <!-- Create missing containers in layered navigation and product_list blocks -->
16
+ <catalog_category_layered>
17
+ <reference name="catalog.leftnav">
18
+ <block type="core/text_list" name="catalog.leftnav.state.renderers" as="state_renderers" />
19
+ </reference>
20
+ <reference name="product_list">
21
+ <block type="core/text_list" name="product_list.name.after" as="name.after" />
22
+ <block type="core/text_list" name="product_list.after" as="after" />
23
+ </reference>
24
+ </catalog_category_layered>
25
+ <catalogsearch_result_index>
26
+ <reference name="catalogsearch.leftnav">
27
+ <block type="core/text_list" name="catalog.leftnav.state.renderers" as="state_renderers" />
28
+ </reference>
29
+ </catalogsearch_result_index>
30
+ <catalogsearch_product_list>
31
+ <reference name="search_result_list">
32
+ <block type="core/text_list" name="product_list.name.after" as="name.after" />
33
+ <block type="core/text_list" name="product_list.after" as="after" />
34
+ </reference>
35
+ </catalogsearch_product_list>
36
+ <PRODUCT_TYPE_configurable>
37
+ <reference name="product.info.media">
38
+ <block type="core/text_list" name="product.info.media.after" as="after" />
39
+ </reference>
40
+ <reference name="product.info.options.configurable">
41
+ <block type="core/text_list" name="product.info.options.configurable.renderers" as="attr_renderers" />
42
+ <block type="core/text_list" name="product.info.options.configurable.after" as="after" />
43
+ </reference>
44
+ </PRODUCT_TYPE_configurable>
45
+ <!-- // -->
46
+
47
+ <product_list>
48
+ <reference name="head">
49
+ <!-- ajaxpro, quickshopping fix -->
50
+ <action method="addItem"><type>skin_js</type><name>js/configurableswatches/swatches-product.js</name></action>
51
+ </reference>
52
+ <reference name="product_list.after">
53
+ <block type="configurableswatches/catalog_media_js_list" name="configurableswatches.media.js.list.ajax">
54
+ <action method="setTemplate"><template>tm/configurableswatches/catalog/media/js.phtml</template></action>
55
+ </block>
56
+ </reference>
57
+ </product_list>
58
+
59
+ <catalog_category_default>
60
+ <update handle="catalog_product_list"/>
61
+ <!-- Hack to apply updates from magento configurableswatches.xml again -->
62
+ <update handle="product_list"/>
63
+ </catalog_category_default>
64
+
65
+ <catalog_category_layered>
66
+ <update handle="catalog_product_list"/>
67
+ <update handle="product_list"/>
68
+ </catalog_category_layered>
69
+
70
+ <catalogsearch_result_index>
71
+ <update handle="catalogsearch_product_list"/>
72
+ <update handle="product_list"/>
73
+ </catalogsearch_result_index>
74
+
75
+ <catalogsearch_advanced_result>
76
+ <update handle="catalogsearch_product_list"/>
77
+ <update handle="product_list"/>
78
+ </catalogsearch_advanced_result>
79
+
80
+ <PRODUCT_TYPE_configurable>
81
+ <!--
82
+ Duplicate the code that affects blocks that where added above
83
+ Can't use the hack, that was used above because of handle name is not specific for swatches
84
+ -->
85
+ <reference name="product.info.media.after">
86
+ <block type="configurableswatches/catalog_media_js_product" name="configurableswatches.media.js.product" />
87
+ </reference>
88
+ <reference name="product.info.options.configurable.renderers">
89
+ <block type="configurableswatches/catalog_product_view_type_configurable_swatches" template="configurableswatches/catalog/product/view/type/options/configurable/swatches.phtml" />
90
+ </reference>
91
+ <reference name="product.info.options.configurable.after">
92
+ <block type="core/template" template="configurableswatches/catalog/product/view/type/configurable/swatch-js.phtml" />
93
+ </reference>
94
+ <!-- end of duplicate -->
95
+
96
+ <!-- fix for quickshopping and ajaxpro -->
97
+ <reference name="product.info.options.configurable.after">
98
+ <block type="core/template" template="tm/configurableswatches/catalog/product/view/type/configurable/swatch-js.phtml" />
99
+ </reference>
100
+ </PRODUCT_TYPE_configurable>
101
+ </layout>
app/design/frontend/base/default/template/tm/configurableswatches/catalog/media/js.phtml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Duplicate of default magento template to add suport for ajax loaded products
4
+ */
5
+ ?>
6
+ <?php
7
+ /* @var $this Mage_ConfigurableSwatches_Block_Catalog_Media_Js_Abstract */
8
+ ?>
9
+
10
+ <script type="text/javascript">
11
+ if ('complete' === document.readyState) {
12
+ ConfigurableMediaImages.init('<?php echo $this->getImageType(); ?>');
13
+ <?php
14
+ $keepFrame = ($this->getRequest()->getControllerName() !== 'product'); // enabled for the product page only
15
+ foreach ($this->getProductImageFallbacks($keepFrame) as $imageFallback): ?>
16
+ ConfigurableMediaImages.setImageFallback(<?php echo $imageFallback['product']->getId(); ?>, $j.parseJSON('<?php echo $imageFallback['image_fallback']; ?>'));
17
+ <?php endforeach; ?>
18
+ $j(document).trigger('configurable-media-images-init', ConfigurableMediaImages);
19
+ }
20
+ </script>
app/design/frontend/base/default/template/tm/configurableswatches/catalog/product/view/type/configurable/swatch-js.phtml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Dupicate of magento template, but with ajax loaded products support
3
+ ?>
4
+
5
+ <script type="text/javascript">
6
+ if ('complete' === document.readyState) {
7
+ // ajaxpro, quickshopping on the category view page
8
+ var swatchesConfig = new Product.ConfigurableSwatches(spConfig);
9
+ }
10
+ </script>
app/design/frontend/default/f001/layout/catalog.xml DELETED
@@ -1,422 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to license@magentocommerce.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magentocommerce.com for more information.
21
- *
22
- * @category design
23
- * @package base_default
24
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
-
28
- Supported layout update handles (action):
29
- - catalog_product_gallery
30
- - catalog_product_compare_index
31
-
32
- Supported layout update handles (special):
33
- - default
34
- - catalog_category_default
35
- - catalog_category_layered
36
- - catalog_product_view
37
-
38
- -->
39
- <layout version="0.1.0">
40
-
41
- <!--
42
- Default layout, loads most of the pages
43
- -->
44
-
45
- <default>
46
-
47
- <!-- Mage_Catalog -->
48
- <reference name="left">
49
- <!--
50
- <block type="core/template" name="left.permanent.callout" template="callouts/left_col.phtml">
51
- <action method="setImgSrc"><src>images/media/col_left_callout.jpg</src></action>
52
- <action method="setImgAlt" translate="alt" module="catalog"><alt>Our customer service is available 24/7. Call us at (555) 555-0123.</alt></action>
53
- <action method="setLinkUrl"><url>checkout/cart</url></action>
54
- </block>
55
- -->
56
- </reference>
57
- <reference name="right">
58
- <block type="catalog/product_compare_sidebar" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
59
- <!--
60
- <block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml">
61
- <action method="setImgSrc"><src>images/media/col_right_callout.jpg</src></action>
62
- <action method="setImgAlt" translate="alt" module="catalog"><alt>Keep your eyes open for our special Back to School items and save A LOT!</alt></action>
63
- </block>
64
- -->
65
- </reference>
66
- <reference name="footer_links">
67
- <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
68
- </reference>
69
- <block type="catalog/product_price_template" name="catalog_product_price_template" />
70
- </default>
71
-
72
-
73
- <!--
74
- Category default layout
75
- -->
76
-
77
- <catalog_category_default translate="label">
78
- <label>Catalog Category (Non-Anchor)</label>
79
- <reference name="left">
80
- <block type="catalog/navigation" name="catalog.leftnav" after="currency" template="catalog/navigation/left.phtml"/>
81
- </reference>
82
- <reference name="content">
83
- <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
84
- <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
85
- <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
86
- <block type="page/html_pager" name="product_list_toolbar_pager"/>
87
- <!-- The following code shows how to set your own pager increments -->
88
- <!--
89
- <action method="setDefaultListPerPage"><limit>4</limit></action>
90
- <action method="setDefaultGridPerPage"><limit>9</limit></action>
91
- <action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
92
- <action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
93
- <action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
94
- <action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
95
- <action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
96
- -->
97
- </block>
98
- <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
99
- <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
100
- <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
101
- <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
102
- <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
103
- <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
104
- </block>
105
- </block>
106
- </reference>
107
- </catalog_category_default>
108
-
109
- <!--
110
- Category layered navigation layout
111
- -->
112
-
113
- <catalog_category_layered translate="label">
114
- <label>Catalog Category (Anchor)</label>
115
- <reference name="left">
116
- <block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
117
- </reference>
118
- <reference name="content">
119
- <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
120
- <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
121
- <!-- <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/su.phtml</template></action> -->
122
- <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
123
- <block type="page/html_pager" name="product_list_toolbar_pager"/>
124
- <!-- The following code shows how to set your own pager increments -->
125
- <!--
126
- <action method="setDefaultListPerPage"><limit>4</limit></action>
127
- <action method="setDefaultGridPerPage"><limit>3</limit></action>
128
- <action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
129
- <action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
130
- <action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
131
- <action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
132
- <action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
133
- <action method="addPagerLimit"><mode>grid</mode><limit>3</limit></action>
134
- <action method="addPagerLimit"><mode>grid</mode><limit>6</limit></action>
135
- <action method="addPagerLimit"><mode>grid</mode><limit>9</limit></action>
136
- <action method="addPagerLimit" translate="label"><mode>grid</mode><limit>all</limit><label>All</label></action>
137
- -->
138
- </block>
139
- <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
140
- <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
141
- <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
142
- <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
143
- <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
144
- <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
145
- </block>
146
- </block>
147
- </reference>
148
- </catalog_category_layered>
149
-
150
- <!--
151
- Compare products page
152
- -->
153
-
154
- <catalog_product_compare_index translate="label">
155
- <label>Catalog Product Compare List</label>
156
- <!-- Mage_Catalog -->
157
- <reference name="root">
158
- <action method="setTemplate"><template>page/popup.phtml</template></action>
159
- </reference>
160
- <reference name="head">
161
- <action method="addJs"><script>scriptaculous/scriptaculous.js</script></action>
162
- <action method="addJs"><script>varien/product.js</script></action>
163
- </reference>
164
- <reference name="content">
165
- <block type="catalog/product_compare_list" name="catalog.compare.list" template="catalog/product/compare/list.phtml"/>
166
- </reference>
167
- </catalog_product_compare_index>
168
-
169
- <customer_account_index>
170
- <reference name="right">
171
- <action method="unsetChild"><name>catalog.compare.sidebar</name></action>
172
- </reference>
173
- </customer_account_index>
174
-
175
- <!--
176
- Product view
177
- -->
178
-
179
- <catalog_product_view translate="label">
180
- <label>Catalog Product View (Any)</label>
181
- <!-- Mage_Catalog -->
182
- <reference name="root">
183
- <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
184
- </reference>
185
- <reference name="head">
186
- <action method="addJs"><script>varien/product.js</script></action>
187
- <action method="addJs"><script>varien/configurable.js</script></action>
188
-
189
- <action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
190
- <action method="addItem"><type>js</type><name>calendar/calendar.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
191
- <action method="addItem"><type>js</type><name>calendar/calendar-setup.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
192
- </reference>
193
- <reference name="content">
194
- <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
195
- <!--
196
- <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/summary.phtml</template></action>
197
- <action method="addReviewSummaryTemplate"><type>short</type><template>review/helper/summary_short.phtml</template></action>
198
- <action method="addReviewSummaryTemplate"><type>...</type><template>...</template></action>
199
- -->
200
- <block type="catalog/product_view_media" name="product.info.media" as="media" template="catalog/product/view/media.phtml"/>
201
- <block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
202
- <label>Alert Urls</label>
203
- </block>
204
-
205
- <action method="setTierPriceTemplate"><template>catalog/product/view/tierprices.phtml</template></action>
206
-
207
- <block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
208
- <action method="setColumnCount"><columns>4</columns></action>
209
- <action method="setItemLimit"><type>upsell</type><limit>4</limit></action>
210
- </block>
211
-
212
- <block type="catalog/product_view_additional" name="product.info.additional" as="product_additional_data" />
213
- <block type="catalog/product_view_description" name="product.description" as="description" template="catalog/product/view/description.phtml">
214
- <action method="addToParentGroup"><group>detailed_info</group></action>
215
- </block>
216
- <block type="catalog/product_view_attributes" name="product.attributes" as="additional" template="catalog/product/view/attributes.phtml">
217
- <action method="addToParentGroup"><group>detailed_info</group></action>
218
- </block>
219
- <block type="catalog/product_view" name="product.info.addto" as="addto" template="catalog/product/view/addto.phtml"/>
220
- <block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml"/>
221
-
222
- <block type="core/text_list" name="product.info.extrahint" as="extrahint" translate="label">
223
- <label>Product View Extra Hint</label>
224
- </block>
225
-
226
- <block type="catalog/product_view" name="product.info.options.wrapper" as="product_options_wrapper" template="catalog/product/view/options/wrapper.phtml" translate="label">
227
- <label>Info Column Options Wrapper</label>
228
- <block type="core/template" name="options_js" template="catalog/product/view/options/js.phtml"/>
229
- <block type="catalog/product_view_options" name="product.info.options" as="product_options" template="catalog/product/view/options.phtml">
230
- <action method="addOptionRenderer"><type>text</type><block>catalog/product_view_options_type_text</block><template>catalog/product/view/options/type/text.phtml</template></action>
231
- <action method="addOptionRenderer"><type>file</type><block>catalog/product_view_options_type_file</block><template>catalog/product/view/options/type/file.phtml</template></action>
232
- <action method="addOptionRenderer"><type>select</type><block>catalog/product_view_options_type_select</block><template>catalog/product/view/options/type/select.phtml</template></action>
233
- <action method="addOptionRenderer"><type>date</type><block>catalog/product_view_options_type_date</block><template>catalog/product/view/options/type/date.phtml</template></action>
234
- </block>
235
- <block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
236
- </block>
237
- <block type="catalog/product_view" name="product.info.options.wrapper.bottom" as="product_options_wrapper_bottom" template="catalog/product/view/options/wrapper/bottom.phtml" translate="label">
238
- <label>Bottom Block Options Wrapper</label>
239
- <action method="insert"><block>product.tierprices</block></action>
240
- <block type="catalog/product_view" name="product.clone_prices" as="prices" template="catalog/product/view/price_clone.phtml"/>
241
- <action method="append"><block>product.info.addtocart</block></action>
242
- <action method="append"><block>product.info.addto</block></action>
243
- </block>
244
-
245
- <block type="core/template_facade" name="product.info.container1" as="container1">
246
- <action method="setDataByKey"><key>alias_in_layout</key><value>container1</value></action>
247
- <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
248
- <action method="append"><block>product.info.options.wrapper</block></action>
249
- <action method="append"><block>product.info.options.wrapper.bottom</block></action>
250
- </block>
251
- <block type="core/template_facade" name="product.info.container2" as="container2">
252
- <action method="setDataByKey"><key>alias_in_layout</key><value>container2</value></action>
253
- <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
254
- <action method="append"><block>product.info.options.wrapper</block></action>
255
- <action method="append"><block>product.info.options.wrapper.bottom</block></action>
256
- </block>
257
- <action method="unsetCallChild"><child>container1</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
258
- <action method="unsetCallChild"><child>container2</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
259
- </block>
260
- </reference>
261
- <reference name="right">
262
- <block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
263
- </reference>
264
- </catalog_product_view>
265
-
266
- <!--
267
- Additional block dependant on product type
268
- -->
269
- <PRODUCT_TYPE_simple translate="label" module="catalog">
270
- <label>Catalog Product View (Simple)</label>
271
- <reference name="product.info">
272
- <block type="catalog/product_view_type_simple" name="product.info.simple" as="product_type_data" template="catalog/product/view/type/default.phtml">
273
- <block type="core/text_list" name="product.info.simple.extra" as="product_type_data_extra" translate="label">
274
- <label>Product Extra Info</label>
275
- </block>
276
- </block>
277
- </reference>
278
- </PRODUCT_TYPE_simple>
279
- <PRODUCT_TYPE_configurable translate="label" module="catalog">
280
- <label>Catalog Product View (Configurable)</label>
281
- <reference name="product.info">
282
- <block type="catalog/product_view_type_configurable" name="product.info.configurable" as="product_type_data" template="catalog/product/view/type/default.phtml">
283
- <block type="core/text_list" name="product.info.configurable.extra" as="product_type_data_extra" translate="label">
284
- <label>Product Extra Info</label>
285
- </block>
286
- </block>
287
- </reference>
288
- <reference name="product.info.options.wrapper">
289
- <block type="catalog/product_view_type_configurable" name="product.info.options.configurable" as="options_configurable" before="-" template="catalog/product/view/type/options/configurable.phtml"/>
290
- </reference>
291
- </PRODUCT_TYPE_configurable>
292
- <PRODUCT_TYPE_grouped translate="label" module="catalog">
293
- <label>Catalog Product View (Grouped)</label>
294
- <reference name="product.info">
295
- <block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml">
296
- <block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra" translate="label">
297
- <label>Product Extra Info</label>
298
- </block>
299
- </block>
300
- </reference>
301
- </PRODUCT_TYPE_grouped>
302
- <PRODUCT_TYPE_virtual translate="label" module="catalog">
303
- <label>Catalog Product View (Virtual)</label>
304
- <reference name="product.info">
305
- <block type="catalog/product_view_type_virtual" name="product.info.virtual" as="product_type_data" template="catalog/product/view/type/default.phtml">
306
- <block type="core/text_list" name="product.info.virtual.extra" as="product_type_data_extra" translate="label">
307
- <label>Product Extra Info</label>
308
- </block>
309
- </block>
310
- </reference>
311
- </PRODUCT_TYPE_virtual>
312
-
313
-
314
-
315
- <!--
316
- Product send to friend
317
- -->
318
-
319
- <catalog_product_send translate="label">
320
- <label>Catalog Product Email to a Friend</label>
321
- <!-- Mage_Catalog -->
322
- <reference name="root">
323
- <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
324
- </reference>
325
- <reference name="head">
326
- <action method="addJs"><script>varien/product.js</script></action>
327
- </reference>
328
- <reference name="content">
329
- <block type="catalog/product_send" name="product.send" template="catalog/product/send.phtml">
330
- </block>
331
- </reference>
332
- </catalog_product_send>
333
-
334
- <!--
335
- Product additional images gallery popup
336
- -->
337
-
338
- <catalog_product_gallery translate="label">
339
- <label>Catalog Product Image Gallery Popup</label>
340
- <!-- Mage_Catalog -->
341
- <reference name="root">
342
- <action method="setTemplate"><template>page/popup.phtml</template></action>
343
- </reference>
344
- <reference name="content">
345
- <block type="catalog/product_gallery" name="catalog_product_gallery" template="catalog/product/gallery.phtml"/>
346
- </reference>
347
- </catalog_product_gallery>
348
-
349
- <!--
350
- SEO Site Map
351
- -->
352
-
353
- <catalog_seo_sitemap translate="label">
354
- <label>Catalog Seo Sitemap (Common)</label>
355
- <remove name="right"/>
356
- <remove name="left"/>
357
-
358
- <reference name="root">
359
- <action method="setTemplate"><template>page/1column.phtml</template></action>
360
- </reference>
361
- <reference name="content">
362
- <block type="page/template_container" name="seo.sitemap.container" template="catalog/seo/sitemap/container.phtml">
363
- <block type="page/template_links" name="seo.sitemap.links" as="links" template="page/template/links.phtml"/>
364
- <block type="page/html_pager" name="seo.sitemap.pager.top" as="pager_top" template="page/html/pager.phtml"/>
365
- <block type="page/html_pager" name="seo.sitemap.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
366
- </block>
367
- </reference>
368
- </catalog_seo_sitemap>
369
-
370
- <catalog_seo_sitemap_category translate="label">
371
- <label>Catalog Seo Sitemap (Category List)</label>
372
- <reference name="head">
373
- <action method="setTitle" translate="title" module="catalog"><title>Site Map</title></action>
374
- </reference>
375
- <update handle="catalog_seo_sitemap" />
376
- <reference name="seo.sitemap.container">
377
- <action method="setTitle" translate="title" module="catalog"><title>Categories</title></action>
378
- <block type="catalog/seo_sitemap_category" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
379
- <action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
380
- <action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
381
- <action method="setItemsTitle" translate="title" module="catalog"><title>categories</title></action>
382
- </block>
383
- </reference>
384
- <reference name="seo.sitemap.links">
385
- <action method="addLink" translate="label title" module="catalog"><label>Products Sitemap</label><url helper="catalog/map/getProductUrl"/><title>Products Sitemap</title></action>
386
- </reference>
387
- </catalog_seo_sitemap_category>
388
-
389
- <catalog_seo_sitemap_category_tree translate="label">
390
- <label>Catalog Seo Sitemap (Category Tree)</label>
391
- <reference name="seo.sitemap.container">
392
- <remove name="seo.sitemap.pager.top" />
393
- <remove name="seo.sitemap.pager.bottom" />
394
- <block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.top" as="pager_top" template="page/html/pager.phtml"/>
395
- <block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
396
- <remove name="seo.sitemap.sitemap" />
397
- <block type="catalog/seo_sitemap_tree_category" name="seo.sitemap.sitemap_tree" as="sitemap" after="pager_top" template="catalog/seo/tree.phtml">
398
- <action method="bindPager"><pager>seo.sitemap.tree.pager.top</pager></action>
399
- <action method="bindPager"><pager>seo.sitemap.tree.pager.bottom</pager></action>
400
- </block>
401
- </reference>
402
- </catalog_seo_sitemap_category_tree>
403
-
404
- <catalog_seo_sitemap_product translate="label">
405
- <label>Catalog Seo Sitemap (Product List)</label>
406
- <reference name="head">
407
- <action method="setTitle" translate="title" module="catalog"><title>Site Map</title></action>
408
- </reference>
409
- <update handle="catalog_seo_sitemap" />
410
- <reference name="seo.sitemap.container">
411
- <action method="setTitle" translate="title" module="catalog"><title>Products</title></action>
412
- <block type="catalog/seo_sitemap_product" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
413
- <action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
414
- <action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
415
- <action method="setItemsTitle" translate="title" module="catalog"><title>products</title></action>
416
- </block>
417
- </reference>
418
- <reference name="seo.sitemap.links">
419
- <action method="addLink" translate="label title" module="catalog"><label>Categories Sitemap</label><url helper="catalog/map/getCategoryUrl"/><title>Categories Sitemap</title></action>
420
- </reference>
421
- </catalog_seo_sitemap_product>
422
- </layout>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/layout/newsletter.xml DELETED
@@ -1,71 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to license@magentocommerce.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magentocommerce.com for more information.
21
- *
22
- * @category design
23
- * @package base_default
24
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
-
28
- -->
29
- <layout version="0.1.0">
30
-
31
- <!--
32
- Default layout, loads most of the pages
33
- -->
34
-
35
- <default>
36
-
37
- <!-- Mage_Newsletter -->
38
- <reference name="left">
39
- <!--
40
- <block type="newsletter/subscribe" name="right.newsletter" template="newsletter/subscribe.phtml"/>
41
- -->
42
- </reference>
43
-
44
- </default>
45
-
46
- <!--
47
- Customer account pages, rendered for all tabs in dashboard
48
- -->
49
-
50
- <customer_account>
51
- <!-- Mage_Newsletter -->
52
- <reference name="customer_account_navigation">
53
- <action method="addLink" translate="label" module="newsletter"><name>newsletter</name><path>newsletter/manage/</path><label>Newsletter Subscriptions</label></action>
54
- </reference>
55
- <remove name="left.newsletter"/>
56
- </customer_account>
57
-
58
- <newsletter_manage_index translate="label">
59
- <label>Customer My Account Newsletter Subscriptions</label>
60
- <update handle="customer_account"/>
61
- <reference name="my.account.wrapper">
62
- <block type="customer/newsletter" name="customer_newsletter">
63
- <block type="page/html_wrapper" name="customer.newsletter.form.before" as="form_before" translate="label">
64
- <label>Newsletter Subscription Form Before</label>
65
- <action method="setMayBeInvisible"><value>1</value></action>
66
- </block>
67
- </block>
68
- </reference>
69
- </newsletter_manage_index>
70
-
71
- </layout>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/layout/page.xml DELETED
@@ -1,196 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Academic Free License (AFL 3.0)
9
- * that is bundled with this package in the file LICENSE_AFL.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/afl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to license@magentocommerce.com so we can send you a copy immediately.
15
- *
16
- * DISCLAIMER
17
- *
18
- * Do not edit or add to this file if you wish to upgrade Magento to newer
19
- * versions in the future. If you wish to customize Magento for your
20
- * needs please refer to http://www.magentocommerce.com for more information.
21
- *
22
- * @category design
23
- * @package base_default
24
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
25
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
- */
27
- -->
28
- <layout version="0.1.0">
29
- <!--
30
- Default layout, loads most of the pages
31
- -->
32
-
33
- <default translate="label" module="page">
34
- <label>All Pages</label>
35
- <block type="page/html" name="root" output="toHtml" template="page/3columns.phtml">
36
-
37
- <block type="page/html_head" name="head" as="head">
38
- <action method="addJs"><script>prototype/prototype.js</script></action>
39
- <action method="addJs"><script>lib/ccard.js</script></action>
40
- <action method="addJs"><script>prototype/validation.js</script></action>
41
- <action method="addJs"><script>scriptaculous/builder.js</script></action>
42
- <action method="addJs"><script>scriptaculous/effects.js</script></action>
43
- <action method="addJs"><script>scriptaculous/dragdrop.js</script></action>
44
- <action method="addJs"><script>scriptaculous/controls.js</script></action>
45
- <action method="addJs"><script>scriptaculous/slider.js</script></action>
46
- <action method="addJs"><script>varien/js.js</script></action>
47
- <action method="addJs"><script>varien/form.js</script></action>
48
- <action method="addJs"><script>varien/menu.js</script></action>
49
- <action method="addJs"><script>mage/translate.js</script></action>
50
- <action method="addJs"><script>mage/cookies.js</script></action>
51
-
52
- <block type="page/js_cookie" name="js_cookies" template="page/js/cookie.phtml"/>
53
-
54
- <action method="addCss"><stylesheet>css/styles.css</stylesheet></action>
55
- <action method="addItem"><type>skin_css</type><name>css/custom.css</name></action>
56
- <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
57
- <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
58
- <action method="addItem"><type>skin_css</type><name>css/ie8.css</name><params/><if>IE 8</if></action>
59
- <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
60
-
61
- <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
62
- <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
63
- </block>
64
-
65
- <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
66
- <label>Page Top</label>
67
- </block>
68
-
69
- <block type="page/html_notices" name="global_notices" as="global_notices" template="page/html/notices.phtml" />
70
-
71
- <block type="page/html_header" name="header" as="header">
72
- <block type="page/template_links" name="top.links" as="topLinks"/>
73
- <block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
74
- <block type="core/text_list" name="top.menu" as="topMenu" translate="label">
75
- <label>Navigation Bar</label>
76
- <block type="page/html_topmenu" name="catalog.topnav" template="page/html/topmenu.phtml"/>
77
- </block>
78
- <block type="checkout/cart_sidebar" name="headerCart" as="headerCart" template="checkout/cart/header.phtml"/>
79
- <block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
80
- <label>Page Header</label>
81
- <action method="setElementClass"><value>top-container</value></action>
82
- </block>
83
- <block type="page/html_welcome" name="welcome" as="welcome"/>
84
- </block>
85
-
86
- <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>
87
-
88
- <block type="core/text_list" name="left" as="left" translate="label">
89
- <label>Left Column</label>
90
- </block>
91
-
92
- <block type="core/text_list" name="before_footer" as="before_footer"/>
93
- <block type="core/messages" name="global_messages" as="global_messages"/>
94
- <block type="core/messages" name="messages" as="messages"/>
95
-
96
- <block type="core/text_list" name="content" as="content" translate="label">
97
- <label>Main Content Area</label>
98
- </block>
99
-
100
- <block type="core/text_list" name="right" as="right" translate="label">
101
- <label>Right Column</label>
102
- </block>
103
-
104
- <block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
105
- <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
106
- <label>Page Footer</label>
107
- <action method="setElementClass"><value>bottom-container</value></action>
108
- </block>
109
- <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
110
- <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
111
- </block>
112
-
113
- <block type="core/text_list" name="before_body_end" as="before_body_end" translate="label">
114
- <label>Page Bottom</label>
115
- <block type="page/html_cookieNotice" name="global_cookie_notice" as ="global_cookie_notice" template="page/html/cookienotice.phtml" before="-" />
116
- </block>
117
- </block>
118
-
119
- <block type="core/profiler" output="toHtml" name="core_profiler"/>
120
- </default>
121
-
122
- <print translate="label" module="page">
123
- <label>All Pages (Print Version)</label>
124
- <!-- Mage_Page -->
125
- <block type="page/html" name="root" output="toHtml" template="page/print.phtml">
126
-
127
- <block type="page/html_head" name="head" as="head">
128
- <action method="addJs"><script>prototype/prototype.js</script></action>
129
- <action method="addJs"><script>mage/translate.js</script></action>
130
- <action method="addJs"><script>lib/ccard.js</script></action>
131
- <action method="addJs"><script>prototype/validation.js</script></action>
132
- <action method="addJs"><script>varien/js.js</script></action>
133
-
134
- <action method="addCss"><stylesheet>css/styles.css</stylesheet></action>
135
- <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
136
- <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
137
- <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
138
-
139
- <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
140
- <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
141
-
142
- </block>
143
-
144
- <block type="core/text_list" name="content" as="content" translate="label">
145
- <label>Main Content Area</label>
146
- </block>
147
-
148
- </block>
149
- </print>
150
-
151
- <!-- Custom page layout handles -->
152
- <page_empty translate="label">
153
- <label>All Empty Layout Pages</label>
154
- <reference name="root">
155
- <action method="setTemplate"><template>page/empty.phtml</template></action>
156
- <!-- Mark root page block that template is applied -->
157
- <action method="setIsHandle"><applied>1</applied></action>
158
- </reference>
159
- </page_empty>
160
-
161
- <page_one_column translate="label">
162
- <label>All One-Column Layout Pages</label>
163
- <reference name="root">
164
- <action method="setTemplate"><template>page/1column.phtml</template></action>
165
- <!-- Mark root page block that template is applied -->
166
- <action method="setIsHandle"><applied>1</applied></action>
167
- </reference>
168
- </page_one_column>
169
-
170
- <page_two_columns_left translate="label">
171
- <label>All Two-Column Layout Pages (Left Column)</label>
172
- <reference name="root">
173
- <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
174
- <!-- Mark root page block that template is applied -->
175
- <action method="setIsHandle"><applied>1</applied></action>
176
- </reference>
177
- </page_two_columns_left>
178
-
179
- <page_two_columns_right translate="label">
180
- <label>All Two-Column Layout Pages (Right Column)</label>
181
- <reference name="root">
182
- <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
183
- <!-- Mark root page block that template is applied -->
184
- <action method="setIsHandle"><applied>1</applied></action>
185
- </reference>
186
- </page_two_columns_right>
187
-
188
- <page_three_columns translate="label">
189
- <label>All Three-Column Layout Pages</label>
190
- <reference name="root">
191
- <action method="setTemplate"><template>page/3columns.phtml</template></action>
192
- <!-- Mark root page block that template is applied -->
193
- <action method="setIsHandle"><applied>1</applied></action>
194
- </reference>
195
- </page_three_columns>
196
- </layout>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/catalog/navigation/top.phtml DELETED
@@ -1,51 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Top menu for store
30
- *
31
- * @see Mage_Catalog_Block_Navigation
32
- */
33
- ?>
34
- <?php
35
- /**
36
- * $this->renderCategoriesMenuHtml() supports optional arguments:
37
- * int Level number for list item class to start from
38
- * string Extra class of outermost list items
39
- * string If specified wraps children list in div with this class
40
- */
41
- ?>
42
- <?php $_menu = $this->renderCategoriesMenuHtml(0,'level-top') ?>
43
- <div class="nav-container">
44
- <ul id="nav">
45
- <li class="level0 first nav-home"><a href="<?php echo $this->getUrl() ?>"><span><?php echo $this->__('Home') ?></span></a></li>
46
- <?php if ($_menu): ?>
47
- <?php echo $_menu; ?>
48
- <?php endif ?>
49
- <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('menu')->toHtml() ?>
50
- </ul>
51
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/catalog/product/list.phtml DELETED
@@ -1,137 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Product list template
30
- *
31
- * @see Mage_Catalog_Block_Product_List
32
- */
33
- ?>
34
- <?php
35
- $_productCollection=$this->getLoadedProductCollection();
36
- $_helper = $this->helper('catalog/output');
37
- ?>
38
- <?php if(!$_productCollection->count()): ?>
39
- <p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
40
- <?php else: ?>
41
- <div class="category-products">
42
- <?php echo $this->getToolbarHtml() ?>
43
- <?php // List mode ?>
44
- <?php if($this->getMode()!='grid'): ?>
45
- <?php $_iterator = 0; ?>
46
- <ol class="products-list" id="products-list">
47
- <?php foreach ($_productCollection as $_product): ?>
48
- <li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
49
- <?php // Product Image ?>
50
- <p class="product-image">
51
- <a href="<?php echo $this->getUrl('ajax/product/quickview/id/' . $_product->getId()) ?>" rel="nofollow" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="ajax"><?php echo $this->__('Quick view') ?></a>
52
- <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
53
- </p>
54
- <?php // Product description ?>
55
- <div class="product-shop">
56
- <div class="f-fix">
57
- <?php $_productNameStripped = $this->stripTags($_product->getName(), null, true); ?>
58
- <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a></h2>
59
- <?php if($_product->getRatingSummary()): ?>
60
- <?php echo $this->getReviewsSummaryHtml($_product) ?>
61
- <?php endif; ?>
62
- <?php echo $this->getPriceHtml($_product, true) ?>
63
- <?php if($_product->isSaleable()): ?>
64
- <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
65
- <?php else: ?>
66
- <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
67
- <?php endif; ?>
68
- <div class="clear"></div>
69
- <div class="desc std">
70
- <?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
71
- <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a>
72
- </div>
73
- <ul class="add-to-links">
74
- <?php if ($this->helper('wishlist')->isAllow()) : ?>
75
- <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
76
- <?php endif; ?>
77
- <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
78
- <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
79
- <?php endif; ?>
80
- </ul>
81
- </div>
82
- </div>
83
- </li>
84
- <?php endforeach; ?>
85
- </ol>
86
- <script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
87
-
88
- <?php else: ?>
89
-
90
- <?php // Grid Mode ?>
91
-
92
- <?php $_collectionSize = $_productCollection->count() ?>
93
- <?php $_columnCount = $this->getColumnCount(); ?>
94
- <?php $i=0; foreach ($_productCollection as $_product): ?>
95
- <?php if ($i++%$_columnCount==0): ?>
96
- <ul class="products-grid">
97
- <?php endif ?>
98
- <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
99
- <p class="product-image">
100
- <a href="<?php echo $this->getUrl('ajax/product/quickview/id/' . $_product->getId()) ?>" rel="nofollow" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="ajax"><?php echo $this->__('Quick view') ?></a>
101
- <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
102
- <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
103
- </a>
104
- </p>
105
- <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
106
- <?php if($_product->getRatingSummary()): ?>
107
- <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
108
- <?php endif; ?>
109
- <?php echo $this->getPriceHtml($_product, true) ?>
110
- <div class="actions">
111
- <?php if($_product->isSaleable()): ?>
112
- <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
113
- <?php else: ?>
114
- <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
115
- <?php endif; ?>
116
- <ul class="add-to-links">
117
- <?php if ($this->helper('wishlist')->isAllow()) : ?>
118
- <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
119
- <?php endif; ?>
120
- <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
121
- <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
122
- <?php endif; ?>
123
- </ul>
124
- </div>
125
- </li>
126
- <?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
127
- </ul>
128
- <?php endif ?>
129
- <?php endforeach ?>
130
- <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
131
- <?php endif; ?>
132
-
133
- <div class="toolbar-bottom">
134
- <?php echo $this->getToolbarHtml() ?>
135
- </div>
136
- </div>
137
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/catalog/product/new.phtml DELETED
@@ -1,61 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- $_columnsCount = 4;
29
- if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
30
- <div class="box recently">
31
- <div class="category-head">
32
- <h2 class="subtitle"><?php echo $this->__('New Products') ?></h2>
33
- </div>
34
- <?php $i=0; foreach ($_products->getItems() as $_product): ?>
35
- <?php if ($i++%$_columnsCount==0): ?>
36
- <ol class="grid-row">
37
- <?php endif; ?>
38
- <li class="item">
39
- <p class="product-image">
40
- <a href="<?php echo $this->getUrl('ajax/product/quickview/id/' . $_product->getId()) ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="ajax"><?php echo $this->__('Quick view') ?></a>
41
- <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>">
42
- <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(150, 150) ?>" width="150" height="150" alt="<?php echo $this->escapeHtml($_product->getName()) ?>" />
43
- </a>
44
- </p>
45
- <h5><a class="product-name" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>)"><?php echo $this->escapeHtml($_product->getName()) ?></a></h5>
46
- <?php echo $this->getPriceHtml($_product, true, $this->getPriceSuffix()) ?>
47
- <div class="actions">
48
- <?php if($_product->isSaleable()): ?>
49
- <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
50
- <?php else: ?>
51
- <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
52
- <?php endif; ?>
53
- </div>
54
- </li>
55
- <?php if ($i%$_columnsCount==0 || $i==count($_products)): ?>
56
- </ol>
57
- <?php endif ?>
58
- <?php endforeach; ?>
59
- <script type="text/javascript">decorateGeneric($$('.grid-row'), ['first', 'last', 'odd', 'even']);</script>
60
- </div>
61
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/catalogsearch/form.mini.phtml DELETED
@@ -1,43 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- /* @var $this Mage_Core_Block_Template */
27
- /* @var $catalogSearchHelper Mage_Catalogsearch_Helper_Data */
28
- $catalogSearchHelper = $this->helper('catalogsearch');
29
- ?>
30
- <form id="search_mini_form" action="<?php echo $catalogSearchHelper->getResultUrl() ?>" method="get">
31
- <div class="form-search">
32
- <label for="search"><?php echo $this->__('Search:') ?></label>
33
- <input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
34
- <button type="submit" title="<?php echo $this->__('Search') ?>" class="button"><span><!--<span><?php echo $this->__('Search') ?></span>--></span></button>
35
- <div id="search_autocomplete" class="search-autocomplete"></div>
36
- <script type="text/javascript">
37
- //<![CDATA[
38
- var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search entire store here...') ?>');
39
- searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
40
- //]]>
41
- </script>
42
- </div>
43
- </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/page/1column.phtml DELETED
@@ -1,60 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Template for Mage_Page_Block_Html
30
- */
31
- ?>
32
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
- <head>
35
- <?php echo $this->getChildHtml('head') ?>
36
- </head>
37
- <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
- <?php echo $this->getChildHtml('after_body_start') ?>
39
- <div class="wrapper">
40
- <?php echo $this->getChildHtml('global_notices') ?>
41
- <div class="page">
42
- <?php echo $this->getChildHtml('header') ?>
43
- <div class="main-container col1-layout">
44
- <div class="main">
45
- <?php echo $this->getChildHtml('breadcrumbs') ?>
46
- <div class="col-main">
47
- <?php echo $this->getChildHtml('global_messages') ?>
48
- <?php echo $this->getChildHtml('content') ?>
49
- </div>
50
- </div>
51
- </div>
52
- <?php echo $this->getChildHtml('before_footer') ?>
53
- <?php echo $this->getChildHtml('footer') ?>
54
- <?php echo $this->getChildHtml('global_cookie_notice') ?>
55
- <?php echo $this->getChildHtml('before_body_end') ?>
56
- </div>
57
- </div>
58
- <?php echo $this->getAbsoluteFooter() ?>
59
- </body>
60
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/page/2columns-left.phtml DELETED
@@ -1,61 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Template for Mage_Page_Block_Html
30
- */
31
- ?>
32
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
- <head>
35
- <?php echo $this->getChildHtml('head') ?>
36
- </head>
37
- <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
- <?php echo $this->getChildHtml('after_body_start') ?>
39
- <div class="wrapper">
40
- <?php echo $this->getChildHtml('global_notices') ?>
41
- <div class="page">
42
- <?php echo $this->getChildHtml('header') ?>
43
- <div class="main-container col2-left-layout">
44
- <div class="main">
45
- <?php echo $this->getChildHtml('breadcrumbs') ?>
46
- <div class="col-main">
47
- <?php echo $this->getChildHtml('global_messages') ?>
48
- <?php echo $this->getChildHtml('content') ?>
49
- </div>
50
- <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
51
- </div>
52
- </div>
53
- <?php echo $this->getChildHtml('before_footer') ?>
54
- <?php echo $this->getChildHtml('footer') ?>
55
- <?php echo $this->getChildHtml('global_cookie_notice') ?>
56
- <?php echo $this->getChildHtml('before_body_end') ?>
57
- </div>
58
- </div>
59
- <?php echo $this->getAbsoluteFooter() ?>
60
- </body>
61
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/page/2columns-right.phtml DELETED
@@ -1,61 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Template for Mage_Page_Block_Html
30
- */
31
- ?>
32
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
- <head>
35
- <?php echo $this->getChildHtml('head') ?>
36
- </head>
37
- <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
- <?php echo $this->getChildHtml('after_body_start') ?>
39
- <div class="wrapper">
40
- <?php echo $this->getChildHtml('global_notices') ?>
41
- <div class="page">
42
- <?php echo $this->getChildHtml('header') ?>
43
- <div class="main-container col2-right-layout">
44
- <div class="main">
45
- <?php echo $this->getChildHtml('breadcrumbs') ?>
46
- <div class="col-main">
47
- <?php echo $this->getChildHtml('global_messages') ?>
48
- <?php echo $this->getChildHtml('content') ?>
49
- </div>
50
- <div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
51
- </div>
52
- </div>
53
- <?php echo $this->getChildHtml('before_footer') ?>
54
- <?php echo $this->getChildHtml('footer') ?>
55
- <?php echo $this->getChildHtml('global_cookie_notice') ?>
56
- <?php echo $this->getChildHtml('before_body_end') ?>
57
- </div>
58
- </div>
59
- <?php echo $this->getAbsoluteFooter() ?>
60
- </body>
61
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/page/3columns.phtml DELETED
@@ -1,64 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Template for Mage_Page_Block_Html
30
- */
31
- ?>
32
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
- <head>
35
- <?php echo $this->getChildHtml('head') ?>
36
- </head>
37
- <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
- <?php echo $this->getChildHtml('after_body_start') ?>
39
- <div class="wrapper">
40
- <?php echo $this->getChildHtml('global_notices') ?>
41
- <div class="page">
42
- <?php echo $this->getChildHtml('header') ?>
43
- <div class="main-container col3-layout">
44
- <div class="main">
45
- <?php echo $this->getChildHtml('breadcrumbs') ?>
46
- <div class="col-wrapper">
47
- <div class="col-main">
48
- <?php echo $this->getChildHtml('global_messages') ?>
49
- <?php echo $this->getChildHtml('content') ?>
50
- </div>
51
- <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
52
- </div>
53
- <div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
54
- </div>
55
- </div>
56
- <?php echo $this->getChildHtml('before_footer') ?>
57
- <?php echo $this->getChildHtml('footer') ?>
58
- <?php echo $this->getChildHtml('global_cookie_notice') ?>
59
- <?php echo $this->getChildHtml('before_body_end') ?>
60
- </div>
61
- </div>
62
- <?php echo $this->getAbsoluteFooter() ?>
63
- </body>
64
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/page/html/footer.phtml DELETED
@@ -1,53 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <div class="footer-container">
28
- <div class="footer">
29
- <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('footer_links')->toHtml() ?>
30
- <div class="clear"></div>
31
- <div class="contacts">
32
- <div class="f-left"><?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('contacts')->toHtml() ?></div>
33
- <img class="payments" src="<?php echo $this->getSkinUrl('images/payments.gif') ?>" alt="MasterCard, Maestro, Visa, AmericanExpress"/>
34
- </div>
35
- <br />
36
- <p class="legality">
37
- <?php echo $this->getCopyright() ?>
38
- <!-- This theme is avalable udner Creative Commons License http://creativecommons.org/licenses/by/3.0/ Removing links to is similarly prohibited. -->Magento Theme by <a href="http://templates-master.com" title="Templates master" rel="nofollow">templates-master.com</a><!-- Removing links to is similarly prohibited. -->
39
- <?php echo $this->getChildHtml('store_switcher') ?>
40
- </p>
41
- <div class="clear"></div>
42
- </div>
43
- </div>
44
-
45
- <script type="text/javascript" src="<?php echo $this->getSkinUrl('js/productInfo.js') ?>"></script>
46
- <script type="text/javascript">
47
- Event.observe(window, 'load', function() {
48
- new ProductInfo('.ajax', 'p.product-image a', {
49
- 'loader': "<?php echo $this->getSkinUrl('images/ajax_loader.gif')?>",
50
- 'loadingMessage': "<?php echo $this->__('Loading') ?>"
51
- });
52
- });
53
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/page/html/header.phtml DELETED
@@ -1,50 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- /**
27
- * @var Mage_Page_Block_Html_Header $this
28
- */
29
- ?>
30
- <div class="header-container">
31
- <div class="header">
32
- <?php if ($this->getIsHomePage()):?>
33
- <h1 class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a></h1>
34
- <?php else:?>
35
- <a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a>
36
- <?php endif?>
37
- <h5 class="slogan"><?php echo $this->__('best free magento theme') ?></h5>
38
- <p class="no-display"><a href="#main"><strong><?php echo $this->__('Skip to Main Content') ?> &raquo;</strong></a></p>
39
- <?php echo $this->getChildHtml('topSearch') ?>
40
- <div class="quick-access">
41
- <p class="welcome-msg"><?php echo $this->getChildHtml('welcome') ?> <?php echo $this->getAdditionalHtml() ?></p>
42
- <div class="shop-access">
43
- <?php echo $this->getChildHtml('topLinks') ?>
44
- </div>
45
- </div>
46
- <?php echo $this->getChildHtml('store_language') ?>
47
- <?php echo $this->getChildHtml('headerCart') ?>
48
- </div>
49
- <?php echo $this->getChildHtml('topMenu') ?>
50
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/default/f001/template/page/html/topmenu.phtml DELETED
@@ -1,43 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Academic Free License (AFL 3.0)
8
- * that is bundled with this package in the file LICENSE_AFL.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/afl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * DISCLAIMER
16
- *
17
- * Do not edit or add to this file if you wish to upgrade Magento to newer
18
- * versions in the future. If you wish to customize Magento for your
19
- * needs please refer to http://www.magentocommerce.com for more information.
20
- *
21
- * @category design
22
- * @package base_default
23
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
- */
26
- ?>
27
- <?php
28
- /**
29
- * Top menu for store
30
- *
31
- * @see Mage_Page_Block_Html_Topmenu
32
- */
33
- ?>
34
- <?php $_menu = $this->getHtml('level-top') ?>
35
- <div class="nav-container">
36
- <ul id="nav">
37
- <li class="level0 first nav-home"><a href="<?php echo $this->getUrl() ?>"><span><?php echo $this->__('Home') ?></span></a></li>
38
- <?php if($_menu): ?>
39
- <?php echo $_menu ?>
40
- <?php endif ?>
41
- <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('menu')->toHtml() ?>
42
- </ul>
43
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/f001/default/layout/configurableswatches.xml ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Academic Free License (AFL 3.0)
9
+ * that is bundled with this package in the file LICENSE_AFL.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/afl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magento.com so we can send you a copy immediately.
15
+ *
16
+ * DISCLAIMER
17
+ *
18
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
19
+ * versions in the future. If you wish to customize Magento for your
20
+ * needs please refer to http://www.magento.com for more information.
21
+ *
22
+ * @category design
23
+ * @package rwd_default
24
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+ -->
28
+ <layout version="0.1.0">
29
+
30
+ <product_list>
31
+ <reference name="head">
32
+ <action method="addItem"><type>skin_js</type><name>js/configurableswatches/product-media.js</name></action>
33
+ <action method="addItem"><type>skin_js</type><name>js/configurableswatches/swatches-list.js</name></action>
34
+ </reference>
35
+ <reference name="product_list.name.after">
36
+ <block type="core/template" name="product_list.swatches" template="configurableswatches/catalog/product/list/swatches.phtml" />
37
+ </reference>
38
+ <reference name="product_list.after">
39
+ <block type="configurableswatches/catalog_media_js_list" name="configurableswatches.media.js.list" />
40
+ </reference>
41
+ </product_list>
42
+
43
+ <catalog_category_default>
44
+ <update handle="product_list"/>
45
+ </catalog_category_default>
46
+
47
+ <catalog_category_layered>
48
+ <update handle="product_list"/>
49
+ </catalog_category_layered>
50
+
51
+ <catalogsearch_result_index>
52
+ <update handle="product_list"/>
53
+ </catalogsearch_result_index>
54
+
55
+ <catalogsearch_advanced_result>
56
+ <update handle="product_list"/>
57
+ </catalogsearch_advanced_result>
58
+
59
+ <PRODUCT_TYPE_configurable>
60
+ <reference name="head">
61
+ <action method="addItem"><type>skin_js</type><name>js/configurableswatches/product-media.js</name></action>
62
+ <action method="addItem"><type>skin_js</type><name>js/configurableswatches/swatches-product.js</name></action>
63
+ </reference>
64
+ <reference name="product.info.media">
65
+ <action method="setGalleryFilterHelper"><helper>configurableswatches/productimg</helper></action>
66
+ <action method="setGalleryFilterMethod"><method>filterImageInGallery</method></action>
67
+ </reference>
68
+ <reference name="product.info.media.after">
69
+ <block type="configurableswatches/catalog_media_js_product" name="configurableswatches.media.js.product" />
70
+ </reference>
71
+ <reference name="product.info.options.configurable.renderers">
72
+ <block type="configurableswatches/catalog_product_view_type_configurable_swatches" template="configurableswatches/catalog/product/view/type/options/configurable/swatches.phtml" />
73
+ </reference>
74
+ <reference name="product.info.options.configurable.after">
75
+ <block type="core/template" template="configurableswatches/catalog/product/view/type/configurable/swatch-js.phtml" />
76
+ </reference>
77
+ </PRODUCT_TYPE_configurable>
78
+
79
+ </layout>
app/design/frontend/f001/default/layout/local.xml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="head">
5
+ <action method="addItem"><type>skin_css</type><name>css/custom.css</name></action>
6
+ <action method="addItem"><type>skin_css</type><name>css/theme.css</name></action>
7
+ <action method="addItem"><type>skin_css</type><name>css/ie8.css</name><params/><if>IE 8</if></action>
8
+ </reference>
9
+ <reference name="header">
10
+ <block type="checkout/cart_sidebar" name="headerCart" as="headerCart" template="checkout/cart/header.phtml"/>
11
+ </reference>
12
+ <reference name="root">
13
+ <block type="core/text_list" name="before_footer" as="before_footer"/>
14
+ </reference>
15
+ <remove name="left.permanent.callout"/>
16
+ <remove name="right.permanent.callout"/>
17
+ <remove name="left.newsletter"/>
18
+ </default>
19
+ </layout>
app/design/frontend/{default/f001 → f001/default}/locale/en_US/translate.csv RENAMED
File without changes
app/design/frontend/f001/default/template/catalog/layer/state.phtml ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Category layered navigation state
30
+ *
31
+ * @see Mage_Catalog_Block_Layer_State
32
+ */
33
+ ?>
34
+ <?php
35
+ $_filters = $this->getActiveFilters();
36
+ $_renderers = array();
37
+ if ($this->getParentBlock()->getChild('state_renderers')) {
38
+ $_renderers = $this->getParentBlock()->getChild('state_renderers')->getSortedChildren();
39
+ }
40
+ ?>
41
+ <?php if(!empty($_filters)): ?>
42
+ <div class="currently">
43
+ <p class="block-subtitle"><?php echo $this->__('Currently Shopping by:') ?></p>
44
+ <ol>
45
+ <?php foreach ($_filters as $_filter): ?>
46
+ <?php
47
+ $_rendered = false;
48
+ foreach ($_renderers as $_rendererName):
49
+ $_renderer = $this->getParentBlock()->getChild('state_renderers')->getChild($_rendererName);
50
+ if (method_exists($_renderer, 'shouldRender') && $_renderer->shouldRender($_filter)):
51
+ $_renderer->setFilter($_filter);
52
+ echo $_renderer->toHtml();
53
+ $_rendered = true;
54
+ break;
55
+ endif;
56
+ endforeach;
57
+ ?>
58
+
59
+ <?php if (!$_rendered): ?>
60
+ <li>
61
+ <span class="label"><?php echo $this->__($_filter->getName()) ?>:</span> <span class="value"><?php echo $this->stripTags($_filter->getLabel()) ?></span>
62
+ <?php
63
+ $clearLinkUrl = $_filter->getClearLinkUrl();
64
+ if ($clearLinkUrl):
65
+ ?>
66
+ <a class="btn-previous" href="<?php echo $_filter->getRemoveUrl() ?>" title="<?php echo $this->__('Previous') ?>"><?php echo $this->__('Previous') ?></a>
67
+ <a class="btn-remove" title="<?php echo $this->escapeHtml($_filter->getFilter()->getClearLinkText()) ?>" href="<?php echo $clearLinkUrl ?>"><?php echo $this->escapeHtml($_filter->getFilter()->getClearLinkText()) ?></a>
68
+ <?php else: ?>
69
+ <a class="btn-remove" href="<?php echo $_filter->getRemoveUrl() ?>" title="<?php echo $this->__('Remove This Item') ?>"><?php echo $this->__('Remove This Item') ?></a>
70
+ <?php endif; ?>
71
+ </li>
72
+ <?php endif; ?>
73
+ <?php endforeach; ?>
74
+ </ol>
75
+ </div>
76
+ <?php endif; ?>
app/design/frontend/{default/f001 → f001/default}/template/catalog/navigation/sidebox.phtml RENAMED
File without changes
app/design/frontend/f001/default/template/catalog/navigation/top.phtml ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Top menu for store
30
+ *
31
+ * @see Mage_Catalog_Block_Navigation
32
+ */
33
+ ?>
34
+ <?php
35
+ /**
36
+ * $this->renderCategoriesMenuHtml() supports optional arguments:
37
+ * int Level number for list item class to start from
38
+ * string Extra class of outermost list items
39
+ * string If specified wraps children list in div with this class
40
+ */
41
+ ?>
42
+ <?php $_menu = $this->renderCategoriesMenuHtml(0,'level-top') ?>
43
+ <div class="nav-container">
44
+ <ul id="nav">
45
+ <li class="level0 first nav-home"><a href="<?php echo $this->getUrl() ?>"><span><?php echo $this->__('Home') ?></span></a></li>
46
+ <?php if ($_menu): ?>
47
+ <?php echo $_menu; ?>
48
+ <?php endif ?>
49
+ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('menu')->toHtml() ?>
50
+ </ul>
51
+ </div>
app/design/frontend/{default/f001 → f001/default}/template/catalog/product/featured.phtml RENAMED
File without changes
app/design/frontend/f001/default/template/catalog/product/list.phtml ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Product list template
30
+ *
31
+ * @see Mage_Catalog_Block_Product_List
32
+ */
33
+ ?>
34
+ <?php
35
+ $_productCollection=$this->getLoadedProductCollection();
36
+ $_helper = $this->helper('catalog/output');
37
+ ?>
38
+ <?php if(!$_productCollection->count()): ?>
39
+ <p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
40
+ <?php else: ?>
41
+ <div class="category-products">
42
+ <?php echo $this->getToolbarHtml() ?>
43
+ <?php // List mode ?>
44
+ <?php if($this->getMode()!='grid'): ?>
45
+ <?php $_iterator = 0; ?>
46
+ <ol class="products-list" id="products-list">
47
+ <?php foreach ($_productCollection as $_product): ?>
48
+ <li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
49
+ <?php // Product Image ?>
50
+ <p class="product-image">
51
+ <?php if (!Mage::helper('core')->isModuleOutputEnabled('TM_QuickShopping')) : ?>
52
+ <a href="<?php echo $this->getUrl('ajax/product/quickview/id/' . $_product->getId()) ?>" rel="nofollow" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="ajax"><?php echo $this->__('Quick view') ?></a>
53
+ <?php endif ?>
54
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"
55
+ ><img id="product-collection-image-<?php echo $_product->getId(); ?>"
56
+ src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>"
57
+ width="135" height="135"
58
+ alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>"
59
+ /></a>
60
+ </p>
61
+ <?php if (Mage::helper('core')->isModuleOutputEnabled('TM_QuickShopping')) : ?>
62
+ <?php echo Mage::helper('quickshopping')->getViewButton($this->__('Quick View'), $_product, $this->getMode(), null, $_productCollection); ?>
63
+ <?php endif ?>
64
+ <?php // Product description ?>
65
+ <div class="product-shop">
66
+ <div class="f-fix">
67
+ <?php $_productNameStripped = $this->stripTags($_product->getName(), null, true); ?>
68
+ <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a></h2>
69
+ <?php if($_product->getRatingSummary()): ?>
70
+ <?php echo $this->getReviewsSummaryHtml($_product) ?>
71
+ <?php endif; ?>
72
+ <?php
73
+ // Provides extra blocks on which to hang some features for products in the list
74
+ // Features providing UI elements targeting this block will display directly below the product name
75
+ if ($this->getChild('name.after')) {
76
+ $_nameAfterChildren = $this->getChild('name.after')->getSortedChildren();
77
+ foreach ($_nameAfterChildren as $_nameAfterChildName) {
78
+ $_nameAfterChild = $this->getChild('name.after')->getChild($_nameAfterChildName);
79
+ $_nameAfterChild->setProduct($_product);
80
+ echo $_nameAfterChild->toHtml();
81
+ }
82
+ }
83
+ ?>
84
+ <?php echo $this->getPriceHtml($_product, true) ?>
85
+ <?php if($_product->isSaleable()): ?>
86
+ <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
87
+ <?php else: ?>
88
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
89
+ <?php endif; ?>
90
+ <div class="clear"></div>
91
+ <div class="desc std">
92
+ <?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
93
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a>
94
+ </div>
95
+ <ul class="add-to-links">
96
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
97
+ <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
98
+ <?php endif; ?>
99
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
100
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
101
+ <?php endif; ?>
102
+ </ul>
103
+ </div>
104
+ </div>
105
+ </li>
106
+ <?php endforeach; ?>
107
+ </ol>
108
+ <script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
109
+
110
+ <?php else: ?>
111
+
112
+ <?php // Grid Mode ?>
113
+
114
+ <?php $_collectionSize = $_productCollection->count() ?>
115
+ <?php $_columnCount = $this->getColumnCount(); ?>
116
+ <?php $i=0; foreach ($_productCollection as $_product): ?>
117
+ <?php if ($i++%$_columnCount==0): ?>
118
+ <ul class="products-grid">
119
+ <?php endif ?>
120
+ <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
121
+ <p class="product-image">
122
+ <?php if (!Mage::helper('core')->isModuleOutputEnabled('TM_QuickShopping')) : ?>
123
+ <a href="<?php echo $this->getUrl('ajax/product/quickview/id/' . $_product->getId()) ?>" rel="nofollow" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="ajax"><?php echo $this->__('Quick view') ?></a>
124
+ <?php endif ?>
125
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
126
+ <img id="product-collection-image-<?php echo $_product->getId(); ?>"
127
+ src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>"
128
+ width="135" height="135"
129
+ alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>"
130
+ />
131
+ </a>
132
+ </p>
133
+ <?php if (Mage::helper('core')->isModuleOutputEnabled('TM_QuickShopping')) : ?>
134
+ <?php echo Mage::helper('quickshopping')->getViewButton($this->__('Quick View'), $_product, $this->getMode(), null, $_productCollection); ?>
135
+ <?php endif ?>
136
+ <?php
137
+ // Provides extra blocks on which to hang some features for products in the list
138
+ // Features providing UI elements targeting this block will display directly below the product name
139
+ if ($this->getChild('name.after')) {
140
+ $_nameAfterChildren = $this->getChild('name.after')->getSortedChildren();
141
+ foreach ($_nameAfterChildren as $_nameAfterChildName) {
142
+ $_nameAfterChild = $this->getChild('name.after')->getChild($_nameAfterChildName);
143
+ $_nameAfterChild->setProduct($_product);
144
+ echo $_nameAfterChild->toHtml();
145
+ }
146
+ }
147
+ ?>
148
+ <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
149
+ <?php if($_product->getRatingSummary()): ?>
150
+ <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
151
+ <?php endif; ?>
152
+ <?php echo $this->getPriceHtml($_product, true) ?>
153
+ <div class="actions">
154
+ <?php if($_product->isSaleable()): ?>
155
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
156
+ <?php else: ?>
157
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
158
+ <?php endif; ?>
159
+ <ul class="add-to-links">
160
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
161
+ <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
162
+ <?php endif; ?>
163
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
164
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
165
+ <?php endif; ?>
166
+ </ul>
167
+ </div>
168
+ </li>
169
+ <?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
170
+ </ul>
171
+ <?php endif ?>
172
+ <?php endforeach ?>
173
+ <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
174
+ <?php endif; ?>
175
+
176
+ <div class="toolbar-bottom">
177
+ <?php echo $this->getToolbarHtml() ?>
178
+ </div>
179
+ </div>
180
+ <?php endif; ?>
181
+ <?php
182
+ // Provides a block where additional page components may be attached, primarily good for in-page JavaScript
183
+ if ($this->getChild('after')) {
184
+ $_afterChildren = $this->getChild('after')->getSortedChildren();
185
+ foreach ($_afterChildren as $_afterChildName) {
186
+ $_afterChild = $this->getChild('after')->getChild($_afterChildName);
187
+ //set product collection on after blocks
188
+ $_afterChild->setProductCollection($_productCollection);
189
+ echo $_afterChild->toHtml();
190
+ }
191
+ }
192
+ ?>
app/design/frontend/f001/default/template/catalog/product/new.phtml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ $_columnsCount = 4;
29
+ if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
30
+ <div class="box recently">
31
+ <div class="category-head">
32
+ <h2 class="subtitle"><?php echo $this->__('New Products') ?></h2>
33
+ </div>
34
+ <?php $i=0; foreach ($_products->getItems() as $_product): ?>
35
+ <?php if ($i++%$_columnsCount==0): ?>
36
+ <ol class="grid-row">
37
+ <?php endif; ?>
38
+ <li class="item">
39
+ <p class="product-image">
40
+ <a href="<?php echo $this->getUrl('ajax/product/quickview/id/' . $_product->getId()) ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>" class="ajax"><?php echo $this->__('Quick view') ?></a>
41
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>">
42
+ <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(150, 150) ?>" width="150" height="150" alt="<?php echo $this->escapeHtml($_product->getName()) ?>" />
43
+ </a>
44
+ </p>
45
+ <h5><a class="product-name" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>)"><?php echo $this->escapeHtml($_product->getName()) ?></a></h5>
46
+ <?php echo $this->getPriceHtml($_product, true, $this->getPriceSuffix()) ?>
47
+ <div class="actions">
48
+ <?php if($_product->isSaleable()): ?>
49
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
50
+ <?php else: ?>
51
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
52
+ <?php endif; ?>
53
+ </div>
54
+ </li>
55
+ <?php if ($i%$_columnsCount==0 || $i==count($_products)): ?>
56
+ </ol>
57
+ <?php endif ?>
58
+ <?php endforeach; ?>
59
+ <script type="text/javascript">decorateGeneric($$('.grid-row'), ['first', 'last', 'odd', 'even']);</script>
60
+ </div>
61
+ <?php endif; ?>
app/design/frontend/f001/default/template/catalog/product/view/media.phtml ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Product media data template
29
+ *
30
+ * @see Mage_Catalog_Block_Product_View_Media
31
+ */
32
+ ?>
33
+ <?php
34
+ $_product = $this->getProduct();
35
+ $_helper = $this->helper('catalog/output');
36
+ ?>
37
+ <?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
38
+ <p class="product-image product-image-zoom">
39
+ <?php
40
+ $_img = '<img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
41
+ echo $_helper->productAttribute($_product, $_img, 'image');
42
+ ?>
43
+ </p>
44
+ <p class="zoom-notice" id="track_hint"><?php echo $this->__('Double click on above image to view full picture') ?></p>
45
+ <div class="zoom">
46
+ <img id="zoom_out" src="<?php echo $this->getSkinUrl('images/slider_btn_zoom_out.gif') ?>" alt="<?php echo $this->__('Zoom Out') ?>" title="<?php echo $this->__('Zoom Out') ?>" class="btn-zoom-out" />
47
+ <div id="track">
48
+ <div id="handle"></div>
49
+ </div>
50
+ <img id="zoom_in" src="<?php echo $this->getSkinUrl('images/slider_btn_zoom_in.gif') ?>" alt="<?php echo $this->__('Zoom In') ?>" title="<?php echo $this->__('Zoom In') ?>" class="btn-zoom-in" />
51
+ </div>
52
+ <script type="text/javascript">
53
+ //<![CDATA[
54
+ Event.observe(window, 'load', function() {
55
+ product_zoom = new Product.Zoom('image', 'track', 'handle', 'zoom_in', 'zoom_out', 'track_hint');
56
+ });
57
+ //]]>
58
+ </script>
59
+ <?php else: ?>
60
+ <p class="product-image">
61
+ <?php
62
+ $_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
63
+ echo $_helper->productAttribute($_product, $_img, 'image');
64
+ ?>
65
+ </p>
66
+ <?php endif; ?>
67
+ <?php if (count($this->getGalleryImages()) > 0): ?>
68
+ <div class="more-views">
69
+ <h2><?php echo $this->__('More Views') ?></h2>
70
+ <ul>
71
+ <?php foreach ($this->getGalleryImages() as $_image): ?>
72
+ <li>
73
+ <a href="#" onclick="popWin('<?php echo $this->getGalleryUrl($_image) ?>', 'gallery', 'width=300,height=300,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes'); return false;" title="<?php echo $this->escapeHtml($_image->getLabel()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(56); ?>" width="56" height="56" alt="<?php echo $this->escapeHtml($_image->getLabel()) ?>" /></a>
74
+ </li>
75
+ <?php endforeach; ?>
76
+ </ul>
77
+ </div>
78
+ <?php endif; ?>
79
+
80
+ <?php echo $this->getChildHtml('after'); ?>
app/design/frontend/f001/default/template/catalog/product/view/type/options/configurable.phtml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package rwd_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+
28
+ <?php
29
+ $_product = $this->getProduct();
30
+ $_attributes = Mage::helper('core')->decorateArray($this->getAllowAttributes());
31
+ $_jsonConfig = $this->getJsonConfig();
32
+ $_renderers = array();
33
+ if ($this->getChild('attr_renderers')) {
34
+ $_renderers = $this->getChild('attr_renderers')->getSortedChildren();
35
+ }
36
+ ?>
37
+ <?php if ($_product->isSaleable() && count($_attributes)):?>
38
+ <dl>
39
+ <?php foreach($_attributes as $_attribute): ?>
40
+ <?php
41
+ $_rendered = false;
42
+ foreach ($_renderers as $_rendererName):
43
+ $_renderer = $this->getChild('attr_renderers')->getChild($_rendererName);
44
+ if (method_exists($_renderer, 'shouldRender') && $_renderer->shouldRender($_attribute, $_jsonConfig)):
45
+ $_renderer->setProduct($_product);
46
+ $_renderer->setAttributeObj($_attribute);
47
+ echo $_renderer->toHtml();
48
+ $_rendered = true;
49
+ break;
50
+ endif;
51
+ endforeach;
52
+
53
+ if (!$_rendered):
54
+ ?>
55
+ <dt><label class="required"><em>*</em><?php echo $_attribute->getLabel() ?></label></dt>
56
+ <dd<?php if ($_attribute->decoratedIsLast){?> class="last"<?php }?>>
57
+ <div class="input-box">
58
+ <select name="super_attribute[<?php echo $_attribute->getAttributeId() ?>]" id="attribute<?php echo $_attribute->getAttributeId() ?>" class="required-entry super-attribute-select">
59
+ <option><?php echo $this->__('Choose an Option...') ?></option>
60
+ </select>
61
+ </div>
62
+ </dd>
63
+ <?php endif; ?>
64
+ <?php endforeach; ?>
65
+ </dl>
66
+ <script type="text/javascript">
67
+ var spConfig = new Product.Config(<?php echo $_jsonConfig ?>);
68
+ </script>
69
+ <?php echo $this->getChildHtml('after') ?>
70
+ <?php endif;?>
app/design/frontend/f001/default/template/catalogsearch/form.mini.phtml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ /* @var $this Mage_Core_Block_Template */
27
+ /* @var $catalogSearchHelper Mage_Catalogsearch_Helper_Data */
28
+ $catalogSearchHelper = $this->helper('catalogsearch');
29
+ ?>
30
+ <form id="search_mini_form" action="<?php echo $catalogSearchHelper->getResultUrl() ?>" method="get">
31
+ <div class="form-search">
32
+ <label for="search"><?php echo $this->__('Search:') ?></label>
33
+ <input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
34
+ <button type="submit" title="<?php echo $this->__('Search') ?>" class="button"><span><!--<span><?php echo $this->__('Search') ?></span>--></span></button>
35
+ <div id="search_autocomplete" class="search-autocomplete"></div>
36
+ <script type="text/javascript">
37
+ //<![CDATA[
38
+ var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search entire store here...') ?>');
39
+ searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
40
+ //]]>
41
+ </script>
42
+ </div>
43
+ </form>
app/design/frontend/{default/f001 → f001/default}/template/checkout/cart/header.phtml RENAMED
File without changes
app/design/frontend/f001/default/template/configurableswatches/catalog/layer/filter/swatches.phtml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package rwd_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Template for filter items block
30
+ *
31
+ * @see Mage_Catalog_Block_Layer_Filter
32
+ */
33
+
34
+ $_dimHelper = Mage::helper('configurableswatches/swatchdimensions');
35
+ $_swatchInnerWidth = $_dimHelper->getInnerWidth(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LAYER);
36
+ $_swatchInnerHeight = $_dimHelper->getInnerHeight(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LAYER);
37
+ $_swatchOuterWidth = $_dimHelper->getOuterWidth(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LAYER);
38
+ $_swatchOuterHeight = $_dimHelper->getOuterHeight(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LAYER);
39
+ ?>
40
+
41
+ <ol class="configurable-swatch-list">
42
+ <?php foreach ($this->getItems() as $_item): ?>
43
+ <?php
44
+ $_hasItems = ($_item->getCount() > 0);
45
+ $_label = $_item->getLabel();
46
+ $_swatchUrl = Mage::helper('configurableswatches/productimg')->getGlobalSwatchUrl($_item, $_label, $_swatchInnerWidth, $_swatchInnerHeight);
47
+ $_hasImage = (!empty($_swatchUrl));
48
+ $_linkClass = 'swatch-link' . (($_hasImage) ? ' has-image' : '');
49
+ $_linkCss = 'height:' . $_swatchOuterHeight . 'px; ' . ((!$_hasImage) ? 'min-' : '') . 'width:' . $_swatchOuterWidth . 'px;';
50
+ $_lineHeight = $_swatchOuterHeight + 2;
51
+ ?>
52
+ <li<?php if ($_hasImage){ echo ' style="line-height: ' . $_lineHeight . 'px;"'; } ?>>
53
+ <?php if ($_hasItems): ?>
54
+ <a href="<?php echo $this->urlEscape($_item->getUrl()) ?>" class="<?php echo $_linkClass ?>">
55
+ <?php else: ?>
56
+ <span class="<?php echo $_linkClass ?>">
57
+ <?php endif; ?>
58
+ <span class="swatch-label"<?php if ($_hasImage){ echo ' style="' . $_linkCss . '"'; } ?>>
59
+ <?php if ($_hasImage): ?>
60
+ <img src="<?php echo $_swatchUrl; ?>" alt="<?php echo $_label; ?>" title="<?php echo $_label ?>" width="<?php echo $_swatchInnerWidth ?>" height="<?php echo $_swatchInnerHeight ?>" />
61
+ <?php else: ?>
62
+ <?php echo $_label; ?>
63
+ <?php endif; ?>
64
+ </span>
65
+ <?php if ($this->shouldDisplayProductCount()): ?>
66
+ <span class="count">(<?php echo $_item->getCount() ?>)</span>
67
+ <?php endif; ?>
68
+ <?php if ($_hasItems): ?>
69
+ </a>
70
+ <?php else: ?>
71
+ </span>
72
+ <?php endif; ?>
73
+ </li>
74
+ <?php endforeach ?>
75
+ </ol>
app/design/frontend/f001/default/template/configurableswatches/catalog/layer/state/swatch.phtml ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package rwd_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ $_filter = $this->getFilter();
29
+ $_label = $this->stripTags($_filter->getLabel());
30
+
31
+ $_swatchInnerWidth = $this->getSwatchInnerWidth();
32
+ $_swatchInnerHeight = $this->getSwatchInnerHeight();
33
+ $_swatchOuterWidth = $this->getSwatchOuterWidth();
34
+ $_swatchOuterHeight = $this->getSwatchOuterHeight();
35
+
36
+ $_lineHeight = $_swatchOuterHeight + 2;
37
+
38
+ $_swatchUrl = $this->getSwatchUrl();
39
+ ?>
40
+
41
+ <li class="swatch-current">
42
+ <?php
43
+ $clearLinkUrl = $_filter->getClearLinkUrl();
44
+ if ($clearLinkUrl):
45
+ ?>
46
+ <a class="btn-previous" href="<?php echo $_filter->getRemoveUrl() ?>" title="<?php echo $this->__('Previous') ?>"><?php echo $this->__('Previous') ?></a>
47
+ <a class="btn-remove" title="<?php echo $this->escapeHtml($_filter->getFilter()->getClearLinkText()) ?>" href="<?php echo $clearLinkUrl ?>"><?php echo $this->escapeHtml($_filter->getFilter()->getClearLinkText()) ?></a>
48
+ <?php else: ?>
49
+ <a class="btn-remove" href="<?php echo $_filter->getRemoveUrl() ?>" title="<?php echo $this->__('Remove This Item') ?>"><?php echo $this->__('Remove This Item') ?></a>
50
+ <?php endif; ?>
51
+ <span class="label" style="line-height: <?php echo $_lineHeight; ?>px;"><?php echo $this->__($_filter->getName()) ?>:</span>
52
+ <span class="value" style="line-height: <?php echo $_lineHeight; ?>px;">
53
+ <span class="swatch-link" style="height:<?php echo $_swatchOuterHeight ?>px; width:<?php echo $_swatchOuterWidth ?>px;">
54
+ <span class="swatch-label" style="height:<?php echo $_swatchInnerHeight ?>px; width:<?php echo $_swatchInnerWidth ?>px; line-height:<?php echo $_swatchInnerHeight ?>px;">
55
+ <img src="<?php echo $_swatchUrl; ?>" alt="<?php echo $_label; ?>" title="<?php echo $_label ?>" width="<?php echo $_swatchInnerWidth ?>" height="<?php echo $_swatchInnerHeight ?>" />
56
+ </span>
57
+ </span>
58
+ </span>
59
+ </li>
app/design/frontend/f001/default/template/configurableswatches/catalog/media/js.phtml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package rwd_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /* @var $this Mage_ConfigurableSwatches_Block_Catalog_Media_Js_Abstract */
29
+ ?>
30
+
31
+ <script type="text/javascript">
32
+ $j(document).on('product-media-loaded', function() {
33
+ ConfigurableMediaImages.init('<?php echo $this->getImageType(); ?>');
34
+ <?php $keepFrame = ($this->getRequest()->getControllerName() !== 'product'); // enabled for the product page only
35
+ foreach ($this->getProductImageFallbacks($keepFrame) as $imageFallback): ?>
36
+ ConfigurableMediaImages.setImageFallback(<?php echo $imageFallback['product']->getId(); ?>, $j.parseJSON('<?php echo $imageFallback['image_fallback']; ?>'));
37
+ <?php endforeach; ?>
38
+ $j(document).trigger('configurable-media-images-init', ConfigurableMediaImages);
39
+ });
40
+ </script>
app/design/frontend/f001/default/template/configurableswatches/catalog/product/list/swatches.phtml ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package rwd_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ $_product = $this->getProduct();
29
+
30
+ if (Mage::helper('configurableswatches')->isEnabled() && $_product && $_product->getId()
31
+ && ($_attrValues = $_product->getListSwatchAttrValues()) && count($_attrValues) > 0):
32
+
33
+ $_swatchAttribute = Mage::helper('configurableswatches/productlist')->getSwatchAttribute();
34
+
35
+ $_dimHelper = Mage::helper('configurableswatches/swatchdimensions');
36
+ $_swatchInnerWidth = $_dimHelper->getInnerWidth(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LISTING);
37
+ $_swatchInnerHeight = $_dimHelper->getInnerHeight(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LISTING);
38
+ $_swatchOuterWidth = $_dimHelper->getOuterWidth(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LISTING);
39
+ $_swatchOuterHeight = $_dimHelper->getOuterHeight(Mage_ConfigurableSwatches_Helper_Swatchdimensions::AREA_LISTING);
40
+ ?>
41
+ <ul class="configurable-swatch-list configurable-swatch-<?php echo $_swatchAttribute->getAttributeCode() ?> clearfix">
42
+ <?php foreach ($_attrValues as $_optionValue => $_optionLabel): ?>
43
+ <?php
44
+ $_optionCode = Mage::helper('configurableswatches')->getHyphenatedString($_optionLabel);
45
+ $_swatchUrl = Mage::helper('configurableswatches/productimg')->getSwatchUrl($_product, $_optionLabel, $_swatchInnerWidth, $_swatchInnerHeight, $_swatchType);
46
+ $_hasImage = !empty($_swatchUrl);
47
+ $_liClasses = array();
48
+ $_aClass = 'swatch-link swatch-link-' . $_swatchAttribute->getId();
49
+ if ($_hasImage) {
50
+ if ($_swatchType == 'media') {
51
+ $_liClasses[] = 'is-media';
52
+ }
53
+ $_aClass .= ' has-image';
54
+ } elseif (strlen($_optionLabel) > 3) {
55
+ $_liClasses[] = 'wide-swatch';
56
+ }
57
+ if (Mage::helper('configurableswatches/productlist')->swatchMatchesFilter($_optionValue)) {
58
+ $_liClasses[] = 'filter-match';
59
+ }
60
+ $_liClass = (!empty($_liClasses)) ? ' ' . implode(' ', $_liClasses) : '';
61
+ ?>
62
+ <li class="option-<?php echo $_optionCode; ?><?php echo $_liClass; ?>" data-product-id="<?php echo $_product->getId() ?>" data-option-label="<?php echo $_optionLabel ?>">
63
+ <a href="javascript:void(0)" name="<?php echo $_optionCode; ?>" class="<?php echo $_aClass ?>" title="<?php echo $_optionLabel; ?>"
64
+ style="height: <?php echo $_swatchOuterHeight ?>px; <?php if (!$_hasImage): ?>min-<?php endif; ?>width: <?php echo $_swatchOuterWidth ?>px;">
65
+ <span class="swatch-label" style="height: <?php echo $_swatchInnerHeight ?>px; <?php if (!$_hasImage): ?>min-<?php endif; ?>width: <?php echo $_swatchInnerWidth ?>px; line-height: <?php echo $_swatchInnerHeight ?>px;">
66
+ <?php if ($_hasImage): ?>
67
+ <img src="<?php echo $_swatchUrl; ?>" alt="<?php echo $_optionLabel; ?>" width="<?php echo $_swatchInnerWidth ?>" height="<?php echo $_swatchInnerHeight ?>" />
68
+ <?php else: ?>
69
+ <?php echo $_optionLabel; ?>
70
+ <?php endif; ?>
71
+ </span>
72
+ </a>
73
+ </li>
74
+ <?php endforeach; ?>
75
+ </ul>
76
+ <?php
77
+ endif;
app/design/frontend/f001/default/template/configurableswatches/catalog/product/view/type/configurable/swatch-js.phtml ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package rwd_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <script type="text/javascript">
28
+ document.observe('dom:loaded', function() {
29
+ var swatchesConfig = new Product.ConfigurableSwatches(spConfig);
30
+ });
31
+ </script>
app/design/frontend/f001/default/template/configurableswatches/catalog/product/view/type/options/configurable/swatches.phtml ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package rwd_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ $_product = $this->getProduct();
29
+ $_attribute = $this->getAttributeObj();
30
+ $_jsonConfig = $this->getJsonConfig();
31
+ $_config = json_decode($_jsonConfig);
32
+
33
+ $_swatchInnerWidth = $this->getSwatchInnerWidth();
34
+ $_swatchInnerHeight = $this->getSwatchInnerHeight();
35
+ $_swatchOuterWidth = $this->getSwatchOuterWidth();
36
+ $_swatchOuterHeight = $this->getSwatchOuterHeight();
37
+
38
+ $_attr = $_attribute->getProductAttribute();
39
+ $_attrCode = $_attr->getAttributeCode();
40
+ $_id = $_attribute->getAttributeId();
41
+
42
+ $_swatchArray = $_config->attributes->$_id;
43
+ ?>
44
+ <dt class="swatch-attr">
45
+ <label id="<?php echo $_attrCode ?>_label" class="required">
46
+ <em>*</em><?php echo $_attribute->getLabel() ?>:
47
+ <span id="select_label_<?php echo $_attrCode ?>" class="select-label"></span>
48
+ </label>
49
+ </dt>
50
+ <dd class="clearfix swatch-attr<?php if ($_attribute->decoratedIsLast) echo ' last'; ?>">
51
+ <div class="input-box">
52
+ <select name="super_attribute[<?php echo $_attribute->getAttributeId() ?>]" id="attribute<?php echo $_attribute->getAttributeId() ?>" class="required-entry super-attribute-select no-display swatch-select">
53
+ <option><?php echo $this->__('Choose an Option...') ?></option>
54
+ </select>
55
+ <ul id="configurable_swatch_<?php echo $_attrCode ?>" class="configurable-swatch-list clearfix">
56
+ <?php foreach ($_swatchArray->options as $_option): ?>
57
+ <?php
58
+ $_optionCode = Mage::helper('configurableswatches')->getHyphenatedString($_option->label);
59
+ $_swatchUrl = Mage::helper('configurableswatches/productimg')->getSwatchUrl($_product, $_option->label, $_swatchInnerWidth, $_swatchInnerHeight, $_swatchType);
60
+ $_hasImage = !empty($_swatchUrl);
61
+ $_liClass = '';
62
+ $_aClass = 'swatch-link swatch-link-' . $_attribute->getAttributeId();
63
+ if ($_hasImage) {
64
+ $_liClass .= $_swatchType == 'media' ? ' is-media' : '';
65
+ $_aClass .= ' has-image';
66
+ } elseif (strlen($_option->label) > 3) {
67
+ $_liClass .= ' wide-swatch';
68
+ }
69
+ ?>
70
+ <li class="option-<?php echo $_optionCode; ?><?php echo $_liClass; ?>" id="option<?php echo $_option->id; ?>">
71
+ <a href="javascript:void(0)" name="<?php echo $_optionCode; ?>" id="swatch<?php echo $_option->id; ?>" class="<?php echo $_aClass ?>" title="<?php echo $_option->label; ?>"
72
+ style="height: <?php echo $_swatchOuterHeight ?>px; <?php if (!$_hasImage): ?>min-<?php endif; ?>width: <?php echo $_swatchOuterWidth ?>px;">
73
+ <span class="swatch-label" style="height: <?php echo $_swatchInnerHeight ?>px; <?php if (!$_hasImage): ?>min-<?php endif; ?>width: <?php echo $_swatchInnerWidth ?>px; line-height: <?php echo $_swatchInnerHeight ?>px;">
74
+ <?php if ($_hasImage): ?>
75
+ <img src="<?php echo $_swatchUrl; ?>" alt="<?php echo $_option->label; ?>" width="<?php echo $_swatchInnerWidth ?>" height="<?php echo $_swatchInnerHeight ?>" />
76
+ <?php else: ?>
77
+ <?php echo $_option->label; ?>
78
+ <?php endif; ?>
79
+ </span>
80
+ <span class="x">X</span>
81
+ </a>
82
+ </li>
83
+ <?php endforeach; ?>
84
+ </ul>
85
+ </div>
86
+ </dd>
app/design/frontend/f001/default/template/page/1column.phtml ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Template for Mage_Page_Block_Html
30
+ */
31
+ ?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
+ <head>
35
+ <?php echo $this->getChildHtml('head') ?>
36
+ </head>
37
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
+ <?php echo $this->getChildHtml('after_body_start') ?>
39
+ <div class="wrapper">
40
+ <?php echo $this->getChildHtml('global_notices') ?>
41
+ <div class="page">
42
+ <?php echo $this->getChildHtml('header') ?>
43
+ <div class="main-container col1-layout">
44
+ <div class="main">
45
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
46
+ <div class="col-main">
47
+ <?php echo $this->getChildHtml('global_messages') ?>
48
+ <?php echo $this->getChildHtml('content') ?>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ <?php echo $this->getChildHtml('before_footer') ?>
53
+ <?php echo $this->getChildHtml('footer') ?>
54
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
55
+ <?php echo $this->getChildHtml('before_body_end') ?>
56
+ </div>
57
+ </div>
58
+ <?php echo $this->getAbsoluteFooter() ?>
59
+ </body>
60
+ </html>
app/design/frontend/f001/default/template/page/2columns-left.phtml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Template for Mage_Page_Block_Html
30
+ */
31
+ ?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
+ <head>
35
+ <?php echo $this->getChildHtml('head') ?>
36
+ </head>
37
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
+ <?php echo $this->getChildHtml('after_body_start') ?>
39
+ <div class="wrapper">
40
+ <?php echo $this->getChildHtml('global_notices') ?>
41
+ <div class="page">
42
+ <?php echo $this->getChildHtml('header') ?>
43
+ <div class="main-container col2-left-layout">
44
+ <div class="main">
45
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
46
+ <div class="col-main">
47
+ <?php echo $this->getChildHtml('global_messages') ?>
48
+ <?php echo $this->getChildHtml('content') ?>
49
+ </div>
50
+ <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
51
+ </div>
52
+ </div>
53
+ <?php echo $this->getChildHtml('before_footer') ?>
54
+ <?php echo $this->getChildHtml('footer') ?>
55
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
56
+ <?php echo $this->getChildHtml('before_body_end') ?>
57
+ </div>
58
+ </div>
59
+ <?php echo $this->getAbsoluteFooter() ?>
60
+ </body>
61
+ </html>
app/design/frontend/f001/default/template/page/2columns-right.phtml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Template for Mage_Page_Block_Html
30
+ */
31
+ ?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
+ <head>
35
+ <?php echo $this->getChildHtml('head') ?>
36
+ </head>
37
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
+ <?php echo $this->getChildHtml('after_body_start') ?>
39
+ <div class="wrapper">
40
+ <?php echo $this->getChildHtml('global_notices') ?>
41
+ <div class="page">
42
+ <?php echo $this->getChildHtml('header') ?>
43
+ <div class="main-container col2-right-layout">
44
+ <div class="main">
45
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
46
+ <div class="col-main">
47
+ <?php echo $this->getChildHtml('global_messages') ?>
48
+ <?php echo $this->getChildHtml('content') ?>
49
+ </div>
50
+ <div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
51
+ </div>
52
+ </div>
53
+ <?php echo $this->getChildHtml('before_footer') ?>
54
+ <?php echo $this->getChildHtml('footer') ?>
55
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
56
+ <?php echo $this->getChildHtml('before_body_end') ?>
57
+ </div>
58
+ </div>
59
+ <?php echo $this->getAbsoluteFooter() ?>
60
+ </body>
61
+ </html>
app/design/frontend/f001/default/template/page/3columns.phtml ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Template for Mage_Page_Block_Html
30
+ */
31
+ ?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
+ <head>
35
+ <?php echo $this->getChildHtml('head') ?>
36
+ </head>
37
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
+ <?php echo $this->getChildHtml('after_body_start') ?>
39
+ <div class="wrapper">
40
+ <?php echo $this->getChildHtml('global_notices') ?>
41
+ <div class="page">
42
+ <?php echo $this->getChildHtml('header') ?>
43
+ <div class="main-container col3-layout">
44
+ <div class="main">
45
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
46
+ <div class="col-wrapper">
47
+ <div class="col-main">
48
+ <?php echo $this->getChildHtml('global_messages') ?>
49
+ <?php echo $this->getChildHtml('content') ?>
50
+ </div>
51
+ <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
52
+ </div>
53
+ <div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
54
+ </div>
55
+ </div>
56
+ <?php echo $this->getChildHtml('before_footer') ?>
57
+ <?php echo $this->getChildHtml('footer') ?>
58
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
59
+ <?php echo $this->getChildHtml('before_body_end') ?>
60
+ </div>
61
+ </div>
62
+ <?php echo $this->getAbsoluteFooter() ?>
63
+ </body>
64
+ </html>
app/design/frontend/f001/default/template/page/html/footer.phtml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <div class="footer-container">
28
+ <div class="footer">
29
+ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('footer_links')->toHtml() ?>
30
+ <div class="clear"></div>
31
+ <div class="contacts">
32
+ <div class="f-left"><?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('contacts')->toHtml() ?></div>
33
+ <img class="payments" src="<?php echo $this->getSkinUrl('images/payments.gif') ?>" alt="MasterCard, Maestro, Visa, AmericanExpress"/>
34
+ </div>
35
+ <br />
36
+ <p class="legality">
37
+ <?php echo $this->getCopyright() ?>
38
+ <!-- This theme is avalable udner Creative Commons License http://creativecommons.org/licenses/by/3.0/ Removing links to is similarly prohibited. -->Magento Theme by <a href="http://templates-master.com" title="Templates master" rel="nofollow">templates-master.com</a><!-- Removing links to is similarly prohibited. -->
39
+ <?php echo $this->getChildHtml('store_switcher') ?>
40
+ </p>
41
+ <div class="clear"></div>
42
+ </div>
43
+ </div>
44
+
45
+ <script type="text/javascript" src="<?php echo $this->getSkinUrl('js/productInfo.js') ?>"></script>
46
+ <script type="text/javascript">
47
+ Event.observe(window, 'load', function() {
48
+ new ProductInfo('.ajax', 'p.product-image a', {
49
+ 'loader': "<?php echo $this->getSkinUrl('images/ajax_loader.gif')?>",
50
+ 'loadingMessage': "<?php echo $this->__('Loading') ?>"
51
+ });
52
+ });
53
+ </script>
app/design/frontend/f001/default/template/page/html/header.phtml ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ /**
27
+ * @var Mage_Page_Block_Html_Header $this
28
+ */
29
+ ?>
30
+ <div class="header-container">
31
+ <div class="header">
32
+ <?php if ($this->getIsHomePage()):?>
33
+ <h1 class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a></h1>
34
+ <?php else:?>
35
+ <a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a>
36
+ <?php endif?>
37
+ <h5 class="slogan"><?php echo $this->__('best free magento theme') ?></h5>
38
+ <p class="no-display"><a href="#main"><strong><?php echo $this->__('Skip to Main Content') ?> &raquo;</strong></a></p>
39
+ <?php echo $this->getChildHtml('topSearch') ?>
40
+ <div class="quick-access">
41
+ <p class="welcome-msg"><?php echo $this->getChildHtml('welcome') ?> <?php echo $this->getAdditionalHtml() ?></p>
42
+ <div class="shop-access">
43
+ <?php echo $this->getChildHtml('topLinks') ?>
44
+ </div>
45
+ </div>
46
+ <?php echo $this->getChildHtml('store_language') ?>
47
+ <?php echo $this->getChildHtml('headerCart') ?>
48
+ </div>
49
+ <?php echo $this->getChildHtml('topMenu') ?>
50
+ </div>
app/design/frontend/f001/default/template/page/html/topmenu.phtml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Top menu for store
30
+ *
31
+ * @see Mage_Page_Block_Html_Topmenu
32
+ */
33
+ ?>
34
+ <?php $_menu = $this->getHtml('level-top') ?>
35
+ <div class="nav-container">
36
+ <ul id="nav">
37
+ <li class="level0 first nav-home"><a href="<?php echo $this->getUrl() ?>"><span><?php echo $this->__('Home') ?></span></a></li>
38
+ <?php if($_menu): ?>
39
+ <?php echo $_menu ?>
40
+ <?php endif ?>
41
+ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('menu')->toHtml() ?>
42
+ </ul>
43
+ </div>
app/etc/modules/TM_CatalogConfigurableSwatches.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <TM_CatalogConfigurableSwatches>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </TM_CatalogConfigurableSwatches>
8
+ </modules>
9
+ </config>
app/locale/en_US/TM_Core.csv ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Modules Information","Modules Information"
2
+ "Open Extension Page","Open Extension Page"
3
+ "Please <a href='http://templates-master.com/contacts' onclick='window.open(this.href); return false;'>contact us</a>, if you have some issues with one of our modules.","Please <a href='http://templates-master.com/contacts' onclick='window.open(this.href); return false;'>contact us</a>, if you have some issues with one of our modules."
4
+ "Troubleshooting","Troubleshooting"
5
+ "Changelog","Changelog"
6
+ "Download Latest Version","Download Latest Version"
7
+ "Download","Download"
8
+ "Manage","Manage"
9
+ "Upgrades are not installed","Upgrades are not installed"
10
+ "New version is available","New version is available"
11
+ "Upgrade Information","Upgrade Information"
12
+ "Activate this checkbox, if you want to skip the upgrade operations","Activate this checkbox, if you want to skip the upgrade operations"
13
+ "Module data will be upgraded from %s to %s at the following stores","Module data will be upgraded from %s to %s at the following stores"
14
+ "Install and Reinstall Information","Install and Reinstall Information"
15
+ "Identity Key","Identity Key"
16
+ "Get your identity key at <a href=""%s"" title=""%s"" target=""_blank"">%s</a>","Get your identity key at <a href=""%s"" title=""%s"" target=""_blank"">%s</a>"
17
+ "Select stores to install or reinstall module","Select stores to install or reinstall module"
18
+ "Module is already installed at following stores","Module is already installed at following stores"
19
+ "Manage Module","Manage Module"
20
+ "Code","Code"
21
+ "Local Version","Local Version"
22
+ "Latest Version","Latest Version"
23
+ "Version Status","Version Status"
24
+ "Run","Run"
25
+ "Upgrade and Install/Reinstall %s %s (Data version %s)","Upgrade and Install/Reinstall %s %s (Data version %s)"
26
+ "Install or Reinstall %s %s (Data version %s)","Install or Reinstall %s %s (Data version %s)"
27
+ "Install %s %s","Install %s %s"
28
+ "Modules","Modules"
29
+ "The module has been saved","The module has been saved"
30
+ "updated","updated"
31
+ "outdated","outdated"
32
+ "deprecated","deprecated"
33
+ "Identity key is required","Identity key is required"
34
+ "Response error: %s","Response error: %s"
35
+ "Sorry, try again in five minutes. Validation response parsing error: %s","Sorry, try again in five minutes. Validation response parsing error: %s"
36
+ "Module code is required","Module code is required"
37
+ "Domain name is required","Domain name is required"
38
+ "Identity key is not valid","Identity key is not valid"
39
+ "%s module is not found in purchase history","%s module is not found in purchase history"
40
+ "%s activations limit reached. Please <a href=""%s"" title=""%s"" target=""_blank"">buy the product</a> to activate more domains","%s activations limit reached. Please <a href=""%s"" title=""%s"" target=""_blank"">buy the product</a> to activate more domains"
41
+ "Module ""%s"" is not activated for ""%s"" domain. Please, <a href=""%s"" title=""%s"" target=""_blank"">activate</a> it from our site. %s activations left","Module ""%s"" is not activated for ""%s"" domain. Please, <a href=""%s"" title=""%s"" target=""_blank"">activate</a> it from our site. %s activations left"
42
+ "You are trying to use %s activation(s) for %s module. Only %s activations left. Please <a href=""%s"" title=""%s"">buy the product</a> to activate more domains","You are trying to use %s activation(s) for %s module. Only %s activations left. Please <a href=""%s"" title=""%s"">buy the product</a> to activate more domains"
43
+ "Installed products","Installed products"
44
+ "Product promotions and discounts","Product promotions and discounts"
45
+ "New Products","New Products"
46
+ "Product updates","Product updates"
47
+ "Other","Other"
48
+ "News to show in notification bar","News to show in notification bar"
js/tm/adminhtml/core/window.js ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ TmcoreWindow = Class.create();
2
+ TmcoreWindow.prototype = {
3
+
4
+ current : $H({}),
5
+ blockWindow : null,
6
+ blockTitle : null,
7
+ blockContent : null,
8
+ blockMask : null,
9
+ windowHeight : null,
10
+ confirmedCurrentId: null,
11
+
12
+ initialize: function() {
13
+ this._initWindowElements();
14
+ },
15
+
16
+ _initWindowElements: function() {
17
+ this.blockWindow = $('tmcore_popup');
18
+ this.blockTitle = $('tmcore_popup_title');
19
+ this.blockContent = $('tmcore_popup_content');
20
+ this.blockMask = $('popup-window-mask');
21
+ this.windowHeight = $('html-body').getHeight();
22
+ },
23
+
24
+ onCloseBtn: function() {
25
+ this.hide();
26
+ return this;
27
+ },
28
+
29
+ update: function(content, title) {
30
+ this.blockContent.update(content);
31
+ if (title) {
32
+ this.blockTitle.update(title);
33
+ }
34
+ return this;
35
+ },
36
+
37
+ show: function() {
38
+ toggleSelectsUnderBlock(this.blockMask, false);
39
+ this.blockMask.setStyle({'height':this.windowHeight+'px'}).show();
40
+ this.blockWindow.setStyle({'marginTop':-this.blockWindow.getHeight()/2 + "px", 'display':'block'});
41
+ },
42
+
43
+ hide: function() {
44
+ toggleSelectsUnderBlock(this.blockMask, true);
45
+ this.blockMask.style.display = 'none';
46
+ this.blockWindow.style.display = 'none';
47
+ },
48
+ }
49
+
50
+ Event.observe(window, 'load', function() {
51
+ tmcoreWindow = new TmcoreWindow();
52
+ });
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>magento_absolute_theme_free</name>
4
- <version>1.8.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://creativecommons.org/licenses/by/3.0/">Creative Commons License </license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Magento Absolute Template based on 2 column home page layout with products slider and image slider on welcome page. JavaScript slider on front page is easy to use and SEO friendly.</description>
11
  <notes>Magento Absolute Theme</notes>
12
  <authors><author><name>TemplatesMaster</name><user>TemplatesMaster</user><email>support@templates-master.com</email></author></authors>
13
- <date>2014-01-20</date>
14
- <time>16:56:55</time>
15
- <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="f001"><dir name="layout"><file name="catalog.xml" hash="925baf0e54f4b1a82a0ba1c8119bfabd"/><file name="newsletter.xml" hash="4db398e9305606dc0f644df8756afd27"/><file name="page.xml" hash="80cd84700bd34ef002eea0b631088688"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="457b6b450e46822c93405efb93c5bd37"/></dir></dir><dir name="template"><dir name="catalog"><dir name="navigation"><file name="sidebox.phtml" hash="efbc38b23097fde43fbb08df6947568e"/><file name="top.phtml" hash="7c9ec3484211f4e63ffcbb219226b327"/></dir><dir name="product"><file name="featured.phtml" hash="9295e6e61cd8452344bcd6e2f1bbf605"/><file name="list.phtml" hash="ae5976f981a9f643c788a545cc782534"/><file name="new.phtml" hash="46460da7b3040a765859e6e48af527f8"/></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="793a0db50a304ae845e7bef81dda952d"/></dir><dir name="checkout"><dir name="cart"><file name="header.phtml" hash="8b9ccc7f5e2ad092341283039919ceb0"/></dir></dir><dir name="page"><file name="1column.phtml" hash="3fa261a27bf221006af19769da75afef"/><file name="2columns-left.phtml" hash="339f79cf47e82682a72925602529bfcd"/><file name="2columns-right.phtml" hash="b443cfae3c46bd397d6989ed69ff9d7a"/><file name="3columns.phtml" hash="51f6ce8faaba2a27b9e6c51c2ff71bbb"/><dir name="html"><file name="footer.phtml" hash="ad60e2778b3e610bdf3809389e2636bd"/><file name="header.phtml" hash="4b098f3bc5667005d50ccc75c52099ca"/><file name="topmenu.phtml" hash="69171fe0b5432cdded2a93f5a173b7b9"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="f001"><dir name="css"><file name="custom.css" hash="0b1e510969b1c96d9a6d7f48055b35c9"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="60098e2cde3152ffba0bdd31803f6061"/><file name="styles.css" hash="cfaebf07b3ff363d2cc2a68d6de8eda3"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="b64aaf7cf66b29979609d6e4e2249a48"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="7e6c364b484caf8d20bfbe6f7a3d3231"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="fb6dd894a89491093e5478582a2f4f85"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="57780ee8e915941b3614c1033be45034"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="aeab65b269a5fffe798b0ea0546b6394"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="eb465b91728c58f5689ede4fde04dac5"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="434343db9f0887c4ed5c56bb1f588517"/><file name="callout_side2.jpg" hash="386bb9b19e3e4a8e2eb2b594a9c5e961"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c6a557e47b7b1c0a9a4d64e2ff207ef1"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="68898e14ec31e32c965e99ba64bbc02b"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="403cb6d1f0e6218952941d86599a2ce6"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><dir name="slider"><file name="Thumbs.db" hash="8a87784142b0e07a892484023d31a7a8"/><file name="slider1.jpg" hash="e2d9cb0bd51fa97fed13a73f63e14627"/><file name="slider2.jpg" hash="49674fbfc58aea297c7c0b2ac817e328"/><file name="slider3.jpg" hash="fcf194ccac88253c332c7fa32376b526"/><file name="slider4.jpg" hash="641e84ecf3268c3dc2e4ee6ee3354597"/><file name="slider5.jpg" hash="57a552086c1ee7481e59d3226298b29b"/></dir><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="803b83fe695baed72b7333ed95d20b6e"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_green"><dir name="css"><file name="custom.css" hash="e198bf25aeef51c2be5f0b00d39539b3"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="60098e2cde3152ffba0bdd31803f6061"/><file name="styles.css" hash="d7cf4eeb9f3e14e1adc8519ccc224d7b"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="ea4e9ef0134e99675e61ff385bbbfc2d"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="16926ff1b34f816d18e46bdcdd5d43db"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="acdec4dc2fac0e12d13cbfbbb9a93c03"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="8a4a4e73ff01ee1b3e36e0a4a66ec500"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="263614de994bffba8507cb143bc88448"/><file name="container.gif" hash="e7c533bcf201f18b0c59fe76eea777c4"/><file name="container.png" hash="e734791ccb935606b59e9731c5aa47e1"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="5897be8b0ae3a295d32e41e666c65e44"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="fba09675b0f15221b8e3df4c31c04021"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="4595a9c19ce0bbb1da019414e78f3cdb"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="21b22479dd05e2ffd3440a7b6f61aff4"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="ae0001e526ba724882f508fac17a0108"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="403cb6d1f0e6218952941d86599a2ce6"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="7691e972420aa28dc13fb374ccf7114c"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_grey"><dir name="css"><file name="custom.css" hash="383de26b304a0ac35331da753a7e5d67"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="b0440ffcaf44122904e3cf8bb48d43ff"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="a1a2766d6bf127e942c4758c3fc45360"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="d151ba54bbc5952827fff671cb74d1e5"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="6752ad6abd0fa2e6e9a13654eca24987"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="80b32c240a2580fae18458ef30017ec4"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="434343db9f0887c4ed5c56bb1f588517"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="5d1bd1b915045263cf57efc27490ff42"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="c09df53946d819dc3f6d401bbc019838"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="b305b1cab762ff4ec05d9cd7c92f9a41"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_orange"><dir name="css"><file name="custom.css" hash="6b5a23edba1ed1cb403463c67faa2a5c"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="a3f0943dffdd5b49ed79e106f1536d06"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="129ccfc4db22b2a9b33a4b76a249763f"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="62716db929c7b26be53febe2337376a3"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="8bbf714e8f1b3ed8fc6991ce54b922a4"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="18dcb00c059031489adcaa5919327d30"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="a82693e74779b2095a94a40c9d5d7cc4"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="08df2159554c5f700a3abde378d4ef63"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="d57ff42c6a76b9d80cae2b20f50bd8ed"/><file name="callout_side2.jpg" hash="554879fc61f1c404b9fc27f275067220"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="254b1c9810d0e68ebd4e22cc7e62a7d9"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="f23995ba564be57ffb1150ff65af8205"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="f731fb638fbdb071337d86153f09edee"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="7cdda682dc5a0bac7e4be6c8cf6fab29"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_pink"><dir name="css"><file name="custom.css" hash="9103497de33498c1b14af2b5cac2d18e"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="a3f0943dffdd5b49ed79e106f1536d06"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="9e424fa456d23bf9cff04ca8bb32d5f6"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="c915f8754bc12e0004b58727e71f7d9a"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="59a8edd2e0636e7ace27c879a4b61ebe"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="7b922ff69fa25d993da8a070c15586df"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="10502aa0aba5d3aca8fae78e69e68188"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="5133d2785f3d7a2dfbb1f7dd5ce9368b"/><file name="callout_side2.jpg" hash="5aa052d413633736c71ae6e874f2e906"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="96804ce76cca8d3d6d699b8eaf64237d"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="a1da3005852d780ee6eb6b9df15de8cb"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="a941dc6450f16333a22b21c752f252d5"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_red"><dir name="css"><file name="custom.css" hash="899064c9eacffcf62a62340184957e95"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="0ee41af28875b979af735d11f3842871"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="dea11da7257ee62fa93e58cc45ad2525"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="37df2c010a2270fdcd07ab35c8f13675"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="787633791a751b11def8d8eb307058e7"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="8d3c3d071b7c74b2d701be9253b663bf"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="2fbe39de64a57f4d6e677719ac6ca41a"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="38e0ca2d946b22f85757db0aef3b4a72"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="310d19d6a140aee110260a48cc7c84b0"/><file name="callout_side2.jpg" hash="e6f57ce0d4ac6e8f6e6ecf192e604338"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="0d5b374c40498b1be97ac59a94e25228"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="7971c3fe80424327487720949b7f167e"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="6feb3506bbb60623c3ebb652aa6e99b3"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="956cc822ffa012feb18c40638ab7e13c"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_sea_green"><dir name="css"><file name="custom.css" hash="4f70de842223f3fedb83dbfdfbaffc4f"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="0ee41af28875b979af735d11f3842871"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="e7955dcd324b4c7aaa9fb5128a41a35f"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="4bc4310a93fb3e67c536134c725d6542"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="86cd0c9b9e2f2b85b4f3bd67be8f7a2c"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="2fc4a5ef5051b3c2615abf6672b3d1d8"/><file name="container.gif" hash="e7c533bcf201f18b0c59fe76eea777c4"/><file name="container.png" hash="8b91469008df5dc280a9f377a47e78c7"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="2ab8f3bf4a603e59a203f534e644ac9b"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="5324de8ba8f39ae0140bce46fc1c9080"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="bd4edb4ecaccf6ec15184ce4e08d6db3"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="24366a5a372cf30e287c932b7ad4417b"/><file name="callout_side2.jpg" hash="9a0f541b3bba6e978b0872b90d6b959d"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="5ef56b7d1d87cf7f403654c3230a9fe8"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="119fc3484ea9de980b3b227a8c825a1c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="eb98a3262d39e1100b723f2feed62c72"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="397d5fdf6deeec011a88df938099258f"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_silver"><dir name="css"><file name="custom.css" hash="2096981044296335bd97cc8229ef1a36"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="0ee41af28875b979af735d11f3842871"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="8395b4931d7b9f9e0700a9539d90b5e0"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="8fc79281f79d759b1956b6c652b77ee4"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="061086f1eaa34a46e433206d23b8d406"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="3af4ec304d0ff76429b080684e97fcf7"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="206886b2eec1f4d7034826322d319a58"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="94e2d86a01158c79b5989a575605ccd6"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="e3614f262687005e23006f654bce522b"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c8e5df7334eaf17c218294dde11cdc46"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="bf43329b06a2183554484016fae4c762"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="169d8f2d26b064b888fd0d63ef4b4efb"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="174208ac2d2f3a9031aa39d62759d821"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_violet"><dir name="css"><file name="custom.css" hash="cbf16ff554d0f0eb33fb4dc3fab91889"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="a3f0943dffdd5b49ed79e106f1536d06"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="0b7c75ee0f04cc386d8147ede4de6251"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="6bf3a12f5d8b50758982ded9f8461182"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/><file name="container.png" hash="3fd8c4ed0278b532e16f61cc087e0a66"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="6abd434c5d2dd651bc96196937433848"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="e689b301e4b5f2c941e06b9290bac387"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="db3ec3c1675e57e9ee9754564da05627"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="1beff3be378b35b75ea9a55beee7df04"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="937d758c68df0b2515002c684036236a"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="280db6c4c1e0cbf22ef065713bceb83c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="17d2f7694aeb1292ce5447219da3c9db"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="05f717c66625a1e3ea22b04bd318c721"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="f001_yellow"><dir name="css"><file name="custom.css" hash="e4727a594238e3c04bec3688ee345000"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="styles-ie.css" hash="ce8c20ad4ee3cd959f33dc765670ff01"/><file name="styles.css" hash="a3f0943dffdd5b49ed79e106f1536d06"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="c63b0077f3052ff5a00fb0a8d58f4638"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="7d24442ed060adcaabe84b6fa0d2b1b5"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="button.gif" hash="976d2bed18d0e7782c6b2654ea50c582"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="aff1d7d151a8fba6995d2f9552095b70"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="ba81114d24532bd0319dcb8c8e62857b"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="6cc2a8428f13e2b33e88448abb646766"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="4e296efa86f508a96f94510e6f178eeb"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="d47f87e077fe7c6fb8563b14c32ba7d0"/><file name="callout_side2.jpg" hash="24670765f1f834125a19f3e4c37c0d95"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="8f1f190643c8d4a94209b30c5fe5e756"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="1423ac32de587be6301798ef3bb4968c"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="0be1590aac8f347d52d1cb696f5d3b3d"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><dir name="slider"><file name="Thumbs.db" hash="8a87784142b0e07a892484023d31a7a8"/><file name="slider1.jpg" hash="e2d9cb0bd51fa97fed13a73f63e14627"/><file name="slider2.jpg" hash="49674fbfc58aea297c7c0b2ac817e328"/><file name="slider3.jpg" hash="fcf194ccac88253c332c7fa32376b526"/><file name="slider4.jpg" hash="641e84ecf3268c3dc2e4ee6ee3354597"/><file name="slider5.jpg" hash="57a552086c1ee7481e59d3226298b29b"/></dir><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="06875ee060353a26729cb3147467c35b"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TM_Ajax.xml" hash="9a91443169a792f5ee45cb24ad566b70"/><file name="TM_Featured.xml" hash="3b9d222a29b5136fd1a84d5d8931b822"/><file name="TM_Core.xml" hash="432801c3e16eb2ffa4d48309024617bb"/><file name="TM_Templatef001.xml" hash="f566cc9354a5b863d63d4802413e7691"/></dir></target><target name="magelocal"><dir name="TM"><dir name="Ajax"><dir name="controllers"><file name="ProductController.php" hash="483b20b1c7b986b3a0b1b91ccbb290c7"/></dir><dir name="etc"><file name="config.xml" hash="89de1a3ab210c048ecf4736347bfd558"/></dir></dir><dir name="Featured"><dir name="Block"><file name="Featured.php" hash="f8ae106bd3f27ae60fa14e3db21c2604"/></dir><dir name="etc"><file name="config.xml" hash="5245acac004a1c746d33a51b038805d4"/></dir></dir><dir name="Templatef001"><dir name="etc"><file name="config.xml" hash="35de60c2d00431477e7937df1c592fa4"/></dir></dir></dir></target><target name="magecommunity"><dir name="TM"><dir name="Core"><dir name="Block"><dir name="Adminhtml"><dir name="Module"><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="94e4642076a653933f831d21587f0e0b"/><file name="VersionStatus.php" hash="f437375fa42bd6d5811e9ac357b25b92"/></dir></dir><file name="Grid.php" hash="88147fb4413a034d9baeb72be2862f19"/><dir name="Manage"><file name="Form.php" hash="445f9d528e6649634ef998676edca76d"/><dir name="Tab"><file name="Main.php" hash="2515917547f38ab32f540b20c98b055a"/></dir><file name="Tabs.php" hash="b8b94209331a74de8f74b43096957b46"/></dir><file name="Manage.php" hash="de66455cf3b3c137d63600fcfb752c2e"/></dir><file name="Module.php" hash="5fc47720bda5db44a99ee33dc6682088"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Notification.php" hash="6c06aec0e04520f2dffe9a8ec580d545"/></dir><dir name="Fieldset"><dir name="Modules"><file name="List.php" hash="e4fcb7c10f265a111e754d2776afd9a8"/></dir><file name="Troubleshooting.php" hash="9516baca7da47dffc4c70123260c0ae8"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="04f3938da6e900e9a393899e9a7f8600"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Notification"><file name="Channel.php" hash="a617b0f2a905bc28d2946a23e68ede5f"/></dir></dir></dir></dir></dir><dir name="Module"><file name="MessageLogger.php" hash="23ae476aa7a9ef6379ffe6953e869e0e"/><file name="Upgrade.php" hash="565caeb2c67a0866668d18fcd4c8c7e7"/></dir><file name="Module.php" hash="b72f0452c524f6372c53cfbb26fac8a5"/><dir name="Notification"><file name="Feed.php" hash="9984b660f75579f593bdcf6f47b09302"/></dir><file name="Observer.php" hash="86ab42323c4782aa3aa5e9b3f2b2f300"/><dir name="Resource"><dir name="Module"><file name="AdminGridCollection.php" hash="fb9642aff21c3c833195aebf4cf65644"/><file name="Collection.php" hash="a6fe79d80f1e7039abd51010e5e1ec4c"/><file name="MergedCollection.php" hash="88df0f1531adbf2496d27801c9fd259c"/><file name="RemoteCollection.php" hash="f39e96bebe0d5a39164b578382acb032"/></dir><file name="Module.php" hash="3338136f015ec2ef531214c3430fa087"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Tmcore"><file name="ModuleController.php" hash="b00a654a61aafefa782ff1603656f725"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0e13b7aa740612aeb2a3db22072a24ed"/><file name="config.xml" hash="96ad706f504ee143d88ee11f7c65cf0b"/><file name="system.xml" hash="e0b8f8f7e41058b8de97c1ae22ba5ccc"/></dir><dir name="sql"><dir name="tm_core_setup"><file name="mysql4-install-1.0.0.php" hash="83ec99b96faa96ae51b33ad51f343348"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="26da85d76c4ad2469e3723f16154234f"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>magento_absolute_theme_free</name>
4
+ <version>2.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://creativecommons.org/licenses/by/3.0/">Creative Commons License </license>
7
  <channel>community</channel>
10
  <description>Magento Absolute Template based on 2 column home page layout with products slider and image slider on welcome page. JavaScript slider on front page is easy to use and SEO friendly.</description>
11
  <notes>Magento Absolute Theme</notes>
12
  <authors><author><name>TemplatesMaster</name><user>TemplatesMaster</user><email>support@templates-master.com</email></author></authors>
13
+ <date>2015-01-28</date>
14
+ <time>18:13:44</time>
15
+ <contents><target name="magelocal"><dir name="TM"><dir name="Ajax"><dir name="controllers"><file name="ProductController.php" hash="483b20b1c7b986b3a0b1b91ccbb290c7"/></dir><dir name="etc"><file name="config.xml" hash="89de1a3ab210c048ecf4736347bfd558"/></dir></dir><dir name="Templatef001"><dir name="etc"><file name="config.xml" hash="26af72abfa5ee1453451f16b2242ad7f"/></dir><dir name="upgrades"><file name="2.0.0.php" hash="ce727b4efe670b067971c2dd2d3f8391"/></dir></dir><dir name="Featured"><dir name="Block"><file name="Featured.php" hash="f8ae106bd3f27ae60fa14e3db21c2604"/></dir><dir name="etc"><file name="config.xml" hash="5245acac004a1c746d33a51b038805d4"/></dir></dir></dir><dir name="modules"><file name="TM_Featured.xml" hash=""/></dir></target><target name="magecommunity"><dir name="TM"><dir name="Core"><dir name="Block"><dir name="Adminhtml"><dir name="Module"><dir name="Grid"><dir name="Renderer"><file name="Actions.php" hash="94e4642076a653933f831d21587f0e0b"/><file name="VersionStatus.php" hash="f437375fa42bd6d5811e9ac357b25b92"/></dir></dir><file name="Grid.php" hash="6ed8add73540c00a9f00cb9519576e3e"/><dir name="Manage"><file name="Form.php" hash="445f9d528e6649634ef998676edca76d"/><dir name="Tab"><file name="Main.php" hash="d04eaf5d68e0a1fcc5c9f81f532f6ea4"/></dir><file name="Tabs.php" hash="b8b94209331a74de8f74b43096957b46"/></dir><file name="Manage.php" hash="de66455cf3b3c137d63600fcfb752c2e"/></dir><file name="Module.php" hash="5fc47720bda5db44a99ee33dc6682088"/><dir name="Support"><dir name="Edit"><dir name="Form"><dir name="Element"><dir name="Theard"><file name="Content.php" hash="a0df79a98bff0cf48b84683b13dcfc9e"/></dir><file name="Theard.php" hash="49aa528200fdfecbd73fa5678f579331"/></dir></dir><file name="Form.php" hash="7711ae3830edf2ac1f38c100f576b038"/><dir name="Tab"><file name="Main.php" hash="f95d31910171ac100ba51749dc9ffa1f"/></dir><file name="Tabs.php" hash="009b12547acf1771dceebc7db473be27"/></dir><file name="Edit.php" hash="0dabfacbf1b7a79e47686be6645ecb7d"/><dir name="List"><file name="Grid.php" hash="a01bb91dfa62d5b1415e7a413ab11339"/></dir><file name="List.php" hash="8d059add18b516d9e3bc634f570437ea"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Notification.php" hash="6c06aec0e04520f2dffe9a8ec580d545"/><file name="Size.php" hash="3516ca14bea4f21ee3805219ff128b8a"/></dir><dir name="Fieldset"><dir name="Modules"><file name="List.php" hash="e4fcb7c10f265a111e754d2776afd9a8"/></dir><file name="Troubleshooting.php" hash="9516baca7da47dffc4c70123260c0ae8"/></dir></dir></dir></dir><dir name="Widget"><dir name="Form"><dir name="Element"><dir name="Wysiwyg"><file name="Content.php" hash="cc2b4fa2903d8eff9fa3833462af2f31"/></dir><file name="Wysiwyg.php" hash="a1dbb1fa4d338f9e5f7d6b3d73064179"/></dir><dir name="Renderer"><file name="Wysiwyg.php" hash="853eaaf1f404379b7f288538e1165db5"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="77bfd46c4405cbc4907feafce196280c"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Notification"><file name="Channel.php" hash="a617b0f2a905bc28d2946a23e68ede5f"/></dir></dir></dir></dir></dir><dir name="Module"><file name="MessageLogger.php" hash="23ae476aa7a9ef6379ffe6953e869e0e"/><file name="Upgrade.php" hash="c35c08d62fe09ea42a2db0ba969768e6"/></dir><file name="Module.php" hash="703f554fa48a4d9bf57952fd3b6874d4"/><dir name="Notification"><file name="Feed.php" hash="f148f51380e489e0aee2fc82d780fffa"/></dir><dir name="Oauth"><file name="Client.php" hash="b6ccf069f5b59d74ce09e50c3a83b61d"/></dir><file name="Observer.php" hash="57ca3cfc54e2313e5d3487dca9c23eb1"/><dir name="Resource"><dir name="Module"><file name="AdminGridCollection.php" hash="fb9642aff21c3c833195aebf4cf65644"/><file name="Collection.php" hash="a6fe79d80f1e7039abd51010e5e1ec4c"/><file name="MergedCollection.php" hash="be79fb45e9d1f463d29118faaa320434"/><file name="RemoteCollection.php" hash="714f28b05019c6793523f4ffeffd1b07"/></dir><file name="Module.php" hash="3338136f015ec2ef531214c3430fa087"/><dir name="Support"><file name="Collection.php" hash="ed4112064055536e5eea998c5a2aecd9"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Tmcore"><file name="ModuleController.php" hash="b00a654a61aafefa782ff1603656f725"/><file name="SupportController.php" hash="bf983c1bf8155d455b07b55a9af71046"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="aa149f26dedd303c22173cf80a87bbc9"/><file name="config.xml" hash="87315cef7988317f62e2c47ec7ebe0a8"/><file name="system.xml" hash="80f99931d76e07264eec3694f94dd961"/></dir><dir name="sql"><dir name="tm_core_setup"><file name="mysql4-install-1.0.0.php" hash="aa545a4cb0dd65a6af6e58f3a3a73e69"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="26da85d76c4ad2469e3723f16154234f"/></dir></dir></dir><dir name="CatalogConfigurableSwatches"><dir name="Helper"><file name="Data.php" hash="c7125d67970907480c323520cc7328cc"/></dir><dir name="etc"><file name="config.xml" hash="86893d103310512e858cee20720fbe19"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TM_Core.xml" hash="432801c3e16eb2ffa4d48309024617bb"/><file name="TM_Templatef001.xml" hash="f566cc9354a5b863d63d4802413e7691"/><file name="TM_Ajax.xml" hash="9a91443169a792f5ee45cb24ad566b70"/><file name="TM_CatalogConfigurableSwatches.xml" hash="60b52393093803df52cde2d71191a129"/><file name="TM_Featured.xml" hash="3b9d222a29b5136fd1a84d5d8931b822"/></dir></target><target name="magedesign"><dir name="default"><dir name="default"><dir name="layout"><file name="tmcore.xml" hash=""/></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="tmcore.xml" hash="93e50640cd04f2ed2243eaa418a51cfc"/></dir><dir name="template"><dir name="tmcore"><dir name="ticket"><dir name="edit"><dir name="form"><dir name="element"><dir name="theard"><file name="content.phtml" hash="a53a06e14664a42864200a06da075dc6"/></dir></dir></dir></dir></dir><file name="popup.phtml" hash="2f9c258f2010fabe08f8737781562c78"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="tm"><file name="configurableswatches.xml" hash="9ee64bb2c7d982f87fdb5d691583ed07"/></dir></dir><dir name="template"><dir name="tm"><dir name="configurableswatches"><dir name="catalog"><dir name="media"><file name="js.phtml" hash="923f88a865e9686a389420a98808906a"/></dir><dir name="product"><dir name="view"><dir name="type"><dir name="configurable"><file name="swatch-js.phtml" hash="f3aee013428bb8cb51d223fb9b79362a"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="f001"><dir name="default"><dir name="layout"><file name="configurableswatches.xml" hash="e3554c2a0d8d3a935222e3f6a9dd82ee"/><file name="local.xml" hash="debe8e56947e8e6c61ff377e496a554c"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="457b6b450e46822c93405efb93c5bd37"/></dir></dir><dir name="template"><dir name="catalog"><dir name="layer"><file name="state.phtml" hash="b796f727245d8e3dabea07f363e6582a"/></dir><dir name="navigation"><file name="sidebox.phtml" hash="efbc38b23097fde43fbb08df6947568e"/><file name="top.phtml" hash="0c81e88710fe9880f0f8a0d5c076648c"/></dir><dir name="product"><file name="featured.phtml" hash="9295e6e61cd8452344bcd6e2f1bbf605"/><file name="list.phtml" hash="82406bcb8b1a613e49de3a9a337ed0f8"/><file name="new.phtml" hash="d68d5a920c93dc6fdaf24b3f3ff294ca"/><dir name="view"><file name="media.phtml" hash="eef565709c970085d2b5a57d89ab6479"/><dir name="type"><dir name="options"><file name="configurable.phtml" hash="a7aae1fd87b8c0901e25e0b73a43ba68"/></dir></dir></dir></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="c62ed05fa79faa085cce6a7332ff84ad"/></dir><dir name="checkout"><dir name="cart"><file name="header.phtml" hash="8b9ccc7f5e2ad092341283039919ceb0"/></dir></dir><dir name="configurableswatches"><dir name="catalog"><dir name="layer"><dir name="filter"><file name="swatches.phtml" hash="2f96ff1d7eb48fbc260e489c047b4bc7"/></dir><dir name="state"><file name="swatch.phtml" hash="e696b74ae734670552bcc5eb308586ef"/></dir></dir><dir name="media"><file name="js.phtml" hash="f99d9b15d9ad27e4190b30f331f8cc21"/></dir><dir name="product"><dir name="list"><file name="swatches.phtml" hash="b5dd16faa22d4c248ce9c237918df1c9"/></dir><dir name="view"><dir name="type"><dir name="configurable"><file name="swatch-js.phtml" hash="ba64818ebe7d00c7cc6aba106f72fe39"/></dir><dir name="options"><dir name="configurable"><file name="swatches.phtml" hash="25b9919bbdbaf300d44b3425f4af5925"/></dir></dir></dir></dir></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="d81a69d3823f84f54315444f744dfdd0"/><file name="2columns-left.phtml" hash="32b3bf013bbf676445f6a70d59ccba0d"/><file name="2columns-right.phtml" hash="ba1361a70ff5e3b47d56c019910164e5"/><file name="3columns.phtml" hash="7a32e78b5bac4faa2c20db9bb069c605"/><dir name="html"><file name="footer.phtml" hash="4e0a7f3f1b89fefd744f056a32ae731f"/><file name="header.phtml" hash="969f5923c7b1f336fff3a4a93d343b71"/><file name="topmenu.phtml" hash="2dc4640c020cd3de4d914e48a609c306"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="TM_Core.csv" hash="afd8a7597ed0531c6a84ad05cb5205a5"/></dir></target><target name="mageweb"><dir name="js"><dir name="tm"><dir name="adminhtml"><dir name="core"><file name="window.js" hash="1e204d5d2cc835187e4a5b06ba45105d"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="tm"><dir name="configurableswatches"><dir name="css"><file name="swatches.css" hash="6c7a39b6efa9b95fa5e9bbb23b4dfd1b"/></dir><dir name="images"><file name="bg_x.png" hash="c321c67f6929326129426c9e83207ea3"/></dir><dir name="js"><file name="app.js" hash="bc513fafba066a7b259153340f0e66a4"/></dir></dir></dir></dir></dir><dir name="f001"><dir name="default"><dir name="css"><file name="custom.css" hash="bf44893a54e4a1e5aea0204fe8551c45"/><file name="ie8.css" hash="932d74b91f60928ccaf57dd93d9b3b71"/><file name="print.css" hash="4fa35816e1a2854c83b8638fbd3bd313"/><file name="styles-ie.css" hash="81f4c1c32ed342ef4bedbccb0dff395a"/><file name="styles.css" hash="8cab42da0c8884012b93d8ecc1836661"/><file name="theme.css" hash="8e3bdba90cfacb327c06b995e75b811d"/></dir><dir name="images"><file name="Thumbs.db" hash="686fb02ed065d4345257fcaf6ff795d8"/><file name="account_box_bg.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="account_nav_head_bg.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="ajax_loader.gif" hash="394bafc3cc4dfb3a0ee48c1f54669539"/><file name="base_mini_actions_bg.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="base_mini_alt_bg.gif" hash="8ed2830e375cc42ae4d1e892ab3e0cb1"/><file name="base_mini_bg.gif" hash="0a60f9efc48dcdabf974952046cee397"/><file name="base_mini_head_bg.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="base_mini_tabs_bg.gif" hash="6dc92b0e2458683c3c7559f388214d78"/><file name="best_selling_tr_even_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="best_selling_tr_odd_bg.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_tierico.gif" hash="e650201649ce0393ffca68132328b7e9"/><file name="bg_tierico1.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="bkg_account_box.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grand-total.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="bkg_products-grid3.gif" hash="e8fbc47f9fec21d6f5c3422523f3854e"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="325472601571f31e1bf00674c368d335"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="body_bg.gif" hash="b64aaf7cf66b29979609d6e4e2249a48"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_mini_search.gif" hash="7e6c364b484caf8d20bfbe6f7a3d3231"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout.png" hash="a65868bfdf37e6c9bc8651fc402c43b3"/><file name="btn_proceed_to_checkout_bg.gif" hash="d1f61b4cd9db50e0322d23b291f1f4c4"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout_rad.gif" hash="ee0f96c5b22aab80149238c210d1bf95"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="chart_remove.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="checkout_progress_corner.gif" hash="fc7378ed1e65293ec9774759f6b62010"/><file name="close.gif" hash="6999746d88c47e91d087014d405afe8e"/><file name="common.gif" hash="b37bfb6d1dc7154cad41a64656d6f043"/><file name="container.png" hash="fb6dd894a89491093e5478582a2f4f85"/><file name="currency_switcher_bg.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="customer_reviews_pager_bg.gif" hash="662cb447367de70d5d99f391b773d7f1"/><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="data_table_th_bg.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_world.png" hash="05ca48f89822be2e26e8eb2124e09ea5"/><file name="footer_bg.gif" hash="57780ee8e915941b3614c1033be45034"/><file name="form_button.gif" hash="9466fb8f71d54bb031ab10480bc69401"/><file name="form_button_alt.gif" hash="684707e1b859a2b822d05f20286174ce"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="gift-message-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="gift-message-collapse.gif" hash="b051534bc90c9be80b5d4e9c978f05a8"/><file name="gift-message-expand.gif" hash="eca2e78f696f8d62537114e2ccf421c1"/><file name="glider_bg.gif" hash="98cc38844b9a8b5ff3d6b0d80fa9fb1a"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_cart_infobar.png" hash="2d1bdc2cce6e5ab41ea2ab553ee36de2"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_facebook.gif" hash="8d5fb9870efe385d8f0a7125108ce298"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_folder_table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_newsletter.gif" hash="ee0b22b46784038f6da02419e234fe4f"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_twitter.gif" hash="37c846cb733e5e21807b8931bd0d31d9"/><file name="i_twitter_large.gif" hash="ec60ceb3f498658bd87453970fa56774"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="icon_asterick.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="icon_big_rss.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="icon_cart_item_remove.gif" hash="6aebfb294fa1f98ea6d8a53f438c0173"/><file name="icon_lorry.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="icon_ma_info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="icon_ma_reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="icon_ma_tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="icon_opc_back.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="icon_page_white.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="icon_page_white_text.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="icon_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="icon_special_price.gif" hash="8c192cc00b2df327e27e7c72406a1967"/><file name="icon_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="icon_world.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><dir name="ie"><file name="Thumbs.db" hash="42b5c75decba67d8069b1caa47a10cf2"/><file name="container.gif" hash="aeab65b269a5fffe798b0ea0546b6394"/></dir><file name="list_remove_btn.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="listing_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="listing_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_box_bg.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="login_box_form_buttons_bg.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="logo.gif" hash="eb465b91728c58f5689ede4fde04dac5"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="Thumbs.db" hash="d8d000c2018e7004f2330cfe88465748"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="callout_side1.jpg" hash="434343db9f0887c4ed5c56bb1f588517"/><file name="callout_side2.jpg" hash="386bb9b19e3e4a8e2eb2b594a9c5e961"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="mini_search_bg.gif" hash="c6a557e47b7b1c0a9a4d64e2ff207ef1"/><file name="multi_address_box_bg.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="narrow_by_dd_bg.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="nav.gif" hash="68898e14ec31e32c965e99ba64bbc02b"/><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="opc_off_head_bg.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="opc_on_box_bg.gif" hash="065d507000e7d0b887fcb324bb9d5995"/><file name="page_head_bg.gif" hash="1c76c180ce48580e8ee5e4f8ec2c9cf7"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="pager_bg.gif" hash="e6967716de8c4bc4c96c206a0dbd2c5f"/><file name="payments.gif" hash="403cb6d1f0e6218952941d86599a2ce6"/><file name="point-con.gif" hash="3dce96d9fc4e43252c3060b148ba057f"/><file name="product_collateral_bg.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="product_essential_bg.gif" hash="2ab47f5c01447a7998118da5872f14b8"/><file name="product_info_box_bg.gif" hash="8c7cf4a861a3ac2216e646df71a8e479"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="saved_head_bg.gif" hash="332be6a4f8ff25259e30c5bf89e484a4"/><file name="search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="search_form_button.gif" hash="5a5b6d2825d7a730904836e9bd4618eb"/><file name="separator.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="shipping_method_pointer.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><dir name="slider"><file name="Thumbs.db" hash="8a87784142b0e07a892484023d31a7a8"/><file name="slider1.jpg" hash="e2d9cb0bd51fa97fed13a73f63e14627"/><file name="slider2.jpg" hash="49674fbfc58aea297c7c0b2ac817e328"/><file name="slider3.jpg" hash="fcf194ccac88253c332c7fa32376b526"/><file name="slider4.jpg" hash="641e84ecf3268c3dc2e4ee6ee3354597"/><file name="slider5.jpg" hash="57a552086c1ee7481e59d3226298b29b"/></dir><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="slogan.gif" hash="803b83fe695baed72b7333ed95d20b6e"/><file name="sort_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="sort_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir><dir name="js"><dir name="configurableswatches"><file name="product-media.js" hash="85c2a93413ab6ccd6399b300034f9944"/><file name="swatches-list.js" hash="ff35f4e497834fa25d9f1124b412f65a"/><file name="swatches-product.js" hash="87ad1b1fbaffecfba810a70c46f137e4"/></dir><file name="glider.js" hash="9892bdda246965be78ed1cbce4bd3069"/><dir name="lib"><file name="imagesloaded.js" hash="82bdcdaa438659d4cb966ab112b162f4"/><file name="modernizr.custom.min.js" hash="6b30635dd7d7297419bce69b3a0808e7"/></dir><file name="productInfo.js" hash="04c2ea86b785f1d04a8f22c251e7f030"/><file name="slider.js" hash="cfdf405bec54421a66039c0a41f62a9f"/></dir></dir><dir name="green"><dir name="css"><file name="theme.css" hash="759117f5827ce3442486f338a5ea227a"/></dir><dir name="images"><file name="base_mini_alt_bg.gif" hash="ea4e9ef0134e99675e61ff385bbbfc2d"/><file name="body_bg.gif" hash="16926ff1b34f816d18e46bdcdd5d43db"/><file name="container.png" hash="e734791ccb935606b59e9731c5aa47e1"/><file name="footer_bg.gif" hash="5897be8b0ae3a295d32e41e666c65e44"/><dir name="ie"><file name="container.gif" hash="fba09675b0f15221b8e3df4c31c04021"/></dir><file name="logo.gif" hash="4595a9c19ce0bbb1da019414e78f3cdb"/><dir name="media"><file name="callout_side1.jpg" hash="678b14edb3ea17bbb3067ca8fde8de66"/><file name="callout_side2.jpg" hash="852d135c70eb52c68e7c2eeb15a67483"/></dir><file name="mini_search_bg.gif" hash="f423e60ab8e02ee0ddbad7d079c52b27"/><file name="nav.gif" hash="ae0001e526ba724882f508fac17a0108"/><file name="slogan.gif" hash="f2587a98d5168ff7c3243cdb31fa5ea9"/></dir></dir><dir name="grey"><dir name="css"><file name="theme.css" hash="dec488565756b92e7dda76f1c35c3e93"/></dir><dir name="images"><file name="body_bg.gif" hash="a1a2766d6bf127e942c4758c3fc45360"/><file name="container.png" hash="d151ba54bbc5952827fff671cb74d1e5"/><file name="footer_bg.gif" hash="6752ad6abd0fa2e6e9a13654eca24987"/><dir name="ie"><file name="container.gif" hash="edbf3f7cc53509dda1dae27f793ecb93"/></dir><file name="logo.gif" hash="80b32c240a2580fae18458ef30017ec4"/><dir name="media"><file name="callout_side2.jpg" hash="57edc617e508bc1aa689004bcc4befa9"/></dir><file name="mini_search_bg.gif" hash="02d1c91f72aa2ac414622b559901bc75"/><file name="nav.gif" hash="5d1bd1b915045263cf57efc27490ff42"/><file name="slogan.gif" hash="b305b1cab762ff4ec05d9cd7c92f9a41"/></dir></dir><dir name="orange"><dir name="css"><file name="theme.css" hash="0f97dd8770707f8469ba15ae0d5e3a69"/></dir><dir name="images"><file name="body_bg.gif" hash="129ccfc4db22b2a9b33a4b76a249763f"/><file name="container.png" hash="8bbf714e8f1b3ed8fc6991ce54b922a4"/><file name="footer_bg.gif" hash="18dcb00c059031489adcaa5919327d30"/><dir name="ie"><file name="container.gif" hash="a82693e74779b2095a94a40c9d5d7cc4"/></dir><file name="logo.gif" hash="08df2159554c5f700a3abde378d4ef63"/><dir name="media"><file name="callout_side1.jpg" hash="d57ff42c6a76b9d80cae2b20f50bd8ed"/><file name="callout_side2.jpg" hash="554879fc61f1c404b9fc27f275067220"/></dir><file name="mini_search_bg.gif" hash="eef47e142a2712c44b6ec6d1952b6349"/><file name="nav.gif" hash="f23995ba564be57ffb1150ff65af8205"/><file name="slogan.gif" hash="7cdda682dc5a0bac7e4be6c8cf6fab29"/></dir></dir><dir name="pink"><dir name="css"><file name="theme.css" hash="2836b224956f1971ab3736285a3b279b"/></dir><dir name="images"><file name="body_bg.gif" hash="9e424fa456d23bf9cff04ca8bb32d5f6"/><file name="container.png" hash="c915f8754bc12e0004b58727e71f7d9a"/><file name="footer_bg.gif" hash="59a8edd2e0636e7ace27c879a4b61ebe"/><dir name="ie"><file name="container.gif" hash="7b922ff69fa25d993da8a070c15586df"/></dir><file name="logo.gif" hash="10502aa0aba5d3aca8fae78e69e68188"/><dir name="media"><file name="callout_side1.jpg" hash="5133d2785f3d7a2dfbb1f7dd5ce9368b"/><file name="callout_side2.jpg" hash="5aa052d413633736c71ae6e874f2e906"/></dir><file name="mini_search_bg.gif" hash="59e2e6f5e04b8c581c42735378abf514"/><file name="nav.gif" hash="96804ce76cca8d3d6d699b8eaf64237d"/><file name="slogan.gif" hash="e4269bdd8df0ec5eba3113a8d4af9aaa"/></dir></dir><dir name="red"><dir name="css"><file name="theme.css" hash="5aa130e6d7ecd372ecbd2fb08de81f4c"/></dir><dir name="images"><file name="body_bg.gif" hash="dea11da7257ee62fa93e58cc45ad2525"/><file name="container.png" hash="787633791a751b11def8d8eb307058e7"/><file name="footer_bg.gif" hash="8d3c3d071b7c74b2d701be9253b663bf"/><dir name="ie"><file name="container.gif" hash="2fbe39de64a57f4d6e677719ac6ca41a"/></dir><file name="logo.gif" hash="38e0ca2d946b22f85757db0aef3b4a72"/><dir name="media"><file name="callout_side1.jpg" hash="310d19d6a140aee110260a48cc7c84b0"/><file name="callout_side2.jpg" hash="e6f57ce0d4ac6e8f6e6ecf192e604338"/></dir><file name="mini_search_bg.gif" hash="064a6c62dc942abd62cd77452d592688"/><file name="nav.gif" hash="7971c3fe80424327487720949b7f167e"/><file name="slogan.gif" hash="a2984270a8df1335ff8526a576f2c527"/></dir></dir><dir name="sea_green"><dir name="css"><file name="theme.css" hash="7409a670381053439199c0def731cb5e"/></dir><dir name="images"><file name="base_mini_alt_bg.gif" hash="20035e62cb673ddc34a699fcf2e318fe"/><file name="body_bg.gif" hash="e7955dcd324b4c7aaa9fb5128a41a35f"/><file name="container.png" hash="8b91469008df5dc280a9f377a47e78c7"/><file name="footer_bg.gif" hash="2ab8f3bf4a603e59a203f534e644ac9b"/><dir name="ie"><file name="container.gif" hash="5324de8ba8f39ae0140bce46fc1c9080"/></dir><file name="logo.gif" hash="bd4edb4ecaccf6ec15184ce4e08d6db3"/><dir name="media"><file name="callout_side1.jpg" hash="24366a5a372cf30e287c932b7ad4417b"/><file name="callout_side2.jpg" hash="9a0f541b3bba6e978b0872b90d6b959d"/></dir><file name="mini_search_bg.gif" hash="f24d719ce971d916715b079e657c61ed"/><file name="nav.gif" hash="119fc3484ea9de980b3b227a8c825a1c"/><file name="slogan.gif" hash="7e9ff3b27214373ce0c123f0d7ed97d4"/></dir></dir><dir name="silver"><dir name="css"><file name="theme.css" hash="4285d0a4e52365b914e9621ef8983dd9"/></dir><dir name="images"><file name="body_bg.gif" hash="8395b4931d7b9f9e0700a9539d90b5e0"/><file name="container.png" hash="061086f1eaa34a46e433206d23b8d406"/><file name="footer_bg.gif" hash="3af4ec304d0ff76429b080684e97fcf7"/><dir name="ie"><file name="container.gif" hash="206886b2eec1f4d7034826322d319a58"/></dir><file name="logo.gif" hash="94e2d86a01158c79b5989a575605ccd6"/><dir name="media"><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="e3614f262687005e23006f654bce522b"/></dir><file name="mini_search_bg.gif" hash="d540c1d45667bda6bc2dffc09182ea9f"/><file name="nav.gif" hash="bf43329b06a2183554484016fae4c762"/><file name="slogan.gif" hash="dc9868e54892bd5bac286bef7087f413"/></dir></dir><dir name="violet"><dir name="css"><file name="theme.css" hash="5d5b86b2738016f060a623eb2680169f"/></dir><dir name="images"><file name="body_bg.gif" hash="0b7c75ee0f04cc386d8147ede4de6251"/><file name="container.png" hash="3fd8c4ed0278b532e16f61cc087e0a66"/><file name="footer_bg.gif" hash="6abd434c5d2dd651bc96196937433848"/><dir name="ie"><file name="container.gif" hash="e689b301e4b5f2c941e06b9290bac387"/></dir><file name="logo.gif" hash="db3ec3c1675e57e9ee9754564da05627"/><dir name="media"><file name="callout_side1.jpg" hash="80969192e8fb1d0c2109a470caeacc26"/><file name="callout_side2.jpg" hash="1beff3be378b35b75ea9a55beee7df04"/></dir><file name="mini_search_bg.gif" hash="d15b4608a5617740e3d3496280309815"/><file name="nav.gif" hash="280db6c4c1e0cbf22ef065713bceb83c"/><file name="slogan.gif" hash="05f717c66625a1e3ea22b04bd318c721"/></dir></dir><dir name="yellow"><dir name="css"><file name="theme.css" hash="e3cd82092ef797c696eb3031df0a7011"/></dir><dir name="images"><file name="body_bg.gif" hash="c63b0077f3052ff5a00fb0a8d58f4638"/><file name="container.png" hash="aff1d7d151a8fba6995d2f9552095b70"/><file name="footer_bg.gif" hash="ba81114d24532bd0319dcb8c8e62857b"/><dir name="ie"><file name="container.gif" hash="6cc2a8428f13e2b33e88448abb646766"/></dir><file name="logo.gif" hash="4e296efa86f508a96f94510e6f178eeb"/><dir name="media"><file name="callout_side1.jpg" hash="d47f87e077fe7c6fb8563b14c32ba7d0"/><file name="callout_side2.jpg" hash="24670765f1f834125a19f3e4c37c0d95"/></dir><file name="mini_search_bg.gif" hash="509119d9784157309ad8f39b71dc3cec"/><file name="nav.gif" hash="1423ac32de587be6301798ef3bb4968c"/><file name="slogan.gif" hash="06875ee060353a26729cb3147467c35b"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
18
  </package>
skin/frontend/base/default/tm/configurableswatches/css/swatches.css ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*.clearfix:after,*/
2
+ .configurable-swatch-list:after,
3
+ .product-view .product-options .swatch-attr:after {
4
+ content: '';
5
+ display: table;
6
+ clear: both;
7
+ }
8
+
9
+ /* General Swatch Styling */
10
+ .swatch-link,
11
+ .swatch-label {
12
+ display: block;
13
+ border-radius: 3px;
14
+ font-size: 14px;
15
+ text-align: center;
16
+ color: #636363;
17
+ text-decoration: none;
18
+ box-sizing: content-box;
19
+ }
20
+
21
+ .swatch-link {
22
+ border: 1px solid #cccccc;
23
+ margin: 0 0 3px;
24
+ }
25
+ .swatch-link img {
26
+ border-radius: 2px;
27
+ }
28
+ .swatch-link:hover {
29
+ cursor: pointer;
30
+ text-decoration: none;
31
+ }
32
+ .swatch-link .x {
33
+ display: none;
34
+ text-indent: -999em;
35
+ position: absolute;
36
+ left: 0;
37
+ right: 0;
38
+ top: 0;
39
+ bottom: 0;
40
+ background: url(../images/bg_x.png) center no-repeat transparent;
41
+ z-index: 10;
42
+ }
43
+ .swatch-link.has-image .swatch-label {
44
+ position: relative;
45
+ }
46
+ .swatch-link.has-image img {
47
+ position: absolute;
48
+ top: 0;
49
+ left: 0;
50
+ }
51
+
52
+ .swatch-label {
53
+ border: 1px solid #fff;
54
+ margin: 0;
55
+ white-space: nowrap;
56
+ background: #f4f4f4;
57
+ }
58
+
59
+ .configurable-swatch-list {
60
+ margin-left: -3px;
61
+ zoom: 1;
62
+ clear: both;
63
+ -webkit-transform: translateZ(0px);
64
+ }
65
+ .configurable-swatch-list li {
66
+ float: left;
67
+ zoom: 1;
68
+ margin: 0 0 0 3px;
69
+ }
70
+ .products-grid .configurable-swatch-list li {
71
+ display: inline-block;
72
+ float: none;
73
+ margin: 0;
74
+ vertical-align: top;
75
+ }
76
+ .configurable-swatch-list .not-available .x {
77
+ display: block;
78
+ }
79
+ .configurable-swatch-list .not-available .swatch-link {
80
+ border-color: #ededed;
81
+ position: relative;
82
+ }
83
+ .configurable-swatch-list .not-available .swatch-link.has-image img {
84
+ opacity: 0.4;
85
+ filter: alpha(opacity=40);
86
+ }
87
+ .configurable-swatch-list .not-available .swatch-label {
88
+ color: #aaa;
89
+ background: #fff;
90
+ }
91
+ .configurable-swatch-list .wide-swatch .swatch-label {
92
+ padding: 0 6px;
93
+ }
94
+ .configurable-swatch-list .not-available a:focus {
95
+ outline: 0;
96
+ }
97
+
98
+ #narrow-by-list dd .configurable-swatch-list li {
99
+ margin: 0 0 0 3px;
100
+ width: 47%;
101
+ padding: 0;
102
+ background: none;
103
+ }
104
+ #narrow-by-list dd .swatch-link {
105
+ border: none;
106
+ line-height: 25px;
107
+ margin-right: 2px;
108
+ text-align: left;
109
+ }
110
+ #narrow-by-list dd .swatch-link.has-image {
111
+ line-height: inherit;
112
+ }
113
+ #narrow-by-list dd .swatch-link:hover {
114
+ text-decoration: none;
115
+ }
116
+ #narrow-by-list dd .swatch-link:hover .swatch-label {
117
+ border-color: #3399cc;
118
+ }
119
+ #narrow-by-list dd .swatch-label {
120
+ background: #f4f4f4;
121
+ border: 1px solid #cccccc;
122
+ border-radius: 3px;
123
+ display: block;
124
+ float: left;
125
+ line-height: 1.5em;
126
+ margin: 0 5px 0 0;
127
+ padding: 1px 5px;
128
+ white-space: nowrap;
129
+ }
130
+ #narrow-by-list dd .swatch-label img {
131
+ border: 1px solid #fff;
132
+ border-radius: 3px;
133
+ box-sizing: content-box;
134
+ }
135
+ #narrow-by-list dd .has-image .swatch-label {
136
+ padding: 0;
137
+ }
138
+
139
+ @media only screen and (max-width: 770px) {
140
+ #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
141
+ clear: left;
142
+ }
143
+ }
144
+ .currently .swatch-current {
145
+ position: relative;
146
+ }
147
+ .currently .swatch-current span {
148
+ display: block;
149
+ float: left;
150
+ }
151
+ .currently .swatch-link {
152
+ display: inline-block;
153
+ margin: 0 0 0 3px;
154
+ }
155
+ .currently .swatch-link:hover {
156
+ border-color: #cccccc;
157
+ cursor: default;
158
+ }
159
+
160
+ /* Other Swatch States */
161
+ .configurable-swatch-list .hover .swatch-link,
162
+ .configurable-swatch-list .selected .swatch-link,
163
+ .swatch-link:hover {
164
+ border-color: #3399cc;
165
+ }
166
+
167
+ .configurable-swatch-box {
168
+ background: none !important;
169
+ }
170
+ .configurable-swatch-box select.swatch-select {
171
+ display: none;
172
+ }
173
+ .configurable-swatch-box .validation-advice {
174
+ margin: 0 0 5px;
175
+ background: #df280a;
176
+ padding: 2px 5px !important;
177
+ font-weight: bold;
178
+ color: #fff !important;
179
+ float: left;
180
+ display: block;
181
+ border-radius: 3px;
182
+ }
skin/frontend/base/default/tm/configurableswatches/images/bg_x.png ADDED
Binary file
skin/frontend/base/default/tm/configurableswatches/js/app.js ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // ==============================================
2
+ // Pointer abstraction
3
+ // ==============================================
4
+
5
+ /**
6
+ * This class provides an easy and abstracted mechanism to determine the
7
+ * best pointer behavior to use -- that is, is the user currently interacting
8
+ * with their device in a touch manner, or using a mouse.
9
+ *
10
+ * Since devices may use either touch or mouse or both, there is no way to
11
+ * know the user's preferred pointer type until they interact with the site.
12
+ *
13
+ * To accommodate this, this class provides a method and two events
14
+ * to determine the user's preferred pointer type.
15
+ *
16
+ * - getPointer() returns the last used pointer type, or, if the user has
17
+ * not yet interacted with the site, falls back to a Modernizr test.
18
+ *
19
+ * - The mouse-detected event is triggered on the window object when the user
20
+ * is using a mouse pointer input, or has switched from touch to mouse input.
21
+ * It can be observed in this manner: $j(window).on('mouse-detected', function(event) { // custom code });
22
+ *
23
+ * - The touch-detected event is triggered on the window object when the user
24
+ * is using touch pointer input, or has switched from mouse to touch input.
25
+ * It can be observed in this manner: $j(window).on('touch-detected', function(event) { // custom code });
26
+ */
27
+ var PointerManager = {
28
+ MOUSE_POINTER_TYPE: 'mouse',
29
+ TOUCH_POINTER_TYPE: 'touch',
30
+ POINTER_EVENT_TIMEOUT_MS: 500,
31
+ standardTouch: false,
32
+ touchDetectionEvent: null,
33
+ lastTouchType: null,
34
+ pointerTimeout: null,
35
+ pointerEventLock: false,
36
+
37
+ getPointerEventsSupported: function() {
38
+ return this.standardTouch;
39
+ },
40
+
41
+ getPointerEventsInputTypes: function() {
42
+ if (window.navigator.pointerEnabled) { //IE 11+
43
+ //return string values from http://msdn.microsoft.com/en-us/library/windows/apps/hh466130.aspx
44
+ return {
45
+ MOUSE: 'mouse',
46
+ TOUCH: 'touch',
47
+ PEN: 'pen'
48
+ };
49
+ } else if (window.navigator.msPointerEnabled) { //IE 10
50
+ //return numeric values from http://msdn.microsoft.com/en-us/library/windows/apps/hh466130.aspx
51
+ return {
52
+ MOUSE: 0x00000004,
53
+ TOUCH: 0x00000002,
54
+ PEN: 0x00000003
55
+ };
56
+ } else { //other browsers don't support pointer events
57
+ return {}; //return empty object
58
+ }
59
+ },
60
+
61
+ /**
62
+ * If called before init(), get best guess of input pointer type
63
+ * using Modernizr test.
64
+ * If called after init(), get current pointer in use.
65
+ */
66
+ getPointer: function() {
67
+ // On iOS devices, always default to touch, as this.lastTouchType will intermittently return 'mouse' if
68
+ // multiple touches are triggered in rapid succession in Safari on iOS
69
+ if(Modernizr.ios) {
70
+ return this.TOUCH_POINTER_TYPE;
71
+ }
72
+
73
+ if(this.lastTouchType) {
74
+ return this.lastTouchType;
75
+ }
76
+
77
+ return Modernizr.touch ? this.TOUCH_POINTER_TYPE : this.MOUSE_POINTER_TYPE;
78
+ },
79
+
80
+ setPointerEventLock: function() {
81
+ this.pointerEventLock = true;
82
+ },
83
+ clearPointerEventLock: function() {
84
+ this.pointerEventLock = false;
85
+ },
86
+ setPointerEventLockTimeout: function() {
87
+ var that = this;
88
+
89
+ if(this.pointerTimeout) {
90
+ clearTimeout(this.pointerTimeout);
91
+ }
92
+
93
+ this.setPointerEventLock();
94
+ this.pointerTimeout = setTimeout(function() { that.clearPointerEventLock(); }, this.POINTER_EVENT_TIMEOUT_MS);
95
+ },
96
+
97
+ triggerMouseEvent: function(originalEvent) {
98
+ if(this.lastTouchType == this.MOUSE_POINTER_TYPE) {
99
+ return; //prevent duplicate events
100
+ }
101
+
102
+ this.lastTouchType = this.MOUSE_POINTER_TYPE;
103
+ $j(window).trigger('mouse-detected', originalEvent);
104
+ },
105
+ triggerTouchEvent: function(originalEvent) {
106
+ if(this.lastTouchType == this.TOUCH_POINTER_TYPE) {
107
+ return; //prevent duplicate events
108
+ }
109
+
110
+ this.lastTouchType = this.TOUCH_POINTER_TYPE;
111
+ $j(window).trigger('touch-detected', originalEvent);
112
+ },
113
+
114
+ initEnv: function() {
115
+ if (window.navigator.pointerEnabled) {
116
+ this.standardTouch = true;
117
+ this.touchDetectionEvent = 'pointermove';
118
+ } else if (window.navigator.msPointerEnabled) {
119
+ this.standardTouch = true;
120
+ this.touchDetectionEvent = 'MSPointerMove';
121
+ } else {
122
+ this.touchDetectionEvent = 'touchstart';
123
+ }
124
+ },
125
+
126
+ wirePointerDetection: function() {
127
+ var that = this;
128
+
129
+ if(this.standardTouch) { //standard-based touch events. Wire only one event.
130
+ //detect pointer event
131
+ $j(window).on(this.touchDetectionEvent, function(e) {
132
+ switch(e.originalEvent.pointerType) {
133
+ case that.getPointerEventsInputTypes().MOUSE:
134
+ that.triggerMouseEvent(e);
135
+ break;
136
+ case that.getPointerEventsInputTypes().TOUCH:
137
+ case that.getPointerEventsInputTypes().PEN:
138
+ // intentionally group pen and touch together
139
+ that.triggerTouchEvent(e);
140
+ break;
141
+ }
142
+ });
143
+ } else { //non-standard touch events. Wire touch and mouse competing events.
144
+ //detect first touch
145
+ $j(window).on(this.touchDetectionEvent, function(e) {
146
+ if(that.pointerEventLock) {
147
+ return;
148
+ }
149
+
150
+ that.setPointerEventLockTimeout();
151
+ that.triggerTouchEvent(e);
152
+ });
153
+
154
+ //detect mouse usage
155
+ $j(document).on('mouseover', function(e) {
156
+ if(that.pointerEventLock) {
157
+ return;
158
+ }
159
+
160
+ that.setPointerEventLockTimeout();
161
+ that.triggerMouseEvent(e);
162
+ });
163
+ }
164
+ },
165
+
166
+ init: function() {
167
+ this.initEnv();
168
+ this.wirePointerDetection();
169
+ }
170
+ };
171
+
172
+ /**
173
+ * Default ProductMediaManager for default magento Zoom
174
+ * @type {Object}
175
+ */
176
+ var ProductMediaManager = {
177
+ IMAGE_ZOOM_THRESHOLD: 20,
178
+ imageWrapper: null,
179
+
180
+ destroyZoom: function() {},
181
+ initZoom: function() {},
182
+ wireThumbnails: function() {},
183
+
184
+ createZoom: function(image) {
185
+ var img = $j('.product-img-box .product-image img');
186
+
187
+ var srcset = img.attr('srcset'),
188
+ newSrc = image.attr('src');
189
+ img.attr('src', newSrc);
190
+
191
+ if (srcset) {
192
+ if (image.attr('srcset')) {
193
+ img.attr('srcset', image.attr('srcset'));
194
+ } else {
195
+ var newSrcset = '';
196
+ srcset.split(',').each(function(rule) {
197
+ rule = rule.split(' ');
198
+ newSrcset = newSrc + ' ' + rule[1];
199
+ });
200
+ img.attr('srcset', newSrcset);
201
+ }
202
+ }
203
+ },
204
+
205
+ swapImage: function(targetImage) {
206
+ targetImage = $j(targetImage);
207
+ targetImage.addClass('gallery-image');
208
+
209
+ var imageGallery = $j('.product-img-box .product-image');
210
+
211
+ if (targetImage[0].complete) {
212
+ ProductMediaManager.createZoom(targetImage);
213
+ } else {
214
+ imageGallery.addClass('loading');
215
+ imagesLoaded(targetImage, function() {
216
+ imageGallery.removeClass('loading');
217
+ ProductMediaManager.createZoom(targetImage);
218
+ });
219
+ }
220
+ },
221
+
222
+ init: function() {
223
+ ProductMediaManager.imageWrapper = $j('.product-img-box');
224
+ $j(document).trigger('product-media-loaded', ProductMediaManager);
225
+ }
226
+ };
227
+
228
+ $j(document).ready(function() {
229
+ ProductMediaManager.init();
230
+ });
231
+
232
+ // configurable swatches integration
233
+ document.observe("dom:loaded", function () {
234
+ if ('undefined' !== typeof Product && 'undefined' !== typeof Product.ConfigurableSwatches) {
235
+ Product.ConfigurableSwatches.prototype.initialize =
236
+ Product.ConfigurableSwatches.prototype.initialize.wrap(function(original, spConfig) {
237
+ // fix for multiple calls to Product.ConfigurableSwatches
238
+ this._E.activeConfigurableOptions = [];
239
+ this._E.allConfigurableOptions = [];
240
+
241
+ original(spConfig);
242
+ });
243
+ }
244
+
245
+ if ('undefined' !== typeof ConfigurableMediaImages) {
246
+ ConfigurableMediaImages.init = ConfigurableMediaImages.init.wrap(function(original, imageType) {
247
+ // fit to make the swatches work in listing after the ajax popup with another swatches was closed
248
+ if (ConfigurableMediaImages.imageType) {
249
+ imageType = ConfigurableMediaImages.imageType;
250
+ }
251
+ original(imageType);
252
+ });
253
+
254
+ /**
255
+ * Improved method to prevent overriding of previously loaded data.
256
+ * This happens when AjaxPro popup is called on category listing or More products is clicked -
257
+ * object with base_image info override the object with small_image info.
258
+ *
259
+ * @param {Int} productId
260
+ * @param {Object} imageFallback
261
+ */
262
+ ConfigurableMediaImages.setImageFallback = function(productId, imageFallback) {
263
+ for (var i in imageFallback) {
264
+ var oldData = ConfigurableMediaImages.productImages[productId] ?
265
+ ConfigurableMediaImages.productImages[productId][i] : undefined;
266
+
267
+ if (oldData) {
268
+ if (undefined === oldData.length || oldData.length) {
269
+ continue; // data is already loaded
270
+ }
271
+ }
272
+
273
+ if (!ConfigurableMediaImages.productImages[productId]) {
274
+ ConfigurableMediaImages.productImages[productId] = imageFallback;
275
+ } else {
276
+ ConfigurableMediaImages.productImages[productId][i] = imageFallback[i];
277
+ }
278
+ }
279
+ };
280
+
281
+ // Magento ConfigurableMediaImages.arrayIntersect is written to
282
+ // receive sorted product ids but it's not always true.
283
+ // The next override will fix this issue
284
+ ConfigurableMediaImages.arrayIntersect =
285
+ ConfigurableMediaImages.arrayIntersect.wrap(function(o, a, b) {
286
+ a.sort();
287
+ b.sort();
288
+ return o(a, b);
289
+ });
290
+ }
291
+ });
skin/frontend/default/f001/css/custom.css DELETED
@@ -1,314 +0,0 @@
1
- body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #00628E;color:#2F2F2F}
2
-
3
- h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
4
- a {color:#1E7EC8; text-decoration:underline; }
5
-
6
- .header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
7
- .quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
8
-
9
- .header {z-index: 100;}
10
- .header .logo { margin: 0; }
11
- .shop-access{float:right; margin:0; font-size:1em;}
12
- .shop-access a{color:#7386BE; text-decoration:none}
13
- .shop-access a:hover { text-decoration: underline; }
14
- .header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
15
- .header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
16
- .main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
17
- .header .form-search label{display:none}
18
- .header .form-search button.button{width:20px}
19
- .header .form-search button.button span { background: none; }
20
-
21
- .page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
22
- .page-title h1 {color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
23
-
24
- .block-content a{}
25
- .block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
26
- .block-subscribe .block-title strong{background:none}
27
- .block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
28
- .block-subscribe label{font-weight:bold; color:#FFF}
29
- .block-subscribe .actions{margin-top:15px}
30
- .block-cart .subtotal{background:#eee}
31
-
32
- .block-tags .block-content ul { border: none; }
33
-
34
- .block-layered-nav{}
35
- .block-layered-nav .block-title{ padding:0px; }
36
-
37
- .block-layered-nav{padding:5px 10px}
38
- .block-layered-nav .block-subtitle,
39
- .block-layered-nav .block-content{background:none; border:0px solid #ddd}
40
- .block-layered-nav dt{padding:7px 10px 0 7px}
41
- .block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
42
- .block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
43
- .block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
44
- .block-layered-nav dd li a:hover { text-decoration: underline; }
45
-
46
- h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
47
- .products-grid h5 a{color:#007ed3; text-decoration:none}
48
- .products-grid .ratings .amount{display:none}
49
- .products-grid .actions{}
50
- /*************************Buttons*************************/
51
- button.button{background:none; border:0px solid #000}
52
-
53
- .button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
54
- .button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
55
- .button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
56
- .button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
57
-
58
- /**ALT BTNS**/
59
- .grey-box .button span,
60
- .cart-table .btn-continue span,
61
- .cart-table .btn-update span,
62
- .cart-table .btn-empty span,
63
- .cart .discount button span,
64
- .cart .shipping button span,
65
- .block-compare button.button span,
66
- .block-poll button.button span,
67
- .block-login .actions button.button span,
68
- .product-view .box-tags .form-add button.button span,
69
- .multiple-checkout .title-buttons button.button span,
70
- #multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
71
- .grey-box .button:hover span,
72
- .cart-table .btn-continue:hover span,
73
- .cart-table .btn-update:hover span,
74
- .cart-table .btn-empty:hover span,
75
- .cart .discount button:hover span,
76
- .cart .shipping button:hover span,
77
- .block-compare button.button:hover span,
78
- .block-poll button.button:hover span,
79
- .block-login .actions button.button:hover span,
80
- .product-view .box-tags .form-add button.button:hover span,
81
- .multiple-checkout .title-buttons button.button:hover span,
82
- #multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
83
- .grey-box .button span span,
84
- .cart-table .btn-continue span span,
85
- .cart-table .btn-update span span,
86
- .cart-table .btn-empty span span,
87
- .cart .discount button span span,
88
- .cart .shipping button span span,
89
- .block-compare button.button span span,
90
- .block-poll button.button span span,
91
- .block-login .actions button.button span span,
92
- .product-view .box-tags .form-add button.button span span,
93
- .multiple-checkout .title-buttons button.button span span,
94
- #multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
95
- .grey-box .button:hover span span,
96
- .cart-table .btn-continue:hover span span,
97
- .cart-table .btn-update:hover span span,
98
- .cart-table .btn-empty:hover span span,
99
- .cart .discount button:hover span span,
100
- .cart .shipping button:hover span span,
101
- .block-compare button.button:hover span span,
102
- .block-poll button.button:hover span span,
103
- .block-login .actions button.button:hover span span,
104
- .product-view .box-tags .form-add button.button:hover span span,
105
- .multiple-checkout .title-buttons button.button:hover span span,
106
- #multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
107
-
108
- .block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
109
- .block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
110
-
111
- .block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
112
- .block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
113
-
114
- button.btn-checkout span span{padding:0 16px}
115
- /****************************End Buttons***************************/
116
- .footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
117
- .footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
118
-
119
-
120
- /********** < Navigation */
121
- #nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
122
-
123
- /* All Levels */ /* Style consistent throughout all nav levels */
124
- #nav li { position:relative; text-align:left; }
125
- #nav li.over { z-index:998; }
126
- #nav a,
127
- #nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
128
- #nav span { display:block; cursor:pointer; white-space:nowrap; }
129
- #nav li ul span {white-space:normal; }
130
-
131
- /* 0 Level */
132
- #nav li { float:left; }
133
- #nav a{float:left; color:#c3d5e3; font-weight:bold}
134
- #nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
135
- #nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
136
- /*#nav li.first span{padding-left:18px}*/
137
- #nav li.over a,
138
- #nav a:hover{color:#fff}
139
-
140
- /* 1st Level */
141
- #nav ul li,
142
- #nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
143
- #nav li.active li a,
144
- #nav ul li.active a{background:#fff}
145
- /*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
146
- */
147
- #nav ul li.last { background:#ecf3f6; padding-bottom:0; }
148
-
149
- #nav ul a,
150
- #nav ul a:hover { float:none; padding:0; background:none; }
151
- #nav ul li a { font-weight:normal !important; }
152
-
153
- /* 2nd Level */
154
- #nav ul,
155
- #nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
156
- #nav div ul { position:static; width:auto; border:none; }
157
- #nav ul span {background:none}
158
-
159
- /* 3rd+ Level */
160
- #nav ul ul,
161
- #nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
162
-
163
- #nav ul li a {background:#fff}
164
- #nav ul li a:hover {background:#f4f4f4}
165
- #nav ul li.over > a {background:#f4f4f4}
166
- #nav ul li a,
167
- #nav ul li a:hover {color:#2f2f2f !important}
168
- #nav ul span,
169
- #nav ul li.last li span {padding:4px 15px 5px 15px}
170
-
171
- /* Show menu */
172
- #nav li ul.shown-sub,
173
- #nav li div.shown-sub { left:-1px; z-index:999; }
174
- #nav li .shown-sub ul.shown-sub,
175
- #nav li .shown-sub li div.shown-sub { left:100px; }
176
- /********** Navigation > */
177
- /* ======================================================================================= */
178
-
179
- .cms-home .nav-home a,
180
- .contacts-index-index .nav-contacts a,
181
- .cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
182
- .cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
183
-
184
- .f-right{float:right}
185
- .f-left{float:left}
186
- .a-right{text-align:right}
187
- .a-left{text-align:left}
188
- .a-center{text-align:center}
189
-
190
- .header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
191
-
192
- .header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
193
- .header-cart .head{margin:0; overflow:hidden; cursor:pointer}
194
- .header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
195
- .header-cart .title a{color:#fff}
196
- .header-cart .content{background:#f3f8fb; padding:0}
197
- .header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
198
- .header-cart .content li a:hover{color:#333}
199
- .header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
200
- .header-cart .title a{color:#fff}
201
-
202
- .slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
203
-
204
- #nav-sidebox{font-size:1.1em}
205
- #nav-sidebox a{text-decoration:none; color:#000}
206
- #nav-sidebox a:hover{text-decoration:underline}
207
- #nav-sidebox li{line-height:22px; font-weight:bold}
208
- #nav-sidebox li ul li{font-weight:normal; margin:0}
209
- #nav-sidebox ul{}
210
- #nav-sidebox ul li{padding-left:10px}
211
- #nav-sidebox ul li ul{display:none}
212
-
213
- .featured-container{margin-bottom:20px}
214
- .featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
215
- .featured-top{background:url(../images/container.png) no-repeat -1957px 0}
216
-
217
- .mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
218
- .mini-newsletter label{color:#fff}
219
- .mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
220
- .mini-newsletter .input-text{border:none; padding:4px 2px}
221
- .mini-newsletter .form-button-alt{background-position:100% -256px}
222
- .mini-newsletter .form-button-alt span{background-position:0 -228px}
223
- .mini-newsletter .form-button-alt:hover{background-position:100% -314px}
224
- .mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
225
- .mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
226
-
227
- .recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
228
-
229
- .recently .last{border-bottom:0px solid #FFF}
230
- .recently .subtitle{color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
231
- .recently li.item{width:167px; float:left; padding:10px 10px 40px;}
232
- .recently li.item .price-box{}
233
- .recently li.item .actions { position: absolute; bottom: 12px; }
234
-
235
- .category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
236
- .product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
237
- h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
238
- a.product-name:hover { text-decoration: underline; }
239
-
240
- .regular-price .price{color:#777; font-size:13px; font-weight:bold}
241
-
242
- .footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
243
- .footer .informational li{float:left; margin:0 40px; display: inline;}
244
- .footer .informational li ul li{float:none; margin:0; display: block;}
245
- .footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#D5E1E9; font-size:0.9em}
246
- .footer .informational li ul li a:hover { text-decoration: underline; }
247
- .footer .informational h6{margin-bottom:0.4em; color:#d5e1e9; font-size:1.1em}
248
-
249
- .footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #136793; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
250
-
251
- .footer .payments{float:right; margin:5px 0 0}
252
- .footer .legality{text-align:center; color:#FFF; font-size: .9em}
253
- .footer .legality a{color:#b5e2ff; text-decoration: none;}
254
-
255
- /* glider */
256
- #slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
257
- div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
258
- div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
259
- div.scroller img{ border:none}
260
- div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
261
- div.scroller div.content{ width:10000px; padding:0px}
262
- .content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
263
-
264
- .content .sliderdescription p{line-height:20px; text-align:center}
265
- div.sliderdescription:hover{background:#fff}
266
- .content a{text-decoration:none; color:#5a5a5a}
267
- .content a:hover{text-decoration:underline}
268
-
269
- .slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
270
- .slidercontrol{list-style:none; padding:0px; margin:0px}
271
-
272
- .slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
273
-
274
- .slidercontrol a:hover,
275
- .slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
276
-
277
- /* slider */
278
- .featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
279
- .featured-products h4{margin-right:10px; color:#459b06; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
280
- .featured-products .head{text-align:left; margin:0; padding:21px 0}
281
- .featured-products #move-left,
282
- .featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
283
- .featured-products #move-right{background-position:-335px -450px; right:940px !important; }
284
- .featured-products #move-left.disabled,
285
- .featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
286
- .slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
287
- .slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
288
- .slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
289
- .slider-wrapper .list-featured li.last{ margin:0px}
290
- .slider-wrapper .list-featured .product-image{ text-align:center}
291
- .slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
292
- .slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
293
-
294
- #quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
295
- #quick-window .product-img-box{width:230px; float:left}
296
- #quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
297
- #quickview-header{background-color:#888; height:26px; width:650px}
298
-
299
- #ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
300
- #ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
301
- #quick-window .product-shop{float:right; text-align:left; width:385px}
302
- #quick-window .product-essential{padding:25px 10px 25px 10px}
303
- .catalog-listing .product-image{position:relative}
304
- .catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
305
-
306
- a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:1px 5px; text-align: center;}
307
- a.ajax:hover{text-decoration:none}
308
-
309
-
310
- /****Update styles ****/
311
-
312
- .footer li {background: none; display: block; padding: 0;}
313
-
314
- .product-collateral { background: #faf7ee; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001/css/styles-ie.css DELETED
@@ -1,193 +0,0 @@
1
- /**
2
- * Magento
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the Academic Free License (AFL 3.0)
7
- * that is bundled with this package in the file LICENSE_AFL.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://opensource.org/licenses/afl-3.0.php
10
- * If you did not receive a copy of the license and are unable to
11
- * obtain it through the world-wide-web, please send an email
12
- * to license@magentocommerce.com so we can send you a copy immediately.
13
- *
14
- * DISCLAIMER
15
- *
16
- * Do not edit or add to this file if you wish to upgrade Magento to newer
17
- * versions in the future. If you wish to customize Magento for your
18
- * needs please refer to http://www.magentocommerce.com for more information.
19
- *
20
- * @category design
21
- * @package default_default
22
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
23
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
24
- */
25
-
26
- /* IE 6 only */
27
- * html .validation-advice { height:13px; }
28
- * html .error-msg,
29
- * html .success-msg,
30
- * html .note-msg,
31
- * html .notice-msg { height:24px; }
32
- * html .main { height:400px; }
33
- * html .account-login .content { height:240px; }
34
- .block li.item,
35
- .block-poll li,
36
- .opc li.section { vertical-align:top; }
37
- * html .window-overlay { background:#ccc; filter:alpha(opacity=50); }
38
-
39
- /* Doubled Margin Fixes */
40
- .product-view .product-img-box .more-views li,
41
- .product-view .box-tags .form-add .input-box,
42
- .sp-methods select.month { display:inline; }
43
-
44
- /********** < Navigation styles */
45
- #nav li,
46
- #nav li a { zoom:1; }
47
- #nav li { vertical-align:top; }
48
- /********** < Navigation styles */
49
-
50
- select { margin-bottom:1px; }
51
- input.radio { width:13px; height:13px; }
52
- input.checkbox { width:13px; height:13px; }
53
- button.button { height:21px; }
54
- button.button span { position:relative; }
55
- button.btn-checkout { height:40px; }
56
- #opc-review .sp-methods .input-box { float:left; }
57
- .form-list label { position:relative; z-index:0; }
58
- .form-list label.required em { position:absolute; top:0; right:-8px; }
59
-
60
- table { scrollbar-face-color:expression(runtimeStyle.scrollbarFaceColor = '#fff', cellSpacing = 0); }
61
-
62
- .product-view .product-img-box .zoom.disabled { filter:alpha(opacity=30); }
63
-
64
- .gift-messages-form { position:relative; zoom:1; }
65
-
66
- .tool-tip .btn-close a { margin:0; }
67
-
68
- .product-view .box-tags .product-tags li,
69
- .footer li { padding:0 4px 0 7px; }
70
-
71
- .product-options dd .time-picker select { margin:0; padding:0; }
72
-
73
- /* Clearer */
74
- .clearer { display:block; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
75
-
76
- /* Clears and hasLayout fixes */
77
- .header-container,
78
- .header-container .top-container,
79
- .header,
80
- .header .quick-access,
81
- #nav,
82
- .main,
83
- .footer,
84
- .footer-container .bottom-container,
85
- .col-main,
86
- .col2-set,
87
- .col3-set,
88
- .col3-layout .product-options-bottom .price-box,
89
- .col4-set,
90
- .messages li,
91
- .search-autocomplete li,
92
- .block,
93
- .block .block-content,
94
- .block .actions,
95
- .block li.item,
96
- .block-poll li,
97
- .block-poll .label,
98
- .block-layered-nav .currently li,
99
- .block-account .block-content li a,
100
- .mini-products-list .product-details,
101
- .page-title,
102
- .rss-title h1,
103
- .products-grid,
104
- .products-list li.item,
105
- .box-account .box-head,
106
- .dashboard .box .box-title,
107
- .box-reviews li.item,
108
- .box-tags li.item,
109
- .pager,
110
- .sorter,
111
- .ratings,
112
- .add-to-box,
113
- .add-to-cart,
114
- .product-essential,
115
- .product-collateral,
116
- .product-view .product-img-box .more-views ul,
117
- .product-view .box-tags .form-add,
118
- .product-view .product-shop .short-description,
119
- .product-view .box-description,
120
- .product-options .options-list li,
121
- .product-options,
122
- .product-options-bottom,
123
- .truncated,
124
- .truncated .truncated_full_value,
125
- .product-review,
126
- .cart,
127
- .cart-collaterals,
128
- .cart .crosssell li.item,
129
- .cart .discount,
130
- .opc .step-title,
131
- .opc .step,
132
- .multiple-checkout,
133
- .sp-methods,
134
- .checkout-progress,
135
- .multiple-checkout .place-order,
136
- .form-list li,
137
- .form-list .field,
138
- .group-select li,
139
- .buttons-set,
140
- .page-print .print-head,
141
- .cart-tax-total,
142
- .advanced-search-summary,
143
- .advanced-search-summary p,
144
- .gift-messages-form .item,
145
- .send-friend .form-list li p,
146
- .centinel .authentication { zoom:1; }
147
-
148
- /* Hover Fix */
149
- iframe.hover-fix { position:absolute; left:-1px; top:-1px; z-index:-1; background:transparent; filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0); }
150
-
151
-
152
- #nav ul li { vertical-align:top; }
153
-
154
- .one-page-checkout li.section { vertical-align:top; }
155
-
156
- .product-options dd ul.options-list input.form-radio { margin-top:4px; }
157
- .multi-address-checkout-box .box { zoom:1; }
158
- .multi-address-checkout-box .legend { zoom:1; position:relative; margin-left:8px; }
159
- .quick-access li { padding-right:4px; padding-left:6px;}
160
- .home-spot { display:inline; }
161
- .mini-related-items .product-details { margin-left:80px; }
162
- .mini-related-items .product-images input { zoom:1; position:relative; margin:-4px 2px 0 -4px; }
163
- .mini-related-items .product-images img { float:left; }
164
-
165
- /* Clearer */
166
- .clear { clear:both; font-size:0; line-height:0; height:0; visibility:hidden; overflow:hidden; }
167
-
168
- button.button { overflow: visible; } /* Extra-padding FIX */
169
-
170
- .button span { background-position: 100% -27px; }
171
- .button:hover span { background-position: 100% -83px; }
172
-
173
-
174
- .block-subscribe button.button span { background:url("../images/button.gif") no-repeat 100% -256px; }
175
- .block-subscribe button.button:hover span { background:url("../images/button.gif") no-repeat 100% -314px; }
176
-
177
- button.btn-checkout span { background:url("../images/button.gif") no-repeat 100% -28px; }
178
- button.btn-checkout:hover span { background:url("../images/button.gif") no-repeat 100% -84px; }
179
- button.btn-checkout span span{ background:url("../images/button.gif") no-repeat 0 0; }
180
- button.btn-checkout:hover span span{ background:url("../images/button.gif") no-repeat 0 -56px; }
181
-
182
- .footer .informational li { margin: 0 30px;}
183
-
184
- /*ie6 fixes*/
185
- * html .header { background: url(../images/ie/container.gif) no-repeat -1px 0; }
186
- * html .header-nav-container { }
187
- * html .nav-container { background: url(../images/ie/container.gif) repeat-y -980px 0; }
188
- * html .main-container { background: url(../images/ie/container.gif) no-repeat 0 100%; }
189
- * html .main { background: url(../images/ie/container.gif) repeat-y -979px 0; }
190
-
191
- .featured-center { background: url(../images/ie/container.gif) no-repeat -1957px 100% !important; zoom: 1; }
192
- .featured-top { background: url(../images/ie/container.gif) no-repeat -1957px 0 !important; }
193
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001/css/styles.css DELETED
@@ -1,1772 +0,0 @@
1
- /**
2
- * Magento
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the Academic Free License (AFL 3.0)
7
- * that is bundled with this package in the file LICENSE_AFL.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://opensource.org/licenses/afl-3.0.php
10
- * If you did not receive a copy of the license and are unable to
11
- * obtain it through the world-wide-web, please send an email
12
- * to license@magentocommerce.com so we can send you a copy immediately.
13
- *
14
- * DISCLAIMER
15
- *
16
- * Do not edit or add to this file if you wish to upgrade Magento to newer
17
- * versions in the future. If you wish to customize Magento for your
18
- * needs please refer to http://www.magentocommerce.com for more information.
19
- *
20
- * @category design
21
- * @package default_default
22
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
23
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
24
- */
25
-
26
- /* Reset ================================================================================= */
27
- * { margin:0; padding:0; }
28
-
29
- body { font:12px/1.55 Arial, Helvetica, sans-serif; color:#2f2f2f; text-align:center; }
30
-
31
- img { border:0; vertical-align:top; }
32
-
33
- a { text-decoration:underline; }
34
- a:hover { text-decoration:none; }
35
- :focus { outline:0; }
36
-
37
- /* Headings */
38
- h1,h2,h3,
39
- h4,h5,h6 { margin:0 0 5px; line-height:1.35; color:#0a263c; }
40
- h1 { font-size:20px; font-weight:normal; }
41
- h2 { font-size:18px; font-weight:normal; }
42
- h3 { font-size:16px; font-weight:bold; }
43
- h4 { font-size:14px; font-weight:bold; }
44
- h5 { font-size:1.05em; font-weight:bold; }
45
- h6 { font-size:11px; font-weight:bold; }
46
-
47
- /* Forms */
48
- form { display:inline; }
49
- fieldset { border:0; }
50
- legend { display:none; }
51
-
52
- /* Table */
53
- table { border:0; /*border-collapse:collapse;*/ border-spacing:0; empty-cells:show; font-size:100%; }
54
- caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }
55
-
56
- /* Content */
57
- p { margin:0 0 10px; }
58
- strong { font-weight:bold; }
59
- address { font-style:normal; line-height:1.35; }
60
- cite { font-style:normal; }
61
- q,
62
- blockquote { quotes:none; }
63
- q:before,
64
- q:after { content:''; }
65
- small,big { font-size:1em; }
66
- /*sup { font-size:1em; vertical-align:top; }*/
67
-
68
- /* Lists */
69
- ul,ol { list-style:none; }
70
-
71
- /* Tools */
72
- .hidden { display:block !important; border:0 !important; margin:0 !important; padding:0 !important; font-size:0 !important; line-height:0 !important; width:0 !important; height:0 !important; overflow:hidden !important; }
73
- .nobr { white-space:nowrap !important; }
74
- .wrap { white-space:normal !important; }
75
- .a-left { text-align:left !important; }
76
- .a-center { text-align:center !important; }
77
- .a-right { text-align:right !important; }
78
- .v-top { vertical-align:top; }
79
- .v-middle { vertical-align:middle; }
80
- .f-left,
81
- .left { float:left !important; }
82
- .f-right,
83
- .right { float:right !important; }
84
- .f-none { float:none !important; }
85
- .f-fix { float:left; width:100%; }
86
- .no-display { display:none; }
87
- .no-margin { margin:0 !important; }
88
- .no-padding { padding:0 !important; }
89
- .no-bg { background:none !important; }
90
- /* ======================================================================================= */
91
-
92
-
93
- /* Layout ================================================================================ */
94
- .wrapper { min-width:960px; }
95
- .page {}
96
- .page-print { background:#fff; padding:25px 30px; text-align:left; }
97
- .page-empty { background:#fff; padding:20px; text-align:left; }
98
- .page-popup { background:#fff; padding:25px 30px; text-align:left; }
99
- .main-container { }
100
- .main { width:950px; margin:0 auto; min-height:400px; padding: 9px 15px 5px;
101
- text-align:left; background:url("../images/container.png") repeat-y -979px 0; }
102
-
103
- /* Base Columns */
104
- .col-left { float:left; width:195px; padding:0 0 1px; }
105
- .col-main { float:left; width:750px; padding:0 0 1px; }
106
- .col-right { float:right; width:195px; padding:0 0 1px; }
107
-
108
- /* 1 Column Layout */
109
- .col1-layout .col-main { float:none; width:auto; }
110
-
111
- /* 2 Columns Layout */
112
- .col2-left-layout .col-main { float:right; }
113
- .col2-right-layout .col-main {}
114
-
115
- /* 3 Columns Layout */
116
- .col3-layout .col-main { margin-left:5px; width:530px; }
117
- .col3-layout .col-wrapper { float:left; width:740px; }
118
- .col3-layout .col-wrapper .col-main { float:right; }
119
-
120
- /* Content Columns */
121
- .col2-set .col-1 { float:left; width:48.5%; }
122
- .col2-set .col-2 { float:right; width:48.5%; }
123
- .col2-set .col-narrow { width:32%; }
124
- .col2-set .col-wide { width:65%; }
125
-
126
- .col3-set .col-1 { float:left; width:32%; }
127
- .col3-set .col-2 { float:left; width:32%; margin-left:2%; }
128
- .col3-set .col-3 { float:right; width:32%; }
129
-
130
- .col4-set .col-1 { float:left; width:23.5%; }
131
- .col4-set .col-2 { float:left; width:23.5%; margin:0 2%; }
132
- .col4-set .col-3 { float:left; width:23.5%; }
133
- .col4-set .col-4 { float:right; width:23.5%; }
134
- /* ======================================================================================= */
135
-
136
-
137
- /* Global Styles ========================================================================= */
138
- /* Form Elements */
139
- input,select,textarea,button { font:12px/15px Arial, Helvetica, sans-serif; vertical-align:middle; color:#2f2f2f; }
140
- input.input-text,select,textarea { background:#fff; border:1px solid #b6b6b6; }
141
- input.input-text,textarea { padding:2px; }
142
- select { padding:1px; }
143
- select option { padding-right:10px; }
144
- select.multiselect option { border-bottom:1px solid #b6b6b6; padding:2px 5px; }
145
- select.multiselect option:last-child { border-bottom:0; }
146
- textarea { overflow:auto; }
147
- input.radio { margin-right:3px; }
148
- input.checkbox { margin-right:3px; }
149
- input.qty { width:2.5em !important; }
150
- button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
151
- button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
152
- button.button {cursor: pointer;}
153
-
154
- button.button span { display:block; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; white-space:nowrap; color:#fff; }
155
- button.button span span { border:0; }
156
-
157
- button.disabled span { border-color:#bbb !important; background:#bbb !important; }
158
-
159
- button.btn-checkout span { height:26px; border:0; font:bold 15px/40px Arial, Helvetica, sans-serif; color:#fff; }
160
- button.btn-checkout span span { padding:0 25px 0 16px; }
161
- button.btn-checkout.no-checkout span { color:#b8baba; }
162
- button.btn-checkout.no-checkout span span { }
163
-
164
- p.control input.checkbox,
165
- p.control input.radio { margin-right:6px; }
166
- /* Form Highlight */
167
- input.input-text:focus,select:focus,textarea:focus { background-color:#edf7fd; }
168
- /*.highlight { background:#efefef; }*/
169
-
170
- /* Form lists */
171
- /* Grouped fields */
172
- /*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/
173
- .form-list li { margin:0 0 8px; }
174
- .form-list label { float:left; color:#666; font-weight:bold; position:relative; z-index:0; }
175
- .form-list label.required {}
176
- .form-list label.required em { float:right; font-style:normal; color:#eb340a; position:absolute; top:0; right:-8px; }
177
- .form-list li.control label { float:none; }
178
- .form-list li.control input.radio,
179
- .form-list li.control input.checkbox { margin-right:6px; }
180
- .form-list li.control .input-box { clear:none; display:inline; width:auto; }
181
- /*.form-list li.fields { margin-right:-15px; }*/
182
- .form-list .input-box { display:block; clear:both; width:260px; }
183
- .form-list .field { float:left; width:275px; }
184
- .form-list input.input-text { width:254px; }
185
- .form-list textarea { width:254px; height:10em; }
186
- .form-list select { width:260px; }
187
- .form-list li.wide .input-box { width:535px; }
188
- .form-list li.wide input.input-text { width:529px; }
189
- .form-list li.wide textarea { width:529px; }
190
- .form-list li.wide select { width:535px; }
191
- .form-list li.additional-row { border-top:1px solid #ccc; margin-top:10px; padding-top:7px; }
192
- .form-list li.additional-row .btn-remove { float:right; margin:5px 0 0; }
193
- .form-list .input-range input.input-text { width:74px; }
194
-
195
- .form-list-narrow li { margin-bottom:0; }
196
- .form-list-narrow li .input-box { margin-bottom:6px; }
197
- .form-list-narrow li.wide .input-box { width:260px; }
198
- .form-list-narrow li.wide input.input-text,
199
- .form-list-narrow li.wide textarea { width:254px }
200
- .form-list-narrow li.wide select { width:260px; }
201
-
202
- /* Customer */
203
- .form-list .customer-name-prefix .input-box,
204
- .form-list .customer-name-suffix .input-box,
205
- .form-list .customer-name-prefix-suffix .input-box,
206
- .form-list .customer-name-prefix-middlename .input-box,
207
- .form-list .customer-name-middlename-suffix .input-box,
208
- .form-list .customer-name-prefix-middlename-suffix .input-box { width:auto; }
209
-
210
- .form-list .name-prefix { width:65px; }
211
- .form-list .name-prefix select { width:55px; }
212
- .form-list .name-prefix input.input-text { width:49px; }
213
-
214
- .form-list .name-suffix { width:65px; }
215
- .form-list .name-suffix select { width:55px; }
216
- .form-list .name-suffix input.input-text { width:49px; }
217
-
218
- .form-list .customer-name-prefix-middlename-suffix .name-firstname,
219
- .form-list .customer-name-prefix-middlename .name-firstname { width:140px; }
220
- .form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
221
- .form-list .customer-name-prefix-middlename .name-firstname input.input-text { width:124px; }
222
- .form-list .customer-name-prefix-middlename-suffix .name-lastname { width:205px; }
223
- .form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text { width:189px; }
224
-
225
- .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
226
- .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
227
- .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
228
- .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
229
-
230
- .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
231
- .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
232
- .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
233
- .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
234
-
235
- .form-list .customer-name-prefix .name-firstname,
236
- .form-list .customer-name-middlename .name-firstname,
237
- .form-list .customer-name-middlename .name-middlename { width:210px; }
238
-
239
- .form-list .customer-name-suffix .name-lastname,
240
- .form-list .customer-name-middlename .name-firstname,
241
- .form-list .customer-name-middlename .name-middlename,
242
- .form-list .customer-name-middlename-suffix .name-firstname,
243
- .form-list .customer-name-middlename-suffix .name-lastname { width:205px; }
244
-
245
- .form-list .customer-name-prefix .name-firstname input.input-text,
246
- .form-list .customer-name-suffix .name-lastname input.input-text,
247
- .form-list .customer-name-middlename .name-firstname input.input-text,
248
- .form-list .customer-name-middlename .name-middlename input.input-text,
249
- .form-list .customer-name-middlename-suffix .name-firstname input.input-text,
250
- .form-list .customer-name-middlename-suffix .name-lastname input.input-text { width:189px; }
251
-
252
- .form-list .customer-dob .dob-month,
253
- .form-list .customer-dob .dob-day,
254
- .form-list .customer-dob .dob-year { float:left; width:85px; }
255
- .form-list .customer-dob input.input-text { display:block; width:74px; }
256
- .form-list .customer-dob label { font-size:10px; font-weight:normal; color:#888; }
257
- .form-list .customer-dob .dob-day,
258
- .form-list .customer-dob .dob-month { width:60px; }
259
- .form-list .customer-dob .dob-day input.input-text,
260
- .form-list .customer-dob .dob-month input.input-text { width:46px; }
261
- .form-list .customer-dob .dob-year { width:140px; }
262
- .form-list .customer-dob .dob-year input.input-text { width:134px; }
263
-
264
- /* Independent fields */
265
- /*.form-list li { margin:0 0 8px; }
266
- .form-list li.fields { margin:0; }
267
- .form-list .field { display:block; margin:0 0 8px; }
268
- .form-list li.control {}
269
- .form-list label { float:left; width:150px; padding:2px 10px 0 0; text-align:right; }
270
- .form-list label.required { font-weight:bold; }
271
- .form-list label.required em { font-variant:normal; color:#eb340a; margin-right:3px; }
272
- .form-list .input-box { float:left; width:260px; }
273
- .form-list input.input-text,
274
- .form-list textarea { width:254px; }
275
- .form-list select { width:260px; }
276
- .form-list li.additional-row { border-top:1px solid #ddd; margin-top:10px; }
277
- .form-list li.additional-row .btn-remove { float:right; margin:5px 5px 0 0; }
278
- .form-list .input-range input.input-text { width:96px; }*/
279
- /* Customer */
280
- /*.form-list .customer-dob .dob-month,
281
- .form-list .customer-dob .dob-day,
282
- .form-list .customer-dob .dob-year { float:left; width:85px; }
283
- .form-list .customer-dob input.input-text { display:block; width:74px; }
284
- .form-list .customer-dob label { font-size:11px; font-weight:normal; color:#777; text-align:left; }
285
- .form-list .customer-dob .dob-day,
286
- .form-list .customer-dob .dob-month { width:60px; }
287
- .form-list .customer-dob .dob-day input.input-text,
288
- .form-list .customer-dob .dob-month input.input-text { width:46px; }
289
- .form-list .customer-dob .dob-year { width:140px; }
290
- .form-list .customer-dob .dob-year input.input-text { width:134px; }*/
291
-
292
- .buttons-set { clear:both; margin:4em 0 0; padding:8px 0 0; border-top:1px solid #e4e4e4; text-align:right; }
293
- .buttons-set p.required { margin:0 0 10px; }
294
- .buttons-set .back-link { float:left; margin:0; }
295
- .buttons-set button.button { float:right; margin-left:5px; }
296
-
297
- .buttons-set-order { margin:10px 0 0; }
298
- .buttons-set-order .please-wait { padding:12px 7px 0 0; }
299
-
300
- .fieldset { border:1px solid #bbafa0; padding:22px 25px 12px 33px; margin:28px 0; }
301
- .fieldset .legend { float:left; font-weight:bold; font-size:13px; border:1px solid #bbafa0; background:#fff; color:#e76200; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
302
-
303
- /* Form Validation */
304
- .validation-advice { clear:both; min-height:13px; margin:3px 0 0; padding-left:17px; font-size:11px; font-weight:bold; line-height:13px; background:url(../images/validation_advice_bg.gif) 2px 0 no-repeat; color:#eb340a; }
305
- .validation-failed { border:1px dashed #eb340a !important; background:#faebe7 !important; }
306
- .validation-passed {}
307
- p.required { font-size:11px; text-align:right; color:#EB340A; }
308
- /* Expiration date and CVV number validation fix */
309
- .v-fix { float:left; }
310
- .v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }
311
-
312
- /* Global Messages */
313
- .success { color:#3d6611; font-weight:bold; }
314
- .error { color:#df280a; font-weight:bold; }
315
- .notice { color:#e26703; }
316
-
317
- .messages,
318
- .messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
319
- .messages { width:100%; overflow:hidden; }
320
- .messages li { margin:0 0 10px !important; }
321
- .messages li li { margin:0 0 3px !important; }
322
- .error-msg,
323
- .success-msg,
324
- .note-msg,
325
- .notice-msg { border-style:solid !important; border-width:1px !important; background-position:10px 9px !important; background-repeat:no-repeat !important; min-height:24px !important; padding:8px 8px 8px 32px !important; font-size:11px !important; font-weight:bold !important; }
326
- .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
327
- .success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(../images/i_msg-success.gif); color:#3d6611; }
328
- .note-msg,
329
- .notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(../images/i_msg-note.gif); color:#3d6611; }
330
-
331
- /* BreadCrumbs */
332
- .breadcrumbs { font-size:11px; line-height:1.25; margin:0 0 13px; }
333
- .breadcrumbs li { display:inline; }
334
- .breadcrumbs li strong { font-weight:bold; }
335
-
336
- /* Page Heading */
337
- .page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; }
338
- .page-title h1,
339
- .page-title h2 { margin:0; font-size:20px; color:#0a263c; }
340
- .page-title .separator { margin:0 3px; }
341
- .page-title .link-rss { float:right; margin:7px 0 0; }
342
- .title-buttons { text-align:right; }
343
- .title-buttons h1,
344
- .title-buttons h2,
345
- .title-buttons h3,
346
- .title-buttons h4,
347
- .title-buttons h5,
348
- .title-buttons h6 { float:left; }
349
-
350
- .subtitle,
351
- .sub-title { clear:both; padding:15px 0 0; font-size:15px; font-weight:bold; margin:0 0 6px; color:#e25203; }
352
-
353
- /* Pager */
354
- .pager { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x; padding:4px 8px; border-top:1px solid #e2e2e2; text-align:center; }
355
- .pager .amount { float:left; margin:0; }
356
- .pager .limiter { float:right; }
357
- .pager .limiter label { vertical-align:middle; }
358
- .pager .limiter select { padding:0; margin:0 0 1px; vertical-align:middle; }
359
- .pager .pages { margin:0 140px; }
360
- .pager .pages ol { display:inline; }
361
- .pager .pages li { display:inline; margin:0 2px; }
362
- .pager .pages .current {}
363
-
364
- /* Sorter */
365
- .sorter { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x; padding:3px 8px; border-top:1px solid #e2e2e2; }
366
- .sorter .view-mode { float:left; margin:0; }
367
- .sorter .sort-by { float:right; padding-right:36px; }
368
- .sorter .sort-by label { vertical-align:middle; }
369
- .sorter .sort-by select { padding:0; margin:0 0 1px; vertical-align:middle; }
370
- .sorter .link-feed {}
371
-
372
- /* Toolbar */
373
- .toolbar {}
374
- .toolbar .pager { padding:3px 8px; background:#FFFFFF url(../images/pager_bg.gif) repeat-x scroll 0 100%; font-size:0.95em; }
375
- .toolbar .sorter { background:#FFFFFF url(../images/pager_bg.gif) repeat-x scroll 0 100%; font-size:0.95em; }
376
- .toolbar-bottom {}
377
-
378
- /* Data Table */
379
- .data-table { width:100%; border:1px solid #bebcb7; }
380
- .data-table .odd { background:#f8f7f5 }
381
- .data-table .even { background:#eeeded; }
382
- /*.data-table tr.odd:hover,
383
- .data-table tr.even:hover { background:#ebf1f6; }*/
384
- .data-table td.last,
385
- .data-table th.last { border-right:0; }
386
- .data-table tr.last th,
387
- .data-table tr.last td { border-bottom:0 !important; }
388
- .data-table th { padding:3px 8px; font-weight:bold; }
389
- .data-table td { padding:3px 8px; }
390
-
391
- .data-table thead th { font-weight:bold; border-right:1px solid #c2d3e0; padding:2px 8px; color:#0a263c; white-space:nowrap; vertical-align:middle; }
392
- .data-table thead th.wrap { white-space:normal; }
393
- .data-table thead th a,
394
- .data-table thead th a:hover { color:#fff; }
395
- .data-table thead th { background:url(../images/bkg_th.gif) repeat-x 0 100% #d9e5ee; }
396
- .data-table thead th .tax-flag { font-size:11px; white-space:nowrap; }
397
-
398
- .data-table tfoot { border-bottom:1px solid #d9dde3; }
399
- .data-table tfoot tr.first td { background:url(../images/bkg_tfoot.gif) 0 0 repeat-x; }
400
- .data-table tfoot tr { background-color:#dee5e8 !important; }
401
- .data-table tfoot td { padding-top:1px; padding-bottom:1px; border-bottom:0; border-right:1px solid #d9dde3; }
402
- .data-table tfoot strong { font-size:16px; }
403
-
404
- .data-table tbody th,
405
- .data-table tbody td { border-bottom:1px solid #d9dde3; border-right:1px solid #d9dde3; }
406
- /* Bundle products tables */
407
- .data-table tbody.odd tr { background:#f8f7f5 !important; }
408
- .data-table tbody.even tr { background:#f6f6f6 !important; }
409
- .data-table tbody.odd tr td,
410
- .data-table tbody.even tr td { border-bottom:0; }
411
- .data-table tbody.odd tr.border td,
412
- .data-table tbody.even tr.border td { border-bottom:1px solid #d9dde3; }
413
-
414
- .data-table tbody td .option-label { font-weight:bold; font-style:italic; }
415
- .data-table tbody td .option-value { padding-left:10px; }
416
-
417
- /* Generic Info Box */
418
- .info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
419
- .info-box h2 { font-weight:bold; font-size:13px; }
420
-
421
- .info-table th { font-weight:bold; padding:2px 15px 2px 0; }
422
- .info-table td { padding:2px 0; }
423
-
424
- /* Shopping cart total summary row expandable to details */
425
- tr.summary-total { cursor:pointer; }
426
- tr.summary-total td {}
427
- tr.summary-total .summary-collapse { float:right; text-align:right; padding-left:20px; background:url(../images/bkg_collapse.gif) 0 5px no-repeat; cursor:pointer; }
428
- tr.show-details .summary-collapse { background-position:0 -52px; }
429
- tr.show-details td {}
430
- tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
431
- tr.summary-details-first td { border-top:1px solid #d2d8db; }
432
- tr.summary-details-excluded { font-style:italic; }
433
-
434
- /* Shopping cart tax info */
435
- .cart-tax-info { display:block; }
436
- .cart-tax-info,
437
- .cart-tax-info .cart-price { padding-right:20px; }
438
- .cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 5px no-repeat; cursor:pointer; }
439
- .cart-tax-info .price,
440
- .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
441
- .cart-tax-total-expanded { background-position:100% -52px; }
442
-
443
- /* Class: std - styles for admin-controlled content */
444
- .std .subtitle { padding:0; }
445
- .std ol.ol { list-style:decimal outside; padding-left:1.5em; }
446
- .std ul.disc { list-style:disc outside; padding-left:18px; margin:0 0 10px; }
447
- .std dl dt { font-weight:bold; }
448
- .std dl dd { margin:0 0 10px; }
449
- /*.std ul,
450
- .std ol,
451
- .std dl,
452
- .std p,
453
- .std address,
454
- .std blockquote { margin:0 0 1em; padding:0; }
455
- .std ul { list-style:disc outside; padding-left:1.5em; }
456
- .std ol { list-style:decimal outside; padding-left:1.5em; }
457
- .std ul ul { list-style-type:circle; }
458
- .std ul ul,
459
- .std ol ol,
460
- .std ul ol,
461
- .std ol ul { margin:.5em 0; }
462
- .std dt { font-weight:bold; }
463
- .std dd { padding:0 0 0 1.5em; }
464
- .std blockquote { font-style:italic; padding:0 0 0 1.5em; }
465
- .std address { font-style:normal; }
466
- .std b,
467
- .std strong { font-weight:bold; }
468
- .std i,
469
- .std em { font-style:italic; }*/
470
-
471
- /* Misc */
472
- .links li { display:inline; }
473
- .links li.first { padding-left:0 !important; }
474
- .links li.last { }
475
-
476
- .link-cart { color:#dc6809 !important; font-weight:bold; }
477
- .link-wishlist { color:#dc6809 !important; font-weight:bold; }
478
- .link-reorder { font-weight:bold; color:#dc6809 !important; }
479
- .link-compare { font-weight:bold; }
480
- .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/ font-weight:bold; color:#dc6809; }
481
- .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
482
- .btn-remove { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_remove.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
483
- .btn-previous { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_previous.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
484
- .btn-remove2 { display:block; width:16px; height:16px; font-size:0; line-height:0; background:url(../images/btn_trash.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
485
- .btn-edit { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_edit.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
486
-
487
- .cards-list dt { margin:5px 0 0; }
488
- .cards-list .offset { padding:2px 0 2px 20px; }
489
-
490
- .separator { margin:0 3px; }
491
-
492
- .divider { clear:both; display:block; font-size:0; line-height:0; height:1px; margin:10px 0; background:url(../images/bkg_divider1.gif) 0 50% repeat-x; text-indent:-999em; overflow:hidden; }
493
-
494
- /* Global site notices */
495
- .global-site-notice { border:1px solid #cfcfcf; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
496
- .global-site-notice .notice-inner { width:860px; margin:0 auto; padding:12px 0 12px 80px; background:url(../images/i_notice.gif) 20px 25px no-repeat; text-align:left; }
497
- .global-site-notice .notice-inner p { margin:0; border:1px dotted #cccc73; padding:10px; }
498
- .global-site-notice .notice-inner .actions { padding-top:10px; }
499
-
500
- /* Cookie Notice */
501
- .notice-cookie { position:fixed; z-index:9999; width:100%; bottom:0; left:0; margin:0 !important; opacity:0.95; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)"; /* IE8 */ }
502
-
503
- /* Noscript Notice */
504
- .noscript {}
505
-
506
- /* Demo Notice */
507
- .demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; border:0; text-align:center; color:#fff; }
508
- .demo-notice .notice-inner { width:auto; padding:0; background:none; text-align:center; }
509
- .demo-notice .notice-inner p { padding:0; border:0; }
510
-
511
- /* ======================================================================================= */
512
-
513
-
514
- /* Header ================================================================================ */
515
- .logo { float:left; }
516
- .header-container { margin-top:27px; text-align:left; }
517
- .header {margin:0 auto; padding:10px; text-align:right; position:relative; z-index:1000; width: 960px; }
518
- .header .logo { float:left; margin:3px 0 10px 12px; text-decoration:none !important; }
519
- .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
520
- .header h1.logo { margin:0; }
521
- .header .quick-access { }
522
-
523
- .header .welcome-msg { margin:0; color:#fff; text-align:right; }
524
- .header .form-search { background:url("../images/mini_search_bg.gif") no-repeat scroll 0 0 transparent;
525
- bottom:-34px; height:28px; padding:0; position:absolute; right:21px; width:152px; }
526
- .header .form-search input.input-text { background:none repeat scroll 0 0 transparent; border:medium none;
527
- float:right; font-size:0.9em; margin-top:5px; padding:2px 2px 2px 0; width:125px; }
528
- .header .form-search button.button { float:left; background: url(../images/btn_mini_search.gif) no-repeat left top; }
529
- .header .form-search button.button span { border:0; height:21px; background:url(../images/btn_search.gif) 0 0 no-repeat; padding:0 0 0 3px; font:bold 11px/21px Tahoma, Verdana, Arial, sans-serif; }
530
- .header .form-search button.button span span { background-position:100% 0; padding:0 6px 0 3px; }
531
- .header .form-search .search-autocomplete { z-index:999; /* left:40px !important; top:22px !important; */}
532
- .header .form-search .search-autocomplete ul { border:1px solid #5c7989; background-color:#f9f5f0; }
533
- .header .form-search .search-autocomplete li { text-align:left; border-bottom:1px solid #f4eee7; padding:2px 8px 1px 8px; cursor:pointer; }
534
- .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
535
- .header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
536
- .header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
537
- .header .form-language { position:absolute; right:230px; top:-22px; }
538
- .header .form-language label { padding-right:5px; vertical-align:middle; color:#A7C6DD; }
539
- .header .form-language select { padding:0; }
540
- .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
541
- .header .links { float:right; margin:0 0 6px; }
542
- .header .links li { float:left; font-size:11px; background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat; padding:0 8px 0 7px; }
543
- .header .links a { }
544
- .header-container .top-container { clear:both; text-align:right; }
545
- .header-container .top-container a { font-size:11px; }
546
-
547
- /********** < Navigation */
548
- .nav-container { height: 41px; background:url("../images/container.png") repeat-y scroll -979px 0 transparent;
549
- margin:0 auto; width:978px; }
550
- /* ======================================================================================= */
551
-
552
-
553
- /* Sidebar =============================================================================== */
554
- .block { background:url("../images/base_mini_bg.gif") repeat-x 0 0 #FFFFFF; border:1px solid #EAEAEA; font-size:0.95em; line-height:1.3em; margin:0 0 6px; }
555
- .block .block-title { margin:0; padding: 8px 2px 2px 8px; }
556
- .block .block-title strong { display:block; font:bold 12px/16px Arial, Helvetica, sans-serif; min-height:16px; padding:1px 0 1px; text-transform:uppercase; color:#e26703; }
557
- .block .block-title strong span { background-image:url("../images/common.gif");background-position:-357px -200px; background-repeat:no-repeat; color:#656565; font:bold 1em Verdana,Geneva,Arial,Helvetica,sans-serif; min-height:16px; padding:8px 0 1px 21px;text-transform:none; }
558
- .block .block-title a { text-decoration:none !important; }
559
- .block .block-subtitle { margin:0; padding:5px 9px; font-size:1em; font-weight:bold; color:#0a263c; }
560
- .block .block-content { }
561
- .block .block-content li.item { padding:7px 9px; }
562
- .block .btn-remove, .block .btn-edit { float:right; margin:1px 0 2px 5px; }
563
- .block .actions {padding:6px 9px; text-align:right; }
564
- .block .actions a { float:left; }
565
- .block .actions button.button { float:right; }
566
- .block .empty { margin:0; padding:5px 9px; }
567
-
568
- .block li.odd { background-color:#f4f3f3; }
569
- .block li.even { background-color:#fafafa; }
570
-
571
- /* Mini Blocks */
572
- .block-cart,
573
- .block-wishlist,
574
- .block-subscribe,
575
- .block-compare,
576
- .block-reorder,
577
- .block-poll,
578
- .block-viewed,
579
- .block-compared,
580
- .block-related,
581
- .block-tags,
582
- .block-login { font-size:11px; line-height:1.25; }
583
- .block-cart .block-title span,
584
- .block-wishlist .block-title span,
585
- .block-subscribe .block-title span,
586
- .block-compare .block-title span,
587
- .block-reorder .block-title span,
588
- .block-poll .block-title span,
589
- .block-viewed .block-title span,
590
- .block-compared .block-title span,
591
- .block-related .block-title span,
592
- .block-tags .block-title span,
593
- .block-login .block-title span { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
594
- .block-cart .block-title strong,
595
- .block-wishlist .block-title strong,
596
- .block-subscribe .block-title strong,
597
- .block-compare .block-title strong,
598
- .block-reorder .block-title strong,
599
- .block-poll .block-title strong,
600
- .block-viewed .block-title strong,
601
- .block-compared .block-title strong,
602
- .block-related .block-title strong,
603
- .block-tags .block-title strong,
604
- .block-login .block-title strong { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
605
-
606
- /* Mini Products List */
607
- .mini-products-list .product-image { float:left; width:50px; border:1px solid #a9a9a9; }
608
- .mini-products-list .product-details { margin-left:60px; }
609
- .block-cart .mini-products-list .product-details .product-name,
610
- .block-cart .mini-products-list .product-details .nobr small { word-wrap:break-word; }
611
- .block-cart .mini-products-list .product-details .nobr { white-space:normal !important; }
612
-
613
- /* Block: Account */
614
- .block-account { }
615
- .block-account .block-title { }
616
- .block-account .block-title span { font-size:13px; color:#fff; }
617
- .block-account .block-content {padding:7px 10px 7px; }
618
- .block-account .block-content li a { display:block; border-bottom:1px solid #ddd; padding:3px 0; color:#5f5d5c; text-decoration:none !important; }
619
- .block-account .block-content li a:hover { color:#ea7900; }
620
- .block-account .block-content li.last a { border-bottom:0; }
621
- .block-account .block-content li.current { border-bottom:1px solid #ddd; padding:3px 0; color:#ea7900; }
622
- .block-account .block-content li.current.last { border-bottom:0; }
623
-
624
- /* Block: Currency Switcher */
625
- .block-currency {}
626
- .block-currency .block-title { }
627
- .block-currency .block-title span { }
628
- .block-currency .block-content { background:none; padding:10px; }
629
- .block-currency .block-content select { width:100%; padding:0; }
630
-
631
- /* Block: Layered Navigation */
632
- .block-layered-nav { }
633
- .block-layered-nav .block-title { border:0; padding:0; height:24px; }
634
- .block-layered-nav .block-subtitle {}
635
- .block-layered-nav .block-content { }
636
- .block-layered-nav dt { padding:7px 10px 0 28px; font-weight:bold; text-transform:uppercase; }
637
- .block-layered-nav dd { padding:0 12px 12px; }
638
- .block-layered-nav dd.last { background:none; }
639
- .block-layered-nav .currently li { padding:4px 6px 4px 10px; position:relative; z-index:1; line-height:1.5; }
640
- .block-layered-nav .currently .label { font-weight:bold; padding-left:8px; text-transform:uppercase; }
641
- .block-layered-nav .currently .value { display:inline-block; vertical-align:top; }
642
- .block-layered-nav .currently .btn-previous,
643
- .block-layered-nav .currently .btn-remove { position:absolute; right:4px; top:5px; margin:0; }
644
- .block-layered-nav .currently .btn-previous { right:17px; }
645
- .block-layered-nav .actions { font-size:11px; padding:4px 9px; border-width:1px 0; text-align:right; }
646
- .block-layered-nav .actions a { float:none; }
647
-
648
- /* Block: Cart */
649
- .block-cart .block-title { /*border-bottom:0;*/ }
650
- .block-cart .block-title span { }
651
- .block-cart .block-title strong { background-image:url(../images/i_block-cart.gif); }
652
- .block-cart .summary { background:#fff; padding:2px 8px 8px; margin:-1px 0 0; position:relative; z-index:1; }
653
- .block-cart .amount { margin:0; }
654
- .block-cart .amount a { font-weight:bold; }
655
- .block-cart .subtotal { margin:5px 0 0; padding:2px 0; background:#fbebd9; text-align:center; }
656
- .block-cart .subtotal .price { font-weight:bold; }
657
- .block-cart .actions { }
658
- .block-cart .actions .paypal-logo { float:left; width:100%; margin:3px 0 0; text-align:right; }
659
- .block-cart .actions .paypal-logo .paypal-or { clear:both; display:block; padding:0 55px 8px 0; }
660
-
661
- /* Block: Wishlist */
662
- .block-wishlist .block-title span { }
663
- .block-wishlist .block-title strong { background-image:url(../images/i_block-wishlist.gif); }
664
- .block-wishlist .actions { text-align:right; }
665
- .block-wishlist .actions a { float:none; }
666
-
667
- /* Block: Related */
668
- .block-related .block-title span { }
669
- .block-related .block-title strong { background-image:url(../images/i_block-related.gif); background-position:0 1px; }
670
- .block-related input.checkbox { float:left; }
671
- .block-related .product { margin-left:20px; }
672
-
673
- /* Block: Compare Products */
674
- .block-compare .block-title span { }
675
- .block-compare .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
676
- .block-compare button.button span { border-color:#406a83; background:#618499; }
677
- .page-popup .link-print { background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px; font-weight:bold; color:#1e7ec8; }
678
- .compare-table { border:0; }
679
- .compare-table thead tr.first th,
680
- .compare-table thead tr.first td { border:0; background:none; padding:0; font-size:0; line-height:0; }
681
- .compare-table .btn-remove { float:right; background-image:url(../images/btn_remove2.gif); width:72px; height:15px; }
682
- .compare-table tbody th { background:#d9e5ee url(../images/bkg_th-v.gif) 100% 0 repeat-y; }
683
- .compare-table tbody th,
684
- .compare-table tbody td { padding:10px; border:0; border-top:1px solid #ccc; border-left:1px solid #ccc; }
685
- .compare-table tbody td.last { border-right:1px solid #ccc; }
686
- .compare-table tbody tr.last th,
687
- .compare-table tbody tr.last td { border-bottom:1px solid #ccc !important; }
688
- .compare-table tr.add-to-row td { background:#fffada; text-align:center; }
689
- .compare-table tr.first td { text-align:center; }
690
- .compare-table tr.first td .product-name { font-size:13px; font-weight:bold; margin:0 0 5px; color:#203548; }
691
- .compare-table tr.first td .product-name a { color:#203548; }
692
- .compare-table tr.first td .ratings { width:69px; margin:0 auto; }
693
- .compare-table tr.first td p,
694
- .compare-table tr.add-to-row td p { margin:0; }
695
-
696
- /* Block: Recently Viewed */
697
- .block-viewed .block-title span { }
698
- .block-viewed .block-title strong { background-image:url(../images/i_block-viewed.gif); }
699
-
700
- /* Block: Recently Compared */
701
- .block-compared .block-title span { }
702
- .block-compared .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
703
-
704
- /* Block: Poll */
705
- .block-poll .block-title span { }
706
- .block-poll .block-title strong { background-image:url(../images/i_block-poll.gif); }
707
- .block-poll .block-subtitle { font-size:12px; }
708
- .block-poll label { color:#777; font-weight:bold; }
709
- .block-poll input.radio { float:left; margin:1px -18px 0 0; }
710
- .block-poll .label { display:block; margin-left:18px; }
711
- .block-poll li { padding:3px 9px; }
712
- .block-poll .actions { margin:5px 0 0; }
713
- .block-poll button.button span { }
714
- .block-poll .answer { font-weight:bold; }
715
- .block-poll .votes { float:right; margin-left:10px; }
716
-
717
- /* Block: Orders and Returns */
718
- .block-gr-search li { padding:3px 9px; }
719
- .block-gr-search button.button span { }
720
-
721
- /* Block: Tags */
722
- .block-tags .block-title span { }
723
- .block-tags .block-content ul { font-size:12px; padding:10px; }
724
- .block-tags .block-content li { display:inline; padding-right:4px; }
725
- .block-tags .block-content a { color:#1b2d3b; }
726
- .block-tags .actions { text-align:right; }
727
- .block-tags .actions a { float:none; }
728
-
729
- /* Block: Subscribe */
730
- .block-subscribe .block-content { padding:5px 10px; }
731
- .block-subscribe .block-title strong { background-image:url(../images/i_block-subscribe.gif); }
732
- .block-subscribe label { font-weight:bold; color:#666; }
733
- .block-subscribe input.input-text { display:block; width:167px; margin:3px 0; }
734
- .block-subscribe .actions { background:none; padding:0; margin:3px 0 0; text-align:left; }
735
- .block-subscribe .actions button.button { float:none; }
736
- .block-subscribe .actions button.button span { }
737
-
738
- /* Block: Reorder */
739
- .block-reorder .block-title span { }
740
- .block-reorder input.checkbox { float:left; margin:2px -20px 0 0; }
741
- .block-reorder .product-name { margin-left:20px; }
742
- .block-reorder .validation-advice { margin:3px 9px 7px; }
743
-
744
- /* Block: Banner */
745
- .block-banner { border:0; }
746
- .block-banner .block-content { padding:0; text-align:center; }
747
-
748
- /* Block: Login */
749
- .block-login .block-title span { }
750
- .block-login .block-content { padding:5px 10px; }
751
- .block-login label { font-weight:bold; color:#666; }
752
- .block-login input.input-text { display:block; width:167px; margin:3px 0; }
753
- .block-login .actions { background:none; padding:0; margin:3px 0 0; }
754
- .block-login .actions button.button span { border-color:#406a83; background:#618499; }
755
-
756
- /* Paypal */
757
- .sidebar .paypal-logo { display:block; margin:10px 0; text-align:center; }
758
- .sidebar .paypal-logo a { float:none; }
759
- /* ======================================================================================= */
760
-
761
-
762
- /* Category Page ========================================================================= */
763
- .category-title { border:0; margin:0 0 7px; }
764
- .category-image { }
765
- .category-image img {}
766
- .category-description { margin:0 0 10px; }
767
- .category-products {}
768
-
769
- /* View Type: Grid */
770
- .products-grid { border-bottom:1px solid #d9ddd3; position:relative; }
771
- .products-grid.last { border-bottom:0; }
772
- .products-grid li.item { float:left; width:155px; padding:12px 10px 80px; }
773
- .products-grid .product-image { display:block; width:135px; height:135px; margin:0 0 10px; }
774
- .products-grid .product-name { /*min-height:2.7em;*/ margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
775
- .products-grid .product-name a { color:#203548; }
776
- .products-grid .price-box { margin:5px 0; }
777
- .products-grid .availability { line-height:21px; }
778
- .products-grid .actions { position:absolute; bottom:12px; }
779
- .col2-left-layout .products-grid,
780
- .col2-right-layout .products-grid { width:632px; margin:0 auto; }
781
- .col1-layout .products-grid { width:790px; margin:0 auto; }
782
-
783
- /* View Type: List */
784
- .products-list li.item { border-bottom:1px solid #d9ddd3; padding:12px 10px; }
785
- .products-list li.item.last { border-bottom:0; }
786
- .products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
787
- .products-list .product-shop { margin-left:150px; }
788
- .products-list .product-name { margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
789
- .products-list .product-name a { color:#203548; }
790
- .products-list .price-box { float:left; margin:3px 13px 5px 0; }
791
- .products-list .availability { float:left; margin:3px 0 0; }
792
- .products-list .desc { clear:both; padding:6px 0 0; margin:0 0 15px; line-height:1.35; }
793
- .products-list .desc .link-learn { font-size:11px; }
794
- .products-list .add-to-links { clear:both; }
795
- .products-list .add-to-links li { display:inline; }
796
- .products-list .add-to-links .separator { display:inline; margin:0 2px; }
797
- /* ======================================================================================= */
798
-
799
-
800
- /* Product View ========================================================================== */
801
- /* Rating */
802
- .no-rating { margin:0; }
803
-
804
- .ratings { font-size:11px; line-height:1.25; margin:7px 0; }
805
- .ratings strong { float:left; margin:1px 3px 0 0; }
806
- .ratings .rating-links { margin:0; }
807
- .ratings .rating-links .separator { margin:0 2px; }
808
- .ratings dt {}
809
- .ratings dd {}
810
- .rating-box { width:69px; height:13px; font-size:0; line-height:0; background:url(../images/bkg_rating.gif) 0 0 repeat-x; text-indent:-999em; overflow:hidden; }
811
- .rating-box .rating { float:left; height:13px; background:url(../images/bkg_rating.gif) 0 100% repeat-x; }
812
- .ratings .rating-box { float:left; margin-right:3px; }
813
- .ratings .amount {}
814
-
815
- .ratings-table th,
816
- .ratings-table td { font-size:11px; line-height:1.15; padding:3px 0; }
817
- .ratings-table th { font-weight:bold; padding-right:8px; }
818
-
819
- /* Availability */
820
- .availability { margin:0; }
821
- .availability span { font-weight:bold; }
822
- .availability.in-stock span {}
823
- .availability.out-of-stock span { color:#d83820; }
824
-
825
- .availability-only { margin:10px 0 7px; line-height:16px; background:url(../images/i_availability_only.gif) 0 50% no-repeat; padding-left:15px; }
826
- .availability-only span,
827
- .availability-only a { border-bottom:1px dashed #751d02; color:#000; }
828
- .availability-only a { background:url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat; cursor:pointer; padding-right:15px; text-decoration:none; }
829
- .availability-only .expanded { background-position:100% -15px; }
830
- .availability-only strong { color:#be2c00; }
831
-
832
- .availability-only-details { margin:0 0 7px; }
833
- .availability-only-details th { background:#d2d6d9; font-size:10px; padding:0 8px; }
834
- .availability-only-details td { background:#ebf0f3; border-bottom:1px solid #fff; font-size:11px; padding:2px 8px 1px; }
835
- .availability-only-details tr.odd td.last { color:#d95e00; font-weight:bold; }
836
-
837
- .product-view .product-shop .availability { font-size:11px; }
838
- .product-view .product-shop .availability span { font-weight:normal; }
839
-
840
- /* Email to a Friend */
841
- .email-friend { margin:0; }
842
-
843
- /* Alerts */
844
- .alert-price { margin:0; font-size:11px; }
845
- .alert-stock { margin:0; font-size:11px; }
846
-
847
- /********** < Product Prices */
848
- .price { white-space:nowrap !important; }
849
-
850
- .price-box { margin:5px 0; }
851
- .price-box .price { font-weight:bold; color:#c76200; }
852
-
853
- /* Regular price */
854
- .regular-price { color:#c76200; }
855
- .regular-price .price { font-weight:bold; font-size:13px; color:#c76200; }
856
- .block .regular-price,
857
- .block .regular-price .price { color:#2f2f2f; }
858
-
859
- /* Old price */
860
- .old-price { margin:0; }
861
- .old-price .price-label { white-space:nowrap; color:#999; }
862
- .old-price .price { font-weight:bold; color:#c76200; text-decoration:line-through; }
863
-
864
- /* Special price */
865
- .special-price { margin:0; padding:3px 0; }
866
- .special-price .price-label { font-size:13px; font-weight:bold; white-space:nowrap; color:#cd5033; }
867
- .special-price .price { font-size:13px; font-weight:bold; color:#c76200; }
868
-
869
- /* Minimal price (as low as) */
870
- .minimal-price { margin:0; }
871
- .minimal-price .price-label { font-weight:bold; white-space:nowrap; }
872
-
873
- .minimal-price-link { display:block; }
874
- .minimal-price-link .label {color:#1e7ec8;}
875
- .minimal-price-link .price { font-weight:normal; color:#1e7ec8; }
876
-
877
- /* Excluding tax */
878
- .price-excluding-tax { display:block; color:#999; }
879
- .price-excluding-tax .label { white-space:nowrap; color:#999; }
880
- .price-excluding-tax .price { font-size:13px; font-weight:normal; color:#c76200; }
881
-
882
- /* Including tax */
883
- .price-including-tax { display:block; color:#999; }
884
- .price-including-tax .label { white-space:nowrap; color:#999; }
885
- .price-including-tax .price { font-size:13px; font-weight:bold; color:#c76200; }
886
-
887
- /* Configured price */
888
- .configured-price { margin:0; }
889
- .configured-price .price-label { font-weight:bold; white-space:nowrap; }
890
- .configured-price .price { font-weight:bold; }
891
-
892
- /* FPT */
893
- .weee { display:block; font-size:11px; color:#444; }
894
- .weee .price { font-size:11px; font-weight:normal; }
895
-
896
- /* Excl tax (for order tables) */
897
- .price-excl-tax { display:block; }
898
- .price-excl-tax .label { display:block; white-space:nowrap; }
899
- .price-excl-tax .price { display:block; }
900
-
901
- /* Incl tax (for order tables) */
902
- .price-incl-tax { display:block; }
903
- .price-incl-tax .label { display:block; white-space:nowrap; }
904
- .price-incl-tax .price { display:block; font-weight:bold; }
905
-
906
- /* Price range */
907
- .price-from { margin:0; }
908
- .price-from .price-label { font-weight:bold; white-space:nowrap; }
909
-
910
- .price-to { margin:0; }
911
- .price-to .price-label { font-weight:bold; white-space:nowrap; }
912
-
913
- /* Price notice next to the options */
914
- .price-notice { padding-left:10px; color:#999; }
915
- .price-notice .price { font-weight:bold; color:#2f2f2f; }
916
-
917
- /* Price as configured */
918
- .price-as-configured { margin:0; }
919
- .price-as-configured .price-label { font-weight:bold; white-space:nowrap; }
920
-
921
- .price-box-bundle { padding:0 0 10px 0; }
922
- .price-box-bundle .price-box { margin:0 !important; padding:0 !important; }
923
- .price-box-bundle .price { color:#555; }
924
- /********** Product Prices > */
925
-
926
- /* Tier Prices */
927
- .product-pricing,
928
- .tier-prices { margin:10px 0; padding:10px; background-color:#f4f7f7; border:1px solid #dadddd; color:#424242; }
929
- .tier-prices li { line-height:1.4; background:url(../images/i_tier.gif) no-repeat 0 3px; padding:2px 0 2px 10px; }
930
- .tier-prices .benefit { font-style:italic; font-weight:bold; color:#2f2f2f; }
931
- .tier-prices .price { font-weight:bold; color:#2f2f2f; }
932
-
933
- .tier-prices-grouped li { padding:2px 0; color:#e26703; }
934
- .tier-prices-grouped li .price { font-weight:bold; }
935
-
936
- /* Add to Links */
937
- .add-to-links { font-size:11px; margin:5px 0 0; }
938
- .add-to-links .separator { display:none; }
939
-
940
- /* Add to Cart */
941
- .add-to-cart label { float:left; margin-right:5px; font-weight:bold; color:#666; }
942
- .add-to-cart .qty { float:left; margin-right:5px; }
943
- .add-to-cart button.button { float:left; }
944
- .add-to-cart .paypal-logo { clear:left; margin:0; text-align:right; }
945
- .add-to-cart .paypal-logo .paypal-or { clear:both; display:block; margin:5px 60px 5px 0; }
946
- .product-view .add-to-cart .paypal-logo { margin:0; }
947
-
948
- /* Add to Links + Add to Cart */
949
- .add-to-box { margin:10px 0; }
950
- .add-to-box .add-to-cart { float:left; }
951
- .add-to-box .or { float:left; font-weight:bold; margin:0 7px; color:#666; }
952
- .add-to-box .add-to-links { float:left; margin:0; font-size:12px !important; line-height:1.25 !important; text-align:left !important; }
953
- .add-to-box .add-to-links li { display:block !important; }
954
- .add-to-box .add-to-links li .separator { display:none !important; }
955
-
956
-
957
- .product-view { border:1px solid #c4c6c8; }
958
-
959
- .product-essential { padding:25px; background:#fff url(../images/bkg_product-view.gif) 100% 0 no-repeat; }
960
- .product-essential h2 { font:bold 13px/1.35 Arial, Helvetica, sans-serif; }
961
-
962
- .product-collateral { background:#faf7ee url(../images/bkg_product_collateral.gif) 0 0 repeat-x; padding:25px; }
963
- .product-collateral h2 { font-weight:bold; font-size:15px; color:#e26703; border-bottom:1px solid #e5dcc3; padding:0 0 1px; margin:0 0 15px; }
964
- .product-collateral .box-collateral { margin:0 0 25px; }
965
-
966
- /* Product Images */
967
- .product-view .product-img-box { float:left; width:267px; }
968
- .col3-layout .product-view .product-img-box { float:none; margin:0 auto; }
969
- .product-view .product-img-box .product-image { margin:0 0 13px; }
970
- .product-view .product-img-box .product-image-zoom { position:relative; width:265px; height:265px; overflow:hidden; z-index:9; }
971
- .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
972
- .product-view .product-img-box .zoom-notice { font-size:11px; margin:0 0 5px; text-align:center; }
973
- .product-view .product-img-box .zoom { position:relative; z-index:9; height:18px; margin:0 auto 13px; padding:0 28px; background:url(../images/slider_bg.gif) 50% 50% no-repeat; cursor:pointer; }
974
- .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
975
- .product-view .product-img-box .zoom #track { position:relative; height:18px; }
976
- .product-view .product-img-box .zoom #handle { position:absolute; left:0; top:-1px; width:9px; height:22px; background:url(../images/magnifier_handle.gif) 0 0 no-repeat; }
977
- .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
978
- .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
979
- .product-view .product-img-box .more-views h2 { font-size:11px; border-bottom:1px solid #ccc; margin:0 0 8px; text-transform:uppercase; }
980
- .product-view .product-img-box .more-views ul { margin-left:-9px }
981
- .product-view .product-img-box .more-views li { float:left; margin:0 0 8px 9px; }
982
- .product-view .product-img-box .more-views li a { float:left; width:56px; height:56px; border:2px solid #ddd; overflow:hidden; }
983
-
984
- .product-image-popup { margin:0 auto; }
985
- .product-image-popup .buttons-set { float:right; clear:none; border:0; margin:0; padding:0; }
986
- .product-image-popup .nav { font-weight:bold; margin:0 100px; text-align:center; }
987
- .product-image-popup .image { display:block; margin:10px 0; }
988
- .product-image-popup .image-label { font-size:13px; font-weight:bold; margin:0 0 10px; color:#2f2f2f; }
989
-
990
- /* Product Shop */
991
- .product-view .product-shop { float:right; width:410px; }
992
- .col1-layout .product-view .product-shop { float:right; width:545px; }
993
- .col3-layout .product-view .product-shop { float:none; width:auto; }
994
- .product-view .product-shop .product-name { margin:0 0 5px; }
995
- .product-view .product-shop .product-name h1 { margin:0; font:bold 15px/1.35 Arial, Helvetica, sans-serif; }
996
- .product-view .product-shop .availability { margin:10px 0; }
997
- .product-view .product-shop .short-description { margin:10px 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; padding:10px 0 0; }
998
- .product-view .product-shop .price-box { margin:10px 0; }
999
- .product-view .product-shop .add-to-links { margin:0; }
1000
- .product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
1001
- .product-view .product-shop .add-to-links li,
1002
- .product-view .product-shop .add-to-links li .separator { display:inline; }
1003
- .product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
1004
-
1005
- /* Product Options */
1006
- .product-options { margin:20px 0 0; padding:10px 15px 20px; position:relative; background-color:#f6f6f6; border:1px solid #e4e4e4; }
1007
- .product-options dt { padding:10px 0 0; font-weight:normal; }
1008
- .product-options dt label { font-weight:bold; color:#2f2f2f; }
1009
- .product-options dt label.required em { color:#eb340a; margin-left:5px; }
1010
- .product-options dd .qty-holder { display:block; padding:10px 0 0; }
1011
- .product-options dd .qty-holder label { vertical-align:middle; }
1012
- .product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#2f2f2f; }
1013
- .product-options dd { padding:5px 10px 15px; margin:0 0 5px; border-bottom:1px solid #e4e4e4; }
1014
- .product-options dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
1015
- .product-options dd input.input-text { width:98%; }
1016
- .product-options dd input.datetime-picker { width:150px; }
1017
- .product-options dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
1018
- .product-options dd textarea { width:98%; height:8em; }
1019
- .product-options dd select { width:99%; }
1020
- .product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
1021
- .product-options ul.options-list { margin-right:5px; }
1022
- .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1023
- .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1024
- .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1025
- .product-options ul.options-list .label { display:block; margin-left:18px; }
1026
- .product-options ul.options-list label { font-weight:normal; }
1027
- .product-options ul.validation-failed { padding:0 7px; }
1028
- .product-options p.note { margin:0; font-size:11px; }
1029
- .product-options p.required { position:absolute; right:20px; top:20px; }
1030
-
1031
- .product-options-bottom { background-color:#fffada; padding:15px 20px; border:1px solid #e4e4e4; border-top:0; }
1032
- .product-options-bottom .product-pricing,
1033
- .product-options-bottom .tier-prices { margin:0; padding:0 0 10px; border:0; background:0; color:#e26703; }
1034
- .product-options-bottom .tier-prices li { background:0; padding:2px 0; }
1035
- .product-options-bottom .tier-prices .price,
1036
- .product-options-bottom .tier-prices .benefit { color:#e26703; }
1037
- .product-options-bottom .price-box { float:left; margin:0; padding:0; }
1038
- .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1039
- .col3-layout .product-options-bottom .price-box { float:none; padding:0 0 5px; }
1040
- .product-options-bottom .price-label { float:left; padding-right:5px; }
1041
- .product-options-bottom .price-tax { float:left; }
1042
- .product-options-bottom .add-to-cart { float:right; }
1043
- .product-shop .product-options-bottom { margin:0 0 10px; }
1044
- .product-shop .product-options-bottom .price-box { float:none; margin:0 0 5px; }
1045
- .product-shop .product-options-bottom .price-label { float:none; padding-right:0; }
1046
- .product-shop .product-options-bottom .price-tax { float:none; }
1047
- .product-shop .product-options-bottom .add-to-cart-box { clear:both; float:left; padding-top:12px; }
1048
- .product-shop .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1049
-
1050
- /* Grouped Product */
1051
- .product-view .grouped-items-table .price-box { margin:0; padding:0; }
1052
-
1053
- /* Block: Description */
1054
- .product-view .box-description {}
1055
-
1056
- /* Block: Additional */
1057
- .product-view .box-additional .data-table th,
1058
- .product-view .box-additional .data-table td { line-height:1.25; }
1059
-
1060
- /* Block: Upsell */
1061
- .product-view .box-up-sell h2 { border-bottom:0; padding:0; margin:0 0 8px; }
1062
- .product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1063
- .product-view .box-up-sell .products-grid td { width:25%; background:#f6f2e7; border-right:1px solid #e5dcc3; border-bottom:1px solid #e5dcc3; padding:15px 10px 12px; line-height:1.6em; }
1064
- .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1065
- .product-view .box-up-sell .products-grid td.last { border-right:0; }
1066
- .product-view .box-up-sell .products-grid td img { border:1px solid #e5dcc3; }
1067
- .product-view .box-up-sell .products-grid .product-image { text-align:center; }
1068
- .product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; }
1069
- .product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1070
-
1071
- /* Block: Tags */
1072
- .product-view .box-tags { margin:0; }
1073
- .product-view .box-tags h3 { font-size:13px; }
1074
- .product-view .box-tags .product-tags { display:block; margin:0 0 15px; }
1075
- .product-view .box-tags .product-tags li { display:inline; background:url(../images/bkg_pipe3.gif) 100% 4px no-repeat; padding:0 7px 0 4px; }
1076
- .product-view .box-tags .product-tags li.first { padding-left:0; }
1077
- .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1078
- .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1079
- .product-view .box-tags .form-add .input-box { float:left; width:305px; margin:0 5px 0 0; background:url(../images/i_tag_add.gif) 0 2px no-repeat; padding:0 0 0 23px; }
1080
- .product-view .box-tags .form-add input.input-text { width:299px; }
1081
- .product-view .box-tags .form-add button.button span { border-color:#406a83; background:#618499; }
1082
- .product-view .box-tags .note { margin:3px 0 0; padding:0 0 0 23px; font-size:11px; }
1083
-
1084
- /* Block: Reviews */
1085
- .product-view .box-reviews dl { margin:15px 0; }
1086
- .product-view .box-reviews dt a,
1087
- .product-view .box-reviews dt span { font-weight:bold; }
1088
- .product-view .box-reviews dd { margin:0 0 15px; }
1089
- .product-view .box-reviews dd small { font-style:italic; }
1090
- .product-view .box-reviews .form-add { margin:15px 0 0; }
1091
- .product-view .box-reviews .form-add h3 { font-size:13px; font-weight:normal; }
1092
- .product-view .box-reviews .form-add h3 span { font-weight:bold; }
1093
- .product-view .box-reviews .form-add h4 { font-size:12px; }
1094
- .product-view .box-reviews .form-add .data-table td { text-align:center; }
1095
- .product-view .box-reviews .form-add .form-list { margin:15px 0 0; }
1096
- .product-view .box-reviews .form-add .form-list .input-box { width:360px; }
1097
- .product-view .box-reviews .form-add .form-list input.input-text,
1098
- .product-view .box-reviews .form-add .form-list textarea { width:354px; }
1099
-
1100
- /* Send a Friend */
1101
- .send-friend .form-list { width:615px; overflow:hidden; }
1102
- .send-friend .form-list li { margin-right:-15px; }
1103
- .send-friend .form-list li p { margin:0 15px 0 0; }
1104
- .send-friend .form-list .field { width:315px; }
1105
- .send-friend .form-list .input-box { width:300px; }
1106
- .send-friend .form-list input.input-text,
1107
- .send-friend .form-list textarea { width:294px; }
1108
- .send-friend .form-list li.wide .input-box { width:612px; }
1109
- .send-friend .form-list li.wide textarea { width:609px; }
1110
- .send-friend .buttons-set .limit { float:right; margin:0 7px 0 0; font-size:11px; line-height:21px; }
1111
- /* ======================================================================================= */
1112
-
1113
-
1114
- /* Content Styles ================================================================= */
1115
- .product-name { margin:0; font-size:1em; font-weight:normal; }
1116
- .product-name a { }
1117
-
1118
- /* Product Tags */
1119
- .tags-list { display:block; font-size:13px; border:none; background:none; padding:10px; }
1120
- .tags-list li { display:inline !important; margin:0 4px 0 0; }
1121
- .tags-list li a { color:#1b2d3b; }
1122
-
1123
- /* Advanced Search */
1124
- .advanced-search .form-list label { width:160px; padding-right:10px; }
1125
- .advanced-search .form-list .input-box,
1126
- .advanced-search .form-list .input-range { float:left; clear:none; }
1127
- .advanced-search-amount { margin:0 0 10px; }
1128
- .advanced-search-summary { margin:10px 0; border:1px solid #e9d7c9; background:#fff6f1; padding:10px; }
1129
- .advanced-search-summary ul { float:left; width:49%; }
1130
- .advanced-search-summary strong { color:#E17C24; padding-left:15px; background:url(../images/i_search_criteria.gif) 0 3px no-repeat; }
1131
- .advanced-search-summary p { clear:both; font-weight:bold; margin:0; }
1132
-
1133
- /* CMS Home Page */
1134
- .cms-home .subtitle {}
1135
- .cms-index-index .subtitle {}
1136
-
1137
- /* Sitemap */
1138
- .page-sitemap .links { text-align:right; margin:0 8px -22px 0; }
1139
- .page-sitemap .links a { text-decoration:none; position:relative; }
1140
- .page-sitemap .links a:hover { text-decoration:underline; }
1141
- .page-sitemap .sitemap { margin:12px; }
1142
- .page-sitemap .sitemap a { color:#1b2d3b; }
1143
- .page-sitemap .sitemap li { margin:3px 0; }
1144
- .page-sitemap .sitemap li.level-0 { margin:10px 0 0; font-weight:bold; }
1145
- .page-sitemap .sitemap li.level-0 a { color:#1e7ec8; }
1146
-
1147
- /* RSS */
1148
- .rss-title h1 { background:url(../images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
1149
- .rss-table .link-rss { display:block; line-height:1.55; background-position:0 4px; }
1150
- /* ======================================================================================= */
1151
-
1152
-
1153
- /* Shopping Cart ========================================================================= */
1154
- .cart .page-title { border-bottom:0; margin:0 0 12px; }
1155
- .cart .page-title h1 { margin:10px 0 0; }
1156
- .cart button { margin:8px 0 0; }
1157
-
1158
- /* Checkout Types */
1159
- .cart .page-title .checkout-types li { margin:0 0 5px; }
1160
- .cart .title-buttons .checkout-types { float:right; }
1161
- .cart .title-buttons .checkout-types li { float:left; margin:0 0 5px 5px; }
1162
- .cart .checkout-types .paypal-or { margin:0 8px; line-height:2.3; }
1163
- .cart .totals .checkout-types .paypal-or { clear:both; display:block; padding:8px 55px 0 0; line-height:1.0; font-size:11px; }
1164
-
1165
- /* Shopping Cart Table */
1166
- .cart-table th { padding:2px 10px; }
1167
- .cart-table td { padding:10px; }
1168
- .cart-table .product-name { font-weight:bold; margin:0 0 5px; color:#2f2f2f; }
1169
- .cart-table .item-msg { margin:5px 0; font-size:11px; font-weight:bold; color:#df280a; }
1170
- .cart-table tfoot td { padding:5px 10px; }
1171
- .cart-table .btn-continue { float:left; }
1172
- .cart-table .btn-empty span,
1173
- .cart-table .btn-continue span,
1174
- .cart-table .btn-update span { border-color:#406a83; background:#618499; }
1175
- .cart-table .btn-update,
1176
- .cart-table .btn-empty { float:right; }
1177
- .cart-table .btn-update { margin-left:10px; }
1178
-
1179
- /* Shopping Cart Collateral boxes */
1180
- .cart .cart-collaterals { padding:25px 0 0; }
1181
- .cart .cart-collaterals .col2-set { float:left; width:605px; }
1182
- .cart .cart-collaterals .col2-set .col-2 { width:294px; }
1183
-
1184
- .cart .crosssell { border:1px solid #cec3b6; background:#fafaec; padding:12px 15px; }
1185
- .cart .crosssell h2 { font-size:13px; font-weight:bold; }
1186
- .cart .crosssell .product-image { float:left; width:75px; height:75px; border:1px solid #d0cdc9; }
1187
- .cart .crosssell .product-details { margin-left:90px; }
1188
- .cart .crosssell .product-name { font-weight:bold; }
1189
- .cart .crosssell li.item { margin:12px 0; }
1190
- .cart .crosssell .link-compare { font-weight:normal; }
1191
-
1192
- /* Discount Codes & Estimate Shipping and Tax Boxes */
1193
- .cart .discount,
1194
- .cart .shipping { border:1px solid #d0cbc1; background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; padding:12px 15px; margin:0 0 18px; }
1195
- .cart .discount h2,
1196
- .cart .shipping h2 { background-position:0 0; background-repeat:no-repeat; font:bold 13px/16px Arial, Helvetica, sans-serif; padding:0 0 0 21px; color:#e26703; text-transform:uppercase; }
1197
- .cart .discount button span,
1198
- .cart .shipping button span { border-color:#406a83; background:#618499; }
1199
- .cart .discount .buttons-set,
1200
- .cart .shipping .buttons-set { margin:10px 0 0; border:0; padding:0; text-align:left; }
1201
- .cart .discount .buttons-set button.button,
1202
- .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1203
-
1204
- .cart .discount h2 { background-image:url(../images/i_discount.gif); }
1205
- .cart .discount .input-box { margin:8px 0 0; width:260px; }
1206
- .cart .discount input.input-text { width:254px; }
1207
-
1208
- .cart .shipping h2 { background-image:url(../images/i_shipping.gif); }
1209
- .cart .shipping .sp-methods { margin:10px 0 0; padding:5px 0 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; }
1210
-
1211
- /* Shopping Cart Totals */
1212
- .cart .totals { float:right; width:268px; background:#dee5e8; border:1px solid #bebcb7; }
1213
- .cart .totals table { width:100%; margin:7px 0; }
1214
- .cart .totals td { padding:1px 15px 1px 7px; }
1215
- .cart .totals tr.last td {}
1216
- .cart .totals tfoot th { padding:5px 15px 5px 7px; }
1217
- .cart .totals tfoot td { padding-top:5px; padding-bottom:5px; }
1218
- .cart .totals tfoot th strong,
1219
- .cart .totals tfoot td strong { font-size:15px; }
1220
- .cart .totals .checkout-types { font-size:13px; padding:8px 15px 15px; text-align:right; }
1221
- .cart .totals .checkout-types li { clear:both; margin:10px 0; }
1222
-
1223
- /* Options Tool Tip */
1224
- .item-options dt { font-weight:bold; font-style:italic; }
1225
- .item-options dd { padding-left:10px; margin:0 0 6px; }
1226
- .truncated { cursor:help; }
1227
- .truncated a.dots { cursor:help; }
1228
- .truncated a.details { cursor:help; }
1229
- .truncated .truncated_full_value { position:relative; z-index:999; }
1230
- .truncated .truncated_full_value .item-options { position:absolute; top:-99999em; left:-99999em; z-index:999; width:250px; padding:8px; border:1px solid #ddd; background-color:#f6f6f6; }
1231
- .truncated .truncated_full_value .item-options > p { font-weight:bold; text-transform:uppercase; }
1232
- .truncated .show .item-options { top:-20px; left:50%; }
1233
- .col-left .truncated .show .item-options { left:15px; top:7px; }
1234
- .col-right .truncated .show .item-options { left:-240px; top:7px; }
1235
- /* ======================================================================================= */
1236
-
1237
-
1238
- /* Checkout ============================================================================== */
1239
- /********** < Common Checkout Styles */
1240
- /* Shipping and Payment methods */
1241
- .sp-methods { margin:0 0 8px; }
1242
- .sp-methods dt { margin:13px 0 5px; font-weight:bold; }
1243
- .sp-methods dd {}
1244
- .sp-methods dd li { margin:5px 0; }
1245
- .sp-methods label { font-weight:bold; color:#666; }
1246
- .sp-methods .price { font-weight:bold; }
1247
- .sp-methods .form-list { padding-left:20px; }
1248
- .sp-methods .form-list li { margin:0 0 8px; }
1249
- .sp-methods select.month { width:154px; margin-right:10px; }
1250
- .sp-methods select.year { width:96px; }
1251
- .sp-methods input.cvv { width:3em !important; }
1252
-
1253
- .sp-methods .checkmo-list li { margin:0 0 5px; }
1254
- .sp-methods .checkmo-list label { width:135px; padding-right:10px; text-align:right; }
1255
- .sp-methods .checkmo-list address { float:left; }
1256
-
1257
- .sp-methods .centinel-logos a { margin-right:3px; }
1258
- .sp-methods .centinel-logos img { vertical-align:middle; }
1259
-
1260
- .sp-methods .release-amounts { margin:0.5em 0; }
1261
- .sp-methods .release-amounts button { float:left; margin:5px 10px 0 0; }
1262
-
1263
- .please-wait { float:right; }
1264
- .please-wait img { vertical-align:middle; }
1265
- .cvv-what-is-this { font-size:11px; cursor:help; margin-left:10px; }
1266
-
1267
- /* Tooltip */
1268
- .tool-tip { border:1px solid #7BA7C9; background:#EAF6FF; padding:15px 20px; position:absolute; z-index:9999; }
1269
- .tool-tip .btn-close { margin:-9px -14px 0; text-align:right; }
1270
- .tool-tip .btn-close a { display:block; margin:0 0 0 auto; width:15px; height:15px; background:url(../images/btn_window_close.gif) 100% 0 no-repeat; text-align:left; text-indent:-999em; overflow:hidden; }
1271
- .tool-tip .tool-tip-content { padding:5px; }
1272
-
1273
- /* Gift Messages */
1274
- .gift-messages h3 { font-size:12px; font-weight:bold; color:#e87403; }
1275
- .gift-messages p.control { color:#8e8d8b; }
1276
- .gift-messages-form { position:relative; }
1277
- .gift-messages-form label { float:none !important; position:static !important; }
1278
- .gift-messages-form h4 { font-size:12px; font-weight:bold; color:#e87403; }
1279
- .gift-messages-form .whole-order { margin:0 0 25px; }
1280
- .gift-messages-form .item { margin:0 0 10px; }
1281
- .gift-messages-form .item .product-img-box { float:left; width:75px; }
1282
- .gift-messages-form .item .product-image { margin:0 0 7px; }
1283
- .gift-messages-form .item .number { margin:0; font-weight:bold; text-align:center; color:#8a8987; }
1284
- .gift-messages-form .item .details { margin-left:90px; }
1285
- .gift-messages-form .item .details .product-name { font-size:13px; font-weight:bold; margin:0 0 10px; }
1286
- .gift-messages-form .item .details .form-list .field { width:255px; }
1287
- .gift-messages-form .item .details .form-list .input-box { width:240px; }
1288
- .gift-messages-form .item .details .form-list input.input-text { width:234px; }
1289
- .gift-messages-form .item .details .form-list li.wide .input-box { width:500px; }
1290
- .gift-messages-form .item .details .form-list li.wide textarea { width:494px; }
1291
-
1292
- .gift-message-link { font-size:11px; background:url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat; padding-right:7px; }
1293
- .gift-message-link.expanded { background-position:100% -40px; }
1294
- .gift-message-row { background:#f2efe9; }
1295
- .gift-message-row .btn-close { float:right; width:16px; height:16px; background:url(../images/btn_gm-close.gif) 0 0 no-repeat; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
1296
-
1297
- /* Checkout Agreements */
1298
- .checkout-agreements li { margin:30px 0; }
1299
- .checkout-agreements .agreement-content { overflow:auto; height:12em; padding:10px; background-color:#fbfaf6; border:1px solid #bbb6a5; }
1300
- .checkout-agreements .agree { margin:0; padding:10px 0 10px 11px; }
1301
- .checkout-agreements .agree input.checkbox { margin-right:6px; }
1302
- .checkout-agreements .agree label { font-weight:bold; color:#666; }
1303
-
1304
- .opc .checkout-agreements { border:1px solid #d9dde3; border-width:0 1px; padding:5px 30px; }
1305
- .opc .checkout-agreements li { margin:20px 0 0; }
1306
- .opc .checkout-agreements .agreement-content { background-color:#fff; border-color:#e4e4e4; padding:5px; }
1307
- .opc .checkout-agreements .agree { padding-left:6px; }
1308
-
1309
- /* Centinel */
1310
- .centinel {}
1311
- .centinel .authentication { border:1px solid #ddd; background:#fff; }
1312
- .centinel .authentication iframe { width:99%; height:400px; background:transparent !important; margin:0 !important; padding:0 !important; border:0 !important; }
1313
-
1314
- .opc .centinel { border:1px solid #bbb6a5; border-width:0 1px 1px; padding:10px 30px; }
1315
-
1316
- /* Generic Info Set */
1317
- .info-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1318
- .info-set h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1319
- .info-set h3,
1320
- .info-set h4 { font-size:13px; font-weight:bold; color:#E26703; }
1321
- .info-set h2 a,
1322
- .info-set h3 a,
1323
- .info-set h4 a { font-weight:normal; }
1324
- .info-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1325
- .info-set h3.legend { margin:0 0 10px; color:#0a263c; }
1326
- .info-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1327
- .info-set .box { margin:0 0 15px; }
1328
- .info-set .box h2 { color:#e26703; }
1329
- .info-set .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1330
- .info-set .data-table .product-name a { font-weight:bold !important; }
1331
- .info-set .data-table .item-options { margin:5px 0 0; }
1332
- /********** Common Checkout Styles > */
1333
-
1334
- /* One Page Checkout */
1335
- .block-progress { border:0; margin:0; }
1336
- .block-progress .block-title { background:none; border:0; margin:0 0 5px; }
1337
- .block-progress .block-title strong { font-size:13px; color:#0a263c; }
1338
- .block-progress .block-content { background:none; }
1339
- .block-progress dt { font-size:13px; font-weight:bold; line-height:1.35; background:#eee; border:1px solid #a3aeb3; margin:0 0 6px; padding:2px 8px; color:#999; }
1340
- .block-progress dd { background:#eee; border:1px solid #a3aeb3; border-top:0; padding:8px 13px; margin:0 0 6px; }
1341
- .block-progress dt.complete { margin:0; background:#d0dce1; color:#5e8ab4; }
1342
- .block-progress dd.complete {}
1343
- .block-progress p { margin:0; }
1344
- .block-progress .cards-list dt { background:none; border:0 none; color:inherit; font-size:12px; margin:5px 0; padding:0; }
1345
- .block-progress .cards-list dd { border:0 none; margin:0; padding:0; }
1346
- .block-progress .cards-list .info-table th { font-weight:normal; }
1347
-
1348
- /* show/hide "change" link for progress step depend on complete status
1349
- * should be placed in .css file */
1350
- .opc-block-progress dt.complete a,
1351
- .opc-block-progress dt.complete .separator { display: inline; }
1352
- .opc-block-progress dt a,
1353
- .opc-block-progress dt .separator { display: none; }
1354
-
1355
- .opc .buttons-set { margin-top:0; padding-top:2em; }
1356
- .opc .buttons-set p.required { margin:0; padding:0 0 10px; }
1357
- .opc .buttons-set .back-link small { display:none; }
1358
- .opc .buttons-set .back-link a { background:url(../images/i_arrow-top.gif) 0 50% no-repeat; padding-left:16px; }
1359
- .opc .buttons-set.disabled button.button { display:none; }
1360
- .opc .buttons-set .please-wait { height:21px; line-height:21px; }
1361
- .opc .ul { list-style:disc outside; padding-left:18px; }
1362
-
1363
- .opc { position:relative; }
1364
- .opc li.section {}
1365
-
1366
- .opc .step-title { border-width:0 1px; border-style:solid; border-color:#fff #d9dde3 #d9dde3; background:#eee url(../images/bkg_opc-title-off.gif) 0 100% repeat-x; padding:4px 8px 6px; text-align:right; }
1367
- .opc .step-title .number { float:left; background:#fff; border:1px solid #fff; padding:0 4px; margin:0 5px 0 0; font:bold 11px/14px arial, helvetica, sans-serif; color:#999; }
1368
- .opc .step-title h2 { float:left; margin:0; font:bold 13px/16px Arial, Helvetica, sans-serif; color:#999; }
1369
- .opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }
1370
-
1371
- .opc .allow .step-title { background:#d0dce1; border:1px solid #a3aeb3; border-bottom:0; color:#a4b3b9; cursor:pointer; }
1372
- .opc .allow .step-title .number { background:#dbe6eb; border-color:#dbe6eb; color:#a4b3b9; }
1373
- .opc .allow .step-title h2 { color:#a4b3b9; }
1374
- /*.opc .allow .step-title a { display:block; }*/
1375
-
1376
- .opc .active .step-title { background:#f9f3e3; border:1px solid #bbafa0; padding-bottom:5px; color:#f18200; cursor:default; }
1377
- .opc .active .step-title .number { background:#f18200; border-color:#f19900; color:#fff; }
1378
- .opc .active .step-title h2 { color:#f18200; }
1379
- /*.opc .active .step-title a { display:none; }*/
1380
-
1381
- .opc .step { border:1px solid #bbafa0; border-top:0; background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; padding:15px 30px; position:relative; }
1382
- .opc .step .tool-tip { right:30px; }
1383
-
1384
- #opc-login .buttons-set { border-top:0; }
1385
- #opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
1386
- #opc-login h4 { font-size:1em; font-weight:bold; margin:0; color:#2f2f2f; }
1387
-
1388
- #opc-shipping_method .buttons-set { border-top:0; }
1389
- .opc .gift-messages-form { margin:0 -30px; background:#f6f1eb; border:1px solid #e9e4de; border-width:1px 0; padding:22px 24px 22px 30px; }
1390
- .opc .gift-messages-form .inner-box { padding:5px; height:260px; overflow:auto; }
1391
-
1392
- #opc-review .step { border:0; padding:0; }
1393
- #opc-review .product-name { font-weight:bold; color:#0a263c; }
1394
- #opc-review .item-options { margin:5px 0 0; }
1395
- #opc-review .buttons-set { padding:20px 30px; border:1px solid #d9dde3; border-width:0 1px 1px; }
1396
- #opc-review .buttons-set p { margin:0; line-height:40px; }
1397
- #opc-review .buttons-set .please-wait { height:40px; line-height:40px; }
1398
- #opc-review .authentication { margin:0 auto; width:570px; }
1399
- #opc-review .warning-message { color:#222; font-weight:bold; text-align:center; padding:10px 10px 0; }
1400
-
1401
- /* Multiple Addresses Checkout */
1402
- .checkout-progress { padding:0 90px; margin:0 0 20px; }
1403
- .checkout-progress li { float:left; width:19%; margin:0 3px 0 0; border-top:10px solid #999; padding:2px 0 0; font-weight:bold; text-align:center; color:#abb5ba; }
1404
- .checkout-progress li.active { border-top-color:#e96200; color:#e96200; }
1405
-
1406
- .multiple-checkout h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1407
- .multiple-checkout h3,
1408
- .multiple-checkout h4 { font-size:13px; font-weight:bold; color:#E26703; }
1409
- .multiple-checkout h2 a,
1410
- .multiple-checkout h3 a,
1411
- .multiple-checkout h4 a { font-weight:normal; }
1412
- .multiple-checkout .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1413
- .multiple-checkout .data-table .product-name a { font-weight:bold !important; }
1414
- .multiple-checkout .data-table .item-options { margin:5px 0 0; }
1415
-
1416
- .multiple-checkout .gift-messages { margin:15px 0 0; }
1417
-
1418
- .multiple-checkout .tool-tip { top:50%; margin-top:-120px; right:20px; }
1419
-
1420
- .multiple-checkout .col2-set,
1421
- .multiple-checkout .col3-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1422
- .multiple-checkout .col2-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1423
- .multiple-checkout .col2-set h3.legend { margin:0 0 10px; color:#0a263c; }
1424
- .multiple-checkout .col2-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1425
- .multiple-checkout .box { margin:0 0 15px; }
1426
- .multiple-checkout .box h2 { color:#e26703; }
1427
-
1428
- .multiple-checkout .place-order .please-wait { float:right; padding:27px 7px 0 0; }
1429
- .multiple-checkout .place-order .grand-total { float:right; height:71px; font-size:1.5em; padding:0 0 0 21px; background:url(../images/bkg_grand-total.gif) 0 0 no-repeat; overflow:hidden; }
1430
- .multiple-checkout .place-order .grand-total .inner { float:left; height:57px; padding:14px 21px 0 0; background:url(../images/bkg_grand-total.gif) 100% 0 no-repeat; }
1431
- .multiple-checkout .place-order .grand-total .inner div { display:inline; }
1432
- .multiple-checkout .place-order .grand-total big { display:inline; margin-right:12px; }
1433
- .multiple-checkout .place-order .grand-total .price { color:#E26703; }
1434
- .multiple-checkout .place-order .grand-total button.button span { font-size:16px; }
1435
- .multiple-checkout .place-order .grand-total button.button span span { padding:0 45px 0 36px; }
1436
-
1437
- /* Step 1 */
1438
- .multiple-checkout .title-buttons button.button span { border-color:#406a83; background:#618499; }
1439
- #multiship-addresses-table td { padding:10px; }
1440
- #multiship-addresses-table tfoot td { padding:5px 10px; }
1441
- #multiship-addresses-table tfoot button.button span { border-color:#406a83; background:#618499; }
1442
-
1443
- /* Step 2 */
1444
- .multiple-checkout .gift-messages-form .item .details .form-list { width:100%; overflow:hidden; }
1445
- .multiple-checkout .gift-messages-form .item .details .form-list li { margin-right:-15px; }
1446
- .multiple-checkout .gift-messages-form .item .details .form-list .field { width:230px; }
1447
- .multiple-checkout .gift-messages-form .item .details .form-list .input-box { width:215px; }
1448
- .multiple-checkout .gift-messages-form .item .details .form-list input.input-text { width:209px; }
1449
- .multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box { width:445px; }
1450
- .multiple-checkout .gift-messages-form .item .details .form-list li.wide textarea { width:439px; }
1451
- .checkout-multishipping-shipping .box-sp-methods { border:1px solid #d9d2be; background:#f9f3e3; padding:13px; position:relative; }
1452
- .checkout-multishipping-shipping .box-sp-methods .pointer { position:absolute; top:-20px; right:-40px; width:178px; height:41px; background:url(../images/bkg_sp-methods.gif) 0 0 no-repeat; overflow:hidden; }
1453
-
1454
- /* Step 3 */
1455
- .checkout-multishipping-billing .multiple-checkout { position:relative; }
1456
- /* ======================================================================================= */
1457
-
1458
-
1459
- /* Account Login/Create Pages ============================================================ */
1460
- .account-login .content { min-height:240px; padding:14px 21px; background:#faf7ee url(../images/bkg_login-box.gif) 0 0 repeat-x; border:1px solid #bbb6a5; border-bottom:0; }
1461
- .account-login .content h2 { font-weight:bold; font-size:13px; margin:0 0 14px; padding:0 0 5px 23px; border-bottom:1px solid #ddd; background-position:0 1px; background-repeat:no-repeat; text-transform:uppercase; color:#e76200; }
1462
- .account-login .new-users h2 { background-image:url(../images/i_page1.gif)}
1463
- .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1464
- .account-login .buttons-set { border:1px solid #bbb6a5; border-top:0; margin:0; padding:8px 13px; background:#dee5e8 url(../images/bkg_buttons-set1.gif) 0 0 repeat-x; }
1465
-
1466
- .account-create {}
1467
-
1468
- /* Captcha ================================================================================ */
1469
- .captcha-note { clear:left; padding-top:5px; }
1470
- .captcha-image { float:left; display:inline; margin:0; position:relative; width:258px; }
1471
- .captcha-image .captcha-img { border:1px solid #b6b6b6; vertical-align:bottom; width:100%; }
1472
- .registered-users .captcha-image { margin:0;}
1473
- .captcha-reload { cursor:pointer; position:absolute; top:2px; right:2px;}
1474
- .captcha-reload.refreshing { animation:rotate 1.5s infinite linear; -webkit-animation:rotate 1.5s infinite linear; -moz-animation:rotate 1.5s infinite linear; }
1475
-
1476
- @-webkit-keyframes rotate {
1477
- 0% { -webkit-transform:rotate(0); }
1478
- 0% { -webkit-transform:rotate(-360deg); }
1479
- }
1480
- @-moz-keyframes rotate {
1481
- 0% { -moz-transform:rotate(0); }
1482
- 0% { -moz-transform:rotate(-360deg); }
1483
- }
1484
- @keyframes rotate {
1485
- 0% { transform:rotate(0); }
1486
- 0% { transform:rotate(-360deg); }
1487
- }
1488
-
1489
- /* Remember Me Popup ===================================================================== */
1490
- .window-overlay { background:url(../images/window_overlay.png) repeat; background:rgba(0, 0, 0, 0.35); position:absolute; top:0; left:0; height:100%; width:100%; z-index:990; }
1491
-
1492
- .remember-me label { float:none; margin:0 6px; }
1493
- .remember-me-popup { background:#fff; border:1px solid #ccc; left:50%; top:50%; position:absolute; margin:-85px 0 0 -200px; width:400px; text-align:left; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; -box-shadow:0 0 6px #ccc; z-index:1000; }
1494
- .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:14px; padding:5px 10px; }
1495
- .remember-me-popup .remember-me-popup-head { position:relative; }
1496
- .remember-me-popup .remember-me-popup-head .remember-me-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:7px; right:7px; height:15px; width:15px; text-indent:-9999em; }
1497
- .remember-me-popup .remember-me-popup-body { padding:10px; }
1498
- .remember-me-popup .remember-me-popup-body a { display:inline-block; height:19px; border:1px solid #de5400; background:#f18200; padding:0 8px; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; text-decoration:none; white-space:nowrap; color:#fff; }
1499
- /* Remember Me Popup ===================================================================== */
1500
-
1501
-
1502
- /* My Account ============================================================================= */
1503
- .my-account .title-buttons .link-rss { float:none; margin:0; }
1504
-
1505
- /********** < Dashboard */
1506
- .dashboard .welcome-msg { margin:0 8em 1.5em 0; }
1507
- .dashboard .welcome-msg p { margin:0; }
1508
- .dashboard .col2-set { margin:0 0 15px; }
1509
-
1510
- /* General Box */
1511
- .box-account { background:#fff url(../images/bkg_account_box.gif) 0 0 repeat-x; border:1px solid #ccc; border-color:#ccc #999 #999 #ccc; padding:15px; margin: 0 0 20px; }
1512
- .box-account .box-head { border-bottom:1px solid #d9dde3; margin:0 0 10px; text-align:right; }
1513
- .box-account .box-head h2 { float:left; margin:0; font-size:13px; font-weight:bold; text-transform:uppercase; background-position:0 0; background-repeat:no-repeat; padding-left:21px; color:#e65505; }
1514
-
1515
- .dashboard .box .box-title { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 2px; margin:0 0 8px; text-align:right; }
1516
- .dashboard .box .box-title h3,
1517
- .dashboard .box .box-title h4 { float:left; font-size:13px; font-weight:bold; margin:0; }
1518
-
1519
- /* Block: Recent Orders */
1520
- .dashboard .box-recent .box-head h2 { background-image:url(../images/i_folder-table.gif); }
1521
-
1522
- /* Block: Account Information */
1523
- .dashboard .box-info .box-head h2 { background-image:url(../images/i_ma-info.gif); }
1524
- .dashboard .box-info h4 { font-size:11px; font-weight:bold; text-transform:uppercase; }
1525
-
1526
- /* Block: Reviews */
1527
- .dashboard .box-reviews .box-head h2 { background-image:url(../images/i_ma-reviews.gif); }
1528
- .dashboard .box-reviews .number { float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
1529
- .dashboard .box-reviews .details { margin-left:20px; }
1530
- .dashboard .box-reviews li.item { margin:0 0 7px; }
1531
- .dashboard .box-reviews li.item.last { margin:0; }
1532
- .dashboard .box-reviews .ratings { margin:7px 0 0; }
1533
-
1534
- /* Block: Tags */
1535
- .dashboard .box-tags .box-head h2 { background-image:url(../images/i_ma-tags.gif); }
1536
- .dashboard .box-tags .number { float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
1537
- .dashboard .box-tags .details { margin-left:20px; }
1538
- .dashboard .box-tags li.item { margin:0 0 7px; }
1539
- .dashboard .box-tags li.item.last { margin:0; }
1540
- .dashboard .box-tags .tags strong,
1541
- .dashboard .box-tags .tags ul,
1542
- .dashboard .box-tags .tags ul li { display:inline; }
1543
- /********** Dashboard > */
1544
-
1545
- /* Address Book */
1546
- .addresses-list h2 { font-weight:bold; font-size:13px; color:#e26703; text-transform:uppercase; }
1547
- .addresses-list h3 { font-weight:bold; font-size:13px; }
1548
- .addresses-list address { margin:0 0 3px; }
1549
- .addresses-list p { margin:0; }
1550
- .addresses-list a { font-weight:bold; }
1551
- .addresses-list .link-remove { color:#646464; }
1552
- .addresses-list .separator { margin:0 3px; }
1553
- .addresses-list li.item { background:#fff url(../images/bkg_account_box.gif) 0 0 repeat-x; border:1px solid #ccc; padding:10px 13px; margin:0 0 10px; }
1554
- .addresses-list li.empty { background:none; border:0; padding:0; }
1555
- .addresses-list li.empty p { font-weight:bold; }
1556
- .addresses-list .addresses-additional li.item { background:none; border:0; padding:0; }
1557
-
1558
- /* Order View */
1559
- .order-info { background:#dee5e8; border:1px solid #d0cbc1; padding:4px 8px; margin:0 0 8px; }
1560
- .order-info dt,
1561
- .order-info dd,
1562
- .order-info ul,
1563
- .order-info li { display:inline; }
1564
- .order-info .current { font-weight:bold; }
1565
- .order-info li { margin:0 3px; }
1566
-
1567
- .order-date { margin:10px 0; }
1568
-
1569
- .order-info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
1570
- .order-info-box h2 { font-weight:bold; font-size:13px; }
1571
- .order-info-box .box-payment p { margin:0 0 3px; }
1572
- .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
1573
-
1574
- .order-items { width:100%; overflow-x:auto; }
1575
- .order-items h2,
1576
- .order-items h3 { font-weight:bold; font-size:13px; }
1577
- .order-items .product-name { font-size:1em !important; font-weight:bold !important; }
1578
- .order-items .link-print { color:#1e7ec8; font-weight:normal; }
1579
- .order-items .order-links { text-align:right; }
1580
-
1581
- .order-additional { margin:15px 0; }
1582
- /* Order Gift Message */
1583
- .gift-message dt strong { color:#666; }
1584
- .gift-message dd { font-size:13px; margin:5px 0 0; }
1585
- /* Order Comments */
1586
- .order-about dt { font-weight:bold; }
1587
- .order-about dd { font-size:13px; margin:0 0 7px; }
1588
-
1589
- .tracking-table { margin:0 0 15px; }
1590
- .tracking-table th { font-weight:bold; white-space:nowrap; }
1591
-
1592
- .tracking-table-popup { width:100%; }
1593
- .tracking-table-popup th { font-weight:bold; white-space:nowrap; }
1594
- .tracking-table-popup th,
1595
- .tracking-table-popup td { padding:1px 8px; }
1596
-
1597
- /* Order Print Pages */
1598
- .page-print .print-head { margin:0 0 15px; }
1599
- .page-print .print-head .logo { float:left; }
1600
- .page-print .print-head address { float:left; margin-left:15px; }
1601
- .page-print h1 { font-size:16px; font-weight:bold; }
1602
- .page-print h2,
1603
- .page-print h3 { font-size:13px; font-weight:bold; }
1604
- .page-print h2.h2 { font-size:16px; font-weight:bold; }
1605
- .page-print .order-date { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 10px; margin:0 0 10px; }
1606
- .page-print .col2-set { margin:0 0 10px; }
1607
- /* Price Rewrites */
1608
- .page-print .gift-message-link { display:none; }
1609
- .page-print .price-excl-tax,
1610
- .page-print .price-incl-tax { display:block; white-space:nowrap; }
1611
- .page-print .cart-price,
1612
- .page-print .price-excl-tax .label,
1613
- .page-print .price-incl-tax .label,
1614
- .page-print .price-excl-tax .price,
1615
- .page-print .price-incl-tax .price { display:inline; }
1616
-
1617
- /* My Wishlist */
1618
- .my-wishlist .data-table td { padding:10px; }
1619
- .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 0 5px; }
1620
- .my-wishlist textarea { display:block; width:97%; height:109px; }
1621
- .my-wishlist .buttons-set { margin-top:2em; }
1622
- .my-wishlist .buttons-set button.button { float:none; }
1623
- .my-wishlist .buttons-set .btn-add span,
1624
- .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }
1625
- #wishlist-table .add-to-links { white-space:nowrap; }
1626
-
1627
- /* My Tags */
1628
- .my-tag-edit { float:left; margin:0 0 10px; }
1629
- .my-tag-edit .btn-remove { float:right; margin:4px 0 0 5px; }
1630
- #my-tags-table { clear:both; }
1631
- #my-tags-table td { padding:10px; }
1632
- #my-tags-table .add-to-links { white-space:nowrap; }
1633
-
1634
- /* My Reviews */
1635
- #my-reviews-table td { padding:10px; }
1636
-
1637
- .product-review .product-img-box { float:left; width:140px; }
1638
- .product-review .product-img-box .product-image { display:block; width:125px; height:125px; }
1639
- .product-review .product-img-box .label { font-size:11px; margin:0 0 3px; }
1640
- .product-review .product-img-box .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1641
- .product-review .product-details { margin-left:150px; }
1642
- .product-review .product-name { font-size:16px; font-weight:bold; margin:0 0 10px; }
1643
- .product-review h3 { font-size:12px; margin:0 0 3px; color:#2f2f2f; }
1644
- .product-review .ratings-table { margin:0 0 10px; }
1645
- .product-review dt { font-weight:bold; }
1646
- .product-review dd { font-size:13px; margin:5px 0 0; }
1647
-
1648
- /* Billing Agreements */
1649
- .billing-agreements .info-box{ margin:15px 0; }
1650
- .billing-agreements .form-list li select { float:left; }
1651
- .billing-agreements .form-list li button.button { float:left; margin-left:10px; }
1652
- .billing-agreements .table-caption { font-weight:bold; font-size:13px; }
1653
- /* ======================================================================================= */
1654
-
1655
-
1656
- /* MAP Popup============================================================================== */
1657
- .cart-msrp-totals { color:red; font-size:12px !important; font-weight:bold; margin:10px 10px 0; padding:10px; text-align:right; text-transform:uppercase;}
1658
- .map-cart-sidebar-total { color:red; display:block; font-size:10px; font-weight:bold; text-align:left; padding:2px 5px; text-shadow:0 1px 0 #fff; }
1659
-
1660
- .map-popup { background:#fff; border:1px solid #aaa; margin:12px 0 0; position:absolute; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; box-shadow:0 0 6px #ccc; text-align:left; width:300px; z-index:100; }
1661
- .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:5px 30px 5px 10px; width:260px; }
1662
- .map-popup-heading h2 { font-size:16px; margin:0; text-shadow:0 1px 0 #f6f6f6; overflow:hidden; white-space:nowrap; word-wrap:break-word; text-align:left; text-overflow:ellipsis; }
1663
- .map-popup-arrow { background:url(../images/map_popup_arrow.gif) no-repeat; position:absolute; left:50%; top:-10px; height:10px; width:19px; }
1664
- .map-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:8px; right:10px; height:15px; width:15px; text-indent:-9999em; -moz-box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; box-shadow:0 0 3px #999; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
1665
- .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:left; width:280px; }
1666
- .map-popup-checkout { display:inline; float:right; text-align:right; }
1667
- .map-popup-checkout span { display:block; padding-right:30px; }
1668
- .map-popup-checkout .paypal-logo { margin:0 0 5px; }
1669
- .map-popup-price .price-box,
1670
- .map-popup-price .price-box .special-price { margin:0; padding:0; }
1671
- .map-popup-price { margin:5px 0 0; }
1672
- .map-popup-text { clear:right; margin:0 10px; padding:10px 0; text-align:left; word-wrap:break-word; }
1673
- .map-popup-only-text { border-top:1px solid #ddd; }
1674
- /* ======================================================================================= */
1675
-
1676
-
1677
- /* Footer ================================================================================ */
1678
- .footer-container { }
1679
- .footer { }
1680
- .footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
1681
- .footer .store-switcher label { font-weight:bold; vertical-align:middle; }
1682
- .footer .store-switcher select { padding:0; vertical-align:middle; }
1683
- .footer a { color:#fff; text-decoration:none; }
1684
- .footer a:hover { text-decoration:underline; }
1685
- .footer .bugs { margin:13px 0 0; color:#ecf3f6; }
1686
- .footer .bugs a { color:#ecf3f6; text-decoration:underline; }
1687
- .footer .bugs a:hover { text-decoration:none; }
1688
- .footer address { margin:0 0 20px; color:#ecf3f6; }
1689
- .footer address a { color:#ecf3f6; text-decoration:underline; }
1690
- .footer address a:hover { text-decoration:none; }
1691
- .footer ul { display:inline; }
1692
- .footer ul.links { display:block; }
1693
- .footer li { display:inline; background:url(../images/bkg_pipe2.gif) 100% 60% no-repeat; padding:0 7px 0 4px; }
1694
- .footer li.last { background:none !important; padding-right:0 !important; }
1695
- .footer-container .bottom-container { margin:0 0 5px; }
1696
- /* ======================================================================================= */
1697
-
1698
- /* Sample Data============================================================================ */
1699
- .home-callout { margin-bottom:12px; }
1700
- .home-callout img { display:block }
1701
- .home-spot { float:left; width:470px; margin-left:20px; }
1702
- .best-selling h3 { margin:12px 0 6px 0; color:#e25203; font-size:1.2em; }
1703
- .best-selling table { border-top:1px solid #ccc; }
1704
- .best-selling tr.odd { background:#eee url(../images/best_selling_tr_odd_bg.gif) 0 100% repeat-x; }
1705
- .best-selling tr.even { background:#fff url(../images/best_selling_tr_even_bg.gif) 0 100% repeat-x; }
1706
- .best-selling td { width:50%; border-bottom:1px solid #ccc; padding:8px 10px 8px 8px; font-size:11px; }
1707
- .best-selling .product-img { float:left; border:2px solid #dcdcdc; }
1708
- .best-selling .product-description { margin-left:107px; line-height:1.3em; }
1709
- .best-selling a.product-name,
1710
- .home-spot .best-selling a.product-name:hover { color:#203548; }
1711
- /* ======================================================================================= */
1712
-
1713
-
1714
- /* Clears ================================================================================ */
1715
- .clearer:after,
1716
- .header-container:after,
1717
- .header-container .top-container:after,
1718
- .header:after,
1719
- .header .quick-access:after,
1720
- #nav:after,
1721
- .main:after,
1722
- .footer:after,
1723
- .footer-container .bottom-container:after,
1724
- .col-main:after,
1725
- .col2-set:after,
1726
- .col3-set:after,
1727
- .col3-layout .product-options-bottom .price-box:after,
1728
- .col4-set:after,
1729
- .search-autocomplete li:after,
1730
- .block .block-content:after,
1731
- .block .actions:after,
1732
- .block li.item:after,
1733
- .block-poll li:after,
1734
- .block-layered-nav .currently li:after,
1735
- .page-title:after,
1736
- .products-grid:after,
1737
- .products-list li.item:after,
1738
- .box-account .box-head:after,
1739
- .dashboard .box .box-title:after,
1740
- .box-reviews li.item:after,
1741
- .box-tags li.item:after,
1742
- .pager:after,
1743
- .sorter:after,
1744
- .ratings:after,
1745
- .add-to-box:after,
1746
- .add-to-cart:after,
1747
- .product-essential:after,
1748
- .product-collateral:after,
1749
- .product-view .product-img-box .more-views ul:after,
1750
- .product-view .box-tags .form-add:after,
1751
- .product-view .product-shop .short-description:after,
1752
- .product-view .box-description:after,
1753
- .product-options .options-list li:after,
1754
- .product-options-bottom:after,
1755
- .product-review:after,
1756
- .cart:after,
1757
- .cart-collaterals:after,
1758
- .cart .crosssell li.item:after,
1759
- .opc .step-title:after,
1760
- .checkout-progress:after,
1761
- .multiple-checkout .place-order:after,
1762
- .group-select li:after,
1763
- .form-list li:after,
1764
- .form-list .field:after,
1765
- .buttons-set:after,
1766
- .page-print .print-head:after,
1767
- .advanced-search-summary:after,
1768
- .gift-messages-form .item:after,
1769
- .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1770
- /* ======================================================================================= */
1771
-
1772
- .guest-select {width:305px !important;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001/images/button.gif DELETED
Binary file
skin/frontend/default/f001_green/css/custom.css DELETED
@@ -1,329 +0,0 @@
1
- /*
2
- * body : #58822f;
3
- * .block-subscribe : #58822f;
4
- * .footer .informational li ul li a : #dfe7d8;
5
- * .footer .informational h6 : #dfe7d8;
6
- * .footer .legality a : #c7f19e;
7
- * #nav a : #D1E1C6;
8
- * .header-cart .title : #C1E2A0;
9
- * .header .form-language label : #C1E2A0;
10
- *
11
- */
12
-
13
- body{background:url("../images/body_bg.gif") repeat-x #58822f; color:#2F2F2F}
14
-
15
- h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
16
- a {color:#1E7EC8; text-decoration:underline; }
17
-
18
- .header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
19
- .quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
20
-
21
- .header {z-index: 100;}
22
- .header .logo { margin: 0; }
23
- .shop-access{float:right; margin:0; font-size:1em;}
24
- .shop-access a{color:#7386BE; text-decoration:none}
25
- .shop-access a:hover { text-decoration: underline; }
26
- .header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
27
- .header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
28
- .main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
29
- .header .form-search label{display:none}
30
- .header .form-search button.button{height:27px;width:25px;}
31
- .header .form-search {background:url("../images/mini_search_bg.gif") no-repeat scroll right top transparent;}
32
- .header .form-search button.button span { background: none; }
33
-
34
- .header .form-language label { color:#C1E2A0; }
35
-
36
- .page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
37
- .page-title h1 {color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
38
-
39
- .block-content a{}
40
- .block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #58822f; border:medium none; color:#FFF; min-height:124px}
41
- .block-subscribe .block-title strong{background:none}
42
- .block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
43
- .block-subscribe label{font-weight:bold; color:#FFF}
44
- .block-subscribe .actions{margin-top:15px}
45
- .block-cart .subtotal{background:#eee}
46
-
47
- .block-tags .block-content ul { border: none; }
48
-
49
- .block-layered-nav{}
50
- .block-layered-nav .block-title{ padding:0px; }
51
-
52
- .block-layered-nav{padding:5px 10px}
53
- .block-layered-nav .block-subtitle,
54
- .block-layered-nav .block-content{background:none; border:0px solid #ddd}
55
- .block-layered-nav dt{padding:7px 10px 0 7px}
56
- .block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
57
- .block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
58
- .block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
59
- .block-layered-nav dd li a:hover { text-decoration: underline; }
60
-
61
- h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
62
- .products-grid h5 a{color:#007ed3; text-decoration:none}
63
- .products-grid .ratings .amount{display:none}
64
- .products-grid .actions{}
65
- /*************************Buttons*************************/
66
- button.button{background:none; border:0px solid #000}
67
-
68
- .button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
69
- .button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
70
- .button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
71
- .button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
72
-
73
- /**ALT BTNS**/
74
- .grey-box .button span,
75
- .cart-table .btn-continue span,
76
- .cart-table .btn-update span,
77
- .cart-table .btn-empty span,
78
- .cart .discount button span,
79
- .cart .shipping button span,
80
- .block-compare button.button span,
81
- .block-poll button.button span,
82
- .block-login .actions button.button span,
83
- .product-view .box-tags .form-add button.button span,
84
- .multiple-checkout .title-buttons button.button span,
85
- #multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
86
- .grey-box .button:hover span,
87
- .cart-table .btn-continue:hover span,
88
- .cart-table .btn-update:hover span,
89
- .cart-table .btn-empty:hover span,
90
- .cart .discount button:hover span,
91
- .cart .shipping button:hover span,
92
- .block-compare button.button:hover span,
93
- .block-poll button.button:hover span,
94
- .block-login .actions button.button:hover span,
95
- .product-view .box-tags .form-add button.button:hover span,
96
- .multiple-checkout .title-buttons button.button:hover span,
97
- #multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
98
- .grey-box .button span span,
99
- .cart-table .btn-continue span span,
100
- .cart-table .btn-update span span,
101
- .cart-table .btn-empty span span,
102
- .cart .discount button span span,
103
- .cart .shipping button span span,
104
- .block-compare button.button span span,
105
- .block-poll button.button span span,
106
- .block-login .actions button.button span span,
107
- .product-view .box-tags .form-add button.button span span,
108
- .multiple-checkout .title-buttons button.button span span,
109
- #multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
110
- .grey-box .button:hover span span,
111
- .cart-table .btn-continue:hover span span,
112
- .cart-table .btn-update:hover span span,
113
- .cart-table .btn-empty:hover span span,
114
- .cart .discount button:hover span span,
115
- .cart .shipping button:hover span span,
116
- .block-compare button.button:hover span span,
117
- .block-poll button.button:hover span span,
118
- .block-login .actions button.button:hover span span,
119
- .product-view .box-tags .form-add button.button:hover span span,
120
- .multiple-checkout .title-buttons button.button:hover span span,
121
- #multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
122
-
123
- .block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
124
- .block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
125
-
126
- .block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
127
- .block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
128
-
129
- button.btn-checkout span span{padding:0 16px}
130
- /****************************End Buttons***************************/
131
- .footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
132
- .footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
133
-
134
-
135
- /********** < Navigation */
136
- #nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
137
-
138
- /* All Levels */ /* Style consistent throughout all nav levels */
139
- #nav li { position:relative; text-align:left; }
140
- #nav li.over { z-index:998; }
141
- #nav a,
142
- #nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
143
- #nav span { display:block; cursor:pointer; white-space:nowrap; }
144
- #nav li ul span {white-space:normal; }
145
-
146
- /* 0 Level */
147
- #nav li { float:left; }
148
- #nav a{float:left; color:#D1E1C6; font-weight:bold}
149
- #nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
150
- #nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
151
- /*#nav li.first span{padding-left:18px}*/
152
- #nav li.over a,
153
- #nav a:hover{color:#fff}
154
-
155
- /* 1st Level */
156
- #nav ul li,
157
- #nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
158
- #nav li.active li a,
159
- #nav ul li.active a{background:#fff}
160
- /*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
161
- */
162
- #nav ul li.last { background:#ecf3f6; padding-bottom:0; }
163
-
164
- #nav ul a,
165
- #nav ul a:hover { float:none; padding:0; background:none; }
166
- #nav ul li a { font-weight:normal !important; }
167
-
168
- /* 2nd Level */
169
- #nav ul,
170
- #nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
171
- #nav div ul { position:static; width:auto; border:none; }
172
- #nav ul span {background:none}
173
-
174
- /* 3rd+ Level */
175
- #nav ul ul,
176
- #nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
177
-
178
- #nav ul li a {background:#fff}
179
- #nav ul li a:hover {background:#f4f4f4}
180
- #nav ul li.over > a {background:#f4f4f4}
181
- #nav ul li a,
182
- #nav ul li a:hover {color:#2f2f2f !important}
183
- #nav ul span,
184
- #nav ul li.last li span {padding:4px 15px 5px 15px}
185
-
186
- /* Show menu */
187
- #nav li ul.shown-sub,
188
- #nav li div.shown-sub { left:-1px; z-index:999; }
189
- #nav li .shown-sub ul.shown-sub,
190
- #nav li .shown-sub li div.shown-sub { left:100px; }
191
- /********** Navigation > */
192
- /* ======================================================================================= */
193
-
194
- .cms-home .nav-home a,
195
- .contacts-index-index .nav-contacts a,
196
- .cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
197
- .cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
198
-
199
- .f-right{float:right}
200
- .f-left{float:left}
201
- .a-right{text-align:right}
202
- .a-left{text-align:left}
203
- .a-center{text-align:center}
204
-
205
- .header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
206
-
207
- .header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
208
- .header-cart .head{margin:0; overflow:hidden; cursor:pointer}
209
- .header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c1e2a0; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
210
- .header-cart .title a{color:#fff}
211
- .header-cart .content{background:#f3f8fb; padding:0}
212
- .header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
213
- .header-cart .content li a:hover{color:#333}
214
- .header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
215
- .header-cart .title a{color:#fff}
216
-
217
- .slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
218
-
219
- #nav-sidebox{font-size:1.1em}
220
- #nav-sidebox a{text-decoration:none; color:#000}
221
- #nav-sidebox a:hover{text-decoration:underline}
222
- #nav-sidebox li{line-height:22px; font-weight:bold}
223
- #nav-sidebox li ul li{font-weight:normal; margin:0}
224
- #nav-sidebox ul{}
225
- #nav-sidebox ul li{padding-left:10px}
226
- #nav-sidebox ul li ul{display:none}
227
-
228
- .featured-container{margin-bottom:20px}
229
- .featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
230
- .featured-top{background:url(../images/container.png) no-repeat -1957px 0}
231
-
232
- .mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
233
- .mini-newsletter label{color:#fff}
234
- .mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
235
- .mini-newsletter .input-text{border:none; padding:4px 2px}
236
- .mini-newsletter .form-button-alt{background-position:100% -256px}
237
- .mini-newsletter .form-button-alt span{background-position:0 -228px}
238
- .mini-newsletter .form-button-alt:hover{background-position:100% -314px}
239
- .mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
240
- .mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
241
-
242
- .recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
243
-
244
- .recently .last{border-bottom:0px solid #FFF}
245
- .recently .subtitle{color:#459B06; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
246
- .recently li.item{width:167px; float:left; padding:10px 10px 40px;}
247
- .recently li.item .price-box{}
248
- .recently li.item .actions { position: absolute; bottom: 12px; }
249
-
250
- .category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
251
- .product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
252
- h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
253
- a.product-name:hover { text-decoration: underline; }
254
-
255
- .regular-price .price{color:#777; font-size:13px; font-weight:bold}
256
-
257
- .footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
258
- .footer .informational li{float:left; margin:0 40px; display: inline;}
259
- .footer .informational li ul li{float:none; margin:0; display: block;}
260
- .footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#dfe7d8;; font-size:0.9em}
261
- .footer .informational li ul li a:hover { text-decoration: underline; }
262
- .footer .informational h6{margin-bottom:0.4em; color:#dfe7d8;; font-size:1.1em}
263
-
264
- .footer .contacts{clear:both; font-size:.9em; color:#fff; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
265
-
266
- .footer .payments{float:right; margin:5px 0 0}
267
- .footer .legality{text-align:center; color:#FFF; font-size: .9em}
268
- .footer .legality a{color:#c7f19e; text-decoration: none;}
269
-
270
- /* glider */
271
- #slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
272
- div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
273
- div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
274
- div.scroller img{ border:none}
275
- div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
276
- div.scroller div.content{ width:10000px; padding:0px}
277
- .content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
278
-
279
- .content .sliderdescription p{line-height:20px; text-align:center}
280
- div.sliderdescription:hover{background:#fff}
281
- .content a{text-decoration:none; color:#5a5a5a}
282
- .content a:hover{text-decoration:underline}
283
-
284
- .slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
285
- .slidercontrol{list-style:none; padding:0px; margin:0px}
286
-
287
- .slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
288
-
289
- .slidercontrol a:hover,
290
- .slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
291
-
292
- /* slider */
293
- .featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
294
- .featured-products h4{margin-right:10px; color:#459b06; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
295
- .featured-products .head{text-align:left; margin:0; padding:21px 0}
296
- .featured-products #move-left,
297
- .featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
298
- .featured-products #move-right{background-position:-335px -450px; right:940px !important; }
299
- .featured-products #move-left.disabled,
300
- .featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
301
- .slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
302
- .slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
303
- .slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
304
- .slider-wrapper .list-featured li.last{ margin:0px}
305
- .slider-wrapper .list-featured .product-image{ text-align:center}
306
- .slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
307
- .slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
308
-
309
- #quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
310
- #quick-window .product-img-box{width:230px; float:left}
311
- #quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
312
- #quickview-header{background-color:#888; height:26px; width:650px}
313
-
314
- #ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
315
- #ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
316
- #quick-window .product-shop{float:right; text-align:left; width:385px}
317
- #quick-window .product-essential{padding:25px 10px 25px 10px}
318
- .catalog-listing .product-image{position:relative}
319
- .catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
320
-
321
- a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:1px 5px; text-align: center;}
322
- a.ajax:hover{text-decoration:none}
323
-
324
-
325
- /****Update styles ****/
326
-
327
- .footer li {background: none; display: block; padding: 0;}
328
-
329
- .product-collateral { background: #faf7ee; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_green/css/ie8.css DELETED
@@ -1,16 +0,0 @@
1
- .form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
2
- .form-button:hover { background-position: 100% -84px; }
3
- .form-button-alt { background-position: 100% -142px; }
4
- .form-button-alt:hover { background-position: 100% -200px; }
5
- .form-button span, .form-button-alt span { background-position: 0 0; }
6
- .form-button:hover span { background-position: 0 -56px; }
7
- .form-button-alt span { background-position: 0 -113px; }
8
- .form-button-alt:hover span { background-position: 0 -171px; }
9
-
10
- .mini-newsletter .form-button-alt { background-position: 100% -256px; }
11
- .mini-newsletter .form-button-alt span { background-position: 0 -227px; }
12
- .mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
13
- .mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
14
-
15
- /*Search Autocomplete Misplase fix for IE8*/
16
- #search_autocomplete { left: 25px !important; top: 27px !important;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_green/css/styles-ie.css DELETED
@@ -1,193 +0,0 @@
1
- /**
2
- * Magento
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the Academic Free License (AFL 3.0)
7
- * that is bundled with this package in the file LICENSE_AFL.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://opensource.org/licenses/afl-3.0.php
10
- * If you did not receive a copy of the license and are unable to
11
- * obtain it through the world-wide-web, please send an email
12
- * to license@magentocommerce.com so we can send you a copy immediately.
13
- *
14
- * DISCLAIMER
15
- *
16
- * Do not edit or add to this file if you wish to upgrade Magento to newer
17
- * versions in the future. If you wish to customize Magento for your
18
- * needs please refer to http://www.magentocommerce.com for more information.
19
- *
20
- * @category design
21
- * @package default_default
22
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
23
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
24
- */
25
-
26
- /* IE 6 only */
27
- * html .validation-advice { height:13px; }
28
- * html .error-msg,
29
- * html .success-msg,
30
- * html .note-msg,
31
- * html .notice-msg { height:24px; }
32
- * html .main { height:400px; }
33
- * html .account-login .content { height:240px; }
34
- .block li.item,
35
- .block-poll li,
36
- .opc li.section { vertical-align:top; }
37
- * html .window-overlay { background:#ccc; filter:alpha(opacity=50); }
38
-
39
- /* Doubled Margin Fixes */
40
- .product-view .product-img-box .more-views li,
41
- .product-view .box-tags .form-add .input-box,
42
- .sp-methods select.month { display:inline; }
43
-
44
- /********** < Navigation styles */
45
- #nav li,
46
- #nav li a { zoom:1; }
47
- #nav li { vertical-align:top; }
48
- /********** < Navigation styles */
49
-
50
- select { margin-bottom:1px; }
51
- input.radio { width:13px; height:13px; }
52
- input.checkbox { width:13px; height:13px; }
53
- button.button { height:21px; }
54
- button.button span { position:relative; }
55
- button.btn-checkout { height:40px; }
56
- #opc-review .sp-methods .input-box { float:left; }
57
- .form-list label { position:relative; z-index:0; }
58
- .form-list label.required em { position:absolute; top:0; right:-8px; }
59
-
60
- table { scrollbar-face-color:expression(runtimeStyle.scrollbarFaceColor = '#fff', cellSpacing = 0); }
61
-
62
- .product-view .product-img-box .zoom.disabled { filter:alpha(opacity=30); }
63
-
64
- .gift-messages-form { position:relative; zoom:1; }
65
-
66
- .tool-tip .btn-close a { margin:0; }
67
-
68
- .product-view .box-tags .product-tags li,
69
- .footer li { padding:0 4px 0 7px; }
70
-
71
- .product-options dd .time-picker select { margin:0; padding:0; }
72
-
73
- /* Clearer */
74
- .clearer { display:block; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
75
-
76
- /* Clears and hasLayout fixes */
77
- .header-container,
78
- .header-container .top-container,
79
- .header,
80
- .header .quick-access,
81
- #nav,
82
- .main,
83
- .footer,
84
- .footer-container .bottom-container,
85
- .col-main,
86
- .col2-set,
87
- .col3-set,
88
- .col3-layout .product-options-bottom .price-box,
89
- .col4-set,
90
- .messages li,
91
- .search-autocomplete li,
92
- .block,
93
- .block .block-content,
94
- .block .actions,
95
- .block li.item,
96
- .block-poll li,
97
- .block-poll .label,
98
- .block-layered-nav .currently li,
99
- .block-account .block-content li a,
100
- .mini-products-list .product-details,
101
- .page-title,
102
- .rss-title h1,
103
- .products-grid,
104
- .products-list li.item,
105
- .box-account .box-head,
106
- .dashboard .box .box-title,
107
- .box-reviews li.item,
108
- .box-tags li.item,
109
- .pager,
110
- .sorter,
111
- .ratings,
112
- .add-to-box,
113
- .add-to-cart,
114
- .product-essential,
115
- .product-collateral,
116
- .product-view .product-img-box .more-views ul,
117
- .product-view .box-tags .form-add,
118
- .product-view .product-shop .short-description,
119
- .product-view .box-description,
120
- .product-options .options-list li,
121
- .product-options,
122
- .product-options-bottom,
123
- .truncated,
124
- .truncated .truncated_full_value,
125
- .product-review,
126
- .cart,
127
- .cart-collaterals,
128
- .cart .crosssell li.item,
129
- .cart .discount,
130
- .opc .step-title,
131
- .opc .step,
132
- .multiple-checkout,
133
- .sp-methods,
134
- .checkout-progress,
135
- .multiple-checkout .place-order,
136
- .form-list li,
137
- .form-list .field,
138
- .group-select li,
139
- .buttons-set,
140
- .page-print .print-head,
141
- .cart-tax-total,
142
- .advanced-search-summary,
143
- .advanced-search-summary p,
144
- .gift-messages-form .item,
145
- .send-friend .form-list li p,
146
- .centinel .authentication { zoom:1; }
147
-
148
- /* Hover Fix */
149
- iframe.hover-fix { position:absolute; left:-1px; top:-1px; z-index:-1; background:transparent; filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0); }
150
-
151
-
152
- #nav ul li { vertical-align:top; }
153
-
154
- .one-page-checkout li.section { vertical-align:top; }
155
-
156
- .product-options dd ul.options-list input.form-radio { margin-top:4px; }
157
- .multi-address-checkout-box .box { zoom:1; }
158
- .multi-address-checkout-box .legend { zoom:1; position:relative; margin-left:8px; }
159
- .quick-access li { padding-right:4px; padding-left:6px;}
160
- .home-spot { display:inline; }
161
- .mini-related-items .product-details { margin-left:80px; }
162
- .mini-related-items .product-images input { zoom:1; position:relative; margin:-4px 2px 0 -4px; }
163
- .mini-related-items .product-images img { float:left; }
164
-
165
- /* Clearer */
166
- .clear { clear:both; font-size:0; line-height:0; height:0; visibility:hidden; overflow:hidden; }
167
-
168
- button.button { overflow: visible; } /* Extra-padding FIX */
169
-
170
- .button span { background-position: 100% -27px; }
171
- .button:hover span { background-position: 100% -83px; }
172
-
173
-
174
- .block-subscribe button.button span { background:url("../images/button.gif") no-repeat 100% -256px; }
175
- .block-subscribe button.button:hover span { background:url("../images/button.gif") no-repeat 100% -314px; }
176
-
177
- button.btn-checkout span { background:url("../images/button.gif") no-repeat 100% -28px; }
178
- button.btn-checkout:hover span { background:url("../images/button.gif") no-repeat 100% -84px; }
179
- button.btn-checkout span span{ background:url("../images/button.gif") no-repeat 0 0; }
180
- button.btn-checkout:hover span span{ background:url("../images/button.gif") no-repeat 0 -56px; }
181
-
182
- .footer .informational li { margin: 0 30px;}
183
-
184
- /*ie6 fixes*/
185
- * html .header { background: url(../images/ie/container.gif) no-repeat -1px 0; }
186
- * html .header-nav-container { }
187
- * html .nav-container { background: url(../images/ie/container.gif) repeat-y -980px 0; }
188
- * html .main-container { background: url(../images/ie/container.gif) no-repeat 0 100%; }
189
- * html .main { background: url(../images/ie/container.gif) repeat-y -979px 0; }
190
-
191
- .featured-center { background: url(../images/ie/container.gif) no-repeat -1957px 100% !important; zoom: 1; }
192
- .featured-top { background: url(../images/ie/container.gif) no-repeat -1957px 0 !important; }
193
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_green/css/styles.css DELETED
@@ -1,1772 +0,0 @@
1
- /**
2
- * Magento
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the Academic Free License (AFL 3.0)
7
- * that is bundled with this package in the file LICENSE_AFL.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://opensource.org/licenses/afl-3.0.php
10
- * If you did not receive a copy of the license and are unable to
11
- * obtain it through the world-wide-web, please send an email
12
- * to license@magentocommerce.com so we can send you a copy immediately.
13
- *
14
- * DISCLAIMER
15
- *
16
- * Do not edit or add to this file if you wish to upgrade Magento to newer
17
- * versions in the future. If you wish to customize Magento for your
18
- * needs please refer to http://www.magentocommerce.com for more information.
19
- *
20
- * @category design
21
- * @package default_default
22
- * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
23
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
24
- */
25
-
26
- /* Reset ================================================================================= */
27
- * { margin:0; padding:0; }
28
-
29
- body { font:12px/1.55 Arial, Helvetica, sans-serif; color:#2f2f2f; text-align:center; }
30
-
31
- img { border:0; vertical-align:top; }
32
-
33
- a { text-decoration:underline; }
34
- a:hover { text-decoration:none; }
35
- :focus { outline:0; }
36
-
37
- /* Headings */
38
- h1,h2,h3,
39
- h4,h5,h6 { margin:0 0 5px; line-height:1.35; color:#0a263c; }
40
- h1 { font-size:20px; font-weight:normal; }
41
- h2 { font-size:18px; font-weight:normal; }
42
- h3 { font-size:16px; font-weight:bold; }
43
- h4 { font-size:14px; font-weight:bold; }
44
- h5 { font-size:1.05em; font-weight:bold; }
45
- h6 { font-size:11px; font-weight:bold; }
46
-
47
- /* Forms */
48
- form { display:inline; }
49
- fieldset { border:0; }
50
- legend { display:none; }
51
-
52
- /* Table */
53
- table { border:0; /*border-collapse:collapse;*/ border-spacing:0; empty-cells:show; font-size:100%; }
54
- caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }
55
-
56
- /* Content */
57
- p { margin:0 0 10px; }
58
- strong { font-weight:bold; }
59
- address { font-style:normal; line-height:1.35; }
60
- cite { font-style:normal; }
61
- q,
62
- blockquote { quotes:none; }
63
- q:before,
64
- q:after { content:''; }
65
- small,big { font-size:1em; }
66
- /*sup { font-size:1em; vertical-align:top; }*/
67
-
68
- /* Lists */
69
- ul,ol { list-style:none; }
70
-
71
- /* Tools */
72
- .hidden { display:block !important; border:0 !important; margin:0 !important; padding:0 !important; font-size:0 !important; line-height:0 !important; width:0 !important; height:0 !important; overflow:hidden !important; }
73
- .nobr { white-space:nowrap !important; }
74
- .wrap { white-space:normal !important; }
75
- .a-left { text-align:left !important; }
76
- .a-center { text-align:center !important; }
77
- .a-right { text-align:right !important; }
78
- .v-top { vertical-align:top; }
79
- .v-middle { vertical-align:middle; }
80
- .f-left,
81
- .left { float:left !important; }
82
- .f-right,
83
- .right { float:right !important; }
84
- .f-none { float:none !important; }
85
- .f-fix { float:left; width:100%; }
86
- .no-display { display:none; }
87
- .no-margin { margin:0 !important; }
88
- .no-padding { padding:0 !important; }
89
- .no-bg { background:none !important; }
90
- /* ======================================================================================= */
91
-
92
-
93
- /* Layout ================================================================================ */
94
- .wrapper { min-width:960px; }
95
- .page {}
96
- .page-print { background:#fff; padding:25px 30px; text-align:left; }
97
- .page-empty { background:#fff; padding:20px; text-align:left; }
98
- .page-popup { background:#fff; padding:25px 30px; text-align:left; }
99
- .main-container { }
100
- .main { width:950px; margin:0 auto; min-height:400px; padding: 9px 15px 5px;
101
- text-align:left; background:url("../images/container.png") repeat-y -979px 0; }
102
-
103
- /* Base Columns */
104
- .col-left { float:left; width:195px; padding:0 0 1px; }
105
- .col-main { float:left; width:750px; padding:0 0 1px; }
106
- .col-right { float:right; width:195px; padding:0 0 1px; }
107
-
108
- /* 1 Column Layout */
109
- .col1-layout .col-main { float:none; width:auto; }
110
-
111
- /* 2 Columns Layout */
112
- .col2-left-layout .col-main { float:right; }
113
- .col2-right-layout .col-main {}
114
-
115
- /* 3 Columns Layout */
116
- .col3-layout .col-main { margin-left:5px; width:530px; }
117
- .col3-layout .col-wrapper { float:left; width:740px; }
118
- .col3-layout .col-wrapper .col-main { float:right; }
119
-
120
- /* Content Columns */
121
- .col2-set .col-1 { float:left; width:48.5%; }
122
- .col2-set .col-2 { float:right; width:48.5%; }
123
- .col2-set .col-narrow { width:32%; }
124
- .col2-set .col-wide { width:65%; }
125
-
126
- .col3-set .col-1 { float:left; width:32%; }
127
- .col3-set .col-2 { float:left; width:32%; margin-left:2%; }
128
- .col3-set .col-3 { float:right; width:32%; }
129
-
130
- .col4-set .col-1 { float:left; width:23.5%; }
131
- .col4-set .col-2 { float:left; width:23.5%; margin:0 2%; }
132
- .col4-set .col-3 { float:left; width:23.5%; }
133
- .col4-set .col-4 { float:right; width:23.5%; }
134
- /* ======================================================================================= */
135
-
136
-
137
- /* Global Styles ========================================================================= */
138
- /* Form Elements */
139
- input,select,textarea,button { font:12px/15px Arial, Helvetica, sans-serif; vertical-align:middle; color:#2f2f2f; }
140
- input.input-text,select,textarea { background:#fff; border:1px solid #b6b6b6; }
141
- input.input-text,textarea { padding:2px; }
142
- select { padding:1px; }
143
- select option { padding-right:10px; }
144
- select.multiselect option { border-bottom:1px solid #b6b6b6; padding:2px 5px; }
145
- select.multiselect option:last-child { border-bottom:0; }
146
- textarea { overflow:auto; }
147
- input.radio { margin-right:3px; }
148
- input.checkbox { margin-right:3px; }
149
- input.qty { width:2.5em !important; }
150
- button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
151
- button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
152
- button.button {cursor: pointer;}
153
-
154
- button.button span { display:block; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; white-space:nowrap; color:#fff; }
155
- button.button span span { border:0; }
156
-
157
- button.disabled span { border-color:#bbb !important; background:#bbb !important; }
158
-
159
- button.btn-checkout span { height:26px; border:0; font:bold 15px/40px Arial, Helvetica, sans-serif; color:#fff; }
160
- button.btn-checkout span span { padding:0 25px 0 16px; }
161
- button.btn-checkout.no-checkout span { color:#b8baba; }
162
- button.btn-checkout.no-checkout span span { }
163
-
164
- p.control input.checkbox,
165
- p.control input.radio { margin-right:6px; }
166
- /* Form Highlight */
167
- input.input-text:focus,select:focus,textarea:focus { background-color:#edf7fd; }
168
- /*.highlight { background:#efefef; }*/
169
-
170
- /* Form lists */
171
- /* Grouped fields */
172
- /*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/
173
- .form-list li { margin:0 0 8px; }
174
- .form-list label { float:left; color:#666; font-weight:bold; position:relative; z-index:0; }
175
- .form-list label.required {}
176
- .form-list label.required em { float:right; font-style:normal; color:#eb340a; position:absolute; top:0; right:-8px; }
177
- .form-list li.control label { float:none; }
178
- .form-list li.control input.radio,
179
- .form-list li.control input.checkbox { margin-right:6px; }
180
- .form-list li.control .input-box { clear:none; display:inline; width:auto; }
181
- /*.form-list li.fields { margin-right:-15px; }*/
182
- .form-list .input-box { display:block; clear:both; width:260px; }
183
- .form-list .field { float:left; width:275px; }
184
- .form-list input.input-text { width:254px; }
185
- .form-list textarea { width:254px; height:10em; }
186
- .form-list select { width:260px; }
187
- .form-list li.wide .input-box { width:535px; }
188
- .form-list li.wide input.input-text { width:529px; }
189
- .form-list li.wide textarea { width:529px; }
190
- .form-list li.wide select { width:535px; }
191
- .form-list li.additional-row { border-top:1px solid #ccc; margin-top:10px; padding-top:7px; }
192
- .form-list li.additional-row .btn-remove { float:right; margin:5px 0 0; }
193
- .form-list .input-range input.input-text { width:74px; }
194
-
195
- .form-list-narrow li { margin-bottom:0; }
196
- .form-list-narrow li .input-box { margin-bottom:6px; }
197
- .form-list-narrow li.wide .input-box { width:260px; }
198
- .form-list-narrow li.wide input.input-text,
199
- .form-list-narrow li.wide textarea { width:254px }
200
- .form-list-narrow li.wide select { width:260px; }
201
-
202
- /* Customer */
203
- .form-list .customer-name-prefix .input-box,
204
- .form-list .customer-name-suffix .input-box,
205
- .form-list .customer-name-prefix-suffix .input-box,
206
- .form-list .customer-name-prefix-middlename .input-box,
207
- .form-list .customer-name-middlename-suffix .input-box,
208
- .form-list .customer-name-prefix-middlename-suffix .input-box { width:auto; }
209
-
210
- .form-list .name-prefix { width:65px; }
211
- .form-list .name-prefix select { width:55px; }
212
- .form-list .name-prefix input.input-text { width:49px; }
213
-
214
- .form-list .name-suffix { width:65px; }
215
- .form-list .name-suffix select { width:55px; }
216
- .form-list .name-suffix input.input-text { width:49px; }
217
-
218
- .form-list .customer-name-prefix-middlename-suffix .name-firstname,
219
- .form-list .customer-name-prefix-middlename .name-firstname { width:140px; }
220
- .form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
221
- .form-list .customer-name-prefix-middlename .name-firstname input.input-text { width:124px; }
222
- .form-list .customer-name-prefix-middlename-suffix .name-lastname { width:205px; }
223
- .form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text { width:189px; }
224
-
225
- .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
226
- .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
227
- .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
228
- .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
229
-
230
- .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
231
- .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
232
- .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
233
- .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
234
-
235
- .form-list .customer-name-prefix .name-firstname,
236
- .form-list .customer-name-middlename .name-firstname,
237
- .form-list .customer-name-middlename .name-middlename { width:210px; }
238
-
239
- .form-list .customer-name-suffix .name-lastname,
240
- .form-list .customer-name-middlename .name-firstname,
241
- .form-list .customer-name-middlename .name-middlename,
242
- .form-list .customer-name-middlename-suffix .name-firstname,
243
- .form-list .customer-name-middlename-suffix .name-lastname { width:205px; }
244
-
245
- .form-list .customer-name-prefix .name-firstname input.input-text,
246
- .form-list .customer-name-suffix .name-lastname input.input-text,
247
- .form-list .customer-name-middlename .name-firstname input.input-text,
248
- .form-list .customer-name-middlename .name-middlename input.input-text,
249
- .form-list .customer-name-middlename-suffix .name-firstname input.input-text,
250
- .form-list .customer-name-middlename-suffix .name-lastname input.input-text { width:189px; }
251
-
252
- .form-list .customer-dob .dob-month,
253
- .form-list .customer-dob .dob-day,
254
- .form-list .customer-dob .dob-year { float:left; width:85px; }
255
- .form-list .customer-dob input.input-text { display:block; width:74px; }
256
- .form-list .customer-dob label { font-size:10px; font-weight:normal; color:#888; }
257
- .form-list .customer-dob .dob-day,
258
- .form-list .customer-dob .dob-month { width:60px; }
259
- .form-list .customer-dob .dob-day input.input-text,
260
- .form-list .customer-dob .dob-month input.input-text { width:46px; }
261
- .form-list .customer-dob .dob-year { width:140px; }
262
- .form-list .customer-dob .dob-year input.input-text { width:134px; }
263
-
264
- /* Independent fields */
265
- /*.form-list li { margin:0 0 8px; }
266
- .form-list li.fields { margin:0; }
267
- .form-list .field { display:block; margin:0 0 8px; }
268
- .form-list li.control {}
269
- .form-list label { float:left; width:150px; padding:2px 10px 0 0; text-align:right; }
270
- .form-list label.required { font-weight:bold; }
271
- .form-list label.required em { font-variant:normal; color:#eb340a; margin-right:3px; }
272
- .form-list .input-box { float:left; width:260px; }
273
- .form-list input.input-text,
274
- .form-list textarea { width:254px; }
275
- .form-list select { width:260px; }
276
- .form-list li.additional-row { border-top:1px solid #ddd; margin-top:10px; }
277
- .form-list li.additional-row .btn-remove { float:right; margin:5px 5px 0 0; }
278
- .form-list .input-range input.input-text { width:96px; }*/
279
- /* Customer */
280
- /*.form-list .customer-dob .dob-month,
281
- .form-list .customer-dob .dob-day,
282
- .form-list .customer-dob .dob-year { float:left; width:85px; }
283
- .form-list .customer-dob input.input-text { display:block; width:74px; }
284
- .form-list .customer-dob label { font-size:11px; font-weight:normal; color:#777; text-align:left; }
285
- .form-list .customer-dob .dob-day,
286
- .form-list .customer-dob .dob-month { width:60px; }
287
- .form-list .customer-dob .dob-day input.input-text,
288
- .form-list .customer-dob .dob-month input.input-text { width:46px; }
289
- .form-list .customer-dob .dob-year { width:140px; }
290
- .form-list .customer-dob .dob-year input.input-text { width:134px; }*/
291
-
292
- .buttons-set { clear:both; margin:4em 0 0; padding:8px 0 0; border-top:1px solid #e4e4e4; text-align:right; }
293
- .buttons-set p.required { margin:0 0 10px; }
294
- .buttons-set .back-link { float:left; margin:0; }
295
- .buttons-set button.button { float:right; margin-left:5px; }
296
-
297
- .buttons-set-order { margin:10px 0 0; }
298
- .buttons-set-order .please-wait { padding:12px 7px 0 0; }
299
-
300
- .fieldset { border:1px solid #bbafa0; padding:22px 25px 12px 33px; margin:28px 0; }
301
- .fieldset .legend { float:left; font-weight:bold; font-size:13px; border:1px solid #bbafa0; background:#fff; color:#e76200; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
302
-
303
- /* Form Validation */
304
- .validation-advice { clear:both; min-height:13px; margin:3px 0 0; padding-left:17px; font-size:11px; font-weight:bold; line-height:13px; background:url(../images/validation_advice_bg.gif) 2px 0 no-repeat; color:#eb340a; }
305
- .validation-failed { border:1px dashed #eb340a !important; background:#faebe7 !important; }
306
- .validation-passed {}
307
- p.required { font-size:11px; text-align:right; color:#EB340A; }
308
- /* Expiration date and CVV number validation fix */
309
- .v-fix { float:left; }
310
- .v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }
311
-
312
- /* Global Messages */
313
- .success { color:#3d6611; font-weight:bold; }
314
- .error { color:#df280a; font-weight:bold; }
315
- .notice { color:#e26703; }
316
-
317
- .messages,
318
- .messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
319
- .messages { width:100%; overflow:hidden; }
320
- .messages li { margin:0 0 10px !important; }
321
- .messages li li { margin:0 0 3px !important; }
322
- .error-msg,
323
- .success-msg,
324
- .note-msg,
325
- .notice-msg { border-style:solid !important; border-width:1px !important; background-position:10px 9px !important; background-repeat:no-repeat !important; min-height:24px !important; padding:8px 8px 8px 32px !important; font-size:11px !important; font-weight:bold !important; }
326
- .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
327
- .success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(../images/i_msg-success.gif); color:#3d6611; }
328
- .note-msg,
329
- .notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(../images/i_msg-note.gif); color:#3d6611; }
330
-
331
- /* BreadCrumbs */
332
- .breadcrumbs { font-size:11px; line-height:1.25; margin:0 0 13px; }
333
- .breadcrumbs li { display:inline; }
334
- .breadcrumbs li strong { font-weight:bold; }
335
-
336
- /* Page Heading */
337
- .page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; }
338
- .page-title h1,
339
- .page-title h2 { margin:0; font-size:20px; color:#0a263c; }
340
- .page-title .separator { margin:0 3px; }
341
- .page-title .link-rss { float:right; margin:7px 0 0; }
342
- .title-buttons { text-align:right; }
343
- .title-buttons h1,
344
- .title-buttons h2,
345
- .title-buttons h3,
346
- .title-buttons h4,
347
- .title-buttons h5,
348
- .title-buttons h6 { float:left; }
349
-
350
- .subtitle,
351
- .sub-title { clear:both; padding:15px 0 0; font-size:15px; font-weight:bold; margin:0 0 6px; color:#e25203; }
352
-
353
- /* Pager */
354
- .pager { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x; padding:4px 8px; border-top:1px solid #e2e2e2; text-align:center; }
355
- .pager .amount { float:left; margin:0; }
356
- .pager .limiter { float:right; }
357
- .pager .limiter label { vertical-align:middle; }
358
- .pager .limiter select { padding:0; margin:0 0 1px; vertical-align:middle; }
359
- .pager .pages { margin:0 140px; }
360
- .pager .pages ol { display:inline; }
361
- .pager .pages li { display:inline; margin:0 2px; }
362
- .pager .pages .current {}
363
-
364
- /* Sorter */
365
- .sorter { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x; padding:3px 8px; border-top:1px solid #e2e2e2; }
366
- .sorter .view-mode { float:left; margin:0; }
367
- .sorter .sort-by { float:right; padding-right:36px; }
368
- .sorter .sort-by label { vertical-align:middle; }
369
- .sorter .sort-by select { padding:0; margin:0 0 1px; vertical-align:middle; }
370
- .sorter .link-feed {}
371
-
372
- /* Toolbar */
373
- .toolbar {}
374
- .toolbar .pager { padding:3px 8px; background:#FFFFFF url(../images/pager_bg.gif) repeat-x scroll 0 100%; font-size:0.95em; }
375
- .toolbar .sorter { background:#FFFFFF url(../images/pager_bg.gif) repeat-x scroll 0 100%; font-size:0.95em; }
376
- .toolbar-bottom {}
377
-
378
- /* Data Table */
379
- .data-table { width:100%; border:1px solid #bebcb7; }
380
- .data-table .odd { background:#f8f7f5 }
381
- .data-table .even { background:#eeeded; }
382
- /*.data-table tr.odd:hover,
383
- .data-table tr.even:hover { background:#ebf1f6; }*/
384
- .data-table td.last,
385
- .data-table th.last { border-right:0; }
386
- .data-table tr.last th,
387
- .data-table tr.last td { border-bottom:0 !important; }
388
- .data-table th { padding:3px 8px; font-weight:bold; }
389
- .data-table td { padding:3px 8px; }
390
-
391
- .data-table thead th { font-weight:bold; border-right:1px solid #c2d3e0; padding:2px 8px; color:#0a263c; white-space:nowrap; vertical-align:middle; }
392
- .data-table thead th.wrap { white-space:normal; }
393
- .data-table thead th a,
394
- .data-table thead th a:hover { color:#fff; }
395
- .data-table thead th { background:url(../images/bkg_th.gif) repeat-x 0 100% #d9e5ee; }
396
- .data-table thead th .tax-flag { font-size:11px; white-space:nowrap; }
397
-
398
- .data-table tfoot { border-bottom:1px solid #d9dde3; }
399
- .data-table tfoot tr.first td { background:url(../images/bkg_tfoot.gif) 0 0 repeat-x; }
400
- .data-table tfoot tr { background-color:#dee5e8 !important; }
401
- .data-table tfoot td { padding-top:1px; padding-bottom:1px; border-bottom:0; border-right:1px solid #d9dde3; }
402
- .data-table tfoot strong { font-size:16px; }
403
-
404
- .data-table tbody th,
405
- .data-table tbody td { border-bottom:1px solid #d9dde3; border-right:1px solid #d9dde3; }
406
- /* Bundle products tables */
407
- .data-table tbody.odd tr { background:#f8f7f5 !important; }
408
- .data-table tbody.even tr { background:#f6f6f6 !important; }
409
- .data-table tbody.odd tr td,
410
- .data-table tbody.even tr td { border-bottom:0; }
411
- .data-table tbody.odd tr.border td,
412
- .data-table tbody.even tr.border td { border-bottom:1px solid #d9dde3; }
413
-
414
- .data-table tbody td .option-label { font-weight:bold; font-style:italic; }
415
- .data-table tbody td .option-value { padding-left:10px; }
416
-
417
- /* Generic Info Box */
418
- .info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
419
- .info-box h2 { font-weight:bold; font-size:13px; }
420
-
421
- .info-table th { font-weight:bold; padding:2px 15px 2px 0; }
422
- .info-table td { padding:2px 0; }
423
-
424
- /* Shopping cart total summary row expandable to details */
425
- tr.summary-total { cursor:pointer; }
426
- tr.summary-total td {}
427
- tr.summary-total .summary-collapse { float:right; text-align:right; padding-left:20px; background:url(../images/bkg_collapse.gif) 0 5px no-repeat; cursor:pointer; }
428
- tr.show-details .summary-collapse { background-position:0 -52px; }
429
- tr.show-details td {}
430
- tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
431
- tr.summary-details-first td { border-top:1px solid #d2d8db; }
432
- tr.summary-details-excluded { font-style:italic; }
433
-
434
- /* Shopping cart tax info */
435
- .cart-tax-info { display:block; }
436
- .cart-tax-info,
437
- .cart-tax-info .cart-price { padding-right:20px; }
438
- .cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 5px no-repeat; cursor:pointer; }
439
- .cart-tax-info .price,
440
- .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
441
- .cart-tax-total-expanded { background-position:100% -52px; }
442
-
443
- /* Class: std - styles for admin-controlled content */
444
- .std .subtitle { padding:0; }
445
- .std ol.ol { list-style:decimal outside; padding-left:1.5em; }
446
- .std ul.disc { list-style:disc outside; padding-left:18px; margin:0 0 10px; }
447
- .std dl dt { font-weight:bold; }
448
- .std dl dd { margin:0 0 10px; }
449
- /*.std ul,
450
- .std ol,
451
- .std dl,
452
- .std p,
453
- .std address,
454
- .std blockquote { margin:0 0 1em; padding:0; }
455
- .std ul { list-style:disc outside; padding-left:1.5em; }
456
- .std ol { list-style:decimal outside; padding-left:1.5em; }
457
- .std ul ul { list-style-type:circle; }
458
- .std ul ul,
459
- .std ol ol,
460
- .std ul ol,
461
- .std ol ul { margin:.5em 0; }
462
- .std dt { font-weight:bold; }
463
- .std dd { padding:0 0 0 1.5em; }
464
- .std blockquote { font-style:italic; padding:0 0 0 1.5em; }
465
- .std address { font-style:normal; }
466
- .std b,
467
- .std strong { font-weight:bold; }
468
- .std i,
469
- .std em { font-style:italic; }*/
470
-
471
- /* Misc */
472
- .links li { display:inline; }
473
- .links li.first { padding-left:0 !important; }
474
- .links li.last { }
475
-
476
- .link-cart { color:#dc6809 !important; font-weight:bold; }
477
- .link-wishlist { color:#dc6809 !important; font-weight:bold; }
478
- .link-reorder { font-weight:bold; color:#dc6809 !important; }
479
- .link-compare { font-weight:bold; }
480
- .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/ font-weight:bold; color:#dc6809; }
481
- .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
482
- .btn-remove { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_remove.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
483
- .btn-previous { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_previous.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
484
- .btn-remove2 { display:block; width:16px; height:16px; font-size:0; line-height:0; background:url(../images/btn_trash.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
485
- .btn-edit { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_edit.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
486
-
487
- .cards-list dt { margin:5px 0 0; }
488
- .cards-list .offset { padding:2px 0 2px 20px; }
489
-
490
- .separator { margin:0 3px; }
491
-
492
- .divider { clear:both; display:block; font-size:0; line-height:0; height:1px; margin:10px 0; background:url(../images/bkg_divider1.gif) 0 50% repeat-x; text-indent:-999em; overflow:hidden; }
493
-
494
- /* Global site notices */
495
- .global-site-notice { border:1px solid #cfcfcf; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
496
- .global-site-notice .notice-inner { width:860px; margin:0 auto; padding:12px 0 12px 80px; background:url(../images/i_notice.gif) 20px 25px no-repeat; text-align:left; }
497
- .global-site-notice .notice-inner p { margin:0; border:1px dotted #cccc73; padding:10px; }
498
- .global-site-notice .notice-inner .actions { padding-top:10px; }
499
-
500
- /* Cookie Notice */
501
- .notice-cookie { position:fixed; z-index:9999; width:100%; bottom:0; left:0; margin:0 !important; opacity:0.95; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)"; /* IE8 */ }
502
-
503
- /* Noscript Notice */
504
- .noscript {}
505
-
506
- /* Demo Notice */
507
- .demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; border:0; text-align:center; color:#fff; }
508
- .demo-notice .notice-inner { width:auto; padding:0; background:none; text-align:center; }
509
- .demo-notice .notice-inner p { padding:0; border:0; }
510
-
511
- /* ======================================================================================= */
512
-
513
-
514
- /* Header ================================================================================ */
515
- .logo { float:left; }
516
- .header-container { margin-top:27px; text-align:left; }
517
- .header {margin:0 auto; padding:10px; text-align:right; position:relative; z-index:1000; width: 960px; }
518
- .header .logo { float:left; margin:3px 0 10px 12px; text-decoration:none !important; }
519
- .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
520
- .header h1.logo { margin:0; }
521
- .header .quick-access { }
522
-
523
- .header .welcome-msg { margin:0; color:#fff; text-align:right; }
524
- .header .form-search { background:url("../images/mini_search_bg.gif") no-repeat scroll 0 0 transparent;
525
- bottom:-34px; height:28px; padding:0; position:absolute; right:21px; width:152px; }
526
- .header .form-search input.input-text { background:none repeat scroll 0 0 transparent; border:medium none;
527
- float:right; font-size:0.9em; margin-top:5px; padding:2px 2px 2px 0; width:125px; }
528
- .header .form-search button.button { float:left; background: url(../images/btn_mini_search.gif) no-repeat left top; }
529
- .header .form-search button.button span { border:0; height:21px; background:url(../images/btn_search.gif) 0 0 no-repeat; padding:0 0 0 3px; font:bold 11px/21px Tahoma, Verdana, Arial, sans-serif; }
530
- .header .form-search button.button span span { background-position:100% 0; padding:0 6px 0 3px; }
531
- .header .form-search .search-autocomplete { z-index:999; /* left:40px !important; top:22px !important; */}
532
- .header .form-search .search-autocomplete ul { border:1px solid #5c7989; background-color:#f9f5f0; }
533
- .header .form-search .search-autocomplete li { text-align:left; border-bottom:1px solid #f4eee7; padding:2px 8px 1px 8px; cursor:pointer; }
534
- .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
535
- .header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
536
- .header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
537
- .header .form-language { position:absolute; right:230px; top:-22px; }
538
- .header .form-language label { padding-right:5px; vertical-align:middle; color:#A7C6DD; }
539
- .header .form-language select { padding:0; }
540
- .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
541
- .header .links { float:right; margin:0 0 6px; }
542
- .header .links li { float:left; font-size:11px; background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat; padding:0 8px 0 7px; }
543
- .header .links a { }
544
- .header-container .top-container { clear:both; text-align:right; }
545
- .header-container .top-container a { font-size:11px; }
546
-
547
- /********** < Navigation */
548
- .nav-container { height: 41px; background:url("../images/container.png") repeat-y scroll -979px 0 transparent;
549
- margin:0 auto; width:978px; }
550
- /* ======================================================================================= */
551
-
552
-
553
- /* Sidebar =============================================================================== */
554
- .block { background:url("../images/base_mini_bg.gif") repeat-x 0 0 #FFFFFF; border:1px solid #EAEAEA; font-size:0.95em; line-height:1.3em; margin:0 0 6px; }
555
- .block .block-title { margin:0; padding: 8px 2px 2px 8px; }
556
- .block .block-title strong { display:block; font:bold 12px/16px Arial, Helvetica, sans-serif; min-height:16px; padding:1px 0 1px; text-transform:uppercase; color:#e26703; }
557
- .block .block-title strong span { background-image:url("../images/common.gif");background-position:-357px -200px; background-repeat:no-repeat; color:#656565; font:bold 1em Verdana,Geneva,Arial,Helvetica,sans-serif; min-height:16px; padding:8px 0 1px 21px;text-transform:none; }
558
- .block .block-title a { text-decoration:none !important; }
559
- .block .block-subtitle { margin:0; padding:5px 9px; font-size:1em; font-weight:bold; color:#0a263c; }
560
- .block .block-content { }
561
- .block .block-content li.item { padding:7px 9px; }
562
- .block .btn-remove, .block .btn-edit { float:right; margin:1px 0 2px 5px; }
563
- .block .actions {padding:6px 9px; text-align:right; }
564
- .block .actions a { float:left; }
565
- .block .actions button.button { float:right; }
566
- .block .empty { margin:0; padding:5px 9px; }
567
-
568
- .block li.odd { background-color:#f4f3f3; }
569
- .block li.even { background-color:#fafafa; }
570
-
571
- /* Mini Blocks */
572
- .block-cart,
573
- .block-wishlist,
574
- .block-subscribe,
575
- .block-compare,
576
- .block-reorder,
577
- .block-poll,
578
- .block-viewed,
579
- .block-compared,
580
- .block-related,
581
- .block-tags,
582
- .block-login { font-size:11px; line-height:1.25; }
583
- .block-cart .block-title span,
584
- .block-wishlist .block-title span,
585
- .block-subscribe .block-title span,
586
- .block-compare .block-title span,
587
- .block-reorder .block-title span,
588
- .block-poll .block-title span,
589
- .block-viewed .block-title span,
590
- .block-compared .block-title span,
591
- .block-related .block-title span,
592
- .block-tags .block-title span,
593
- .block-login .block-title span { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
594
- .block-cart .block-title strong,
595
- .block-wishlist .block-title strong,
596
- .block-subscribe .block-title strong,
597
- .block-compare .block-title strong,
598
- .block-reorder .block-title strong,
599
- .block-poll .block-title strong,
600
- .block-viewed .block-title strong,
601
- .block-compared .block-title strong,
602
- .block-related .block-title strong,
603
- .block-tags .block-title strong,
604
- .block-login .block-title strong { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
605
-
606
- /* Mini Products List */
607
- .mini-products-list .product-image { float:left; width:50px; border:1px solid #a9a9a9; }
608
- .mini-products-list .product-details { margin-left:60px; }
609
- .block-cart .mini-products-list .product-details .product-name,
610
- .block-cart .mini-products-list .product-details .nobr small { word-wrap:break-word; }
611
- .block-cart .mini-products-list .product-details .nobr { white-space:normal !important; }
612
-
613
- /* Block: Account */
614
- .block-account { }
615
- .block-account .block-title { }
616
- .block-account .block-title span { font-size:13px; color:#fff; }
617
- .block-account .block-content {padding:7px 10px 7px; }
618
- .block-account .block-content li a { display:block; border-bottom:1px solid #ddd; padding:3px 0; color:#5f5d5c; text-decoration:none !important; }
619
- .block-account .block-content li a:hover { color:#ea7900; }
620
- .block-account .block-content li.last a { border-bottom:0; }
621
- .block-account .block-content li.current { border-bottom:1px solid #ddd; padding:3px 0; color:#ea7900; }
622
- .block-account .block-content li.current.last { border-bottom:0; }
623
-
624
- /* Block: Currency Switcher */
625
- .block-currency {}
626
- .block-currency .block-title { }
627
- .block-currency .block-title span { }
628
- .block-currency .block-content { background:none; padding:10px; }
629
- .block-currency .block-content select { width:100%; padding:0; }
630
-
631
- /* Block: Layered Navigation */
632
- .block-layered-nav { }
633
- .block-layered-nav .block-title { border:0; padding:0; height:24px; }
634
- .block-layered-nav .block-subtitle {}
635
- .block-layered-nav .block-content { }
636
- .block-layered-nav dt { padding:7px 10px 0 28px; font-weight:bold; text-transform:uppercase; }
637
- .block-layered-nav dd { padding:0 12px 12px; }
638
- .block-layered-nav dd.last { background:none; }
639
- .block-layered-nav .currently li { padding:4px 6px 4px 10px; position:relative; z-index:1; line-height:1.5; }
640
- .block-layered-nav .currently .label { font-weight:bold; padding-left:8px; text-transform:uppercase; }
641
- .block-layered-nav .currently .value { display:inline-block; vertical-align:top; }
642
- .block-layered-nav .currently .btn-previous,
643
- .block-layered-nav .currently .btn-remove { position:absolute; right:4px; top:5px; margin:0; }
644
- .block-layered-nav .currently .btn-previous { right:17px; }
645
- .block-layered-nav .actions { font-size:11px; padding:4px 9px; border-width:1px 0; text-align:right; }
646
- .block-layered-nav .actions a { float:none; }
647
-
648
- /* Block: Cart */
649
- .block-cart .block-title { /*border-bottom:0;*/ }
650
- .block-cart .block-title span { }
651
- .block-cart .block-title strong { background-image:url(../images/i_block-cart.gif); }
652
- .block-cart .summary { background:#fff; padding:2px 8px 8px; margin:-1px 0 0; position:relative; z-index:1; }
653
- .block-cart .amount { margin:0; }
654
- .block-cart .amount a { font-weight:bold; }
655
- .block-cart .subtotal { margin:5px 0 0; padding:2px 0; background:#fbebd9; text-align:center; }
656
- .block-cart .subtotal .price { font-weight:bold; }
657
- .block-cart .actions { }
658
- .block-cart .actions .paypal-logo { float:left; width:100%; margin:3px 0 0; text-align:right; }
659
- .block-cart .actions .paypal-logo .paypal-or { clear:both; display:block; padding:0 55px 8px 0; }
660
-
661
- /* Block: Wishlist */
662
- .block-wishlist .block-title span { }
663
- .block-wishlist .block-title strong { background-image:url(../images/i_block-wishlist.gif); }
664
- .block-wishlist .actions { text-align:right; }
665
- .block-wishlist .actions a { float:none; }
666
-
667
- /* Block: Related */
668
- .block-related .block-title span { }
669
- .block-related .block-title strong { background-image:url(../images/i_block-related.gif); background-position:0 1px; }
670
- .block-related input.checkbox { float:left; }
671
- .block-related .product { margin-left:20px; }
672
-
673
- /* Block: Compare Products */
674
- .block-compare .block-title span { }
675
- .block-compare .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
676
- .block-compare button.button span { border-color:#406a83; background:#618499; }
677
- .page-popup .link-print { background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px; font-weight:bold; color:#1e7ec8; }
678
- .compare-table { border:0; }
679
- .compare-table thead tr.first th,
680
- .compare-table thead tr.first td { border:0; background:none; padding:0; font-size:0; line-height:0; }
681
- .compare-table .btn-remove { float:right; background-image:url(../images/btn_remove2.gif); width:72px; height:15px; }
682
- .compare-table tbody th { background:#d9e5ee url(../images/bkg_th-v.gif) 100% 0 repeat-y; }
683
- .compare-table tbody th,
684
- .compare-table tbody td { padding:10px; border:0; border-top:1px solid #ccc; border-left:1px solid #ccc; }
685
- .compare-table tbody td.last { border-right:1px solid #ccc; }
686
- .compare-table tbody tr.last th,
687
- .compare-table tbody tr.last td { border-bottom:1px solid #ccc !important; }
688
- .compare-table tr.add-to-row td { background:#fffada; text-align:center; }
689
- .compare-table tr.first td { text-align:center; }
690
- .compare-table tr.first td .product-name { font-size:13px; font-weight:bold; margin:0 0 5px; color:#203548; }
691
- .compare-table tr.first td .product-name a { color:#203548; }
692
- .compare-table tr.first td .ratings { width:69px; margin:0 auto; }
693
- .compare-table tr.first td p,
694
- .compare-table tr.add-to-row td p { margin:0; }
695
-
696
- /* Block: Recently Viewed */
697
- .block-viewed .block-title span { }
698
- .block-viewed .block-title strong { background-image:url(../images/i_block-viewed.gif); }
699
-
700
- /* Block: Recently Compared */
701
- .block-compared .block-title span { }
702
- .block-compared .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
703
-
704
- /* Block: Poll */
705
- .block-poll .block-title span { }
706
- .block-poll .block-title strong { background-image:url(../images/i_block-poll.gif); }
707
- .block-poll .block-subtitle { font-size:12px; }
708
- .block-poll label { color:#777; font-weight:bold; }
709
- .block-poll input.radio { float:left; margin:1px -18px 0 0; }
710
- .block-poll .label { display:block; margin-left:18px; }
711
- .block-poll li { padding:3px 9px; }
712
- .block-poll .actions { margin:5px 0 0; }
713
- .block-poll button.button span { }
714
- .block-poll .answer { font-weight:bold; }
715
- .block-poll .votes { float:right; margin-left:10px; }
716
-
717
- /* Block: Orders and Returns */
718
- .block-gr-search li { padding:3px 9px; }
719
- .block-gr-search button.button span { }
720
-
721
- /* Block: Tags */
722
- .block-tags .block-title span { }
723
- .block-tags .block-content ul { font-size:12px; padding:10px; }
724
- .block-tags .block-content li { display:inline; padding-right:4px; }
725
- .block-tags .block-content a { color:#1b2d3b; }
726
- .block-tags .actions { text-align:right; }
727
- .block-tags .actions a { float:none; }
728
-
729
- /* Block: Subscribe */
730
- .block-subscribe .block-content { padding:5px 10px; }
731
- .block-subscribe .block-title strong { background-image:url(../images/i_block-subscribe.gif); }
732
- .block-subscribe label { font-weight:bold; color:#666; }
733
- .block-subscribe input.input-text { display:block; width:167px; margin:3px 0; }
734
- .block-subscribe .actions { background:none; padding:0; margin:3px 0 0; text-align:left; }
735
- .block-subscribe .actions button.button { float:none; }
736
- .block-subscribe .actions button.button span { }
737
-
738
- /* Block: Reorder */
739
- .block-reorder .block-title span { }
740
- .block-reorder input.checkbox { float:left; margin:2px -20px 0 0; }
741
- .block-reorder .product-name { margin-left:20px; }
742
- .block-reorder .validation-advice { margin:3px 9px 7px; }
743
-
744
- /* Block: Banner */
745
- .block-banner { border:0; }
746
- .block-banner .block-content { padding:0; text-align:center; }
747
-
748
- /* Block: Login */
749
- .block-login .block-title span { }
750
- .block-login .block-content { padding:5px 10px; }
751
- .block-login label { font-weight:bold; color:#666; }
752
- .block-login input.input-text { display:block; width:167px; margin:3px 0; }
753
- .block-login .actions { background:none; padding:0; margin:3px 0 0; }
754
- .block-login .actions button.button span { border-color:#406a83; background:#618499; }
755
-
756
- /* Paypal */
757
- .sidebar .paypal-logo { display:block; margin:10px 0; text-align:center; }
758
- .sidebar .paypal-logo a { float:none; }
759
- /* ======================================================================================= */
760
-
761
-
762
- /* Category Page ========================================================================= */
763
- .category-title { border:0; margin:0 0 7px; }
764
- .category-image { }
765
- .category-image img {}
766
- .category-description { margin:0 0 10px; }
767
- .category-products {}
768
-
769
- /* View Type: Grid */
770
- .products-grid { border-bottom:1px solid #d9ddd3; position:relative; }
771
- .products-grid.last { border-bottom:0; }
772
- .products-grid li.item { float:left; width:155px; padding:12px 10px 80px; }
773
- .products-grid .product-image { display:block; width:135px; height:135px; margin:0 0 10px; }
774
- .products-grid .product-name { /*min-height:2.7em;*/ margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
775
- .products-grid .product-name a { color:#203548; }
776
- .products-grid .price-box { margin:5px 0; }
777
- .products-grid .availability { line-height:21px; }
778
- .products-grid .actions { position:absolute; bottom:12px; }
779
- .col2-left-layout .products-grid,
780
- .col2-right-layout .products-grid { width:632px; margin:0 auto; }
781
- .col1-layout .products-grid { width:790px; margin:0 auto; }
782
-
783
- /* View Type: List */
784
- .products-list li.item { border-bottom:1px solid #d9ddd3; padding:12px 10px; }
785
- .products-list li.item.last { border-bottom:0; }
786
- .products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
787
- .products-list .product-shop { margin-left:150px; }
788
- .products-list .product-name { margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
789
- .products-list .product-name a { color:#203548; }
790
- .products-list .price-box { float:left; margin:3px 13px 5px 0; }
791
- .products-list .availability { float:left; margin:3px 0 0; }
792
- .products-list .desc { clear:both; padding:6px 0 0; margin:0 0 15px; line-height:1.35; }
793
- .products-list .desc .link-learn { font-size:11px; }
794
- .products-list .add-to-links { clear:both; }
795
- .products-list .add-to-links li { display:inline; }
796
- .products-list .add-to-links .separator { display:inline; margin:0 2px; }
797
- /* ======================================================================================= */
798
-
799
-
800
- /* Product View ========================================================================== */
801
- /* Rating */
802
- .no-rating { margin:0; }
803
-
804
- .ratings { font-size:11px; line-height:1.25; margin:7px 0; }
805
- .ratings strong { float:left; margin:1px 3px 0 0; }
806
- .ratings .rating-links { margin:0; }
807
- .ratings .rating-links .separator { margin:0 2px; }
808
- .ratings dt {}
809
- .ratings dd {}
810
- .rating-box { width:69px; height:13px; font-size:0; line-height:0; background:url(../images/bkg_rating.gif) 0 0 repeat-x; text-indent:-999em; overflow:hidden; }
811
- .rating-box .rating { float:left; height:13px; background:url(../images/bkg_rating.gif) 0 100% repeat-x; }
812
- .ratings .rating-box { float:left; margin-right:3px; }
813
- .ratings .amount {}
814
-
815
- .ratings-table th,
816
- .ratings-table td { font-size:11px; line-height:1.15; padding:3px 0; }
817
- .ratings-table th { font-weight:bold; padding-right:8px; }
818
-
819
- /* Availability */
820
- .availability { margin:0; }
821
- .availability span { font-weight:bold; }
822
- .availability.in-stock span {}
823
- .availability.out-of-stock span { color:#d83820; }
824
-
825
- .availability-only { margin:10px 0 7px; line-height:16px; background:url(../images/i_availability_only.gif) 0 50% no-repeat; padding-left:15px; }
826
- .availability-only span,
827
- .availability-only a { border-bottom:1px dashed #751d02; color:#000; }
828
- .availability-only a { background:url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat; cursor:pointer; padding-right:15px; text-decoration:none; }
829
- .availability-only .expanded { background-position:100% -15px; }
830
- .availability-only strong { color:#be2c00; }
831
-
832
- .availability-only-details { margin:0 0 7px; }
833
- .availability-only-details th { background:#d2d6d9; font-size:10px; padding:0 8px; }
834
- .availability-only-details td { background:#ebf0f3; border-bottom:1px solid #fff; font-size:11px; padding:2px 8px 1px; }
835
- .availability-only-details tr.odd td.last { color:#d95e00; font-weight:bold; }
836
-
837
- .product-view .product-shop .availability { font-size:11px; }
838
- .product-view .product-shop .availability span { font-weight:normal; }
839
-
840
- /* Email to a Friend */
841
- .email-friend { margin:0; }
842
-
843
- /* Alerts */
844
- .alert-price { margin:0; font-size:11px; }
845
- .alert-stock { margin:0; font-size:11px; }
846
-
847
- /********** < Product Prices */
848
- .price { white-space:nowrap !important; }
849
-
850
- .price-box { margin:5px 0; }
851
- .price-box .price { font-weight:bold; color:#c76200; }
852
-
853
- /* Regular price */
854
- .regular-price { color:#c76200; }
855
- .regular-price .price { font-weight:bold; font-size:13px; color:#c76200; }
856
- .block .regular-price,
857
- .block .regular-price .price { color:#2f2f2f; }
858
-
859
- /* Old price */
860
- .old-price { margin:0; }
861
- .old-price .price-label { white-space:nowrap; color:#999; }
862
- .old-price .price { font-weight:bold; color:#c76200; text-decoration:line-through; }
863
-
864
- /* Special price */
865
- .special-price { margin:0; padding:3px 0; }
866
- .special-price .price-label { font-size:13px; font-weight:bold; white-space:nowrap; color:#cd5033; }
867
- .special-price .price { font-size:13px; font-weight:bold; color:#c76200; }
868
-
869
- /* Minimal price (as low as) */
870
- .minimal-price { margin:0; }
871
- .minimal-price .price-label { font-weight:bold; white-space:nowrap; }
872
-
873
- .minimal-price-link { display:block; }
874
- .minimal-price-link .label {color:#1e7ec8;}
875
- .minimal-price-link .price { font-weight:normal; color:#1e7ec8; }
876
-
877
- /* Excluding tax */
878
- .price-excluding-tax { display:block; color:#999; }
879
- .price-excluding-tax .label { white-space:nowrap; color:#999; }
880
- .price-excluding-tax .price { font-size:13px; font-weight:normal; color:#c76200; }
881
-
882
- /* Including tax */
883
- .price-including-tax { display:block; color:#999; }
884
- .price-including-tax .label { white-space:nowrap; color:#999; }
885
- .price-including-tax .price { font-size:13px; font-weight:bold; color:#c76200; }
886
-
887
- /* Configured price */
888
- .configured-price { margin:0; }
889
- .configured-price .price-label { font-weight:bold; white-space:nowrap; }
890
- .configured-price .price { font-weight:bold; }
891
-
892
- /* FPT */
893
- .weee { display:block; font-size:11px; color:#444; }
894
- .weee .price { font-size:11px; font-weight:normal; }
895
-
896
- /* Excl tax (for order tables) */
897
- .price-excl-tax { display:block; }
898
- .price-excl-tax .label { display:block; white-space:nowrap; }
899
- .price-excl-tax .price { display:block; }
900
-
901
- /* Incl tax (for order tables) */
902
- .price-incl-tax { display:block; }
903
- .price-incl-tax .label { display:block; white-space:nowrap; }
904
- .price-incl-tax .price { display:block; font-weight:bold; }
905
-
906
- /* Price range */
907
- .price-from { margin:0; }
908
- .price-from .price-label { font-weight:bold; white-space:nowrap; }
909
-
910
- .price-to { margin:0; }
911
- .price-to .price-label { font-weight:bold; white-space:nowrap; }
912
-
913
- /* Price notice next to the options */
914
- .price-notice { padding-left:10px; color:#999; }
915
- .price-notice .price { font-weight:bold; color:#2f2f2f; }
916
-
917
- /* Price as configured */
918
- .price-as-configured { margin:0; }
919
- .price-as-configured .price-label { font-weight:bold; white-space:nowrap; }
920
-
921
- .price-box-bundle { padding:0 0 10px 0; }
922
- .price-box-bundle .price-box { margin:0 !important; padding:0 !important; }
923
- .price-box-bundle .price { color:#555; }
924
- /********** Product Prices > */
925
-
926
- /* Tier Prices */
927
- .product-pricing,
928
- .tier-prices { margin:10px 0; padding:10px; background-color:#f4f7f7; border:1px solid #dadddd; color:#424242; }
929
- .tier-prices li { line-height:1.4; background:url(../images/i_tier.gif) no-repeat 0 3px; padding:2px 0 2px 10px; }
930
- .tier-prices .benefit { font-style:italic; font-weight:bold; color:#2f2f2f; }
931
- .tier-prices .price { font-weight:bold; color:#2f2f2f; }
932
-
933
- .tier-prices-grouped li { padding:2px 0; color:#e26703; }
934
- .tier-prices-grouped li .price { font-weight:bold; }
935
-
936
- /* Add to Links */
937
- .add-to-links { font-size:11px; margin:5px 0 0; }
938
- .add-to-links .separator { display:none; }
939
-
940
- /* Add to Cart */
941
- .add-to-cart label { float:left; margin-right:5px; font-weight:bold; color:#666; }
942
- .add-to-cart .qty { float:left; margin-right:5px; }
943
- .add-to-cart button.button { float:left; }
944
- .add-to-cart .paypal-logo { clear:left; margin:0; text-align:right; }
945
- .add-to-cart .paypal-logo .paypal-or { clear:both; display:block; margin:5px 60px 5px 0; }
946
- .product-view .add-to-cart .paypal-logo { margin:0; }
947
-
948
- /* Add to Links + Add to Cart */
949
- .add-to-box { margin:10px 0; }
950
- .add-to-box .add-to-cart { float:left; }
951
- .add-to-box .or { float:left; font-weight:bold; margin:0 7px; color:#666; }
952
- .add-to-box .add-to-links { float:left; margin:0; font-size:12px !important; line-height:1.25 !important; text-align:left !important; }
953
- .add-to-box .add-to-links li { display:block !important; }
954
- .add-to-box .add-to-links li .separator { display:none !important; }
955
-
956
-
957
- .product-view { border:1px solid #c4c6c8; }
958
-
959
- .product-essential { padding:25px; background:#fff url(../images/bkg_product-view.gif) 100% 0 no-repeat; }
960
- .product-essential h2 { font:bold 13px/1.35 Arial, Helvetica, sans-serif; }
961
-
962
- .product-collateral { background:#faf7ee url(../images/bkg_product_collateral.gif) 0 0 repeat-x; padding:25px; }
963
- .product-collateral h2 { font-weight:bold; font-size:15px; color:#e26703; border-bottom:1px solid #e5dcc3; padding:0 0 1px; margin:0 0 15px; }
964
- .product-collateral .box-collateral { margin:0 0 25px; }
965
-
966
- /* Product Images */
967
- .product-view .product-img-box { float:left; width:267px; }
968
- .col3-layout .product-view .product-img-box { float:none; margin:0 auto; }
969
- .product-view .product-img-box .product-image { margin:0 0 13px; }
970
- .product-view .product-img-box .product-image-zoom { position:relative; width:265px; height:265px; overflow:hidden; z-index:9; }
971
- .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
972
- .product-view .product-img-box .zoom-notice { font-size:11px; margin:0 0 5px; text-align:center; }
973
- .product-view .product-img-box .zoom { position:relative; z-index:9; height:18px; margin:0 auto 13px; padding:0 28px; background:url(../images/slider_bg.gif) 50% 50% no-repeat; cursor:pointer; }
974
- .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
975
- .product-view .product-img-box .zoom #track { position:relative; height:18px; }
976
- .product-view .product-img-box .zoom #handle { position:absolute; left:0; top:-1px; width:9px; height:22px; background:url(../images/magnifier_handle.gif) 0 0 no-repeat; }
977
- .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
978
- .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
979
- .product-view .product-img-box .more-views h2 { font-size:11px; border-bottom:1px solid #ccc; margin:0 0 8px; text-transform:uppercase; }
980
- .product-view .product-img-box .more-views ul { margin-left:-9px }
981
- .product-view .product-img-box .more-views li { float:left; margin:0 0 8px 9px; }
982
- .product-view .product-img-box .more-views li a { float:left; width:56px; height:56px; border:2px solid #ddd; overflow:hidden; }
983
-
984
- .product-image-popup { margin:0 auto; }
985
- .product-image-popup .buttons-set { float:right; clear:none; border:0; margin:0; padding:0; }
986
- .product-image-popup .nav { font-weight:bold; margin:0 100px; text-align:center; }
987
- .product-image-popup .image { display:block; margin:10px 0; }
988
- .product-image-popup .image-label { font-size:13px; font-weight:bold; margin:0 0 10px; color:#2f2f2f; }
989
-
990
- /* Product Shop */
991
- .product-view .product-shop { float:right; width:410px; }
992
- .col1-layout .product-view .product-shop { float:right; width:545px; }
993
- .col3-layout .product-view .product-shop { float:none; width:auto; }
994
- .product-view .product-shop .product-name { margin:0 0 5px; }
995
- .product-view .product-shop .product-name h1 { margin:0; font:bold 15px/1.35 Arial, Helvetica, sans-serif; }
996
- .product-view .product-shop .availability { margin:10px 0; }
997
- .product-view .product-shop .short-description { margin:10px 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; padding:10px 0 0; }
998
- .product-view .product-shop .price-box { margin:10px 0; }
999
- .product-view .product-shop .add-to-links { margin:0; }
1000
- .product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
1001
- .product-view .product-shop .add-to-links li,
1002
- .product-view .product-shop .add-to-links li .separator { display:inline; }
1003
- .product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
1004
-
1005
- /* Product Options */
1006
- .product-options { margin:20px 0 0; padding:10px 15px 20px; position:relative; background-color:#f6f6f6; border:1px solid #e4e4e4; }
1007
- .product-options dt { padding:10px 0 0; font-weight:normal; }
1008
- .product-options dt label { font-weight:bold; color:#2f2f2f; }
1009
- .product-options dt label.required em { color:#eb340a; margin-left:5px; }
1010
- .product-options dd .qty-holder { display:block; padding:10px 0 0; }
1011
- .product-options dd .qty-holder label { vertical-align:middle; }
1012
- .product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#2f2f2f; }
1013
- .product-options dd { padding:5px 10px 15px; margin:0 0 5px; border-bottom:1px solid #e4e4e4; }
1014
- .product-options dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
1015
- .product-options dd input.input-text { width:98%; }
1016
- .product-options dd input.datetime-picker { width:150px; }
1017
- .product-options dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
1018
- .product-options dd textarea { width:98%; height:8em; }
1019
- .product-options dd select { width:99%; }
1020
- .product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
1021
- .product-options ul.options-list { margin-right:5px; }
1022
- .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1023
- .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1024
- .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1025
- .product-options ul.options-list .label { display:block; margin-left:18px; }
1026
- .product-options ul.options-list label { font-weight:normal; }
1027
- .product-options ul.validation-failed { padding:0 7px; }
1028
- .product-options p.note { margin:0; font-size:11px; }
1029
- .product-options p.required { position:absolute; right:20px; top:20px; }
1030
-
1031
- .product-options-bottom { background-color:#fffada; padding:15px 20px; border:1px solid #e4e4e4; border-top:0; }
1032
- .product-options-bottom .product-pricing,
1033
- .product-options-bottom .tier-prices { margin:0; padding:0 0 10px; border:0; background:0; color:#e26703; }
1034
- .product-options-bottom .tier-prices li { background:0; padding:2px 0; }
1035
- .product-options-bottom .tier-prices .price,
1036
- .product-options-bottom .tier-prices .benefit { color:#e26703; }
1037
- .product-options-bottom .price-box { float:left; margin:0; padding:0; }
1038
- .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1039
- .col3-layout .product-options-bottom .price-box { float:none; padding:0 0 5px; }
1040
- .product-options-bottom .price-label { float:left; padding-right:5px; }
1041
- .product-options-bottom .price-tax { float:left; }
1042
- .product-options-bottom .add-to-cart { float:right; }
1043
- .product-shop .product-options-bottom { margin:0 0 10px; }
1044
- .product-shop .product-options-bottom .price-box { float:none; margin:0 0 5px; }
1045
- .product-shop .product-options-bottom .price-label { float:none; padding-right:0; }
1046
- .product-shop .product-options-bottom .price-tax { float:none; }
1047
- .product-shop .product-options-bottom .add-to-cart-box { clear:both; float:left; padding-top:12px; }
1048
- .product-shop .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1049
-
1050
- /* Grouped Product */
1051
- .product-view .grouped-items-table .price-box { margin:0; padding:0; }
1052
-
1053
- /* Block: Description */
1054
- .product-view .box-description {}
1055
-
1056
- /* Block: Additional */
1057
- .product-view .box-additional .data-table th,
1058
- .product-view .box-additional .data-table td { line-height:1.25; }
1059
-
1060
- /* Block: Upsell */
1061
- .product-view .box-up-sell h2 { border-bottom:0; padding:0; margin:0 0 8px; }
1062
- .product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1063
- .product-view .box-up-sell .products-grid td { width:25%; background:#f6f2e7; border-right:1px solid #e5dcc3; border-bottom:1px solid #e5dcc3; padding:15px 10px 12px; line-height:1.6em; }
1064
- .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1065
- .product-view .box-up-sell .products-grid td.last { border-right:0; }
1066
- .product-view .box-up-sell .products-grid td img { border:1px solid #e5dcc3; }
1067
- .product-view .box-up-sell .products-grid .product-image { text-align:center; }
1068
- .product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; }
1069
- .product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1070
-
1071
- /* Block: Tags */
1072
- .product-view .box-tags { margin:0; }
1073
- .product-view .box-tags h3 { font-size:13px; }
1074
- .product-view .box-tags .product-tags { display:block; margin:0 0 15px; }
1075
- .product-view .box-tags .product-tags li { display:inline; background:url(../images/bkg_pipe3.gif) 100% 4px no-repeat; padding:0 7px 0 4px; }
1076
- .product-view .box-tags .product-tags li.first { padding-left:0; }
1077
- .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1078
- .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1079
- .product-view .box-tags .form-add .input-box { float:left; width:305px; margin:0 5px 0 0; background:url(../images/i_tag_add.gif) 0 2px no-repeat; padding:0 0 0 23px; }
1080
- .product-view .box-tags .form-add input.input-text { width:299px; }
1081
- .product-view .box-tags .form-add button.button span { border-color:#406a83; background:#618499; }
1082
- .product-view .box-tags .note { margin:3px 0 0; padding:0 0 0 23px; font-size:11px; }
1083
-
1084
- /* Block: Reviews */
1085
- .product-view .box-reviews dl { margin:15px 0; }
1086
- .product-view .box-reviews dt a,
1087
- .product-view .box-reviews dt span { font-weight:bold; }
1088
- .product-view .box-reviews dd { margin:0 0 15px; }
1089
- .product-view .box-reviews dd small { font-style:italic; }
1090
- .product-view .box-reviews .form-add { margin:15px 0 0; }
1091
- .product-view .box-reviews .form-add h3 { font-size:13px; font-weight:normal; }
1092
- .product-view .box-reviews .form-add h3 span { font-weight:bold; }
1093
- .product-view .box-reviews .form-add h4 { font-size:12px; }
1094
- .product-view .box-reviews .form-add .data-table td { text-align:center; }
1095
- .product-view .box-reviews .form-add .form-list { margin:15px 0 0; }
1096
- .product-view .box-reviews .form-add .form-list .input-box { width:360px; }
1097
- .product-view .box-reviews .form-add .form-list input.input-text,
1098
- .product-view .box-reviews .form-add .form-list textarea { width:354px; }
1099
-
1100
- /* Send a Friend */
1101
- .send-friend .form-list { width:615px; overflow:hidden; }
1102
- .send-friend .form-list li { margin-right:-15px; }
1103
- .send-friend .form-list li p { margin:0 15px 0 0; }
1104
- .send-friend .form-list .field { width:315px; }
1105
- .send-friend .form-list .input-box { width:300px; }
1106
- .send-friend .form-list input.input-text,
1107
- .send-friend .form-list textarea { width:294px; }
1108
- .send-friend .form-list li.wide .input-box { width:612px; }
1109
- .send-friend .form-list li.wide textarea { width:609px; }
1110
- .send-friend .buttons-set .limit { float:right; margin:0 7px 0 0; font-size:11px; line-height:21px; }
1111
- /* ======================================================================================= */
1112
-
1113
-
1114
- /* Content Styles ================================================================= */
1115
- .product-name { margin:0; font-size:1em; font-weight:normal; }
1116
- .product-name a { }
1117
-
1118
- /* Product Tags */
1119
- .tags-list { display:block; font-size:13px; border:none; background:none; padding:10px; }
1120
- .tags-list li { display:inline !important; margin:0 4px 0 0; }
1121
- .tags-list li a { color:#1b2d3b; }
1122
-
1123
- /* Advanced Search */
1124
- .advanced-search .form-list label { width:160px; padding-right:10px; }
1125
- .advanced-search .form-list .input-box,
1126
- .advanced-search .form-list .input-range { float:left; clear:none; }
1127
- .advanced-search-amount { margin:0 0 10px; }
1128
- .advanced-search-summary { margin:10px 0; border:1px solid #e9d7c9; background:#fff6f1; padding:10px; }
1129
- .advanced-search-summary ul { float:left; width:49%; }
1130
- .advanced-search-summary strong { color:#E17C24; padding-left:15px; background:url(../images/i_search_criteria.gif) 0 3px no-repeat; }
1131
- .advanced-search-summary p { clear:both; font-weight:bold; margin:0; }
1132
-
1133
- /* CMS Home Page */
1134
- .cms-home .subtitle {}
1135
- .cms-index-index .subtitle {}
1136
-
1137
- /* Sitemap */
1138
- .page-sitemap .links { text-align:right; margin:0 8px -22px 0; }
1139
- .page-sitemap .links a { text-decoration:none; position:relative; }
1140
- .page-sitemap .links a:hover { text-decoration:underline; }
1141
- .page-sitemap .sitemap { margin:12px; }
1142
- .page-sitemap .sitemap a { color:#1b2d3b; }
1143
- .page-sitemap .sitemap li { margin:3px 0; }
1144
- .page-sitemap .sitemap li.level-0 { margin:10px 0 0; font-weight:bold; }
1145
- .page-sitemap .sitemap li.level-0 a { color:#1e7ec8; }
1146
-
1147
- /* RSS */
1148
- .rss-title h1 { background:url(../images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
1149
- .rss-table .link-rss { display:block; line-height:1.55; background-position:0 4px; }
1150
- /* ======================================================================================= */
1151
-
1152
-
1153
- /* Shopping Cart ========================================================================= */
1154
- .cart .page-title { border-bottom:0; margin:0 0 12px; }
1155
- .cart .page-title h1 { margin:10px 0 0; }
1156
- .cart button { margin:8px 0 0; }
1157
-
1158
- /* Checkout Types */
1159
- .cart .page-title .checkout-types li { margin:0 0 5px; }
1160
- .cart .title-buttons .checkout-types { float:right; }
1161
- .cart .title-buttons .checkout-types li { float:left; margin:0 0 5px 5px; }
1162
- .cart .checkout-types .paypal-or { margin:0 8px; line-height:2.3; }
1163
- .cart .totals .checkout-types .paypal-or { clear:both; display:block; padding:8px 55px 0 0; line-height:1.0; font-size:11px; }
1164
-
1165
- /* Shopping Cart Table */
1166
- .cart-table th { padding:2px 10px; }
1167
- .cart-table td { padding:10px; }
1168
- .cart-table .product-name { font-weight:bold; margin:0 0 5px; color:#2f2f2f; }
1169
- .cart-table .item-msg { margin:5px 0; font-size:11px; font-weight:bold; color:#df280a; }
1170
- .cart-table tfoot td { padding:5px 10px; }
1171
- .cart-table .btn-continue { float:left; }
1172
- .cart-table .btn-empty span,
1173
- .cart-table .btn-continue span,
1174
- .cart-table .btn-update span { border-color:#406a83; background:#618499; }
1175
- .cart-table .btn-update,
1176
- .cart-table .btn-empty { float:right; }
1177
- .cart-table .btn-update { margin-left:10px; }
1178
-
1179
- /* Shopping Cart Collateral boxes */
1180
- .cart .cart-collaterals { padding:25px 0 0; }
1181
- .cart .cart-collaterals .col2-set { float:left; width:605px; }
1182
- .cart .cart-collaterals .col2-set .col-2 { width:294px; }
1183
-
1184
- .cart .crosssell { border:1px solid #cec3b6; background:#fafaec; padding:12px 15px; }
1185
- .cart .crosssell h2 { font-size:13px; font-weight:bold; }
1186
- .cart .crosssell .product-image { float:left; width:75px; height:75px; border:1px solid #d0cdc9; }
1187
- .cart .crosssell .product-details { margin-left:90px; }
1188
- .cart .crosssell .product-name { font-weight:bold; }
1189
- .cart .crosssell li.item { margin:12px 0; }
1190
- .cart .crosssell .link-compare { font-weight:normal; }
1191
-
1192
- /* Discount Codes & Estimate Shipping and Tax Boxes */
1193
- .cart .discount,
1194
- .cart .shipping { border:1px solid #d0cbc1; background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; padding:12px 15px; margin:0 0 18px; }
1195
- .cart .discount h2,
1196
- .cart .shipping h2 { background-position:0 0; background-repeat:no-repeat; font:bold 13px/16px Arial, Helvetica, sans-serif; padding:0 0 0 21px; color:#e26703; text-transform:uppercase; }
1197
- .cart .discount button span,
1198
- .cart .shipping button span { border-color:#406a83; background:#618499; }
1199
- .cart .discount .buttons-set,
1200
- .cart .shipping .buttons-set { margin:10px 0 0; border:0; padding:0; text-align:left; }
1201
- .cart .discount .buttons-set button.button,
1202
- .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1203
-
1204
- .cart .discount h2 { background-image:url(../images/i_discount.gif); }
1205
- .cart .discount .input-box { margin:8px 0 0; width:260px; }
1206
- .cart .discount input.input-text { width:254px; }
1207
-
1208
- .cart .shipping h2 { background-image:url(../images/i_shipping.gif); }
1209
- .cart .shipping .sp-methods { margin:10px 0 0; padding:5px 0 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; }
1210
-
1211
- /* Shopping Cart Totals */
1212
- .cart .totals { float:right; width:268px; background:#dee5e8; border:1px solid #bebcb7; }
1213
- .cart .totals table { width:100%; margin:7px 0; }
1214
- .cart .totals td { padding:1px 15px 1px 7px; }
1215
- .cart .totals tr.last td {}
1216
- .cart .totals tfoot th { padding:5px 15px 5px 7px; }
1217
- .cart .totals tfoot td { padding-top:5px; padding-bottom:5px; }
1218
- .cart .totals tfoot th strong,
1219
- .cart .totals tfoot td strong { font-size:15px; }
1220
- .cart .totals .checkout-types { font-size:13px; padding:8px 15px 15px; text-align:right; }
1221
- .cart .totals .checkout-types li { clear:both; margin:10px 0; }
1222
-
1223
- /* Options Tool Tip */
1224
- .item-options dt { font-weight:bold; font-style:italic; }
1225
- .item-options dd { padding-left:10px; margin:0 0 6px; }
1226
- .truncated { cursor:help; }
1227
- .truncated a.dots { cursor:help; }
1228
- .truncated a.details { cursor:help; }
1229
- .truncated .truncated_full_value { position:relative; z-index:999; }
1230
- .truncated .truncated_full_value .item-options { position:absolute; top:-99999em; left:-99999em; z-index:999; width:250px; padding:8px; border:1px solid #ddd; background-color:#f6f6f6; }
1231
- .truncated .truncated_full_value .item-options > p { font-weight:bold; text-transform:uppercase; }
1232
- .truncated .show .item-options { top:-20px; left:50%; }
1233
- .col-left .truncated .show .item-options { left:15px; top:7px; }
1234
- .col-right .truncated .show .item-options { left:-240px; top:7px; }
1235
- /* ======================================================================================= */
1236
-
1237
-
1238
- /* Checkout ============================================================================== */
1239
- /********** < Common Checkout Styles */
1240
- /* Shipping and Payment methods */
1241
- .sp-methods { margin:0 0 8px; }
1242
- .sp-methods dt { margin:13px 0 5px; font-weight:bold; }
1243
- .sp-methods dd {}
1244
- .sp-methods dd li { margin:5px 0; }
1245
- .sp-methods label { font-weight:bold; color:#666; }
1246
- .sp-methods .price { font-weight:bold; }
1247
- .sp-methods .form-list { padding-left:20px; }
1248
- .sp-methods .form-list li { margin:0 0 8px; }
1249
- .sp-methods select.month { width:154px; margin-right:10px; }
1250
- .sp-methods select.year { width:96px; }
1251
- .sp-methods input.cvv { width:3em !important; }
1252
-
1253
- .sp-methods .checkmo-list li { margin:0 0 5px; }
1254
- .sp-methods .checkmo-list label { width:135px; padding-right:10px; text-align:right; }
1255
- .sp-methods .checkmo-list address { float:left; }
1256
-
1257
- .sp-methods .centinel-logos a { margin-right:3px; }
1258
- .sp-methods .centinel-logos img { vertical-align:middle; }
1259
-
1260
- .sp-methods .release-amounts { margin:0.5em 0; }
1261
- .sp-methods .release-amounts button { float:left; margin:5px 10px 0 0; }
1262
-
1263
- .please-wait { float:right; }
1264
- .please-wait img { vertical-align:middle; }
1265
- .cvv-what-is-this { font-size:11px; cursor:help; margin-left:10px; }
1266
-
1267
- /* Tooltip */
1268
- .tool-tip { border:1px solid #7BA7C9; background:#EAF6FF; padding:15px 20px; position:absolute; z-index:9999; }
1269
- .tool-tip .btn-close { margin:-9px -14px 0; text-align:right; }
1270
- .tool-tip .btn-close a { display:block; margin:0 0 0 auto; width:15px; height:15px; background:url(../images/btn_window_close.gif) 100% 0 no-repeat; text-align:left; text-indent:-999em; overflow:hidden; }
1271
- .tool-tip .tool-tip-content { padding:5px; }
1272
-
1273
- /* Gift Messages */
1274
- .gift-messages h3 { font-size:12px; font-weight:bold; color:#e87403; }
1275
- .gift-messages p.control { color:#8e8d8b; }
1276
- .gift-messages-form { position:relative; }
1277
- .gift-messages-form label { float:none !important; position:static !important; }
1278
- .gift-messages-form h4 { font-size:12px; font-weight:bold; color:#e87403; }
1279
- .gift-messages-form .whole-order { margin:0 0 25px; }
1280
- .gift-messages-form .item { margin:0 0 10px; }
1281
- .gift-messages-form .item .product-img-box { float:left; width:75px; }
1282
- .gift-messages-form .item .product-image { margin:0 0 7px; }
1283
- .gift-messages-form .item .number { margin:0; font-weight:bold; text-align:center; color:#8a8987; }
1284
- .gift-messages-form .item .details { margin-left:90px; }
1285
- .gift-messages-form .item .details .product-name { font-size:13px; font-weight:bold; margin:0 0 10px; }
1286
- .gift-messages-form .item .details .form-list .field { width:255px; }
1287
- .gift-messages-form .item .details .form-list .input-box { width:240px; }
1288
- .gift-messages-form .item .details .form-list input.input-text { width:234px; }
1289
- .gift-messages-form .item .details .form-list li.wide .input-box { width:500px; }
1290
- .gift-messages-form .item .details .form-list li.wide textarea { width:494px; }
1291
-
1292
- .gift-message-link { font-size:11px; background:url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat; padding-right:7px; }
1293
- .gift-message-link.expanded { background-position:100% -40px; }
1294
- .gift-message-row { background:#f2efe9; }
1295
- .gift-message-row .btn-close { float:right; width:16px; height:16px; background:url(../images/btn_gm-close.gif) 0 0 no-repeat; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
1296
-
1297
- /* Checkout Agreements */
1298
- .checkout-agreements li { margin:30px 0; }
1299
- .checkout-agreements .agreement-content { overflow:auto; height:12em; padding:10px; background-color:#fbfaf6; border:1px solid #bbb6a5; }
1300
- .checkout-agreements .agree { margin:0; padding:10px 0 10px 11px; }
1301
- .checkout-agreements .agree input.checkbox { margin-right:6px; }
1302
- .checkout-agreements .agree label { font-weight:bold; color:#666; }
1303
-
1304
- .opc .checkout-agreements { border:1px solid #d9dde3; border-width:0 1px; padding:5px 30px; }
1305
- .opc .checkout-agreements li { margin:20px 0 0; }
1306
- .opc .checkout-agreements .agreement-content { background-color:#fff; border-color:#e4e4e4; padding:5px; }
1307
- .opc .checkout-agreements .agree { padding-left:6px; }
1308
-
1309
- /* Centinel */
1310
- .centinel {}
1311
- .centinel .authentication { border:1px solid #ddd; background:#fff; }
1312
- .centinel .authentication iframe { width:99%; height:400px; background:transparent !important; margin:0 !important; padding:0 !important; border:0 !important; }
1313
-
1314
- .opc .centinel { border:1px solid #bbb6a5; border-width:0 1px 1px; padding:10px 30px; }
1315
-
1316
- /* Generic Info Set */
1317
- .info-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1318
- .info-set h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1319
- .info-set h3,
1320
- .info-set h4 { font-size:13px; font-weight:bold; color:#E26703; }
1321
- .info-set h2 a,
1322
- .info-set h3 a,
1323
- .info-set h4 a { font-weight:normal; }
1324
- .info-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1325
- .info-set h3.legend { margin:0 0 10px; color:#0a263c; }
1326
- .info-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1327
- .info-set .box { margin:0 0 15px; }
1328
- .info-set .box h2 { color:#e26703; }
1329
- .info-set .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1330
- .info-set .data-table .product-name a { font-weight:bold !important; }
1331
- .info-set .data-table .item-options { margin:5px 0 0; }
1332
- /********** Common Checkout Styles > */
1333
-
1334
- /* One Page Checkout */
1335
- .block-progress { border:0; margin:0; }
1336
- .block-progress .block-title { background:none; border:0; margin:0 0 5px; }
1337
- .block-progress .block-title strong { font-size:13px; color:#0a263c; }
1338
- .block-progress .block-content { background:none; }
1339
- .block-progress dt { font-size:13px; font-weight:bold; line-height:1.35; background:#eee; border:1px solid #a3aeb3; margin:0 0 6px; padding:2px 8px; color:#999; }
1340
- .block-progress dd { background:#eee; border:1px solid #a3aeb3; border-top:0; padding:8px 13px; margin:0 0 6px; }
1341
- .block-progress dt.complete { margin:0; background:#d0dce1; color:#5e8ab4; }
1342
- .block-progress dd.complete {}
1343
- .block-progress p { margin:0; }
1344
- .block-progress .cards-list dt { background:none; border:0 none; color:inherit; font-size:12px; margin:5px 0; padding:0; }
1345
- .block-progress .cards-list dd { border:0 none; margin:0; padding:0; }
1346
- .block-progress .cards-list .info-table th { font-weight:normal; }
1347
-
1348
- /* show/hide "change" link for progress step depend on complete status
1349
- * should be placed in .css file */
1350
- .opc-block-progress dt.complete a,
1351
- .opc-block-progress dt.complete .separator { display: inline; }
1352
- .opc-block-progress dt a,
1353
- .opc-block-progress dt .separator { display: none; }
1354
-
1355
- .opc .buttons-set { margin-top:0; padding-top:2em; }
1356
- .opc .buttons-set p.required { margin:0; padding:0 0 10px; }
1357
- .opc .buttons-set .back-link small { display:none; }
1358
- .opc .buttons-set .back-link a { background:url(../images/i_arrow-top.gif) 0 50% no-repeat; padding-left:16px; }
1359
- .opc .buttons-set.disabled button.button { display:none; }
1360
- .opc .buttons-set .please-wait { height:21px; line-height:21px; }
1361
- .opc .ul { list-style:disc outside; padding-left:18px; }
1362
-
1363
- .opc { position:relative; }
1364
- .opc li.section {}
1365
-
1366
- .opc .step-title { border-width:0 1px; border-style:solid; border-color:#fff #d9dde3 #d9dde3; background:#eee url(../images/bkg_opc-title-off.gif) 0 100% repeat-x; padding:4px 8px 6px; text-align:right; }
1367
- .opc .step-title .number { float:left; background:#fff; border:1px solid #fff; padding:0 4px; margin:0 5px 0 0; font:bold 11px/14px arial, helvetica, sans-serif; color:#999; }
1368
- .opc .step-title h2 { float:left; margin:0; font:bold 13px/16px Arial, Helvetica, sans-serif; color:#999; }
1369
- .opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }
1370
-
1371
- .opc .allow .step-title { background:#d0dce1; border:1px solid #a3aeb3; border-bottom:0; color:#a4b3b9; cursor:pointer; }
1372
- .opc .allow .step-title .number { background:#dbe6eb; border-color:#dbe6eb; color:#a4b3b9; }
1373
- .opc .allow .step-title h2 { color:#a4b3b9; }
1374
- /*.opc .allow .step-title a { display:block; }*/
1375
-
1376
- .opc .active .step-title { background:#f9f3e3; border:1px solid #bbafa0; padding-bottom:5px; color:#f18200; cursor:default; }
1377
- .opc .active .step-title .number { background:#f18200; border-color:#f19900; color:#fff; }
1378
- .opc .active .step-title h2 { color:#f18200; }
1379
- /*.opc .active .step-title a { display:none; }*/
1380
-
1381
- .opc .step { border:1px solid #bbafa0; border-top:0; background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; padding:15px 30px; position:relative; }
1382
- .opc .step .tool-tip { right:30px; }
1383
-
1384
- #opc-login .buttons-set { border-top:0; }
1385
- #opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
1386
- #opc-login h4 { font-size:1em; font-weight:bold; margin:0; color:#2f2f2f; }
1387
-
1388
- #opc-shipping_method .buttons-set { border-top:0; }
1389
- .opc .gift-messages-form { margin:0 -30px; background:#f6f1eb; border:1px solid #e9e4de; border-width:1px 0; padding:22px 24px 22px 30px; }
1390
- .opc .gift-messages-form .inner-box { padding:5px; height:260px; overflow:auto; }
1391
-
1392
- #opc-review .step { border:0; padding:0; }
1393
- #opc-review .product-name { font-weight:bold; color:#0a263c; }
1394
- #opc-review .item-options { margin:5px 0 0; }
1395
- #opc-review .buttons-set { padding:20px 30px; border:1px solid #d9dde3; border-width:0 1px 1px; }
1396
- #opc-review .buttons-set p { margin:0; line-height:40px; }
1397
- #opc-review .buttons-set .please-wait { height:40px; line-height:40px; }
1398
- #opc-review .authentication { margin:0 auto; width:570px; }
1399
- #opc-review .warning-message { color:#222; font-weight:bold; text-align:center; padding:10px 10px 0; }
1400
-
1401
- /* Multiple Addresses Checkout */
1402
- .checkout-progress { padding:0 90px; margin:0 0 20px; }
1403
- .checkout-progress li { float:left; width:19%; margin:0 3px 0 0; border-top:10px solid #999; padding:2px 0 0; font-weight:bold; text-align:center; color:#abb5ba; }
1404
- .checkout-progress li.active { border-top-color:#e96200; color:#e96200; }
1405
-
1406
- .multiple-checkout h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1407
- .multiple-checkout h3,
1408
- .multiple-checkout h4 { font-size:13px; font-weight:bold; color:#E26703; }
1409
- .multiple-checkout h2 a,
1410
- .multiple-checkout h3 a,
1411
- .multiple-checkout h4 a { font-weight:normal; }
1412
- .multiple-checkout .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1413
- .multiple-checkout .data-table .product-name a { font-weight:bold !important; }
1414
- .multiple-checkout .data-table .item-options { margin:5px 0 0; }
1415
-
1416
- .multiple-checkout .gift-messages { margin:15px 0 0; }
1417
-
1418
- .multiple-checkout .tool-tip { top:50%; margin-top:-120px; right:20px; }
1419
-
1420
- .multiple-checkout .col2-set,
1421
- .multiple-checkout .col3-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1422
- .multiple-checkout .col2-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1423
- .multiple-checkout .col2-set h3.legend { margin:0 0 10px; color:#0a263c; }
1424
- .multiple-checkout .col2-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1425
- .multiple-checkout .box { margin:0 0 15px; }
1426
- .multiple-checkout .box h2 { color:#e26703; }
1427
-
1428
- .multiple-checkout .place-order .please-wait { float:right; padding:27px 7px 0 0; }
1429
- .multiple-checkout .place-order .grand-total { float:right; height:71px; font-size:1.5em; padding:0 0 0 21px; background:url(../images/bkg_grand-total.gif) 0 0 no-repeat; overflow:hidden; }
1430
- .multiple-checkout .place-order .grand-total .inner { float:left; height:57px; padding:14px 21px 0 0; background:url(../images/bkg_grand-total.gif) 100% 0 no-repeat; }
1431
- .multiple-checkout .place-order .grand-total .inner div { display:inline; }
1432
- .multiple-checkout .place-order .grand-total big { display:inline; margin-right:12px; }
1433
- .multiple-checkout .place-order .grand-total .price { color:#E26703; }
1434
- .multiple-checkout .place-order .grand-total button.button span { font-size:16px; }
1435
- .multiple-checkout .place-order .grand-total button.button span span { padding:0 45px 0 36px; }
1436
-
1437
- /* Step 1 */
1438
- .multiple-checkout .title-buttons button.button span { border-color:#406a83; background:#618499; }
1439
- #multiship-addresses-table td { padding:10px; }
1440
- #multiship-addresses-table tfoot td { padding:5px 10px; }
1441
- #multiship-addresses-table tfoot button.button span { border-color:#406a83; background:#618499; }
1442
-
1443
- /* Step 2 */
1444
- .multiple-checkout .gift-messages-form .item .details .form-list { width:100%; overflow:hidden; }
1445
- .multiple-checkout .gift-messages-form .item .details .form-list li { margin-right:-15px; }
1446
- .multiple-checkout .gift-messages-form .item .details .form-list .field { width:230px; }
1447
- .multiple-checkout .gift-messages-form .item .details .form-list .input-box { width:215px; }
1448
- .multiple-checkout .gift-messages-form .item .details .form-list input.input-text { width:209px; }
1449
- .multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box { width:445px; }
1450
- .multiple-checkout .gift-messages-form .item .details .form-list li.wide textarea { width:439px; }
1451
- .checkout-multishipping-shipping .box-sp-methods { border:1px solid #d9d2be; background:#f9f3e3; padding:13px; position:relative; }
1452
- .checkout-multishipping-shipping .box-sp-methods .pointer { position:absolute; top:-20px; right:-40px; width:178px; height:41px; background:url(../images/bkg_sp-methods.gif) 0 0 no-repeat; overflow:hidden; }
1453
-
1454
- /* Step 3 */
1455
- .checkout-multishipping-billing .multiple-checkout { position:relative; }
1456
- /* ======================================================================================= */
1457
-
1458
-
1459
- /* Account Login/Create Pages ============================================================ */
1460
- .account-login .content { min-height:240px; padding:14px 21px; background:#faf7ee url(../images/bkg_login-box.gif) 0 0 repeat-x; border:1px solid #bbb6a5; border-bottom:0; }
1461
- .account-login .content h2 { font-weight:bold; font-size:13px; margin:0 0 14px; padding:0 0 5px 23px; border-bottom:1px solid #ddd; background-position:0 1px; background-repeat:no-repeat; text-transform:uppercase; color:#e76200; }
1462
- .account-login .new-users h2 { background-image:url(../images/i_page1.gif)}
1463
- .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1464
- .account-login .buttons-set { border:1px solid #bbb6a5; border-top:0; margin:0; padding:8px 13px; background:#dee5e8 url(../images/bkg_buttons-set1.gif) 0 0 repeat-x; }
1465
-
1466
- .account-create {}
1467
-
1468
- /* Captcha ================================================================================ */
1469
- .captcha-note { clear:left; padding-top:5px; }
1470
- .captcha-image { float:left; display:inline; margin:0; position:relative; width:258px; }
1471
- .captcha-image .captcha-img { border:1px solid #b6b6b6; vertical-align:bottom; width:100%; }
1472
- .registered-users .captcha-image { margin:0;}
1473
- .captcha-reload { cursor:pointer; position:absolute; top:2px; right:2px;}
1474
- .captcha-reload.refreshing { animation:rotate 1.5s infinite linear; -webkit-animation:rotate 1.5s infinite linear; -moz-animation:rotate 1.5s infinite linear; }
1475
-
1476
- @-webkit-keyframes rotate {
1477
- 0% { -webkit-transform:rotate(0); }
1478
- 0% { -webkit-transform:rotate(-360deg); }
1479
- }
1480
- @-moz-keyframes rotate {
1481
- 0% { -moz-transform:rotate(0); }
1482
- 0% { -moz-transform:rotate(-360deg); }
1483
- }
1484
- @keyframes rotate {
1485
- 0% { transform:rotate(0); }
1486
- 0% { transform:rotate(-360deg); }
1487
- }
1488
-
1489
- /* Remember Me Popup ===================================================================== */
1490
- .window-overlay { background:url(../images/window_overlay.png) repeat; background:rgba(0, 0, 0, 0.35); position:absolute; top:0; left:0; height:100%; width:100%; z-index:990; }
1491
-
1492
- .remember-me label { float:none; margin:0 6px; }
1493
- .remember-me-popup { background:#fff; border:1px solid #ccc; left:50%; top:50%; position:absolute; margin:-85px 0 0 -200px; width:400px; text-align:left; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; -box-shadow:0 0 6px #ccc; z-index:1000; }
1494
- .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:14px; padding:5px 10px; }
1495
- .remember-me-popup .remember-me-popup-head { position:relative; }
1496
- .remember-me-popup .remember-me-popup-head .remember-me-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:7px; right:7px; height:15px; width:15px; text-indent:-9999em; }
1497
- .remember-me-popup .remember-me-popup-body { padding:10px; }
1498
- .remember-me-popup .remember-me-popup-body a { display:inline-block; height:19px; border:1px solid #de5400; background:#f18200; padding:0 8px; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; text-decoration:none; white-space:nowrap; color:#fff; }
1499
- /* Remember Me Popup ===================================================================== */
1500
-
1501
-
1502
- /* My Account ============================================================================= */
1503
- .my-account .title-buttons .link-rss { float:none; margin:0; }
1504
-
1505
- /********** < Dashboard */
1506
- .dashboard .welcome-msg { margin:0 8em 1.5em 0; }
1507
- .dashboard .welcome-msg p { margin:0; }
1508
- .dashboard .col2-set { margin:0 0 15px; }
1509
-
1510
- /* General Box */
1511
- .box-account { background:#fff url(../images/bkg_account_box.gif) 0 0 repeat-x; border:1px solid #ccc; border-color:#ccc #999 #999 #ccc; padding:15px; margin: 0 0 20px; }
1512
- .box-account .box-head { border-bottom:1px solid #d9dde3; margin:0 0 10px; text-align:right; }
1513
- .box-account .box-head h2 { float:left; margin:0; font-size:13px; font-weight:bold; text-transform:uppercase; background-position:0 0; background-repeat:no-repeat; padding-left:21px; color:#e65505; }
1514
-
1515
- .dashboard .box .box-title { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 2px; margin:0 0 8px; text-align:right; }
1516
- .dashboard .box .box-title h3,
1517
- .dashboard .box .box-title h4 { float:left; font-size:13px; font-weight:bold; margin:0; }
1518
-
1519
- /* Block: Recent Orders */
1520
- .dashboard .box-recent .box-head h2 { background-image:url(../images/i_folder-table.gif); }
1521
-
1522
- /* Block: Account Information */
1523
- .dashboard .box-info .box-head h2 { background-image:url(../images/i_ma-info.gif); }
1524
- .dashboard .box-info h4 { font-size:11px; font-weight:bold; text-transform:uppercase; }
1525
-
1526
- /* Block: Reviews */
1527
- .dashboard .box-reviews .box-head h2 { background-image:url(../images/i_ma-reviews.gif); }
1528
- .dashboard .box-reviews .number { float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
1529
- .dashboard .box-reviews .details { margin-left:20px; }
1530
- .dashboard .box-reviews li.item { margin:0 0 7px; }
1531
- .dashboard .box-reviews li.item.last { margin:0; }
1532
- .dashboard .box-reviews .ratings { margin:7px 0 0; }
1533
-
1534
- /* Block: Tags */
1535
- .dashboard .box-tags .box-head h2 { background-image:url(../images/i_ma-tags.gif); }
1536
- .dashboard .box-tags .number { float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
1537
- .dashboard .box-tags .details { margin-left:20px; }
1538
- .dashboard .box-tags li.item { margin:0 0 7px; }
1539
- .dashboard .box-tags li.item.last { margin:0; }
1540
- .dashboard .box-tags .tags strong,
1541
- .dashboard .box-tags .tags ul,
1542
- .dashboard .box-tags .tags ul li { display:inline; }
1543
- /********** Dashboard > */
1544
-
1545
- /* Address Book */
1546
- .addresses-list h2 { font-weight:bold; font-size:13px; color:#e26703; text-transform:uppercase; }
1547
- .addresses-list h3 { font-weight:bold; font-size:13px; }
1548
- .addresses-list address { margin:0 0 3px; }
1549
- .addresses-list p { margin:0; }
1550
- .addresses-list a { font-weight:bold; }
1551
- .addresses-list .link-remove { color:#646464; }
1552
- .addresses-list .separator { margin:0 3px; }
1553
- .addresses-list li.item { background:#fff url(../images/bkg_account_box.gif) 0 0 repeat-x; border:1px solid #ccc; padding:10px 13px; margin:0 0 10px; }
1554
- .addresses-list li.empty { background:none; border:0; padding:0; }
1555
- .addresses-list li.empty p { font-weight:bold; }
1556
- .addresses-list .addresses-additional li.item { background:none; border:0; padding:0; }
1557
-
1558
- /* Order View */
1559
- .order-info { background:#dee5e8; border:1px solid #d0cbc1; padding:4px 8px; margin:0 0 8px; }
1560
- .order-info dt,
1561
- .order-info dd,
1562
- .order-info ul,
1563
- .order-info li { display:inline; }
1564
- .order-info .current { font-weight:bold; }
1565
- .order-info li { margin:0 3px; }
1566
-
1567
- .order-date { margin:10px 0; }
1568
-
1569
- .order-info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
1570
- .order-info-box h2 { font-weight:bold; font-size:13px; }
1571
- .order-info-box .box-payment p { margin:0 0 3px; }
1572
- .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
1573
-
1574
- .order-items { width:100%; overflow-x:auto; }
1575
- .order-items h2,
1576
- .order-items h3 { font-weight:bold; font-size:13px; }
1577
- .order-items .product-name { font-size:1em !important; font-weight:bold !important; }
1578
- .order-items .link-print { color:#1e7ec8; font-weight:normal; }
1579
- .order-items .order-links { text-align:right; }
1580
-
1581
- .order-additional { margin:15px 0; }
1582
- /* Order Gift Message */
1583
- .gift-message dt strong { color:#666; }
1584
- .gift-message dd { font-size:13px; margin:5px 0 0; }
1585
- /* Order Comments */
1586
- .order-about dt { font-weight:bold; }
1587
- .order-about dd { font-size:13px; margin:0 0 7px; }
1588
-
1589
- .tracking-table { margin:0 0 15px; }
1590
- .tracking-table th { font-weight:bold; white-space:nowrap; }
1591
-
1592
- .tracking-table-popup { width:100%; }
1593
- .tracking-table-popup th { font-weight:bold; white-space:nowrap; }
1594
- .tracking-table-popup th,
1595
- .tracking-table-popup td { padding:1px 8px; }
1596
-
1597
- /* Order Print Pages */
1598
- .page-print .print-head { margin:0 0 15px; }
1599
- .page-print .print-head .logo { float:left; }
1600
- .page-print .print-head address { float:left; margin-left:15px; }
1601
- .page-print h1 { font-size:16px; font-weight:bold; }
1602
- .page-print h2,
1603
- .page-print h3 { font-size:13px; font-weight:bold; }
1604
- .page-print h2.h2 { font-size:16px; font-weight:bold; }
1605
- .page-print .order-date { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 10px; margin:0 0 10px; }
1606
- .page-print .col2-set { margin:0 0 10px; }
1607
- /* Price Rewrites */
1608
- .page-print .gift-message-link { display:none; }
1609
- .page-print .price-excl-tax,
1610
- .page-print .price-incl-tax { display:block; white-space:nowrap; }
1611
- .page-print .cart-price,
1612
- .page-print .price-excl-tax .label,
1613
- .page-print .price-incl-tax .label,
1614
- .page-print .price-excl-tax .price,
1615
- .page-print .price-incl-tax .price { display:inline; }
1616
-
1617
- /* My Wishlist */
1618
- .my-wishlist .data-table td { padding:10px; }
1619
- .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 0 5px; }
1620
- .my-wishlist textarea { display:block; width:97%; height:109px; }
1621
- .my-wishlist .buttons-set { margin-top:2em; }
1622
- .my-wishlist .buttons-set button.button { float:none; }
1623
- .my-wishlist .buttons-set .btn-add span,
1624
- .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }
1625
- #wishlist-table .add-to-links { white-space:nowrap; }
1626
-
1627
- /* My Tags */
1628
- .my-tag-edit { float:left; margin:0 0 10px; }
1629
- .my-tag-edit .btn-remove { float:right; margin:4px 0 0 5px; }
1630
- #my-tags-table { clear:both; }
1631
- #my-tags-table td { padding:10px; }
1632
- #my-tags-table .add-to-links { white-space:nowrap; }
1633
-
1634
- /* My Reviews */
1635
- #my-reviews-table td { padding:10px; }
1636
-
1637
- .product-review .product-img-box { float:left; width:140px; }
1638
- .product-review .product-img-box .product-image { display:block; width:125px; height:125px; }
1639
- .product-review .product-img-box .label { font-size:11px; margin:0 0 3px; }
1640
- .product-review .product-img-box .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1641
- .product-review .product-details { margin-left:150px; }
1642
- .product-review .product-name { font-size:16px; font-weight:bold; margin:0 0 10px; }
1643
- .product-review h3 { font-size:12px; margin:0 0 3px; color:#2f2f2f; }
1644
- .product-review .ratings-table { margin:0 0 10px; }
1645
- .product-review dt { font-weight:bold; }
1646
- .product-review dd { font-size:13px; margin:5px 0 0; }
1647
-
1648
- /* Billing Agreements */
1649
- .billing-agreements .info-box{ margin:15px 0; }
1650
- .billing-agreements .form-list li select { float:left; }
1651
- .billing-agreements .form-list li button.button { float:left; margin-left:10px; }
1652
- .billing-agreements .table-caption { font-weight:bold; font-size:13px; }
1653
- /* ======================================================================================= */
1654
-
1655
-
1656
- /* MAP Popup============================================================================== */
1657
- .cart-msrp-totals { color:red; font-size:12px !important; font-weight:bold; margin:10px 10px 0; padding:10px; text-align:right; text-transform:uppercase;}
1658
- .map-cart-sidebar-total { color:red; display:block; font-size:10px; font-weight:bold; text-align:left; padding:2px 5px; text-shadow:0 1px 0 #fff; }
1659
-
1660
- .map-popup { background:#fff; border:1px solid #aaa; margin:12px 0 0; position:absolute; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; box-shadow:0 0 6px #ccc; text-align:left; width:300px; z-index:100; }
1661
- .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:5px 30px 5px 10px; width:260px; }
1662
- .map-popup-heading h2 { font-size:16px; margin:0; text-shadow:0 1px 0 #f6f6f6; overflow:hidden; white-space:nowrap; word-wrap:break-word; text-align:left; text-overflow:ellipsis; }
1663
- .map-popup-arrow { background:url(../images/map_popup_arrow.gif) no-repeat; position:absolute; left:50%; top:-10px; height:10px; width:19px; }
1664
- .map-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:8px; right:10px; height:15px; width:15px; text-indent:-9999em; -moz-box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; box-shadow:0 0 3px #999; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
1665
- .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:left; width:280px; }
1666
- .map-popup-checkout { display:inline; float:right; text-align:right; }
1667
- .map-popup-checkout span { display:block; padding-right:30px; }
1668
- .map-popup-checkout .paypal-logo { margin:0 0 5px; }
1669
- .map-popup-price .price-box,
1670
- .map-popup-price .price-box .special-price { margin:0; padding:0; }
1671
- .map-popup-price { margin:5px 0 0; }
1672
- .map-popup-text { clear:right; margin:0 10px; padding:10px 0; text-align:left; word-wrap:break-word; }
1673
- .map-popup-only-text { border-top:1px solid #ddd; }
1674
- /* ======================================================================================= */
1675
-
1676
-
1677
- /* Footer ================================================================================ */
1678
- .footer-container { }
1679
- .footer { }
1680
- .footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
1681
- .footer .store-switcher label { font-weight:bold; vertical-align:middle; }
1682
- .footer .store-switcher select { padding:0; vertical-align:middle; }
1683
- .footer a { color:#fff; text-decoration:none; }
1684
- .footer a:hover { text-decoration:underline; }
1685
- .footer .bugs { margin:13px 0 0; color:#ecf3f6; }
1686
- .footer .bugs a { color:#ecf3f6; text-decoration:underline; }
1687
- .footer .bugs a:hover { text-decoration:none; }
1688
- .footer address { margin:0 0 20px; color:#ecf3f6; }
1689
- .footer address a { color:#ecf3f6; text-decoration:underline; }
1690
- .footer address a:hover { text-decoration:none; }
1691
- .footer ul { display:inline; }
1692
- .footer ul.links { display:block; }
1693
- .footer li { display:inline; background:url(../images/bkg_pipe2.gif) 100% 60% no-repeat; padding:0 7px 0 4px; }
1694
- .footer li.last { background:none !important; padding-right:0 !important; }
1695
- .footer-container .bottom-container { margin:0 0 5px; }
1696
- /* ======================================================================================= */
1697
-
1698
- /* Sample Data============================================================================ */
1699
- .home-callout { margin-bottom:12px; }
1700
- .home-callout img { display:block }
1701
- .home-spot { float:left; width:470px; margin-left:20px; }
1702
- .best-selling h3 { margin:12px 0 6px 0; color:#e25203; font-size:1.2em; }
1703
- .best-selling table { border-top:1px solid #ccc; }
1704
- .best-selling tr.odd { background:#eee url(../images/best_selling_tr_odd_bg.gif) 0 100% repeat-x; }
1705
- .best-selling tr.even { background:#fff url(../images/best_selling_tr_even_bg.gif) 0 100% repeat-x; }
1706
- .best-selling td { width:50%; border-bottom:1px solid #ccc; padding:8px 10px 8px 8px; font-size:11px; }
1707
- .best-selling .product-img { float:left; border:2px solid #dcdcdc; }
1708
- .best-selling .product-description { margin-left:107px; line-height:1.3em; }
1709
- .best-selling a.product-name,
1710
- .home-spot .best-selling a.product-name:hover { color:#203548; }
1711
- /* ======================================================================================= */
1712
-
1713
-
1714
- /* Clears ================================================================================ */
1715
- .clearer:after,
1716
- .header-container:after,
1717
- .header-container .top-container:after,
1718
- .header:after,
1719
- .header .quick-access:after,
1720
- #nav:after,
1721
- .main:after,
1722
- .footer:after,
1723
- .footer-container .bottom-container:after,
1724
- .col-main:after,
1725
- .col2-set:after,
1726
- .col3-set:after,
1727
- .col3-layout .product-options-bottom .price-box:after,
1728
- .col4-set:after,
1729
- .search-autocomplete li:after,
1730
- .block .block-content:after,
1731
- .block .actions:after,
1732
- .block li.item:after,
1733
- .block-poll li:after,
1734
- .block-layered-nav .currently li:after,
1735
- .page-title:after,
1736
- .products-grid:after,
1737
- .products-list li.item:after,
1738
- .box-account .box-head:after,
1739
- .dashboard .box .box-title:after,
1740
- .box-reviews li.item:after,
1741
- .box-tags li.item:after,
1742
- .pager:after,
1743
- .sorter:after,
1744
- .ratings:after,
1745
- .add-to-box:after,
1746
- .add-to-cart:after,
1747
- .product-essential:after,
1748
- .product-collateral:after,
1749
- .product-view .product-img-box .more-views ul:after,
1750
- .product-view .box-tags .form-add:after,
1751
- .product-view .product-shop .short-description:after,
1752
- .product-view .box-description:after,
1753
- .product-options .options-list li:after,
1754
- .product-options-bottom:after,
1755
- .product-review:after,
1756
- .cart:after,
1757
- .cart-collaterals:after,
1758
- .cart .crosssell li.item:after,
1759
- .opc .step-title:after,
1760
- .checkout-progress:after,
1761
- .multiple-checkout .place-order:after,
1762
- .group-select li:after,
1763
- .form-list li:after,
1764
- .form-list .field:after,
1765
- .buttons-set:after,
1766
- .page-print .print-head:after,
1767
- .advanced-search-summary:after,
1768
- .gift-messages-form .item:after,
1769
- .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1770
- /* ======================================================================================= */
1771
-
1772
- .guest-select {width:305px !important;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_green/images/Thumbs.db DELETED
Binary file
skin/frontend/default/f001_green/images/account_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/account_nav_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/ajax_loader.gif DELETED
Binary file
skin/frontend/default/f001_green/images/base_mini_actions_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/base_mini_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/base_mini_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/base_mini_tabs_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/best_selling_tr_even_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/best_selling_tr_odd_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bg_collapse.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bg_tierico.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bg_tierico1.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_account_box.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-actions.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-currency.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-layered-dd.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-layered-dt.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-layered-label.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-layered-li.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-layered-title.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-layered1.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-title-account.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_block-title.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_checkout.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_collapse-gm.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_collapse.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_divider1.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_form-search.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_grand-total.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_grid.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_nav2.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_opc-title-off.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_pipe1.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_pipe2.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_pipe3.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_product-view.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_products-grid3.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_rating.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_sp-methods.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_tfoot.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_th-v.gif DELETED
Binary file
skin/frontend/default/f001_green/images/bkg_th.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_edit.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_gm-close.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_google_checkout.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_mini_search.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_paypal_checkout.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_place_order.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_previous.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_proceed_to_checkout.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_proceed_to_checkout.png DELETED
Binary file
skin/frontend/default/f001_green/images/btn_proceed_to_checkout_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_proceed_to_checkout_dis.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_proceed_to_checkout_rad.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_remove.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_remove2.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_search.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_trash.gif DELETED
Binary file
skin/frontend/default/f001_green/images/btn_window_close.gif DELETED
Binary file
skin/frontend/default/f001_green/images/button.gif DELETED
Binary file
skin/frontend/default/f001_green/images/calendar.gif DELETED
Binary file
skin/frontend/default/f001_green/images/catalog/product/placeholder/image.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/catalog/product/placeholder/small_image.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/catalog/product/placeholder/thumbnail.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/chart_remove.gif DELETED
Binary file
skin/frontend/default/f001_green/images/checkout_progress_corner.gif DELETED
Binary file
skin/frontend/default/f001_green/images/close.gif DELETED
Binary file
skin/frontend/default/f001_green/images/common.gif DELETED
Binary file
skin/frontend/default/f001_green/images/container.gif DELETED
Binary file
skin/frontend/default/f001_green/images/currency_switcher_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/customer_reviews_pager_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/cvv.gif DELETED
Binary file
skin/frontend/default/f001_green/images/cvv.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/data_table_th_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/dotted_divider.gif DELETED
Binary file
skin/frontend/default/f001_green/images/error_msg_icon.gif DELETED
Binary file
skin/frontend/default/f001_green/images/fam_book_open.png DELETED
Binary file
skin/frontend/default/f001_green/images/fam_world.png DELETED
Binary file
skin/frontend/default/f001_green/images/form_button.gif DELETED
Binary file
skin/frontend/default/f001_green/images/form_button_alt.gif DELETED
Binary file
skin/frontend/default/f001_green/images/free_shipping_callout.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/gift-message-close.gif DELETED
Binary file
skin/frontend/default/f001_green/images/gift-message-collapse.gif DELETED
Binary file
skin/frontend/default/f001_green/images/gift-message-expand.gif DELETED
Binary file
skin/frontend/default/f001_green/images/glider_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/grid-cal.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_arrow-top.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_asc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_asterick.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_availability_only.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_availability_only_arrow.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-cart.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-currency.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-list.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-poll.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-related.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-subscribe.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-tags.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-viewed.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_block-wishlist.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_cart_infobar.png DELETED
Binary file
skin/frontend/default/f001_green/images/i_desc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_discount.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_facebook.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_folder-table.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_folder_table.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_lorry.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_ma-info.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_ma-reviews.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_ma-tags.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_ma_info.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_ma_reviews.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_ma_tags.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_msg-error.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_msg-note.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_msg-success.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_newsletter.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_notice.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_opc_back.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_page1.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_page2.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_page_white.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_page_white_text.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_pager-next.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_pager-prev.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_print.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_rss-big.png DELETED
Binary file
skin/frontend/default/f001_green/images/i_rss.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_search_criteria.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_shipping.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_special_price.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_tag_add.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_tier.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_twitter.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_twitter_large.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_type_grid.gif DELETED
Binary file
skin/frontend/default/f001_green/images/i_type_list.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_asterick.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_big_rss.png DELETED
Binary file
skin/frontend/default/f001_green/images/icon_cart_item_remove.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_lorry.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_ma_info.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_ma_reviews.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_ma_tags.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_opc_back.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_page_white.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_page_white_text.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_rss.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_special_price.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_tag_add.gif DELETED
Binary file
skin/frontend/default/f001_green/images/icon_world.gif DELETED
Binary file
skin/frontend/default/f001_green/images/ie/Thumbs.db DELETED
Binary file
skin/frontend/default/f001_green/images/list_remove_btn.gif DELETED
Binary file
skin/frontend/default/f001_green/images/listing_type_grid.gif DELETED
Binary file
skin/frontend/default/f001_green/images/listing_type_list.gif DELETED
Binary file
skin/frontend/default/f001_green/images/magnifier_handle.gif DELETED
Binary file
skin/frontend/default/f001_green/images/map_popup_arrow.gif DELETED
Binary file
skin/frontend/default/f001_green/images/media/404_callout1.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/404_callout2.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/Thumbs.db DELETED
Binary file
skin/frontend/default/f001_green/images/media/about_us_img.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/best_selling_img01.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/best_selling_img02.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/best_selling_img03.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/best_selling_img04.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/best_selling_img05.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/best_selling_img06.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/callout_side1.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/callout_side2.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/cell_phone_landing_banner1.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/col_left_callout.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/col_right_callout.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/electronics_cellphones.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/electronics_digitalcameras.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/electronics_laptops.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/furniture_callout_spot.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/furnitures_bed_room.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/furnitures_living_room.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/head_electronics_cellphones.gif DELETED
Binary file
skin/frontend/default/f001_green/images/media/head_electronics_digicamera.gif DELETED
Binary file
skin/frontend/default/f001_green/images/media/head_electronics_laptops.gif DELETED
Binary file
skin/frontend/default/f001_green/images/media/laptop_callout_mid1.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/laptop_callout_mid2.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/laptop_callout_mid3.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/laptop_callout_spot.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/media/shirts_landing_banner1.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/mini_search_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/multi_address_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/narrow_by_dd_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/np_cart_thumb.gif DELETED
Binary file
skin/frontend/default/f001_green/images/np_more_img.gif DELETED
Binary file
skin/frontend/default/f001_green/images/np_product_main.gif DELETED
Binary file
skin/frontend/default/f001_green/images/np_thumb.gif DELETED
Binary file
skin/frontend/default/f001_green/images/np_thumb2.gif DELETED
Binary file
skin/frontend/default/f001_green/images/opc-ajax-loader.gif DELETED
Binary file
skin/frontend/default/f001_green/images/opc_off_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/opc_on_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/page_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/pager_arrow_left.gif DELETED
Binary file
skin/frontend/default/f001_green/images/pager_arrow_right.gif DELETED
Binary file
skin/frontend/default/f001_green/images/pager_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/payments.gif DELETED
Binary file
skin/frontend/default/f001_green/images/point-con.gif DELETED
Binary file
skin/frontend/default/f001_green/images/product_collateral_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/product_essential_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/product_info_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/product_rating_blank_star.gif DELETED
Binary file
skin/frontend/default/f001_green/images/product_rating_full_star.gif DELETED
Binary file
skin/frontend/default/f001_green/images/product_zoom_overlay_magnif.gif DELETED
Binary file
skin/frontend/default/f001_green/images/saved_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/search_criteria.gif DELETED
Binary file
skin/frontend/default/f001_green/images/search_form_button.gif DELETED
Binary file
skin/frontend/default/f001_green/images/separator.gif DELETED
Binary file
skin/frontend/default/f001_green/images/shipping_method_pointer.gif DELETED
Binary file
skin/frontend/default/f001_green/images/slider_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/slider_btn_zoom_in.gif DELETED
Binary file
skin/frontend/default/f001_green/images/slider_btn_zoom_out.gif DELETED
Binary file
skin/frontend/default/f001_green/images/slogan.gif DELETED
Binary file
skin/frontend/default/f001_green/images/sort_asc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_green/images/sort_desc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_green/images/spacer.gif DELETED
Binary file
skin/frontend/default/f001_green/images/success_msg_icon.gif DELETED
Binary file
skin/frontend/default/f001_green/images/validation_advice_bg.gif DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/catalog/category/placeholder/image.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/catalog/category/placeholder/small_image.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/catalog/category/placeholder/thumbnail.jpg DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/tab_account.png DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/tab_cart.png DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/tab_home.png DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/tab_more.png DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/tab_page.png DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/tab_search.png DELETED
Binary file
skin/frontend/default/f001_green/images/xmlconnect/tab_shop.png DELETED
Binary file
skin/frontend/default/f001_green/js/glider.js DELETED
@@ -1,190 +0,0 @@
1
- /**
2
- * @author Bruno Bornsztein <bruno@missingmethod.com>
3
- * @copyright 2007 Curbly LLC
4
- * @package Glider
5
- * @license MIT
6
- * @url http://www.missingmethod.com/projects/glider/
7
- * @version 0.0.3
8
- * @dependencies prototype.js 1.5.1+, effects.js
9
- */
10
-
11
- /* Thanks to Andrew Dupont for refactoring help and code cleanup - http://andrewdupont.net/ */
12
-
13
- Glider = Class.create();
14
- Object.extend(Object.extend(Glider.prototype, Abstract.prototype), {
15
- initialize: function(wrapper, options){
16
- this.handStopped = false;
17
- this.scrolling = false;
18
- this.wrapper = $(wrapper);
19
- this.scroller = this.wrapper.down('div.scroller');
20
- this.sections = this.wrapper.getElementsBySelector('div.sectionslide');
21
- this.options = Object.extend({ duration: 1.0, frequency: 3 }, options || {});
22
-
23
- this.sections.each( function(section, index) {
24
- section._index = index;
25
- });
26
-
27
- this.events = {
28
- click: this.click.bind(this),
29
- mouseover: this.pause.bind(this),
30
- mouseout: this.resume.bind(this)
31
- };
32
-
33
- this.addObservers();
34
- if(this.options.initialSection)
35
- this.moveTo(this.options.initialSection, this.scroller, { duration:this.options.duration }); // initialSection should be the id of the section you want to show up on load
36
- if(this.options.autoGlide)
37
- this.start();
38
- },
39
-
40
- addObservers: function() {
41
- this.wrapper.observe('mouseover', this.events.mouseover);
42
- this.wrapper.observe('mouseout', this.events.mouseout);
43
-
44
- var descriptions = this.wrapper.getElementsBySelector('div.sliderdescription');
45
- descriptions.invoke('observe', 'mouseover', this.makeActive);
46
- descriptions.invoke('observe', 'mouseout', this.makeInactive);
47
-
48
- var controls = this.wrapper.getElementsBySelector('div.slidercontrol a');
49
- controls.invoke('observe', 'click', this.events.click);
50
-
51
- },
52
-
53
- click: function(event) {
54
- var element = Event.findElement(event, 'a');
55
-
56
- if (this.scrolling) this.scrolling.cancel();
57
- this.moveTo(element.href.split("#")[1], this.scroller, { duration:this.options.duration });
58
- Event.stop(event);
59
- },
60
-
61
- moveTo: function(element, container, options) {
62
- this.current = $(element);
63
- Position.prepare();
64
- var containerOffset = Position.cumulativeOffset(container);
65
- var elementOffset = Position.cumulativeOffset(this.current);
66
-
67
- this.scrolling = new Effect.SmoothScroll(container, {
68
- duration:options.duration,
69
- x:(elementOffset[0]-containerOffset[0]),
70
- y:(elementOffset[1]-containerOffset[1])
71
- });
72
-
73
- if (typeof element == 'object')
74
- element = element.id;
75
-
76
- this.toggleControl($$('a[href="#'+element+'"]')[0]);
77
-
78
- return false;
79
- },
80
-
81
- next: function(){
82
- if (this.current) {
83
- var currentIndex = this.current._index;
84
- var nextIndex = (this.sections.length - 1 == currentIndex) ? 0 : currentIndex + 1;
85
- } else var nextIndex = 1;
86
-
87
- this.moveTo(this.sections[nextIndex], this.scroller, {
88
- duration: this.options.duration
89
- });
90
-
91
- },
92
-
93
- previous: function(){
94
- if (this.current) {
95
- var currentIndex = this.current._index;
96
- var prevIndex = (currentIndex == 0) ? this.sections.length - 1 :
97
- currentIndex - 1;
98
- } else var prevIndex = this.sections.length - 1;
99
-
100
- this.moveTo(this.sections[prevIndex], this.scroller, {
101
- duration: this.options.duration
102
- });
103
- },
104
-
105
- makeActive: function(event)
106
- {
107
- var element = Event.findElement(event, 'div');
108
- element.addClassName('active');
109
- },
110
-
111
- makeInactive: function(event)
112
- {
113
- var element = Event.findElement(event, 'div');
114
- element.removeClassName('active');
115
- },
116
-
117
- toggleControl: function(el)
118
- {
119
- $$('.slidercontrol a').invoke('removeClassName', 'active');
120
- el.addClassName('active');
121
- },
122
-
123
- stop: function()
124
- {
125
- this.handStopped = true;
126
- clearTimeout(this.timer);
127
- },
128
-
129
- start: function()
130
- {
131
- this.handStopped = false;
132
- this.periodicallyUpdate();
133
- },
134
-
135
- pause: function()
136
- {
137
- if (!this.handStopped) {
138
- clearTimeout(this.timer);
139
- this.timer = null;
140
- }
141
- },
142
-
143
- resume: function()
144
- {
145
- if (!this.handStopped)
146
- this.periodicallyUpdate();
147
- },
148
-
149
- periodicallyUpdate: function()
150
- {
151
- if (this.timer != null) {
152
- clearTimeout(this.timer);
153
- this.next();
154
- }
155
- this.timer = setTimeout(this.periodicallyUpdate.bind(this), this.options.frequency*1000);
156
- }
157
-
158
- });
159
-
160
- Effect.SmoothScroll = Class.create();
161
- Object.extend(Object.extend(Effect.SmoothScroll.prototype, Effect.Base.prototype), {
162
- initialize: function(element) {
163
- this.element = $(element);
164
- var options = Object.extend({
165
- x: 0,
166
- y: 0,
167
- mode: 'absolute'
168
- } , arguments[1] || {} );
169
- this.start(options);
170
- },
171
- setup: function() {
172
- if (this.options.continuous && !this.element._ext ) {
173
- this.element.cleanWhitespace();
174
- this.element._ext=true;
175
- this.element.appendChild(this.element.firstChild);
176
- }
177
-
178
- this.originalLeft=this.element.scrollLeft;
179
- this.originalTop=this.element.scrollTop;
180
-
181
- if(this.options.mode == 'absolute') {
182
- this.options.x -= this.originalLeft;
183
- this.options.y -= this.originalTop;
184
- }
185
- },
186
- update: function(position) {
187
- this.element.scrollLeft = this.options.x * position + this.originalLeft;
188
- this.element.scrollTop = this.options.y * position + this.originalTop;
189
- }
190
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_green/js/productInfo.js DELETED
@@ -1,114 +0,0 @@
1
- var ProductInfo = Class.create();
2
- ProductInfo.prototype = {
3
- settings: {
4
- 'loadingMessage': 'Please wait ...'
5
- },
6
-
7
- initialize: function(selector, x_image, settings)
8
- {
9
- Object.extend(this.settings, settings);
10
- this.createWindow();
11
-
12
- var that = this;
13
- $$(selector).each(function(el, index){
14
- el.observe('click', that.loadInfo.bind(that));
15
- })
16
- $$(x_image).each(function(el, index){
17
- el.observe('mouseover', that.showButton);
18
- el.observe('mouseout', that.hideButton);
19
- })
20
-
21
- },
22
-
23
- createLoader: function()
24
- {
25
- var loader = new Element('div', {id: 'ajax-preloader'});
26
- loader.innerHTML = "<p class='loading'><img src="+this.settings.loader+" /><br/>"+this.settings.loadingMessage+"</p>";
27
- document.body.appendChild(loader);
28
- $('ajax-preloader').setStyle({
29
- position: 'absolute',
30
- top: document.viewport.getScrollOffsets().top + 200 + 'px',
31
- left: document.body.clientWidth/2 - 75 + 'px'
32
- });
33
- },
34
-
35
- destroyLoader: function()
36
- {
37
- $('ajax-preloader').remove();
38
- },
39
-
40
- showButton: function(e)
41
- {
42
- el = this;
43
- while (el.tagName != 'P') {
44
- el = el.up();
45
- }
46
- var btn = $(el).getElementsBySelector('.ajax')[0];
47
- btn && btn.setStyle({
48
- display: 'block'
49
- })
50
- },
51
-
52
- hideButton: function(e)
53
- {
54
- el = this;
55
- while (el.tagName != 'P') {
56
- el = el.up();
57
- }
58
- var btn = $(el).getElementsBySelector('.ajax')[0];
59
- btn && btn.setStyle({
60
- display: 'none'
61
- })
62
- },
63
-
64
- createWindow: function()
65
- {
66
- var qWindow = new Element('div', {id: 'quick-window'});
67
- qWindow.innerHTML = '<div id="quickview-header"><a href="javascript:void(0)" id="quickview-close"></a></div><div class="quick-view-content"></div>';
68
- document.body.appendChild(qWindow);
69
- $('quickview-close').observe('click', this.hideWindow.bind(this));
70
- },
71
-
72
- showWindow: function()
73
- {
74
- $('quick-window').setStyle({
75
- top: document.viewport.getScrollOffsets().top + 100 + 'px',
76
- left: document.body.clientWidth/2 - $('quick-window').getWidth()/2 + 'px',
77
- display: 'block'
78
- });
79
- },
80
-
81
- setContent: function(content)
82
- {
83
- $$('.quick-view-content')[0].insert(content);
84
- },
85
-
86
- clearContent: function()
87
- {
88
- $$('.quick-view-content')[0].replace('<div class="quick-view-content"></div>');
89
- },
90
-
91
- hideWindow: function()
92
- {
93
- this.clearContent();
94
- $('quick-window').hide();
95
- },
96
-
97
- loadInfo: function(e)
98
- {
99
- if (typeof event != 'undefined') { // ie9 fix
100
- event.preventDefault ? event.preventDefault() : event.returnValue = false;
101
- }
102
- Event.stop(e);
103
- var that = this;
104
- this.createLoader();
105
- new Ajax.Request(e.element().href, {
106
- onSuccess: function(response) {
107
- that.clearContent();
108
- that.setContent(response.responseText);
109
- that.destroyLoader();
110
- that.showWindow();
111
- }
112
- });
113
- }
114
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_green/js/slider.js DELETED
@@ -1,89 +0,0 @@
1
- var Slider = Class.create();
2
- Slider.prototype = {
3
- options: {
4
- shift: 900
5
- },
6
-
7
- initialize: function(container, controlLeft, controlRight){
8
- this.animating = false;
9
- this.containerSize = {
10
- width: $(container).offsetWidth,
11
- height: $(container).offsetHeight
12
- },
13
- this.content = $(container).down();
14
- this.controlLeft = $(controlLeft);
15
- this.controlRight = $(controlRight);
16
-
17
- this.initControls();
18
- },
19
-
20
- initControls: function(){
21
- this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
22
- Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
23
- Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
24
- this.updateControls(1, 0);
25
- },
26
-
27
- shiftRight: function(){
28
- if (this.animating)
29
- return;
30
-
31
- var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
32
-
33
- if ((left + this.options.shift) < 0) {
34
- var shift = this.options.shift;
35
- this.updateControls(1, 1);
36
- } else {
37
- var shift = Math.abs(left);
38
- this.updateControls(1, 0);
39
- }
40
- this.moveTo(shift);
41
- },
42
-
43
- shiftLeft: function(){
44
- if (this.animating)
45
- return;
46
-
47
- var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
48
-
49
- var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
50
- var lastItemWidth = this.content.childElements().last().getWidth();
51
- var contentWidth = lastItemLeft + lastItemWidth + 8;
52
-
53
- if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
54
- var shift = this.options.shift;
55
- this.updateControls(1, 1);
56
- } else {
57
- var shift = contentWidth + left - this.containerSize.width;
58
- this.updateControls(0, 1);
59
- }
60
- this.moveTo(-shift);
61
- },
62
-
63
- moveTo: function(shift){
64
- var scope = this;
65
-
66
- this.animating = true;
67
-
68
- new Effect.Move(this.content, {
69
- x: shift,
70
- duration: 0.4,
71
- delay: 0,
72
- afterFinish: function(){
73
- scope.animating = false;
74
- }
75
- });
76
- },
77
-
78
- updateControls: function(left, right){
79
- if (!left)
80
- this.controlLeft.addClassName('disabled');
81
- else
82
- this.controlLeft.removeClassName('disabled');
83
-
84
- if (!right)
85
- this.controlRight.addClassName('disabled');
86
- else
87
- this.controlRight.removeClassName('disabled');
88
- }
89
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_grey/css/custom.css DELETED
@@ -1,329 +0,0 @@
1
- /*
2
- * body : #bebebe;
3
- * .footer .informational li ul li a : #f2f2f2;
4
- * .footer .informational h6 : #f2f2f2;
5
- * .footer .legality a : #d6d6d6;
6
- * #nav a : #d1d1d1;
7
- * .header-cart .title : #d1d1d1;
8
- * .header .form-language label : #d1d1d1;
9
- * .recently .subtitle : #3297db;
10
- * .page-title h1 : #3297db;
11
- * .featured-products h4 : #1E7EC8;
12
- */
13
-
14
- body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #bebebe; color:#2F2F2F}
15
-
16
- h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
17
- a {color:#1E7EC8; text-decoration:underline; }
18
-
19
- .header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
20
- .quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
21
-
22
- .header {z-index: 100;}
23
- .header .logo { margin: 0; }
24
- .shop-access{float:right; margin:0; font-size:1em;}
25
- .shop-access a{color:#7386BE; text-decoration:none}
26
- .shop-access a:hover { text-decoration: underline; }
27
- .header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
28
- .header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
29
- .main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
30
- .header .form-search label{display:none}
31
- .header .form-search button.button{width:20px}
32
- .header .form-search button.button span { background: none; }
33
-
34
- .page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
35
- .page-title h1 {color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
36
-
37
- .block-content a{}
38
- .block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
39
- .block-subscribe .block-title strong{background:none}
40
- .block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
41
- .block-subscribe label{font-weight:bold; color:#FFF}
42
- .block-subscribe .actions{margin-top:15px}
43
- .block-cart .subtotal{background:#eee}
44
-
45
- .block-tags .block-content ul { border: none; }
46
-
47
- .block-layered-nav{}
48
- .block-layered-nav .block-title{ padding:0px; }
49
-
50
- .block-layered-nav{padding:5px 10px}
51
- .block-layered-nav .block-subtitle,
52
- .block-layered-nav .block-content{background:none; border:0px solid #ddd}
53
- .block-layered-nav dt{padding:7px 10px 0 7px}
54
- .block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
55
- .block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
56
- .block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
57
- .block-layered-nav dd li a:hover { text-decoration: underline; }
58
-
59
- h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
60
- .products-grid h5 a{color:#007ed3; text-decoration:none}
61
- .products-grid .ratings .amount{display:none}
62
- .products-grid .actions{}
63
- /*************************Buttons*************************/
64
- button.button{background:none; border:0px solid #000}
65
-
66
- .button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
67
- .button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
68
- .button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
69
- .button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
70
-
71
- /**ALT BTNS**/
72
- .grey-box .button span,
73
- .cart-table .btn-continue span,
74
- .cart-table .btn-update span,
75
- .cart-table .btn-empty span,
76
- .cart .discount button span,
77
- .cart .shipping button span,
78
- .block-compare button.button span,
79
- .block-poll button.button span,
80
- .block-login .actions button.button span,
81
- .product-view .box-tags .form-add button.button span,
82
- .multiple-checkout .title-buttons button.button span,
83
- #multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
84
- .grey-box .button:hover span,
85
- .cart-table .btn-continue:hover span,
86
- .cart-table .btn-update:hover span,
87
- .cart-table .btn-empty:hover span,
88
- .cart .discount button:hover span,
89
- .cart .shipping button:hover span,
90
- .block-compare button.button:hover span,
91
- .block-poll button.button:hover span,
92
- .block-login .actions button.button:hover span,
93
- .product-view .box-tags .form-add button.button:hover span,
94
- .multiple-checkout .title-buttons button.button:hover span,
95
- #multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
96
- .grey-box .button span span,
97
- .cart-table .btn-continue span span,
98
- .cart-table .btn-update span span,
99
- .cart-table .btn-empty span span,
100
- .cart .discount button span span,
101
- .cart .shipping button span span,
102
- .block-compare button.button span span,
103
- .block-poll button.button span span,
104
- .block-login .actions button.button span span,
105
- .product-view .box-tags .form-add button.button span span,
106
- .multiple-checkout .title-buttons button.button span span,
107
- #multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
108
- .grey-box .button:hover span span,
109
- .cart-table .btn-continue:hover span span,
110
- .cart-table .btn-update:hover span span,
111
- .cart-table .btn-empty:hover span span,
112
- .cart .discount button:hover span span,
113
- .cart .shipping button:hover span span,
114
- .block-compare button.button:hover span span,
115
- .block-poll button.button:hover span span,
116
- .block-login .actions button.button:hover span span,
117
- .product-view .box-tags .form-add button.button:hover span span,
118
- .multiple-checkout .title-buttons button.button:hover span span,
119
- #multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
120
-
121
- .block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
122
- .block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
123
-
124
- .block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
125
- .block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
126
-
127
- button.btn-checkout span span{padding:0 16px}
128
- /****************************End Buttons***************************/
129
- .footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
130
- .footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
131
-
132
-
133
- /********** < Navigation */
134
- #nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
135
-
136
- /* All Levels */ /* Style consistent throughout all nav levels */
137
- #nav li { position:relative; text-align:left; }
138
- #nav li.over { z-index:998; }
139
- #nav a,
140
- #nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
141
- #nav span { display:block; cursor:pointer; white-space:nowrap; }
142
- #nav li ul span {white-space:normal; }
143
-
144
- /* 0 Level */
145
- #nav li { float:left; }
146
- #nav a{float:left; color:#d1d1d1; font-weight:bold}
147
- #nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
148
- #nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
149
- /*#nav li.first span{padding-left:18px}*/
150
- #nav li.over a,
151
- #nav a:hover{color:#fff}
152
-
153
- /* 1st Level */
154
- #nav ul li,
155
- #nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
156
- #nav li.active li a,
157
- #nav ul li.active a{background:#fff}
158
- /*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
159
- */
160
- #nav ul li.last { background:#ecf3f6; padding-bottom:0; }
161
-
162
- #nav ul a,
163
- #nav ul a:hover { float:none; padding:0; background:none; }
164
- #nav ul li a { font-weight:normal !important; }
165
-
166
- /* 2nd Level */
167
- #nav ul,
168
- #nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
169
- #nav div ul { position:static; width:auto; border:none; }
170
- #nav ul span {background:none}
171
-
172
- /* 3rd+ Level */
173
- #nav ul ul,
174
- #nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
175
-
176
- #nav ul li a {background:#fff}
177
- #nav ul li a:hover {background:#f4f4f4}
178
- #nav ul li.over > a {background:#f4f4f4}
179
- #nav ul li a,
180
- #nav ul li a:hover {color:#2f2f2f !important}
181
- #nav ul span,
182
- #nav ul li.last li span {padding:4px 15px 5px 15px}
183
-
184
- /* Show menu */
185
- #nav li ul.shown-sub,
186
- #nav li div.shown-sub { left:-1px; z-index:999; }
187
- #nav li .shown-sub ul.shown-sub,
188
- #nav li .shown-sub li div.shown-sub { left:100px; }
189
- /********** Navigation > */
190
- /* ======================================================================================= */
191
-
192
- .cms-home .nav-home a,
193
- .contacts-index-index .nav-contacts a,
194
- .cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
195
- .cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
196
-
197
- .f-right{float:right}
198
- .f-left{float:left}
199
- .a-right{text-align:right}
200
- .a-left{text-align:left}
201
- .a-center{text-align:center}
202
-
203
- .header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
204
-
205
- .header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
206
- .header-cart .head{margin:0; overflow:hidden; cursor:pointer}
207
- .header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#d1d1d1; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
208
- .header-cart .title a{color:#fff}
209
- .header-cart .content{background:#f3f8fb; padding:0}
210
- .header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
211
- .header-cart .content li a:hover{color:#333}
212
- .header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
213
- .header-cart .title a{color:#fff}
214
-
215
- .header .form-language label {color: #d1d1d1;}
216
-
217
- .slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
218
-
219
- #nav-sidebox{font-size:1.1em}
220
- #nav-sidebox a{text-decoration:none; color:#000}
221
- #nav-sidebox a:hover{text-decoration:underline}
222
- #nav-sidebox li{line-height:22px; font-weight:bold}
223
- #nav-sidebox li ul li{font-weight:normal; margin:0}
224
- #nav-sidebox ul{}
225
- #nav-sidebox ul li{padding-left:10px}
226
- #nav-sidebox ul li ul{display:none}
227
-
228
- .featured-container{margin-bottom:20px}
229
- .featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
230
- .featured-top{background:url(../images/container.png) no-repeat -1957px 0}
231
-
232
- .mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
233
- .mini-newsletter label{color:#fff}
234
- .mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
235
- .mini-newsletter .input-text{border:none; padding:4px 2px}
236
- .mini-newsletter .form-button-alt{background-position:100% -256px}
237
- .mini-newsletter .form-button-alt span{background-position:0 -228px}
238
- .mini-newsletter .form-button-alt:hover{background-position:100% -314px}
239
- .mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
240
- .mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
241
-
242
- .recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
243
-
244
- .recently .last{border-bottom:0px solid #FFF}
245
- .recently .subtitle{color:#3297db; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
246
- .recently li.item{width:167px; float:left; padding:10px 10px 40px;}
247
- .recently li.item .price-box{}
248
- .recently li.item .actions { position: absolute; bottom: 12px; }
249
-
250
- .category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
251
- .product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
252
- h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
253
- a.product-name:hover { text-decoration: underline; }
254
-
255
- .regular-price .price{color:#777; font-size:13px; font-weight:bold}
256
-
257
- .footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
258
- .footer .informational li{float:left; margin:0 40px; display: inline;}
259
- .footer .informational li ul li{float:none; margin:0; display: block;}
260
- .footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f2f2f2; font-size:0.9em}
261
- .footer .informational li ul li a:hover { text-decoration: underline; }
262
- .footer .informational h6{margin-bottom:0.4em; color:#f2f2f2; font-size:1.1em}
263
-
264
- .footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #a8a8a8; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
265
-
266
- .footer .payments{float:right; margin:5px 0 0}
267
- .footer .legality{text-align:center; color:#FFF; font-size: .9em}
268
- .footer .legality a{color:#d6d6d6; text-decoration: none;}
269
-
270
- /* glider */
271
- #slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
272
- div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
273
- div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
274
- div.scroller img{ border:none}
275
- div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
276
- div.scroller div.content{ width:10000px; padding:0px}
277
- .content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
278
-
279
- .content .sliderdescription p{line-height:20px; text-align:center}
280
- div.sliderdescription:hover{background:#fff}
281
- .content a{text-decoration:none; color:#5a5a5a}
282
- .content a:hover{text-decoration:underline}
283
-
284
- .slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
285
- .slidercontrol{list-style:none; padding:0px; margin:0px}
286
-
287
- .slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
288
-
289
- .slidercontrol a:hover,
290
- .slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
291
-
292
- /* slider */
293
- .featured-products{clear:both; padding:7px 15px; position:relative; overflow:hidden;}
294
- .featured-products h4{margin-right:10px; color:#1E7EC8; padding-left:7px; font:normal 1.3em Verdana,Geneva,Arial,Helvetica,sans-serif}
295
- .featured-products .head{text-align:left; margin:0; padding:21px 0}
296
- .featured-products #move-left,
297
- .featured-products #move-right{position:absolute; right:15px; top:140px; width:22px; height:18px; float:left; background:url(../images/common.gif) no-repeat -335px -390px; text-indent:-9999px; overflow: hidden;}
298
- .featured-products #move-right{background-position:-335px -450px; right:940px !important; }
299
- .featured-products #move-left.disabled,
300
- .featured-products #move-right.disabled{opacity:0.5; filter:alpha(opacity=50)}
301
- .slider-wrapper{ clear:both; width:900px; margin-left:25px; overflow:hidden; position:relative; zoom: 1;}
302
- .slider-wrapper .list-featured{ width:10000px; padding:0; overflow:hidden}
303
- .slider-wrapper .list-featured li{ float:left; width:150px; padding:10px; border-right:1px solid #cfcfcf}
304
- .slider-wrapper .list-featured li.last{ margin:0px}
305
- .slider-wrapper .list-featured .product-image{ text-align:center}
306
- .slider-wrapper .list-featured h5{ display:table-cell; height:35px; vertical-align:middle}
307
- .slider-wrapper .list-featured .price-box{float:left; width:75px; padding:2px 0}
308
-
309
- #quick-window{position:absolute; z-index:500; background-color:#fff; width:650px; border:1px solid #aaa; display:none}
310
- #quick-window .product-img-box{width:230px; float:left}
311
- #quickview-close{background:url(../images/close.gif) no-repeat center center; float:right; width:10px; height:10px; margin:7px}
312
- #quickview-header{background-color:#888; height:26px; width:650px}
313
-
314
- #ajax-preloader{opacity:0.8; filter:alpha(opacity="80"); text-align:center; z-index:500}
315
- #ajax-preloader .loading{border:2px solid #777; color:#000; background:#eee; text-align:center; width:120px; padding:15px; font-weight:bold}
316
- #quick-window .product-shop{float:right; text-align:left; width:385px}
317
- #quick-window .product-essential{padding:25px 10px 25px 10px}
318
- .catalog-listing .product-image{position:relative}
319
- .catalog-listing .product-image .ajax{position:absolute; display:none; z-index:20}
320
-
321
- a.ajax{text-decoration:none; border:1px solid #888; background:#bbb; color:#fff; font-weight:bold; padding:1px 5px; text-align: center;}
322
- a.ajax:hover{text-decoration:none}
323
-
324
-
325
- /****Update styles ****/
326
-
327
- .footer li {background: none; display: block; padding: 0;}
328
-
329
- .product-collateral { background: #faf7ee; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_grey/css/ie8.css DELETED
@@ -1,16 +0,0 @@
1
- .form-button, .form-button-alt { background-position: 100% -28px; padding-right: 12px; }
2
- .form-button:hover { background-position: 100% -84px; }
3
- .form-button-alt { background-position: 100% -142px; }
4
- .form-button-alt:hover { background-position: 100% -200px; }
5
- .form-button span, .form-button-alt span { background-position: 0 0; }
6
- .form-button:hover span { background-position: 0 -56px; }
7
- .form-button-alt span { background-position: 0 -113px; }
8
- .form-button-alt:hover span { background-position: 0 -171px; }
9
-
10
- .mini-newsletter .form-button-alt { background-position: 100% -256px; }
11
- .mini-newsletter .form-button-alt span { background-position: 0 -227px; }
12
- .mini-newsletter .form-button-alt:hover { background-position: 100% -314px; }
13
- .mini-newsletter .form-button-alt:hover span { background-position: 0 -285px; }
14
-
15
- /*Search Autocomplete Misplase fix for IE8*/
16
- #search_autocomplete { left: 25px !important; top: 27px !important;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_grey/css/styles-ie.css DELETED
@@ -1,193 +0,0 @@
1
- /**
2
- * Magento
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the Academic Free License (AFL 3.0)
7
- * that is bundled with this package in the file LICENSE_AFL.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://opensource.org/licenses/afl-3.0.php
10
- * If you did not receive a copy of the license and are unable to
11
- * obtain it through the world-wide-web, please send an email
12
- * to license@magentocommerce.com so we can send you a copy immediately.
13
- *
14
- * DISCLAIMER
15
- *
16
- * Do not edit or add to this file if you wish to upgrade Magento to newer
17
- * versions in the future. If you wish to customize Magento for your
18
- * needs please refer to http://www.magentocommerce.com for more information.
19
- *
20
- * @category design
21
- * @package default_default
22
- * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
23
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
24
- */
25
-
26
- /* IE 6 only */
27
- * html .validation-advice { height:13px; }
28
- * html .error-msg,
29
- * html .success-msg,
30
- * html .note-msg,
31
- * html .notice-msg { height:24px; }
32
- * html .main { height:400px; }
33
- * html .account-login .content { height:240px; }
34
- .block li.item,
35
- .block-poll li,
36
- .opc li.section { vertical-align:top; }
37
- * html .window-overlay { background:#ccc; filter:alpha(opacity=50); }
38
-
39
- /* Doubled Margin Fixes */
40
- .product-view .product-img-box .more-views li,
41
- .product-view .box-tags .form-add .input-box,
42
- .sp-methods select.month { display:inline; }
43
-
44
- /********** < Navigation styles */
45
- #nav li,
46
- #nav li a { zoom:1; }
47
- #nav li { vertical-align:top; }
48
- /********** < Navigation styles */
49
-
50
- select { margin-bottom:1px; }
51
- input.radio { width:13px; height:13px; }
52
- input.checkbox { width:13px; height:13px; }
53
- button.button { height:21px; }
54
- button.button span { position:relative; }
55
- button.btn-checkout { height:40px; }
56
- #opc-review .sp-methods .input-box { float:left; }
57
- .form-list label { position:relative; z-index:0; }
58
- .form-list label.required em { position:absolute; top:0; right:-8px; }
59
-
60
- table { scrollbar-face-color:expression(runtimeStyle.scrollbarFaceColor = '#fff', cellSpacing = 0); }
61
-
62
- .product-view .product-img-box .zoom.disabled { filter:alpha(opacity=30); }
63
-
64
- .gift-messages-form { position:relative; zoom:1; }
65
-
66
- .tool-tip .btn-close a { margin:0; }
67
-
68
- .product-view .box-tags .product-tags li,
69
- .footer li { padding:0 4px 0 7px; }
70
-
71
- .product-options dd .time-picker select { margin:0; padding:0; }
72
-
73
- /* Clearer */
74
- .clearer { display:block; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
75
-
76
- /* Clears and hasLayout fixes */
77
- .header-container,
78
- .header-container .top-container,
79
- .header,
80
- .header .quick-access,
81
- #nav,
82
- .main,
83
- .footer,
84
- .footer-container .bottom-container,
85
- .col-main,
86
- .col2-set,
87
- .col3-set,
88
- .col3-layout .product-options-bottom .price-box,
89
- .col4-set,
90
- .messages li,
91
- .search-autocomplete li,
92
- .block,
93
- .block .block-content,
94
- .block .actions,
95
- .block li.item,
96
- .block-poll li,
97
- .block-poll .label,
98
- .block-layered-nav .currently li,
99
- .block-account .block-content li a,
100
- .mini-products-list .product-details,
101
- .page-title,
102
- .rss-title h1,
103
- .products-grid,
104
- .products-list li.item,
105
- .box-account .box-head,
106
- .dashboard .box .box-title,
107
- .box-reviews li.item,
108
- .box-tags li.item,
109
- .pager,
110
- .sorter,
111
- .ratings,
112
- .add-to-box,
113
- .add-to-cart,
114
- .product-essential,
115
- .product-collateral,
116
- .product-view .product-img-box .more-views ul,
117
- .product-view .box-tags .form-add,
118
- .product-view .product-shop .short-description,
119
- .product-view .box-description,
120
- .product-options .options-list li,
121
- .product-options,
122
- .product-options-bottom,
123
- .truncated,
124
- .truncated .truncated_full_value,
125
- .product-review,
126
- .cart,
127
- .cart-collaterals,
128
- .cart .crosssell li.item,
129
- .cart .discount,
130
- .opc .step-title,
131
- .opc .step,
132
- .multiple-checkout,
133
- .sp-methods,
134
- .checkout-progress,
135
- .multiple-checkout .place-order,
136
- .form-list li,
137
- .form-list .field,
138
- .group-select li,
139
- .buttons-set,
140
- .page-print .print-head,
141
- .cart-tax-total,
142
- .advanced-search-summary,
143
- .advanced-search-summary p,
144
- .gift-messages-form .item,
145
- .send-friend .form-list li p,
146
- .centinel .authentication { zoom:1; }
147
-
148
- /* Hover Fix */
149
- iframe.hover-fix { position:absolute; left:-1px; top:-1px; z-index:-1; background:transparent; filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0); }
150
-
151
-
152
- #nav ul li { vertical-align:top; }
153
-
154
- .one-page-checkout li.section { vertical-align:top; }
155
-
156
- .product-options dd ul.options-list input.form-radio { margin-top:4px; }
157
- .multi-address-checkout-box .box { zoom:1; }
158
- .multi-address-checkout-box .legend { zoom:1; position:relative; margin-left:8px; }
159
- .quick-access li { padding-right:4px; padding-left:6px;}
160
- .home-spot { display:inline; }
161
- .mini-related-items .product-details { margin-left:80px; }
162
- .mini-related-items .product-images input { zoom:1; position:relative; margin:-4px 2px 0 -4px; }
163
- .mini-related-items .product-images img { float:left; }
164
-
165
- /* Clearer */
166
- .clear { clear:both; font-size:0; line-height:0; height:0; visibility:hidden; overflow:hidden; }
167
-
168
- button.button { overflow: visible; } /* Extra-padding FIX */
169
-
170
- .button span { background-position: 100% -27px; }
171
- .button:hover span { background-position: 100% -83px; }
172
-
173
-
174
- .block-subscribe button.button span { background:url("../images/button.gif") no-repeat 100% -256px; }
175
- .block-subscribe button.button:hover span { background:url("../images/button.gif") no-repeat 100% -314px; }
176
-
177
- button.btn-checkout span { background:url("../images/button.gif") no-repeat 100% -28px; }
178
- button.btn-checkout:hover span { background:url("../images/button.gif") no-repeat 100% -84px; }
179
- button.btn-checkout span span{ background:url("../images/button.gif") no-repeat 0 0; }
180
- button.btn-checkout:hover span span{ background:url("../images/button.gif") no-repeat 0 -56px; }
181
-
182
- .footer .informational li { margin: 0 30px;}
183
-
184
- /*ie6 fixes*/
185
- * html .header { background: url(../images/ie/container.gif) no-repeat -1px 0; }
186
- * html .header-nav-container { }
187
- * html .nav-container { background: url(../images/ie/container.gif) repeat-y -980px 0; }
188
- * html .main-container { background: url(../images/ie/container.gif) no-repeat 0 100%; }
189
- * html .main { background: url(../images/ie/container.gif) repeat-y -979px 0; }
190
-
191
- .featured-center { background: url(../images/ie/container.gif) no-repeat -1957px 100% !important; zoom: 1; }
192
- .featured-top { background: url(../images/ie/container.gif) no-repeat -1957px 0 !important; }
193
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_grey/css/styles.css DELETED
@@ -1,1772 +0,0 @@
1
- /**
2
- * Magento
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the Academic Free License (AFL 3.0)
7
- * that is bundled with this package in the file LICENSE_AFL.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://opensource.org/licenses/afl-3.0.php
10
- * If you did not receive a copy of the license and are unable to
11
- * obtain it through the world-wide-web, please send an email
12
- * to license@magentocommerce.com so we can send you a copy immediately.
13
- *
14
- * DISCLAIMER
15
- *
16
- * Do not edit or add to this file if you wish to upgrade Magento to newer
17
- * versions in the future. If you wish to customize Magento for your
18
- * needs please refer to http://www.magentocommerce.com for more information.
19
- *
20
- * @category design
21
- * @package default_default
22
- * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
23
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
24
- */
25
-
26
- /* Reset ================================================================================= */
27
- * { margin:0; padding:0; }
28
-
29
- body { font:12px/1.55 Arial, Helvetica, sans-serif; color:#2f2f2f; text-align:center; }
30
-
31
- img { border:0; vertical-align:top; }
32
-
33
- a { text-decoration:underline; }
34
- a:hover { text-decoration:none; }
35
- :focus { outline:0; }
36
-
37
- /* Headings */
38
- h1,h2,h3,
39
- h4,h5,h6 { margin:0 0 5px; line-height:1.35; color:#0a263c; }
40
- h1 { font-size:20px; font-weight:normal; }
41
- h2 { font-size:18px; font-weight:normal; }
42
- h3 { font-size:16px; font-weight:bold; }
43
- h4 { font-size:14px; font-weight:bold; }
44
- h5 { font-size:1.05em; font-weight:bold; }
45
- h6 { font-size:11px; font-weight:bold; }
46
-
47
- /* Forms */
48
- form { display:inline; }
49
- fieldset { border:0; }
50
- legend { display:none; }
51
-
52
- /* Table */
53
- table { border:0; /*border-collapse:collapse;*/ border-spacing:0; empty-cells:show; font-size:100%; }
54
- caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }
55
-
56
- /* Content */
57
- p { margin:0 0 10px; }
58
- strong { font-weight:bold; }
59
- address { font-style:normal; line-height:1.35; }
60
- cite { font-style:normal; }
61
- q,
62
- blockquote { quotes:none; }
63
- q:before,
64
- q:after { content:''; }
65
- small,big { font-size:1em; }
66
- /*sup { font-size:1em; vertical-align:top; }*/
67
-
68
- /* Lists */
69
- ul,ol { list-style:none; }
70
-
71
- /* Tools */
72
- .hidden { display:block !important; border:0 !important; margin:0 !important; padding:0 !important; font-size:0 !important; line-height:0 !important; width:0 !important; height:0 !important; overflow:hidden !important; }
73
- .nobr { white-space:nowrap !important; }
74
- .wrap { white-space:normal !important; }
75
- .a-left { text-align:left !important; }
76
- .a-center { text-align:center !important; }
77
- .a-right { text-align:right !important; }
78
- .v-top { vertical-align:top; }
79
- .v-middle { vertical-align:middle; }
80
- .f-left,
81
- .left { float:left !important; }
82
- .f-right,
83
- .right { float:right !important; }
84
- .f-none { float:none !important; }
85
- .f-fix { float:left; width:100%; }
86
- .no-display { display:none; }
87
- .no-margin { margin:0 !important; }
88
- .no-padding { padding:0 !important; }
89
- .no-bg { background:none !important; }
90
- /* ======================================================================================= */
91
-
92
-
93
- /* Layout ================================================================================ */
94
- .wrapper { min-width:960px; }
95
- .page {}
96
- .page-print { background:#fff; padding:25px 30px; text-align:left; }
97
- .page-empty { background:#fff; padding:20px; text-align:left; }
98
- .page-popup { background:#fff; padding:25px 30px; text-align:left; }
99
- .main-container { }
100
- .main { width:950px; margin:0 auto; min-height:400px; padding: 9px 15px 5px;
101
- text-align:left; background:url("../images/container.png") repeat-y -979px 0; }
102
-
103
- /* Base Columns */
104
- .col-left { float:left; width:195px; padding:0 0 1px; }
105
- .col-main { float:left; width:750px; padding:0 0 1px; }
106
- .col-right { float:right; width:195px; padding:0 0 1px; }
107
-
108
- /* 1 Column Layout */
109
- .col1-layout .col-main { float:none; width:auto; }
110
-
111
- /* 2 Columns Layout */
112
- .col2-left-layout .col-main { float:right; }
113
- .col2-right-layout .col-main {}
114
-
115
- /* 3 Columns Layout */
116
- .col3-layout .col-main { margin-left:5px; width:530px; }
117
- .col3-layout .col-wrapper { float:left; width:740px; }
118
- .col3-layout .col-wrapper .col-main { float:right; }
119
-
120
- /* Content Columns */
121
- .col2-set .col-1 { float:left; width:48.5%; }
122
- .col2-set .col-2 { float:right; width:48.5%; }
123
- .col2-set .col-narrow { width:32%; }
124
- .col2-set .col-wide { width:65%; }
125
-
126
- .col3-set .col-1 { float:left; width:32%; }
127
- .col3-set .col-2 { float:left; width:32%; margin-left:2%; }
128
- .col3-set .col-3 { float:right; width:32%; }
129
-
130
- .col4-set .col-1 { float:left; width:23.5%; }
131
- .col4-set .col-2 { float:left; width:23.5%; margin:0 2%; }
132
- .col4-set .col-3 { float:left; width:23.5%; }
133
- .col4-set .col-4 { float:right; width:23.5%; }
134
- /* ======================================================================================= */
135
-
136
-
137
- /* Global Styles ========================================================================= */
138
- /* Form Elements */
139
- input,select,textarea,button { font:12px/15px Arial, Helvetica, sans-serif; vertical-align:middle; color:#2f2f2f; }
140
- input.input-text,select,textarea { background:#fff; border:1px solid #b6b6b6; }
141
- input.input-text,textarea { padding:2px; }
142
- select { padding:1px; }
143
- select option { padding-right:10px; }
144
- select.multiselect option { border-bottom:1px solid #b6b6b6; padding:2px 5px; }
145
- select.multiselect option:last-child { border-bottom:0; }
146
- textarea { overflow:auto; }
147
- input.radio { margin-right:3px; }
148
- input.checkbox { margin-right:3px; }
149
- input.qty { width:2.5em !important; }
150
- button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
151
- button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
152
- button.button {cursor: pointer;}
153
-
154
- button.button span { display:block; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; white-space:nowrap; color:#fff; }
155
- button.button span span { border:0; }
156
-
157
- button.disabled span { border-color:#bbb !important; background:#bbb !important; }
158
-
159
- button.btn-checkout span { height:26px; border:0; font:bold 15px/40px Arial, Helvetica, sans-serif; color:#fff; }
160
- button.btn-checkout span span { padding:0 25px 0 16px; }
161
- button.btn-checkout.no-checkout span { color:#b8baba; }
162
- button.btn-checkout.no-checkout span span { }
163
-
164
- p.control input.checkbox,
165
- p.control input.radio { margin-right:6px; }
166
- /* Form Highlight */
167
- input.input-text:focus,select:focus,textarea:focus { background-color:#edf7fd; }
168
- /*.highlight { background:#efefef; }*/
169
-
170
- /* Form lists */
171
- /* Grouped fields */
172
- /*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/
173
- .form-list li { margin:0 0 8px; }
174
- .form-list label { float:left; color:#666; font-weight:bold; position:relative; z-index:0; }
175
- .form-list label.required {}
176
- .form-list label.required em { float:right; font-style:normal; color:#eb340a; position:absolute; top:0; right:-8px; }
177
- .form-list li.control label { float:none; }
178
- .form-list li.control input.radio,
179
- .form-list li.control input.checkbox { margin-right:6px; }
180
- .form-list li.control .input-box { clear:none; display:inline; width:auto; }
181
- /*.form-list li.fields { margin-right:-15px; }*/
182
- .form-list .input-box { display:block; clear:both; width:260px; }
183
- .form-list .field { float:left; width:275px; }
184
- .form-list input.input-text { width:254px; }
185
- .form-list textarea { width:254px; height:10em; }
186
- .form-list select { width:260px; }
187
- .form-list li.wide .input-box { width:535px; }
188
- .form-list li.wide input.input-text { width:529px; }
189
- .form-list li.wide textarea { width:529px; }
190
- .form-list li.wide select { width:535px; }
191
- .form-list li.additional-row { border-top:1px solid #ccc; margin-top:10px; padding-top:7px; }
192
- .form-list li.additional-row .btn-remove { float:right; margin:5px 0 0; }
193
- .form-list .input-range input.input-text { width:74px; }
194
-
195
- .form-list-narrow li { margin-bottom:0; }
196
- .form-list-narrow li .input-box { margin-bottom:6px; }
197
- .form-list-narrow li.wide .input-box { width:260px; }
198
- .form-list-narrow li.wide input.input-text,
199
- .form-list-narrow li.wide textarea { width:254px }
200
- .form-list-narrow li.wide select { width:260px; }
201
-
202
- /* Customer */
203
- .form-list .customer-name-prefix .input-box,
204
- .form-list .customer-name-suffix .input-box,
205
- .form-list .customer-name-prefix-suffix .input-box,
206
- .form-list .customer-name-prefix-middlename .input-box,
207
- .form-list .customer-name-middlename-suffix .input-box,
208
- .form-list .customer-name-prefix-middlename-suffix .input-box { width:auto; }
209
-
210
- .form-list .name-prefix { width:65px; }
211
- .form-list .name-prefix select { width:55px; }
212
- .form-list .name-prefix input.input-text { width:49px; }
213
-
214
- .form-list .name-suffix { width:65px; }
215
- .form-list .name-suffix select { width:55px; }
216
- .form-list .name-suffix input.input-text { width:49px; }
217
-
218
- .form-list .customer-name-prefix-middlename-suffix .name-firstname,
219
- .form-list .customer-name-prefix-middlename .name-firstname { width:140px; }
220
- .form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
221
- .form-list .customer-name-prefix-middlename .name-firstname input.input-text { width:124px; }
222
- .form-list .customer-name-prefix-middlename-suffix .name-lastname { width:205px; }
223
- .form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text { width:189px; }
224
-
225
- .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
226
- .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
227
- .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
228
- .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
229
-
230
- .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
231
- .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
232
- .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
233
- .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
234
-
235
- .form-list .customer-name-prefix .name-firstname,
236
- .form-list .customer-name-middlename .name-firstname,
237
- .form-list .customer-name-middlename .name-middlename { width:210px; }
238
-
239
- .form-list .customer-name-suffix .name-lastname,
240
- .form-list .customer-name-middlename .name-firstname,
241
- .form-list .customer-name-middlename .name-middlename,
242
- .form-list .customer-name-middlename-suffix .name-firstname,
243
- .form-list .customer-name-middlename-suffix .name-lastname { width:205px; }
244
-
245
- .form-list .customer-name-prefix .name-firstname input.input-text,
246
- .form-list .customer-name-suffix .name-lastname input.input-text,
247
- .form-list .customer-name-middlename .name-firstname input.input-text,
248
- .form-list .customer-name-middlename .name-middlename input.input-text,
249
- .form-list .customer-name-middlename-suffix .name-firstname input.input-text,
250
- .form-list .customer-name-middlename-suffix .name-lastname input.input-text { width:189px; }
251
-
252
- .form-list .customer-dob .dob-month,
253
- .form-list .customer-dob .dob-day,
254
- .form-list .customer-dob .dob-year { float:left; width:85px; }
255
- .form-list .customer-dob input.input-text { display:block; width:74px; }
256
- .form-list .customer-dob label { font-size:10px; font-weight:normal; color:#888; }
257
- .form-list .customer-dob .dob-day,
258
- .form-list .customer-dob .dob-month { width:60px; }
259
- .form-list .customer-dob .dob-day input.input-text,
260
- .form-list .customer-dob .dob-month input.input-text { width:46px; }
261
- .form-list .customer-dob .dob-year { width:140px; }
262
- .form-list .customer-dob .dob-year input.input-text { width:134px; }
263
-
264
- /* Independent fields */
265
- /*.form-list li { margin:0 0 8px; }
266
- .form-list li.fields { margin:0; }
267
- .form-list .field { display:block; margin:0 0 8px; }
268
- .form-list li.control {}
269
- .form-list label { float:left; width:150px; padding:2px 10px 0 0; text-align:right; }
270
- .form-list label.required { font-weight:bold; }
271
- .form-list label.required em { font-variant:normal; color:#eb340a; margin-right:3px; }
272
- .form-list .input-box { float:left; width:260px; }
273
- .form-list input.input-text,
274
- .form-list textarea { width:254px; }
275
- .form-list select { width:260px; }
276
- .form-list li.additional-row { border-top:1px solid #ddd; margin-top:10px; }
277
- .form-list li.additional-row .btn-remove { float:right; margin:5px 5px 0 0; }
278
- .form-list .input-range input.input-text { width:96px; }*/
279
- /* Customer */
280
- /*.form-list .customer-dob .dob-month,
281
- .form-list .customer-dob .dob-day,
282
- .form-list .customer-dob .dob-year { float:left; width:85px; }
283
- .form-list .customer-dob input.input-text { display:block; width:74px; }
284
- .form-list .customer-dob label { font-size:11px; font-weight:normal; color:#777; text-align:left; }
285
- .form-list .customer-dob .dob-day,
286
- .form-list .customer-dob .dob-month { width:60px; }
287
- .form-list .customer-dob .dob-day input.input-text,
288
- .form-list .customer-dob .dob-month input.input-text { width:46px; }
289
- .form-list .customer-dob .dob-year { width:140px; }
290
- .form-list .customer-dob .dob-year input.input-text { width:134px; }*/
291
-
292
- .buttons-set { clear:both; margin:4em 0 0; padding:8px 0 0; border-top:1px solid #e4e4e4; text-align:right; }
293
- .buttons-set p.required { margin:0 0 10px; }
294
- .buttons-set .back-link { float:left; margin:0; }
295
- .buttons-set button.button { float:right; margin-left:5px; }
296
-
297
- .buttons-set-order { margin:10px 0 0; }
298
- .buttons-set-order .please-wait { padding:12px 7px 0 0; }
299
-
300
- .fieldset { border:1px solid #bbafa0; padding:22px 25px 12px 33px; margin:28px 0; }
301
- .fieldset .legend { float:left; font-weight:bold; font-size:13px; border:1px solid #bbafa0; background:#fff; color:#e76200; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
302
-
303
- /* Form Validation */
304
- .validation-advice { clear:both; min-height:13px; margin:3px 0 0; padding-left:17px; font-size:11px; font-weight:bold; line-height:13px; background:url(../images/validation_advice_bg.gif) 2px 0 no-repeat; color:#eb340a; }
305
- .validation-failed { border:1px dashed #eb340a !important; background:#faebe7 !important; }
306
- .validation-passed {}
307
- p.required { font-size:11px; text-align:right; color:#EB340A; }
308
- /* Expiration date and CVV number validation fix */
309
- .v-fix { float:left; }
310
- .v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }
311
-
312
- /* Global Messages */
313
- .success { color:#3d6611; font-weight:bold; }
314
- .error { color:#df280a; font-weight:bold; }
315
- .notice { color:#e26703; }
316
-
317
- .messages,
318
- .messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
319
- .messages { width:100%; overflow:hidden; }
320
- .messages li { margin:0 0 10px !important; }
321
- .messages li li { margin:0 0 3px !important; }
322
- .error-msg,
323
- .success-msg,
324
- .note-msg,
325
- .notice-msg { border-style:solid !important; border-width:1px !important; background-position:10px 9px !important; background-repeat:no-repeat !important; min-height:24px !important; padding:8px 8px 8px 32px !important; font-size:11px !important; font-weight:bold !important; }
326
- .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
327
- .success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(../images/i_msg-success.gif); color:#3d6611; }
328
- .note-msg,
329
- .notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(../images/i_msg-note.gif); color:#3d6611; }
330
-
331
- /* BreadCrumbs */
332
- .breadcrumbs { font-size:11px; line-height:1.25; margin:0 0 13px; }
333
- .breadcrumbs li { display:inline; }
334
- .breadcrumbs li strong { font-weight:bold; }
335
-
336
- /* Page Heading */
337
- .page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; }
338
- .page-title h1,
339
- .page-title h2 { margin:0; font-size:20px; color:#0a263c; }
340
- .page-title .separator { margin:0 3px; }
341
- .page-title .link-rss { float:right; margin:7px 0 0; }
342
- .title-buttons { text-align:right; }
343
- .title-buttons h1,
344
- .title-buttons h2,
345
- .title-buttons h3,
346
- .title-buttons h4,
347
- .title-buttons h5,
348
- .title-buttons h6 { float:left; }
349
-
350
- .subtitle,
351
- .sub-title { clear:both; padding:15px 0 0; font-size:15px; font-weight:bold; margin:0 0 6px; color:#e25203; }
352
-
353
- /* Pager */
354
- .pager { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x; padding:4px 8px; border-top:1px solid #e2e2e2; text-align:center; }
355
- .pager .amount { float:left; margin:0; }
356
- .pager .limiter { float:right; }
357
- .pager .limiter label { vertical-align:middle; }
358
- .pager .limiter select { padding:0; margin:0 0 1px; vertical-align:middle; }
359
- .pager .pages { margin:0 140px; }
360
- .pager .pages ol { display:inline; }
361
- .pager .pages li { display:inline; margin:0 2px; }
362
- .pager .pages .current {}
363
-
364
- /* Sorter */
365
- .sorter { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x; padding:3px 8px; border-top:1px solid #e2e2e2; }
366
- .sorter .view-mode { float:left; margin:0; }
367
- .sorter .sort-by { float:right; padding-right:36px; }
368
- .sorter .sort-by label { vertical-align:middle; }
369
- .sorter .sort-by select { padding:0; margin:0 0 1px; vertical-align:middle; }
370
- .sorter .link-feed {}
371
-
372
- /* Toolbar */
373
- .toolbar {}
374
- .toolbar .pager { padding:3px 8px; background:#FFFFFF url(../images/pager_bg.gif) repeat-x scroll 0 100%; font-size:0.95em; }
375
- .toolbar .sorter { background:#FFFFFF url(../images/pager_bg.gif) repeat-x scroll 0 100%; font-size:0.95em; }
376
- .toolbar-bottom {}
377
-
378
- /* Data Table */
379
- .data-table { width:100%; border:1px solid #bebcb7; }
380
- .data-table .odd { background:#f8f7f5 }
381
- .data-table .even { background:#eeeded; }
382
- /*.data-table tr.odd:hover,
383
- .data-table tr.even:hover { background:#ebf1f6; }*/
384
- .data-table td.last,
385
- .data-table th.last { border-right:0; }
386
- .data-table tr.last th,
387
- .data-table tr.last td { border-bottom:0 !important; }
388
- .data-table th { padding:3px 8px; font-weight:bold; }
389
- .data-table td { padding:3px 8px; }
390
-
391
- .data-table thead th { font-weight:bold; border-right:1px solid #c2d3e0; padding:2px 8px; color:#0a263c; white-space:nowrap; vertical-align:middle; }
392
- .data-table thead th.wrap { white-space:normal; }
393
- .data-table thead th a,
394
- .data-table thead th a:hover { color:#fff; }
395
- .data-table thead th { background:url(../images/bkg_th.gif) repeat-x 0 100% #d9e5ee; }
396
- .data-table thead th .tax-flag { font-size:11px; white-space:nowrap; }
397
-
398
- .data-table tfoot { border-bottom:1px solid #d9dde3; }
399
- .data-table tfoot tr.first td { background:url(../images/bkg_tfoot.gif) 0 0 repeat-x; }
400
- .data-table tfoot tr { background-color:#dee5e8 !important; }
401
- .data-table tfoot td { padding-top:1px; padding-bottom:1px; border-bottom:0; border-right:1px solid #d9dde3; }
402
- .data-table tfoot strong { font-size:16px; }
403
-
404
- .data-table tbody th,
405
- .data-table tbody td { border-bottom:1px solid #d9dde3; border-right:1px solid #d9dde3; }
406
- /* Bundle products tables */
407
- .data-table tbody.odd tr { background:#f8f7f5 !important; }
408
- .data-table tbody.even tr { background:#f6f6f6 !important; }
409
- .data-table tbody.odd tr td,
410
- .data-table tbody.even tr td { border-bottom:0; }
411
- .data-table tbody.odd tr.border td,
412
- .data-table tbody.even tr.border td { border-bottom:1px solid #d9dde3; }
413
-
414
- .data-table tbody td .option-label { font-weight:bold; font-style:italic; }
415
- .data-table tbody td .option-value { padding-left:10px; }
416
-
417
- /* Generic Info Box */
418
- .info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
419
- .info-box h2 { font-weight:bold; font-size:13px; }
420
-
421
- .info-table th { font-weight:bold; padding:2px 15px 2px 0; }
422
- .info-table td { padding:2px 0; }
423
-
424
- /* Shopping cart total summary row expandable to details */
425
- tr.summary-total { cursor:pointer; }
426
- tr.summary-total td {}
427
- tr.summary-total .summary-collapse { float:right; text-align:right; padding-left:20px; background:url(../images/bkg_collapse.gif) 0 5px no-repeat; cursor:pointer; }
428
- tr.show-details .summary-collapse { background-position:0 -52px; }
429
- tr.show-details td {}
430
- tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
431
- tr.summary-details-first td { border-top:1px solid #d2d8db; }
432
- tr.summary-details-excluded { font-style:italic; }
433
-
434
- /* Shopping cart tax info */
435
- .cart-tax-info { display:block; }
436
- .cart-tax-info,
437
- .cart-tax-info .cart-price { padding-right:20px; }
438
- .cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 5px no-repeat; cursor:pointer; }
439
- .cart-tax-info .price,
440
- .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
441
- .cart-tax-total-expanded { background-position:100% -52px; }
442
-
443
- /* Class: std - styles for admin-controlled content */
444
- .std .subtitle { padding:0; }
445
- .std ol.ol { list-style:decimal outside; padding-left:1.5em; }
446
- .std ul.disc { list-style:disc outside; padding-left:18px; margin:0 0 10px; }
447
- .std dl dt { font-weight:bold; }
448
- .std dl dd { margin:0 0 10px; }
449
- /*.std ul,
450
- .std ol,
451
- .std dl,
452
- .std p,
453
- .std address,
454
- .std blockquote { margin:0 0 1em; padding:0; }
455
- .std ul { list-style:disc outside; padding-left:1.5em; }
456
- .std ol { list-style:decimal outside; padding-left:1.5em; }
457
- .std ul ul { list-style-type:circle; }
458
- .std ul ul,
459
- .std ol ol,
460
- .std ul ol,
461
- .std ol ul { margin:.5em 0; }
462
- .std dt { font-weight:bold; }
463
- .std dd { padding:0 0 0 1.5em; }
464
- .std blockquote { font-style:italic; padding:0 0 0 1.5em; }
465
- .std address { font-style:normal; }
466
- .std b,
467
- .std strong { font-weight:bold; }
468
- .std i,
469
- .std em { font-style:italic; }*/
470
-
471
- /* Misc */
472
- .links li { display:inline; }
473
- .links li.first { padding-left:0 !important; }
474
- .links li.last { }
475
-
476
- .link-cart { color:#dc6809 !important; font-weight:bold; }
477
- .link-wishlist { color:#dc6809 !important; font-weight:bold; }
478
- .link-reorder { font-weight:bold; color:#dc6809 !important; }
479
- .link-compare { font-weight:bold; }
480
- .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/ font-weight:bold; color:#dc6809; }
481
- .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
482
- .btn-remove { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_remove.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
483
- .btn-previous { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_previous.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
484
- .btn-remove2 { display:block; width:16px; height:16px; font-size:0; line-height:0; background:url(../images/btn_trash.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
485
- .btn-edit { display:block; width:11px; height:11px; font-size:0; line-height:0; background:url(../images/btn_edit.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
486
-
487
- .cards-list dt { margin:5px 0 0; }
488
- .cards-list .offset { padding:2px 0 2px 20px; }
489
-
490
- .separator { margin:0 3px; }
491
-
492
- .divider { clear:both; display:block; font-size:0; line-height:0; height:1px; margin:10px 0; background:url(../images/bkg_divider1.gif) 0 50% repeat-x; text-indent:-999em; overflow:hidden; }
493
-
494
- /* Global site notices */
495
- .global-site-notice { border:1px solid #cfcfcf; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
496
- .global-site-notice .notice-inner { width:860px; margin:0 auto; padding:12px 0 12px 80px; background:url(../images/i_notice.gif) 20px 25px no-repeat; text-align:left; }
497
- .global-site-notice .notice-inner p { margin:0; border:1px dotted #cccc73; padding:10px; }
498
- .global-site-notice .notice-inner .actions { padding-top:10px; }
499
-
500
- /* Cookie Notice */
501
- .notice-cookie { position:fixed; z-index:9999; width:100%; bottom:0; left:0; margin:0 !important; opacity:0.95; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)"; /* IE8 */ }
502
-
503
- /* Noscript Notice */
504
- .noscript {}
505
-
506
- /* Demo Notice */
507
- .demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; border:0; text-align:center; color:#fff; }
508
- .demo-notice .notice-inner { width:auto; padding:0; background:none; text-align:center; }
509
- .demo-notice .notice-inner p { padding:0; border:0; }
510
-
511
- /* ======================================================================================= */
512
-
513
-
514
- /* Header ================================================================================ */
515
- .logo { float:left; }
516
- .header-container { margin-top:27px; text-align:left; }
517
- .header {margin:0 auto; padding:10px; text-align:right; position:relative; z-index:1000; width: 960px; }
518
- .header .logo { float:left; margin:3px 0 10px 12px; text-decoration:none !important; }
519
- .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
520
- .header h1.logo { margin:0; }
521
- .header .quick-access { }
522
-
523
- .header .welcome-msg { margin:0; color:#fff; text-align:right; }
524
- .header .form-search { background:url("../images/mini_search_bg.gif") no-repeat scroll 0 0 transparent;
525
- bottom:-34px; height:28px; padding:0; position:absolute; right:21px; width:152px; }
526
- .header .form-search input.input-text { background:none repeat scroll 0 0 transparent; border:medium none;
527
- float:right; font-size:0.9em; margin-top:5px; padding:2px 2px 2px 0; width:125px; }
528
- .header .form-search button.button { float:left; background: url(../images/btn_mini_search.gif) no-repeat left top; }
529
- .header .form-search button.button span { border:0; height:21px; background:url(../images/btn_search.gif) 0 0 no-repeat; padding:0 0 0 3px; font:bold 11px/21px Tahoma, Verdana, Arial, sans-serif; }
530
- .header .form-search button.button span span { background-position:100% 0; padding:0 6px 0 3px; }
531
- .header .form-search .search-autocomplete { z-index:999; /* left:40px !important; top:22px !important; */}
532
- .header .form-search .search-autocomplete ul { border:1px solid #5c7989; background-color:#f9f5f0; }
533
- .header .form-search .search-autocomplete li { text-align:left; border-bottom:1px solid #f4eee7; padding:2px 8px 1px 8px; cursor:pointer; }
534
- .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
535
- .header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
536
- .header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
537
- .header .form-language { position:absolute; right:230px; top:-22px; }
538
- .header .form-language label { padding-right:5px; vertical-align:middle; color:#A7C6DD; }
539
- .header .form-language select { padding:0; }
540
- .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
541
- .header .links { float:right; margin:0 0 6px; }
542
- .header .links li { float:left; font-size:11px; background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat; padding:0 8px 0 7px; }
543
- .header .links a { }
544
- .header-container .top-container { clear:both; text-align:right; }
545
- .header-container .top-container a { font-size:11px; }
546
-
547
- /********** < Navigation */
548
- .nav-container { height: 41px; background:url("../images/container.png") repeat-y scroll -979px 0 transparent;
549
- margin:0 auto; width:978px; }
550
- /* ======================================================================================= */
551
-
552
-
553
- /* Sidebar =============================================================================== */
554
- .block { background:url("../images/base_mini_bg.gif") repeat-x 0 0 #FFFFFF; border:1px solid #EAEAEA; font-size:0.95em; line-height:1.3em; margin:0 0 6px; }
555
- .block .block-title { margin:0; padding: 8px 2px 2px 8px; }
556
- .block .block-title strong { display:block; font:bold 12px/16px Arial, Helvetica, sans-serif; min-height:16px; padding:1px 0 1px; text-transform:uppercase; color:#e26703; }
557
- .block .block-title strong span { background-image:url("../images/common.gif");background-position:-357px -200px; background-repeat:no-repeat; color:#656565; font:bold 1em Verdana,Geneva,Arial,Helvetica,sans-serif; min-height:16px; padding:8px 0 1px 21px;text-transform:none; }
558
- .block .block-title a { text-decoration:none !important; }
559
- .block .block-subtitle { margin:0; padding:5px 9px; font-size:1em; font-weight:bold; color:#0a263c; }
560
- .block .block-content { }
561
- .block .block-content li.item { padding:7px 9px; }
562
- .block .btn-remove, .block .btn-edit { float:right; margin:1px 0 2px 5px; }
563
- .block .actions {padding:6px 9px; text-align:right; }
564
- .block .actions a { float:left; }
565
- .block .actions button.button { float:right; }
566
- .block .empty { margin:0; padding:5px 9px; }
567
-
568
- .block li.odd { background-color:#f4f3f3; }
569
- .block li.even { background-color:#fafafa; }
570
-
571
- /* Mini Blocks */
572
- .block-cart,
573
- .block-wishlist,
574
- .block-subscribe,
575
- .block-compare,
576
- .block-reorder,
577
- .block-poll,
578
- .block-viewed,
579
- .block-compared,
580
- .block-related,
581
- .block-tags,
582
- .block-login { font-size:11px; line-height:1.25; }
583
- .block-cart .block-title span,
584
- .block-wishlist .block-title span,
585
- .block-subscribe .block-title span,
586
- .block-compare .block-title span,
587
- .block-reorder .block-title span,
588
- .block-poll .block-title span,
589
- .block-viewed .block-title span,
590
- .block-compared .block-title span,
591
- .block-related .block-title span,
592
- .block-tags .block-title span,
593
- .block-login .block-title span { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
594
- .block-cart .block-title strong,
595
- .block-wishlist .block-title strong,
596
- .block-subscribe .block-title strong,
597
- .block-compare .block-title strong,
598
- .block-reorder .block-title strong,
599
- .block-poll .block-title strong,
600
- .block-viewed .block-title strong,
601
- .block-compared .block-title strong,
602
- .block-related .block-title strong,
603
- .block-tags .block-title strong,
604
- .block-login .block-title strong { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
605
-
606
- /* Mini Products List */
607
- .mini-products-list .product-image { float:left; width:50px; border:1px solid #a9a9a9; }
608
- .mini-products-list .product-details { margin-left:60px; }
609
- .block-cart .mini-products-list .product-details .product-name,
610
- .block-cart .mini-products-list .product-details .nobr small { word-wrap:break-word; }
611
- .block-cart .mini-products-list .product-details .nobr { white-space:normal !important; }
612
-
613
- /* Block: Account */
614
- .block-account { }
615
- .block-account .block-title { }
616
- .block-account .block-title span { font-size:13px; color:#fff; }
617
- .block-account .block-content {padding:7px 10px 7px; }
618
- .block-account .block-content li a { display:block; border-bottom:1px solid #ddd; padding:3px 0; color:#5f5d5c; text-decoration:none !important; }
619
- .block-account .block-content li a:hover { color:#ea7900; }
620
- .block-account .block-content li.last a { border-bottom:0; }
621
- .block-account .block-content li.current { border-bottom:1px solid #ddd; padding:3px 0; color:#ea7900; }
622
- .block-account .block-content li.current.last { border-bottom:0; }
623
-
624
- /* Block: Currency Switcher */
625
- .block-currency {}
626
- .block-currency .block-title { }
627
- .block-currency .block-title span { }
628
- .block-currency .block-content { background:none; padding:10px; }
629
- .block-currency .block-content select { width:100%; padding:0; }
630
-
631
- /* Block: Layered Navigation */
632
- .block-layered-nav { }
633
- .block-layered-nav .block-title { border:0; padding:0; height:24px; }
634
- .block-layered-nav .block-subtitle {}
635
- .block-layered-nav .block-content { }
636
- .block-layered-nav dt { padding:7px 10px 0 28px; font-weight:bold; text-transform:uppercase; }
637
- .block-layered-nav dd { padding:0 12px 12px; }
638
- .block-layered-nav dd.last { background:none; }
639
- .block-layered-nav .currently li { padding:4px 6px 4px 10px; position:relative; z-index:1; line-height:1.5; }
640
- .block-layered-nav .currently .label { font-weight:bold; padding-left:8px; text-transform:uppercase; }
641
- .block-layered-nav .currently .value { display:inline-block; vertical-align:top; }
642
- .block-layered-nav .currently .btn-previous,
643
- .block-layered-nav .currently .btn-remove { position:absolute; right:4px; top:5px; margin:0; }
644
- .block-layered-nav .currently .btn-previous { right:17px; }
645
- .block-layered-nav .actions { font-size:11px; padding:4px 9px; border-width:1px 0; text-align:right; }
646
- .block-layered-nav .actions a { float:none; }
647
-
648
- /* Block: Cart */
649
- .block-cart .block-title { /*border-bottom:0;*/ }
650
- .block-cart .block-title span { }
651
- .block-cart .block-title strong { background-image:url(../images/i_block-cart.gif); }
652
- .block-cart .summary { background:#fff; padding:2px 8px 8px; margin:-1px 0 0; position:relative; z-index:1; }
653
- .block-cart .amount { margin:0; }
654
- .block-cart .amount a { font-weight:bold; }
655
- .block-cart .subtotal { margin:5px 0 0; padding:2px 0; background:#fbebd9; text-align:center; }
656
- .block-cart .subtotal .price { font-weight:bold; }
657
- .block-cart .actions { }
658
- .block-cart .actions .paypal-logo { float:left; width:100%; margin:3px 0 0; text-align:right; }
659
- .block-cart .actions .paypal-logo .paypal-or { clear:both; display:block; padding:0 55px 8px 0; }
660
-
661
- /* Block: Wishlist */
662
- .block-wishlist .block-title span { }
663
- .block-wishlist .block-title strong { background-image:url(../images/i_block-wishlist.gif); }
664
- .block-wishlist .actions { text-align:right; }
665
- .block-wishlist .actions a { float:none; }
666
-
667
- /* Block: Related */
668
- .block-related .block-title span { }
669
- .block-related .block-title strong { background-image:url(../images/i_block-related.gif); background-position:0 1px; }
670
- .block-related input.checkbox { float:left; }
671
- .block-related .product { margin-left:20px; }
672
-
673
- /* Block: Compare Products */
674
- .block-compare .block-title span { }
675
- .block-compare .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
676
- .block-compare button.button span { border-color:#406a83; background:#618499; }
677
- .page-popup .link-print { background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px; font-weight:bold; color:#1e7ec8; }
678
- .compare-table { border:0; }
679
- .compare-table thead tr.first th,
680
- .compare-table thead tr.first td { border:0; background:none; padding:0; font-size:0; line-height:0; }
681
- .compare-table .btn-remove { float:right; background-image:url(../images/btn_remove2.gif); width:72px; height:15px; }
682
- .compare-table tbody th { background:#d9e5ee url(../images/bkg_th-v.gif) 100% 0 repeat-y; }
683
- .compare-table tbody th,
684
- .compare-table tbody td { padding:10px; border:0; border-top:1px solid #ccc; border-left:1px solid #ccc; }
685
- .compare-table tbody td.last { border-right:1px solid #ccc; }
686
- .compare-table tbody tr.last th,
687
- .compare-table tbody tr.last td { border-bottom:1px solid #ccc !important; }
688
- .compare-table tr.add-to-row td { background:#fffada; text-align:center; }
689
- .compare-table tr.first td { text-align:center; }
690
- .compare-table tr.first td .product-name { font-size:13px; font-weight:bold; margin:0 0 5px; color:#203548; }
691
- .compare-table tr.first td .product-name a { color:#203548; }
692
- .compare-table tr.first td .ratings { width:69px; margin:0 auto; }
693
- .compare-table tr.first td p,
694
- .compare-table tr.add-to-row td p { margin:0; }
695
-
696
- /* Block: Recently Viewed */
697
- .block-viewed .block-title span { }
698
- .block-viewed .block-title strong { background-image:url(../images/i_block-viewed.gif); }
699
-
700
- /* Block: Recently Compared */
701
- .block-compared .block-title span { }
702
- .block-compared .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
703
-
704
- /* Block: Poll */
705
- .block-poll .block-title span { }
706
- .block-poll .block-title strong { background-image:url(../images/i_block-poll.gif); }
707
- .block-poll .block-subtitle { font-size:12px; }
708
- .block-poll label { color:#777; font-weight:bold; }
709
- .block-poll input.radio { float:left; margin:1px -18px 0 0; }
710
- .block-poll .label { display:block; margin-left:18px; }
711
- .block-poll li { padding:3px 9px; }
712
- .block-poll .actions { margin:5px 0 0; }
713
- .block-poll button.button span { }
714
- .block-poll .answer { font-weight:bold; }
715
- .block-poll .votes { float:right; margin-left:10px; }
716
-
717
- /* Block: Orders and Returns */
718
- .block-gr-search li { padding:3px 9px; }
719
- .block-gr-search button.button span { }
720
-
721
- /* Block: Tags */
722
- .block-tags .block-title span { }
723
- .block-tags .block-content ul { font-size:12px; padding:10px; }
724
- .block-tags .block-content li { display:inline; padding-right:4px; }
725
- .block-tags .block-content a { color:#1b2d3b; }
726
- .block-tags .actions { text-align:right; }
727
- .block-tags .actions a { float:none; }
728
-
729
- /* Block: Subscribe */
730
- .block-subscribe .block-content { padding:5px 10px; }
731
- .block-subscribe .block-title strong { background-image:url(../images/i_block-subscribe.gif); }
732
- .block-subscribe label { font-weight:bold; color:#666; }
733
- .block-subscribe input.input-text { display:block; width:167px; margin:3px 0; }
734
- .block-subscribe .actions { background:none; padding:0; margin:3px 0 0; text-align:left; }
735
- .block-subscribe .actions button.button { float:none; }
736
- .block-subscribe .actions button.button span { }
737
-
738
- /* Block: Reorder */
739
- .block-reorder .block-title span { }
740
- .block-reorder input.checkbox { float:left; margin:2px -20px 0 0; }
741
- .block-reorder .product-name { margin-left:20px; }
742
- .block-reorder .validation-advice { margin:3px 9px 7px; }
743
-
744
- /* Block: Banner */
745
- .block-banner { border:0; }
746
- .block-banner .block-content { padding:0; text-align:center; }
747
-
748
- /* Block: Login */
749
- .block-login .block-title span { }
750
- .block-login .block-content { padding:5px 10px; }
751
- .block-login label { font-weight:bold; color:#666; }
752
- .block-login input.input-text { display:block; width:167px; margin:3px 0; }
753
- .block-login .actions { background:none; padding:0; margin:3px 0 0; }
754
- .block-login .actions button.button span { border-color:#406a83; background:#618499; }
755
-
756
- /* Paypal */
757
- .sidebar .paypal-logo { display:block; margin:10px 0; text-align:center; }
758
- .sidebar .paypal-logo a { float:none; }
759
- /* ======================================================================================= */
760
-
761
-
762
- /* Category Page ========================================================================= */
763
- .category-title { border:0; margin:0 0 7px; }
764
- .category-image { }
765
- .category-image img {}
766
- .category-description { margin:0 0 10px; }
767
- .category-products {}
768
-
769
- /* View Type: Grid */
770
- .products-grid { border-bottom:1px solid #d9ddd3; position:relative; }
771
- .products-grid.last { border-bottom:0; }
772
- .products-grid li.item { float:left; width:155px; padding:12px 10px 80px; }
773
- .products-grid .product-image { display:block; width:135px; height:135px; margin:0 0 10px; }
774
- .products-grid .product-name { /*min-height:2.7em;*/ margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
775
- .products-grid .product-name a { color:#203548; }
776
- .products-grid .price-box { margin:5px 0; }
777
- .products-grid .availability { line-height:21px; }
778
- .products-grid .actions { position:absolute; bottom:12px; }
779
- .col2-left-layout .products-grid,
780
- .col2-right-layout .products-grid { width:632px; margin:0 auto; }
781
- .col1-layout .products-grid { width:790px; margin:0 auto; }
782
-
783
- /* View Type: List */
784
- .products-list li.item { border-bottom:1px solid #d9ddd3; padding:12px 10px; }
785
- .products-list li.item.last { border-bottom:0; }
786
- .products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
787
- .products-list .product-shop { margin-left:150px; }
788
- .products-list .product-name { margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
789
- .products-list .product-name a { color:#203548; }
790
- .products-list .price-box { float:left; margin:3px 13px 5px 0; }
791
- .products-list .availability { float:left; margin:3px 0 0; }
792
- .products-list .desc { clear:both; padding:6px 0 0; margin:0 0 15px; line-height:1.35; }
793
- .products-list .desc .link-learn { font-size:11px; }
794
- .products-list .add-to-links { clear:both; }
795
- .products-list .add-to-links li { display:inline; }
796
- .products-list .add-to-links .separator { display:inline; margin:0 2px; }
797
- /* ======================================================================================= */
798
-
799
-
800
- /* Product View ========================================================================== */
801
- /* Rating */
802
- .no-rating { margin:0; }
803
-
804
- .ratings { font-size:11px; line-height:1.25; margin:7px 0; }
805
- .ratings strong { float:left; margin:1px 3px 0 0; }
806
- .ratings .rating-links { margin:0; }
807
- .ratings .rating-links .separator { margin:0 2px; }
808
- .ratings dt {}
809
- .ratings dd {}
810
- .rating-box { width:69px; height:13px; font-size:0; line-height:0; background:url(../images/bkg_rating.gif) 0 0 repeat-x; text-indent:-999em; overflow:hidden; }
811
- .rating-box .rating { float:left; height:13px; background:url(../images/bkg_rating.gif) 0 100% repeat-x; }
812
- .ratings .rating-box { float:left; margin-right:3px; }
813
- .ratings .amount {}
814
-
815
- .ratings-table th,
816
- .ratings-table td { font-size:11px; line-height:1.15; padding:3px 0; }
817
- .ratings-table th { font-weight:bold; padding-right:8px; }
818
-
819
- /* Availability */
820
- .availability { margin:0; }
821
- .availability span { font-weight:bold; }
822
- .availability.in-stock span {}
823
- .availability.out-of-stock span { color:#d83820; }
824
-
825
- .availability-only { margin:10px 0 7px; line-height:16px; background:url(../images/i_availability_only.gif) 0 50% no-repeat; padding-left:15px; }
826
- .availability-only span,
827
- .availability-only a { border-bottom:1px dashed #751d02; color:#000; }
828
- .availability-only a { background:url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat; cursor:pointer; padding-right:15px; text-decoration:none; }
829
- .availability-only .expanded { background-position:100% -15px; }
830
- .availability-only strong { color:#be2c00; }
831
-
832
- .availability-only-details { margin:0 0 7px; }
833
- .availability-only-details th { background:#d2d6d9; font-size:10px; padding:0 8px; }
834
- .availability-only-details td { background:#ebf0f3; border-bottom:1px solid #fff; font-size:11px; padding:2px 8px 1px; }
835
- .availability-only-details tr.odd td.last { color:#d95e00; font-weight:bold; }
836
-
837
- .product-view .product-shop .availability { font-size:11px; }
838
- .product-view .product-shop .availability span { font-weight:normal; }
839
-
840
- /* Email to a Friend */
841
- .email-friend { margin:0; }
842
-
843
- /* Alerts */
844
- .alert-price { margin:0; font-size:11px; }
845
- .alert-stock { margin:0; font-size:11px; }
846
-
847
- /********** < Product Prices */
848
- .price { white-space:nowrap !important; }
849
-
850
- .price-box { margin:5px 0; }
851
- .price-box .price { font-weight:bold; color:#c76200; }
852
-
853
- /* Regular price */
854
- .regular-price { color:#c76200; }
855
- .regular-price .price { font-weight:bold; font-size:13px; color:#c76200; }
856
- .block .regular-price,
857
- .block .regular-price .price { color:#2f2f2f; }
858
-
859
- /* Old price */
860
- .old-price { margin:0; }
861
- .old-price .price-label { white-space:nowrap; color:#999; }
862
- .old-price .price { font-weight:bold; color:#c76200; text-decoration:line-through; }
863
-
864
- /* Special price */
865
- .special-price { margin:0; padding:3px 0; }
866
- .special-price .price-label { font-size:13px; font-weight:bold; white-space:nowrap; color:#cd5033; }
867
- .special-price .price { font-size:13px; font-weight:bold; color:#c76200; }
868
-
869
- /* Minimal price (as low as) */
870
- .minimal-price { margin:0; }
871
- .minimal-price .price-label { font-weight:bold; white-space:nowrap; }
872
-
873
- .minimal-price-link { display:block; }
874
- .minimal-price-link .label {color:#1e7ec8;}
875
- .minimal-price-link .price { font-weight:normal; color:#1e7ec8; }
876
-
877
- /* Excluding tax */
878
- .price-excluding-tax { display:block; color:#999; }
879
- .price-excluding-tax .label { white-space:nowrap; color:#999; }
880
- .price-excluding-tax .price { font-size:13px; font-weight:normal; color:#c76200; }
881
-
882
- /* Including tax */
883
- .price-including-tax { display:block; color:#999; }
884
- .price-including-tax .label { white-space:nowrap; color:#999; }
885
- .price-including-tax .price { font-size:13px; font-weight:bold; color:#c76200; }
886
-
887
- /* Configured price */
888
- .configured-price { margin:0; }
889
- .configured-price .price-label { font-weight:bold; white-space:nowrap; }
890
- .configured-price .price { font-weight:bold; }
891
-
892
- /* FPT */
893
- .weee { display:block; font-size:11px; color:#444; }
894
- .weee .price { font-size:11px; font-weight:normal; }
895
-
896
- /* Excl tax (for order tables) */
897
- .price-excl-tax { display:block; }
898
- .price-excl-tax .label { display:block; white-space:nowrap; }
899
- .price-excl-tax .price { display:block; }
900
-
901
- /* Incl tax (for order tables) */
902
- .price-incl-tax { display:block; }
903
- .price-incl-tax .label { display:block; white-space:nowrap; }
904
- .price-incl-tax .price { display:block; font-weight:bold; }
905
-
906
- /* Price range */
907
- .price-from { margin:0; }
908
- .price-from .price-label { font-weight:bold; white-space:nowrap; }
909
-
910
- .price-to { margin:0; }
911
- .price-to .price-label { font-weight:bold; white-space:nowrap; }
912
-
913
- /* Price notice next to the options */
914
- .price-notice { padding-left:10px; color:#999; }
915
- .price-notice .price { font-weight:bold; color:#2f2f2f; }
916
-
917
- /* Price as configured */
918
- .price-as-configured { margin:0; }
919
- .price-as-configured .price-label { font-weight:bold; white-space:nowrap; }
920
-
921
- .price-box-bundle { padding:0 0 10px 0; }
922
- .price-box-bundle .price-box { margin:0 !important; padding:0 !important; }
923
- .price-box-bundle .price { color:#555; }
924
- /********** Product Prices > */
925
-
926
- /* Tier Prices */
927
- .product-pricing,
928
- .tier-prices { margin:10px 0; padding:10px; background-color:#f4f7f7; border:1px solid #dadddd; color:#424242; }
929
- .tier-prices li { line-height:1.4; background:url(../images/i_tier.gif) no-repeat 0 3px; padding:2px 0 2px 10px; }
930
- .tier-prices .benefit { font-style:italic; font-weight:bold; color:#2f2f2f; }
931
- .tier-prices .price { font-weight:bold; color:#2f2f2f; }
932
-
933
- .tier-prices-grouped li { padding:2px 0; color:#e26703; }
934
- .tier-prices-grouped li .price { font-weight:bold; }
935
-
936
- /* Add to Links */
937
- .add-to-links { font-size:11px; margin:5px 0 0; }
938
- .add-to-links .separator { display:none; }
939
-
940
- /* Add to Cart */
941
- .add-to-cart label { float:left; margin-right:5px; font-weight:bold; color:#666; }
942
- .add-to-cart .qty { float:left; margin-right:5px; }
943
- .add-to-cart button.button { float:left; }
944
- .add-to-cart .paypal-logo { clear:left; margin:0; text-align:right; }
945
- .add-to-cart .paypal-logo .paypal-or { clear:both; display:block; margin:5px 60px 5px 0; }
946
- .product-view .add-to-cart .paypal-logo { margin:0; }
947
-
948
- /* Add to Links + Add to Cart */
949
- .add-to-box { margin:10px 0; }
950
- .add-to-box .add-to-cart { float:left; }
951
- .add-to-box .or { float:left; font-weight:bold; margin:0 7px; color:#666; }
952
- .add-to-box .add-to-links { float:left; margin:0; font-size:12px !important; line-height:1.25 !important; text-align:left !important; }
953
- .add-to-box .add-to-links li { display:block !important; }
954
- .add-to-box .add-to-links li .separator { display:none !important; }
955
-
956
-
957
- .product-view { border:1px solid #c4c6c8; }
958
-
959
- .product-essential { padding:25px; background:#fff url(../images/bkg_product-view.gif) 100% 0 no-repeat; }
960
- .product-essential h2 { font:bold 13px/1.35 Arial, Helvetica, sans-serif; }
961
-
962
- .product-collateral { background:#faf7ee url(../images/bkg_product_collateral.gif) 0 0 repeat-x; padding:25px; }
963
- .product-collateral h2 { font-weight:bold; font-size:15px; color:#e26703; border-bottom:1px solid #e5dcc3; padding:0 0 1px; margin:0 0 15px; }
964
- .product-collateral .box-collateral { margin:0 0 25px; }
965
-
966
- /* Product Images */
967
- .product-view .product-img-box { float:left; width:267px; }
968
- .col3-layout .product-view .product-img-box { float:none; margin:0 auto; }
969
- .product-view .product-img-box .product-image { margin:0 0 13px; }
970
- .product-view .product-img-box .product-image-zoom { position:relative; width:265px; height:265px; overflow:hidden; z-index:9; }
971
- .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
972
- .product-view .product-img-box .zoom-notice { font-size:11px; margin:0 0 5px; text-align:center; }
973
- .product-view .product-img-box .zoom { position:relative; z-index:9; height:18px; margin:0 auto 13px; padding:0 28px; background:url(../images/slider_bg.gif) 50% 50% no-repeat; cursor:pointer; }
974
- .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
975
- .product-view .product-img-box .zoom #track { position:relative; height:18px; }
976
- .product-view .product-img-box .zoom #handle { position:absolute; left:0; top:-1px; width:9px; height:22px; background:url(../images/magnifier_handle.gif) 0 0 no-repeat; }
977
- .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
978
- .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
979
- .product-view .product-img-box .more-views h2 { font-size:11px; border-bottom:1px solid #ccc; margin:0 0 8px; text-transform:uppercase; }
980
- .product-view .product-img-box .more-views ul { margin-left:-9px }
981
- .product-view .product-img-box .more-views li { float:left; margin:0 0 8px 9px; }
982
- .product-view .product-img-box .more-views li a { float:left; width:56px; height:56px; border:2px solid #ddd; overflow:hidden; }
983
-
984
- .product-image-popup { margin:0 auto; }
985
- .product-image-popup .buttons-set { float:right; clear:none; border:0; margin:0; padding:0; }
986
- .product-image-popup .nav { font-weight:bold; margin:0 100px; text-align:center; }
987
- .product-image-popup .image { display:block; margin:10px 0; }
988
- .product-image-popup .image-label { font-size:13px; font-weight:bold; margin:0 0 10px; color:#2f2f2f; }
989
-
990
- /* Product Shop */
991
- .product-view .product-shop { float:right; width:410px; }
992
- .col1-layout .product-view .product-shop { float:right; width:545px; }
993
- .col3-layout .product-view .product-shop { float:none; width:auto; }
994
- .product-view .product-shop .product-name { margin:0 0 5px; }
995
- .product-view .product-shop .product-name h1 { margin:0; font:bold 15px/1.35 Arial, Helvetica, sans-serif; }
996
- .product-view .product-shop .availability { margin:10px 0; }
997
- .product-view .product-shop .short-description { margin:10px 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; padding:10px 0 0; }
998
- .product-view .product-shop .price-box { margin:10px 0; }
999
- .product-view .product-shop .add-to-links { margin:0; }
1000
- .product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
1001
- .product-view .product-shop .add-to-links li,
1002
- .product-view .product-shop .add-to-links li .separator { display:inline; }
1003
- .product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
1004
-
1005
- /* Product Options */
1006
- .product-options { margin:20px 0 0; padding:10px 15px 20px; position:relative; background-color:#f6f6f6; border:1px solid #e4e4e4; }
1007
- .product-options dt { padding:10px 0 0; font-weight:normal; }
1008
- .product-options dt label { font-weight:bold; color:#2f2f2f; }
1009
- .product-options dt label.required em { color:#eb340a; margin-left:5px; }
1010
- .product-options dd .qty-holder { display:block; padding:10px 0 0; }
1011
- .product-options dd .qty-holder label { vertical-align:middle; }
1012
- .product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#2f2f2f; }
1013
- .product-options dd { padding:5px 10px 15px; margin:0 0 5px; border-bottom:1px solid #e4e4e4; }
1014
- .product-options dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
1015
- .product-options dd input.input-text { width:98%; }
1016
- .product-options dd input.datetime-picker { width:150px; }
1017
- .product-options dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
1018
- .product-options dd textarea { width:98%; height:8em; }
1019
- .product-options dd select { width:99%; }
1020
- .product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
1021
- .product-options ul.options-list { margin-right:5px; }
1022
- .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1023
- .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1024
- .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1025
- .product-options ul.options-list .label { display:block; margin-left:18px; }
1026
- .product-options ul.options-list label { font-weight:normal; }
1027
- .product-options ul.validation-failed { padding:0 7px; }
1028
- .product-options p.note { margin:0; font-size:11px; }
1029
- .product-options p.required { position:absolute; right:20px; top:20px; }
1030
-
1031
- .product-options-bottom { background-color:#fffada; padding:15px 20px; border:1px solid #e4e4e4; border-top:0; }
1032
- .product-options-bottom .product-pricing,
1033
- .product-options-bottom .tier-prices { margin:0; padding:0 0 10px; border:0; background:0; color:#e26703; }
1034
- .product-options-bottom .tier-prices li { background:0; padding:2px 0; }
1035
- .product-options-bottom .tier-prices .price,
1036
- .product-options-bottom .tier-prices .benefit { color:#e26703; }
1037
- .product-options-bottom .price-box { float:left; margin:0; padding:0; }
1038
- .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1039
- .col3-layout .product-options-bottom .price-box { float:none; padding:0 0 5px; }
1040
- .product-options-bottom .price-label { float:left; padding-right:5px; }
1041
- .product-options-bottom .price-tax { float:left; }
1042
- .product-options-bottom .add-to-cart { float:right; }
1043
- .product-shop .product-options-bottom { margin:0 0 10px; }
1044
- .product-shop .product-options-bottom .price-box { float:none; margin:0 0 5px; }
1045
- .product-shop .product-options-bottom .price-label { float:none; padding-right:0; }
1046
- .product-shop .product-options-bottom .price-tax { float:none; }
1047
- .product-shop .product-options-bottom .add-to-cart-box { clear:both; float:left; padding-top:12px; }
1048
- .product-shop .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1049
-
1050
- /* Grouped Product */
1051
- .product-view .grouped-items-table .price-box { margin:0; padding:0; }
1052
-
1053
- /* Block: Description */
1054
- .product-view .box-description {}
1055
-
1056
- /* Block: Additional */
1057
- .product-view .box-additional .data-table th,
1058
- .product-view .box-additional .data-table td { line-height:1.25; }
1059
-
1060
- /* Block: Upsell */
1061
- .product-view .box-up-sell h2 { border-bottom:0; padding:0; margin:0 0 8px; }
1062
- .product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1063
- .product-view .box-up-sell .products-grid td { width:25%; background:#f6f2e7; border-right:1px solid #e5dcc3; border-bottom:1px solid #e5dcc3; padding:15px 10px 12px; line-height:1.6em; }
1064
- .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1065
- .product-view .box-up-sell .products-grid td.last { border-right:0; }
1066
- .product-view .box-up-sell .products-grid td img { border:1px solid #e5dcc3; }
1067
- .product-view .box-up-sell .products-grid .product-image { text-align:center; }
1068
- .product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; }
1069
- .product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1070
-
1071
- /* Block: Tags */
1072
- .product-view .box-tags { margin:0; }
1073
- .product-view .box-tags h3 { font-size:13px; }
1074
- .product-view .box-tags .product-tags { display:block; margin:0 0 15px; }
1075
- .product-view .box-tags .product-tags li { display:inline; background:url(../images/bkg_pipe3.gif) 100% 4px no-repeat; padding:0 7px 0 4px; }
1076
- .product-view .box-tags .product-tags li.first { padding-left:0; }
1077
- .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1078
- .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1079
- .product-view .box-tags .form-add .input-box { float:left; width:305px; margin:0 5px 0 0; background:url(../images/i_tag_add.gif) 0 2px no-repeat; padding:0 0 0 23px; }
1080
- .product-view .box-tags .form-add input.input-text { width:299px; }
1081
- .product-view .box-tags .form-add button.button span { border-color:#406a83; background:#618499; }
1082
- .product-view .box-tags .note { margin:3px 0 0; padding:0 0 0 23px; font-size:11px; }
1083
-
1084
- /* Block: Reviews */
1085
- .product-view .box-reviews dl { margin:15px 0; }
1086
- .product-view .box-reviews dt a,
1087
- .product-view .box-reviews dt span { font-weight:bold; }
1088
- .product-view .box-reviews dd { margin:0 0 15px; }
1089
- .product-view .box-reviews dd small { font-style:italic; }
1090
- .product-view .box-reviews .form-add { margin:15px 0 0; }
1091
- .product-view .box-reviews .form-add h3 { font-size:13px; font-weight:normal; }
1092
- .product-view .box-reviews .form-add h3 span { font-weight:bold; }
1093
- .product-view .box-reviews .form-add h4 { font-size:12px; }
1094
- .product-view .box-reviews .form-add .data-table td { text-align:center; }
1095
- .product-view .box-reviews .form-add .form-list { margin:15px 0 0; }
1096
- .product-view .box-reviews .form-add .form-list .input-box { width:360px; }
1097
- .product-view .box-reviews .form-add .form-list input.input-text,
1098
- .product-view .box-reviews .form-add .form-list textarea { width:354px; }
1099
-
1100
- /* Send a Friend */
1101
- .send-friend .form-list { width:615px; overflow:hidden; }
1102
- .send-friend .form-list li { margin-right:-15px; }
1103
- .send-friend .form-list li p { margin:0 15px 0 0; }
1104
- .send-friend .form-list .field { width:315px; }
1105
- .send-friend .form-list .input-box { width:300px; }
1106
- .send-friend .form-list input.input-text,
1107
- .send-friend .form-list textarea { width:294px; }
1108
- .send-friend .form-list li.wide .input-box { width:612px; }
1109
- .send-friend .form-list li.wide textarea { width:609px; }
1110
- .send-friend .buttons-set .limit { float:right; margin:0 7px 0 0; font-size:11px; line-height:21px; }
1111
- /* ======================================================================================= */
1112
-
1113
-
1114
- /* Content Styles ================================================================= */
1115
- .product-name { margin:0; font-size:1em; font-weight:normal; }
1116
- .product-name a { }
1117
-
1118
- /* Product Tags */
1119
- .tags-list { display:block; font-size:13px; border:none; background:none; padding:10px; }
1120
- .tags-list li { display:inline !important; margin:0 4px 0 0; }
1121
- .tags-list li a { color:#1b2d3b; }
1122
-
1123
- /* Advanced Search */
1124
- .advanced-search .form-list label { width:160px; padding-right:10px; }
1125
- .advanced-search .form-list .input-box,
1126
- .advanced-search .form-list .input-range { float:left; clear:none; }
1127
- .advanced-search-amount { margin:0 0 10px; }
1128
- .advanced-search-summary { margin:10px 0; border:1px solid #e9d7c9; background:#fff6f1; padding:10px; }
1129
- .advanced-search-summary ul { float:left; width:49%; }
1130
- .advanced-search-summary strong { color:#E17C24; padding-left:15px; background:url(../images/i_search_criteria.gif) 0 3px no-repeat; }
1131
- .advanced-search-summary p { clear:both; font-weight:bold; margin:0; }
1132
-
1133
- /* CMS Home Page */
1134
- .cms-home .subtitle {}
1135
- .cms-index-index .subtitle {}
1136
-
1137
- /* Sitemap */
1138
- .page-sitemap .links { text-align:right; margin:0 8px -22px 0; }
1139
- .page-sitemap .links a { text-decoration:none; position:relative; }
1140
- .page-sitemap .links a:hover { text-decoration:underline; }
1141
- .page-sitemap .sitemap { margin:12px; }
1142
- .page-sitemap .sitemap a { color:#1b2d3b; }
1143
- .page-sitemap .sitemap li { margin:3px 0; }
1144
- .page-sitemap .sitemap li.level-0 { margin:10px 0 0; font-weight:bold; }
1145
- .page-sitemap .sitemap li.level-0 a { color:#1e7ec8; }
1146
-
1147
- /* RSS */
1148
- .rss-title h1 { background:url(../images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
1149
- .rss-table .link-rss { display:block; line-height:1.55; background-position:0 4px; }
1150
- /* ======================================================================================= */
1151
-
1152
-
1153
- /* Shopping Cart ========================================================================= */
1154
- .cart .page-title { border-bottom:0; margin:0 0 12px; }
1155
- .cart .page-title h1 { margin:10px 0 0; }
1156
- .cart button { margin:8px 0 0; }
1157
-
1158
- /* Checkout Types */
1159
- .cart .page-title .checkout-types li { margin:0 0 5px; }
1160
- .cart .title-buttons .checkout-types { float:right; }
1161
- .cart .title-buttons .checkout-types li { float:left; margin:0 0 5px 5px; }
1162
- .cart .checkout-types .paypal-or { margin:0 8px; line-height:2.3; }
1163
- .cart .totals .checkout-types .paypal-or { clear:both; display:block; padding:8px 55px 0 0; line-height:1.0; font-size:11px; }
1164
-
1165
- /* Shopping Cart Table */
1166
- .cart-table th { padding:2px 10px; }
1167
- .cart-table td { padding:10px; }
1168
- .cart-table .product-name { font-weight:bold; margin:0 0 5px; color:#2f2f2f; }
1169
- .cart-table .item-msg { margin:5px 0; font-size:11px; font-weight:bold; color:#df280a; }
1170
- .cart-table tfoot td { padding:5px 10px; }
1171
- .cart-table .btn-continue { float:left; }
1172
- .cart-table .btn-empty span,
1173
- .cart-table .btn-continue span,
1174
- .cart-table .btn-update span { border-color:#406a83; background:#618499; }
1175
- .cart-table .btn-update,
1176
- .cart-table .btn-empty { float:right; }
1177
- .cart-table .btn-update { margin-left:10px; }
1178
-
1179
- /* Shopping Cart Collateral boxes */
1180
- .cart .cart-collaterals { padding:25px 0 0; }
1181
- .cart .cart-collaterals .col2-set { float:left; width:605px; }
1182
- .cart .cart-collaterals .col2-set .col-2 { width:294px; }
1183
-
1184
- .cart .crosssell { border:1px solid #cec3b6; background:#fafaec; padding:12px 15px; }
1185
- .cart .crosssell h2 { font-size:13px; font-weight:bold; }
1186
- .cart .crosssell .product-image { float:left; width:75px; height:75px; border:1px solid #d0cdc9; }
1187
- .cart .crosssell .product-details { margin-left:90px; }
1188
- .cart .crosssell .product-name { font-weight:bold; }
1189
- .cart .crosssell li.item { margin:12px 0; }
1190
- .cart .crosssell .link-compare { font-weight:normal; }
1191
-
1192
- /* Discount Codes & Estimate Shipping and Tax Boxes */
1193
- .cart .discount,
1194
- .cart .shipping { border:1px solid #d0cbc1; background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; padding:12px 15px; margin:0 0 18px; }
1195
- .cart .discount h2,
1196
- .cart .shipping h2 { background-position:0 0; background-repeat:no-repeat; font:bold 13px/16px Arial, Helvetica, sans-serif; padding:0 0 0 21px; color:#e26703; text-transform:uppercase; }
1197
- .cart .discount button span,
1198
- .cart .shipping button span { border-color:#406a83; background:#618499; }
1199
- .cart .discount .buttons-set,
1200
- .cart .shipping .buttons-set { margin:10px 0 0; border:0; padding:0; text-align:left; }
1201
- .cart .discount .buttons-set button.button,
1202
- .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1203
-
1204
- .cart .discount h2 { background-image:url(../images/i_discount.gif); }
1205
- .cart .discount .input-box { margin:8px 0 0; width:260px; }
1206
- .cart .discount input.input-text { width:254px; }
1207
-
1208
- .cart .shipping h2 { background-image:url(../images/i_shipping.gif); }
1209
- .cart .shipping .sp-methods { margin:10px 0 0; padding:5px 0 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; }
1210
-
1211
- /* Shopping Cart Totals */
1212
- .cart .totals { float:right; width:268px; background:#dee5e8; border:1px solid #bebcb7; }
1213
- .cart .totals table { width:100%; margin:7px 0; }
1214
- .cart .totals td { padding:1px 15px 1px 7px; }
1215
- .cart .totals tr.last td {}
1216
- .cart .totals tfoot th { padding:5px 15px 5px 7px; }
1217
- .cart .totals tfoot td { padding-top:5px; padding-bottom:5px; }
1218
- .cart .totals tfoot th strong,
1219
- .cart .totals tfoot td strong { font-size:15px; }
1220
- .cart .totals .checkout-types { font-size:13px; padding:8px 15px 15px; text-align:right; }
1221
- .cart .totals .checkout-types li { clear:both; margin:10px 0; }
1222
-
1223
- /* Options Tool Tip */
1224
- .item-options dt { font-weight:bold; font-style:italic; }
1225
- .item-options dd { padding-left:10px; margin:0 0 6px; }
1226
- .truncated { cursor:help; }
1227
- .truncated a.dots { cursor:help; }
1228
- .truncated a.details { cursor:help; }
1229
- .truncated .truncated_full_value { position:relative; z-index:999; }
1230
- .truncated .truncated_full_value .item-options { position:absolute; top:-99999em; left:-99999em; z-index:999; width:250px; padding:8px; border:1px solid #ddd; background-color:#f6f6f6; }
1231
- .truncated .truncated_full_value .item-options > p { font-weight:bold; text-transform:uppercase; }
1232
- .truncated .show .item-options { top:-20px; left:50%; }
1233
- .col-left .truncated .show .item-options { left:15px; top:7px; }
1234
- .col-right .truncated .show .item-options { left:-240px; top:7px; }
1235
- /* ======================================================================================= */
1236
-
1237
-
1238
- /* Checkout ============================================================================== */
1239
- /********** < Common Checkout Styles */
1240
- /* Shipping and Payment methods */
1241
- .sp-methods { margin:0 0 8px; }
1242
- .sp-methods dt { margin:13px 0 5px; font-weight:bold; }
1243
- .sp-methods dd {}
1244
- .sp-methods dd li { margin:5px 0; }
1245
- .sp-methods label { font-weight:bold; color:#666; }
1246
- .sp-methods .price { font-weight:bold; }
1247
- .sp-methods .form-list { padding-left:20px; }
1248
- .sp-methods .form-list li { margin:0 0 8px; }
1249
- .sp-methods select.month { width:154px; margin-right:10px; }
1250
- .sp-methods select.year { width:96px; }
1251
- .sp-methods input.cvv { width:3em !important; }
1252
-
1253
- .sp-methods .checkmo-list li { margin:0 0 5px; }
1254
- .sp-methods .checkmo-list label { width:135px; padding-right:10px; text-align:right; }
1255
- .sp-methods .checkmo-list address { float:left; }
1256
-
1257
- .sp-methods .centinel-logos a { margin-right:3px; }
1258
- .sp-methods .centinel-logos img { vertical-align:middle; }
1259
-
1260
- .sp-methods .release-amounts { margin:0.5em 0; }
1261
- .sp-methods .release-amounts button { float:left; margin:5px 10px 0 0; }
1262
-
1263
- .please-wait { float:right; }
1264
- .please-wait img { vertical-align:middle; }
1265
- .cvv-what-is-this { font-size:11px; cursor:help; margin-left:10px; }
1266
-
1267
- /* Tooltip */
1268
- .tool-tip { border:1px solid #7BA7C9; background:#EAF6FF; padding:15px 20px; position:absolute; z-index:9999; }
1269
- .tool-tip .btn-close { margin:-9px -14px 0; text-align:right; }
1270
- .tool-tip .btn-close a { display:block; margin:0 0 0 auto; width:15px; height:15px; background:url(../images/btn_window_close.gif) 100% 0 no-repeat; text-align:left; text-indent:-999em; overflow:hidden; }
1271
- .tool-tip .tool-tip-content { padding:5px; }
1272
-
1273
- /* Gift Messages */
1274
- .gift-messages h3 { font-size:12px; font-weight:bold; color:#e87403; }
1275
- .gift-messages p.control { color:#8e8d8b; }
1276
- .gift-messages-form { position:relative; }
1277
- .gift-messages-form label { float:none !important; position:static !important; }
1278
- .gift-messages-form h4 { font-size:12px; font-weight:bold; color:#e87403; }
1279
- .gift-messages-form .whole-order { margin:0 0 25px; }
1280
- .gift-messages-form .item { margin:0 0 10px; }
1281
- .gift-messages-form .item .product-img-box { float:left; width:75px; }
1282
- .gift-messages-form .item .product-image { margin:0 0 7px; }
1283
- .gift-messages-form .item .number { margin:0; font-weight:bold; text-align:center; color:#8a8987; }
1284
- .gift-messages-form .item .details { margin-left:90px; }
1285
- .gift-messages-form .item .details .product-name { font-size:13px; font-weight:bold; margin:0 0 10px; }
1286
- .gift-messages-form .item .details .form-list .field { width:255px; }
1287
- .gift-messages-form .item .details .form-list .input-box { width:240px; }
1288
- .gift-messages-form .item .details .form-list input.input-text { width:234px; }
1289
- .gift-messages-form .item .details .form-list li.wide .input-box { width:500px; }
1290
- .gift-messages-form .item .details .form-list li.wide textarea { width:494px; }
1291
-
1292
- .gift-message-link { font-size:11px; background:url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat; padding-right:7px; }
1293
- .gift-message-link.expanded { background-position:100% -40px; }
1294
- .gift-message-row { background:#f2efe9; }
1295
- .gift-message-row .btn-close { float:right; width:16px; height:16px; background:url(../images/btn_gm-close.gif) 0 0 no-repeat; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
1296
-
1297
- /* Checkout Agreements */
1298
- .checkout-agreements li { margin:30px 0; }
1299
- .checkout-agreements .agreement-content { overflow:auto; height:12em; padding:10px; background-color:#fbfaf6; border:1px solid #bbb6a5; }
1300
- .checkout-agreements .agree { margin:0; padding:10px 0 10px 11px; }
1301
- .checkout-agreements .agree input.checkbox { margin-right:6px; }
1302
- .checkout-agreements .agree label { font-weight:bold; color:#666; }
1303
-
1304
- .opc .checkout-agreements { border:1px solid #d9dde3; border-width:0 1px; padding:5px 30px; }
1305
- .opc .checkout-agreements li { margin:20px 0 0; }
1306
- .opc .checkout-agreements .agreement-content { background-color:#fff; border-color:#e4e4e4; padding:5px; }
1307
- .opc .checkout-agreements .agree { padding-left:6px; }
1308
-
1309
- /* Centinel */
1310
- .centinel {}
1311
- .centinel .authentication { border:1px solid #ddd; background:#fff; }
1312
- .centinel .authentication iframe { width:99%; height:400px; background:transparent !important; margin:0 !important; padding:0 !important; border:0 !important; }
1313
-
1314
- .opc .centinel { border:1px solid #bbb6a5; border-width:0 1px 1px; padding:10px 30px; }
1315
-
1316
- /* Generic Info Set */
1317
- .info-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1318
- .info-set h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1319
- .info-set h3,
1320
- .info-set h4 { font-size:13px; font-weight:bold; color:#E26703; }
1321
- .info-set h2 a,
1322
- .info-set h3 a,
1323
- .info-set h4 a { font-weight:normal; }
1324
- .info-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1325
- .info-set h3.legend { margin:0 0 10px; color:#0a263c; }
1326
- .info-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1327
- .info-set .box { margin:0 0 15px; }
1328
- .info-set .box h2 { color:#e26703; }
1329
- .info-set .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1330
- .info-set .data-table .product-name a { font-weight:bold !important; }
1331
- .info-set .data-table .item-options { margin:5px 0 0; }
1332
- /********** Common Checkout Styles > */
1333
-
1334
- /* One Page Checkout */
1335
- .block-progress { border:0; margin:0; }
1336
- .block-progress .block-title { background:none; border:0; margin:0 0 5px; }
1337
- .block-progress .block-title strong { font-size:13px; color:#0a263c; }
1338
- .block-progress .block-content { background:none; }
1339
- .block-progress dt { font-size:13px; font-weight:bold; line-height:1.35; background:#eee; border:1px solid #a3aeb3; margin:0 0 6px; padding:2px 8px; color:#999; }
1340
- .block-progress dd { background:#eee; border:1px solid #a3aeb3; border-top:0; padding:8px 13px; margin:0 0 6px; }
1341
- .block-progress dt.complete { margin:0; background:#d0dce1; color:#5e8ab4; }
1342
- .block-progress dd.complete {}
1343
- .block-progress p { margin:0; }
1344
- .block-progress .cards-list dt { background:none; border:0 none; color:inherit; font-size:12px; margin:5px 0; padding:0; }
1345
- .block-progress .cards-list dd { border:0 none; margin:0; padding:0; }
1346
- .block-progress .cards-list .info-table th { font-weight:normal; }
1347
-
1348
- /* show/hide "change" link for progress step depend on complete status
1349
- * should be placed in .css file */
1350
- .opc-block-progress dt.complete a,
1351
- .opc-block-progress dt.complete .separator { display: inline; }
1352
- .opc-block-progress dt a,
1353
- .opc-block-progress dt .separator { display: none; }
1354
-
1355
- .opc .buttons-set { margin-top:0; padding-top:2em; }
1356
- .opc .buttons-set p.required { margin:0; padding:0 0 10px; }
1357
- .opc .buttons-set .back-link small { display:none; }
1358
- .opc .buttons-set .back-link a { background:url(../images/i_arrow-top.gif) 0 50% no-repeat; padding-left:16px; }
1359
- .opc .buttons-set.disabled button.button { display:none; }
1360
- .opc .buttons-set .please-wait { height:21px; line-height:21px; }
1361
- .opc .ul { list-style:disc outside; padding-left:18px; }
1362
-
1363
- .opc { position:relative; }
1364
- .opc li.section {}
1365
-
1366
- .opc .step-title { border-width:0 1px; border-style:solid; border-color:#fff #d9dde3 #d9dde3; background:#eee url(../images/bkg_opc-title-off.gif) 0 100% repeat-x; padding:4px 8px 6px; text-align:right; }
1367
- .opc .step-title .number { float:left; background:#fff; border:1px solid #fff; padding:0 4px; margin:0 5px 0 0; font:bold 11px/14px arial, helvetica, sans-serif; color:#999; }
1368
- .opc .step-title h2 { float:left; margin:0; font:bold 13px/16px Arial, Helvetica, sans-serif; color:#999; }
1369
- .opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }
1370
-
1371
- .opc .allow .step-title { background:#d0dce1; border:1px solid #a3aeb3; border-bottom:0; color:#a4b3b9; cursor:pointer; }
1372
- .opc .allow .step-title .number { background:#dbe6eb; border-color:#dbe6eb; color:#a4b3b9; }
1373
- .opc .allow .step-title h2 { color:#a4b3b9; }
1374
- /*.opc .allow .step-title a { display:block; }*/
1375
-
1376
- .opc .active .step-title { background:#f9f3e3; border:1px solid #bbafa0; padding-bottom:5px; color:#f18200; cursor:default; }
1377
- .opc .active .step-title .number { background:#f18200; border-color:#f19900; color:#fff; }
1378
- .opc .active .step-title h2 { color:#f18200; }
1379
- /*.opc .active .step-title a { display:none; }*/
1380
-
1381
- .opc .step { border:1px solid #bbafa0; border-top:0; background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; padding:15px 30px; position:relative; }
1382
- .opc .step .tool-tip { right:30px; }
1383
-
1384
- #opc-login .buttons-set { border-top:0; }
1385
- #opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
1386
- #opc-login h4 { font-size:1em; font-weight:bold; margin:0; color:#2f2f2f; }
1387
-
1388
- #opc-shipping_method .buttons-set { border-top:0; }
1389
- .opc .gift-messages-form { margin:0 -30px; background:#f6f1eb; border:1px solid #e9e4de; border-width:1px 0; padding:22px 24px 22px 30px; }
1390
- .opc .gift-messages-form .inner-box { padding:5px; height:260px; overflow:auto; }
1391
-
1392
- #opc-review .step { border:0; padding:0; }
1393
- #opc-review .product-name { font-weight:bold; color:#0a263c; }
1394
- #opc-review .item-options { margin:5px 0 0; }
1395
- #opc-review .buttons-set { padding:20px 30px; border:1px solid #d9dde3; border-width:0 1px 1px; }
1396
- #opc-review .buttons-set p { margin:0; line-height:40px; }
1397
- #opc-review .buttons-set .please-wait { height:40px; line-height:40px; }
1398
- #opc-review .authentication { margin:0 auto; width:570px; }
1399
- #opc-review .warning-message { color:#222; font-weight:bold; text-align:center; padding:10px 10px 0; }
1400
-
1401
- /* Multiple Addresses Checkout */
1402
- .checkout-progress { padding:0 90px; margin:0 0 20px; }
1403
- .checkout-progress li { float:left; width:19%; margin:0 3px 0 0; border-top:10px solid #999; padding:2px 0 0; font-weight:bold; text-align:center; color:#abb5ba; }
1404
- .checkout-progress li.active { border-top-color:#e96200; color:#e96200; }
1405
-
1406
- .multiple-checkout h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1407
- .multiple-checkout h3,
1408
- .multiple-checkout h4 { font-size:13px; font-weight:bold; color:#E26703; }
1409
- .multiple-checkout h2 a,
1410
- .multiple-checkout h3 a,
1411
- .multiple-checkout h4 a { font-weight:normal; }
1412
- .multiple-checkout .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1413
- .multiple-checkout .data-table .product-name a { font-weight:bold !important; }
1414
- .multiple-checkout .data-table .item-options { margin:5px 0 0; }
1415
-
1416
- .multiple-checkout .gift-messages { margin:15px 0 0; }
1417
-
1418
- .multiple-checkout .tool-tip { top:50%; margin-top:-120px; right:20px; }
1419
-
1420
- .multiple-checkout .col2-set,
1421
- .multiple-checkout .col3-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1422
- .multiple-checkout .col2-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1423
- .multiple-checkout .col2-set h3.legend { margin:0 0 10px; color:#0a263c; }
1424
- .multiple-checkout .col2-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1425
- .multiple-checkout .box { margin:0 0 15px; }
1426
- .multiple-checkout .box h2 { color:#e26703; }
1427
-
1428
- .multiple-checkout .place-order .please-wait { float:right; padding:27px 7px 0 0; }
1429
- .multiple-checkout .place-order .grand-total { float:right; height:71px; font-size:1.5em; padding:0 0 0 21px; background:url(../images/bkg_grand-total.gif) 0 0 no-repeat; overflow:hidden; }
1430
- .multiple-checkout .place-order .grand-total .inner { float:left; height:57px; padding:14px 21px 0 0; background:url(../images/bkg_grand-total.gif) 100% 0 no-repeat; }
1431
- .multiple-checkout .place-order .grand-total .inner div { display:inline; }
1432
- .multiple-checkout .place-order .grand-total big { display:inline; margin-right:12px; }
1433
- .multiple-checkout .place-order .grand-total .price { color:#E26703; }
1434
- .multiple-checkout .place-order .grand-total button.button span { font-size:16px; }
1435
- .multiple-checkout .place-order .grand-total button.button span span { padding:0 45px 0 36px; }
1436
-
1437
- /* Step 1 */
1438
- .multiple-checkout .title-buttons button.button span { border-color:#406a83; background:#618499; }
1439
- #multiship-addresses-table td { padding:10px; }
1440
- #multiship-addresses-table tfoot td { padding:5px 10px; }
1441
- #multiship-addresses-table tfoot button.button span { border-color:#406a83; background:#618499; }
1442
-
1443
- /* Step 2 */
1444
- .multiple-checkout .gift-messages-form .item .details .form-list { width:100%; overflow:hidden; }
1445
- .multiple-checkout .gift-messages-form .item .details .form-list li { margin-right:-15px; }
1446
- .multiple-checkout .gift-messages-form .item .details .form-list .field { width:230px; }
1447
- .multiple-checkout .gift-messages-form .item .details .form-list .input-box { width:215px; }
1448
- .multiple-checkout .gift-messages-form .item .details .form-list input.input-text { width:209px; }
1449
- .multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box { width:445px; }
1450
- .multiple-checkout .gift-messages-form .item .details .form-list li.wide textarea { width:439px; }
1451
- .checkout-multishipping-shipping .box-sp-methods { border:1px solid #d9d2be; background:#f9f3e3; padding:13px; position:relative; }
1452
- .checkout-multishipping-shipping .box-sp-methods .pointer { position:absolute; top:-20px; right:-40px; width:178px; height:41px; background:url(../images/bkg_sp-methods.gif) 0 0 no-repeat; overflow:hidden; }
1453
-
1454
- /* Step 3 */
1455
- .checkout-multishipping-billing .multiple-checkout { position:relative; }
1456
- /* ======================================================================================= */
1457
-
1458
-
1459
- /* Account Login/Create Pages ============================================================ */
1460
- .account-login .content { min-height:240px; padding:14px 21px; background:#faf7ee url(../images/bkg_login-box.gif) 0 0 repeat-x; border:1px solid #bbb6a5; border-bottom:0; }
1461
- .account-login .content h2 { font-weight:bold; font-size:13px; margin:0 0 14px; padding:0 0 5px 23px; border-bottom:1px solid #ddd; background-position:0 1px; background-repeat:no-repeat; text-transform:uppercase; color:#e76200; }
1462
- .account-login .new-users h2 { background-image:url(../images/i_page1.gif)}
1463
- .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1464
- .account-login .buttons-set { border:1px solid #bbb6a5; border-top:0; margin:0; padding:8px 13px; background:#dee5e8 url(../images/bkg_buttons-set1.gif) 0 0 repeat-x; }
1465
-
1466
- .account-create {}
1467
-
1468
- /* Captcha ================================================================================ */
1469
- .captcha-note { clear:left; padding-top:5px; }
1470
- .captcha-image { float:left; display:inline; margin:0; position:relative; width:258px; }
1471
- .captcha-image .captcha-img { border:1px solid #b6b6b6; vertical-align:bottom; width:100%; }
1472
- .registered-users .captcha-image { margin:0;}
1473
- .captcha-reload { cursor:pointer; position:absolute; top:2px; right:2px;}
1474
- .captcha-reload.refreshing { animation:rotate 1.5s infinite linear; -webkit-animation:rotate 1.5s infinite linear; -moz-animation:rotate 1.5s infinite linear; }
1475
-
1476
- @-webkit-keyframes rotate {
1477
- 0% { -webkit-transform:rotate(0); }
1478
- 0% { -webkit-transform:rotate(-360deg); }
1479
- }
1480
- @-moz-keyframes rotate {
1481
- 0% { -moz-transform:rotate(0); }
1482
- 0% { -moz-transform:rotate(-360deg); }
1483
- }
1484
- @keyframes rotate {
1485
- 0% { transform:rotate(0); }
1486
- 0% { transform:rotate(-360deg); }
1487
- }
1488
-
1489
- /* Remember Me Popup ===================================================================== */
1490
- .window-overlay { background:url(../images/window_overlay.png) repeat; background:rgba(0, 0, 0, 0.35); position:absolute; top:0; left:0; height:100%; width:100%; z-index:990; }
1491
-
1492
- .remember-me label { float:none; margin:0 6px; }
1493
- .remember-me-popup { background:#fff; border:1px solid #ccc; left:50%; top:50%; position:absolute; margin:-85px 0 0 -200px; width:400px; text-align:left; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; -box-shadow:0 0 6px #ccc; z-index:1000; }
1494
- .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:14px; padding:5px 10px; }
1495
- .remember-me-popup .remember-me-popup-head { position:relative; }
1496
- .remember-me-popup .remember-me-popup-head .remember-me-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:7px; right:7px; height:15px; width:15px; text-indent:-9999em; }
1497
- .remember-me-popup .remember-me-popup-body { padding:10px; }
1498
- .remember-me-popup .remember-me-popup-body a { display:inline-block; height:19px; border:1px solid #de5400; background:#f18200; padding:0 8px; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; text-decoration:none; white-space:nowrap; color:#fff; }
1499
- /* Remember Me Popup ===================================================================== */
1500
-
1501
-
1502
- /* My Account ============================================================================= */
1503
- .my-account .title-buttons .link-rss { float:none; margin:0; }
1504
-
1505
- /********** < Dashboard */
1506
- .dashboard .welcome-msg { margin:0 8em 1.5em 0; }
1507
- .dashboard .welcome-msg p { margin:0; }
1508
- .dashboard .col2-set { margin:0 0 15px; }
1509
-
1510
- /* General Box */
1511
- .box-account { background:#fff url(../images/bkg_account_box.gif) 0 0 repeat-x; border:1px solid #ccc; border-color:#ccc #999 #999 #ccc; padding:15px; margin: 0 0 20px; }
1512
- .box-account .box-head { border-bottom:1px solid #d9dde3; margin:0 0 10px; text-align:right; }
1513
- .box-account .box-head h2 { float:left; margin:0; font-size:13px; font-weight:bold; text-transform:uppercase; background-position:0 0; background-repeat:no-repeat; padding-left:21px; color:#e65505; }
1514
-
1515
- .dashboard .box .box-title { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 2px; margin:0 0 8px; text-align:right; }
1516
- .dashboard .box .box-title h3,
1517
- .dashboard .box .box-title h4 { float:left; font-size:13px; font-weight:bold; margin:0; }
1518
-
1519
- /* Block: Recent Orders */
1520
- .dashboard .box-recent .box-head h2 { background-image:url(../images/i_folder-table.gif); }
1521
-
1522
- /* Block: Account Information */
1523
- .dashboard .box-info .box-head h2 { background-image:url(../images/i_ma-info.gif); }
1524
- .dashboard .box-info h4 { font-size:11px; font-weight:bold; text-transform:uppercase; }
1525
-
1526
- /* Block: Reviews */
1527
- .dashboard .box-reviews .box-head h2 { background-image:url(../images/i_ma-reviews.gif); }
1528
- .dashboard .box-reviews .number { float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
1529
- .dashboard .box-reviews .details { margin-left:20px; }
1530
- .dashboard .box-reviews li.item { margin:0 0 7px; }
1531
- .dashboard .box-reviews li.item.last { margin:0; }
1532
- .dashboard .box-reviews .ratings { margin:7px 0 0; }
1533
-
1534
- /* Block: Tags */
1535
- .dashboard .box-tags .box-head h2 { background-image:url(../images/i_ma-tags.gif); }
1536
- .dashboard .box-tags .number { float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
1537
- .dashboard .box-tags .details { margin-left:20px; }
1538
- .dashboard .box-tags li.item { margin:0 0 7px; }
1539
- .dashboard .box-tags li.item.last { margin:0; }
1540
- .dashboard .box-tags .tags strong,
1541
- .dashboard .box-tags .tags ul,
1542
- .dashboard .box-tags .tags ul li { display:inline; }
1543
- /********** Dashboard > */
1544
-
1545
- /* Address Book */
1546
- .addresses-list h2 { font-weight:bold; font-size:13px; color:#e26703; text-transform:uppercase; }
1547
- .addresses-list h3 { font-weight:bold; font-size:13px; }
1548
- .addresses-list address { margin:0 0 3px; }
1549
- .addresses-list p { margin:0; }
1550
- .addresses-list a { font-weight:bold; }
1551
- .addresses-list .link-remove { color:#646464; }
1552
- .addresses-list .separator { margin:0 3px; }
1553
- .addresses-list li.item { background:#fff url(../images/bkg_account_box.gif) 0 0 repeat-x; border:1px solid #ccc; padding:10px 13px; margin:0 0 10px; }
1554
- .addresses-list li.empty { background:none; border:0; padding:0; }
1555
- .addresses-list li.empty p { font-weight:bold; }
1556
- .addresses-list .addresses-additional li.item { background:none; border:0; padding:0; }
1557
-
1558
- /* Order View */
1559
- .order-info { background:#dee5e8; border:1px solid #d0cbc1; padding:4px 8px; margin:0 0 8px; }
1560
- .order-info dt,
1561
- .order-info dd,
1562
- .order-info ul,
1563
- .order-info li { display:inline; }
1564
- .order-info .current { font-weight:bold; }
1565
- .order-info li { margin:0 3px; }
1566
-
1567
- .order-date { margin:10px 0; }
1568
-
1569
- .order-info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
1570
- .order-info-box h2 { font-weight:bold; font-size:13px; }
1571
- .order-info-box .box-payment p { margin:0 0 3px; }
1572
- .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
1573
-
1574
- .order-items { width:100%; overflow-x:auto; }
1575
- .order-items h2,
1576
- .order-items h3 { font-weight:bold; font-size:13px; }
1577
- .order-items .product-name { font-size:1em !important; font-weight:bold !important; }
1578
- .order-items .link-print { color:#1e7ec8; font-weight:normal; }
1579
- .order-items .order-links { text-align:right; }
1580
-
1581
- .order-additional { margin:15px 0; }
1582
- /* Order Gift Message */
1583
- .gift-message dt strong { color:#666; }
1584
- .gift-message dd { font-size:13px; margin:5px 0 0; }
1585
- /* Order Comments */
1586
- .order-about dt { font-weight:bold; }
1587
- .order-about dd { font-size:13px; margin:0 0 7px; }
1588
-
1589
- .tracking-table { margin:0 0 15px; }
1590
- .tracking-table th { font-weight:bold; white-space:nowrap; }
1591
-
1592
- .tracking-table-popup { width:100%; }
1593
- .tracking-table-popup th { font-weight:bold; white-space:nowrap; }
1594
- .tracking-table-popup th,
1595
- .tracking-table-popup td { padding:1px 8px; }
1596
-
1597
- /* Order Print Pages */
1598
- .page-print .print-head { margin:0 0 15px; }
1599
- .page-print .print-head .logo { float:left; }
1600
- .page-print .print-head address { float:left; margin-left:15px; }
1601
- .page-print h1 { font-size:16px; font-weight:bold; }
1602
- .page-print h2,
1603
- .page-print h3 { font-size:13px; font-weight:bold; }
1604
- .page-print h2.h2 { font-size:16px; font-weight:bold; }
1605
- .page-print .order-date { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 10px; margin:0 0 10px; }
1606
- .page-print .col2-set { margin:0 0 10px; }
1607
- /* Price Rewrites */
1608
- .page-print .gift-message-link { display:none; }
1609
- .page-print .price-excl-tax,
1610
- .page-print .price-incl-tax { display:block; white-space:nowrap; }
1611
- .page-print .cart-price,
1612
- .page-print .price-excl-tax .label,
1613
- .page-print .price-incl-tax .label,
1614
- .page-print .price-excl-tax .price,
1615
- .page-print .price-incl-tax .price { display:inline; }
1616
-
1617
- /* My Wishlist */
1618
- .my-wishlist .data-table td { padding:10px; }
1619
- .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 0 5px; }
1620
- .my-wishlist textarea { display:block; width:97%; height:109px; }
1621
- .my-wishlist .buttons-set { margin-top:2em; }
1622
- .my-wishlist .buttons-set button.button { float:none; }
1623
- .my-wishlist .buttons-set .btn-add span,
1624
- .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }
1625
- #wishlist-table .add-to-links { white-space:nowrap; }
1626
-
1627
- /* My Tags */
1628
- .my-tag-edit { float:left; margin:0 0 10px; }
1629
- .my-tag-edit .btn-remove { float:right; margin:4px 0 0 5px; }
1630
- #my-tags-table { clear:both; }
1631
- #my-tags-table td { padding:10px; }
1632
- #my-tags-table .add-to-links { white-space:nowrap; }
1633
-
1634
- /* My Reviews */
1635
- #my-reviews-table td { padding:10px; }
1636
-
1637
- .product-review .product-img-box { float:left; width:140px; }
1638
- .product-review .product-img-box .product-image { display:block; width:125px; height:125px; }
1639
- .product-review .product-img-box .label { font-size:11px; margin:0 0 3px; }
1640
- .product-review .product-img-box .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1641
- .product-review .product-details { margin-left:150px; }
1642
- .product-review .product-name { font-size:16px; font-weight:bold; margin:0 0 10px; }
1643
- .product-review h3 { font-size:12px; margin:0 0 3px; color:#2f2f2f; }
1644
- .product-review .ratings-table { margin:0 0 10px; }
1645
- .product-review dt { font-weight:bold; }
1646
- .product-review dd { font-size:13px; margin:5px 0 0; }
1647
-
1648
- /* Billing Agreements */
1649
- .billing-agreements .info-box{ margin:15px 0; }
1650
- .billing-agreements .form-list li select { float:left; }
1651
- .billing-agreements .form-list li button.button { float:left; margin-left:10px; }
1652
- .billing-agreements .table-caption { font-weight:bold; font-size:13px; }
1653
- /* ======================================================================================= */
1654
-
1655
-
1656
- /* MAP Popup============================================================================== */
1657
- .cart-msrp-totals { color:red; font-size:12px !important; font-weight:bold; margin:10px 10px 0; padding:10px; text-align:right; text-transform:uppercase;}
1658
- .map-cart-sidebar-total { color:red; display:block; font-size:10px; font-weight:bold; text-align:left; padding:2px 5px; text-shadow:0 1px 0 #fff; }
1659
-
1660
- .map-popup { background:#fff; border:1px solid #aaa; margin:12px 0 0; position:absolute; -moz-box-shadow:0 0 6px #ccc; -webkit-box-shadow:0 0 6px #ccc; box-shadow:0 0 6px #ccc; text-align:left; width:300px; z-index:100; }
1661
- .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:5px 30px 5px 10px; width:260px; }
1662
- .map-popup-heading h2 { font-size:16px; margin:0; text-shadow:0 1px 0 #f6f6f6; overflow:hidden; white-space:nowrap; word-wrap:break-word; text-align:left; text-overflow:ellipsis; }
1663
- .map-popup-arrow { background:url(../images/map_popup_arrow.gif) no-repeat; position:absolute; left:50%; top:-10px; height:10px; width:19px; }
1664
- .map-popup-close { background:url(../images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:8px; right:10px; height:15px; width:15px; text-indent:-9999em; -moz-box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; box-shadow:0 0 3px #999; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
1665
- .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:left; width:280px; }
1666
- .map-popup-checkout { display:inline; float:right; text-align:right; }
1667
- .map-popup-checkout span { display:block; padding-right:30px; }
1668
- .map-popup-checkout .paypal-logo { margin:0 0 5px; }
1669
- .map-popup-price .price-box,
1670
- .map-popup-price .price-box .special-price { margin:0; padding:0; }
1671
- .map-popup-price { margin:5px 0 0; }
1672
- .map-popup-text { clear:right; margin:0 10px; padding:10px 0; text-align:left; word-wrap:break-word; }
1673
- .map-popup-only-text { border-top:1px solid #ddd; }
1674
- /* ======================================================================================= */
1675
-
1676
-
1677
- /* Footer ================================================================================ */
1678
- .footer-container { }
1679
- .footer { }
1680
- .footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
1681
- .footer .store-switcher label { font-weight:bold; vertical-align:middle; }
1682
- .footer .store-switcher select { padding:0; vertical-align:middle; }
1683
- .footer a { color:#fff; text-decoration:none; }
1684
- .footer a:hover { text-decoration:underline; }
1685
- .footer .bugs { margin:13px 0 0; color:#ecf3f6; }
1686
- .footer .bugs a { color:#ecf3f6; text-decoration:underline; }
1687
- .footer .bugs a:hover { text-decoration:none; }
1688
- .footer address { margin:0 0 20px; color:#ecf3f6; }
1689
- .footer address a { color:#ecf3f6; text-decoration:underline; }
1690
- .footer address a:hover { text-decoration:none; }
1691
- .footer ul { display:inline; }
1692
- .footer ul.links { display:block; }
1693
- .footer li { display:inline; background:url(../images/bkg_pipe2.gif) 100% 60% no-repeat; padding:0 7px 0 4px; }
1694
- .footer li.last { background:none !important; padding-right:0 !important; }
1695
- .footer-container .bottom-container { margin:0 0 5px; }
1696
- /* ======================================================================================= */
1697
-
1698
- /* Sample Data============================================================================ */
1699
- .home-callout { margin-bottom:12px; }
1700
- .home-callout img { display:block }
1701
- .home-spot { float:left; width:470px; margin-left:20px; }
1702
- .best-selling h3 { margin:12px 0 6px 0; color:#e25203; font-size:1.2em; }
1703
- .best-selling table { border-top:1px solid #ccc; }
1704
- .best-selling tr.odd { background:#eee url(../images/best_selling_tr_odd_bg.gif) 0 100% repeat-x; }
1705
- .best-selling tr.even { background:#fff url(../images/best_selling_tr_even_bg.gif) 0 100% repeat-x; }
1706
- .best-selling td { width:50%; border-bottom:1px solid #ccc; padding:8px 10px 8px 8px; font-size:11px; }
1707
- .best-selling .product-img { float:left; border:2px solid #dcdcdc; }
1708
- .best-selling .product-description { margin-left:107px; line-height:1.3em; }
1709
- .best-selling a.product-name,
1710
- .home-spot .best-selling a.product-name:hover { color:#203548; }
1711
- /* ======================================================================================= */
1712
-
1713
-
1714
- /* Clears ================================================================================ */
1715
- .clearer:after,
1716
- .header-container:after,
1717
- .header-container .top-container:after,
1718
- .header:after,
1719
- .header .quick-access:after,
1720
- #nav:after,
1721
- .main:after,
1722
- .footer:after,
1723
- .footer-container .bottom-container:after,
1724
- .col-main:after,
1725
- .col2-set:after,
1726
- .col3-set:after,
1727
- .col3-layout .product-options-bottom .price-box:after,
1728
- .col4-set:after,
1729
- .search-autocomplete li:after,
1730
- .block .block-content:after,
1731
- .block .actions:after,
1732
- .block li.item:after,
1733
- .block-poll li:after,
1734
- .block-layered-nav .currently li:after,
1735
- .page-title:after,
1736
- .products-grid:after,
1737
- .products-list li.item:after,
1738
- .box-account .box-head:after,
1739
- .dashboard .box .box-title:after,
1740
- .box-reviews li.item:after,
1741
- .box-tags li.item:after,
1742
- .pager:after,
1743
- .sorter:after,
1744
- .ratings:after,
1745
- .add-to-box:after,
1746
- .add-to-cart:after,
1747
- .product-essential:after,
1748
- .product-collateral:after,
1749
- .product-view .product-img-box .more-views ul:after,
1750
- .product-view .box-tags .form-add:after,
1751
- .product-view .product-shop .short-description:after,
1752
- .product-view .box-description:after,
1753
- .product-options .options-list li:after,
1754
- .product-options-bottom:after,
1755
- .product-review:after,
1756
- .cart:after,
1757
- .cart-collaterals:after,
1758
- .cart .crosssell li.item:after,
1759
- .opc .step-title:after,
1760
- .checkout-progress:after,
1761
- .multiple-checkout .place-order:after,
1762
- .group-select li:after,
1763
- .form-list li:after,
1764
- .form-list .field:after,
1765
- .buttons-set:after,
1766
- .page-print .print-head:after,
1767
- .advanced-search-summary:after,
1768
- .gift-messages-form .item:after,
1769
- .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1770
- /* ======================================================================================= */
1771
-
1772
- .guest-select {width:305px !important;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_grey/images/Thumbs.db DELETED
Binary file
skin/frontend/default/f001_grey/images/account_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/account_nav_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/ajax_loader.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/base_mini_actions_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/base_mini_alt_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/base_mini_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/base_mini_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/base_mini_tabs_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/best_selling_tr_even_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/best_selling_tr_odd_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bg_collapse.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bg_tierico.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bg_tierico1.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_account_box.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-actions.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-currency.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-layered-dd.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-layered-dt.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-layered-label.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-layered-li.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-layered-title.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-layered1.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-title-account.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_block-title.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_checkout.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_collapse-gm.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_collapse.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_divider1.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_form-search.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_grand-total.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_grid.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_nav2.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_opc-title-off.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_pipe1.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_pipe2.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_pipe3.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_product-view.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_products-grid3.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_rating.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_sp-methods.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_tfoot.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_th-v.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/bkg_th.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_edit.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_gm-close.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_google_checkout.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_mini_search.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_paypal_checkout.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_place_order.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_previous.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_proceed_to_checkout.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_proceed_to_checkout.png DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_proceed_to_checkout_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_proceed_to_checkout_dis.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_proceed_to_checkout_rad.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_remove.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_remove2.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_search.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_trash.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/btn_window_close.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/button.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/calendar.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/catalog/product/placeholder/image.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/catalog/product/placeholder/small_image.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/catalog/product/placeholder/thumbnail.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/chart_remove.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/checkout_progress_corner.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/close.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/common.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/currency_switcher_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/customer_reviews_pager_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/cvv.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/cvv.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/data_table_th_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/dotted_divider.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/error_msg_icon.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/fam_book_open.png DELETED
Binary file
skin/frontend/default/f001_grey/images/fam_world.png DELETED
Binary file
skin/frontend/default/f001_grey/images/form_button.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/form_button_alt.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/free_shipping_callout.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/gift-message-close.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/gift-message-collapse.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/gift-message-expand.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/glider_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/grid-cal.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_arrow-top.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_asc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_asterick.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_availability_only.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_availability_only_arrow.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-cart.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-currency.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-list.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-poll.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-related.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-subscribe.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-tags.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-viewed.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_block-wishlist.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_cart_infobar.png DELETED
Binary file
skin/frontend/default/f001_grey/images/i_desc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_discount.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_facebook.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_folder-table.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_folder_table.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_lorry.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_ma-info.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_ma-reviews.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_ma-tags.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_ma_info.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_ma_reviews.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_ma_tags.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_msg-error.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_msg-note.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_msg-success.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_newsletter.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_notice.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_opc_back.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_page1.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_page2.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_page_white.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_page_white_text.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_pager-next.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_pager-prev.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_print.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_rss-big.png DELETED
Binary file
skin/frontend/default/f001_grey/images/i_rss.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_search_criteria.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_shipping.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_special_price.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_tag_add.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_tier.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_twitter.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_twitter_large.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_type_grid.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/i_type_list.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_asterick.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_big_rss.png DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_cart_item_remove.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_lorry.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_ma_info.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_ma_reviews.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_ma_tags.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_opc_back.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_page_white.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_page_white_text.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_rss.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_special_price.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_tag_add.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/icon_world.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/ie/Thumbs.db DELETED
Binary file
skin/frontend/default/f001_grey/images/ie/container.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/list_remove_btn.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/listing_type_grid.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/listing_type_list.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/login_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/login_box_form_buttons_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/magnifier_handle.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/map_popup_arrow.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/media/404_callout1.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/404_callout2.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/Thumbs.db DELETED
Binary file
skin/frontend/default/f001_grey/images/media/about_us_img.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/best_selling_img01.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/best_selling_img02.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/best_selling_img03.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/best_selling_img04.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/best_selling_img05.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/best_selling_img06.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/callout_side1.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/callout_side2.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/cell_phone_landing_banner1.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/col_left_callout.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/col_right_callout.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/electronics_cellphones.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/electronics_digitalcameras.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/electronics_laptops.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/furniture_callout_spot.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/furnitures_bed_room.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/furnitures_living_room.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/head_electronics_cellphones.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/media/head_electronics_digicamera.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/media/head_electronics_laptops.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/media/laptop_callout_mid1.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/laptop_callout_mid2.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/laptop_callout_mid3.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/laptop_callout_spot.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/media/shirts_landing_banner1.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/mini_search_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/multi_address_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/narrow_by_dd_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/np_cart_thumb.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/np_more_img.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/np_product_main.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/np_thumb.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/np_thumb2.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/opc-ajax-loader.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/opc_off_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/opc_on_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/page_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/pager_arrow_left.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/pager_arrow_right.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/pager_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/payments.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/point-con.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/product_collateral_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/product_essential_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/product_info_box_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/product_rating_blank_star.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/product_rating_full_star.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/product_zoom_overlay_magnif.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/saved_head_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/search_criteria.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/search_form_button.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/separator.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/shipping_method_pointer.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/slider_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/slider_btn_zoom_in.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/slider_btn_zoom_out.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/sort_asc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/sort_desc_arrow.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/spacer.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/success_msg_icon.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/validation_advice_bg.gif DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/catalog/category/placeholder/image.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/catalog/category/placeholder/small_image.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/catalog/category/placeholder/thumbnail.jpg DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/tab_account.png DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/tab_cart.png DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/tab_home.png DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/tab_more.png DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/tab_page.png DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/tab_search.png DELETED
Binary file
skin/frontend/default/f001_grey/images/xmlconnect/tab_shop.png DELETED
Binary file
skin/frontend/default/f001_grey/js/glider.js DELETED
@@ -1,190 +0,0 @@
1
- /**
2
- * @author Bruno Bornsztein <bruno@missingmethod.com>
3
- * @copyright 2007 Curbly LLC
4
- * @package Glider
5
- * @license MIT
6
- * @url http://www.missingmethod.com/projects/glider/
7
- * @version 0.0.3
8
- * @dependencies prototype.js 1.5.1+, effects.js
9
- */
10
-
11
- /* Thanks to Andrew Dupont for refactoring help and code cleanup - http://andrewdupont.net/ */
12
-
13
- Glider = Class.create();
14
- Object.extend(Object.extend(Glider.prototype, Abstract.prototype), {
15
- initialize: function(wrapper, options){
16
- this.handStopped = false;
17
- this.scrolling = false;
18
- this.wrapper = $(wrapper);
19
- this.scroller = this.wrapper.down('div.scroller');
20
- this.sections = this.wrapper.getElementsBySelector('div.sectionslide');
21
- this.options = Object.extend({ duration: 1.0, frequency: 3 }, options || {});
22
-
23
- this.sections.each( function(section, index) {
24
- section._index = index;
25
- });
26
-
27
- this.events = {
28
- click: this.click.bind(this),
29
- mouseover: this.pause.bind(this),
30
- mouseout: this.resume.bind(this)
31
- };
32
-
33
- this.addObservers();
34
- if(this.options.initialSection)
35
- this.moveTo(this.options.initialSection, this.scroller, { duration:this.options.duration }); // initialSection should be the id of the section you want to show up on load
36
- if(this.options.autoGlide)
37
- this.start();
38
- },
39
-
40
- addObservers: function() {
41
- this.wrapper.observe('mouseover', this.events.mouseover);
42
- this.wrapper.observe('mouseout', this.events.mouseout);
43
-
44
- var descriptions = this.wrapper.getElementsBySelector('div.sliderdescription');
45
- descriptions.invoke('observe', 'mouseover', this.makeActive);
46
- descriptions.invoke('observe', 'mouseout', this.makeInactive);
47
-
48
- var controls = this.wrapper.getElementsBySelector('div.slidercontrol a');
49
- controls.invoke('observe', 'click', this.events.click);
50
-
51
- },
52
-
53
- click: function(event) {
54
- var element = Event.findElement(event, 'a');
55
-
56
- if (this.scrolling) this.scrolling.cancel();
57
- this.moveTo(element.href.split("#")[1], this.scroller, { duration:this.options.duration });
58
- Event.stop(event);
59
- },
60
-
61
- moveTo: function(element, container, options) {
62
- this.current = $(element);
63
- Position.prepare();
64
- var containerOffset = Position.cumulativeOffset(container);
65
- var elementOffset = Position.cumulativeOffset(this.current);
66
-
67
- this.scrolling = new Effect.SmoothScroll(container, {
68
- duration:options.duration,
69
- x:(elementOffset[0]-containerOffset[0]),
70
- y:(elementOffset[1]-containerOffset[1])
71
- });
72
-
73
- if (typeof element == 'object')
74
- element = element.id;
75
-
76
- this.toggleControl($$('a[href="#'+element+'"]')[0]);
77
-
78
- return false;
79
- },
80
-
81
- next: function(){
82
- if (this.current) {
83
- var currentIndex = this.current._index;
84
- var nextIndex = (this.sections.length - 1 == currentIndex) ? 0 : currentIndex + 1;
85
- } else var nextIndex = 1;
86
-
87
- this.moveTo(this.sections[nextIndex], this.scroller, {
88
- duration: this.options.duration
89
- });
90
-
91
- },
92
-
93
- previous: function(){
94
- if (this.current) {
95
- var currentIndex = this.current._index;
96
- var prevIndex = (currentIndex == 0) ? this.sections.length - 1 :
97
- currentIndex - 1;
98
- } else var prevIndex = this.sections.length - 1;
99
-
100
- this.moveTo(this.sections[prevIndex], this.scroller, {
101
- duration: this.options.duration
102
- });
103
- },
104
-
105
- makeActive: function(event)
106
- {
107
- var element = Event.findElement(event, 'div');
108
- element.addClassName('active');
109
- },
110
-
111
- makeInactive: function(event)
112
- {
113
- var element = Event.findElement(event, 'div');
114
- element.removeClassName('active');
115
- },
116
-
117
- toggleControl: function(el)
118
- {
119
- $$('.slidercontrol a').invoke('removeClassName', 'active');
120
- el.addClassName('active');
121
- },
122
-
123
- stop: function()
124
- {
125
- this.handStopped = true;
126
- clearTimeout(this.timer);
127
- },
128
-
129
- start: function()
130
- {
131
- this.handStopped = false;
132
- this.periodicallyUpdate();
133
- },
134
-
135
- pause: function()
136
- {
137
- if (!this.handStopped) {
138
- clearTimeout(this.timer);
139
- this.timer = null;
140
- }
141
- },
142
-
143
- resume: function()
144
- {
145
- if (!this.handStopped)
146
- this.periodicallyUpdate();
147
- },
148
-
149
- periodicallyUpdate: function()
150
- {
151
- if (this.timer != null) {
152
- clearTimeout(this.timer);
153
- this.next();
154
- }
155
- this.timer = setTimeout(this.periodicallyUpdate.bind(this), this.options.frequency*1000);
156
- }
157
-
158
- });
159
-
160
- Effect.SmoothScroll = Class.create();
161
- Object.extend(Object.extend(Effect.SmoothScroll.prototype, Effect.Base.prototype), {
162
- initialize: function(element) {
163
- this.element = $(element);
164
- var options = Object.extend({
165
- x: 0,
166
- y: 0,
167
- mode: 'absolute'
168
- } , arguments[1] || {} );
169
- this.start(options);
170
- },
171
- setup: function() {
172
- if (this.options.continuous && !this.element._ext ) {
173
- this.element.cleanWhitespace();
174
- this.element._ext=true;
175
- this.element.appendChild(this.element.firstChild);
176
- }
177
-
178
- this.originalLeft=this.element.scrollLeft;
179
- this.originalTop=this.element.scrollTop;
180
-
181
- if(this.options.mode == 'absolute') {
182
- this.options.x -= this.originalLeft;
183
- this.options.y -= this.originalTop;
184
- }
185
- },
186
- update: function(position) {
187
- this.element.scrollLeft = this.options.x * position + this.originalLeft;
188
- this.element.scrollTop = this.options.y * position + this.originalTop;
189
- }
190
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_grey/js/productInfo.js DELETED
@@ -1,114 +0,0 @@
1
- var ProductInfo = Class.create();
2
- ProductInfo.prototype = {
3
- settings: {
4
- 'loadingMessage': 'Please wait ...'
5
- },
6
-
7
- initialize: function(selector, x_image, settings)
8
- {
9
- Object.extend(this.settings, settings);
10
- this.createWindow();
11
-
12
- var that = this;
13
- $$(selector).each(function(el, index){
14
- el.observe('click', that.loadInfo.bind(that));
15
- })
16
- $$(x_image).each(function(el, index){
17
- el.observe('mouseover', that.showButton);
18
- el.observe('mouseout', that.hideButton);
19
- })
20
-
21
- },
22
-
23
- createLoader: function()
24
- {
25
- var loader = new Element('div', {id: 'ajax-preloader'});
26
- loader.innerHTML = "<p class='loading'><img src="+this.settings.loader+" /><br/>"+this.settings.loadingMessage+"</p>";
27
- document.body.appendChild(loader);
28
- $('ajax-preloader').setStyle({
29
- position: 'absolute',
30
- top: document.viewport.getScrollOffsets().top + 200 + 'px',
31
- left: document.body.clientWidth/2 - 75 + 'px'
32
- });
33
- },
34
-
35
- destroyLoader: function()
36
- {
37
- $('ajax-preloader').remove();
38
- },
39
-
40
- showButton: function(e)
41
- {
42
- el = this;
43
- while (el.tagName != 'P') {
44
- el = el.up();
45
- }
46
- var btn = $(el).getElementsBySelector('.ajax')[0];
47
- btn && btn.setStyle({
48
- display: 'block'
49
- })
50
- },
51
-
52
- hideButton: function(e)
53
- {
54
- el = this;
55
- while (el.tagName != 'P') {
56
- el = el.up();
57
- }
58
- var btn = $(el).getElementsBySelector('.ajax')[0];
59
- btn && btn.setStyle({
60
- display: 'none'
61
- })
62
- },
63
-
64
- createWindow: function()
65
- {
66
- var qWindow = new Element('div', {id: 'quick-window'});
67
- qWindow.innerHTML = '<div id="quickview-header"><a href="javascript:void(0)" id="quickview-close"></a></div><div class="quick-view-content"></div>';
68
- document.body.appendChild(qWindow);
69
- $('quickview-close').observe('click', this.hideWindow.bind(this));
70
- },
71
-
72
- showWindow: function()
73
- {
74
- $('quick-window').setStyle({
75
- top: document.viewport.getScrollOffsets().top + 100 + 'px',
76
- left: document.body.clientWidth/2 - $('quick-window').getWidth()/2 + 'px',
77
- display: 'block'
78
- });
79
- },
80
-
81
- setContent: function(content)
82
- {
83
- $$('.quick-view-content')[0].insert(content);
84
- },
85
-
86
- clearContent: function()
87
- {
88
- $$('.quick-view-content')[0].replace('<div class="quick-view-content"></div>');
89
- },
90
-
91
- hideWindow: function()
92
- {
93
- this.clearContent();
94
- $('quick-window').hide();
95
- },
96
-
97
- loadInfo: function(e)
98
- {
99
- if (typeof event != 'undefined') { // ie9 fix
100
- event.preventDefault ? event.preventDefault() : event.returnValue = false;
101
- }
102
- Event.stop(e);
103
- var that = this;
104
- this.createLoader();
105
- new Ajax.Request(e.element().href, {
106
- onSuccess: function(response) {
107
- that.clearContent();
108
- that.setContent(response.responseText);
109
- that.destroyLoader();
110
- that.showWindow();
111
- }
112
- });
113
- }
114
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_grey/js/slider.js DELETED
@@ -1,89 +0,0 @@
1
- var Slider = Class.create();
2
- Slider.prototype = {
3
- options: {
4
- shift: 900
5
- },
6
-
7
- initialize: function(container, controlLeft, controlRight){
8
- this.animating = false;
9
- this.containerSize = {
10
- width: $(container).offsetWidth,
11
- height: $(container).offsetHeight
12
- },
13
- this.content = $(container).down();
14
- this.controlLeft = $(controlLeft);
15
- this.controlRight = $(controlRight);
16
-
17
- this.initControls();
18
- },
19
-
20
- initControls: function(){
21
- this.controlLeft.href = this.controlRight.href = 'javascript:void(0)';
22
- Event.observe(this.controlLeft, 'click', this.shiftLeft.bind(this));
23
- Event.observe(this.controlRight, 'click', this.shiftRight.bind(this));
24
- this.updateControls(1, 0);
25
- },
26
-
27
- shiftRight: function(){
28
- if (this.animating)
29
- return;
30
-
31
- var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
32
-
33
- if ((left + this.options.shift) < 0) {
34
- var shift = this.options.shift;
35
- this.updateControls(1, 1);
36
- } else {
37
- var shift = Math.abs(left);
38
- this.updateControls(1, 0);
39
- }
40
- this.moveTo(shift);
41
- },
42
-
43
- shiftLeft: function(){
44
- if (this.animating)
45
- return;
46
-
47
- var left = isNaN(parseInt(this.content.style.left)) ? 0 : parseInt(this.content.style.left);
48
-
49
- var lastItemLeft = this.content.childElements().last().positionedOffset()[0];
50
- var lastItemWidth = this.content.childElements().last().getWidth();
51
- var contentWidth = lastItemLeft + lastItemWidth + 8;
52
-
53
- if ((contentWidth + left - this.options.shift) > this.containerSize.width) {
54
- var shift = this.options.shift;
55
- this.updateControls(1, 1);
56
- } else {
57
- var shift = contentWidth + left - this.containerSize.width;
58
- this.updateControls(0, 1);
59
- }
60
- this.moveTo(-shift);
61
- },
62
-
63
- moveTo: function(shift){
64
- var scope = this;
65
-
66
- this.animating = true;
67
-
68
- new Effect.Move(this.content, {
69
- x: shift,
70
- duration: 0.4,
71
- delay: 0,
72
- afterFinish: function(){
73
- scope.animating = false;
74
- }
75
- });
76
- },
77
-
78
- updateControls: function(left, right){
79
- if (!left)
80
- this.controlLeft.addClassName('disabled');
81
- else
82
- this.controlLeft.removeClassName('disabled');
83
-
84
- if (!right)
85
- this.controlRight.addClassName('disabled');
86
- else
87
- this.controlRight.removeClassName('disabled');
88
- }
89
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/frontend/default/f001_orange/css/custom.css DELETED
@@ -1,331 +0,0 @@
1
- /*
2
- * body : #db6200;
3
- * .footer .informational li ul li a : #f8e1cf;
4
- * .footer .informational h6 : #f8e1cf;
5
- * .footer .legality a : #ffd2ad;
6
- * #nav a : #ffc697;
7
- * .header-cart .title : #d1d1d1;
8
- * .header .form-language label : #d1d1d1;
9
- * .header-cart .content : #FFF3EA;
10
- * .recently .subtitle : #db6200;
11
- * .page-title h1 : #db6200;
12
- * .featured-products h4 : #db6200;
13
- */
14
-
15
-
16
- body{background:url("../images/body_bg.gif") repeat-x scroll 0 0 #db6200; color:#2F2F2F}
17
-
18
- h1, h2, h3, h4, h5, h6, .head { color:#0A263C; line-height:1.3em; margin-bottom:0.4em;}
19
- a {color:#1E7EC8; text-decoration:underline; }
20
-
21
- .header{width:958px; padding:13px 10px 10px; background:url(../images/container.png) no-repeat 0 0}
22
- .quick-access{float:right; margin-top:18px; padding:0 10px; text-align:right; width: 485px;}
23
-
24
- .header {z-index: 100;}
25
- .header .logo { margin: 0; }
26
- .shop-access{float:right; margin:0; font-size:1em;}
27
- .shop-access a{color:#7386BE; text-decoration:none}
28
- .shop-access a:hover { text-decoration: underline; }
29
- .header .quick-access li{background:url(../images/common.gif) no-repeat -386px -45px; display:inline; padding-left:8px; padding-right:5px}
30
- .header .quick-access li.first{background:none repeat scroll 0 0 transparent; padding-left:0}
31
- .main-container{background:url(../images/container.png) no-repeat 0 100%; margin:0 auto; padding-bottom:30px; width:978px}
32
- .header .form-search label{display:none}
33
- .header .form-search button.button{width:20px}
34
- .header .form-search button.button span { background: none; }
35
-
36
- .header .form-language label { color:#C3D5E3;}
37
-
38
- .page-title {background:transparent url(../images/page_head_bg.gif) repeat-x scroll 0 100%; border:1px solid #EAEAEA; margin-bottom:7px; }
39
- .page-title h1 {color:#db6200; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px; }
40
-
41
- .block-content a{}
42
- .block-subscribe{background:url("../images/base_mini_alt_bg.gif") repeat-x 0 0 #005E89; border:medium none; color:#FFF; min-height:124px}
43
- .block-subscribe .block-title strong{background:none}
44
- .block-subscribe .block-title strong span{background-position:-370px -90px; color:#FFF}
45
- .block-subscribe label{font-weight:bold; color:#FFF}
46
- .block-subscribe .actions{margin-top:15px}
47
- .block-cart .subtotal{background:#eee}
48
-
49
- .block-tags .block-content ul { border: none; }
50
-
51
- .block-layered-nav{}
52
- .block-layered-nav .block-title{ padding:0px; }
53
-
54
- .block-layered-nav{padding:5px 10px}
55
- .block-layered-nav .block-subtitle,
56
- .block-layered-nav .block-content{background:none; border:0px solid #ddd}
57
- .block-layered-nav dt{padding:7px 10px 0 7px}
58
- .block-layered-nav dd{background:url("../images/narrow_by_dd_bg.gif") repeat-x scroll 0 100% transparent; padding:0 12px 0.8em}
59
- .block-layered-nav dd li{line-height:1.3em; margin-bottom:0; padding:4px 4px 4px 8px}
60
- .block-layered-nav dd li a{text-decoration:none; color: #5A5A5A;}
61
- .block-layered-nav dd li a:hover { text-decoration: underline; }
62
-
63
- h3.product-name {color:#0A263C; line-height:1.5em; margin-bottom:0.4em; font-size: 14px; font-weight: bold;}
64
- .products-grid h5 a{color:#007ed3; text-decoration:none}
65
- .products-grid .ratings .amount{display:none}
66
- .products-grid .actions{}
67
- /*************************Buttons*************************/
68
- button.button{background:none; border:0px solid #000}
69
-
70
- .button span{background:url("../images/button.gif") no-repeat 100% -28px; border:0 none; color:#FFF; font:bold 12px arial,sans-serif !important; margin:0; overflow:visible; padding:0 10px 0 0; text-align:center; vertical-align:middle; width:auto}
71
- .button:hover span{background:url("../images/button.gif") no-repeat 100% -84px}
72
- .button span span{background:url("../images/button.gif") no-repeat 0 0; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px; white-space:nowrap}
73
- .button:hover span span{background:url("../images/button.gif") no-repeat 0 -56px}
74
-
75
- /**ALT BTNS**/
76
- .grey-box .button span,
77
- .cart-table .btn-continue span,
78
- .cart-table .btn-update span,
79
- .cart-table .btn-empty span,
80
- .cart .discount button span,
81
- .cart .shipping button span,
82
- .block-compare button.button span,
83
- .block-poll button.button span,
84
- .block-login .actions button.button span,
85
- .product-view .box-tags .form-add button.button span,
86
- .multiple-checkout .title-buttons button.button span,
87
- #multiship-addresses-table tfoot button.button span{ background:url("../images/button.gif") no-repeat 100% -142px; color:#295E86; height:27px}
88
- .grey-box .button:hover span,
89
- .cart-table .btn-continue:hover span,
90
- .cart-table .btn-update:hover span,
91
- .cart-table .btn-empty:hover span,
92
- .cart .discount button:hover span,
93
- .cart .shipping button:hover span,
94
- .block-compare button.button:hover span,
95
- .block-poll button.button:hover span,
96
- .block-login .actions button.button:hover span,
97
- .product-view .box-tags .form-add button.button:hover span,
98
- .multiple-checkout .title-buttons button.button:hover span,
99
- #multiship-addresses-table tfoot button.button:hover span{ background:url("../images/button.gif") no-repeat 100% -200px}
100
- .grey-box .button span span,
101
- .cart-table .btn-continue span span,
102
- .cart-table .btn-update span span,
103
- .cart-table .btn-empty span span,
104
- .cart .discount button span span,
105
- .cart .shipping button span span,
106
- .block-compare button.button span span,
107
- .block-poll button.button span span,
108
- .block-login .actions button.button span span,
109
- .product-view .box-tags .form-add button.button span span,
110
- .multiple-checkout .title-buttons button.button span span,
111
- #multiship-addresses-table tfoot button.button span span{ background:url("../images/button.gif") no-repeat 0 -113px; display:block; height:26px; line-height:25px !important; padding:0 0 0 10px !important; white-space:nowrap; border:0}
112
- .grey-box .button:hover span span,
113
- .cart-table .btn-continue:hover span span,
114
- .cart-table .btn-update:hover span span,
115
- .cart-table .btn-empty:hover span span,
116
- .cart .discount button:hover span span,
117
- .cart .shipping button:hover span span,
118
- .block-compare button.button:hover span span,
119
- .block-poll button.button:hover span span,
120
- .block-login .actions button.button:hover span span,
121
- .product-view .box-tags .form-add button.button:hover span span,
122
- .multiple-checkout .title-buttons button.button:hover span span,
123
- #multiship-addresses-table tfoot button.button:hover span span{ background:url("../images/button.gif") no-repeat 0 -171px}
124
-
125
- .block-subscribe button.button span{background:url("../images/button.gif") no-repeat 100% -257px}
126
- .block-subscribe button.button span span{background:url("../images/button.gif") no-repeat 0 -228px; color:#295e86}
127
-
128
- .block-subscribe button.button:hover span{background:url("../images/button.gif") no-repeat 100% -315px}
129
- .block-subscribe button.button:hover span span{background:url("../images/button.gif") no-repeat 0 -286px; color:#295e86}
130
-
131
- button.btn-checkout span span{padding:0 16px}
132
- /****************************End Buttons***************************/
133
- .footer-container{background:url("../images/footer_bg.gif") repeat-x 0 0; margin-top:25px}
134
- .footer{margin:0 auto; padding:15px 10px 4em; text-align:left; width:958px}
135
-
136
-
137
- /********** < Navigation */
138
- #nav{padding:0 0 3px; width:952px; margin:0 auto;background:url(../images/nav.gif) no-repeat 0 0;font:bold 1em Arial,Helvetica,sans-serif}
139
-
140
- /* All Levels */ /* Style consistent throughout all nav levels */
141
- #nav li { position:relative; text-align:left; }
142
- #nav li.over { z-index:998; }
143
- #nav a,
144
- #nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
145
- #nav span { display:block; cursor:pointer; white-space:nowrap; }
146
- #nav li ul span {white-space:normal; }
147
-
148
- /* 0 Level */
149
- #nav li { float:left; }
150
- #nav a{float:left; color:#ffc697; font-weight:bold}
151
- #nav li.active a{color:#fff; background:url(../images/nav.gif) repeat-x 0 -87px}
152
- #nav span{background:url(../images/nav.gif) no-repeat 100% -44px; padding:12px 15px 12px 14px}
153
- /*#nav li.first span{padding-left:18px}*/
154
- #nav li.over a,
155
- #nav a:hover{color:#fff}
156
-
157
- /* 1st Level */
158
- #nav ul li,
159
- #nav ul li.active{float:none; margin:0; padding-bottom:1px; background:#f4f4f4}
160
- #nav li.active li a,
161
- #nav ul li.active a{background:#fff}
162
- /*#nav ul li.over{background:#d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%}
163
- */
164
- #nav ul li.last { background:#ecf3f6; padding-bottom:0; }
165
-
166
- #nav ul a,
167
- #nav ul a:hover { float:none; padding:0; background:none; }
168
- #nav ul li a { font-weight:normal !important; }
169
-
170
- /* 2nd Level */
171
- #nav ul,
172
- #nav div {position:absolute; width:15em; top:39px; left:-10000px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; border-top-width:0}
173
- #nav div ul { position:static; width:auto; border:none; }
174
- #nav ul span {background:none}
175
-
176
- /* 3rd+ Level */
177
- #nav ul ul,
178
- #nav ul div { top:5px; border:1px solid #aaa; border-color:#ccc #aaa #aaa #ccc; }
179
-
180
- #nav ul li a {background:#fff}
181
- #nav ul li a:hover {background:#f4f4f4}
182
- #nav ul li.over > a {background:#f4f4f4}
183
- #nav ul li a,
184
- #nav ul li a:hover {color:#2f2f2f !important}
185
- #nav ul span,
186
- #nav ul li.last li span {padding:4px 15px 5px 15px}
187
-
188
- /* Show menu */
189
- #nav li ul.shown-sub,
190
- #nav li div.shown-sub { left:-1px; z-index:999; }
191
- #nav li .shown-sub ul.shown-sub,
192
- #nav li .shown-sub li div.shown-sub { left:100px; }
193
- /********** Navigation > */
194
- /* ======================================================================================= */
195
-
196
- .cms-home .nav-home a,
197
- .contacts-index-index .nav-contacts a,
198
- .cms-about-magento-demo-store .nav-about a{color:#fff !important; background:url(../images/nav.gif) repeat-x 0 -87px}
199
- .cms-home .nav-home a{background:url(../images/nav.gif) repeat-x 0 -130px}
200
-
201
- .f-right{float:right}
202
- .f-left{float:left}
203
- .a-right{text-align:right}
204
- .a-left{text-align:left}
205
- .a-center{text-align:center}
206
-
207
- .header .welcome-msg{float:left; font-size:0.9em; margin:1px 12px 0 0; color:#757578}
208
-
209
- .header-cart{position:absolute; top:-22px; right:8px; width:205px; z-index:100}
210
- .header-cart .head{margin:0; overflow:hidden; cursor:pointer}
211
- .header-cart .title{font-weight:normal; float:right; font-size:.9em; color:#c3d5e3; padding:3px 0 3px 22px; background:url(../images/common.gif) no-repeat -382px 4px}
212
- .header-cart .title a{color:#fff}
213
- .header-cart .content{background:#FFF3EA; padding:0}
214
- .header-cart .content li{padding:2px 6px; border-bottom:1px solid #ddd}
215
- .header-cart .content li a:hover{color:#333}
216
- .header-cart .widget-btn{float:right; margin-left: 5px; margin-top: 4px;}
217
- .header-cart .title a{color:#fff}
218
-
219
- .slogan{text-align:left; float:left; text-indent:-9999px !important; width:192px; height:53px; margin:0; background:url(../images/slogan.gif) no-repeat 0 0}
220
-
221
- #nav-sidebox{font-size:1.1em}
222
- #nav-sidebox a{text-decoration:none; color:#000}
223
- #nav-sidebox a:hover{text-decoration:underline}
224
- #nav-sidebox li{line-height:22px; font-weight:bold}
225
- #nav-sidebox li ul li{font-weight:normal; margin:0}
226
- #nav-sidebox ul{}
227
- #nav-sidebox ul li{padding-left:10px}
228
- #nav-sidebox ul li ul{display:none}
229
-
230
- .featured-container{margin-bottom:20px}
231
- .featured-center{width:978px; margin:0 auto; padding-bottom:20px; background:url(../images/container.png) no-repeat -1957px 100%}
232
- .featured-top{background:url(../images/container.png) no-repeat -1957px 0}
233
-
234
- .mini-newsletter{border:none; min-height:124px; color:#fff; background:#005e89 url(../images/base_mini_alt_bg.gif) repeat-x 0 0}
235
- .mini-newsletter label{color:#fff}
236
- .mini-newsletter .head h4{color:#fff; background-position:-370px -90px}
237
- .mini-newsletter .input-text{border:none; padding:4px 2px}
238
- .mini-newsletter .form-button-alt{background-position:100% -256px}
239
- .mini-newsletter .form-button-alt span{background-position:0 -228px}
240
- .mini-newsletter .form-button-alt:hover{background-position:100% -314px}
241
- .mini-newsletter .form-button-alt:hover span{background-position:0 -286px}
242
- .mini-newsletter .validation-advice{color:#fff; background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px}
243
-
244
- .recently .grid-row {border-bottom:1px solid #d9dde3; float: left; position: relative; }
245
-
246
- .recently .last{border-bottom:0px solid #FFF}
247
- .recently .subtitle{color:#db6200; font-size:1.4em; font-weight:normal; line-height:1.3em; margin:0; max-width:100%; overflow:hidden; padding:5px 0 4px 10px}
248
- .recently li.item{width:167px; float:left; padding:10px 10px 40px;}
249
- .recently li.item .price-box{}
250
- .recently li.item .actions { position: absolute; bottom: 12px; }
251
-
252
- .category-head{background:url("../images/page_head_bg.gif") repeat-x 0 100%; border:1px solid #EAEAEA; margin-bottom:7px}
253
- .product-image .ajax{width:70px; z-index:20; position:absolute; display:none}
254
- h5 a.product-name{color:#007ED3; font-size:1.05em; text-decoration:none; font-weight:bold}
255
- a.product-name:hover { text-decoration: underline; }
256
-
257
- .regular-price .price{color:#777; font-size:13px; font-weight:bold}
258
-
259
- .footer .informational{width:820px; margin:0 auto; overflow:hidden; zoom:1}
260
- .footer .informational li{float:left; margin:0 40px; display: inline;}
261
- .footer .informational li ul li{float:none; margin:0; display: block;}
262
- .footer .informational li ul li a{background:url("../images/common.gif") no-repeat -352px -309px; padding-left:10px; text-decoration:none; color:#f8e1cf; font-size:0.9em}
263
- .footer .informational li ul li a:hover { text-decoration: underline; }
264
- .footer .informational h6{margin-bottom:0.4em; color:#f8e1cf; font-size:1.1em}
265
-
266
- .footer .contacts{clear:both; font-size:.9em; color:#fff; border:1px solid #d56000; height:32px; margin:17px 0 10px; border-width:1px 0; line-height:31px}
267
-
268
- .footer .payments{float:right; margin:5px 0 0}
269
- .footer .legality{text-align:center; color:#FFF; font-size: .9em}
270
- .footer .legality a{color:#ffd2ad; text-decoration: none;}
271
-
272
- /* glider */
273
- #slider{ position:relative; height:334px; width:738px; padding:2px 0 0 11px; z-index:5; overflow:hidden; margin-bottom:5px; background:url(../images/glider_bg.gif) no-repeat 0 0}
274
- div.scroller{ height:295px; width:725px; overflow:hidden; position:relative}
275
- div.slidercontrolwr{ position:absolute; bottom:6px; left:315px; z-index:6}
276
- div.scroller img{ border:none}
277
- div.scroller div.sectionslide{ height:290px; overflow:hidden; float:left}
278
- div.scroller div.content{ width:10000px; padding:0px}
279
- .content .sliderdescription{ padding:0px 10px; position:relative; top:-30px; color:#777; font:11px bold Helvetica,sans-serif; opacity:0.65; filter:alpha(opacity=65)}
280
-
281
- .content .sliderdescription p{line-height:20px; text-align:center}
282
- div.sliderdescription:hover{background:#fff}
283
- .content a{text-decoration:none; color:#5a5a5a}
284
- .content a:hover{text-decoration:underline}
285
-
286
- .slidercontrol{ list-style-image:none; list-style-position:outside; list-style-type:none; margin:10px 0 0; padding:0}
287
- .slidercontrol{list-style:none; padding:0px; margin:0px}
288
-
289
- .slidercontrol a{ float:left; width:15px; margin:0px 2px; padding:0px 2px; text-decoration:none; color:#fff; font-weight:bold; background:#c0c0c0; overflow:hidden; text-align:center; border:1px solid #c0c0c0}
290
-
291
- .slidercontrol a:hover,
292
- .slidercontrol a.active{background:#f0f0f0; color:#c2c2c2}
293
-
294
- /* slider */
295
- .featured-products{clear:both;