Kartparadigm_Theme - Version 1.0.0.0

Version Notes

Tested With Magento 1.8

Download this release

Release Info

Developer Kartparadigm
Extension Kartparadigm_Theme
Version 1.0.0.0
Comparing to
See all releases


Version 1.0.0.0

Files changed (297) hide show
  1. app/code/community/Kartparadigm/Theme/Block/Adminhtml/System/Config/Form/Field/Font.php +69 -0
  2. app/code/community/Kartparadigm/Theme/Helper/Data.php +6 -0
  3. app/code/community/Kartparadigm/Theme/Model/Config/Font.php +28 -0
  4. app/code/community/Kartparadigm/Theme/Model/Config/Header.php +27 -0
  5. app/code/community/Kartparadigm/Theme/etc/config.xml +78 -0
  6. app/code/community/Kartparadigm/Theme/etc/system.xml +358 -0
  7. app/code/community/Kartparadigm/Theme/sql/theme_setup/mysql4-install-0.1.0.php +149 -0
  8. app/design/adminhtml/default/default/layout/kartparadigm_themeoptions.xml +10 -0
  9. app/design/frontend/Kartparadigm/default/layout/catalog.xml +430 -0
  10. app/design/frontend/Kartparadigm/default/layout/checkout.xml +507 -0
  11. app/design/frontend/Kartparadigm/default/layout/customer.xml +299 -0
  12. app/design/frontend/Kartparadigm/default/layout/directory.xml +45 -0
  13. app/design/frontend/Kartparadigm/default/layout/local.xml +26 -0
  14. app/design/frontend/Kartparadigm/default/layout/local.xml~ +26 -0
  15. app/design/frontend/Kartparadigm/default/layout/page.xml +205 -0
  16. app/design/frontend/Kartparadigm/default/template/callouts/left_col.phtml +80 -0
  17. app/design/frontend/Kartparadigm/default/template/callouts/right_col.phtml +80 -0
  18. app/design/frontend/Kartparadigm/default/template/catalog/product/compare/top_campare.phtml +40 -0
  19. app/design/frontend/Kartparadigm/default/template/catalog/product/list.phtml +398 -0
  20. app/design/frontend/Kartparadigm/default/template/catalog/product/list/related.phtml +274 -0
  21. app/design/frontend/Kartparadigm/default/template/catalog/product/list/toolbar.phtml +182 -0
  22. app/design/frontend/Kartparadigm/default/template/catalog/product/list/upsell.phtml +235 -0
  23. app/design/frontend/Kartparadigm/default/template/catalog/product/view.phtml +427 -0
  24. app/design/frontend/Kartparadigm/default/template/catalog/product/view/additional.phtml +29 -0
  25. app/design/frontend/Kartparadigm/default/template/catalog/product/view/addto.phtml +46 -0
  26. app/design/frontend/Kartparadigm/default/template/catalog/product/view/addtocart.phtml +37 -0
  27. app/design/frontend/Kartparadigm/default/template/catalog/product/view/attributes.phtml +52 -0
  28. app/design/frontend/Kartparadigm/default/template/catalog/product/view/description.phtml +39 -0
  29. app/design/frontend/Kartparadigm/default/template/catalog/product/view/media.phtml +143 -0
  30. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options.phtml +193 -0
  31. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/js.phtml +89 -0
  32. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/date.phtml +92 -0
  33. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/default.phtml +30 -0
  34. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/file.phtml +103 -0
  35. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/select.phtml +40 -0
  36. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/text.phtml +41 -0
  37. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/wrapper.phtml +33 -0
  38. app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/wrapper/bottom.phtml +29 -0
  39. app/design/frontend/Kartparadigm/default/template/catalog/product/view/price.phtml +429 -0
  40. app/design/frontend/Kartparadigm/default/template/catalog/product/view/price_clone.phtml +28 -0
  41. app/design/frontend/Kartparadigm/default/template/catalog/product/view/tierprices.phtml +232 -0
  42. app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/configurable.phtml +31 -0
  43. app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/default.phtml +34 -0
  44. app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/grouped.phtml +93 -0
  45. app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/simple.phtml +31 -0
  46. app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/virtual.phtml +31 -0
  47. app/design/frontend/Kartparadigm/default/template/catalog/product/widget/link/link_block.phtml +27 -0
  48. app/design/frontend/Kartparadigm/default/template/catalog/product/widget/link/link_inline.phtml +27 -0
  49. app/design/frontend/Kartparadigm/default/template/catalog/product/widget/new/content/new_grid.phtml +189 -0
  50. app/design/frontend/Kartparadigm/default/template/catalog/product/widget/new/content/new_list.phtml +63 -0
  51. app/design/frontend/Kartparadigm/default/template/catalogsearch/form.mini.phtml +42 -0
  52. app/design/frontend/Kartparadigm/default/template/checkout/cart.phtml +169 -0
  53. app/design/frontend/Kartparadigm/default/template/checkout/cart/sidebar.phtml +84 -0
  54. app/design/frontend/Kartparadigm/default/template/checkout/onepage.phtml +121 -0
  55. app/design/frontend/Kartparadigm/default/template/checkout/onepage/agreements.phtml +51 -0
  56. app/design/frontend/Kartparadigm/default/template/checkout/onepage/billing.phtml +216 -0
  57. app/design/frontend/Kartparadigm/default/template/checkout/onepage/failure.phtml +32 -0
  58. app/design/frontend/Kartparadigm/default/template/checkout/onepage/link.phtml +29 -0
  59. app/design/frontend/Kartparadigm/default/template/checkout/onepage/login.phtml +124 -0
  60. app/design/frontend/Kartparadigm/default/template/checkout/onepage/payment.phtml +73 -0
  61. app/design/frontend/Kartparadigm/default/template/checkout/onepage/progress.phtml +59 -0
  62. app/design/frontend/Kartparadigm/default/template/checkout/onepage/review.phtml +29 -0
  63. app/design/frontend/Kartparadigm/default/template/checkout/onepage/shipping.phtml +156 -0
  64. app/design/frontend/Kartparadigm/default/template/checkout/onepage/shipping_method.phtml +46 -0
  65. app/design/frontend/Kartparadigm/default/template/customer/form/mini.login.phtml +187 -0
  66. app/design/frontend/Kartparadigm/default/template/directory/currency.phtml +35 -0
  67. app/design/frontend/Kartparadigm/default/template/home/home-slider.phtml +265 -0
  68. app/design/frontend/Kartparadigm/default/template/page/1column-login.phtml +80 -0
  69. app/design/frontend/Kartparadigm/default/template/page/1column.phtml +66 -0
  70. app/design/frontend/Kartparadigm/default/template/page/2columns-left.phtml +67 -0
  71. app/design/frontend/Kartparadigm/default/template/page/2columns-right.phtml +69 -0
  72. app/design/frontend/Kartparadigm/default/template/page/3columns.phtml +67 -0
  73. app/design/frontend/Kartparadigm/default/template/page/html/breadcrumbs.phtml +46 -0
  74. app/design/frontend/Kartparadigm/default/template/page/html/footer.phtml +82 -0
  75. app/design/frontend/Kartparadigm/default/template/page/html/head.phtml +46 -0
  76. app/design/frontend/Kartparadigm/default/template/page/html/header.phtml +530 -0
  77. app/design/frontend/Kartparadigm/default/template/page/html/top.links.phtml +45 -0
  78. app/design/frontend/Kartparadigm/default/template/page/html/topmenu.phtml +93 -0
  79. app/design/frontend/Kartparadigm/default/template/page/switch/languages.phtml +78 -0
  80. app/design/frontend/Kartparadigm/default/template/page/template/links.phtml +45 -0
  81. app/design/frontend/Kartparadigm/default/template/persistent/checkout/onepage/billing.phtml +226 -0
  82. app/design/frontend/Kartparadigm/default/template/persistent/checkout/onepage/login.phtml +151 -0
  83. app/design/frontend/Kartparadigm/default/template/persistent/customer/form/register.phtml +112 -0
  84. app/design/frontend/Kartparadigm/default/template/rating/detailed.phtml +46 -0
  85. app/design/frontend/Kartparadigm/default/template/rating/empty.phtml +27 -0
  86. app/design/frontend/Kartparadigm/red/layout/page.xml +205 -0
  87. app/etc/modules/Kartparadigm_Theme.xml +9 -0
  88. media/wysiwyg/img/Selection_005.png +0 -0
  89. media/wysiwyg/img/col_left_callout.jpg +0 -0
  90. media/wysiwyg/img/electronics_cellphones.jpg +0 -0
  91. media/wysiwyg/img/electronics_digitalcameras.jpg +0 -0
  92. media/wysiwyg/img/electronics_laptops.jpg +0 -0
  93. media/wysiwyg/img/logo.png +0 -0
  94. media/wysiwyg/img/ph_callout_left_rebel.jpg +0 -0
  95. package.xml +18 -0
  96. skin/frontend/Kartparadigm/default/css/custom.css +57 -0
  97. skin/frontend/Kartparadigm/default/css/kartparadigm_custom1.css +4170 -0
  98. skin/frontend/Kartparadigm/default/css/kartparadigm_responsive.css +1467 -0
  99. skin/frontend/Kartparadigm/default/css/oauth-simple.css +239 -0
  100. skin/frontend/Kartparadigm/default/css/print.css +40 -0
  101. skin/frontend/Kartparadigm/default/css/slicknav.css +103 -0
  102. skin/frontend/Kartparadigm/default/css/styles-ie.css +149 -0
  103. skin/frontend/Kartparadigm/default/css/styles.css +1800 -0
  104. skin/frontend/Kartparadigm/default/css/zoome-min.css +1 -0
  105. skin/frontend/Kartparadigm/default/dist/easyzoom.css +65 -0
  106. skin/frontend/Kartparadigm/default/dist/easyzoom.js +6 -0
  107. skin/frontend/Kartparadigm/default/images/arrow_button.png +0 -0
  108. skin/frontend/Kartparadigm/default/images/arrow_item.gif +0 -0
  109. skin/frontend/Kartparadigm/default/images/arrow_switch.png +0 -0
  110. skin/frontend/Kartparadigm/default/images/arrow_totop.png +0 -0
  111. skin/frontend/Kartparadigm/default/images/best_selling_tr_even_bg.gif +0 -0
  112. skin/frontend/Kartparadigm/default/images/best_selling_tr_odd_bg.gif +0 -0
  113. skin/frontend/Kartparadigm/default/images/bkg_account_box.gif +0 -0
  114. skin/frontend/Kartparadigm/default/images/bkg_block-actions.gif +0 -0
  115. skin/frontend/Kartparadigm/default/images/bkg_block-currency.gif +0 -0
  116. skin/frontend/Kartparadigm/default/images/bkg_block-layered-dd.gif +0 -0
  117. skin/frontend/Kartparadigm/default/images/bkg_block-layered-dt.gif +0 -0
  118. skin/frontend/Kartparadigm/default/images/bkg_block-layered-label.gif +0 -0
  119. skin/frontend/Kartparadigm/default/images/bkg_block-layered-li.gif +0 -0
  120. skin/frontend/Kartparadigm/default/images/bkg_block-layered-title.gif +0 -0
  121. skin/frontend/Kartparadigm/default/images/bkg_block-layered1.gif +0 -0
  122. skin/frontend/Kartparadigm/default/images/bkg_block-title-account.gif +0 -0
  123. skin/frontend/Kartparadigm/default/images/bkg_block-title.gif +0 -0
  124. skin/frontend/Kartparadigm/default/images/bkg_body.gif +0 -0
  125. skin/frontend/Kartparadigm/default/images/bkg_buttons-set1.gif +0 -0
  126. skin/frontend/Kartparadigm/default/images/bkg_checkout.gif +0 -0
  127. skin/frontend/Kartparadigm/default/images/bkg_collapse-gm.gif +0 -0
  128. skin/frontend/Kartparadigm/default/images/bkg_collapse.gif +0 -0
  129. skin/frontend/Kartparadigm/default/images/bkg_divider1.gif +0 -0
  130. skin/frontend/Kartparadigm/default/images/bkg_form-search.gif +0 -0
  131. skin/frontend/Kartparadigm/default/images/bkg_grand-total.gif +0 -0
  132. skin/frontend/Kartparadigm/default/images/bkg_grid.gif +0 -0
  133. skin/frontend/Kartparadigm/default/images/bkg_header.jpg +0 -0
  134. skin/frontend/Kartparadigm/default/images/bkg_login-box.gif +0 -0
  135. skin/frontend/Kartparadigm/default/images/bkg_main1.gif +0 -0
  136. skin/frontend/Kartparadigm/default/images/bkg_main2.gif +0 -0
  137. skin/frontend/Kartparadigm/default/images/bkg_nav0.jpg +0 -0
  138. skin/frontend/Kartparadigm/default/images/bkg_nav1.gif +0 -0
  139. skin/frontend/Kartparadigm/default/images/bkg_nav2.gif +0 -0
  140. skin/frontend/Kartparadigm/default/images/bkg_opc-title-off.gif +0 -0
  141. skin/frontend/Kartparadigm/default/images/bkg_pipe1.gif +0 -0
  142. skin/frontend/Kartparadigm/default/images/bkg_pipe2.gif +0 -0
  143. skin/frontend/Kartparadigm/default/images/bkg_pipe3.gif +0 -0
  144. skin/frontend/Kartparadigm/default/images/bkg_product-view.gif +0 -0
  145. skin/frontend/Kartparadigm/default/images/bkg_product_collateral.gif +0 -0
  146. skin/frontend/Kartparadigm/default/images/bkg_rating.gif +0 -0
  147. skin/frontend/Kartparadigm/default/images/bkg_sp-methods.gif +0 -0
  148. skin/frontend/Kartparadigm/default/images/bkg_tfoot.gif +0 -0
  149. skin/frontend/Kartparadigm/default/images/bkg_th-v.gif +0 -0
  150. skin/frontend/Kartparadigm/default/images/bkg_th.gif +0 -0
  151. skin/frontend/Kartparadigm/default/images/bkg_toolbar.gif +0 -0
  152. skin/frontend/Kartparadigm/default/images/btn_checkout.gif +0 -0
  153. skin/frontend/Kartparadigm/default/images/btn_edit.gif +0 -0
  154. skin/frontend/Kartparadigm/default/images/btn_gm-close.gif +0 -0
  155. skin/frontend/Kartparadigm/default/images/btn_google_checkout.gif +0 -0
  156. skin/frontend/Kartparadigm/default/images/btn_overlay.png +0 -0
  157. skin/frontend/Kartparadigm/default/images/btn_overlay_product.png +0 -0
  158. skin/frontend/Kartparadigm/default/images/btn_paypal_checkout.gif +0 -0
  159. skin/frontend/Kartparadigm/default/images/btn_place_order.gif +0 -0
  160. skin/frontend/Kartparadigm/default/images/btn_previous.gif +0 -0
  161. skin/frontend/Kartparadigm/default/images/btn_proceed_to_checkout.gif +0 -0
  162. skin/frontend/Kartparadigm/default/images/btn_proceed_to_checkout_dis.gif +0 -0
  163. skin/frontend/Kartparadigm/default/images/btn_remove.gif +0 -0
  164. skin/frontend/Kartparadigm/default/images/btn_remove2.gif +0 -0
  165. skin/frontend/Kartparadigm/default/images/btn_search.gif +0 -0
  166. skin/frontend/Kartparadigm/default/images/btn_trash.gif +0 -0
  167. skin/frontend/Kartparadigm/default/images/btn_window_close.gif +0 -0
  168. skin/frontend/Kartparadigm/default/images/calendar.gif +0 -0
  169. skin/frontend/Kartparadigm/default/images/cart_top.png +0 -0
  170. skin/frontend/Kartparadigm/default/images/catalog/product/placeholder/image.jpg +0 -0
  171. skin/frontend/Kartparadigm/default/images/catalog/product/placeholder/small_image.jpg +0 -0
  172. skin/frontend/Kartparadigm/default/images/catalog/product/placeholder/thumbnail.jpg +0 -0
  173. skin/frontend/Kartparadigm/default/images/close-button.jpg +0 -0
  174. skin/frontend/Kartparadigm/default/images/compare.png +0 -0
  175. skin/frontend/Kartparadigm/default/images/cvv.gif +0 -0
  176. skin/frontend/Kartparadigm/default/images/cvv.jpg +0 -0
  177. skin/frontend/Kartparadigm/default/images/email.png +0 -0
  178. skin/frontend/Kartparadigm/default/images/fam_book_open.png +0 -0
  179. skin/frontend/Kartparadigm/default/images/free_shipping_callout.jpg +0 -0
  180. skin/frontend/Kartparadigm/default/images/fullimage1.jpg +0 -0
  181. skin/frontend/Kartparadigm/default/images/fullimage2.jpg +0 -0
  182. skin/frontend/Kartparadigm/default/images/fullimage3.jpg +0 -0
  183. skin/frontend/Kartparadigm/default/images/fullimage31.jpg +0 -0
  184. skin/frontend/Kartparadigm/default/images/grid-cal.gif +0 -0
  185. skin/frontend/Kartparadigm/default/images/home_left_callout.jpg +0 -0
  186. skin/frontend/Kartparadigm/default/images/home_main_callout.jpg +0 -0
  187. skin/frontend/Kartparadigm/default/images/i_arrow-top.gif +0 -0
  188. skin/frontend/Kartparadigm/default/images/i_asc_arrow.gif +0 -0
  189. skin/frontend/Kartparadigm/default/images/i_availability_only.gif +0 -0
  190. skin/frontend/Kartparadigm/default/images/i_availability_only_arrow.gif +0 -0
  191. skin/frontend/Kartparadigm/default/images/i_block-cart.gif +0 -0
  192. skin/frontend/Kartparadigm/default/images/i_block-currency.gif +0 -0
  193. skin/frontend/Kartparadigm/default/images/i_block-list.gif +0 -0
  194. skin/frontend/Kartparadigm/default/images/i_block-poll.gif +0 -0
  195. skin/frontend/Kartparadigm/default/images/i_block-related.gif +0 -0
  196. skin/frontend/Kartparadigm/default/images/i_block-subscribe.gif +0 -0
  197. skin/frontend/Kartparadigm/default/images/i_block-tags.gif +0 -0
  198. skin/frontend/Kartparadigm/default/images/i_block-viewed.gif +0 -0
  199. skin/frontend/Kartparadigm/default/images/i_block-wishlist.gif +0 -0
  200. skin/frontend/Kartparadigm/default/images/i_desc_arrow.gif +0 -0
  201. skin/frontend/Kartparadigm/default/images/i_discount.gif +0 -0
  202. skin/frontend/Kartparadigm/default/images/i_folder-table.gif +0 -0
  203. skin/frontend/Kartparadigm/default/images/i_grid_mode.gif +0 -0
  204. skin/frontend/Kartparadigm/default/images/i_list_mode.gif +0 -0
  205. skin/frontend/Kartparadigm/default/images/i_ma-info.gif +0 -0
  206. skin/frontend/Kartparadigm/default/images/i_ma-reviews.gif +0 -0
  207. skin/frontend/Kartparadigm/default/images/i_ma-tags.gif +0 -0
  208. skin/frontend/Kartparadigm/default/images/i_msg-error.gif +0 -0
  209. skin/frontend/Kartparadigm/default/images/i_msg-note.gif +0 -0
  210. skin/frontend/Kartparadigm/default/images/i_msg-success.gif +0 -0
  211. skin/frontend/Kartparadigm/default/images/i_notice.gif +0 -0
  212. skin/frontend/Kartparadigm/default/images/i_page1.gif +0 -0
  213. skin/frontend/Kartparadigm/default/images/i_page2.gif +0 -0
  214. skin/frontend/Kartparadigm/default/images/i_pager-next.gif +0 -0
  215. skin/frontend/Kartparadigm/default/images/i_pager-prev.gif +0 -0
  216. skin/frontend/Kartparadigm/default/images/i_print.gif +0 -0
  217. skin/frontend/Kartparadigm/default/images/i_rss-big.png +0 -0
  218. skin/frontend/Kartparadigm/default/images/i_rss.gif +0 -0
  219. skin/frontend/Kartparadigm/default/images/i_search_criteria.gif +0 -0
  220. skin/frontend/Kartparadigm/default/images/i_shipping.gif +0 -0
  221. skin/frontend/Kartparadigm/default/images/i_tag_add.gif +0 -0
  222. skin/frontend/Kartparadigm/default/images/i_tier.gif +0 -0
  223. skin/frontend/Kartparadigm/default/images/i_type_grid.gif +0 -0
  224. skin/frontend/Kartparadigm/default/images/i_type_list.gif +0 -0
  225. skin/frontend/Kartparadigm/default/images/icon_breadcrumb.gif +0 -0
  226. skin/frontend/Kartparadigm/default/images/icon_cart.png +0 -0
  227. skin/frontend/Kartparadigm/default/images/icon_cart_listing_mask.png +0 -0
  228. skin/frontend/Kartparadigm/default/images/icon_cart_product.png +0 -0
  229. skin/frontend/Kartparadigm/default/images/login-bkg.jpg +0 -0
  230. skin/frontend/Kartparadigm/default/images/login_bg.jpg +0 -0
  231. skin/frontend/Kartparadigm/default/images/logo.gif +0 -0
  232. skin/frontend/Kartparadigm/default/images/logo_email.gif +0 -0
  233. skin/frontend/Kartparadigm/default/images/logo_print.gif +0 -0
  234. skin/frontend/Kartparadigm/default/images/magnifier_handle.gif +0 -0
  235. skin/frontend/Kartparadigm/default/images/map_popup_arrow.gif +0 -0
  236. skin/frontend/Kartparadigm/default/images/media/404_callout1.jpg +0 -0
  237. skin/frontend/Kartparadigm/default/images/media/404_callout2.jpg +0 -0
  238. skin/frontend/Kartparadigm/default/images/media/about_us_img.jpg +0 -0
  239. skin/frontend/Kartparadigm/default/images/media/best_selling_img01.jpg +0 -0
  240. skin/frontend/Kartparadigm/default/images/media/best_selling_img02.jpg +0 -0
  241. skin/frontend/Kartparadigm/default/images/media/best_selling_img03.jpg +0 -0
  242. skin/frontend/Kartparadigm/default/images/media/best_selling_img04.jpg +0 -0
  243. skin/frontend/Kartparadigm/default/images/media/best_selling_img05.jpg +0 -0
  244. skin/frontend/Kartparadigm/default/images/media/best_selling_img06.jpg +0 -0
  245. skin/frontend/Kartparadigm/default/images/media/cell_phone_landing_banner1.jpg +0 -0
  246. skin/frontend/Kartparadigm/default/images/media/col_left_callout.jpg +0 -0
  247. skin/frontend/Kartparadigm/default/images/media/col_right_callout.jpg +0 -0
  248. skin/frontend/Kartparadigm/default/images/media/electronics_cellphones.jpg +0 -0
  249. skin/frontend/Kartparadigm/default/images/media/electronics_digitalcameras.jpg +0 -0
  250. skin/frontend/Kartparadigm/default/images/media/electronics_laptops.jpg +0 -0
  251. skin/frontend/Kartparadigm/default/images/media/furniture_callout_spot.jpg +0 -0
  252. skin/frontend/Kartparadigm/default/images/media/furnitures_bed_room.jpg +0 -0
  253. skin/frontend/Kartparadigm/default/images/media/furnitures_living_room.jpg +0 -0
  254. skin/frontend/Kartparadigm/default/images/media/head_electronics_cellphones.gif +0 -0
  255. skin/frontend/Kartparadigm/default/images/media/head_electronics_digicamera.gif +0 -0
  256. skin/frontend/Kartparadigm/default/images/media/head_electronics_laptops.gif +0 -0
  257. skin/frontend/Kartparadigm/default/images/media/laptop_callout_mid1.jpg +0 -0
  258. skin/frontend/Kartparadigm/default/images/media/laptop_callout_mid2.jpg +0 -0
  259. skin/frontend/Kartparadigm/default/images/media/laptop_callout_mid3.jpg +0 -0
  260. skin/frontend/Kartparadigm/default/images/media/laptop_callout_spot.jpg +0 -0
  261. skin/frontend/Kartparadigm/default/images/media/shirts_landing_banner1.jpg +0 -0
  262. skin/frontend/Kartparadigm/default/images/np_cart_thumb.gif +0 -0
  263. skin/frontend/Kartparadigm/default/images/np_more_img.gif +0 -0
  264. skin/frontend/Kartparadigm/default/images/np_product_main.gif +0 -0
  265. skin/frontend/Kartparadigm/default/images/np_thumb.gif +0 -0
  266. skin/frontend/Kartparadigm/default/images/np_thumb2.gif +0 -0
  267. skin/frontend/Kartparadigm/default/images/opc-ajax-loader.gif +0 -0
  268. skin/frontend/Kartparadigm/default/images/pager_arrow_left.gif +0 -0
  269. skin/frontend/Kartparadigm/default/images/pager_arrow_right.gif +0 -0
  270. skin/frontend/Kartparadigm/default/images/ph_callout_left_rebel.jpg +0 -0
  271. skin/frontend/Kartparadigm/default/images/ph_callout_left_top.gif +0 -0
  272. skin/frontend/Kartparadigm/default/images/product-labels.png +0 -0
  273. skin/frontend/Kartparadigm/default/images/product_zoom_overlay_magnif.gif +0 -0
  274. skin/frontend/Kartparadigm/default/images/rating.png +0 -0
  275. skin/frontend/Kartparadigm/default/images/search.png +0 -0
  276. skin/frontend/Kartparadigm/default/images/selectbox_arrow.png +0 -0
  277. skin/frontend/Kartparadigm/default/images/slider-arrows.png +0 -0
  278. skin/frontend/Kartparadigm/default/images/slider_bg.gif +0 -0
  279. skin/frontend/Kartparadigm/default/images/slider_btn_zoom_in.gif +0 -0
  280. skin/frontend/Kartparadigm/default/images/slider_btn_zoom_out.gif +0 -0
  281. skin/frontend/Kartparadigm/default/images/slideshow_arrows.png +0 -0
  282. skin/frontend/Kartparadigm/default/images/spacer.gif +0 -0
  283. skin/frontend/Kartparadigm/default/images/validation_advice_bg.gif +0 -0
  284. skin/frontend/Kartparadigm/default/images/wishlist.png +0 -0
  285. skin/frontend/Kartparadigm/default/images/xmlconnect/catalog/category/placeholder/image.jpg +0 -0
  286. skin/frontend/Kartparadigm/default/images/xmlconnect/catalog/category/placeholder/small_image.jpg +0 -0
  287. skin/frontend/Kartparadigm/default/images/xmlconnect/catalog/category/placeholder/thumbnail.jpg +0 -0
  288. skin/frontend/Kartparadigm/default/images/xmlconnect/tab_account.png +0 -0
  289. skin/frontend/Kartparadigm/default/images/xmlconnect/tab_cart.png +0 -0
  290. skin/frontend/Kartparadigm/default/images/xmlconnect/tab_home.png +0 -0
  291. skin/frontend/Kartparadigm/default/images/xmlconnect/tab_more.png +0 -0
  292. skin/frontend/Kartparadigm/default/images/xmlconnect/tab_page.png +0 -0
  293. skin/frontend/Kartparadigm/default/images/xmlconnect/tab_search.png +0 -0
  294. skin/frontend/Kartparadigm/default/images/xmlconnect/tab_shop.png +0 -0
  295. skin/frontend/Kartparadigm/default/js/blurbox.js +306 -0
  296. skin/frontend/Kartparadigm/default/js/bootstrap.min.js +6 -0
  297. skin/frontend/Kartparadigm/default/js/jquery.min-1.11.1.js +4 -0
app/code/community/Kartparadigm/Theme/Block/Adminhtml/System/Config/Form/Field/Font.php ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @version 1.0 12.0.2012
4
+ * @author Kartparadigm http://www.Kartparadigm.com
5
+ * @copyright Copyright (C) 2010 - 2012 Kartparadigm
6
+ */
7
+
8
+ class Kartparadigm_Theme_Block_Adminhtml_System_Config_Form_Field_Font extends Mage_Adminhtml_Block_System_Config_Form_Field
9
+ {
10
+ /**
11
+ * Override field method to add js
12
+ *
13
+ * @param Varien_Data_Form_Element_Abstract $element
14
+ * @return String
15
+ */
16
+ protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
17
+ {
18
+ // Get the default HTML for this option
19
+ $html = parent::_getElementHtml($element);
20
+
21
+ $html .= '<br/><div id="tele_theme_preview" style="font-size:20px; margin-top:5px;">The quick brown fox jumps over the lazy dog</div>
22
+ <script>
23
+ var googleFontPreviewModel = Class.create();
24
+
25
+ googleFontPreviewModel.prototype = {
26
+ initialize : function()
27
+ {
28
+ this.fontElement = $("'.$element->getHtmlId().'");
29
+ this.previewElement = $("tele_theme_preview");
30
+ this.loadedFonts = "";
31
+
32
+ this.refreshPreview();
33
+ this.bindFontChange();
34
+ },
35
+ bindFontChange : function()
36
+ {
37
+ Event.observe(this.fontElement, "change", this.refreshPreview.bind(this));
38
+ Event.observe(this.fontElement, "keyup", this.refreshPreview.bind(this));
39
+ Event.observe(this.fontElement, "keydown", this.refreshPreview.bind(this));
40
+ },
41
+ refreshPreview : function()
42
+ {
43
+ if ( this.loadedFonts.indexOf( this.fontElement.value ) > -1 ) {
44
+ this.updateFontFamily();
45
+ return;
46
+ }
47
+
48
+ var ss = document.createElement("link");
49
+ ss.type = "text/css";
50
+ ss.rel = "stylesheet";
51
+ ss.href = "http://fonts.googleapis.com/css?family=" + this.fontElement.value;
52
+ document.getElementsByTagName("head")[0].appendChild(ss);
53
+
54
+ this.updateFontFamily();
55
+
56
+ this.loadedFonts += this.fontElement.value + ",";
57
+ },
58
+ updateFontFamily : function()
59
+ {
60
+ $(this.previewElement).setStyle({ fontFamily: this.fontElement.value });
61
+ }
62
+ }
63
+
64
+ googleFontPreview = new googleFontPreviewModel();
65
+ </script>
66
+ ';
67
+ return $html;
68
+ }
69
+ }
app/code/community/Kartparadigm/Theme/Helper/Data.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Kartparadigm_Theme_Helper_Data extends Mage_Core_Helper_Abstract
4
+ {
5
+ }
6
+ ?>
app/code/community/Kartparadigm/Theme/Model/Config/Font.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ class Kartparadigm_Theme_Model_Config_Font
5
+ {
6
+ /**
7
+ * google fonts list
8
+ *
9
+ * @var string
10
+ */
11
+ private $gfonts = "Abel,Arial,Abril Fatface,Aclonica,Acme,Actor,Adamina,Aguafina Script,Aladin,Aldrich,Alegreya,Alegreya SC,Alex Brush,Alfa Slab One,Alice,Alike,Alike Angular,Allan,Allerta,Allerta Stencil,Allura,Almendra,Almendra SC,Amaranth,Amatic SC,Amethysta,Andada,Andika,Annie Use Your Telescope,Anonymous Pro,Antic,Anton,Arapey,Arbutus,Architects Daughter,Arimo,Arizonia,Armata,Artifika,Arvo,Asap,Asset,Astloch,Asul,Atomic Age,Aubrey,Bad Script,Balthazar,Bangers,Basic,Baumans,Belgrano,Bentham,Bevan,Dosis,Pacifico,Roboto,Niconne,Oswald,Merriweather,Lobster,
12
+ Orbitron,Open Sans";
13
+
14
+ public function toOptionArray()
15
+ {
16
+ $fonts = explode(',', $this->gfonts);
17
+ $options = array();
18
+ foreach ($fonts as $f ){
19
+ $options[] = array(
20
+ 'value' => $f,
21
+ 'label' => $f,
22
+ );
23
+ }
24
+
25
+ return $options;
26
+ }
27
+
28
+ }
app/code/community/Kartparadigm/Theme/Model/Config/Header.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ class Kartparadigm_Theme_Model_Config_Header
5
+ {
6
+ /**
7
+ * google fonts list
8
+ *
9
+ * @var string
10
+ */
11
+ private $gfonts = "No,Yes";
12
+
13
+ public function toOptionArray()
14
+ {
15
+ $fonts = explode(',', $this->gfonts);
16
+ $options = array();
17
+ foreach ($fonts as $f ){
18
+ $options[] = array(
19
+ 'value' => $f,
20
+ 'label' => $f,
21
+ );
22
+ }
23
+
24
+ return $options;
25
+ }
26
+
27
+ }
app/code/community/Kartparadigm/Theme/etc/config.xml ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+
4
+ <modules>
5
+ <Kartparadigm_Theme>
6
+ <version>0.1.0</version>
7
+ </Kartparadigm_Theme>
8
+ </modules>
9
+
10
+ <adminhtml>
11
+ <layout>
12
+ <updates>
13
+ <themeoptions>
14
+ <file>kartparadigm_themeoptions.xml</file>
15
+ </themeoptions>
16
+ </updates>
17
+ </layout>
18
+ <acl>
19
+ <resources>
20
+ <admin>
21
+ <children>
22
+ <system>
23
+ <children>
24
+ <config>
25
+ <children>
26
+ <theme>
27
+ <title>Kartparadigm Theme Settings</title>
28
+ </theme>
29
+ </children>
30
+ </config>
31
+ </children>
32
+ </system>
33
+ </children>
34
+ </admin>
35
+ </resources>
36
+ </acl>
37
+ </adminhtml>
38
+
39
+ <global>
40
+ <blocks>
41
+ <theme>
42
+ <class>Kartparadigm_Theme_Block</class>
43
+ </theme>
44
+ </blocks>
45
+ <helpers>
46
+ <theme>
47
+ <class>Kartparadigm_Theme_Helper</class>
48
+ </theme>
49
+ </helpers>
50
+ <models>
51
+ <theme>
52
+ <class>Kartparadigm_Theme_Model</class>
53
+ </theme>
54
+ </models>
55
+ <resources>
56
+ <theme_setup>
57
+ <setup>
58
+ <module>Kartparadigm_Theme</module>
59
+ <class>Mage_Eav_Model_Entity_Setup</class>
60
+ </setup>
61
+ <connection>
62
+ <use>default_setup</use>
63
+ </connection>
64
+ </theme_setup>
65
+ </resources>
66
+ </global>
67
+
68
+ <default>
69
+ <theme>
70
+ <theme_config>
71
+ <font>Arial</font>
72
+ <color>FFFFFF</color>
73
+ </theme_config>
74
+
75
+ </theme>
76
+ </default>
77
+
78
+ </config>
app/code/community/Kartparadigm/Theme/etc/system.xml ADDED
@@ -0,0 +1,358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <tabs>
4
+ <theme translate="label" module="theme">
5
+ <label>Kartparadigm</label>
6
+ <sort_order>105</sort_order>
7
+ </theme>
8
+ </tabs>
9
+ <sections>
10
+ <theme translate="label" module="theme">
11
+ <label>Elagance Theme Settings</label>
12
+ <tab>theme</tab>
13
+ <sort_order>10</sort_order>
14
+ <show_in_default>1</show_in_default>
15
+ <show_in_website>1</show_in_website>
16
+ <show_in_store>1</show_in_store>
17
+ <groups>
18
+ <theme_config translate="label">
19
+ <label>Elagance Theme Settings</label>
20
+ <frontend_type>text</frontend_type>
21
+ <sort_order>10</sort_order>
22
+ <show_in_default>1</show_in_default>
23
+ <show_in_website>1</show_in_website>
24
+ <show_in_store>1</show_in_store>
25
+ <fields>
26
+ <font translate="label comment">
27
+ <label>Font Style: </label>
28
+ <frontend_type>select</frontend_type>
29
+ <frontend_model>theme/adminhtml_system_config_form_field_font</frontend_model>
30
+ <source_model>theme/config_font</source_model>
31
+ <sort_order>40</sort_order>
32
+ <show_in_default>1</show_in_default>
33
+ <show_in_website>1</show_in_website>
34
+ <show_in_store>1</show_in_store>
35
+ </font>
36
+
37
+ <color translate="label comment">
38
+ <label>Theme Color :</label>
39
+ <frontend_type>text</frontend_type>
40
+ <comment>Click to select the theme color</comment>
41
+ <validate>color</validate>
42
+ <sort_order>50</sort_order>
43
+ <show_in_default>1</show_in_default>
44
+ <show_in_website>1</show_in_website>
45
+ <show_in_store>1</show_in_store>
46
+ </color>
47
+
48
+ </fields>
49
+
50
+
51
+ </theme_config>
52
+ <theme_config_header translate="label">
53
+ <label>Elagance Theme Header Settings</label>
54
+ <frontend_type>text</frontend_type>
55
+ <sort_order>20</sort_order>
56
+ <show_in_default>1</show_in_default>
57
+ <show_in_website>1</show_in_website>
58
+ <show_in_store>1</show_in_store>
59
+ <fields>
60
+ <toolbarbgcolor translate="label comment">
61
+ <label>Toolbar Background Color: </label>
62
+ <comment>Click to select toolbar background color</comment>
63
+
64
+ <validate>color</validate>
65
+
66
+ <sort_order>10</sort_order>
67
+ <show_in_default>1</show_in_default>
68
+ <show_in_website>1</show_in_website>
69
+ <show_in_store>1</show_in_store>
70
+ </toolbarbgcolor>
71
+
72
+ <toolbarcolor translate="label comment">
73
+ <label>Toolbar Color: </label>
74
+ <frontend_type>text</frontend_type>
75
+ <comment>Click to select the toolbar text color</comment>
76
+
77
+ <validate>color</validate>
78
+ <sort_order>20</sort_order>
79
+ <show_in_default>1</show_in_default>
80
+ <show_in_website>1</show_in_website>
81
+ <show_in_store>1</show_in_store>
82
+ </toolbarcolor>
83
+ <toolbarhovercolor translate="label comment">
84
+ <label>Toolbar Mouse Hover Color: </label>
85
+ <frontend_type>text</frontend_type>
86
+ <comment>Click to select the toolbar text color on mouse hover</comment>
87
+
88
+ <validate>color</validate>
89
+ <sort_order>30</sort_order>
90
+ <show_in_default>1</show_in_default>
91
+ <show_in_website>1</show_in_website>
92
+ <show_in_store>1</show_in_store>
93
+ </toolbarhovercolor>
94
+
95
+ <headerbgcolor translate="label comment">
96
+ <label>Header Background Color: </label>
97
+ <frontend_type>text</frontend_type>
98
+ <comment>Click to select the header color </comment>
99
+
100
+ <validate>color</validate>
101
+ <sort_order>30</sort_order>
102
+ <show_in_default>1</show_in_default>
103
+ <show_in_website>1</show_in_website>
104
+ <show_in_store>1</show_in_store>
105
+ </headerbgcolor>
106
+ </fields>
107
+ </theme_config_header>
108
+ <theme_config_zoom translate="label">
109
+ <label>Elagance Theme Zoom Settings</label>
110
+ <frontend_type>text</frontend_type>
111
+ <sort_order>50</sort_order>
112
+ <show_in_default>1</show_in_default>
113
+ <show_in_website>1</show_in_website>
114
+ <show_in_store>1</show_in_store>
115
+ <fields>
116
+ <productheight translate="label comment">
117
+ <label>Product Image Height: </label>
118
+ <comment>Give Product Image height in product page ex:500</comment>
119
+ <frontend_type>text</frontend_type>
120
+
121
+
122
+ <sort_order>10</sort_order>
123
+ <show_in_default>1</show_in_default>
124
+ <show_in_website>1</show_in_website>
125
+ <show_in_store>1</show_in_store>
126
+ </productheight>
127
+ <productwidth translate="label comment">
128
+ <label>Product Image Width: </label>
129
+ <comment>Give Product Image width in product page ex:500</comment>
130
+
131
+ <frontend_type>text</frontend_type>
132
+
133
+ <sort_order>20</sort_order>
134
+ <show_in_default>1</show_in_default>
135
+ <show_in_website>1</show_in_website>
136
+ <show_in_store>1</show_in_store>
137
+ </productwidth>
138
+
139
+ <zoomheight translate="label comment">
140
+ <label>Zoom window Height: </label>
141
+ <comment>Give Zoom window Height ex:500</comment>
142
+ <frontend_type>text</frontend_type>
143
+
144
+
145
+ <sort_order>10</sort_order>
146
+ <show_in_default>1</show_in_default>
147
+ <show_in_website>1</show_in_website>
148
+ <show_in_store>1</show_in_store>
149
+ </zoomheight>
150
+ <zoomwidth translate="label comment">
151
+ <label>Zoom Window Width: </label>
152
+ <comment>Give Zoom window width ex:500</comment>
153
+
154
+ <frontend_type>text</frontend_type>
155
+
156
+ <sort_order>20</sort_order>
157
+ <show_in_default>1</show_in_default>
158
+ <show_in_website>1</show_in_website>
159
+ <show_in_store>1</show_in_store>
160
+ </zoomwidth>
161
+ </fields>
162
+ </theme_config_zoom>
163
+ <theme_config_home translate="label">
164
+ <label>Home Slide Show Settings</label>
165
+ <frontend_type>text</frontend_type>
166
+ <sort_order>50</sort_order>
167
+ <show_in_default>1</show_in_default>
168
+ <show_in_website>1</show_in_website>
169
+ <show_in_store>1</show_in_store>
170
+ <fields>
171
+ <sliderheight translate="label comment">
172
+ <label>Slider Height: </label>
173
+ <comment>you can give fluid/fixed height (for fluid use %).For better view, use minimum 300 as slider height</comment>
174
+ <frontend_type>text</frontend_type>
175
+ <sort_order>10</sort_order>
176
+ <show_in_default>1</show_in_default>
177
+ <show_in_website>1</show_in_website>
178
+ <show_in_store>1</show_in_store>
179
+ </sliderheight>
180
+
181
+ <bannerimage1 translate="label comment">
182
+ <label>Banner Image1: </label>
183
+ <comment>Give banner image floder name and image name ex:images/fullimage1.jpg</comment>
184
+ <frontend_type>text</frontend_type>
185
+ <sort_order>10</sort_order>
186
+ <show_in_default>1</show_in_default>
187
+ <show_in_website>1</show_in_website>
188
+ <show_in_store>1</show_in_store>
189
+ </bannerimage1>
190
+ <image1target translate="label comment">
191
+ <label>Banner Image1 Target: </label>
192
+ <comment>you can give any category or page url.Default target is home page. </comment>
193
+ <frontend_type>text</frontend_type>
194
+ <sort_order>20</sort_order>
195
+ <show_in_default>1</show_in_default>
196
+ <show_in_website>1</show_in_website>
197
+ <show_in_store>1</show_in_store>
198
+ </image1target>
199
+ <bannerimage2 translate="label comment">
200
+ <label>Banner Image2: </label>
201
+ <comment>Give banner image floder name and image name ex:images/fullimage1.jpg</comment>
202
+ <frontend_type>text</frontend_type>
203
+ <sort_order>30</sort_order>
204
+ <show_in_default>1</show_in_default>
205
+ <show_in_website>1</show_in_website>
206
+ <show_in_store>1</show_in_store>
207
+ </bannerimage2>
208
+ <image2target translate="label comment">
209
+ <label>Banner Image2 Target: </label>
210
+ <comment>you can give any category or page url .Default target is home page.ex:furniture.html</comment>
211
+ <frontend_type>text</frontend_type>
212
+ <sort_order>40</sort_order>
213
+ <show_in_default>1</show_in_default>
214
+ <show_in_website>1</show_in_website>
215
+ <show_in_store>1</show_in_store>
216
+ </image2target>
217
+ <bannerimage3 translate="label comment">
218
+ <label>Banner Image3: </label>
219
+ <comment>Give banner image floder name and image name ex:images/fullimage1.jpg </comment>
220
+ <frontend_type>text</frontend_type>
221
+ <sort_order>50</sort_order>
222
+ <show_in_default>1</show_in_default>
223
+ <show_in_website>1</show_in_website>
224
+ <show_in_store>1</show_in_store>
225
+ </bannerimage3>
226
+ <image3target translate="label comment">
227
+ <label>Banner Image3 Target: </label>
228
+ <comment>you can give any category or page url..Default target is home page.ex:furniture.html </comment>
229
+ <frontend_type>text</frontend_type>
230
+ <sort_order>60</sort_order>
231
+ <show_in_default>1</show_in_default>
232
+ <show_in_website>1</show_in_website>
233
+ <show_in_store>1</show_in_store>
234
+ </image3target>
235
+ <globalslideshow translate="label comment">
236
+ <label>You want to make this slide show as global : </label>
237
+ <frontend_type>select</frontend_type>
238
+ <comment>if you select yes it will display on all pages by default it is in home page.ex:furniture.html</comment>
239
+
240
+ <source_model>theme/config_header</source_model>
241
+
242
+ <sort_order>70</sort_order>
243
+ <show_in_default>1</show_in_default>
244
+ <show_in_website>1</show_in_website>
245
+ <show_in_store>1</show_in_store>
246
+ </globalslideshow>
247
+
248
+ </fields>
249
+ </theme_config_home>
250
+ <theme_config_res translate="label">
251
+ <label>Restore Default Settings</label>
252
+ <frontend_type>text</frontend_type>
253
+ <sort_order>60</sort_order>
254
+ <show_in_default>1</show_in_default>
255
+ <show_in_website>1</show_in_website>
256
+ <show_in_store>1</show_in_store>
257
+ <fields>
258
+ <themres translate="label comment">
259
+ <label>Theme Color Restore: </label>
260
+ <frontend_type>select</frontend_type>
261
+ <comment>select yes to restore default theme color settings</comment>
262
+
263
+ <source_model>theme/config_header</source_model>
264
+
265
+ <sort_order>10</sort_order>
266
+ <show_in_default>1</show_in_default>
267
+ <show_in_website>1</show_in_website>
268
+ <show_in_store>1</show_in_store>
269
+ </themres>
270
+ <headerres translate="label comment">
271
+ <label>Header Restore: </label>
272
+ <frontend_type>select</frontend_type>
273
+ <comment>select yes to restore default header color settings</comment>
274
+
275
+ <source_model>theme/config_header</source_model>
276
+
277
+ <sort_order>20</sort_order>
278
+ <show_in_default>1</show_in_default>
279
+ <show_in_website>1</show_in_website>
280
+ <show_in_store>1</show_in_store>
281
+ </headerres>
282
+
283
+ <footerres translate="label comment">
284
+ <label>FooterRestore: </label>
285
+ <frontend_type>select</frontend_type>
286
+ <comment>select yes to restore default footer color settings</comment>
287
+
288
+ <source_model>theme/config_header</source_model>
289
+
290
+ <sort_order>30</sort_order>
291
+ <show_in_default>1</show_in_default>
292
+ <show_in_website>1</show_in_website>
293
+ <show_in_store>1</show_in_store>
294
+ </footerres>
295
+ </fields>
296
+ </theme_config_res>
297
+ <theme_config_footer translate="label">
298
+ <label>Elagance Theme Footer Settings</label>
299
+ <frontend_type>text</frontend_type>
300
+ <sort_order>30</sort_order>
301
+ <show_in_default>1</show_in_default>
302
+ <show_in_website>1</show_in_website>
303
+ <show_in_store>1</show_in_store>
304
+ <fields>
305
+ <footerbgcolor translate="label comment">
306
+ <label>Footer Background Color: </label>
307
+ <frontend_type>text</frontend_type>
308
+ <comment>Click to select the Footer Background color </comment>
309
+
310
+ <validate>color</validate>
311
+ <sort_order>30</sort_order>
312
+ <show_in_default>1</show_in_default>
313
+ <show_in_website>1</show_in_website>
314
+ <show_in_store>1</show_in_store>
315
+ </footerbgcolor>
316
+ <footertextcolor translate="label comment">
317
+ <label>Footer Text Color: </label>
318
+ <frontend_type>text</frontend_type>
319
+ <comment>Click to select the footer text color</comment>
320
+
321
+ <validate>color</validate>
322
+ <sort_order>20</sort_order>
323
+ <show_in_default>1</show_in_default>
324
+ <show_in_website>1</show_in_website>
325
+ <show_in_store>1</show_in_store>
326
+ </footertextcolor>
327
+ <footerlinkscolor translate="label comment">
328
+ <label>Footer Links Color: </label>
329
+ <frontend_type>text</frontend_type>
330
+ <comment>Click to select the footer links color</comment>
331
+
332
+ <validate>color</validate>
333
+ <sort_order>20</sort_order>
334
+ <show_in_default>1</show_in_default>
335
+ <show_in_website>1</show_in_website>
336
+ <show_in_store>1</show_in_store>
337
+ </footerlinkscolor>
338
+ <footertexthovercolor translate="label comment">
339
+ <label>Footer Text Mouse Hover Color: </label>
340
+ <frontend_type>text</frontend_type>
341
+ <comment>Click to select the footer text color on mouse hover</comment>
342
+
343
+ <validate>color</validate>
344
+ <sort_order>30</sort_order>
345
+ <show_in_default>1</show_in_default>
346
+ <show_in_website>1</show_in_website>
347
+ <show_in_store>1</show_in_store>
348
+ </footertexthovercolor>
349
+
350
+
351
+ </fields>
352
+ </theme_config_footer >
353
+ </groups>
354
+ </theme>
355
+ </sections>
356
+ </config>
357
+
358
+
app/code/community/Kartparadigm/Theme/sql/theme_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <?php
3
+ $this->startSetup();
4
+ Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
5
+
6
+
7
+ $staticBlock = array(
8
+ 'title' => 'Customer Service',
9
+ 'identifier' => 'rt001-footer-box1',
10
+ 'content' => '<ul>
11
+ <li><a href="{{store url="customer-service"}}">Customer Service</a></li>
12
+ <li><a href="{{store url="sales/guest/form"}}">Orders and Returns</a></li>
13
+ <li><a href="{{store url="customer-service"}}">Shipping and Delivery</a></li>
14
+ <li><a href="{{store url="catalog/seo_sitemap/category"}}">Sitemap</a></li>
15
+ </ul>',
16
+ 'is_active' => 1,
17
+ 'stores' => array(0)
18
+ );
19
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
20
+
21
+ $staticBlock = array(
22
+ 'title' => 'About Us',
23
+ 'identifier' => 'rt001-footer-box2',
24
+ 'content' => '<ul>
25
+ <li><a href="{{store url="about-magento-demo-store"}}">About Us</a></li>
26
+ <li><a href="{{store url="privacy-policy-cookie-restriction-mode"}}">Privacy Policy</a></li>
27
+ <li><a href="{{store url="contacts"}}">Contact Us</a></li>
28
+ <li><a href="{{store url="customer-service"}}">Shopping Infos</a></li>
29
+ </ul>',
30
+ 'is_active' => 1,
31
+ 'stores' => array(0)
32
+ );
33
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
34
+
35
+ $staticBlock = array(
36
+ 'title' => 'New Products',
37
+ 'identifier' => 'rt001-footer-box3',
38
+ 'content' => '<ul>
39
+ <li><a href="{{store url="#"}}">Textlink</a></li>
40
+ <li><a href="{{store url="#"}}">Textlink</a></li>
41
+ <li><a href="{{store url="#"}}">Textlink</a></li>
42
+ <li><a href="{{store url="#"}}">Textlink</a></li>
43
+ </ul>',
44
+ 'is_active' => 1,
45
+ 'stores' => array(0)
46
+ );
47
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
48
+
49
+ $staticBlock = array(
50
+ 'title' => 'Popular',
51
+ 'identifier' => 'rt001-footer-box4',
52
+ 'content' => '<ul>
53
+ <li><a href="{{store url="#"}}">Textlink</a></li>
54
+ <li><a href="{{store url="#"}}">Textlink</a></li>
55
+ <li><a href="{{store url="#"}}">Textlink</a></li>
56
+ <li><a href="{{store url="#"}}">Textlink</a></li>
57
+ </ul>',
58
+ 'is_active' => 1,
59
+ 'stores' => array(0)
60
+ );
61
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
62
+
63
+ $staticBlock = array(
64
+ 'title' => 'Left Collout Banners',
65
+ 'identifier' => 'left_collout_banner',
66
+ 'content' => '
67
+ <ul>
68
+ <li><a href="{{store url="furniture.phtml"}}">
69
+ <img src="{{media url="wysiwyg/img/col_left_callout.jpg"}}" alt="Image1" /></a></li>
70
+ <li><img src="{{media url="wysiwyg/img/ph_callout_left_rebel.jpg"}}" alt="Image2" /></li>
71
+ <li><img src="{{media url="wysiwyg/img/col_left_callout.jpg"}}" alt="Image3" /></li>
72
+ </ul>',
73
+ 'is_active' => 1,
74
+ 'stores' => array(0)
75
+ );
76
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
77
+
78
+ $staticBlock = array(
79
+ 'title' => 'Right Collout Banners',
80
+ 'identifier' => 'right_collout_banner',
81
+ 'content' => '
82
+ <ul>
83
+ <li><a href="{{store url="apparel.html"}}">
84
+ <img src="{{media url="wysiwyg/img/ph_callout_left_rebel.jpg"}}" alt="Image1" /></a></li>
85
+ <li><img src="{{media url="wysiwyg/img/col_left_callout.jpg"}}" alt="Image2" /></li>
86
+ <li><img src="{{media url="wysiwyg/img/ph_callout_left_rebel.jpg"}}" alt="Image3" /></li>
87
+ </ul>',
88
+ 'is_active' => 1,
89
+ 'stores' => array(0)
90
+ );
91
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
92
+
93
+ $staticBlock = array(
94
+ 'title' => 'Category Banners',
95
+ 'identifier' => 'kartparadigm_category_banners',
96
+ 'content' => '
97
+ <table style="width: 100%; height: auto;" border="0" cellspacing="10">
98
+ <tbody>
99
+ <tr>
100
+ <td><a href="{{store url="electronics/cell-phones.html"}}">
101
+ <img style="padding: 10;" src="{{media url="wysiwyg/img/electronics_cellphones.jpg"}}" alt="Image1" width="90%" />
102
+ </a></td>
103
+ <td><a href="{{store url="electronics/cameras.html"}}">
104
+ <img style="padding: 10;" src="{{media url="wysiwyg/img/electronics_digitalcameras.jpg"}}" alt="Image2" width="90%" />
105
+ </a></td>
106
+ <td><a href="{{store url="electronics/computers.html"}}">
107
+ <img style="padding: 10;" src="{{media url="wysiwyg/img/electronics_laptops.jpg"}}" alt="Image3" width="90%" />
108
+ </a></td>
109
+ </tr>
110
+ </tbody>
111
+ </table>',
112
+ 'is_active' => 1,
113
+ 'stores' => array(0)
114
+ );
115
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
116
+
117
+ $staticBlock = array(
118
+ 'title' => 'Custom Banners Slider',
119
+ 'identifier' => 'custom_banners_slider',
120
+ 'content' => '
121
+ <div id="custom_slider" class="owl-carousel owl-theme">
122
+ <div class="item"><a href="#"> <img src="{{media url="wysiwyg/img/col_left_callout.jpg"}}" alt="Image1" /></a></div>
123
+ <div class="item"><a href="#"> <img src="{{media url="wysiwyg/img/ph_callout_left_rebel.jpg"}}" alt="Image2" /></a></div>
124
+ <div class="item"><a href="#"> <img src="{{media url="wysiwyg/img/col_left_callout.jpg"}}" alt="Image3" /></a></div>
125
+ </div>',
126
+ 'is_active' => 1,
127
+ 'stores' => array(0)
128
+ );
129
+ Mage::getModel('cms/block')->setData($staticBlock)->save();
130
+
131
+ Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
132
+ $cmsPageData = array(
133
+ 'title' => 'Kartparadigm Home Page',
134
+ 'root_template' => 'one_column',
135
+ 'meta_keywords' => 'meta,keywords',
136
+ 'meta_description' => 'meta description',
137
+ 'identifier' => 'kartparadigm-home',
138
+ 'is_active' => 1,
139
+ 'sort_order' => 0,
140
+ 'stores' => array(0),//available for all store views
141
+ 'content' => '
142
+ {{block type="cms/block" block_id="kartparadigm_category_banners"}}
143
+ {{widget type="catalog/product_widget_new" display_type="all_products" products_count="10" template="catalog/product/widget/new/content/new_grid.phtml"}}'
144
+ );
145
+
146
+ Mage::getModel('cms/page')->setData($cmsPageData)->save();
147
+
148
+ $this->endSetup();
149
+ ?>
app/design/adminhtml/default/default/layout/kartparadigm_themeoptions.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.1">
3
+ <adminhtml_system_config_edit>
4
+ <reference name="head">
5
+ <action method="addJs">
6
+ <file>jscolor/jscolor.js</file>
7
+ </action>
8
+ </reference>
9
+ </adminhtml_system_config_edit>
10
+ </layout>
app/design/frontend/Kartparadigm/default/layout/catalog.xml ADDED
@@ -0,0 +1,430 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <!-- adding it to top compare-->
47
+ <reference name="header">
48
+ <block type="core/template" name="topcomp" as="topcomp" template="catalog/product/compare/top_campare.phtml"/>
49
+ </reference>
50
+ <!-- adding it to top compare-->
51
+ <!-- Mage_Catalog -->
52
+ <reference name="left">
53
+ <block type="core/template" name="left.permanent.callout" template="callouts/left_col.phtml">
54
+ <action method="setImgSrc"><src>images/media/col_left_callout.jpg</src></action>
55
+ <action method="setImgAlt" translate="alt" module="catalog"><alt>Our customer service is available 24/7. Call us at (555) 555-0123.</alt></action>
56
+ <action method="setLinkUrl"><url>checkout/cart</url></action>
57
+ </block>
58
+ <remove name="currency"/>
59
+ </reference>
60
+ <reference name="right">
61
+ <block type="catalog/product_compare_sidebar" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
62
+ <block type="core/template" name="right.permanent.callout" template="callouts/right_col.phtml">
63
+ <action method="setImgSrc"><src>images/media/col_right_callout.jpg</src></action>
64
+ <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>
65
+ </block>
66
+ </reference>
67
+ <reference name="footer_links">
68
+ <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>
69
+ </reference>
70
+ <block type="catalog/product_price_template" name="catalog_product_price_template" />
71
+ </default>
72
+
73
+
74
+ <!--
75
+ Category default layout
76
+ -->
77
+
78
+ <catalog_category_default translate="label">
79
+ <label>Catalog Category (Non-Anchor)</label>
80
+ <reference name="left">
81
+ <block type="catalog/navigation" name="catalog.leftnav" after="currency" template="catalog/navigation/left.phtml"/>
82
+ </reference>
83
+ <reference name="content">
84
+ <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
85
+ <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
86
+ <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
87
+ <block type="page/html_pager" name="product_list_toolbar_pager"/>
88
+ <!-- The following code shows how to set your own pager increments -->
89
+ <!--
90
+ <action method="setDefaultListPerPage"><limit>4</limit></action>
91
+ <action method="setDefaultGridPerPage"><limit>9</limit></action>
92
+ <action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
93
+ <action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
94
+ <action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
95
+ <action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
96
+ <action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
97
+ -->
98
+ </block>
99
+ <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
100
+ <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
101
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
102
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
103
+ <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
104
+ <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
105
+ </block>
106
+ </block>
107
+ </reference>
108
+ </catalog_category_default>
109
+
110
+ <!--
111
+ Category layered navigation layout
112
+ -->
113
+
114
+ <catalog_category_layered translate="label">
115
+ <label>Catalog Category (Anchor)</label>
116
+ <reference name="left">
117
+ <block type="catalog/layer_view" name="catalog.leftnav" after="currency" before="left_col" template="catalog/layer/view.phtml"/>
118
+ </reference>
119
+ <reference name="content">
120
+ <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
121
+ <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
122
+ <!-- <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/su.phtml</template></action> -->
123
+ <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
124
+ <block type="page/html_pager" name="product_list_toolbar_pager"/>
125
+ <!-- The following code shows how to set your own pager increments -->
126
+ <!--
127
+ <action method="setDefaultListPerPage"><limit>4</limit></action>
128
+ <action method="setDefaultGridPerPage"><limit>3</limit></action>
129
+ <action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
130
+ <action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
131
+ <action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
132
+ <action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
133
+ <action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
134
+ <action method="addPagerLimit"><mode>grid</mode><limit>3</limit></action>
135
+ <action method="addPagerLimit"><mode>grid</mode><limit>6</limit></action>
136
+ <action method="addPagerLimit"><mode>grid</mode><limit>9</limit></action>
137
+ <action method="addPagerLimit" translate="label"><mode>grid</mode><limit>all</limit><label>All</label></action>
138
+ -->
139
+ </block>
140
+ <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
141
+ <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
142
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
143
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
144
+ <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
145
+ <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
146
+ </block>
147
+ </block>
148
+ </reference>
149
+ </catalog_category_layered>
150
+
151
+ <!--
152
+ Compare products page
153
+ -->
154
+
155
+ <catalog_product_compare_index translate="label">
156
+ <label>Catalog Product Compare List</label>
157
+ <!-- Mage_Catalog -->
158
+ <reference name="root">
159
+ <action method="setTemplate"><template>page/popup.phtml</template></action>
160
+ </reference>
161
+ <reference name="head">
162
+ <action method="addJs"><script>scriptaculous/scriptaculous.js</script></action>
163
+ <action method="addJs"><script>varien/product.js</script></action>
164
+ </reference>
165
+ <reference name="content">
166
+ <block type="catalog/product_compare_list" name="catalog.compare.list" template="catalog/product/compare/list.phtml"/>
167
+ </reference>
168
+ </catalog_product_compare_index>
169
+
170
+ <customer_account_index>
171
+ <reference name="right">
172
+ <action method="unsetChild"><name>catalog.compare.sidebar</name></action>
173
+ </reference>
174
+ </customer_account_index>
175
+
176
+ <!--
177
+ Product view
178
+ -->
179
+
180
+ <catalog_product_view translate="label">
181
+ <label>Catalog Product View (Any)</label>
182
+ <!-- Mage_Catalog -->
183
+ <reference name="root">
184
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
185
+ </reference>
186
+ <reference name="head">
187
+ <action method="addJs"><script>varien/product.js</script></action>
188
+ <action method="addJs"><script>varien/configurable.js</script></action>
189
+
190
+ <action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
191
+ <action method="addItem"><type>js</type><name>calendar/calendar.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
192
+ <action method="addItem"><type>js</type><name>calendar/calendar-setup.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
193
+ </reference>
194
+ <reference name="content">
195
+
196
+
197
+
198
+ <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
199
+
200
+
201
+
202
+
203
+ <!--
204
+ <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/summary.phtml</template></action>
205
+ <action method="addReviewSummaryTemplate"><type>short</type><template>review/helper/summary_short.phtml</template></action>
206
+ <action method="addReviewSummaryTemplate"><type>...</type><template>...</template></action>
207
+ -->
208
+ <block type="catalog/product_view_media" name="product.info.media" as="media" template="catalog/product/view/media.phtml"/>
209
+ <block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
210
+ <label>Alert Urls</label>
211
+ </block>
212
+
213
+ <action method="setTierPriceTemplate"><template>catalog/product/view/tierprices.phtml</template></action>
214
+
215
+ <block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
216
+ <action method="setColumnCount"><columns>5</columns></action>
217
+ <action method="setItemLimit"><type>upsell</type><limit>5</limit></action>
218
+ </block>
219
+
220
+ <block type="catalog/product_view_additional" name="product.info.additional" as="product_additional_data" />
221
+ <block type="catalog/product_view_description" name="product.description" as="description" template="catalog/product/view/description.phtml">
222
+ <action method="addToParentGroup"><group>detailed_info</group></action>
223
+ </block>
224
+ <block type="catalog/product_view_attributes" name="product.attributes" as="additional" template="catalog/product/view/attributes.phtml">
225
+ <action method="addToParentGroup"><group>detailed_info</group></action>
226
+ </block>
227
+ <block type="catalog/product_view" name="product.info.addto" as="addto" template="catalog/product/view/addto.phtml"/>
228
+ <block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml"/>
229
+
230
+ <block type="core/text_list" name="product.info.extrahint" as="extrahint" translate="label">
231
+ <label>Product View Extra Hint</label>
232
+ </block>
233
+
234
+ <block type="catalog/product_view" name="product.info.options.wrapper" as="product_options_wrapper" template="catalog/product/view/options/wrapper.phtml" translate="label">
235
+ <label>Info Column Options Wrapper</label>
236
+ <block type="core/template" name="options_js" template="catalog/product/view/options/js.phtml"/>
237
+ <block type="catalog/product_view_options" name="product.info.options" as="product_options" template="catalog/product/view/options.phtml">
238
+ <action method="addOptionRenderer"><type>text</type><block>catalog/product_view_options_type_text</block><template>catalog/product/view/options/type/text.phtml</template></action>
239
+ <action method="addOptionRenderer"><type>file</type><block>catalog/product_view_options_type_file</block><template>catalog/product/view/options/type/file.phtml</template></action>
240
+ <action method="addOptionRenderer"><type>select</type><block>catalog/product_view_options_type_select</block><template>catalog/product/view/options/type/select.phtml</template></action>
241
+ <action method="addOptionRenderer"><type>date</type><block>catalog/product_view_options_type_date</block><template>catalog/product/view/options/type/date.phtml</template></action>
242
+ </block>
243
+ <block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
244
+ </block>
245
+ <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">
246
+ <label>Bottom Block Options Wrapper</label>
247
+ <action method="insert"><block>product.tierprices</block></action>
248
+ <block type="catalog/product_view" name="product.clone_prices" as="prices" template="catalog/product/view/price_clone.phtml"/>
249
+ <action method="append"><block>product.info.addtocart</block></action>
250
+ <action method="append"><block>product.info.addto</block></action>
251
+ </block>
252
+
253
+ <block type="core/template_facade" name="product.info.container1" as="container1">
254
+ <action method="setDataByKey"><key>alias_in_layout</key><value>container1</value></action>
255
+ <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
256
+ <action method="append"><block>product.info.options.wrapper</block></action>
257
+ <action method="append"><block>product.info.options.wrapper.bottom</block></action>
258
+ </block>
259
+ <block type="core/template_facade" name="product.info.container2" as="container2">
260
+ <action method="setDataByKey"><key>alias_in_layout</key><value>container2</value></action>
261
+ <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
262
+ <action method="append"><block>product.info.options.wrapper</block></action>
263
+ <action method="append"><block>product.info.options.wrapper.bottom</block></action>
264
+ </block>
265
+ <action method="unsetCallChild"><child>container1</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
266
+ <action method="unsetCallChild"><child>container2</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
267
+ </block>
268
+ </reference>
269
+ <reference name="right">
270
+ <block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
271
+ </reference>
272
+ </catalog_product_view>
273
+
274
+ <!--
275
+ Additional block dependant on product type
276
+ -->
277
+ <PRODUCT_TYPE_simple translate="label" module="catalog">
278
+ <label>Catalog Product View (Simple)</label>
279
+ <reference name="product.info">
280
+ <block type="catalog/product_view_type_simple" name="product.info.simple" as="product_type_data" template="catalog/product/view/type/default.phtml">
281
+ <block type="core/text_list" name="product.info.simple.extra" as="product_type_data_extra" translate="label">
282
+ <label>Product Extra Info</label>
283
+ </block>
284
+ </block>
285
+ </reference>
286
+ </PRODUCT_TYPE_simple>
287
+ <PRODUCT_TYPE_configurable translate="label" module="catalog">
288
+ <label>Catalog Product View (Configurable)</label>
289
+ <reference name="product.info">
290
+ <block type="catalog/product_view_type_configurable" name="product.info.configurable" as="product_type_data" template="catalog/product/view/type/default.phtml">
291
+ <block type="core/text_list" name="product.info.configurable.extra" as="product_type_data_extra" translate="label">
292
+ <label>Product Extra Info</label>
293
+ </block>
294
+ </block>
295
+ </reference>
296
+ <reference name="product.info.options.wrapper">
297
+ <block type="catalog/product_view_type_configurable" name="product.info.options.configurable" as="options_configurable" before="-" template="catalog/product/view/type/options/configurable.phtml"/>
298
+ </reference>
299
+ </PRODUCT_TYPE_configurable>
300
+ <PRODUCT_TYPE_grouped translate="label" module="catalog">
301
+ <label>Catalog Product View (Grouped)</label>
302
+ <reference name="product.info">
303
+ <block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml">
304
+ <block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra" translate="label">
305
+ <label>Product Extra Info</label>
306
+ </block>
307
+ </block>
308
+ </reference>
309
+ </PRODUCT_TYPE_grouped>
310
+ <PRODUCT_TYPE_virtual translate="label" module="catalog">
311
+ <label>Catalog Product View (Virtual)</label>
312
+ <reference name="product.info">
313
+ <block type="catalog/product_view_type_virtual" name="product.info.virtual" as="product_type_data" template="catalog/product/view/type/default.phtml">
314
+ <block type="core/text_list" name="product.info.virtual.extra" as="product_type_data_extra" translate="label">
315
+ <label>Product Extra Info</label>
316
+ </block>
317
+ </block>
318
+ </reference>
319
+ </PRODUCT_TYPE_virtual>
320
+
321
+
322
+
323
+ <!--
324
+ Product send to friend
325
+ -->
326
+
327
+ <catalog_product_send translate="label">
328
+ <label>Catalog Product Email to a Friend</label>
329
+ <!-- Mage_Catalog -->
330
+ <reference name="root">
331
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
332
+ </reference>
333
+ <reference name="head">
334
+ <action method="addJs"><script>varien/product.js</script></action>
335
+ </reference>
336
+ <reference name="content">
337
+ <block type="catalog/product_send" name="product.send" template="catalog/product/send.phtml">
338
+ </block>
339
+ </reference>
340
+ </catalog_product_send>
341
+
342
+ <!--
343
+ Product additional images gallery popup
344
+ -->
345
+
346
+ <catalog_product_gallery translate="label">
347
+ <label>Catalog Product Image Gallery Popup</label>
348
+ <!-- Mage_Catalog -->
349
+ <reference name="root">
350
+ <action method="setTemplate"><template>page/popup.phtml</template></action>
351
+ </reference>
352
+ <reference name="content">
353
+ <block type="catalog/product_gallery" name="catalog_product_gallery" template="catalog/product/gallery.phtml"/>
354
+ </reference>
355
+ </catalog_product_gallery>
356
+
357
+ <!--
358
+ SEO Site Map
359
+ -->
360
+
361
+ <catalog_seo_sitemap translate="label">
362
+ <label>Catalog Seo Sitemap (Common)</label>
363
+ <remove name="right"/>
364
+ <remove name="left"/>
365
+
366
+ <reference name="root">
367
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
368
+ </reference>
369
+ <reference name="content">
370
+ <block type="page/template_container" name="seo.sitemap.container" template="catalog/seo/sitemap/container.phtml">
371
+ <block type="page/template_links" name="seo.sitemap.links" as="links" template="page/template/links.phtml"/>
372
+ <block type="page/html_pager" name="seo.sitemap.pager.top" as="pager_top" template="page/html/pager.phtml"/>
373
+ <block type="page/html_pager" name="seo.sitemap.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
374
+ </block>
375
+ </reference>
376
+ </catalog_seo_sitemap>
377
+
378
+ <catalog_seo_sitemap_category translate="label">
379
+ <label>Catalog Seo Sitemap (Category List)</label>
380
+ <reference name="head">
381
+ <action method="setTitle" translate="title" module="catalog"><title>Site Map</title></action>
382
+ </reference>
383
+ <update handle="catalog_seo_sitemap" />
384
+ <reference name="seo.sitemap.container">
385
+ <action method="setTitle" translate="title" module="catalog"><title>Categories</title></action>
386
+ <block type="catalog/seo_sitemap_category" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
387
+ <action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
388
+ <action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
389
+ <action method="setItemsTitle" translate="title" module="catalog"><title>categories</title></action>
390
+ </block>
391
+ </reference>
392
+ <reference name="seo.sitemap.links">
393
+ <action method="addLink" translate="label title" module="catalog"><label>Products Sitemap</label><url helper="catalog/map/getProductUrl"/><title>Products Sitemap</title></action>
394
+ </reference>
395
+ </catalog_seo_sitemap_category>
396
+
397
+ <catalog_seo_sitemap_category_tree translate="label">
398
+ <label>Catalog Seo Sitemap (Category Tree)</label>
399
+ <reference name="seo.sitemap.container">
400
+ <remove name="seo.sitemap.pager.top" />
401
+ <remove name="seo.sitemap.pager.bottom" />
402
+ <block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.top" as="pager_top" template="page/html/pager.phtml"/>
403
+ <block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
404
+ <remove name="seo.sitemap.sitemap" />
405
+ <block type="catalog/seo_sitemap_tree_category" name="seo.sitemap.sitemap_tree" as="sitemap" after="pager_top" template="catalog/seo/tree.phtml">
406
+ <action method="bindPager"><pager>seo.sitemap.tree.pager.top</pager></action>
407
+ <action method="bindPager"><pager>seo.sitemap.tree.pager.bottom</pager></action>
408
+ </block>
409
+ </reference>
410
+ </catalog_seo_sitemap_category_tree>
411
+
412
+ <catalog_seo_sitemap_product translate="label">
413
+ <label>Catalog Seo Sitemap (Product List)</label>
414
+ <reference name="head">
415
+ <action method="setTitle" translate="title" module="catalog"><title>Site Map</title></action>
416
+ </reference>
417
+ <update handle="catalog_seo_sitemap" />
418
+ <reference name="seo.sitemap.container">
419
+ <action method="setTitle" translate="title" module="catalog"><title>Products</title></action>
420
+ <block type="catalog/seo_sitemap_product" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
421
+ <action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
422
+ <action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
423
+ <action method="setItemsTitle" translate="title" module="catalog"><title>products</title></action>
424
+ </block>
425
+ </reference>
426
+ <reference name="seo.sitemap.links">
427
+ <action method="addLink" translate="label title" module="catalog"><label>Categories Sitemap</label><url helper="catalog/map/getCategoryUrl"/><title>Categories Sitemap</title></action>
428
+ </reference>
429
+ </catalog_seo_sitemap_product>
430
+ </layout>
app/design/frontend/Kartparadigm/default/layout/checkout.xml ADDED
@@ -0,0 +1,507 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
38
+ <!--adding it to topcart-->
39
+ <reference name="topcart">
40
+ <block type="checkout/cart_sidebar" name="topcart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
41
+ <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
42
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
43
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
44
+ <block type="core/text_list" name="cart_sidebar.extra_actions" as="extra_actions" translate="label" module="checkout">
45
+ <label>Shopping Cart Sidebar Extra Actions</label>
46
+ </block>
47
+ </block>
48
+ </reference>
49
+ <!--adding it to topcart-->
50
+
51
+ <!-- Mage_Checkout -->
52
+ <reference name="top.links">
53
+ <block type="checkout/links" name="checkout_cart_link">
54
+ <!--<action method="addCartLink"></action>-->
55
+ <action method="addCheckoutLink"></action>
56
+ </block>
57
+ </reference>
58
+
59
+ <reference name="right">
60
+ <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
61
+ <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
62
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
63
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
64
+ <block type="core/text_list" name="cart_sidebar.extra_actions" as="extra_actions" translate="label" module="checkout">
65
+ <label>Shopping Cart Sidebar Extra Actions</label>
66
+ </block>
67
+ </block>
68
+ </reference>
69
+ </default>
70
+
71
+ <checkout_cart_index translate="label">
72
+ <label>Shopping Cart</label>
73
+ <remove name="right"/>
74
+
75
+ <remove name="left"/>
76
+ <!-- Mage_Checkout -->
77
+ <reference name="root">
78
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
79
+ </reference>
80
+ <reference name="content">
81
+ <block type="checkout/cart" name="checkout.cart">
82
+ <action method="setCartTemplate"><value>checkout/cart.phtml</value></action>
83
+ <action method="setEmptyTemplate"><value>checkout/cart/noItems.phtml</value></action>
84
+ <action method="chooseTemplate"/>
85
+ <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/item/default.phtml</template></action>
86
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/item/default.phtml</template></action>
87
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/item/default.phtml</template></action>
88
+
89
+ <block type="core/text_list" name="checkout.cart.top_methods" as="top_methods" translate="label">
90
+ <label>Payment Methods Before Checkout Button</label>
91
+ <block type="checkout/onepage_link" name="checkout.cart.methods.onepage" template="checkout/onepage/link.phtml"/>
92
+ </block>
93
+
94
+ <block type="page/html_wrapper" name="checkout.cart.form.before" as="form_before" translate="label">
95
+ <label>Shopping Cart Form Before</label>
96
+ </block>
97
+
98
+ <block type="core/text_list" name="checkout.cart.methods" as="methods" translate="label">
99
+ <label>Payment Methods After Checkout Button</label>
100
+ <block type="checkout/onepage_link" name="checkout.cart.methods.onepage" template="checkout/onepage/link.phtml"/>
101
+ <block type="checkout/multishipping_link" name="checkout.cart.methods.multishipping" template="checkout/multishipping/link.phtml"/>
102
+ </block>
103
+
104
+ <block type="checkout/cart_coupon" name="checkout.cart.coupon" as="coupon" template="checkout/cart/coupon.phtml"/>
105
+ <block type="checkout/cart_shipping" name="checkout.cart.shipping" as="shipping" template="checkout/cart/shipping.phtml"/>
106
+ <block type="checkout/cart_crosssell" name="checkout.cart.crosssell" as="crosssell" template="checkout/cart/crosssell.phtml"/>
107
+
108
+ <block type="checkout/cart_totals" name="checkout.cart.totals" as="totals" template="checkout/cart/totals.phtml"/>
109
+ </block>
110
+ </reference>
111
+ <block type="core/text_list" name="additional.product.info" translate="label">
112
+ <label>Additional Product Info</label>
113
+ </block>
114
+ </checkout_cart_index>
115
+
116
+ <checkout_cart_configure translate="label">
117
+ <label>Configure Cart Item</label>
118
+ <update handle="catalog_product_view"/>
119
+ <reference name="product.info">
120
+ <block type="checkout/cart_item_configure" name="checkout.cart.item.configure.block"></block>
121
+ </reference>
122
+ </checkout_cart_configure>
123
+
124
+ <!--
125
+ Multi address shipping checkout main layout,
126
+ will be rendered on all checkout pages
127
+ -->
128
+
129
+ <checkout_multishipping translate="label">
130
+ <label>Multishipping Checkout</label>
131
+ <!-- Mage_Checkout -->
132
+ <remove name="right"/>
133
+ <remove name="left"/>
134
+
135
+ <reference name="root">
136
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
137
+ </reference>
138
+ <reference name="content">
139
+ <block type="checkout/multishipping_state" name="checkout_state" template="checkout/multishipping/state.phtml"/>
140
+ </reference>
141
+ </checkout_multishipping>
142
+
143
+ <checkout_multishipping_login>
144
+ <update handle="customer_account_login"/>
145
+ </checkout_multishipping_login>
146
+
147
+ <checkout_multishipping_register>
148
+ <update handle="customer_account_create"/>
149
+ </checkout_multishipping_register>
150
+
151
+ <!--
152
+ Multi address shipping checkout selection of address per item page
153
+ -->
154
+
155
+ <checkout_multishipping_address_select translate="label">
156
+ <label>Multishipping Checkout Shipping Address Selection</label>
157
+ <update handle="checkout_multishipping"/>
158
+ <!-- Mage_Checkout -->
159
+ <reference name="content">
160
+ <block type="checkout/multishipping_address_select" name="checkout_address_select" template="checkout/multishipping/address/select.phtml"/>
161
+ </reference>
162
+ </checkout_multishipping_address_select>
163
+
164
+ <checkout_multishipping_address_selectbilling translate="label">
165
+ <label>Multishipping Checkout Billing Address Selection</label>
166
+ <update handle="checkout_multishipping"/>
167
+ <!-- Mage_Checkout -->
168
+ <reference name="content">
169
+ <block type="checkout/multishipping_address_select" name="checkout_address_select" template="checkout/multishipping/address/select.phtml"/>
170
+ </reference>
171
+ </checkout_multishipping_address_selectbilling>
172
+
173
+
174
+ <checkout_multishipping_address_newshipping translate="label">
175
+ <label>Multishipping Checkout Shipping Address Creation</label>
176
+ <update handle="checkout_multishipping"/>
177
+ <update handle="checkout_multishipping_customer_address"/>
178
+ </checkout_multishipping_address_newshipping>
179
+
180
+ <checkout_multishipping_address_newbilling translate="label">
181
+ <label>Multishipping Checkout Billing Address Creation</label>
182
+ <update handle="checkout_multishipping"/>
183
+ <update handle="checkout_multishipping_customer_address"/>
184
+ </checkout_multishipping_address_newbilling>
185
+
186
+ <checkout_multishipping_address_editshipping translate="label">
187
+ <label>Multishipping Checkout Shipping Address Edit Form</label>
188
+ <update handle="checkout_multishipping"/>
189
+ <update handle="checkout_multishipping_customer_address"/>
190
+ </checkout_multishipping_address_editshipping>
191
+
192
+ <checkout_multishipping_address_editaddress>
193
+ <update handle="checkout_multishipping"/>
194
+ <update handle="checkout_multishipping_customer_address"/>
195
+ </checkout_multishipping_address_editaddress>
196
+
197
+ <checkout_multishipping_address_editbilling translate="label">
198
+ <label>Multishipping Checkout Billing Address Edit Form</label>
199
+ <update handle="checkout_multishipping"/>
200
+ <update handle="checkout_multishipping_customer_address"/>
201
+ </checkout_multishipping_address_editbilling>
202
+
203
+ <checkout_multishipping_customer_address translate="label">
204
+ <label>Multishipping Checkout Customer Address Edit Form</label>
205
+ <reference name="content">
206
+ <block type="customer/address_edit" name="customer_address_edit" template="customer/address/edit.phtml"/>
207
+ </reference>
208
+ </checkout_multishipping_customer_address>
209
+
210
+ <!--
211
+ Multi address shipping checkout address page
212
+ -->
213
+
214
+ <checkout_multishipping_addresses translate="label">
215
+ <label>Multishipping Checkout Address (Any) Form</label>
216
+ <update handle="checkout_multishipping"/>
217
+ <!-- Mage_Checkout -->
218
+ <reference name="content">
219
+ <block type="checkout/multishipping_addresses" name="checkout_addresses" template="checkout/multishipping/addresses.phtml">
220
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
221
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
222
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
223
+ </block>
224
+ </reference>
225
+ </checkout_multishipping_addresses>
226
+
227
+ <!--
228
+ Multi address shipping checkout shipping information
229
+ -->
230
+
231
+ <checkout_multishipping_shipping translate="label">
232
+ <label>Multishipping Checkout Shipping Information Step</label>
233
+ <update handle="checkout_multishipping"/>
234
+ <!-- Mage_Checkout -->
235
+ <reference name="content">
236
+ <block type="checkout/multishipping_shipping" name="checkout_shipping" template="checkout/multishipping/shipping.phtml">
237
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
238
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
239
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
240
+
241
+ <block type="checkout/multishipping_billing_items" name="checkout_billing_items" template="checkout/multishipping/billing/items.phtml">
242
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
243
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
244
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
245
+ </block>
246
+ </block>
247
+ </reference>
248
+ </checkout_multishipping_shipping>
249
+
250
+ <!--
251
+ Multi address shipping checkout billing information
252
+ -->
253
+
254
+ <checkout_multishipping_billing translate="label">
255
+ <label>Multishipping Checkout Billing Information Step</label>
256
+ <update handle="checkout_multishipping"/>
257
+ <!-- Mage_Checkout -->
258
+ <reference name="content">
259
+ <block type="checkout/multishipping_billing" name="checkout_billing" template="checkout/multishipping/billing.phtml">
260
+ <action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
261
+
262
+ <!--<block type="checkout/multishipping_billing_items" name="checkout_billing_items" template="checkout/multishipping/billing/items.phtml">
263
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
264
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
265
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
266
+ </block>-->
267
+
268
+ </block>
269
+ </reference>
270
+ </checkout_multishipping_billing>
271
+
272
+ <!--
273
+ Multi address shipping checkout overview
274
+ -->
275
+
276
+ <checkout_multishipping_overview translate="label">
277
+ <label>Multishipping Checkout Overview</label>
278
+ <update handle="checkout_multishipping"/>
279
+ <!-- Mage_Checkout -->
280
+ <reference name="content">
281
+ <block type="checkout/multishipping_overview" name="checkout_overview" template="checkout/multishipping/overview.phtml">
282
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
283
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
284
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
285
+ <action method="addRowItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/overview/item.phtml</template></action>
286
+ <action method="addRowItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/overview/item.phtml</template></action>
287
+ <block type="checkout/multishipping_payment_info" name="payment_info">
288
+ <action method="setInfoTemplate"><method></method><template></template></action>
289
+ </block>
290
+ <block type="checkout/agreements" name="checkout.multishipping.agreements" as="agreements" template="checkout/multishipping/agreements.phtml"/>
291
+ <block type="checkout/cart_totals" name="totals" />
292
+ <block type="core/text_list" name="checkout.multishipping.overview.items.after" as="items_after" translate="label">
293
+ <label>Overview Items After</label>
294
+ </block>
295
+ </block>
296
+ </reference>
297
+ </checkout_multishipping_overview>
298
+
299
+ <!--
300
+ Multi address shipping checkout success
301
+ -->
302
+
303
+ <checkout_multishipping_success translate="label">
304
+ <label>Multishipping Checkout Success</label>
305
+ <update handle="checkout_multishipping"/>
306
+ <!-- Mage_Checkout -->
307
+ <reference name="content">
308
+ <block type="checkout/multishipping_success" name="checkout_success" template="checkout/multishipping/success.phtml"/>
309
+ </reference>
310
+ </checkout_multishipping_success>
311
+
312
+ <!--
313
+ One page checkout main layout
314
+ -->
315
+
316
+ <checkout_onepage_index translate="label">
317
+ <label>One Page Checkout</label>
318
+ <!-- Mage_Checkout -->
319
+ <remove name="left"/>
320
+
321
+ <reference name="root">
322
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
323
+ </reference>
324
+ <reference name="right">
325
+ <action method="unsetChildren"></action>
326
+ <block type="page/html_wrapper" name="checkout.progress.wrapper" translate="label">
327
+ <label>Checkout Progress Wrapper</label>
328
+ <action method="setElementId"><value>checkout-progress-wrapper</value></action>
329
+ <block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml">
330
+ <block type="checkout/onepage_progress" name="billing.progress" template="checkout/onepage/progress/billing.phtml"></block>
331
+ <block type="checkout/onepage_progress" name="shipping.progress" template="checkout/onepage/progress/shipping.phtml"></block>
332
+ <block type="checkout/onepage_progress" name="shippingmethod.progress" template="checkout/onepage/progress/shipping_method.phtml"></block>
333
+ <block type="checkout/onepage_progress" name="payment.progress" template="checkout/onepage/progress/payment.phtml"></block>
334
+ </block>
335
+ </block>
336
+ </reference>
337
+ <reference name="content">
338
+ <block type="checkout/onepage" name="checkout.onepage" template="checkout/onepage.phtml">
339
+ <block type="checkout/onepage_login" name="checkout.onepage.login" as="login" template="checkout/onepage/login.phtml">
340
+ <block type="page/html_wrapper" name="checkout.onepage.login.before" as="login_before" translate="label">
341
+ <label>Login/Registration Before</label>
342
+ <action method="setMayBeInvisible"><value>1</value></action>
343
+ </block>
344
+ </block>
345
+ <block type="checkout/onepage_billing" name="checkout.onepage.billing" as="billing" template="checkout/onepage/billing.phtml"/>
346
+ <block type="checkout/onepage_shipping" name="checkout.onepage.shipping" as="shipping" template="checkout/onepage/shipping.phtml"/>
347
+ <block type="checkout/onepage_shipping_method" name="checkout.onepage.shipping_method" as="shipping_method" template="checkout/onepage/shipping_method.phtml">
348
+ <block type="checkout/onepage_shipping_method_available" name="checkout.onepage.shipping_method.available" as="available" template="checkout/onepage/shipping_method/available.phtml"/>
349
+ <block type="checkout/onepage_shipping_method_additional" name="checkout.onepage.shipping_method.additional" as="additional" template="checkout/onepage/shipping_method/additional.phtml"/>
350
+ </block>
351
+ <block type="checkout/onepage_payment" name="checkout.onepage.payment" as="payment" template="checkout/onepage/payment.phtml">
352
+ <block type="checkout/onepage_payment_methods" name="checkout.payment.methods" as="methods" template="checkout/onepage/payment/info.phtml">
353
+ <action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
354
+ </block>
355
+ </block>
356
+ <block type="checkout/onepage_review" name="checkout.onepage.review" as="review" template="checkout/onepage/review.phtml"/>
357
+ </block>
358
+ </reference>
359
+ </checkout_onepage_index>
360
+
361
+ <!--
362
+ One page checkout progress block
363
+ -->
364
+
365
+ <checkout_onepage_progress>
366
+ <!-- Mage_Checkout -->
367
+ <remove name="right"/>
368
+ <remove name="left"/>
369
+
370
+ <block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress.phtml">
371
+ <action method="setInfoTemplate"><method></method><template></template></action>
372
+ <block type="checkout/onepage_progress" name="billing.progress" template="checkout/onepage/progress/billing.phtml"></block>
373
+ <block type="checkout/onepage_progress" name="shipping.progress" template="checkout/onepage/progress/shipping.phtml"></block>
374
+ <block type="checkout/onepage_progress" name="shippingmethod.progress" template="checkout/onepage/progress/shipping_method.phtml"></block>
375
+ <block type="checkout/onepage_progress" name="payment.progress" template="checkout/onepage/progress/payment.phtml"></block>
376
+ </block>
377
+ </checkout_onepage_progress>
378
+
379
+ <!-- Individual blocks for Progress steps begins -->
380
+ <checkout_onepage_progress_billing>
381
+ <!-- Mage_Checkout -->
382
+ <remove name="right"/>
383
+ <remove name="left"/>
384
+
385
+ <block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/billing.phtml">
386
+ <action method="setInfoTemplate"><method></method><template></template></action>
387
+ </block>
388
+ </checkout_onepage_progress_billing>
389
+
390
+
391
+ <checkout_onepage_progress_shipping>
392
+ <!-- Mage_Checkout -->
393
+ <remove name="right"/>
394
+ <remove name="left"/>
395
+
396
+ <block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/shipping.phtml">
397
+ <action method="setInfoTemplate"><method></method><template></template></action>
398
+ </block>
399
+ </checkout_onepage_progress_shipping>
400
+
401
+
402
+ <checkout_onepage_progress_shipping_method>
403
+ <!-- Mage_Checkout -->
404
+ <remove name="right"/>
405
+ <remove name="left"/>
406
+
407
+ <block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/shipping_method.phtml">
408
+ <action method="setInfoTemplate"><method></method><template></template></action>
409
+ </block>
410
+ </checkout_onepage_progress_shipping_method>
411
+
412
+ <checkout_onepage_progress_payment>
413
+ <!-- Mage_Checkout -->
414
+ <remove name="right"/>
415
+ <remove name="left"/>
416
+
417
+ <block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress/payment.phtml">
418
+ <block type="checkout/onepage_payment_info" name="payment_info">
419
+ <action method="setInfoTemplate"><method></method><template></template></action>
420
+ </block>
421
+ <action method="setInfoTemplate"><method></method><template></template></action>
422
+ </block>
423
+ </checkout_onepage_progress_payment>
424
+
425
+ <!-- end individual progress blocks -->
426
+
427
+ <!--
428
+ One page checkout payment methods block
429
+ -->
430
+ <checkout_onepage_paymentmethod>
431
+ <remove name="right"/>
432
+ <remove name="left"/>
433
+
434
+ <block type="checkout/onepage_payment_methods" name="root" output="toHtml" template="checkout/onepage/payment/methods.phtml">
435
+ <action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
436
+ </block>
437
+ </checkout_onepage_paymentmethod>
438
+
439
+
440
+ <!--
441
+ One page checkout shipping methods block
442
+ -->
443
+
444
+ <checkout_onepage_shippingmethod>
445
+ <!-- Mage_Checkout -->
446
+ <remove name="right"/>
447
+ <remove name="left"/>
448
+
449
+ <block type="checkout/onepage_shipping_method_available" name="root" output="toHtml" template="checkout/onepage/shipping_method/available.phtml"/>
450
+ </checkout_onepage_shippingmethod>
451
+
452
+ <checkout_onepage_additional>
453
+ <!-- Mage_Checkout -->
454
+ <remove name="right"/>
455
+ <remove name="left"/>
456
+
457
+ <block type="checkout/onepage_shipping_method_additional" name="root" output="toHtml" template="checkout/onepage/shipping_method/additional.phtml">
458
+ <action method="setDontDisplayContainer"><param>1</param></action>
459
+ </block>
460
+ </checkout_onepage_additional>
461
+
462
+ <!--
463
+ One page checkout order review block
464
+ -->
465
+
466
+ <checkout_onepage_review translate="label">
467
+ <label>One Page Checkout Overview</label>
468
+ <!-- Mage_Checkout -->
469
+ <remove name="right"/>
470
+ <remove name="left"/>
471
+
472
+ <block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
473
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
474
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
475
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
476
+ <block type="checkout/cart_totals" name="checkout.onepage.review.info.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
477
+ <block type="core/text_list" name="checkout.onepage.review.info.items.before" as="items_before" translate="label">
478
+ <label>Items Before</label>
479
+ </block>
480
+ <block type="core/text_list" name="checkout.onepage.review.info.items.after" as="items_after" translate="label">
481
+ <label>Items After</label>
482
+ </block>
483
+ <block type="checkout/agreements" name="checkout.onepage.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
484
+ <block type="core/template" name="checkout.onepage.review.button" as="button" template="checkout/onepage/review/button.phtml"/>
485
+ </block>
486
+ </checkout_onepage_review>
487
+
488
+ <checkout_onepage_success translate="label">
489
+ <label>One Page Checkout Success</label>
490
+ <reference name="root">
491
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
492
+ </reference>
493
+ <reference name="content">
494
+ <block type="checkout/onepage_success" name="checkout.success" template="checkout/success.phtml"/>
495
+ </reference>
496
+ </checkout_onepage_success>
497
+ <checkout_onepage_failure translate="label">
498
+ <label>One Page Checkout Failure</label>
499
+ <reference name="root">
500
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
501
+ </reference>
502
+ <reference name="content">
503
+ <block type="checkout/onepage_failure" name="checkout.failure" template="checkout/onepage/failure.phtml"/>
504
+ </reference>
505
+ </checkout_onepage_failure>
506
+ <block type="core/list" name="additional.product.info"/>
507
+ </layout>
app/design/frontend/Kartparadigm/default/layout/customer.xml ADDED
@@ -0,0 +1,299 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - customer_account_index
30
+ - customer_address_index
31
+ - customer_address_view
32
+ - customer_account_login
33
+ - customer_account_logoutsuccess
34
+ - customer_account_create
35
+ - customer_account_forgotpassword
36
+ - customer_account_confirmation
37
+ - customer_account_edit
38
+
39
+ Supported layout update handles (special):
40
+ - default
41
+
42
+ -->
43
+ <layout version="0.1.0">
44
+
45
+ <!--
46
+ Default layout, loads most of the pages
47
+ -->
48
+
49
+ <default>
50
+ <!-- Mage_Customer -->
51
+ <reference name="top.links">
52
+ <action method="addLink" translate="label title" module="customer"><label>Account</label><url helper="customer/getAccountUrl"/><title>My Account</title><prepare/><urlParams/><position>10</position></action>
53
+ </reference>
54
+ </default>
55
+
56
+ <!--
57
+ Load this update on every page when customer is logged in
58
+ -->
59
+
60
+ <customer_logged_in>
61
+ <reference name="top.links">
62
+ <action method="addLink" translate="label title" module="customer"><label>Log Out</label><url helper="customer/getLogoutUrl"/><title>Log Out</title><prepare/><urlParams/><position>100</position></action>
63
+ </reference>
64
+ </customer_logged_in>
65
+
66
+ <!--
67
+ Load this update on every page when customer is logged out
68
+ -->
69
+
70
+ <customer_logged_out>
71
+ <!---<reference name="right">
72
+ <block type="customer/form_login" name="customer_form_mini_login" before="-" template="customer/form/mini.login.phtml"/>
73
+ </reference>-->
74
+ <reference name="top.links">
75
+ <action method="addLink" translate="label title" module="customer"><label>Log In</label>
76
+ <url helper="customer/getLoginUrl"/><title>Log In</title><prepare/><urlParams/><position>100</position></action>
77
+ <action method="addLink" translate="label title" module="customer"><label>Sign Up</label>
78
+ <url helper="customer/getRegisterUrl"/><title></title><prepare/>
79
+ <urlParams/><position>101</position></action>
80
+
81
+ </reference>
82
+
83
+ <remove name="reorder"></remove>
84
+ </customer_logged_out>
85
+
86
+ <!--
87
+ Layout for customer login page
88
+ -->
89
+
90
+ <customer_account_login translate="label">
91
+ <label>Customer Account Login Form</label>
92
+ <!-- Mage_Customer -->
93
+ <remove name="right"/>
94
+ <remove name="left"/>
95
+
96
+ <reference name="root">
97
+ <action method="setTemplate"><template>page/1column-login.phtml</template></action>
98
+ </reference>
99
+ <reference name="content">
100
+ <block type="customer/form_login" name="customer_form_mini_login" before="-" template="customer/form/mini.login.phtml"/>
101
+ </reference>
102
+ </customer_account_login>
103
+
104
+ <!--
105
+ Layout for customer log out page
106
+ -->
107
+
108
+ <customer_account_logoutsuccess translate="label">
109
+ <label>Customer Account Logout Success</label>
110
+ <!-- Mage_Customer -->
111
+ <remove name="right"/>
112
+ <remove name="left"/>
113
+
114
+ <reference name="root">
115
+ <action method="setTemplate"><template>page/1column-login.phtml</template></action>
116
+ </reference>
117
+ <reference name="content">
118
+ <block type="core/template" name="customer_logout" template="customer/logout.phtml"/>
119
+ </reference>
120
+ </customer_account_logoutsuccess>
121
+
122
+ <!--
123
+ New customer registration
124
+ -->
125
+
126
+ <customer_account_create translate="label">
127
+ <label>Customer Account Registration Form</label>
128
+ <!-- Mage_Customer -->
129
+ <remove name="right"/>
130
+ <remove name="left"/>
131
+
132
+ <reference name="root">
133
+ <action method="setTemplate"><template>page/1column-login.phtml</template></action>
134
+ </reference>
135
+ <reference name="content">
136
+ <block type="customer/form_register" name="customer_form_register" template="customer/form/register.phtml">
137
+ <block type="page/html_wrapper" name="customer.form.register.fields.before" as="form_fields_before" translate="label">
138
+ <label>Form Fields Before</label>
139
+ </block>
140
+ </block>
141
+ </reference>
142
+ </customer_account_create>
143
+
144
+ <customer_account_forgotpassword translate="label">
145
+ <label>Customer Forgot Password Form</label>
146
+ <remove name="right"/>
147
+ <remove name="left"/>
148
+
149
+ <reference name="head">
150
+ <action method="setTitle" translate="title" module="customer"><title>Forgot Your Password</title></action>
151
+ </reference>
152
+ <reference name="root">
153
+ <action method="setTemplate"><template>page/1column-login.phtml</template></action>
154
+ <action method="setHeaderTitle" translate="title" module="customer"><title>Password forgotten</title></action>
155
+ </reference>
156
+ <reference name="content">
157
+ <!--<block type="core/template" name="forgotPassword" template="customer/form/forgotpassword.phtml"/>-->
158
+ <block type="customer/account_forgotpassword" name="forgotPassword" template="customer/form/forgotpassword.phtml" />
159
+ </reference>
160
+ </customer_account_forgotpassword>
161
+
162
+ <customer_account_resetpassword translate="label">
163
+ <label>Reset a Password</label>
164
+ <remove name="right"/>
165
+ <remove name="left"/>
166
+
167
+ <reference name="head">
168
+ <action method="setTitle" translate="title" module="customer">
169
+ <title>Reset a Password</title>
170
+ </action>
171
+ </reference>
172
+ <reference name="root">
173
+ <action method="setTemplate">
174
+ <template>page/1column-login.phtml</template>
175
+ </action>
176
+ <action method="setHeaderTitle" translate="title" module="customer">
177
+ <title>Reset a Password</title>
178
+ </action>
179
+ </reference>
180
+ <reference name="content">
181
+ <block type="customer/account_resetpassword" name="resetPassword" template="customer/form/resetforgottenpassword.phtml"/>
182
+ </reference>
183
+ </customer_account_resetpassword>
184
+
185
+ <customer_account_confirmation>
186
+ <remove name="right"/>
187
+ <remove name="left"/>
188
+
189
+ <reference name="root">
190
+ <action method="setTemplate"><template>page/1column-login.phtml</template></action>
191
+ <action method="setHeaderTitle" translate="title" module="customer"><title>Send confirmation link</title></action>
192
+ </reference>
193
+ <reference name="content">
194
+ <block type="core/template" name="accountConfirmation" template="customer/form/confirmation.phtml"/>
195
+ </reference>
196
+ </customer_account_confirmation>
197
+
198
+ <customer_account_edit translate="label">
199
+ <label>Customer Account Edit Form</label>
200
+ <update handle="customer_account"/>
201
+ <reference name="root">
202
+ <action method="setHeaderTitle" translate="title" module="customer"><title>Edit Account Info</title></action>
203
+ </reference>
204
+ <reference name="my.account.wrapper">
205
+ <block type="customer/form_edit" name="customer_edit" template="customer/form/edit.phtml"/>
206
+ </reference>
207
+
208
+ <reference name="left">
209
+ <action method="unsetChild"><name>left.permanent.callout</name></action>
210
+ </reference>
211
+ </customer_account_edit>
212
+
213
+ <!--
214
+ Customer account pages, rendered for all tabs in dashboard
215
+ -->
216
+
217
+ <customer_account translate="label">
218
+ <label>Customer My Account (All Pages)</label>
219
+ <!--remove name="catalog.compare.sidebar"/>
220
+ <remove name="sale.reorder.sidebar"/-->
221
+ <!-- Mage_Customer -->
222
+ <reference name="root">
223
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
224
+ </reference>
225
+
226
+ <reference name="content">
227
+ <block type="page/html_wrapper" name="my.account.wrapper" translate="label">
228
+ <label>My Account Wrapper</label>
229
+ <action method="setElementClass"><value>my-account</value></action>
230
+ </block>
231
+ </reference>
232
+
233
+ <reference name="left">
234
+ <block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml">
235
+ <action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action>
236
+ <action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>Account Information</label></action>
237
+ <action method="addLink" translate="label" module="customer"><name>address_book</name><path>customer/address/</path><label>Address Book</label></action>
238
+ </block>
239
+ <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml">
240
+ <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
241
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
242
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
243
+ </block>
244
+ <block type="catalog/product_compare_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
245
+ <remove name="tags_popular"/>
246
+
247
+ </reference>
248
+ </customer_account>
249
+
250
+ <!--
251
+ Customer account home dashboard layout
252
+ -->
253
+
254
+ <customer_account_index translate="label">
255
+ <label>Customer My Account Dashboard</label>
256
+ <update handle="customer_account"/>
257
+ <!-- Mage_Customer -->
258
+ <reference name="root">
259
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
260
+ </reference>
261
+ <reference name="my.account.wrapper">
262
+ <block type="customer/account_dashboard" name="customer_account_dashboard" template="customer/account/dashboard.phtml">
263
+ <block type="customer/account_dashboard_hello" name="customer_account_dashboard_hello" as="hello" template="customer/account/dashboard/hello.phtml"/>
264
+ <block type="core/template" name="customer_account_dashboard_top" as="top" />
265
+ <block type="customer/account_dashboard_info" name="customer_account_dashboard_info" as="info" template="customer/account/dashboard/info.phtml"/>
266
+ <block type="customer/account_dashboard_newsletter" name="customer_account_dashboard_newsletter" as="newsletter" template="customer/account/dashboard/newsletter.phtml"/>
267
+ <block type="customer/account_dashboard_address" name="customer_account_dashboard_address" as="address" template="customer/account/dashboard/address.phtml"/>
268
+ </block>
269
+ </reference>
270
+
271
+ </customer_account_index>
272
+
273
+ <!--
274
+ Customer account address book
275
+ -->
276
+
277
+ <customer_address_index translate="label">
278
+ <label>Customer My Account Address Book</label>
279
+ <!-- Mage_Customer -->
280
+ <update handle="customer_account"/>
281
+ <reference name="my.account.wrapper">
282
+ <block type="customer/address_book" name="address_book" template="customer/address/book.phtml"/>
283
+ </reference>
284
+ </customer_address_index>
285
+
286
+ <!--
287
+ Customer account address edit page
288
+ -->
289
+
290
+ <customer_address_form translate="label">
291
+ <label>Customer My Account Address Edit Form</label>
292
+ <!-- Mage_Customer -->
293
+ <update handle="customer_account"/>
294
+ <reference name="my.account.wrapper">
295
+ <block type="customer/address_edit" name="customer_address_edit" template="customer/address/edit.phtml"/>
296
+ </reference>
297
+ </customer_address_form>
298
+
299
+ </layout>
app/design/frontend/Kartparadigm/default/layout/directory.xml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ Category default layout
33
+ -->
34
+ <default>
35
+ <reference name="header">
36
+ <block type="directory/currency" name="top-currency" as="top-currency" template="directory/currency.phtml"/>
37
+ </reference>
38
+ <reference name="head">
39
+ <block type="core/template" name="optional_zip_countries" as="optional_zip_countries" template="directory/js/optional_zip_countries.phtml" />
40
+ </reference>
41
+ </default>
42
+
43
+
44
+
45
+ </layout>
app/design/frontend/Kartparadigm/default/layout/local.xml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="root">
5
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
6
+ <block type="core/template" name="full-width-slider" template="kartparadigm-home/kartparadigm-home-page-slider.phtml" />
7
+ </reference>
8
+ <remove name="paypal.partner.right.logo" />
9
+ <remove name='cart_sidebar'/>
10
+ </default>
11
+ <reference name="right">
12
+
13
+ </reference>
14
+ <cms_index_index translate="label">
15
+ <reference name="root">
16
+ <block type="core/template" name="full-width-slider_home" template="home/home-slider.phtml" />
17
+ </reference>
18
+ <remove name='full-width-slider'/>
19
+ </cms_index_index>
20
+ <catalog_product_view>
21
+ <reference name="root">
22
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
23
+ </reference>
24
+ </catalog_product_view>
25
+
26
+ </layout>
app/design/frontend/Kartparadigm/default/layout/local.xml~ ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="root">
5
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
6
+ <block type="core/template" name="full-width-slider" template="kartparadigm-home/kartparadigm-home-page-slider.phtml" />
7
+ </reference>
8
+ <remove name="paypal.partner.right.logo" />
9
+ <remove name='cart_sidebar'/>
10
+ </default>
11
+ <reference name="right">
12
+
13
+ </reference>
14
+ <cms_index_index translate="label">
15
+ <reference name="root">
16
+ <block type="core/template" name="full-width-slider_home" template="home/home-slider.phtml" />
17
+ </reference>
18
+ <remove name='full-width-slider'/>
19
+ </cms_index_index>
20
+ <catalog_product_view>
21
+ <reference name="root">
22
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
23
+ </reference>
24
+ </catalog_product_view>
25
+
26
+ </layout>
app/design/frontend/Kartparadigm/default/layout/page.xml ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
55
+
56
+
57
+ <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
58
+ <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
59
+ <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
60
+
61
+ <!-- CUSTOM CSS START -->
62
+
63
+ <action method="addCss"><stylesheet>css/kartparadigm_custom1.css</stylesheet></action>
64
+ <action method="addCss"><stylesheet>css/kartparadigm_custom2.css</stylesheet></action>
65
+ <action method="addCss"><stylesheet>css/custom.css</stylesheet></action>
66
+ <action method="addCss"><stylesheet>css/kartparadigm_responsive.css</stylesheet></action>
67
+ <action method="addCss"><stylesheet>css/slicknav.css</stylesheet></action>
68
+
69
+ <!-- CUSTOM CSS END -->
70
+
71
+ <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
72
+ <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
73
+ </block>
74
+
75
+ <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
76
+ <label>Page Top</label>
77
+ </block>
78
+
79
+ <block type="page/html_notices" name="global_notices" as="global_notices" template="page/html/notices.phtml" />
80
+
81
+ <block type="page/html_header" name="header" as="header">
82
+ <block type="core/text_list" name="topcart" as="topcart"/>
83
+ <block type="page/template_links" name="top.links" as="topLinks"/>
84
+ <block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
85
+ <block type="core/text_list" name="top.menu" as="topMenu" translate="label">
86
+ <label>Navigation Bar</label>
87
+ <block type="page/html_topmenu" name="catalog.topnav" template="page/html/topmenu.phtml"/>
88
+ </block>
89
+ <block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
90
+ <label>Page Header</label>
91
+ <action method="setElementClass"><value>top-container</value></action>
92
+ </block>
93
+ <block type="page/html_welcome" name="welcome" as="welcome"/>
94
+ </block>
95
+
96
+ <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>
97
+
98
+ <block type="core/text_list" name="left" as="left" translate="label">
99
+ <label>Left Column</label>
100
+ </block>
101
+
102
+ <block type="core/messages" name="global_messages" as="global_messages"/>
103
+ <block type="core/messages" name="messages" as="messages"/>
104
+
105
+ <block type="core/text_list" name="content" as="content" translate="label">
106
+ <label>Main Content Area</label>
107
+ </block>
108
+
109
+ <block type="core/text_list" name="right" as="right" translate="label">
110
+ <label>Right Column</label>
111
+ </block>
112
+
113
+ <block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
114
+ <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
115
+ <label>Page Footer</label>
116
+ <action method="setElementClass"><value>bottom-container</value></action>
117
+ </block>
118
+ <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
119
+ <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
120
+ </block>
121
+
122
+ <block type="core/text_list" name="before_body_end" as="before_body_end" translate="label">
123
+ <label>Page Bottom</label>
124
+ <block type="page/html_cookieNotice" name="global_cookie_notice" as ="global_cookie_notice" template="page/html/cookienotice.phtml" before="-" />
125
+ </block>
126
+ </block>
127
+
128
+ <block type="core/profiler" output="toHtml" name="core_profiler"/>
129
+ </default>
130
+
131
+ <print translate="label" module="page">
132
+ <label>All Pages (Print Version)</label>
133
+ <!-- Mage_Page -->
134
+ <block type="page/html" name="root" output="toHtml" template="page/print.phtml">
135
+
136
+ <block type="page/html_head" name="head" as="head">
137
+ <action method="addJs"><script>prototype/prototype.js</script></action>
138
+ <action method="addJs"><script>mage/translate.js</script></action>
139
+ <action method="addJs"><script>lib/ccard.js</script></action>
140
+ <action method="addJs"><script>prototype/validation.js</script></action>
141
+ <action method="addJs"><script>varien/js.js</script></action>
142
+
143
+ <action method="addCss"><stylesheet>css/styles.css</stylesheet></action>
144
+ <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
145
+ <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
146
+ <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
147
+
148
+ <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
149
+ <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
150
+
151
+ </block>
152
+
153
+ <block type="core/text_list" name="content" as="content" translate="label">
154
+ <label>Main Content Area</label>
155
+ </block>
156
+
157
+ </block>
158
+ </print>
159
+
160
+ <!-- Custom page layout handles -->
161
+ <page_empty translate="label">
162
+ <label>All Empty Layout Pages</label>
163
+ <reference name="root">
164
+ <action method="setTemplate"><template>page/empty.phtml</template></action>
165
+ <!-- Mark root page block that template is applied -->
166
+ <action method="setIsHandle"><applied>1</applied></action>
167
+ </reference>
168
+ </page_empty>
169
+
170
+ <page_one_column translate="label">
171
+ <label>All One-Column Layout Pages</label>
172
+ <reference name="root">
173
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
174
+ <!-- Mark root page block that template is applied -->
175
+ <action method="setIsHandle"><applied>1</applied></action>
176
+ </reference>
177
+ </page_one_column>
178
+
179
+ <page_two_columns_left translate="label">
180
+ <label>All Two-Column Layout Pages (Left Column)</label>
181
+ <reference name="root">
182
+ <action method="setTemplate"><template>page/2columns-left.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_left>
187
+
188
+ <page_two_columns_right translate="label">
189
+ <label>All Two-Column Layout Pages (Right Column)</label>
190
+ <reference name="root">
191
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
192
+ <!-- Mark root page block that template is applied -->
193
+ <action method="setIsHandle"><applied>1</applied></action>
194
+ </reference>
195
+ </page_two_columns_right>
196
+
197
+ <page_three_columns translate="label">
198
+ <label>All Three-Column Layout Pages</label>
199
+ <reference name="root">
200
+ <action method="setTemplate"><template>page/3columns.phtml</template></action>
201
+ <!-- Mark root page block that template is applied -->
202
+ <action method="setIsHandle"><applied>1</applied></action>
203
+ </reference>
204
+ </page_three_columns>
205
+ </layout>
app/design/frontend/Kartparadigm/default/template/callouts/left_col.phtml ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
2
+
3
+ <!-- Default Theme -->
4
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
5
+
6
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
7
+ <!-- Include js plugin -->
8
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
9
+
10
+
11
+
12
+ <script type="text/javascript">
13
+ var callout1=$.noConflict();
14
+ callout1(document).ready(function() {
15
+ callout1("#callout-demo1").owlCarousel({
16
+
17
+ slideSpeed : 300,
18
+ paginationSpeed : 400,
19
+ singleItem:true,
20
+ autoPlay:true
21
+
22
+ });
23
+ });
24
+ </script>
25
+ <style type="text/css">
26
+ #callout-demo1 .item img{
27
+ display: block;
28
+ width: 100%;
29
+ height: auto;
30
+ }
31
+ #callout-demo1{
32
+ margin-top: 10px;
33
+ }
34
+ </style>
35
+
36
+ <!--<?php
37
+ $imgUrl1=$this->getSkinUrl("images/home_left_callout.jpg");
38
+ $imgUrl2=$this->getSkinUrl("images/ph_callout_left_rebel.jpg");
39
+ $imgUrl3=$this->getSkinUrl("images/home_left_callout.jpg");
40
+ $bannerTarget1="javascript:void(0)";
41
+ $bannerTarget2="javascript:void(0)";
42
+ $bannerTarget3="javascript:void(0)";
43
+ ?>-->
44
+ <!-- code to read imgs and urls from static block start-->
45
+ <?php
46
+ $content= $this->getLayout()->createBlock('cms/block')->setBlockId('left_collout_banner')->toHtml();
47
+ preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $content, $imgSrcs );
48
+ preg_match_all( '|<a.*?href=[\'"](.*?)[\'"].*?>|i', $content, $targetUrls );
49
+ $imgUrl1 = $imgSrcs[ 1 ][ 0 ];
50
+ $imgUrl2 = $imgSrcs[ 1 ][ 1 ];
51
+ $imgUrl3 = $imgSrcs[ 1 ][ 2 ];
52
+ $bannerTarget1=$targetUrls[ 1 ][ 0 ];
53
+ $bannerTarget2=$targetUrls[ 1 ][ 1 ];
54
+ $bannerTarget3=$targetUrls[ 1 ][ 2 ];
55
+ ?>
56
+ <?php if(Mage::getModel('cms/block')->load('left_collout_banner')->getIsActive()!=0): ?>
57
+ <!-- code to read imgs and urls from static block end-->
58
+ <div class="block block-banner">
59
+ <div class="block-title" style='text-align: center;'>
60
+ <strong style='text-align:center;'><?php echo $this->__('Buy Now') ?></strong>
61
+ </div>
62
+ <div class="block-content">
63
+
64
+
65
+ <div id="callout-demo1" class="owl-carousel owl-theme">
66
+
67
+ <div class="item">
68
+ <a href="<?php echo $bannerTarget1; ?>"><img src="<?php echo $imgUrl1 ?>" alt="Image1"></a>
69
+ </div>
70
+ <div class="item">
71
+ <a href="<?php echo $bannerTarget2; ?>"><img src="<?php echo $imgUrl2 ?>" alt="Image2"></a>
72
+ </div>
73
+ <div class="item">
74
+ <a href="<?php echo $bannerTarget3; ?>"><img src="<?php echo $imgUrl3 ?>" alt="Image3"></a>
75
+ </div>
76
+
77
+ </div>
78
+ </div>
79
+ </div>
80
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/callouts/right_col.phtml ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
2
+
3
+ <!-- Default Theme -->
4
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
5
+
6
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
7
+ <!-- Include js plugin -->
8
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
9
+
10
+
11
+
12
+ <script type="text/javascript">
13
+ var callout2=$.noConflict();
14
+ callout2(document).ready(function() {
15
+ callout2("#callout-demo2").owlCarousel({
16
+
17
+ slideSpeed : 300,
18
+ paginationSpeed : 400,
19
+ singleItem:true,
20
+ autoPlay:true
21
+
22
+ });
23
+ });
24
+ </script>
25
+ <style type="text/css">
26
+ #callout-demo2 .item img{
27
+ display: block;
28
+ width: 100%;
29
+ height: auto;
30
+ }
31
+ #callout-demo2{
32
+ margin-top: 10px;
33
+ }
34
+ </style>
35
+ <!--
36
+ <?php
37
+ $imgUrl1=$this->getSkinUrl("images/home_left_callout.jpg");
38
+ $imgUrl2=$this->getSkinUrl("images/ph_callout_left_rebel.jpg");
39
+ $imgUrl3=$this->getSkinUrl("images/home_left_callout.jpg");
40
+ $bannerTarget1="javascript:void(0)";
41
+ $bannerTarget2="javascript:void(0)";
42
+ $bannerTarget3="javascript:void(0)";
43
+ ?>-->
44
+ <!-- code to read imgs and urls from static block start-->
45
+ <?php
46
+ $content= $this->getLayout()->createBlock('cms/block')->setBlockId('right_collout_banner')->toHtml();
47
+ preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $content, $imgSrcs );
48
+ preg_match_all( '|<a.*?href=[\'"](.*?)[\'"].*?>|i', $content, $targetUrls );
49
+ $imgUrl1 = $imgSrcs[ 1 ][ 0 ];
50
+ $imgUrl2 = $imgSrcs[ 1 ][ 1 ];
51
+ $imgUrl3 = $imgSrcs[ 1 ][ 2 ];
52
+ $bannerTarget1=$targetUrls[ 1 ][ 0 ];
53
+ $bannerTarget2=$targetUrls[ 1 ][ 1 ];
54
+ $bannerTarget3=$targetUrls[ 1 ][ 2 ];
55
+ ?>
56
+ <!-- code to read imgs and urls from static block end-->
57
+ <?php if(Mage::getModel('cms/block')->load('right_collout_banner')->getIsActive()!=0): ?>
58
+ <div class="block block-banner">
59
+ <div class="block-title" style='text-align: center;'>
60
+ <strong style='text-align:center;'><?php echo $this->__('Buy Now') ?></strong>
61
+ </div>
62
+ <div class="block-content">
63
+
64
+
65
+ <div id="callout-demo2" class="owl-carousel owl-theme">
66
+
67
+ <div class="item">
68
+ <a href="<?php echo $bannerTarget1; ?>"><img src="<?php echo $imgUrl1 ?>" alt="Image1"></a>
69
+ </div>
70
+ <div class="item">
71
+ <a href="<?php echo $bannerTarget2; ?>"><img src="<?php echo $imgUrl2 ?>" alt="Image2"></a>
72
+ </div>
73
+ <div class="item">
74
+ <a href="<?php echo $bannerTarget3; ?>"><img src="<?php echo $imgUrl3 ?>" alt="Image3"></a>
75
+ </div>
76
+
77
+ </div>
78
+ </div>
79
+ </div>
80
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/compare/top_campare.phtml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ .block-compare .block-content .actions a:before {
3
+
4
+ margin: 0px 0px 0px -20px;
5
+
6
+ }
7
+
8
+ </style>
9
+
10
+
11
+
12
+ <?php
13
+ $_helper = $this->helper('catalog/product_compare');
14
+ $_items = $_helper->getItemCount() > 0 ? $_helper->getItemCollection() : null;
15
+ ?>
16
+ <div class="block block-list block-compare " style='box-shadow: 0px 30px 36px 30px rgba(0, 0, 0, 0.1);
17
+ '>
18
+
19
+ <div class="block-content" style="padding-top:15px;">
20
+ <?php if($_helper->getItemCount() > 0): ?>
21
+ <ol id="compare-items">
22
+ <?php foreach($_items as $_index => $_item): ?>
23
+ <li class="item">
24
+ <input type="hidden" class="compare-item-id" value="<?php echo $_item->getId() ?>" />
25
+ <a href="<?php echo $_helper->getRemoveUrl($_item) ?>" title="<?php echo $this->__('Remove This Item') ?>" class="btn-remove" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the compare products?') ?>');"><?php echo $this->__('Remove This Item') ?></a>
26
+ <p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></p>
27
+ </li>
28
+ <?php endforeach; ?>
29
+ </ol>
30
+ <script type="text/javascript">decorateList('compare-items')</script>
31
+ <div class="actions" style="padding-top:15px;">
32
+
33
+ <button type="button" title="<?php echo $this->__('Compare') ?>" class="button" onclick="popWin('<?php echo $_helper->getListUrl() ?>','compare','top:0,left:0,width=820,height=600,resizable=yes,scrollbars=yes')"><span><span><?php echo $this->__('Compare') ?></span></span></button><br/>
34
+ <a style='margin: 0px 0px 0px -20px;' href="<?php echo $_helper->getClearListUrl() ?>" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove all products from your comparison?') ?>');"><?php echo $this->__('Clear All') ?></a>
35
+ </div>
36
+ <?php else: ?>
37
+ <p class="empty"><?php echo $this->__('You have no items to compare.') ?></p>
38
+ <?php endif; ?>
39
+ </div>
40
+ </div>
app/design/frontend/Kartparadigm/default/template/catalog/product/list.phtml ADDED
@@ -0,0 +1,398 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2012 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
+ <style type="text/css">
35
+ .links-hover{
36
+ display:none;
37
+
38
+ }
39
+ .products-grid li.item:hover .links-hover{
40
+ display:block;
41
+ }
42
+ .products-grid .add-to-links {
43
+ width: 270px;
44
+ height: 40px;
45
+ margin: 9px -9px -9px;
46
+ background: none repeat scroll 0% 0% #FCFCFC;
47
+ text-align: center;
48
+ box-shadow: 0px 5px 6px -4px rgba(0, 0, 0, 0.15) inset;
49
+ }
50
+ .products-grid .add-to-links li {
51
+ display: inline;
52
+ margin: 0px 5px 0px 0px;
53
+ line-height: 40px;
54
+ }
55
+ .products-grid .add-to-links {
56
+ text-align: center;
57
+ }
58
+ .products-grid .add-to-links a {
59
+ font-weight: 300;
60
+ }
61
+ .products-grid .add-to-links li span {
62
+ display: inline-block;
63
+
64
+ margin-right: 5px;
65
+ }
66
+ .products-grid .price-box {
67
+ margin: 0px 0px 5px 4px;
68
+ line-height: 14px;
69
+ letter-spacing: 0px;
70
+ }
71
+
72
+
73
+ .category-image img{
74
+ width: 100%;
75
+ }
76
+
77
+ </style>
78
+
79
+ <?php
80
+ $_productCollection=$this->getLoadedProductCollection();
81
+ $_helper = $this->helper('catalog/output');
82
+
83
+ ?>
84
+ <?php
85
+ $layout=$this->getLayout()->getBlock('root')->getTemplate();
86
+ $pos = strripos($layout, "1column");
87
+ if ($pos !== false):?>
88
+ <style type="text/css">
89
+ .col-main a img{
90
+ width: 100%;
91
+ }
92
+ .category-products {
93
+ margin-left: 5%;
94
+ }
95
+ </style>
96
+ <?php $this->setData('column_count',4); ?>
97
+ <?php endif; ?>
98
+
99
+ <!-- if it is 3col layout -->
100
+ <?php $pos1 = strripos($layout, "3columns");
101
+ if ($pos1 !== false): ?>
102
+ <?php $this->setData('column_count',2); ?>
103
+ <style type="text/css">
104
+ .col3-layout .col-main {
105
+ width: 600px;
106
+ }
107
+ </style>
108
+ <?php endif; ?>
109
+ <!-- if it is 3col layout -->
110
+
111
+
112
+ <?php if(!$_productCollection->count()): ?>
113
+ <p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
114
+ <?php else: ?>
115
+ <div class="category-products">
116
+ <?php echo $this->getToolbarHtml() ?>
117
+ <?php // List mode ?>
118
+ <?php if($this->getMode()!='grid'): ?>
119
+ <?php $_iterator = 0; ?>
120
+ <ol class="products-list" id="products-list">
121
+ <?php foreach ($_productCollection as $_product): ?>
122
+
123
+ <li class="item odd">
124
+ <div class="f-left">
125
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
126
+ <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(180); ?>" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" width="252" height="252">
127
+ </a>
128
+ </div>
129
+ <div class="product-shop">
130
+ <div class="f-fix">
131
+ <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a></h2>
132
+ <div class="price-container clearfix">
133
+
134
+
135
+
136
+ <div class="price-box">
137
+ <span class="regular-price" id="product-price-1863">
138
+ <span class="price"><?php echo $this->getPriceHtml($_product, true) ?></span></span>
139
+
140
+ </div>
141
+
142
+ </div>
143
+ <div class="desc std">
144
+
145
+ <?php echo $_helper->productAttribute($_product, $_product->getDescription(), 'description') ?> <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn">Learn More</a>
146
+ </div>
147
+ <div class="button-container" style="margin-top: 16px;">
148
+ <p><a href="<?php echo $this->getAddToCartUrl($_product) ?>" title="Add to Cart" class="btn-cart btn-add-cart"><span></span>Add to Cart</a></p>
149
+ </div>
150
+ <ul class="add-to-links">
151
+ <li><span></span><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist" data-id="1863">Add to Wishlist</a></li>
152
+ <li><span></span><a href="<?php echo $this->getAddToCompareUrl($_product) ?>" class="link-compare" data-id="1863">Add to Compare</a></li>
153
+ </ul>
154
+
155
+ </div>
156
+ </div>
157
+ </li>
158
+ <?php endforeach; ?>
159
+ </ol>
160
+ <script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
161
+
162
+ <?php else: ?>
163
+
164
+ <?php // Grid Mode ?>
165
+
166
+ <?php $_collectionSize = $_productCollection->count() ?>
167
+ <?php $_columnCount = $this->getColumnCount(); ?>
168
+ <?php //echo $_columnCount; ?>
169
+ <?php $i=0; foreach ($_productCollection as $_product): ?>
170
+ <?php if ($i++%$_columnCount==0): ?>
171
+
172
+
173
+ <ul class="products-grid ">
174
+ <?php endif ?>
175
+ <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
176
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
177
+ <?php
178
+ date_default_timezone_set("Asia/Kolkata");
179
+ $newtodate = $_product['news_to_date'];
180
+ $newfromdate = $_product['news_from_date'];
181
+ $newtodate=date("Y-m-d",strtotime($newtodate));
182
+ $newfromdate=date("Y-m-d",strtotime($newfromdate));
183
+ //echo "from ".$newtodate;
184
+ //echo "to ".$newfromdate;
185
+
186
+ $date = date("Y-m-d",strtotime(date("Y-m-d")));
187
+ //echo "today".$date;
188
+ //echo $date <= $newtodate;
189
+ if ($date >= $newfromdate and $date <= $newtodate)
190
+ {?>
191
+ <div class="new-label new-top-left"></div>
192
+
193
+ <?php
194
+ }
195
+ else
196
+ {
197
+
198
+ }
199
+ ?>
200
+
201
+
202
+ <img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(252); ?>" data-srcX2="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(250); ?>" width="252" height="252" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
203
+
204
+ <div style="z-index:99">
205
+ <div class='links-hover' style="z-index: 2;">
206
+
207
+ <div class="hover links-hover" style="margin: 259px 0px 0px;margin-left: 0px;width:249px;">
208
+
209
+ <h1 class="quick-view" id="<?php echo $_product->getId() ?>" style="cursor:pointer">Quick View</h1>
210
+ <div style="opacity: 1; padding: 47px 15px; margin: -140px 0px 0px;" class="price-box">
211
+ <span class="regular-price" id="product-price-582">
212
+ <span class="price" ><?php echo $this->getPriceHtml($_product, true) ?></span></span>
213
+ </div>
214
+ <a class="product-name" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a>
215
+
216
+ <div class="button-container">
217
+ <p><button type="button" title="Add to Cart" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><em></em><?php echo $this->__('Add to Cart') ?></span></span></button></p>
218
+ </div>
219
+
220
+ <ul class="add-to-links" style="width:267px;">
221
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
222
+ <li>
223
+ <a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist">
224
+ <span>+</span>
225
+ <?php echo $this->__('Add to Wishlist') ?></a></li>
226
+ <?php endif; ?>
227
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
228
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare">
229
+ <span>+</span><?php echo $this->__('Add to Compare') ?></a></li>
230
+ <?php endif; ?>
231
+ </ul>
232
+ </div>
233
+
234
+ </div>
235
+
236
+
237
+
238
+ </div>
239
+ <div class="product-info">
240
+ <div class="button-container">
241
+ <p><?php if($_product->isSaleable()): ?>
242
+ <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>
243
+ <?php endif; ?></p>
244
+ </div><a class="product-name" href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a>
245
+
246
+ <?php echo $this->getPriceHtml($_product, true) ?>
247
+
248
+ </div>
249
+ <!-- POPUP START -->
250
+ <div id="popup<?php echo $_product->getId() ?>" style="width: 100%;height:auto; display: none;z-index:99">
251
+ <h1 class="quick-close" id="<?php echo $_product->getId() ?>" style="float:right;cursor:pointer">
252
+ <img height="35px" width="35px" src="<?php echo $this->getSkinUrl("images/close-button.jpg") ?>" /></h1>
253
+ <div class="product-view">
254
+ <div class="product-essential">
255
+
256
+ <div class="product-img-box" style="width:400px;margin-left: 10px;">
257
+
258
+ <img style="width: 400px;height:440px" id="image" src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(); ?>" alt="<?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?>" title="<?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?>" />
259
+
260
+ </div>
261
+ <div class="product-shop" style='float:left;'>
262
+
263
+
264
+ <style>
265
+
266
+ .block .block-title {
267
+ border: none;
268
+ }
269
+ .block-related .price-box {
270
+ margin-left: 15px;
271
+ }
272
+ .block-related .product-name {
273
+ display: block;
274
+ }
275
+ .block-related .price-box .price {
276
+ font-size: 12px !important;
277
+ }
278
+
279
+ .product-view .block-related .product-image {
280
+ display: block;
281
+ border: 9px solid #FFF;
282
+ border-radius: 3px;
283
+ box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
284
+ }
285
+ .product-view .block-related .product-name {
286
+ color: #3C3C3C;
287
+ font-size: 12px;
288
+ font-weight: 300;
289
+ display: block;
290
+ margin: 10px 4px 6px;
291
+ line-height: 120%;
292
+ }
293
+ .product-view .block-related .price-box {
294
+ overflow: hidden;
295
+ margin: 0px 0px 0px 4px;
296
+ line-height: 12px;
297
+ }
298
+ .product-view .block-related .price-box .price {
299
+ font-size: 12px;
300
+ font-family: Arial,serif;
301
+ line-height: 100%;
302
+ }
303
+
304
+ </style>
305
+
306
+ <div class="product-shop-info" style="width: 490px; box-shadow: 0px 30px 36px 0px rgba(0, 0, 0, 0.1);
307
+ border: 1px solid rgba(0, 0, 0, 0.1);padding: 10px 10px;
308
+ ">
309
+ <div class="product-name" >
310
+ <h1 style="font-size: 20px;font-size: 30px;
311
+ font-family:Arial, Helvetica,serif;
312
+ font-weight: 400;
313
+ color: #322C29;">
314
+ <?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
315
+ </div>
316
+ <div class="clear"></div>
317
+
318
+
319
+ <p class="sku" style='float: left;
320
+ font-size: 12px;
321
+ font-weight: 700;
322
+ margin: 10px 0px 0px;'>SKU: <span><?php echo $_helper->productAttribute($_product, $_product->getSku(), 'sku') ?></span></p><br/>
323
+ <div class="clear"></div><br/>
324
+ <?php echo $this->getPriceHtml($_product, true) ?>
325
+ <div class="clear"></div>
326
+
327
+ <?php if ($_product->getShortDescription()):?>
328
+ <div class="short-description">
329
+
330
+ <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
331
+ </div>
332
+ <?php endif;?>
333
+
334
+ <div class="add-to-box">
335
+
336
+ <div class="add-to-cart">
337
+ <button type="button" title="BUY" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span>BUY</span></span></button>
338
+ </div>
339
+ <ul class="add-to-links"> <?php if ($this->helper('wishlist')->isAllow()) : ?>
340
+ <li class="wishlist"><span class="icon"></span><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li> <?php endif; ?>
341
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
342
+ <li class="compare"><span class="icon"></span> <a href="<?php echo $_compareUrl ?>" class="link-compare"> <?php echo $this->__('Add to Compare') ?></a></li> <?php endif; ?>
343
+ </ul>
344
+
345
+
346
+ </div>
347
+ </div>
348
+
349
+ </div>
350
+
351
+ </div>
352
+
353
+ </div>
354
+
355
+ </div><!-- pop up end -->
356
+ </li>
357
+ <?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
358
+ </ul>
359
+
360
+
361
+ <?php endif ?>
362
+ <?php endforeach ?>
363
+ <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
364
+ <?php endif; ?>
365
+
366
+ <div class="toolbar-bottom">
367
+ <?php echo $this->getToolbarHtml() ?>
368
+ </div>
369
+ </div>
370
+ <?php endif; ?>
371
+
372
+
373
+
374
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
375
+ <script src="<?php echo $this->getSkinUrl("js/blurbox.js")?>"></script>
376
+ <script>
377
+ var quick=$.noConflict();
378
+ quick(document).ready(function() {
379
+ quick(".quick-view").click(function() {
380
+
381
+ var pid=quick(this).attr('id');
382
+
383
+ if(quick('#popup'+pid).attr('id')==undefined){
384
+ window.location.reload();
385
+ }
386
+ //alert(pid);
387
+ quick('#popup'+pid).blurbox({blur: 10, animateBlur: true}).show();
388
+
389
+
390
+ });
391
+ quick(".quick-close").click(function() {
392
+ var pid=quick(this).attr('id');
393
+ //alert(pid);
394
+ quick('#popup'+pid).blurbox().hide();
395
+
396
+ });
397
+ });
398
+ </script>
app/design/frontend/Kartparadigm/default/template/catalog/product/list/related.phtml ADDED
@@ -0,0 +1,274 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <head>
2
+ <!-- Important Owl stylesheet -->
3
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
4
+
5
+ <!-- Default Theme -->
6
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
7
+
8
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
9
+
10
+ <!-- Include js plugin -->
11
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
12
+
13
+ <script>
14
+ var rjslide=$.noConflict();
15
+
16
+ rjslide(document).ready(function() {
17
+
18
+
19
+ var rowl = rjslide("#owl-demo1");
20
+
21
+ rowl.owlCarousel({
22
+
23
+ items : 1,
24
+ pagination : false,
25
+ navigation : false,
26
+ slideSpeed :600
27
+ });
28
+ rjslide(".next1").click(function(){
29
+
30
+ rowl.trigger('owl.next');
31
+ })
32
+ rjslide(".prev1").click(function(){
33
+
34
+ rowl.trigger('owl.prev');
35
+ })
36
+ });
37
+
38
+ </script>
39
+ <style>
40
+
41
+ .block-related .owl-theme .owl-controls {
42
+ text-align: center;
43
+ position: absolute;
44
+ z-index: 1002;
45
+ top: 90px;
46
+ left: 600px;
47
+ }
48
+ .customNavigation{
49
+ text-align: right;
50
+ }
51
+ .customNavigation a{
52
+ cursor: pointer !Important;
53
+ -webkit-user-select: none;
54
+ -khtml-user-select: none;
55
+ -moz-user-select: none;
56
+ -ms-user-select: none;
57
+ user-select: none;
58
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
59
+ }
60
+ .block .block-title {
61
+ border: none;
62
+ }
63
+ .block-related .price-box {
64
+ margin-left: 15px;
65
+ }
66
+ .block-related .product-name {
67
+ display: block;
68
+ font-size: 15px !important;
69
+ }
70
+ .block-related .price-box .price {
71
+ font-size: 15px !important;
72
+ }
73
+
74
+ .product-view .block-related .product-image {
75
+ display: block;
76
+ border: 9px solid #FFF;
77
+ border-radius: 3px;
78
+
79
+ }
80
+ .product-view .block-related .product-name {
81
+ color: #3C3C3C;
82
+ font-size: 12px;
83
+ font-weight: 300;
84
+ display: block;
85
+ margin: 10px 4px 6px;
86
+ line-height: 120%;
87
+ text-align: center;
88
+ }
89
+ .product-view .block-related .price-box {
90
+ overflow: hidden;
91
+ margin: 0px 0px 0px 4px;
92
+ line-height: 12px;
93
+ }
94
+ .product-view .block-related .price-box .price {
95
+ font-size: 15px;
96
+ font-family: Arial,serif;
97
+ line-height: 100%;
98
+ }
99
+
100
+ </style>
101
+ </head>
102
+
103
+ <?php if($this->getItems()->getSize()>0): ?>
104
+ <div class="product-additional" style='width:250px;height:270px;'>
105
+ <div class="block block-related" id="block-related" style='width:250px;'>
106
+ <div class="block-title">
107
+ <h2 style='font-size: 18px;
108
+ text-transform: uppercase;
109
+ margin: 0px 80px 20px 0px; font-family: Arial, Helvetica;
110
+ }'><?php echo $this->__('Related Products') ?></h2>
111
+ </div>
112
+ <div class="customNavigation">
113
+ <a class="btn prev1 jcarousel-prev-horizontal" ></a>
114
+ <a class="btn next1 jcarousel-next-horizontal" ></a>
115
+ </div>
116
+ <div class="block-content">
117
+ <!--<p class="block-subtitle"><?php //echo $this->__('Check items to add to the cart or') ?>&nbsp;<a href="#" onclick="selectAllRelated(this); return false;"><?php //echo $this->__('select all') ?></a></p>-->
118
+ <div id="owl-demo1" class="owl-carousel owl-theme">
119
+
120
+ <?php foreach($this->getItems() as $_item): ?>
121
+
122
+ <div class="item">
123
+ <div class="regular">
124
+ <a class="product-image" href="<?php echo $_item->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_item->getName()) ?>">
125
+ <img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(252) ?>" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" width="222" height="222">
126
+ </a><center>
127
+ <div class="product-info" style="height: 59px;">
128
+
129
+ <a class="product-name" href="<?php echo $_item->getProductUrl() ?>">
130
+ <?php echo $this->escapeHtml($_item->getName()) ?></a>
131
+
132
+ <?php echo $this->getPriceHtml($_item, true, '-related') ?>
133
+
134
+ </div><!-- product info -->
135
+ <div class="button-container">
136
+ <p>
137
+ <?php if ($_item->isSaleable()): ?>
138
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart ajax-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_item) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
139
+ <?php else: ?>
140
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
141
+ <?php endif; ?>
142
+ </p>
143
+ </div>
144
+ </center>
145
+ <div class="clear"></div>
146
+ </div><!-- regular -->
147
+ </div>
148
+
149
+ <?php endforeach ?>
150
+ </div>
151
+ <script type="text/javascript">decorateList('block-related', 'none-recursive')</script>
152
+ </div>
153
+ <script type="text/javascript">
154
+ //<![CDATA[
155
+ $$('.related-checkbox').each(function(elem){
156
+ Event.observe(elem, 'click', addRelatedToProduct)
157
+ });
158
+
159
+ var relatedProductsCheckFlag = false;
160
+ function selectAllRelated(txt){
161
+ if (relatedProductsCheckFlag == false) {
162
+ $$('.related-checkbox').each(function(elem){
163
+ elem.checked = true;
164
+ });
165
+ relatedProductsCheckFlag = true;
166
+ txt.innerHTML="<?php echo $this->__('unselect all') ?>";
167
+ } else {
168
+ $$('.related-checkbox').each(function(elem){
169
+ elem.checked = false;
170
+ });
171
+ relatedProductsCheckFlag = false;
172
+ txt.innerHTML="<?php echo $this->__('select all') ?>";
173
+ }
174
+ addRelatedToProduct();
175
+ }
176
+
177
+ function addRelatedToProduct(){
178
+ var checkboxes = $$('.related-checkbox');
179
+ var values = [];
180
+ for(var i=0;i<checkboxes.length;i++){
181
+ if(checkboxes[i].checked) values.push(checkboxes[i].value);
182
+ }
183
+ if($('related-products-field')){
184
+ $('related-products-field').value = values.join(',');
185
+ }
186
+ }
187
+ //]]>
188
+ </script>
189
+ </div>
190
+ <?php elseif(($this->getItems()->getSize()<2)&&($this->getItems()->getSize()!=0)): ?>
191
+
192
+ <div class="block block-related">
193
+ <div class="block-title">
194
+ <strong><span><?php echo $this->__('Related Products') ?></span></strong>
195
+ </div>
196
+ <div class="customNavigation">
197
+ <a class="btn prev1 jcarousel-prev-horizontal" ></a>
198
+ <a class="btn next1 jcarousel-next-horizontal" ></a>
199
+ </div>
200
+ <div class="block-content">
201
+ <!--<p class="block-subtitle"><?php //echo $this->__('Check items to add to the cart or') ?>&nbsp;<a href="#" onclick="selectAllRelated(this); return false;"><?php //echo $this->__('select all') ?></a></p>-->
202
+ <div id="owl-demo1" class="owl-carousel owl-theme">
203
+
204
+ <?php foreach($this->getItems() as $_item): ?>
205
+
206
+ <div class="item">
207
+ <div class="regular">
208
+ <a class="product-image" href="<?php echo $_item->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_item->getName()) ?>">
209
+ <img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(252) ?>" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" width="252" height="252">
210
+ </a>
211
+ <div class="product-info" style="height: 59px;">
212
+ <div class="button-container">
213
+ <p>
214
+ <?php if ($_item->isSaleable()): ?>
215
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart ajax-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_item) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
216
+ <?php else: ?>
217
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
218
+ <?php endif; ?>
219
+ </p>
220
+ </div>
221
+ <a class="product-name" href="<?php echo $_item->getProductUrl() ?>">
222
+ <?php echo $this->escapeHtml($_item->getName()) ?></a>
223
+
224
+ <?php echo $this->getPriceHtml($_item, true, '-related') ?>
225
+
226
+ </div><!-- product info -->
227
+
228
+ <div class="clear"></div>
229
+ </div><!-- regular -->
230
+ </div>
231
+
232
+ <?php endforeach ?>
233
+ </div>
234
+ <script type="text/javascript">decorateList('block-related', 'none-recursive')</script>
235
+ </div>
236
+ <script type="text/javascript">
237
+ //<![CDATA[
238
+ $$('.related-checkbox').each(function(elem){
239
+ Event.observe(elem, 'click', addRelatedToProduct)
240
+ });
241
+
242
+ var relatedProductsCheckFlag = false;
243
+ function selectAllRelated(txt){
244
+ if (relatedProductsCheckFlag == false) {
245
+ $$('.related-checkbox').each(function(elem){
246
+ elem.checked = true;
247
+ });
248
+ relatedProductsCheckFlag = true;
249
+ txt.innerHTML="<?php echo $this->__('unselect all') ?>";
250
+ } else {
251
+ $$('.related-checkbox').each(function(elem){
252
+ elem.checked = false;
253
+ });
254
+ relatedProductsCheckFlag = false;
255
+ txt.innerHTML="<?php echo $this->__('select all') ?>";
256
+ }
257
+ addRelatedToProduct();
258
+ }
259
+
260
+ function addRelatedToProduct(){
261
+ var checkboxes = $$('.related-checkbox');
262
+ var values = [];
263
+ for(var i=0;i<checkboxes.length;i++){
264
+ if(checkboxes[i].checked) values.push(checkboxes[i].value);
265
+ }
266
+ if($('related-products-field')){
267
+ $('related-products-field').value = values.join(',');
268
+ }
269
+ }
270
+ //]]>
271
+ </script>
272
+ </div>
273
+ <?php endif ?>
274
+
app/design/frontend/Kartparadigm/default/template/catalog/product/list/toolbar.phtml ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
2
+ <script type="text/javascript">
3
+ var jshow=$.noConflict();
4
+ jshow(document).ready(function(){
5
+
6
+ jshow("#toolbar-title1").hover(function(){
7
+ jshow("#toolbar-dropdown1").show();
8
+
9
+ });
10
+ jshow("#toolbar-dropdown1").hover(function(){
11
+ jshow("#toolbar-dropdown1").show();
12
+
13
+ });
14
+ jshow("#toolbar-title1,#toolbar-dropdown1").mouseleave(function(){
15
+ jshow("#toolbar-dropdown1").hide();
16
+
17
+ });
18
+
19
+ jshow("#toolbar-title2").hover(function(){
20
+ jshow("#toolbar-dropdown2").show();
21
+ });
22
+ jshow("#toolbar-dropdown2").hover(function(){
23
+ jshow("#toolbar-dropdown2").show();
24
+
25
+ });
26
+ jshow("#toolbar-title2,#toolbar-dropdown2").mouseleave(function(){
27
+ jshow("#toolbar-dropdown2").hide();
28
+
29
+ });
30
+ });
31
+ </script>
32
+ <style type="text/css">
33
+ .over .toolbar-title {
34
+ height: 27px;
35
+ }
36
+ .sorter .view-mode .list {
37
+ margin-right: -10px;
38
+ }
39
+ #mini-toolbar{
40
+ display: none;
41
+ }
42
+ </style>
43
+ <?php
44
+ /**
45
+ * Product list toolbar
46
+ *
47
+ * @see Mage_Catalog_Block_Product_List_Toolbar
48
+ */
49
+ ?>
50
+ <?php if($this->getCollection()->getSize()): ?>
51
+ <div class="toolbar" id="desktop-toolbar" >
52
+
53
+
54
+ <?php if( $this->isExpanded() ): ?>
55
+ <div class="sorter">
56
+ <div class="sort-by toolbar-switch">
57
+ <div class="toolbar-title" id="toolbar-title1">
58
+ <label>Sort By</label>
59
+ <span class="current">
60
+ <?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
61
+ <?php if($this->isOrderCurrent($_key)): ?><?php echo $this->__($_order) ?><?php endif; ?>
62
+ <?php endforeach; ?>
63
+ </span>
64
+ </div>
65
+ <div class="toolbar-dropdown" id="toolbar-dropdown1" style="width:174px;"><ul id="aa">
66
+ <?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
67
+ <li><a href="<?php echo $this->getOrderUrl($_key, 'asc') ?>"> <?php echo $this->__($_order) ?></a></li>
68
+ <?php endforeach; ?></ul>images/
69
+ </div>
70
+ </div>
71
+ <div class="sort-order">
72
+ <?php if($this->getCurrentDirection() == 'desc'): ?>
73
+ <a href="<?php echo $this->getOrderUrl(null, 'asc') ?>" title="<?php echo $this->__('Set Ascending Direction') ?>"><img src="<?php echo $this->getSkinUrl("images/i_desc_arrow.gif")?>" alt="Set Ascending Direction" class="v-middle" width="27" height="27"></a>
74
+ <?php else: ?>
75
+ <a href="<?php echo $this->getOrderUrl(null, 'desc') ?>" title="<?php echo $this->__('Set Descending Direction') ?>"><img src="<?php echo $this->getSkinUrl("images/i_asc_arrow.gif")?>" alt="<?php echo $this->__('Set Descending Direction') ?>" class="v-middle" /></a>
76
+ <?php endif; ?>
77
+ </div>
78
+ <?php if( $this->isEnabledViewSwitcher() ): ?>
79
+ <p class="view-mode">
80
+ <?php $_modes = $this->getModes(); ?>
81
+ <?php if($_modes && count($_modes)>1): ?>
82
+ <label><?php echo $this->__('View') ?></label>
83
+ <?php foreach ($this->getModes() as $_code=>$_label): ?>
84
+ <?php if($this->isModeActive($_code)): ?>
85
+ <strong title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></strong>&nbsp;
86
+ <?php else: ?>
87
+ <a href="<?php echo $this->getModeUrl($_code) ?>" title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></a>&nbsp;
88
+ <?php endif; ?>
89
+ <?php endforeach; ?>
90
+ <?php endif; ?>
91
+ </p>
92
+ <div class="limiter toolbar-switch">
93
+ <div class="toolbar-title" id="toolbar-title2">
94
+ <label><?php echo $this->__('Show') ?></label>
95
+
96
+ <span class="current">
97
+ <?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
98
+ <?php if($this->isLimitCurrent($_key)): ?> <?php echo $_limit ?>
99
+ per page
100
+ <?php else: ?>
101
+
102
+ <?php endif; ?>
103
+ <?php endforeach; ?>
104
+ </span></div>
105
+ <div class="toolbar-dropdown" id="toolbar-dropdown2" style="width:174px;">
106
+ <ul> <?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
107
+ <li ><a href="<?php echo $this->getLimitUrl($_key) ?>"><?php echo $_limit ?></a></li>
108
+
109
+ <?php endforeach; ?></ul>
110
+
111
+ </div>
112
+ </div>
113
+ <?php endif; ?>
114
+
115
+
116
+ </div>
117
+ <?php endif; ?>
118
+ <div class="pager">
119
+ <p class="amount">
120
+ <strong><?php echo $this->__('%s Item(s)', $this->getTotalNum()) ?></strong>
121
+ </p>
122
+
123
+
124
+ </div>
125
+ </div>
126
+ <?php endif ?>
127
+
128
+
129
+ <?php if($this->getCollection()->getSize()): ?>
130
+ <div class="toolbar" id="mini-toolbar" >
131
+ <?php if( $this->isExpanded() ): ?>
132
+ <div class="sorter">
133
+ <div class="sort-by">
134
+ <label><?php echo $this->__('Sort By') ?></label>
135
+ <select onchange="setLocation(this.value)">
136
+ <?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
137
+ <option value="<?php echo $this->getOrderUrl($_key, 'asc') ?>"<?php if($this->isOrderCurrent($_key)): ?> selected="selected"<?php endif; ?>>
138
+ <?php echo $this->__($_order) ?>
139
+ </option>
140
+ <?php endforeach; ?>
141
+ </select>
142
+ <?php if($this->getCurrentDirection() == 'desc'): ?>
143
+ <a href="<?php echo $this->getOrderUrl(null, 'asc') ?>" title="<?php echo $this->__('Set Ascending Direction') ?>"><img src="<?php echo $this->getSkinUrl('images/i_desc_arrow.gif') ?>" alt="<?php echo $this->__('Set Ascending Direction') ?>" class="v-middle" /></a>
144
+ <?php else: ?>
145
+ <a href="<?php echo $this->getOrderUrl(null, 'desc') ?>" title="<?php echo $this->__('Set Descending Direction') ?>"><img src="<?php echo $this->getSkinUrl('images/i_asc_arrow.gif') ?>" alt="<?php echo $this->__('Set Descending Direction') ?>" class="v-middle" /></a>
146
+ <?php endif; ?>
147
+ </div>
148
+
149
+
150
+ <?php if( $this->isEnabledViewSwitcher() ): ?>
151
+ <p class="view-mode">
152
+ <?php $_modes = $this->getModes(); ?>
153
+ <?php if($_modes && count($_modes)>1): ?>
154
+ <label><?php echo $this->__('View as') ?>:</label>
155
+ <?php foreach ($this->getModes() as $_code=>$_label): ?>
156
+ <?php if($this->isModeActive($_code)): ?>
157
+ <strong title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></strong>&nbsp;
158
+ <?php else: ?>
159
+ <a href="<?php echo $this->getModeUrl($_code) ?>" title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></a>&nbsp;
160
+ <?php endif; ?>
161
+ <?php endforeach; ?>
162
+ <?php endif; ?>
163
+ </p>
164
+ <?php endif; ?>
165
+ <div class="limiter" style="margin-top: 10px;">
166
+ <label><?php echo $this->__('Show') ?></label>
167
+ <select onchange="setLocation(this.value)">
168
+ <?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
169
+ <option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
170
+ <?php echo $_limit ?>
171
+ </option>
172
+ <?php endforeach; ?>
173
+ </select> <?php echo $this->__('per page') ?>
174
+ </div>
175
+ </div>
176
+ <?php endif; ?>
177
+
178
+
179
+
180
+ </div>
181
+ <?php endif ?>
182
+
app/design/frontend/Kartparadigm/default/template/catalog/product/list/upsell.phtml ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <head>
2
+ <!-- Important Owl stylesheet -->
3
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
4
+
5
+ <!-- Default Theme -->
6
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
7
+
8
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
9
+
10
+ <!-- Include js plugin -->
11
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
12
+
13
+ <script>
14
+ var jslide=$.noConflict();
15
+
16
+ <?php
17
+ $layout=$this->getLayout()->getBlock('root')->getTemplate();
18
+ $pos = strripos($layout, "3columns");
19
+
20
+ if ($pos === false) :?>
21
+ jslide(document).ready(function() {
22
+
23
+
24
+ var owl = jslide("#owl-demo");
25
+
26
+ owl.owlCarousel({
27
+ items : 3,
28
+ pagination : false,
29
+ navigation : false,
30
+ slideSpeed :600,
31
+ itemsDesktop : [1024,3], //5 items between 1000px and 901px
32
+ itemsDesktopSmall : [900,2], // betweem 900px and 601px
33
+ itemsTablet: [600,1], //2 items between 600 and 0
34
+ itemsMobile : [479,1] // itemsMobile disabled - inherit from itemsTablet option
35
+ });
36
+ jslide(".next").click(function(){
37
+ owl.trigger('owl.next');
38
+ })
39
+ jslide(".prev").click(function(){
40
+ owl.trigger('owl.prev');
41
+ })
42
+ });
43
+ <?php else: ?>/* if it is 3colums */
44
+ jslide(document).ready(function() {
45
+
46
+
47
+ var owl = jslide("#owl-demo");
48
+
49
+ owl.owlCarousel({
50
+ items : 2,
51
+ pagination : false,
52
+ navigation : false,
53
+ slideSpeed :600,
54
+ itemsDesktop : [1024,2], //5 items between 1000px and 901px
55
+ itemsDesktopSmall : [900,2], // betweem 900px and 601px
56
+ itemsTablet: [600,1], //2 items between 600 and 0
57
+ itemsMobile : [479,1] // itemsMobile disabled - inherit from itemsTablet option
58
+ });
59
+ jslide(".next").click(function(){
60
+ owl.trigger('owl.next');
61
+ })
62
+ jslide(".prev").click(function(){
63
+ owl.trigger('owl.prev');
64
+ })
65
+ });
66
+ <?php endif; ?>
67
+ </script>
68
+ <style>
69
+
70
+ /*upsell product styles */
71
+ .box-up-sell h2 {
72
+ margin: 0px 0px 0px 15px;
73
+ padding: 0px 0px 28px;
74
+ font-family: Arial, Helvetica;
75
+ font-size: 20px;
76
+ font-weight: 400;
77
+ text-transform: uppercase;
78
+ letter-spacing: -1.2px;
79
+ line-height: 21px;
80
+ color: rgba(0, 0, 0, 0.75);
81
+ }
82
+ .products-grid .price-box {
83
+ text-align: center;
84
+ }
85
+ .products-grid .product-image img {
86
+ margin-left: 40px;
87
+ }
88
+ /*upsell product styles */
89
+ .product-view .box-up-sell .owl-theme .owl-controls {
90
+ text-align: center;
91
+ position: absolute;
92
+ z-index: 1002;
93
+ top: 90px;
94
+ left: 600px;
95
+ }
96
+ .customNavigation{
97
+ text-align: right;
98
+ }
99
+ .customNavigation a{
100
+ cursor: pointer !Important;
101
+ -webkit-user-select: none;
102
+ -khtml-user-select: none;
103
+ -moz-user-select: none;
104
+ -ms-user-select: none;
105
+ user-select: none;
106
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
107
+ }
108
+ .product-view .box-up-sell .item {
109
+ width: 252px !Important;
110
+ background: none repeat scroll 0% 0% #FFF;
111
+ box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
112
+ padding-bottom: 10px;
113
+ }
114
+ .product-view .box-up-sell .product-image{
115
+ box-shadow: none;
116
+ }
117
+ .products-grid .product-image img {
118
+ margin-left: 0px !Important;
119
+ }
120
+ .products-grid .price-box {
121
+ text-align: left !Important;
122
+ }
123
+ .product-view .box-up-sell .product-name,.product-view .box-up-sell .price-box .price {
124
+ font-size: 16px !Important;
125
+ }
126
+ .col3-layout .box-up-sell{
127
+ margin: 0px 20px 50px;
128
+ }
129
+
130
+
131
+
132
+ </style>
133
+ </head>
134
+ <?php //$this->setData('column_count',5); ?>
135
+
136
+ <?php if(count($this->getItemCollection()->getItems())): ?>
137
+ <div class="slider-container" style="margin: 53px -15px 0px -15px;">
138
+ <?php if(count($this->getItemCollection()->getItems())>4): ?>
139
+ <style type="text/css">
140
+ .col2-left-layout .products-grid{
141
+ margin: 0px;
142
+ }
143
+ .col2-right-layout .products-grid{
144
+ margin: 0px;
145
+ }
146
+ </style>
147
+ <div class="box-collateral box-up-sell">
148
+ <h2><?php echo $this->__('You may also be interested in the following product(s)') ?></h2>
149
+ <div class="products-grid" id="upsell-product-table">
150
+ <div class="customNavigation">
151
+ <a class="btn prev jcarousel-prev-horizontal"></a>
152
+ <a class="btn next jcarousel-next-horizontal"></a>
153
+ </div>
154
+
155
+ <?php // $this->setColumnCount(5); // uncomment this line if you want to have another number of columns. also can be changed in layout ?>
156
+
157
+ <?php $this->resetItemsIterator() ?>
158
+ <?php for($_i=0;$_i<$this->getRowCount();$_i++): ?>
159
+ <div id="owl-demo" class="owl-carousel owl-theme">
160
+ <?php for($_j=0;$_j<$this->getColumnCount();$_j++): ?>
161
+ <?php if($_link=$this->getIterableItem()): ?>
162
+ <div class="item">
163
+ <div class="regular">
164
+ <a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>" class="product-image">
165
+ <img width='252px' height='252px' src="<?php echo $this->helper('catalog/image')->init($_link, 'small_image')->resize(252) ?>" alt="<?php echo $this->escapeHtml($_link->getName()) ?>" /></a>
166
+
167
+ <div class="button-container">
168
+ <p>
169
+ <?php if ($_link->isSaleable()): ?>
170
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart ajax-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_link) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
171
+ <?php else: ?>
172
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
173
+ <?php endif; ?>
174
+ </p>
175
+ </div>
176
+
177
+ <a class="product-name" href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>"><?php echo $this->escapeHtml($_link->getName()) ?></a>
178
+ <?php echo $this->getPriceHtml($_link, true, '-upsell') ?>
179
+ <?php //echo $this->getReviewsSummaryHtml($_link) ?>
180
+ </div>
181
+ </div>
182
+ <?php else: ?>
183
+ <div class="empty">&nbsp;</div>
184
+ <?php endif; ?>
185
+ <?php endfor; ?>
186
+ </div>
187
+ <?php endfor; ?>
188
+ </div>
189
+ <script type="text/javascript">decorateTable('upsell-product-table')</script>
190
+ </div>
191
+ <?php else: ?>
192
+ <div class="box-collateral box-up-sell" style="margin-left: 3%;">
193
+ <h2><?php echo $this->__('You may also be interested in the following product(s)') ?></h2>
194
+ <div class="products-grid" id="upsell-product-table">
195
+
196
+
197
+ <?php $this->setColumnCount(4); // uncomment this line if you want to have another number of columns. also can be changed in layout ?>
198
+
199
+ <?php $this->resetItemsIterator() ?>
200
+ <?php for($_i=0;$_i<$this->getRowCount();$_i++): ?>
201
+ <div >
202
+ <?php for($_j=0;$_j<$this->getColumnCount();$_j++): ?>
203
+ <?php if($_link=$this->getIterableItem()): ?>
204
+ <div class="item">
205
+ <div class="regular">
206
+ <a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>" class="product-image">
207
+ <img width='252px' height='252px' src="<?php echo $this->helper('catalog/image')->init($_link, 'small_image')->resize(252) ?>" alt="<?php echo $this->escapeHtml($_link->getName()) ?>" /></a>
208
+
209
+ <div class="button-container" style="margin-right: 40px;">
210
+ <p>
211
+ <?php if ($_link->isSaleable()): ?>
212
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart ajax-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_link) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
213
+ <?php else: ?>
214
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
215
+ <?php endif; ?>
216
+ </p>
217
+ </div>
218
+
219
+ <a class="product-name" href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>"><?php echo $this->escapeHtml($_link->getName()) ?></a>
220
+ <?php echo $this->getPriceHtml($_link, true, '-upsell') ?>
221
+ <?php //echo $this->getReviewsSummaryHtml($_link) ?>
222
+ </div>
223
+ </div>
224
+ <?php else: ?>
225
+ <div class="empty">&nbsp;</div>
226
+ <?php endif; ?>
227
+ <?php endfor; ?>
228
+ </div>
229
+ <?php endfor; ?>
230
+ </div>
231
+ <script type="text/javascript">decorateTable('upsell-product-table')</script>
232
+ </div>
233
+ <?php endif; ?>
234
+ </div>
235
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view.phtml ADDED
@@ -0,0 +1,427 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /**
28
+ * Product view template
29
+ *
30
+ * @see Mage_Catalog_Block_Product_View
31
+ * @see Mage_Review_Block_Product_View
32
+ */
33
+ ?>
34
+ <!-- TABS START -->
35
+ <style type="text/css">
36
+ body { font-size: 80%; font-family: Arial, Sans-Serif; }
37
+ /* ul.product-tabs { list-style-type: none; margin: 30px 0 0 0; padding: 0 0 0.3em 0; }
38
+ ul.product-tabs li a.selected { color: #000; background-color: #f1f0ee; font-weight: bold; padding: 0.7em 0.3em 0.38em 0.3em; }
39
+ ul.product-tabs li a { color: #42454a; background-color: #dedbde; border: 1px solid #c9c3ba; border-bottom: none; padding: 0.3em; text-decoration: none; }*/
40
+ ul.product-tabs li { display: inline; }
41
+
42
+ ul.product-tabs li a:hover { background-color: #f1f0ee; }
43
+
44
+ div.tabContent { position: relative;
45
+ z-index: 2;
46
+ border: medium none;
47
+ background: none repeat scroll 0% 0% #FFF;
48
+ padding: 23px;
49
+ margin: 69px 0px 40px;
50
+ border-radius: 3px;
51
+ box-shadow: 2px 1px 6px 0px rgba(0, 0, 0, 0.15);
52
+ border: 1px solid rgba(0, 0, 0, 0.1);
53
+ }
54
+ div.tabContent.hide { display: none; }
55
+ .tabContent h2{
56
+ display:none;
57
+ }
58
+ .tabContent{
59
+ margin-top:60px;
60
+ }
61
+
62
+ .product-tabs li a.selected, .product-tabs li a:hover {
63
+ background-color: #FFF;
64
+ }
65
+ }
66
+ ul.product-tabs li a {
67
+ color: rgba(0, 0, 0, 0.67);
68
+ font-size: 16px;
69
+ font-family: Arial, Helvetica,serif;
70
+ background: none repeat scroll 0% 0% #F5F5F5;
71
+ padding: 10px 20px;
72
+ height: 47px;
73
+ display: block;
74
+ }
75
+ .catalog-product-view .col2-right-layout .col-main{
76
+ padding: 30px 50px 0px;
77
+ }
78
+ .catalog-product-view .col3-layout .col-main{
79
+ padding: 30px 50px 0px;
80
+ }
81
+ .catalog-product-view .col3-layout .block-cart {
82
+ padding: 23px 20px !important;
83
+ }
84
+ .catalog-product-view .col2-right-layout .block-cart {
85
+ padding: 23px 20px !important;
86
+ }
87
+ .col3-layout .col-right #block-related{
88
+ padding: 23px 10px;
89
+ }
90
+ .col2-right-layout .col-right #block-related{
91
+ padding: 23px 10px;
92
+ }
93
+ </style>
94
+
95
+ <script type="text/javascript">
96
+ //<![CDATA[
97
+
98
+ var tabLinks = new Array();
99
+ var contentDivs = new Array();
100
+
101
+ function init() {
102
+
103
+ // Grab the tab links and content divs from the page
104
+ var tabListItems = document.getElementById('tabs').childNodes;
105
+ for ( var i = 0; i < tabListItems.length; i++ ) {
106
+ if ( tabListItems[i].nodeName == "LI" ) {
107
+ var tabLink = getFirstChildWithTagName( tabListItems[i], 'A' );
108
+ var id = getHash( tabLink.getAttribute('href') );
109
+ tabLinks[id] = tabLink;
110
+ contentDivs[id] = document.getElementById( id );
111
+ }
112
+ }
113
+
114
+ // Assign onclick events to the tab links, and
115
+ // highlight the first tab
116
+ var i = 0;
117
+
118
+ for ( var id in tabLinks ) {
119
+ tabLinks[id].onclick = showTab;
120
+ tabLinks[id].onfocus = function() { this.blur() };
121
+ if ( i == 0 ) tabLinks[id].className = 'selected';
122
+ i++;
123
+ }
124
+
125
+ // Hide all content divs except the first
126
+ var i = 0;
127
+
128
+ for ( var id in contentDivs ) {
129
+ if ( i != 0 ) contentDivs[id].className = 'tabContent hide';
130
+ i++;
131
+ }
132
+ }
133
+
134
+ function showTab() {
135
+ var selectedId = getHash( this.getAttribute('href') );
136
+
137
+ // Highlight the selected tab, and dim all others.
138
+ // Also show the selected content div, and hide all others.
139
+ for ( var id in contentDivs ) {
140
+ if ( id == selectedId ) {
141
+ tabLinks[id].className = 'selected';
142
+ contentDivs[id].className = 'tabContent';
143
+ } else {
144
+ tabLinks[id].className = '';
145
+ contentDivs[id].className = 'tabContent hide';
146
+ }
147
+ }
148
+
149
+ // Stop the browser following the link
150
+ return false;
151
+ }
152
+
153
+ function getFirstChildWithTagName( element, tagName ) {
154
+ for ( var i = 0; i < element.childNodes.length; i++ ) {
155
+ if ( element.childNodes[i].nodeName == tagName ) return element.childNodes[i];
156
+ }
157
+ }
158
+
159
+ function getHash( url ) {
160
+ var hashPos = url.lastIndexOf ( '#' );
161
+ return url.substring( hashPos + 1 );
162
+ }
163
+
164
+ //]]>
165
+ </script>
166
+ </head>
167
+
168
+ <body onload="init()">
169
+ <!-- TABS END -->
170
+ <?php $_helper = $this->helper('catalog/output'); ?>
171
+ <?php $_product = $this->getProduct(); ?>
172
+ <script type="text/javascript">
173
+ var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
174
+ </script>
175
+ <div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
176
+ <div class="product-view">
177
+ <div class="product-essential">
178
+ <form action="<?php echo $this->getSubmitUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
179
+ <?php echo $this->getBlockHtml('formkey') ?>
180
+ <div class="no-display">
181
+ <input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
182
+ <input type="hidden" name="related_product" id="related-products-field" value="" />
183
+ </div>
184
+
185
+
186
+
187
+ <div class="product-img-box" style="width:512px">
188
+ <?php echo $this->getChildHtml('media') ?>
189
+ </div>
190
+ <div class="product-shop">
191
+
192
+
193
+
194
+ <div class="product-shop-info" style=' box-shadow: 0px 30px 36px 0px rgba(0, 0, 0, 0.1);
195
+ border: 1px solid rgba(0, 0, 0, 0.1);padding: 10px 12px;
196
+ '>
197
+ <div class="product-name">
198
+ <h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
199
+ </div>
200
+ <?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
201
+
202
+
203
+ <?php echo $this->getPriceHtml($_product) ?>
204
+
205
+ <?php if ($_product->isAvailable()): ?>
206
+ <p class="availability in-stock"><?php //echo $this->__('Availability1:') ?> <span><?php echo $this->__('In stock') ?></span></p>
207
+ <?php else: ?>
208
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
209
+ <?php endif; ?>
210
+ <p class="sku">SKU: <span><?php echo $_product->getResource()->getAttribute('sku')->getFrontend()->getValue($_product);?></span></p>
211
+ <div class="clear"></div>
212
+
213
+ <?php if ($_product->getShortDescription()):?>
214
+ <div class="short-description">
215
+
216
+ <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
217
+ </div>
218
+ <?php endif;?>
219
+
220
+ <?php if($_product->isSaleable()): ?>
221
+
222
+
223
+ <?php if(!$_product->isGrouped()): ?><div class="qty-container clearfix">
224
+ <label for="qty">Quantity:</label>
225
+ <input type="text" name="qty" id="qty" maxlength="12" value="<?php echo $this->getProductDefaultQty() * 1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
226
+ </div>
227
+ <?php else :?>
228
+ <style>
229
+ .product-view .add-to-links {
230
+ margin: 10px 0px 0px;}
231
+ </style>
232
+ <?php endif; ?> <?php endif; ?>
233
+
234
+ <?php if (!$this->hasOptions()):?>
235
+ <div class="add-to-box">
236
+ <?php if($_product->isSaleable()): ?>
237
+ <?php echo $this->getChildHtml('addtocart') ?>
238
+ <?php if( $this->helper('wishlist')->isAllow() || $_compareUrl=$this->helper('catalog/product_compare')->getAddUrl($_product)): ?>
239
+
240
+ <?php endif; ?>
241
+ <?php endif; ?>
242
+ </div>
243
+
244
+ <?php echo $this->getChildHtml('addto') ?>
245
+
246
+
247
+
248
+ <div class="clear"></div>
249
+
250
+ <?php echo $this->getChildHtml('alert_urls') ?>
251
+ <?php echo $this->getChildHtml('product_type_data') ?>
252
+ <?php echo $this->getTierPriceHtml() ?>
253
+ <?php echo $this->getChildHtml('extrahint') ?>
254
+
255
+
256
+
257
+
258
+ <?php echo $this->getChildHtml('extra_buttons') ?>
259
+ <?php elseif (!$_product->isSaleable()): ?>
260
+ <div class="add-to-box">
261
+ <?php echo $this->getChildHtml('addto') ?>
262
+ </div>
263
+ <?php endif; ?>
264
+
265
+
266
+
267
+ <?php echo $this->getChildHtml('other');?>
268
+
269
+ <?php if ($_product->isSaleable() && $this->hasOptions()):?>
270
+ <?php echo $this->getChildChildHtml('container1', '', true, true) ?>
271
+ <?php endif;?>
272
+ </div>
273
+ </div>
274
+ <div class="clearer"></div>
275
+ <?php if ($_product->isSaleable() && $this->hasOptions()):?>
276
+ <?php echo $this->getChildChildHtml('container2', '', true, true) ?>
277
+ <?php endif;?>
278
+ </form>
279
+
280
+ </div>
281
+ <div class="product-tabs-container clearfix">
282
+ <ul class="product-tabs " id='tabs'>
283
+ <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
284
+ <li id="product_tabs_<?php echo $alias
285
+ ?>_tabbed"><a href="#<?php echo $alias ;?>">
286
+ <?php if ($alias=='description'):?>
287
+ <h2><?php echo $alias; ?></h2>
288
+ <?php else:?>
289
+ <h2>Additional Information</h2>
290
+ <?php endif;?>
291
+
292
+ </a>
293
+
294
+ </li>
295
+ <?php endforeach;?>
296
+ <li id="product_tabs_tags_tabbed"><a href="#tags">
297
+
298
+ <h2>Tags</h2>
299
+ </a>
300
+
301
+ </li>
302
+ <li id="product_tabs_reviews_tabbed"><a href="#reviews">
303
+
304
+ <h2>Reviews</h2>
305
+ </a>
306
+
307
+ </li>
308
+ </ul>
309
+
310
+
311
+ <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
312
+ <div class=" product-tabs-content tabs-content tabContent " id="<?php echo $alias ?>">
313
+ <?php if ($title = $this->getChildData($alias, 'title')):?>
314
+ <h2><?php //echo $this->escapeHtml($title); ?></h2>
315
+ <?php endif;?>
316
+ <?php echo $html; ?>
317
+
318
+
319
+
320
+
321
+ </div>
322
+
323
+ <?php endforeach;?>
324
+ <div class=" product-tabs-content tabs-content tabContent " id="tags">
325
+
326
+ <?php echo $this->getChildHtml('product_additional_data') ?>
327
+
328
+ </div>
329
+
330
+ <div class=" product-tabs-content tabs-content tabContent " id="reviews">
331
+
332
+ <?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
333
+
334
+
335
+ </div>
336
+ <!--<ul class="product-tabs">
337
+ <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
338
+
339
+
340
+
341
+ <div class="box-collateral <?php echo "box-{$alias}"?>">
342
+ <?php if ($title = $this->getChildData($alias, 'title')):?>
343
+ <h2><?php echo $this->escapeHtml($title); ?></h2>
344
+ <?php endif;?>
345
+ <?php echo $html; ?>
346
+ </div>
347
+ <?php endforeach;?>-->
348
+
349
+
350
+ <?php echo $this->getChildHtml('upsell_products') ?>
351
+
352
+ </div>
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+ <script type="text/javascript">
371
+ //<![CDATA[
372
+ var productAddToCartForm = new VarienForm('product_addtocart_form');
373
+ productAddToCartForm.submit = function(button, url) {
374
+ if (this.validator.validate()) {
375
+ var form = this.form;
376
+ var oldUrl = form.action;
377
+
378
+ if (url) {
379
+ form.action = url;
380
+ }
381
+ var e = null;
382
+ try {
383
+ this.form.submit();
384
+ } catch (e) {
385
+ }
386
+ this.form.action = oldUrl;
387
+ if (e) {
388
+ throw e;
389
+ }
390
+
391
+ if (button && button != 'undefined') {
392
+ button.disabled = true;
393
+ }
394
+ }
395
+ }.bind(productAddToCartForm);
396
+
397
+ productAddToCartForm.submitLight = function(button, url){
398
+ if(this.validator) {
399
+ var nv = Validation.methods;
400
+ delete Validation.methods['required-entry'];
401
+ delete Validation.methods['validate-one-required'];
402
+ delete Validation.methods['validate-one-required-by-name'];
403
+ // Remove custom datetime validators
404
+ for (var methodName in Validation.methods) {
405
+ if (methodName.match(/^validate-datetime-.*/i)) {
406
+ delete Validation.methods[methodName];
407
+ }
408
+ }
409
+
410
+ if (this.validator.validate()) {
411
+ if (url) {
412
+ this.form.action = url;
413
+ }
414
+ this.form.submit();
415
+ }
416
+ Object.extend(Validation.methods, nv);
417
+ }
418
+ }.bind(productAddToCartForm);
419
+ //]]>
420
+ </script>
421
+ </div>
422
+
423
+
424
+
425
+
426
+ </body>
427
+
app/design/frontend/Kartparadigm/default/template/catalog/product/view/additional.phtml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 foreach ($this->getChildHtmlList() as $_html): ?>
28
+ <?php echo $_html ?>
29
+ <?php endforeach; ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/addto.phtml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
28
+ <?php $_product = $this->getProduct(); ?>
29
+ <?php $_wishlistSubmitUrl = $this->helper('wishlist')->getAddUrl($_product); ?>
30
+
31
+ <ul class="add-to-links">
32
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
33
+ <li class="wishlist"><span class="icon"></span><a href="<?php echo $_wishlistSubmitUrl ?>" onclick="productAddToCartForm.submitLight(this, this.href); return false;" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
34
+ <?php endif; ?>
35
+ <?php
36
+ $_compareUrl = $this->helper('catalog/product_compare')->getAddUrl($_product);
37
+ ?>
38
+ <?php if($_compareUrl) : ?>
39
+ <li class="compare"><span class="icon"></span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
40
+ <?php endif; ?>
41
+ <?php if ($this->canEmailToFriend()): ?>
42
+ <li class="email-friend"><span class="icon"></span>
43
+ <a href="<?php echo $this->helper('catalog/product')->getEmailToFriendUrl($_product) ?>"><?php echo $this->__('Email to a Friend') ?></a>
44
+ </li>
45
+ <?php endif; ?>
46
+ </ul>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/addtocart.phtml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2012 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 $_product = $this->getProduct(); ?>
28
+ <?php $buttonTitle = $this->__('BUY'); ?>
29
+
30
+
31
+
32
+ <div class="add-to-cart">
33
+
34
+ <button type="button" title="<?php echo $buttonTitle ?>" class="button btn-cart" onclick="productAddToCartForm.submit(this)"><span><span><?php echo $buttonTitle ?></span></span></button>
35
+ <?php echo $this->getChildHtml('', true, true) ?>
36
+ </div>
37
+
app/design/frontend/Kartparadigm/default/template/catalog/product/view/attributes.phtml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /**
28
+ * Product additional attributes template
29
+ *
30
+ * @see Mage_Catalog_Block_Product_View_Attributes
31
+ */
32
+ ?>
33
+ <?php
34
+ $_helper = $this->helper('catalog/output');
35
+ $_product = $this->getProduct()
36
+ ?>
37
+ <?php if($_additional = $this->getAdditionalData()): ?>
38
+ <h2><?php echo $this->__('Additional Information') ?></h2>
39
+ <table class="data-table" id="product-attribute-specs-table">
40
+ <col width="25%" />
41
+ <col />
42
+ <tbody>
43
+ <?php foreach ($_additional as $_data): ?>
44
+ <tr>
45
+ <th class="label"><?php echo $this->escapeHtml($this->__($_data['label'])) ?></th>
46
+ <td class="data"><?php echo $_helper->productAttribute($_product, $_data['value'], $_data['code']) ?></td>
47
+ </tr>
48
+ <?php endforeach; ?>
49
+ </tbody>
50
+ </table>
51
+ <script type="text/javascript">decorateTable('product-attribute-specs-table')</script>
52
+ <?php endif;?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/description.phtml ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /**
28
+ * Product description template
29
+ *
30
+ * @see Mage_Catalog_Block_Product_View_Description
31
+ */
32
+ ?>
33
+ <?php $_description = $this->getProduct()->getDescription(); ?>
34
+ <?php if ($_description): ?>
35
+ <h2><?php echo $this->__('Details') ?></h2>
36
+ <div class="std">
37
+ <?php echo $this->helper('catalog/output')->productAttribute($this->getProduct(), $_description, 'description') ?>
38
+ </div>
39
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/media.phtml ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /**
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
+
38
+
39
+
40
+
41
+
42
+
43
+ <style>
44
+ #image{
45
+ width:495px;
46
+ height:495px;
47
+ }
48
+
49
+ </style>
50
+
51
+ <?php
52
+ $productheight = Mage::getStoreConfig('theme/theme_config_zoom/productheight');
53
+ $productwidth = Mage::getStoreConfig('theme/theme_config_zoom/productwidth');
54
+ $zoomheight = Mage::getStoreConfig('theme/theme_config_zoom/zoomheight');
55
+ $zoomwidth = Mage::getStoreConfig('theme/theme_config_zoom/zoomwidth');
56
+ ?>
57
+
58
+ <?php if($productheight==''):?>
59
+ <?php else :?>
60
+
61
+ <style>
62
+ #image{
63
+ height: <?php echo $productheight ?>px !important ;
64
+ }
65
+ </style>
66
+ <?php endif;?>
67
+ <?php if($productwidth ==''):?>
68
+ <?php else :?>
69
+
70
+ <style>
71
+ #image{
72
+ width: <?php echo $productwidth ?>px !important ;
73
+ }
74
+ </style>
75
+ <?php endif;?>
76
+ <!-- ZOOM WINDOW STYLES FROM Configurations -->
77
+ <?php if($zoomheight==''):?>
78
+ <?php else :?>
79
+
80
+ <style>
81
+ .easyzoom--adjacent .easyzoom-flyout {
82
+ height: <?php echo $zoomheight ?>px !important ;
83
+ }
84
+ </style>
85
+ <?php endif;?>
86
+ <?php if($zoomwidth ==''):?>
87
+ <?php else :?>
88
+
89
+ <style>
90
+ .easyzoom--adjacent .easyzoom-flyout {
91
+ width: <?php echo $zoomwidth ?>px !important ;
92
+ }
93
+ </style>
94
+ <?php endif;?>
95
+
96
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
97
+ <script src="<?php echo $this->getSkinUrl();?>dist/easyzoom.js"></script>
98
+
99
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl();?>dist/easyzoom.css" />
100
+
101
+
102
+ <div class="easyzoom easyzoom--adjacent " >
103
+ <a href="<?php echo $this->helper('catalog/image')->init($_product, 'image') ?>" id='data'>
104
+ <?php
105
+ $_img = '<img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->escapeHtml($this->getImageLabel()).'" title="'.$this->escapeHtml($this->getImageLabel()).'" />';
106
+ echo $_helper->productAttribute($_product, $_img, 'image');
107
+ ?>
108
+
109
+
110
+
111
+ </a>
112
+ </div>
113
+
114
+
115
+ <?php if (count($this->getGalleryImages()) > 0): ?>
116
+ <div class="more-views">
117
+ <h2><?php echo $this->__('More Views') ?></h2>
118
+ <ul>
119
+ <?php foreach ($this->getGalleryImages() as $_image): ?>
120
+ <li>
121
+ <a href="#" onclick="changeImg('<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(); ?>')" width="56" height="56" alt="<?php echo $this->escapeHtml($_image->getLabel()) ?>" />
122
+ <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>
123
+ </li>
124
+ <?php endforeach; ?>
125
+ </ul>
126
+ </div>
127
+ <?php endif; ?>
128
+ <script>
129
+ function changeImg(imgurl)
130
+ {
131
+ document.getElementById('image').src=imgurl;
132
+ document.getElementById('data').href=imgurl;
133
+
134
+ }
135
+ </script>
136
+ <script>
137
+ // Instantiate EasyZoom plugin
138
+ var zoomvar=$.noConflict();
139
+ var zoomvareasyzoom = zoomvar('.easyzoom').easyZoom();
140
+
141
+ // Get the instance API
142
+ var api = zoomvareasyzoom.data('easyZoom');
143
+ </script>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options.phtml ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_Catalog_Block_Product_View_Options */
27
+ ?>
28
+
29
+ <?php $_options = Mage::helper('core')->decorateArray($this->getOptions()) ?>
30
+ <?php if (count($_options)):?>
31
+ <script type="text/javascript">
32
+ //<![CDATA[
33
+ var optionFileUpload = {
34
+ productForm : $('product_addtocart_form'),
35
+ formAction : '',
36
+ formElements : {},
37
+ upload : function(element){
38
+ this.formElements = this.productForm.select('input', 'select', 'textarea', 'button');
39
+ this.removeRequire(element.readAttribute('id').sub('option_', ''));
40
+
41
+ template = '<iframe id="upload_target" name="upload_target" style="width:0; height:0; border:0;"><\/iframe>';
42
+
43
+ Element.insert($('option_'+element.readAttribute('id').sub('option_', '')+'_uploaded_file'), {after: template});
44
+
45
+ this.formAction = this.productForm.action;
46
+
47
+ var baseUrl = '<?php echo $this->getUrl('*/product/upload') ?>';
48
+ var urlExt = 'option_id/'+element.readAttribute('id').sub('option_', '');
49
+
50
+ this.productForm.action = parseSidUrl(baseUrl, urlExt);
51
+ this.productForm.target = 'upload_target';
52
+ this.productForm.submit();
53
+ this.productForm.target = '';
54
+ this.productForm.action = this.formAction;
55
+ },
56
+ removeRequire : function(skipElementId){
57
+ for(var i=0; i<this.formElements.length; i++){
58
+ if (this.formElements[i].readAttribute('id') != 'option_'+skipElementId+'_file' && this.formElements[i].type != 'button') {
59
+ this.formElements[i].disabled='disabled';
60
+ }
61
+ }
62
+ },
63
+ addRequire : function(skipElementId){
64
+ for(var i=0; i<this.formElements.length; i++){
65
+ if (this.formElements[i].readAttribute('name') != 'options_'+skipElementId+'_file' && this.formElements[i].type != 'button') {
66
+ this.formElements[i].disabled='';
67
+ }
68
+ }
69
+ },
70
+ uploadCallback : function(data){
71
+ this.addRequire(data.optionId);
72
+ $('upload_target').remove();
73
+
74
+ if (data.error) {
75
+
76
+ } else {
77
+ $('option_'+data.optionId+'_uploaded_file').value = data.fileName;
78
+ $('option_'+data.optionId+'_file').value = '';
79
+ $('option_'+data.optionId+'_file').hide();
80
+ $('option_'+data.optionId+'').hide();
81
+ template = '<div id="option_'+data.optionId+'_file_box"><a href="#"><img src="var/options/'+data.fileName+'" alt=""><\/a><a href="#" onclick="optionFileUpload.removeFile('+data.optionId+')" title="Remove file" \/>Remove file<\/a>';
82
+
83
+ Element.insert($('option_'+data.optionId+'_uploaded_file'), {after: template});
84
+ }
85
+ },
86
+ removeFile : function(optionId)
87
+ {
88
+ $('option_'+optionId+'_uploaded_file').value= '';
89
+ $('option_'+optionId+'_file').show();
90
+ $('option_'+optionId+'').show();
91
+
92
+ $('option_'+optionId+'_file_box').remove();
93
+ }
94
+ }
95
+ var optionTextCounter = {
96
+ count : function(field,cntfield,maxlimit){
97
+ if (field.value.length > maxlimit){
98
+ field.value = field.value.substring(0, maxlimit);
99
+ } else {
100
+ cntfield.innerHTML = maxlimit - field.value.length;
101
+ }
102
+ }
103
+ }
104
+
105
+ Product.Options = Class.create();
106
+ Product.Options.prototype = {
107
+ initialize : function(config) {
108
+ this.config = config;
109
+ this.reloadPrice();
110
+ document.observe("dom:loaded", this.reloadPrice.bind(this));
111
+ },
112
+ reloadPrice : function() {
113
+ var config = this.config;
114
+ var skipIds = [];
115
+ $$('body .product-custom-option').each(function(element){
116
+ var optionId = 0;
117
+ element.name.sub(/[0-9]+/, function(match){
118
+ optionId = parseInt(match[0], 10);
119
+ });
120
+ if (config[optionId]) {
121
+ var configOptions = config[optionId];
122
+ var curConfig = {price: 0};
123
+ if (element.type == 'checkbox' || element.type == 'radio') {
124
+ if (element.checked) {
125
+ if (typeof configOptions[element.getValue()] != 'undefined') {
126
+ curConfig = configOptions[element.getValue()];
127
+ }
128
+ }
129
+ } else if(element.hasClassName('datetime-picker') && !skipIds.include(optionId)) {
130
+ dateSelected = true;
131
+ $$('.product-custom-option[id^="options_' + optionId + '"]').each(function(dt){
132
+ if (dt.getValue() == '') {
133
+ dateSelected = false;
134
+ }
135
+ });
136
+ if (dateSelected) {
137
+ curConfig = configOptions;
138
+ skipIds[optionId] = optionId;
139
+ }
140
+ } else if(element.type == 'select-one' || element.type == 'select-multiple') {
141
+ if ('options' in element) {
142
+ $A(element.options).each(function(selectOption){
143
+ if ('selected' in selectOption && selectOption.selected) {
144
+ if (typeof(configOptions[selectOption.value]) != 'undefined') {
145
+ curConfig = configOptions[selectOption.value];
146
+ }
147
+ }
148
+ });
149
+ }
150
+ } else {
151
+ if (element.getValue().strip() != '') {
152
+ curConfig = configOptions;
153
+ }
154
+ }
155
+ if(element.type == 'select-multiple' && ('options' in element)) {
156
+ $A(element.options).each(function(selectOption) {
157
+ if (('selected' in selectOption) && typeof(configOptions[selectOption.value]) != 'undefined') {
158
+ if (selectOption.selected) {
159
+ curConfig = configOptions[selectOption.value];
160
+ } else {
161
+ curConfig = {price: 0};
162
+ }
163
+ optionsPrice.addCustomPrices(optionId + '-' + selectOption.value, curConfig);
164
+ optionsPrice.reload();
165
+ }
166
+ });
167
+ } else {
168
+ optionsPrice.addCustomPrices(element.id || optionId, curConfig);
169
+ optionsPrice.reload();
170
+ }
171
+ }
172
+ });
173
+ }
174
+ }
175
+ function validateOptionsCallback(elmId, result) {
176
+ var container = $(elmId).up('ul.options-list');
177
+ if (result == 'failed') {
178
+ container.removeClassName('validation-passed');
179
+ container.addClassName('validation-failed');
180
+ } else {
181
+ container.removeClassName('validation-failed');
182
+ container.addClassName('validation-passed');
183
+ }
184
+ }
185
+ var opConfig = new Product.Options(<?php echo $this->getJsonConfig() ?>);
186
+ //]]>
187
+ </script>
188
+ <dl>
189
+ <?php foreach($_options as $_option): ?>
190
+ <?php echo $this->getOptionHtml($_option) ?>
191
+ <?php endforeach; ?>
192
+ </dl>
193
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/js.phtml ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <script type="text/javascript">
28
+ //<![CDATA[
29
+ var DateOption = Class.create({
30
+
31
+ getDaysInMonth: function(month, year)
32
+ {
33
+ var curDate = new Date();
34
+ if (!month) {
35
+ month = curDate.getMonth();
36
+ }
37
+ if (2 == month && !year) { // leap year assumption for unknown year
38
+ return 29;
39
+ }
40
+ if (!year) {
41
+ year = curDate.getFullYear();
42
+ }
43
+ return 32 - new Date(year, month - 1, 32).getDate();
44
+ },
45
+
46
+ reloadMonth: function(event)
47
+ {
48
+ var selectEl = event.findElement();
49
+ var idParts = selectEl.id.split("_");
50
+ if (idParts.length != 3) {
51
+ return false;
52
+ }
53
+ var optionIdPrefix = idParts[0] + "_" + idParts[1];
54
+ var month = parseInt($(optionIdPrefix + "_month").value);
55
+ var year = parseInt($(optionIdPrefix + "_year").value);
56
+ var dayEl = $(optionIdPrefix + "_day");
57
+
58
+ var days = this.getDaysInMonth(month, year);
59
+
60
+ //remove days
61
+ for (var i = dayEl.options.length - 1; i >= 0; i--) {
62
+ if (dayEl.options[i].value > days) {
63
+ dayEl.remove(dayEl.options[i].index);
64
+ }
65
+ }
66
+
67
+ // add days
68
+ var lastDay = parseInt(dayEl.options[dayEl.options.length-1].value);
69
+ for (i = lastDay + 1; i <= days; i++) {
70
+ this.addOption(dayEl, i, i);
71
+ }
72
+ },
73
+
74
+ addOption: function(select, text, value)
75
+ {
76
+ var option = document.createElement('OPTION');
77
+ option.value = value;
78
+ option.text = text;
79
+
80
+ if (select.options.add) {
81
+ select.options.add(option);
82
+ } else {
83
+ select.appendChild(option);
84
+ }
85
+ }
86
+ });
87
+ dateOption = new DateOption();
88
+ //]]>
89
+ </script>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/date.phtml ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 $_option = $this->getOption() ?>
28
+ <?php $_optionId = $_option->getId() ?>
29
+ <dt><label<?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
30
+ <?php echo $this->getFormatedPrice() ?></dt>
31
+ <dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
32
+
33
+ <?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DATE_TIME
34
+ || $_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DATE): ?>
35
+
36
+ <?php echo $this->getDateHtml() ?>
37
+
38
+ <?php if (!$this->useCalendar()): ?>
39
+ <script type="text/javascript">
40
+ //<![CDATA[
41
+ Event.observe('options_<?php echo $_optionId ?>_month', 'change', dateOption.reloadMonth.bind(dateOption));
42
+ Event.observe('options_<?php echo $_optionId ?>_year', 'change', dateOption.reloadMonth.bind(dateOption));
43
+ //]]>
44
+ </script>
45
+ <?php endif; ?>
46
+
47
+ <?php endif; ?>
48
+
49
+ <?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_DATE_TIME
50
+ || $_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_TIME): ?>
51
+ <span class="time-picker"><?php echo $this->getTimeHtml() ?></span>
52
+ <?php endif; ?>
53
+
54
+ <input type="hidden" name="validate_datetime_<?php echo $_optionId ?>" class="validate-datetime-<?php echo $_optionId ?>" value="" />
55
+ <script type="text/javascript">
56
+ //<![CDATA[
57
+ <?php if ($_option->getIsRequire()): ?>
58
+ Validation.addAllThese(
59
+ [
60
+ ['validate-datetime-<?php echo $_optionId ?>', '<?php echo $this->jsQuoteEscape( Mage::helper('catalog')->__('This is a required option') )?>', function(v) {
61
+ var dateTimeParts = $$('.datetime-picker[id^="options_<?php echo $_optionId ?>"]');
62
+ for (var i=0; i < dateTimeParts.length; i++) {
63
+ if (dateTimeParts[i].value == "") return false;
64
+ }
65
+ return true;
66
+ }]
67
+ ]
68
+ );
69
+ <?php else: ?>
70
+ Validation.add(
71
+ 'validate-datetime-<?php echo $_optionId ?>',
72
+ '<?php echo $this->jsQuoteEscape( Mage::helper('catalog')->__('Field is not complete') )?>',
73
+ function(v) {
74
+ var dateTimeParts = $$('.datetime-picker[id^="options_<?php echo $_optionId ?>"]');
75
+ var hasWithValue = false, hasWithNoValue = false;
76
+ var pattern = /day_part$/i;
77
+ for (var i=0; i < dateTimeParts.length; i++) {
78
+ if (! pattern.test(dateTimeParts[i].id)) {
79
+ if (dateTimeParts[i].value === "") {
80
+ hasWithValue = true;
81
+ } else {
82
+ hasWithNoValue = true;
83
+ }
84
+ }
85
+ }
86
+ return hasWithValue ^ hasWithNoValue;
87
+ }
88
+ );
89
+ <?php endif; ?>
90
+ //]]>
91
+ </script>
92
+ </dd>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/default.phtml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 $_option = $this->getOption() ?>
28
+ <dt>
29
+ <label><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
30
+ </dt>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/file.phtml ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 $_option = $this->getOption(); ?>
28
+ <?php $_fileInfo = $this->getFileInfo(); ?>
29
+ <?php $_fileExists = $_fileInfo->hasData() ? true : false; ?>
30
+ <?php $_fileName = 'options_' . $_option->getId() . '_file'; ?>
31
+ <?php $_fieldNameAction = $_fileName . '_action'; ?>
32
+ <?php $_fieldValueAction = $_fileExists ? 'save_old' : 'save_new'; ?>
33
+ <?php $_fileNamed = $_fileName . '_name'; ?>
34
+ <?php $_rand = rand(); ?>
35
+
36
+ <script type="text/javascript">
37
+ //<![CDATA[
38
+ opFile<?php echo $_rand; ?> = {
39
+ initializeFile: function(inputBox) {
40
+ this.inputFile = inputBox.select('input[name="<?php echo $_fileName; ?>"]')[0];
41
+ this.inputFileAction = inputBox.select('input[name="<?php echo $_fieldNameAction; ?>"]')[0];
42
+ this.fileNameBox = inputBox.up('dd').select('.<?php echo $_fileNamed ?>')[0];
43
+ },
44
+
45
+ toggleFileChange: function(inputBox) {
46
+ this.initializeFile(inputBox);
47
+ inputBox.toggle();
48
+ this.fileChangeFlag = this.fileChangeFlag ? false : true;
49
+ if (!this.fileDeleteFlag) {
50
+ if (this.fileChangeFlag) {
51
+ this.inputFileAction.value = 'save_new';
52
+ this.inputFile.disabled = false;
53
+ } else {
54
+ this.inputFileAction.value = 'save_old';
55
+ this.inputFile.disabled = true;
56
+ }
57
+ }
58
+ },
59
+
60
+ toggleFileDelete: function(fileDeleteFlag, inputBox) {
61
+ this.initializeFile(inputBox);
62
+ this.fileDeleteFlag = fileDeleteFlag.checked ? true : false;
63
+ if (this.fileDeleteFlag) {
64
+ this.inputFileAction.value = '';
65
+ this.inputFile.disabled = true;
66
+ this.fileNameBox.setStyle({'text-decoration': 'line-through'});
67
+ } else {
68
+ this.inputFileAction.value = this.fileChangeFlag ? 'save_new' : 'save_old';
69
+ this.inputFile.disabled = (this.fileChangeFlag == 'save_old');
70
+ this.fileNameBox.setStyle({'text-decoration': 'none'});
71
+ }
72
+ }
73
+ };
74
+ //]]>
75
+ </script>
76
+
77
+ <dt><label <?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
78
+ <?php echo $this->getFormatedPrice() ?></dt>
79
+ <dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
80
+ <?php if ($_fileExists): ?>
81
+ <span class="<?php echo $_fileNamed ?>"><?php echo $_fileInfo->getTitle(); ?></span>
82
+ <a href="javascript:void(0)" class="label" onclick="opFile<?php echo $_rand; ?>.toggleFileChange($(this).next('.input-box'))">
83
+ <?php echo Mage::helper('catalog')->__('Change') ?>
84
+ </a>&nbsp;
85
+ <?php if (!$_option->getIsRequire()): ?>
86
+ <input type="checkbox" onclick="opFile<?php echo $_rand; ?>.toggleFileDelete($(this), $(this).next('.input-box'))" />
87
+ <span class="label"><?php echo Mage::helper('catalog')->__('Delete') ?></span>
88
+ <?php endif; ?>
89
+ <?php endif; ?>
90
+ <div class="input-box" <?php echo $_fileExists ? 'style="display:none"' : '' ?>>
91
+ <input type="file" name="<?php echo $_fileName; ?>" class="product-custom-option<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?>" <?php echo $_fileExists ? 'disabled="disabled"' : '' ?> onchange="opConfig.reloadPrice()" />
92
+ <input type="hidden" name="<?php echo $_fieldNameAction; ?>" value="<?php echo $_fieldValueAction; ?>" />
93
+ <?php if ($_option->getFileExtension()): ?>
94
+ <p class="no-margin"><?php echo Mage::helper('catalog')->__('Allowed file extensions to upload')?>: <strong><?php echo $_option->getFileExtension() ?></strong></p>
95
+ <?php endif; ?>
96
+ <?php if ($_option->getImageSizeX() > 0): ?>
97
+ <p class="no-margin"><?php echo Mage::helper('catalog')->__('Maximum image width')?>: <strong><?php echo $_option->getImageSizeX() ?> <?php echo Mage::helper('catalog')->__('px.')?></strong></p>
98
+ <?php endif; ?>
99
+ <?php if ($_option->getImageSizeY() > 0): ?>
100
+ <p class="no-margin"><?php echo Mage::helper('catalog')->__('Maximum image height')?>: <strong><?php echo $_option->getImageSizeY() ?> <?php echo Mage::helper('catalog')->__('px.')?></strong></p>
101
+ <?php endif; ?>
102
+ </div>
103
+ </dd>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/select.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@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
+
28
+ <?php /* @var $this Mage_Catalog_Block_Product_View_Options_Type_Select */ ?>
29
+ <?php $_option = $this->getOption() ?>
30
+ <dt><label<?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label></dt>
31
+ <dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
32
+ <div class="input-box">
33
+ <?php echo $this->getValuesHtml() ?>
34
+ <?php if ($_option->getIsRequire()): ?>
35
+ <?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_RADIO || $_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_CHECKBOX): ?>
36
+ <span id="options-<?php echo $_option->getId() ?>-container"></span>
37
+ <?php endif; ?>
38
+ <?php endif;?>
39
+ </div>
40
+ </dd>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/type/text.phtml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 $_option = $this->getOption(); ?>
28
+ <dt><label<?php if ($_option->getIsRequire()) echo ' class="required"' ?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo $this->escapeHtml($_option->getTitle()) ?></label>
29
+ <?php echo $this->getFormatedPrice() ?></dt>
30
+ <dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
31
+ <div class="input-box">
32
+ <?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_FIELD): ?>
33
+ <input type="text" onchange="opConfig.reloadPrice()" id="options_<?php echo $_option->getId() ?>_text" class="input-text<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?> <?php echo $_option->getMaxCharacters() ? ' validate-length maximum-length-'.$_option->getMaxCharacters() : '' ?> product-custom-option" name="options[<?php echo $_option->getId() ?>]" value="<?php echo $this->escapeHtml($this->getDefaultValue()) ?>" />
34
+ <?php elseif ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_AREA): ?>
35
+ <textarea id="options_<?php echo $_option->getId() ?>_text" onchange="opConfig.reloadPrice()" class="<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?> <?php echo $_option->getMaxCharacters() ? ' validate-length maximum-length-'.$_option->getMaxCharacters() : '' ?> product-custom-option" name="options[<?php echo $_option->getId() ?>]" rows="5" cols="25"><?php echo $this->escapeHtml($this->getDefaultValue()) ?></textarea>
36
+ <?php endif; ?>
37
+ <?php if ($_option->getMaxCharacters()): ?>
38
+ <p class="note"><?php echo Mage::helper('catalog')->__('Maximum number of characters:')?> <strong><?php echo $_option->getMaxCharacters() ?></strong></p>
39
+ <?php endif; ?>
40
+ </div>
41
+ </dd>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/wrapper.phtml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="product-options" id="product-options-wrapper">
28
+ <?php echo $this->getChildHtml('', true, true);?>
29
+ <?php if ($this->hasRequiredOptions()):?>
30
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
31
+ <?php endif;?>
32
+ </div>
33
+ <script type="text/javascript">decorateGeneric($$('#product-options-wrapper dl'), ['last']);</script>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/options/wrapper/bottom.phtml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="product-options-bottom">
28
+ <?php echo $this->getChildHtml('', true, true);?>
29
+ </div>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/price.phtml ADDED
@@ -0,0 +1,429 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2012 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
+
28
+ <?php
29
+ /**
30
+ * Template for displaying product price in different places (products grid, product view page etc)
31
+ *
32
+ * @see Mage_Catalog_Block_Product_Abstract
33
+ */
34
+ ?>
35
+ <?php
36
+ $_coreHelper = $this->helper('core');
37
+ $_weeeHelper = $this->helper('weee');
38
+ $_taxHelper = $this->helper('tax');
39
+ /* @var $_coreHelper Mage_Core_Helper_Data */
40
+ /* @var $_weeeHelper Mage_Weee_Helper_Data */
41
+ /* @var $_taxHelper Mage_Tax_Helper_Data */
42
+
43
+ $_product = $this->getProduct();
44
+ $_storeId = $_product->getStoreId();
45
+ $_id = $_product->getId();
46
+ $_weeeSeparator = '';
47
+ $_simplePricesTax = ($_taxHelper->displayPriceIncludingTax() || $_taxHelper->displayBothPrices());
48
+ $_minimalPriceValue = $_product->getMinimalPrice();
49
+ $_minimalPrice = $_taxHelper->getPrice($_product, $_minimalPriceValue, $_simplePricesTax);
50
+ ?>
51
+
52
+ <?php if (!$_product->isGrouped()): ?>
53
+ <?php $_weeeTaxAmount = $_weeeHelper->getAmountForDisplay($_product); ?>
54
+ <?php if ($_weeeHelper->typeOfDisplay($_product, array(Mage_Weee_Model_Tax::DISPLAY_INCL_DESCR, Mage_Weee_Model_Tax::DISPLAY_EXCL_DESCR_INCL, 4))): ?>
55
+ <?php $_weeeTaxAmount = $_weeeHelper->getAmount($_product); ?>
56
+ <?php $_weeeTaxAttributes = $_weeeHelper->getProductWeeeAttributesForDisplay($_product); ?>
57
+ <?php endif; ?>
58
+ <?php $_weeeTaxAmountInclTaxes = $_weeeTaxAmount; ?>
59
+ <?php if ($_weeeHelper->isTaxable() && !$_taxHelper->priceIncludesTax($_storeId)): ?>
60
+ <?php $_attributes = $_weeeHelper->getProductWeeeAttributesForRenderer($_product, null, null, null, true); ?>
61
+ <?php $_weeeTaxAmountInclTaxes = $_weeeHelper->getAmountInclTaxes($_attributes); ?>
62
+ <?php endif; ?>
63
+
64
+ <div class="price-box">
65
+ <?php $_price = $_taxHelper->getPrice($_product, $_product->getPrice()) ?>
66
+ <?php $_regularPrice = $_taxHelper->getPrice($_product, $_product->getPrice(), $_simplePricesTax) ?>
67
+ <?php $_finalPrice = $_taxHelper->getPrice($_product, $_product->getFinalPrice()) ?>
68
+ <?php $_finalPriceInclTax = $_taxHelper->getPrice($_product, $_product->getFinalPrice(), true) ?>
69
+ <?php $_weeeDisplayType = $_weeeHelper->getPriceDisplayType(); ?>
70
+ <?php if ($_finalPrice >= $_price): ?>
71
+ <?php if ($_taxHelper->displayBothPrices()): ?>
72
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
73
+ <span class="price-excluding-tax">
74
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
75
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
76
+ <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, false) ?>
77
+ </span>
78
+ </span>
79
+ <span class="price-including-tax">
80
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
81
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
82
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
83
+ </span>
84
+ </span>
85
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
86
+ <span class="price-excluding-tax">
87
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
88
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
89
+ <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, false) ?>
90
+ </span>
91
+ </span>
92
+ <span class="price-including-tax">
93
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
94
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
95
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
96
+ </span>
97
+ <span class="weee">(
98
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
99
+ <?php echo $_weeeSeparator; ?>
100
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
101
+ <?php $_weeeSeparator = ' + '; ?>
102
+ <?php endforeach; ?>
103
+ )</span>
104
+ </span>
105
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
106
+ <span class="price-excluding-tax">
107
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
108
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
109
+ <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, false) ?>
110
+ </span>
111
+ </span>
112
+ <span class="price-including-tax">
113
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
114
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
115
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
116
+ </span>
117
+ <span class="weee">(
118
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
119
+ <?php echo $_weeeSeparator; ?>
120
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>
121
+ <?php $_weeeSeparator = ' + '; ?>
122
+ <?php endforeach; ?>
123
+ )</span>
124
+ </span>
125
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
126
+ <span class="price-excluding-tax">
127
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
128
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
129
+ <?php echo $_coreHelper->currency($_price, true, false) ?>
130
+ </span>
131
+ </span>
132
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
133
+ <span class="weee">
134
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
135
+ </span>
136
+ <?php endforeach; ?>
137
+ <span class="price-including-tax">
138
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
139
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
140
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
141
+ </span>
142
+ </span>
143
+ <?php else: ?>
144
+ <span class="price-excluding-tax">
145
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
146
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
147
+ <?php if ($_finalPrice == $_price): ?>
148
+ <?php echo $_coreHelper->currency($_price, true, false) ?>
149
+ <?php else: ?>
150
+ <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>
151
+ <?php endif; ?>
152
+ </span>
153
+ </span>
154
+ <span class="price-including-tax">
155
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
156
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
157
+ <?php echo $_coreHelper->currency($_finalPriceInclTax, true, false) ?>
158
+ </span>
159
+ </span>
160
+ <?php endif; ?>
161
+ <?php else: ?>
162
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
163
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
164
+ <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>
165
+ </span>
166
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
167
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
168
+ <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>
169
+ </span>
170
+ <span class="weee">(
171
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
172
+ <?php echo $_weeeSeparator; ?>
173
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
174
+ <?php $_weeeSeparator = ' + '; ?>
175
+ <?php endforeach; ?>
176
+ )</span>
177
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
178
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
179
+ <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>
180
+ </span>
181
+ <span class="weee">(
182
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
183
+ <?php echo $_weeeSeparator; ?>
184
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>
185
+ <?php $_weeeSeparator = ' + '; ?>
186
+ <?php endforeach; ?>
187
+ )</span>
188
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
189
+ <span class="regular-price"><?php echo $_coreHelper->currency($_price,true,true) ?></span><br />
190
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
191
+ <span class="weee">
192
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
193
+ </span>
194
+ <?php endforeach; ?>
195
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
196
+ <?php echo $_coreHelper->currency($_price + $_weeeTaxAmount, true, true) ?>
197
+ </span>
198
+ <?php else: ?>
199
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
200
+ <?php if ($_finalPrice == $_price): ?>
201
+ <?php echo $_coreHelper->currency($_price, true, true) ?>
202
+ <?php else: ?>
203
+ <?php echo $_coreHelper->currency($_finalPrice, true, true) ?>
204
+ <?php endif; ?>
205
+ </span>
206
+ <?php endif; ?>
207
+ <?php endif; ?>
208
+ <?php else: /* if ($_finalPrice == $_price): */ ?>
209
+ <?php $_originalWeeeTaxAmount = $_weeeHelper->getOriginalAmount($_product); ?>
210
+
211
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
212
+ <p class="old-price">
213
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
214
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
215
+ <?php echo $_coreHelper->currency($_regularPrice + $_originalWeeeTaxAmount, true, false) ?>
216
+ </span>
217
+ </p>
218
+
219
+ <?php if ($_taxHelper->displayBothPrices()): ?>
220
+ <div class="sale-label sale-top-left"></div>
221
+ <p class="-price">
222
+ <span class="price-label"><?php echo $this->__(' Price:') ?></span>
223
+ <span class="price-excluding-tax">
224
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
225
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
226
+ <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmount, true, false) ?>
227
+ </span>
228
+ </span>
229
+ <span class="price-including-tax">
230
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
231
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
232
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
233
+ </span>
234
+ </span>
235
+ </p>
236
+ <?php else: ?>
237
+ <p class="-price">
238
+ <span class="price-label"><?php echo $this->__(' Price:') ?></span>
239
+ <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
240
+ <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmountInclTaxes, true, false) ?>
241
+ </span>
242
+ </p>
243
+ <?php endif; ?>
244
+
245
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
246
+ <p class="old-price">
247
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
248
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
249
+ <?php echo $_coreHelper->currency($_regularPrice + $_originalWeeeTaxAmount, true, false) ?>
250
+ </span>
251
+ </p>
252
+
253
+ <p class="-price">
254
+ <span class="price-label"><?php echo $this->__(' Price:') ?></span>
255
+ <span class="price-excluding-tax">
256
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
257
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
258
+ <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmount, true, false) ?>
259
+ </span>
260
+ </span>
261
+ <span class="weee">(
262
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
263
+ <?php echo $_weeeSeparator; ?>
264
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
265
+ <?php $_weeeSeparator = ' + '; ?>
266
+ <?php endforeach; ?>
267
+ )</span>
268
+ <span class="price-including-tax">
269
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
270
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
271
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
272
+ </span>
273
+ </span>
274
+ </p>
275
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
276
+ <p class="old-price">
277
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
278
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
279
+ <?php echo $_coreHelper->currency($_regularPrice + $_originalWeeeTaxAmount, true, false) ?>
280
+ </span>
281
+ </p>
282
+
283
+ <p class="-price">
284
+ <span class="price-label"><?php echo $this->__(' Price:') ?></span>
285
+ <span class="price-excluding-tax">
286
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
287
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
288
+ <?php echo $_coreHelper->currency($_finalPrice + $_weeeTaxAmount, true, false) ?>
289
+ </span>
290
+ </span>
291
+ <span class="weee">(
292
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
293
+ <?php echo $_weeeSeparator; ?>
294
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount() + $_weeeTaxAttribute->getTaxAmount(), true, true); ?>
295
+ <?php $_weeeSeparator = ' + '; ?>
296
+ <?php endforeach; ?>
297
+ )</span>
298
+ <span class="price-including-tax">
299
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
300
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
301
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
302
+ </span>
303
+ </span>
304
+ </p>
305
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
306
+ <p class="old-price">
307
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
308
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
309
+ <?php echo $_coreHelper->currency($_regularPrice, true, false) ?>
310
+ </span>
311
+ </p>
312
+
313
+ <p class="-price">
314
+ <span class="price-label"><?php echo $this->__(' Price:') ?></span>
315
+ <span class="price-excluding-tax">
316
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
317
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
318
+ <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>
319
+ </span>
320
+ </span>
321
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
322
+ <span class="weee">
323
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
324
+ </span>
325
+ <?php endforeach; ?>
326
+ <span class="price-including-tax">
327
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
328
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
329
+ <?php echo $_coreHelper->currency($_finalPriceInclTax + $_weeeTaxAmountInclTaxes, true, false) ?>
330
+ </span>
331
+ </span>
332
+ </p>
333
+ <?php else: // excl. ?>
334
+ <p class="old-price">
335
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
336
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
337
+ <?php echo $_coreHelper->currency($_regularPrice, true, false) ?>
338
+ </span>
339
+ </p>
340
+
341
+ <?php if ($_taxHelper->displayBothPrices()): ?>
342
+ <p class="-price">
343
+ <span class="price-label"><?php echo $this->__(' Price:') ?></span>
344
+ <span class="price-excluding-tax">
345
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
346
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
347
+ <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>
348
+ </span>
349
+ </span>
350
+ <span class="price-including-tax">
351
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
352
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
353
+ <?php echo $_coreHelper->currency($_finalPriceInclTax, true, false) ?>
354
+ </span>
355
+ </span>
356
+ </p>
357
+ <?php else: ?>
358
+ <p class="-price">
359
+ <span class="price-label"><?php echo $this->__(' Price:') ?></span>
360
+ <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
361
+ <?php echo $_coreHelper->currency($_finalPrice, true, false) ?>
362
+ </span>
363
+ </p>
364
+ <?php endif; ?>
365
+ <?php endif; ?>
366
+
367
+ <?php endif; /* if ($_finalPrice == $_price): */ ?>
368
+
369
+ <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue && $_minimalPriceValue < $_product->getFinalPrice()): ?>
370
+
371
+ <?php $_minimalPriceDisplayValue = $_minimalPrice; ?>
372
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, array(0, 1, 4))): ?>
373
+ <?php $_minimalPriceDisplayValue = $_minimalPrice + $_weeeTaxAmount; ?>
374
+ <?php endif; ?>
375
+
376
+ <?php if ($this->getUseLinkForAsLowAs()):?>
377
+ <a href="<?php echo $_product->getProductUrl(); ?>" class="minimal-price-link">
378
+ <?php else:?>
379
+ <span class="minimal-price-link">
380
+ <?php endif?>
381
+ <span class="label"><?php echo $this->__('As low as:') ?></span>
382
+ <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
383
+ <?php echo $_coreHelper->currency($_minimalPriceDisplayValue, true, false) ?>
384
+ </span>
385
+ <?php if ($this->getUseLinkForAsLowAs()):?>
386
+ </a>
387
+ <?php else:?>
388
+ </span>
389
+ <?php endif?>
390
+ <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): */ ?>
391
+ </div>
392
+
393
+ <?php else: /* if (!$_product->isGrouped()): */ ?>
394
+ <?php
395
+ $_exclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue);
396
+ $_inclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue, true);
397
+ ?>
398
+ <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue): ?>
399
+ <div class="price-box">
400
+ <p class="minimal-price">
401
+ <span class="price-label"><?php //echo $this->__('Starting at:') ?></span>
402
+ <?php if ($_taxHelper->displayBothPrices()): ?>
403
+ <span class="price-excluding-tax">
404
+ <span class="label"><?php echo $this->helper('tax')->__('Excl. Tax:') ?></span>
405
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
406
+ <?php echo $_coreHelper->currency($_exclTax, true, false) ?>
407
+ </span>
408
+ </span>
409
+ <span class="price-including-tax">
410
+ <span class="label"><?php echo $this->helper('tax')->__('Incl. Tax:') ?></span>
411
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
412
+ <?php echo $_coreHelper->currency($_inclTax, true, false) ?>
413
+ </span>
414
+ </span>
415
+ <?php else: ?>
416
+ <?php
417
+ $_showPrice = $_inclTax;
418
+ if (!$_taxHelper->displayPriceIncludingTax()) {
419
+ $_showPrice = $_exclTax;
420
+ }
421
+ ?>
422
+ <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
423
+ <?php echo $_coreHelper->currency($_showPrice, true, false) ?>
424
+ </span>
425
+ <?php endif; ?>
426
+ </p>
427
+ </div>
428
+ <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice): */ ?>
429
+ <?php endif; /* if (!$_product->isGrouped()): */ ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/price_clone.phtml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 $_product = $this->getProduct() ?>
28
+ <?php echo $this->getPriceHtml($_product, false, '_clone') ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/tierprices.phtml ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
28
+ <?php
29
+ /**
30
+ * @see Mage_Catalog_Block_Product_View
31
+ */
32
+ $_product = $this->getProduct();
33
+ $_tierPrices = $this->getTierPrices();
34
+ $_finalPriceInclTax = $this->helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);
35
+
36
+ /** @var $_catalogHelper Mage_Catalog_Helper_Data */
37
+ $_catalogHelper = Mage::helper('catalog');
38
+
39
+ $_weeeTaxAmount = Mage::helper('weee')->getAmountForDisplay($_product);
40
+ if (Mage::helper('weee')->typeOfDisplay($_product, array(1,2,4))) {
41
+ $_weeeTaxAttributes = Mage::helper('weee')->getProductWeeeAttributesForDisplay($_product);
42
+ }
43
+
44
+ ?>
45
+ <?php if (count($_tierPrices) > 0): ?>
46
+ <ul class="<?php echo ($this->getInGrouped() ? 'tier-prices-grouped product-pricing-grouped' : 'tier-prices product-pricing'); ?>">
47
+ <?php if ($this->getInGrouped()): ?>
48
+ <?php $_tierPrices = $this->getTierPrices($_product); ?>
49
+ <?php endif; ?>
50
+ <?php Mage::helper('weee')->processTierPrices($_product, $_tierPrices); ?>
51
+ <?php foreach ($_tierPrices as $_index => $_price): ?>
52
+ <li class="tier-price tier-<?php echo $_index; ?>">
53
+ <?php if ($_catalogHelper->canApplyMsrp($_product)): ?>
54
+ <?php if ($this->getInGrouped()): ?>
55
+ <?php echo $this->__('Buy %1$s for', $_price['price_qty']) ?>:
56
+ <?php else: ?>
57
+ <?php echo $this->__('Buy %1$s', $_price['price_qty']) ?>
58
+ <?php endif; ?>
59
+ <?php else: ?>
60
+
61
+ <?php if ($this->helper('tax')->displayBothPrices()): ?>
62
+ <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
63
+ <?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price_incl_weee_only'], $_price['formated_price_incl_weee']) ?>
64
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
65
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
66
+ <?php if ($_weeeTaxAttributes): ?>
67
+ (<small>
68
+ <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
69
+ <?php $separator = ' + '; foreach ($_weeeTaxAttributes as $_attribute): ?>
70
+ <?php echo $separator; ?>
71
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
72
+ <?php endforeach; ?>
73
+ </small>)
74
+ <?php endif; ?>
75
+ <?php echo $this->__('each') ?>
76
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
77
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
78
+ <?php if ($_weeeTaxAttributes): ?>
79
+ (<small>
80
+ <?php echo $this->__('%1$s incl tax.', $_price['formated_price_incl_weee']); ?>
81
+ <?php $separator = ' + '; foreach ($_weeeTaxAttributes as $_attribute): ?>
82
+ <?php echo $separator; ?>
83
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
84
+ <?php endforeach; ?>
85
+ </small>)
86
+ <?php endif; ?>
87
+ <?php echo $this->__('each') ?>
88
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
89
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
90
+ <?php if ($_weeeTaxAttributes): ?>
91
+ (<small>
92
+ <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
93
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
94
+ <?php endforeach; ?>
95
+ <?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee']); ?>
96
+ </small>)
97
+ <?php endif; ?>
98
+ <?php echo $this->__('each') ?>
99
+ <?php else: ?>
100
+ <?php echo $this->__('Buy %1$s for %2$s (%3$s incl. tax) each', $_price['price_qty'], $_price['formated_price'], $_price['formated_price_incl_tax']) ?>
101
+ <?php endif; ?>
102
+ <?php else: ?>
103
+ <?php if ($this->helper('tax')->displayPriceIncludingTax()): ?>
104
+ <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
105
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee']) ?>
106
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
107
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
108
+ <?php if ($_weeeTaxAttributes): ?>
109
+ (<small>
110
+ <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
111
+ <?php echo $separator; ?>
112
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
113
+ <?php $separator = ' + '; endforeach; ?>
114
+ </small>)
115
+ <?php endif; ?>
116
+ <?php echo $this->__('each') ?>
117
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
118
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee']); ?>
119
+ <?php if ($_weeeTaxAttributes): ?>
120
+ (<small>
121
+ <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
122
+ <?php echo $separator; ?>
123
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
124
+ <?php $separator = ' + '; endforeach; ?>
125
+ </small>)
126
+ <?php endif; ?>
127
+ <?php echo $this->__('each') ?>
128
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
129
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_tax']); ?>
130
+ <?php if ($_weeeTaxAttributes): ?>
131
+ (<small>
132
+ <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
133
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
134
+ <?php endforeach; ?>
135
+ <?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee']); ?>
136
+ </small>)
137
+ <?php endif; ?>
138
+ <?php echo $this->__('each') ?>
139
+ <?php else: ?>
140
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_tax']) ?>
141
+ <?php endif; ?>
142
+ <?php else: ?>
143
+ <?php if (Mage::helper('weee')->typeOfDisplay($_product, 0)): ?>
144
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price_incl_weee_only']) ?>
145
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 1)): ?>
146
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
147
+ <?php if ($_weeeTaxAttributes): ?>
148
+ (<small>
149
+ <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
150
+ <?php echo $separator; ?>
151
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
152
+ <?php $separator = ' + '; endforeach; ?>
153
+ </small>)
154
+ <?php endif; ?>
155
+ <?php echo $this->__('each') ?>
156
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 4)): ?>
157
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price_incl_weee_only']); ?>
158
+ <?php if ($_weeeTaxAttributes): ?>
159
+ (<small>
160
+ <?php $separator = ''; foreach ($_weeeTaxAttributes as $_attribute): ?>
161
+ <?php echo $separator; ?>
162
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()+$_attribute->getTaxAmount()); ?>
163
+ <?php $separator = ' + '; endforeach; ?>
164
+ </small>)
165
+ <?php endif; ?>
166
+ <?php echo $this->__('each') ?>
167
+ <?php elseif(Mage::helper('weee')->typeOfDisplay($_product, 2)): ?>
168
+ <?php echo $this->__('Buy %1$s for %2$s', $_price['price_qty'], $_price['formated_price']); ?>
169
+ <?php if ($_weeeTaxAttributes): ?>
170
+ (<small>
171
+ <?php foreach ($_weeeTaxAttributes as $_attribute): ?>
172
+ <?php echo $_attribute->getName(); ?>: <?php echo Mage::helper('core')->currency($_attribute->getAmount()); ?>
173
+ <?php endforeach; ?>
174
+ <?php echo $this->__('Total incl. Tax: %1$s', $_price['formated_price_incl_weee_only']); ?>
175
+ </small>)
176
+ <?php endif; ?>
177
+ <?php echo $this->__('each') ?>
178
+ <?php else: ?>
179
+ <?php echo $this->__('Buy %1$s for %2$s each', $_price['price_qty'], $_price['formated_price']) ?>
180
+ <?php endif; ?>
181
+ <?php endif; ?>
182
+ <?php endif; ?>
183
+
184
+ <?php endif; // Can apply MSRP ?>
185
+
186
+ <?php if (!$this->getInGrouped()): ?>
187
+ <?php if(($_product->getPrice() == $_product->getFinalPrice() && $_product->getPrice() > $_price['price'])
188
+ || ($_product->getPrice() != $_product->getFinalPrice() && $_product->getFinalPrice() > $_price['price'])): ?>
189
+ <?php echo $this->__('and') ?>&nbsp;<strong class="benefit"><?php echo $this->__('save')?>&nbsp;<span class="percent tier-<?php echo $_index;?>"><?php echo $_price['savePercent']?></span>%
190
+ <?php endif ?></strong>
191
+ <?php endif; ?>
192
+
193
+ <?php if ($_catalogHelper->isShowPriceOnGesture($_product)):?>
194
+ <?php $popupId = 'msrp-popup-' . $_product->getId() . $this->helper('core')->getRandomString(20); ?>
195
+ <a href="#" id="<?php echo($popupId);?>"><?php echo $this->__('Click for price'); ?></a>
196
+ <script type="text/javascript">
197
+ <?php
198
+ $addToCartUrl = $this->getProduct()->isSalable()
199
+ ? $this->getAddToCartUrl($_product, array('qty' => $_price['price_qty']))
200
+ : '';
201
+ ?>
202
+ <?php if (!$this->getInGrouped()): ?>
203
+ var newLink = {
204
+ url: "<?php echo $addToCartUrl; ?>",
205
+ qty: "<?php echo $_price['price_qty']?>"
206
+ };
207
+ <?php else: ?>
208
+ var newLink = {
209
+ url: "<?php echo $addToCartUrl; ?>",
210
+ notUseForm: true
211
+ };
212
+ <?php endif ?>
213
+ Catalog.Map.addHelpLink(
214
+ $('<?php echo $popupId ?>'),
215
+ "<?php echo $_product->getName() ?>",
216
+ <?php echo json_encode($_price['real_price_html']) ?>,
217
+ "<?php echo $this->helper('core')->currency($_product->getMsrp(),true,false) ?>",
218
+ newLink
219
+ );
220
+ </script>
221
+ <?php else: ?>
222
+ <span class="msrp-price-hide-message">
223
+ <?php echo $_catalogHelper->getMsrpPriceMessage($_product) ?>
224
+ </span>
225
+ <?php endif; ?>
226
+
227
+
228
+ </li>
229
+
230
+ <?php endforeach ?>
231
+ </ul>
232
+ <?php endif;?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/configurable.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@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
+ * @deprecated after 1.4.1.0 in favor of default.phtml
30
+ */
31
+ ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/default.phtml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 /* @var $this Mage_Catalog_Block_Product_View_Abstract */?>
28
+ <?php $_product = $this->getProduct() ?>
29
+
30
+ <?php if ($this->displayProductStockStatus()): ?>
31
+
32
+ <?php endif; ?>
33
+ <?php echo $this->getChildHtml('product_type_data_extra') ?>
34
+
app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/grouped.phtml ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /**
28
+ * Grouped product data template
29
+ *
30
+ * @see Mage_Catalog_Block_Product_View_Media
31
+ * @see Mage_Catalog_Block_Product_View_Type_Grouped
32
+ */
33
+ ?>
34
+ <?php $this->setPreconfiguredValue(); ?>
35
+ <?php $_product = $this->getProduct(); ?>
36
+ <?php $_associatedProducts = $this->getAssociatedProducts(); ?>
37
+ <?php $_hasAssociatedProducts = count($_associatedProducts) > 0; ?>
38
+ <?php if ($this->displayProductStockStatus()): ?>
39
+ <?php if ($_product->isAvailable() && $_hasAssociatedProducts): ?>
40
+ <p class="availability in-stock"><?php echo $this->__('Availability:') ?> <span><?php echo $this->__('In stock') ?></span></p>
41
+ <?php else: ?>
42
+ <p class="availability out-of-stock"><?php echo $this->__('Availability:') ?> <span><?php echo $this->__('Out of stock') ?></span></p>
43
+ <?php endif; ?>
44
+ <?php endif; ?>
45
+ <?php echo $this->getChildHtml('product_type_data_extra') ?>
46
+ <table class="data-table grouped-items-table" id="super-product-table">
47
+ <col />
48
+ <col />
49
+ <col width="1" />
50
+ <thead>
51
+ <tr>
52
+ <th><?php echo $this->__('Product Name') ?></th>
53
+ <?php if ($this->getCanShowProductPrice($_product)): ?>
54
+ <th class="a-right"><?php echo $this->__('Price') ?></th>
55
+ <?php endif; ?>
56
+ <?php if ($_product->isSaleable()): ?>
57
+ <th class="a-center"><?php echo $this->__('Qty') ?></th>
58
+ <?php endif; ?>
59
+ </tr>
60
+ </thead>
61
+ <tbody>
62
+ <?php if ($_hasAssociatedProducts): ?>
63
+ <?php foreach ($_associatedProducts as $_item): ?>
64
+ <?php $_finalPriceInclTax = $this->helper('tax')->getPrice($_item, $_item->getFinalPrice(), true) ?>
65
+ <tr>
66
+ <td><?php echo $this->escapeHtml($_item->getName()) ?></td>
67
+ <?php if ($this->getCanShowProductPrice($_product)): ?>
68
+ <td class="a-right">
69
+ <?php if ($this->getCanShowProductPrice($_item)): ?>
70
+ <?php echo $this->getPriceHtml($_item, true) ?>
71
+ <?php echo $this->getTierPriceHtml($_item) ?>
72
+ <?php endif; ?>
73
+ </td>
74
+ <?php endif; ?>
75
+ <?php if ($_product->isSaleable()): ?>
76
+ <td class="a-center">
77
+ <?php if ($_item->isSaleable()) : ?>
78
+ <input type="text" name="super_group[<?php echo $_item->getId() ?>]" maxlength="12" value="<?php echo $_item->getQty()*1 ?>" title="<?php echo $this->__('Qty') ?>" class="input-text qty" />
79
+ <?php else: ?>
80
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
81
+ <?php endif; ?>
82
+ </td>
83
+ <?php endif; ?>
84
+ </tr>
85
+ <?php endforeach; ?>
86
+ <?php else: ?>
87
+ <tr>
88
+ <td colspan="<?php if ($_product->isSaleable()): ?>4<?php else : ?>3<?php endif; ?>"><?php echo $this->__('No options of this product are available.') ?></td>
89
+ </tr>
90
+ <?php endif; ?>
91
+ </tbody>
92
+ </table>
93
+ <script type="text/javascript">decorateTable('super-product-table')</script>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/simple.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@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
+ * @deprecated after 1.4.1.0 in favor of default.phtml
30
+ */
31
+ ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/view/type/virtual.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@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
+ * @deprecated after 1.4.1.0 in favor of default.phtml
30
+ */
31
+ ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/widget/link/link_block.phtml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <span class="widget widget-product-link"><a <?php echo $this->getLinkAttributes() ?>><span><?php echo $this->escapeHtml($this->getAnchorText()) ?></span></a></span>
app/design/frontend/Kartparadigm/default/template/catalog/product/widget/link/link_inline.phtml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <span class="widget widget-product-link-inline"><a <?php echo $this->getLinkAttributes() ?>><span><?php echo $this->escapeHtml($this->getAnchorText()) ?></span></a></span>
app/design/frontend/Kartparadigm/default/template/catalog/product/widget/new/content/new_grid.phtml ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <head>
2
+ <!-- Important Owl stylesheet -->
3
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
4
+
5
+ <!-- Default Theme -->
6
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
7
+
8
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
9
+
10
+ <!-- Include js plugin -->
11
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
12
+ <script>
13
+ var jslide=$.noConflict();
14
+ <?php
15
+ $layout=$this->getLayout()->getBlock('root')->getTemplate();
16
+ $pos = strripos($layout, "2columns");
17
+
18
+ if ($pos === false) :?>
19
+ <?php $pos = strripos($layout, "3columns");
20
+ if ($pos === false) :?> /* if it is 2colums */
21
+ jslide(document).ready(function() {
22
+ jslide("#prev").css("display","none");
23
+ jslide("#next").css("display","block");
24
+
25
+ var owl = jslide("#owl-demo");
26
+
27
+ owl.owlCarousel({
28
+ items : 4,
29
+ pagination : false,
30
+ navigation : false,
31
+ slideSpeed :600,
32
+ itemsDesktop : [1024,3], //5 items between 1000px and 901px
33
+ itemsDesktopSmall : [900,2], // betweem 900px and 601px
34
+ itemsTablet: [600,1], //2 items between 600 and 0
35
+ itemsMobile : [479,1] // itemsMobile disabled - inherit from itemsTablet option
36
+ });
37
+ jslide(".next").click(function(){
38
+ owl.trigger('owl.next');
39
+ })
40
+ jslide(".prev").click(function(){
41
+ owl.trigger('owl.prev');
42
+ })
43
+ });
44
+ <?php else: ?>/* if it is 3colums */
45
+ jslide(document).ready(function() {
46
+ jslide("#prev").css("display","none");
47
+ jslide("#next").css("display","block");
48
+
49
+ var owl = jslide("#owl-demo");
50
+
51
+ owl.owlCarousel({
52
+ items : 2,
53
+ pagination : false,
54
+ navigation : false,
55
+ slideSpeed :600,
56
+
57
+ itemsDesktopSmall : [900,1], // betweem 900px and 601px
58
+ itemsTablet: [600,1], //2 items between 600 and 0
59
+ itemsMobile : [479,1] // itemsMobile disabled - inherit from itemsTablet option
60
+ });
61
+ jslide(".next").click(function(){
62
+ owl.trigger('owl.next');
63
+ })
64
+ jslide(".prev").click(function(){
65
+ owl.trigger('owl.prev');
66
+ })
67
+ });
68
+ <?php endif; ?>
69
+ <?php else: ?>
70
+ jslide(document).ready(function() {
71
+ jslide("#prev").css("display","none");
72
+ jslide("#next").css("display","block");
73
+
74
+ var owl = jslide("#owl-demo");
75
+
76
+ owl.owlCarousel({
77
+ items : 3,
78
+ pagination : false,
79
+ navigation : false,
80
+ slideSpeed :600,
81
+ itemsDesktop : [1024,2], //5 items between 1000px and 901px
82
+ itemsDesktopSmall : [900,2], // betweem 900px and 601px
83
+ itemsTablet: [600,1], //2 items between 600 and 0
84
+ itemsMobile : [479,1] // itemsMobile disabled - inherit from itemsTablet option
85
+ });
86
+ jslide(".next").click(function(){
87
+ owl.trigger('owl.next');
88
+ })
89
+ jslide(".prev").click(function(){
90
+ owl.trigger('owl.prev');
91
+ })
92
+ });
93
+
94
+ <?php endif; ?>
95
+ </script>
96
+ <style>
97
+
98
+ /* new products widget styles */
99
+ .widget-new-products .products-grid .product-image, .widget-new-products .products-list .product-image {
100
+ width: 252px;
101
+ height: 252px;
102
+ }
103
+ .widget .widget-title h2 {
104
+ margin: 0px 0px 0px 15px;
105
+ padding: 0px 0px 28px;
106
+ font-family: Arial, Helvetica;
107
+ font-size: 24px;
108
+ font-weight: 400;
109
+ text-transform: uppercase;
110
+ letter-spacing: -1.2px;
111
+ line-height: 21px;
112
+ color: rgba(0, 0, 0, 0.75);
113
+ }
114
+ /* new products widget styles */
115
+ .customNavigation{
116
+ text-align: right;
117
+ }
118
+ .customNavigation a{
119
+ cursor: pointer !Important;
120
+ -webkit-user-select: none;
121
+ -khtml-user-select: none;
122
+ -moz-user-select: none;
123
+ -ms-user-select: none;
124
+ user-select: none;
125
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
126
+ }
127
+ .jcarousel-next-horizontal, .jcarousel-prev-horizontal{
128
+ position: relative;
129
+ float: right;
130
+ }
131
+ </style>
132
+ </head>
133
+
134
+ <?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
135
+ <div class="widget widget-new-products" >
136
+ <div class="widget-title">
137
+ <h2><?php echo $this->__('New Products') ?></h2>
138
+ </div>
139
+ <div class="customNavigation">
140
+ <a class="btn prev jcarousel-prev-horizontal"></a>
141
+ <a class="btn next jcarousel-next-horizontal"></a>
142
+ </div>
143
+ <div class="widget-products" >
144
+ <?php echo $this->getPagerHtml() ?>
145
+ <?php $_columnCount = $this->getColumnCount(); ?>
146
+ <ul id="owl-demo" class="owl-carousel owl-theme products-grid" >
147
+ <?php $i=0; foreach ($_products->getItems() as $_product): ?>
148
+ <?php if ($i++%$_columnCount==0): ?>
149
+
150
+
151
+ <?php endif ?>
152
+ <li class="item">
153
+
154
+ <div class="regular">
155
+ <a class="product-image" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>" href="<?php echo $_product->getProductUrl() ?>">
156
+ <div class="new-label new-top-right"></div>
157
+ <img width="252" height="252" alt="<?php echo $this->stripTags($_product->getName(), null, true) ?>" src='<?php echo $this->helper("catalog/image")->init($_product, "small_image")->resize(252) ?>'>
158
+ </a>
159
+ <div class="product-info" style="height: 59px;">
160
+ <div class="button-container">
161
+ <p>
162
+ <?php if ($_product->isSaleable()): ?>
163
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart ajax-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
164
+ <?php else: ?>
165
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
166
+ <?php endif; ?>
167
+ </p>
168
+ </div>
169
+ <a href="<?php echo $_product->getProductUrl() ?>" class="product-name" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>)"><?php echo $this->helper('catalog/output')->productAttribute($_product, $_product->getName() , 'name') ?></a>
170
+
171
+ <?php echo $this->getPriceHtml($_product, true, '-widget-new-grid') ?>
172
+
173
+ </div><!-- product info -->
174
+
175
+ </div><!-- regular -->
176
+
177
+
178
+
179
+ </li>
180
+ <?php if ($i%$_columnCount==0 || $i==count($_products)): ?>
181
+
182
+ <?php endif ?>
183
+ <?php endforeach; ?></ul>
184
+ </div>
185
+ </div>
186
+
187
+
188
+
189
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/catalog/product/widget/new/content/new_list.phtml ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
28
+ <div class="widget widget-new-products">
29
+ <div class="widget-title">
30
+ <h2><?php echo $this->__('New Products') ?></h2>
31
+ </div>
32
+ <div class="widget-products">
33
+ <?php echo $this->getPagerHtml() ?>
34
+ <ol class="products-list">
35
+ <?php $i=0; foreach ($_products->getItems() as $_product): ?>
36
+ <li class="item<?php echo (++$i == count($_products))?' last':''; ?>">
37
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(85) ?>" width="85" height="85" alt="<?php echo $this->stripTags($_product->getName(), null, true) ?>" /></a>
38
+ <div class="product-shop">
39
+ <div class="f-fix">
40
+ <h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>)"><?php echo $this->helper('catalog/output')->productAttribute($_product, $_product->getName() , 'name') ?></a></h3>
41
+ <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
42
+ <?php echo $this->getPriceHtml($_product, true, '-widget-new-list') ?>
43
+ <?php if ($_product->isSaleable()): ?>
44
+ <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>
45
+ <?php else: ?>
46
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
47
+ <?php endif; ?>
48
+ <ul class="add-to-links">
49
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
50
+ <li><a href="<?php echo $this->getAddToWishlistUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
51
+ <?php endif; ?>
52
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
53
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
54
+ <?php endif; ?>
55
+ </ul>
56
+ </div>
57
+ </div>
58
+ </li>
59
+ <?php endforeach; ?>
60
+ </ol>
61
+ </div>
62
+ </div>
63
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/catalogsearch/form.mini.phtml ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <input id="search" type="text" name="<?php echo $catalogSearchHelper->getQueryParamName() ?>" value="<?php echo $catalogSearchHelper->getEscapedQueryText() ?>" class="input-text" maxlength="<?php echo $catalogSearchHelper->getMaxQueryLength();?>" />
33
+ <button type="submit" name="submit" id="submit" title="<?php echo $this->__('Search') ?>"></button>
34
+ </div>
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->__('Type and hit enter') ?>');
39
+ searchForm.initAutocomplete('<?php echo $catalogSearchHelper->getSuggestUrl() ?>', 'search_autocomplete');
40
+ //]]>
41
+ </script>
42
+ </form>
app/design/frontend/Kartparadigm/default/template/checkout/cart.phtml ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ * Shopping cart template
30
+ *
31
+ * @see Mage_Checkout_Block_Cart
32
+ */
33
+ ?>
34
+
35
+
36
+ <div class="cart">
37
+ <div class="page-title title-buttons">
38
+ <h1><?php echo $this->__('Shopping Cart') ?></h1>
39
+ <?php if(!$this->hasError()): ?>
40
+ <ul class="checkout-types">
41
+ <?php foreach ($this->getMethods('top_methods') as $method): ?>
42
+ <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
43
+ <li><?php echo $methodHtml; ?></li>
44
+ <?php endif; ?>
45
+ <?php endforeach; ?>
46
+ </ul>
47
+ <?php endif; ?>
48
+ </div>
49
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
50
+ <?php echo $this->getChildHtml('form_before') ?>
51
+ <form action="<?php echo $this->getUrl('checkout/cart/updatePost') ?>" method="post">
52
+ <?php echo $this->getBlockHtml('formkey'); ?>
53
+ <fieldset>
54
+ <table id="shopping-cart-table" class="data-table cart-table">
55
+ <col width="1" />
56
+ <col />
57
+ <col width="1" />
58
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
59
+ <col width="1" />
60
+ <?php endif ?>
61
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
62
+ <col width="1" />
63
+ <?php endif; ?>
64
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
65
+ <col width="1" />
66
+ <?php endif; ?>
67
+ <col width="1" />
68
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
69
+ <col width="1" />
70
+ <?php endif; ?>
71
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
72
+ <col width="1" />
73
+ <?php endif; ?>
74
+ <col width="1" />
75
+
76
+ <?php $mergedCells = ($this->helper('tax')->displayCartBothPrices() ? 2 : 1); ?>
77
+ <thead>
78
+ <tr>
79
+ <th rowspan="<?php echo $mergedCells; ?>">&nbsp;</th>
80
+ <th rowspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Product Name') ?></span></th>
81
+ <th rowspan="<?php echo $mergedCells; ?>"></th>
82
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
83
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><span class="nobr"><?php echo $this->__('Move to Wishlist') ?></span></th>
84
+ <?php endif ?>
85
+ <th class="a-center" colspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Unit Price') ?></span></th>
86
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
87
+ <th class="a-center" colspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Subtotal') ?></th>
88
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center">&nbsp;</th>
89
+ </tr>
90
+ <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
91
+ <tr>
92
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
93
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
94
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
95
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
96
+ </tr>
97
+ <?php endif; ?>
98
+ </thead>
99
+ <tfoot>
100
+ <tr>
101
+ <td colspan="50" class="a-right">
102
+ <?php if($this->getContinueShoppingUrl()): ?>
103
+ <button type="button" title="<?php echo $this->__('Continue Shopping') ?>" class="button btn-continue" onclick="setLocation('<?php echo $this->getContinueShoppingUrl() ?>')"><span><span><?php echo $this->__('Continue Shopping') ?></span></span></button>
104
+ <?php endif; ?>
105
+ <button type="submit" name="update_cart_action" value="update_qty" title="<?php echo $this->__('Update Shopping Cart'); ?>" class="button btn-update"><span><span><?php echo $this->__('Update Shopping Cart'); ?></span></span></button>
106
+ <button type="submit" name="update_cart_action" value="empty_cart" title="<?php echo $this->__('Clear Shopping Cart'); ?>" class="button btn-empty" id="empty_cart_button"><span><span><?php echo $this->__('Clear Shopping Cart'); ?></span></span></button>
107
+ <!--[if lt IE 8]>
108
+ <input type="hidden" id="update_cart_action_container" />
109
+ <script type="text/javascript">
110
+ //<![CDATA[
111
+ Event.observe(window, 'load', function()
112
+ {
113
+ // Internet Explorer (lt 8) does not support value attribute in button elements
114
+ $emptyCartButton = $('empty_cart_button');
115
+ $cartActionContainer = $('update_cart_action_container');
116
+ if ($emptyCartButton && $cartActionContainer) {
117
+ Event.observe($emptyCartButton, 'click', function()
118
+ {
119
+ $emptyCartButton.setAttribute('name', 'update_cart_action_temp');
120
+ $cartActionContainer.setAttribute('name', 'update_cart_action');
121
+ $cartActionContainer.setValue('empty_cart');
122
+ });
123
+ }
124
+
125
+ });
126
+ //]]>
127
+ </script>
128
+ <![endif]-->
129
+ </td>
130
+ </tr>
131
+ </tfoot>
132
+ <tbody>
133
+ <?php foreach($this->getItems() as $_item): ?>
134
+ <?php echo $this->getItemHtml($_item) ?>
135
+ <?php endforeach ?>
136
+ </tbody>
137
+ </table>
138
+ <script type="text/javascript">decorateTable('shopping-cart-table')</script>
139
+ </fieldset>
140
+ </form>
141
+ <div class="cart-collaterals row clearfix">
142
+ <div class="grid_4">
143
+ <div class="cart-block cart-shipping">
144
+ <?php if (!$this->getIsVirtual()): echo $this->getChildHtml('shipping'); endif; ?>
145
+ </div>
146
+ </div>
147
+ <div class='grid_4'>
148
+ <div class="cart-block cart-coupon">
149
+ <?php /* Extensions placeholder */ ?>
150
+ <?php echo $this->getChildHtml('checkout.cart.extra') ?>
151
+ <?php echo $this->getChildHtml('coupon') ?>
152
+ </div>
153
+ </div>
154
+ <div class='grid_4'>
155
+ <div class="cart-block cart-total totals">
156
+ <?php echo $this->getChildHtml('totals'); ?>
157
+ <?php if(!$this->hasError()): ?>
158
+ <ul class="checkout-types">
159
+ <?php foreach ($this->getMethods('methods') as $method): ?>
160
+ <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
161
+ <li><?php echo $methodHtml; ?></li>
162
+ <?php endif; ?>
163
+ <?php endforeach; ?>
164
+ </ul>
165
+ <?php endif; ?>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
app/design/frontend/Kartparadigm/default/template/checkout/cart/sidebar.phtml ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ /**
28
+ * Shoping cart sidebar
29
+ *
30
+ * @see Mage_Checkout_Block_Cart_Sidebar
31
+ */
32
+
33
+ ?>
34
+ <?php if ($this->getIsNeedToDisplaySideBar()):?>
35
+ <div class="block block-cart" style='box-shadow: 0px 30px 36px 30px rgba(0, 0, 0, 0.1);padding: 5px;
36
+ '>
37
+ <?php $_cartQty = $this->getSummaryCount() ?>
38
+ <div class="topcart-title" style="margin-left: 18px;">
39
+ <strong><span><?php echo $this->__('My Cart') ?></span></strong>
40
+ </div>
41
+ <div class="block-content">
42
+ <?php $_items = $this->getRecentItems() ?>
43
+ <?php if(count($_items)): ?>
44
+ <p class="block-subtitle"><?php echo $this->__('Recently added item(s)') ?></p>
45
+ <ol id="cart-sidebar" class="mini-products-list">
46
+ <?php foreach($_items as $_item): ?>
47
+ <?php echo $this->getItemHtml($_item) ?>
48
+ <?php endforeach; ?>
49
+ </ol>
50
+ <script type="text/javascript">decorateList('cart-sidebar', 'none-recursive')</script>
51
+ <?php else: ?>
52
+ <p class="empty"><?php echo $this->__('You have no items in your shopping cart.') ?></p>
53
+ <?php endif ?>
54
+ <?php if ($_cartQty>0): ?>
55
+ <div class="summary">
56
+ <?php if ($_cartQty==1): ?>
57
+ <p class="amount"><?php echo $this->__('There is <a href="%s">1 item</a> in your cart.', $this->getUrl('checkout/cart')) ?></p>
58
+ <?php else: ?>
59
+ <p class="amount"><?php echo $this->__('There are <a href="%s">%s items</a> in your cart.', $this->getUrl('checkout/cart'), $_cartQty) ?></p>
60
+ <?php endif ?>
61
+ <p class="subtotal">
62
+ <?php if ($this->canApplyMsrp()): ?>
63
+ <span class="map-cart-sidebar-total"><?php echo $this->__('ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER'); ?></span>
64
+ <?php else: ?>
65
+ <span class="label"><?php echo $this->__('Cart Subtotal:') ?></span><b> <?php echo Mage::helper('checkout')->formatPrice($this->getSubtotal()) ?></b>
66
+ <?php if ($_subtotalInclTax = $this->getSubtotalInclTax()): ?>
67
+ <br />(<?php echo Mage::helper('checkout')->formatPrice($_subtotalInclTax) ?> <?php echo Mage::helper('tax')->getIncExcText(true) ?>)
68
+ <?php endif; ?>
69
+ <?php endif; ?>
70
+ </p>
71
+ </div>
72
+ <?php endif ?>
73
+
74
+
75
+ <?php if($_cartQty && $this->isPossibleOnepageCheckout()): ?>
76
+ <div class="actions">
77
+ <?php echo $this->getChildHtml('extra_actions') ?>
78
+ <button type="button" title="<?php echo $this->__('Checkout') ?>" class="button" onclick="setLocation('<?php echo $this->getCheckoutUrl() ?>')"><span><span><?php echo $this->__('Checkout') ?></span></span></button>
79
+ </div>
80
+ <?php endif ?>
81
+ </div>
82
+ </div>
83
+ <?php endif;?>
84
+
app/design/frontend/Kartparadigm/default/template/checkout/onepage.phtml ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <head>
28
+ <head>
29
+ <style type="text/css">
30
+ #checkout-step-login,#checkout-step-billing,
31
+ #checkout-step-shipping,#checkout-step-shipping_method,
32
+ #checkout-step-payment,#checkout-step-review{
33
+ width: 850px;
34
+ margin-top: 50px;
35
+
36
+ }
37
+ #checkout-step-billing{
38
+ width: 790px;
39
+ margin-left: -150px;
40
+ }
41
+ #checkout-step-shipping,#checkout-step-shipping_method{
42
+ margin-left: -550px;
43
+ width: 800px;
44
+ }
45
+ #checkout-step-payment{
46
+ width:800px;
47
+ margin-left: -750px;
48
+ }
49
+ #checkout-step-review{
50
+ margin-left: -950px;
51
+ margin-top: 68px;
52
+ width: 800px;
53
+ }
54
+ .opc .form-list li {
55
+ width: 100%;
56
+ }
57
+ .top-opc li {
58
+ /* margin: 0px 10px 30px 0px;
59
+ width: 125px;
60
+ float: left;*/
61
+ }
62
+ .opc {
63
+ /*width: 820px;*/
64
+ }
65
+ .col-main{
66
+ /*width: 1009px;*/
67
+ }
68
+ .block {/*progress block*/
69
+ /*float: left;
70
+ width: 225px;
71
+ margin: 0px 450px 30px;*/
72
+ }
73
+ .checkout-onepage-index .col-right {
74
+ padding: 0px;
75
+ position: relative;
76
+ top: 210px;
77
+ right: 10px;
78
+ }
79
+ .col2-right-layout .col-main {
80
+
81
+ min-height: 700px;
82
+ }
83
+ </style>
84
+ </head>
85
+ </head>
86
+ <div class="page-title">
87
+ <h1><?php echo $this->__('Checkout') ?></h1>
88
+ </div>
89
+ <script type="text/javascript" src="<?php echo $this->getJsUrl('varien/accordion.js') ?>"></script>
90
+ <script type="text/javascript" src="<?php echo $this->getSkinUrl('js/opcheckout.js') ?>"></script>
91
+ <ol class="opc top-opc" id="checkoutSteps">
92
+ <?php $i=0; foreach($this->getSteps() as $_stepId => $_stepInfo): ?>
93
+ <?php if (!$this->getChild($_stepId) || !$this->getChild($_stepId)->isShow()): continue; endif; $i++ ?>
94
+ <li id="opc-<?php echo $_stepId ?>" class="section<?php echo !empty($_stepInfo['allow'])?' allow':'' ?><?php echo !empty($_stepInfo['complete'])?' saved':'' ?>">
95
+ <span class="number" ><?php echo $i ?></span>
96
+ <h2 ><?php echo $_stepInfo['label'] ?></h2>
97
+ <div class="step-title">
98
+ <span class="number"><?php echo $i ?></span>
99
+ <h2><?php echo $_stepInfo['label'] ?></h2>
100
+ <a href="#"><?php echo $this->__('Edit') ?></a>
101
+ </div>
102
+ <div id="checkout-step-<?php echo $_stepId ?>" class="step a-item" style="display:none;">
103
+ <?php echo $this->getChildHtml($_stepId) ?>
104
+ </div>
105
+ </li>
106
+ <?php endforeach ?>
107
+ </ol>
108
+ <script type="text/javascript">
109
+ //<![CDATA[
110
+ var accordion = new Accordion('checkoutSteps', '.step-title', true);
111
+ <?php if($this->getActiveStep()): ?>
112
+ accordion.openSection('opc-<?php echo $this->getActiveStep() ?>');
113
+ <?php endif ?>
114
+ var checkout = new Checkout(accordion,{
115
+ progress: '<?php echo $this->getUrl('checkout/onepage/progress') ?>',
116
+ review: '<?php echo $this->getUrl('checkout/onepage/review') ?>',
117
+ saveMethod: '<?php echo $this->getUrl('checkout/onepage/saveMethod') ?>',
118
+ failure: '<?php echo $this->getUrl('checkout/cart') ?>'}
119
+ );
120
+ //]]>
121
+ </script>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/agreements.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@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
+ * @see Mage_Checkout_Block_Agreements
30
+ */
31
+ ?>
32
+
33
+ <?php if (!$this->getAgreements()) return; ?>
34
+ <form action="" id="checkout-agreements" onsubmit="return false;">
35
+ <ol class="checkout-agreements">
36
+ <?php foreach ($this->getAgreements() as $_a): ?>
37
+ <li>
38
+ <div class="agreement-content"<?php echo ($_a->getContentHeight() ? ' style="height:' . $_a->getContentHeight() . '"' : '')?>>
39
+ <?php if ($_a->getIsHtml()):?>
40
+ <?php echo $_a->getContent() ?>
41
+ <?php else:?>
42
+ <?php echo nl2br($this->escapeHtml($_a->getContent())) ?>
43
+ <?php endif; ?>
44
+ </div>
45
+ <p class="agree">
46
+ <input type="checkbox" id="agreement-<?php echo $_a->getId()?>" name="agreement[<?php echo $_a->getId()?>]" value="1" title="<?php echo $this->escapeHtml($_a->getCheckboxText()) ?>" class="checkbox" /><label for="agreement-<?php echo $_a->getId()?>"><?php echo $_a->getIsHtml() ? $_a->getCheckboxText() : $this->escapeHtml($_a->getCheckboxText()) ?></label>
47
+ </p>
48
+ </li>
49
+ <?php endforeach ?>
50
+ </ol>
51
+ </form>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/billing.phtml ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <form id="co-billing-form" action="">
28
+ <fieldset>
29
+ <ul class="form-list">
30
+ <?php if ($this->customerHasAddresses()): ?>
31
+ <li class="wide">
32
+ <label for="billing-address-select"><?php echo $this->__('Select a billing address from your address book or enter a new address.') ?></label>
33
+ <div class="input-box">
34
+ <?php echo $this->getAddressesHtmlSelect('billing') ?>
35
+ </div>
36
+ </li>
37
+ <?php endif; ?>
38
+ <li id="billing-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif; ?>>
39
+ <fieldset>
40
+ <input type="hidden" name="billing[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="billing:address_id" />
41
+ <ul>
42
+ <li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress()->getFirstname() ? $this->getAddress() : $this->getQuote()->getCustomer())->setForceUseCustomerRequiredAttributes(!$this->isCustomerLoggedIn())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?></li>
43
+ <li class="fields">
44
+ <div class="field">
45
+ <label for="billing:company"><?php echo $this->__('Company') ?></label>
46
+ <div class="input-box">
47
+ <input type="text" id="billing:company" name="billing[company]" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
48
+ </div>
49
+ </div>
50
+ <?php if(!$this->isCustomerLoggedIn()): ?>
51
+ <div class="field">
52
+ <label for="billing:email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
53
+ <div class="input-box">
54
+ <input type="text" name="billing[email]" id="billing:email" value="<?php echo $this->escapeHtml($this->getAddress()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text validate-email required-entry" />
55
+ </div>
56
+ </div>
57
+ <?php endif; ?>
58
+ </li>
59
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
60
+ <li class="wide">
61
+ <label for="billing:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
62
+ <div class="input-box">
63
+ <input type="text" title="<?php echo $this->__('Street Address') ?>" name="billing[street][]" id="billing:street1" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" class="input-text <?php echo $_streetValidationClass ?>" />
64
+ </div>
65
+ </li>
66
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
67
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
68
+ <li class="wide">
69
+ <div class="input-box">
70
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="billing[street][]" id="billing:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="input-text <?php echo $_streetValidationClass ?>" />
71
+ </div>
72
+ </li>
73
+ <?php endfor; ?>
74
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
75
+ <li class="wide">
76
+ <label for="billing:vat_id"><?php echo $this->__('VAT Number') ?></label>
77
+ <div class="input-box">
78
+ <input type="text" id="billing:vat_id" name="billing[vat_id]" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()) ?>" title="<?php echo $this->__('VAT Number') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
79
+ </div>
80
+ </li>
81
+ <?php endif; ?>
82
+ <li class="fields">
83
+ <div class="field">
84
+ <label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
85
+ <div class="input-box">
86
+ <input type="text" title="<?php echo $this->__('City') ?>" name="billing[city]" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="billing:city" />
87
+ </div>
88
+ </div>
89
+ <div class="field">
90
+ <label for="billing:region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
91
+ <div class="input-box">
92
+ <select id="billing:region_id" name="billing[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
93
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
94
+ </select>
95
+ <script type="text/javascript">
96
+ //<![CDATA[
97
+ $('billing:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
98
+ //]]>
99
+ </script>
100
+ <input type="text" id="billing:region" name="billing[region]" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
101
+ </div>
102
+ </div>
103
+ </li>
104
+ <li class="fields">
105
+ <div class="field">
106
+ <label for="billing:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
107
+ <div class="input-box">
108
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="billing[postcode]" id="billing:postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
109
+ </div>
110
+ </div>
111
+ <div class="field">
112
+ <label for="billing:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
113
+ <div class="input-box">
114
+ <?php echo $this->getCountryHtmlSelect('billing') ?>
115
+ </div>
116
+ </div>
117
+ </li>
118
+ <li class="fields">
119
+ <div class="field">
120
+ <label for="billing:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
121
+ <div class="input-box">
122
+ <input type="text" name="billing[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="billing:telephone" />
123
+ </div>
124
+ </div>
125
+ <div class="field">
126
+ <label for="billing:fax"><?php echo $this->__('Fax') ?></label>
127
+ <div class="input-box">
128
+ <input type="text" name="billing[fax]" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="billing:fax" />
129
+ </div>
130
+ </div>
131
+ </li>
132
+ <?php if(!$this->isCustomerLoggedIn()): ?>
133
+
134
+ <?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
135
+ <?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
136
+ <?php if ($_dob->isEnabled() || $_gender->isEnabled()): ?>
137
+ <li class="fields">
138
+ <?php if ($_dob->isEnabled()): ?>
139
+ <div class="field">
140
+ <?php echo $_dob->setDate($this->getQuote()->getCustomerDob())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
141
+ </div>
142
+ <?php endif; ?>
143
+ <?php if ($_gender->isEnabled()): ?>
144
+ <div class="field">
145
+ <?php echo $_gender->setGender($this->getQuote()->getCustomerGender())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
146
+ </div>
147
+ <?php endif ?>
148
+ </li>
149
+ <?php endif ?>
150
+
151
+ <?php $_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat') ?>
152
+ <?php if ($_taxvat->isEnabled()): ?>
153
+ <li>
154
+ <?php echo $_taxvat->setTaxvat($this->getQuote()->getCustomerTaxvat())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
155
+ </li>
156
+ <?php endif ?>
157
+
158
+ <li class="fields" id="register-customer-password">
159
+ <div class="field">
160
+ <label for="billing:customer_password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
161
+ <div class="input-box">
162
+ <input type="password" name="billing[customer_password]" id="billing:customer_password" title="<?php echo $this->__('Password') ?>" class="input-text required-entry validate-password" />
163
+ </div>
164
+ </div>
165
+ <div class="field">
166
+ <label for="billing:confirm_password" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
167
+ <div class="input-box">
168
+ <input type="password" name="billing[confirm_password]" title="<?php echo $this->__('Confirm Password') ?>" id="billing:confirm_password" class="input-text required-entry validate-cpassword" />
169
+ </div>
170
+ </div>
171
+ </li>
172
+ <?php endif; ?>
173
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
174
+ <li class="control">
175
+ <input type="checkbox" name="billing[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="billing:save_in_address_book" onchange="if(window.shipping) shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="billing:save_in_address_book"><?php echo $this->__('Save in address book') ?></label>
176
+ </li>
177
+ <?php else:?>
178
+ <li class="no-display"><input type="hidden" name="billing[save_in_address_book]" value="1" /></li>
179
+ <?php endif; ?>
180
+ <?php echo $this->getChildHtml('form.additional.info'); ?>
181
+ </ul>
182
+ </fieldset>
183
+ </li>
184
+ <?php /* Extensions placeholder */ ?>
185
+ <?php echo $this->getChildHtml('checkout.onepage.billing.extra')?>
186
+ <?php if ($this->canShip()): ?>
187
+ <li class="control">
188
+ <input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_yes" value="1"<?php if ($this->isUseBillingAddressForShipping()) {?> checked="checked"<?php }?> title="<?php echo $this->__('Ship to this address') ?>" onclick="$('shipping:same_as_billing').checked = true;" class="radio" /><label for="billing:use_for_shipping_yes"><?php echo $this->__('Ship to this address') ?></label></li>
189
+ <li class="control">
190
+ <input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_no" value="0"<?php if (!$this->isUseBillingAddressForShipping()) {?> checked="checked"<?php }?> title="<?php echo $this->__('Ship to different address') ?>" onclick="$('shipping:same_as_billing').checked = false;" class="radio" /><label for="billing:use_for_shipping_no"><?php echo $this->__('Ship to different address') ?></label>
191
+ </li>
192
+ <?php endif; ?>
193
+ </ul>
194
+ <?php if (!$this->canShip()): ?>
195
+ <input type="hidden" name="billing[use_for_shipping]" value="1" />
196
+ <?php endif; ?>
197
+ <div class="buttons-set" id="billing-buttons-container">
198
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
199
+ <button type="button" title="<?php echo $this->__('Continue') ?>" class="button" onclick="billing.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
200
+ <span class="please-wait" id="billing-please-wait" style="display:none;">
201
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
202
+ </span>
203
+ </div>
204
+ </fieldset>
205
+ </form>
206
+ <script type="text/javascript">
207
+ //<![CDATA[
208
+ var billing = new Billing('co-billing-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveBilling') ?>');
209
+ var billingForm = new VarienForm('co-billing-form');
210
+
211
+ //billingForm.setElementsRelation('billing:country_id', 'billing:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
212
+ $('billing-address-select') && billing.newAddress(!$('billing-address-select').value);
213
+
214
+ var billingRegionUpdater = new RegionUpdater('billing:country_id', 'billing:region', 'billing:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'billing:postcode');
215
+ //]]>
216
+ </script>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/failure.phtml ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="page-title">
28
+ <h1><?php echo $this->__('An error occurred in the process of payment') ?></h1>
29
+ </div>
30
+ <?php if ($this->getRealOrderId()) : ?><p><?php echo $this->__('Order #') . $this->getRealOrderId() ?></p><?php endif ?>
31
+ <?php if ($error = $this->getErrorMessage()) : ?><p><?php echo $error ?></p><?php endif ?>
32
+ <p><?php echo $this->__('Click <a href="%s">here</a> to continue shopping.', $this->getContinueShoppingUrl()) ?></p>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/link.phtml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 if ($this->isPossibleOnepageCheckout()):?>
28
+ <button type="button" title="<?php echo $this->__('Proceed to Checkout') ?>" class="button btn-proceed-checkout btn-checkout<?php if ($this->isDisabled()):?> no-checkout<?php endif; ?>"<?php if ($this->isDisabled()):?> disabled="disabled"<?php endif; ?> onclick="window.location='<?php echo $this->getCheckoutUrl() ?>';"><span><span><?php echo $this->__('Proceed to Checkout') ?></span></span></button>
29
+ <?php endif?>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/login.phtml ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 /* Extensions placeholder */ ?>
28
+ <?php echo $this->getChildHtml('checkout.onepage.login.extra')?>
29
+ <div class="col2-set">
30
+ <?php echo $this->getChildHtml('login_before')?>
31
+ <div class="col-11">
32
+ <h3><?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?><?php echo $this->__('Checkout as a Guest or Register') ?><?php else: ?><?php echo $this->__('Register to Create an Account') ?><?php endif; ?></h3>
33
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
34
+ <p><?php echo $this->__('Register with us for future convenience:') ?></p>
35
+ <?php else: ?>
36
+ <p><strong><?php echo $this->__('Register and save time!') ?></strong><br />
37
+ <?php echo $this->__('Register with us for future convenience:') ?></p>
38
+ <ul>
39
+ <li><?php echo $this->__('Fast and easy check out') ?></li>
40
+ <li><?php echo $this->__('Easy access to your order history and status') ?></li>
41
+ </ul>
42
+ <?php endif; ?>
43
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
44
+ <ul class="form-list">
45
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
46
+ <li class="control">
47
+ <input type="radio" name="checkout_method" id="login:guest" value="guest"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_GUEST): ?> checked="checked"<?php endif; ?> class="radio" /><label for="login:guest"><?php echo $this->__('Checkout as Guest') ?></label>
48
+ </li>
49
+ <?php endif; ?>
50
+ <li class="control">
51
+ <input type="radio" name="checkout_method" id="login:register" value="register"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_REGISTER || !$this->getQuote()->isAllowedGuestCheckout()): ?> checked="checked"<?php endif ?> class="radio" /><label for="login:register"><?php echo $this->__('Register') ?></label>
52
+ </li>
53
+ </ul>
54
+ <h4><?php echo $this->__('Register and save time!') ?></h4>
55
+ <p><?php echo $this->__('Register with us for future convenience:') ?></p>
56
+ <ul class="ul">
57
+ <li><?php echo $this->__('Fast and easy check out') ?></li>
58
+ <li><?php echo $this->__('Easy access to your order history and status') ?></li>
59
+ </ul>
60
+ <?php else: ?>
61
+ <input type="hidden" name="checkout_method" id="login:register" value="register" checked="checked" />
62
+ <?php endif; ?>
63
+ </div>
64
+ <div class="col-2">
65
+ <h3><?php echo $this->__('Login') ?></h3>
66
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
67
+ <form id="login-form" action="<?php echo $this->getPostAction() ?>" method="post">
68
+ <fieldset>
69
+ <?php echo $this->getBlockHtml('formkey'); ?>
70
+ <h4><?php echo $this->__('Already registered?') ?></h4>
71
+ <p><?php echo $this->__('Please log in below:') ?></p>
72
+ <ul class="form-list">
73
+ <li>
74
+ <label for="login-email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
75
+ <div class="input-box">
76
+ <input type="text" class="input-text required-entry validate-email" id="login-email" name="login[username]" value="<?php echo $this->escapeHtml($this->getUsername()) ?>" />
77
+ </div>
78
+ </li>
79
+ <li>
80
+ <label for="login-password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
81
+ <div class="input-box">
82
+ <input type="password" class="input-text required-entry" id="login-password" name="login[password]" />
83
+ </div>
84
+ </li>
85
+ <?php echo $this->getChildHtml('form.additional.info'); ?>
86
+ </ul>
87
+ </fieldset>
88
+ </form>
89
+ </div>
90
+ </div>
91
+ <div class="col2-set">
92
+ <div class="col-1">
93
+ <div class="buttons-set">
94
+ <p class="required">&nbsp;</p>
95
+ <button type="button" class="button" onclick="checkout.setMethod();"><span><span><?php echo ($this->getQuote()->isAllowedGuestCheckout() ? $this->__('Continue') : $this->__('Register')) ?></span></span></button>
96
+ </div>
97
+ </div>
98
+ <div class="col-2">
99
+ <div class="buttons-set">
100
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
101
+ <a href="<?php echo $this->getUrl('customer/account/forgotpassword') ?>" class="f-left"><?php echo $this->__('Forgot your password?') ?></a>
102
+ <button type="submit" class="button" onclick="onepageLogin(this)"><span><span><?php echo $this->__('Login') ?></span></span></button>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ <script type="text/javascript">
107
+ //<![CDATA[
108
+ var loginForm = new VarienForm('login-form', true);
109
+ $('login-email').observe('keypress', bindLoginPost);
110
+ $('login-password').observe('keypress', bindLoginPost);
111
+ function bindLoginPost(evt){
112
+ if (evt.keyCode == Event.KEY_RETURN) {
113
+ loginForm.submit();
114
+ }
115
+ }
116
+ function onepageLogin(button)
117
+ {
118
+ if(loginForm.validator && loginForm.validator.validate()){
119
+ button.disabled = true;
120
+ loginForm.submit();
121
+ }
122
+ }
123
+ //]]>
124
+ </script>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/payment.phtml ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <script type="text/javascript">
28
+ //<![CDATA[
29
+ var quoteBaseGrandTotal = <?php echo (float)$this->getQuoteBaseGrandTotal(); ?>;
30
+ var checkQuoteBaseGrandTotal = quoteBaseGrandTotal;
31
+ var payment = new Payment('co-payment-form', '<?php echo $this->getUrl('checkout/onepage/savePayment') ?>');
32
+ var lastPrice;
33
+ //]]>
34
+ </script>
35
+ <form action="" id="co-payment-form">
36
+ <fieldset>
37
+ <?php echo $this->getChildHtml('methods') ?>
38
+ </fieldset>
39
+ </form>
40
+ <div class="tool-tip" id="payment-tool-tip" style="display:none;">
41
+ <div class="btn-close"><a href="#" id="payment-tool-tip-close" title="<?php echo $this->__('Close') ?>"><?php echo $this->__('Close') ?></a></div>
42
+ <div class="tool-tip-content"><img src="<?php echo $this->getSkinUrl('images/cvv.gif') ?>" alt="<?php echo $this->__('Card Verification Number Visual Reference') ?>" title="<?php echo $this->__('Card Verification Number Visual Reference') ?>" /></div>
43
+ </div>
44
+ <div class="buttons-set" id="payment-buttons-container">
45
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
46
+ <p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
47
+ <button type="button" class="button" onclick="payment.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
48
+ <span class="please-wait" id="payment-please-wait" style="display:none;">
49
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
50
+ </span>
51
+ </div>
52
+ <script type="text/javascript">
53
+ //<![CDATA[
54
+ function toggleToolTip(event){
55
+ if($('payment-tool-tip')){
56
+ $('payment-tool-tip').setStyle({
57
+ top: (Event.pointerY(event)-560)+'px'//,
58
+ //left: (Event.pointerX(event)+100)+'px'
59
+ })
60
+ $('payment-tool-tip').toggle();
61
+ }
62
+ Event.stop(event);
63
+ }
64
+ if($('payment-tool-tip-close')){
65
+ Event.observe($('payment-tool-tip-close'), 'click', toggleToolTip);
66
+ }
67
+ //]]>
68
+ </script>
69
+ <script type="text/javascript">
70
+ //<![CDATA[
71
+ payment.currentMethod = "<?php echo $this->getChild('methods')->getSelectedMethodCode() ?>";
72
+ //]]>
73
+ </script>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/progress.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@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="block block-progress opc-block-progress">
28
+ <div class="block-title">
29
+ <strong><span><?php echo $this->__('Your Checkout Progress') ?></span></strong>
30
+ </div>
31
+ <div class="block-content">
32
+ <dl>
33
+ <?php if ($this->getCheckout()->getStepData('billing', 'is_show')): ?>
34
+ <div id="billing-progress-opcheckout">
35
+ <?php echo $this->getChildHtml('billing.progress') ?>
36
+ </div>
37
+ <?php endif; ?>
38
+
39
+ <?php if ($this->getCheckout()->getStepData('shipping', 'is_show')): ?>
40
+ <div id="shipping-progress-opcheckout">
41
+ <?php echo $this->getChildHtml('shipping.progress') ?>
42
+ </div>
43
+ <?php endif; ?>
44
+
45
+ <?php if ($this->getCheckout()->getStepData('shipping_method', 'is_show')): ?>
46
+ <div id="shipping_method-progress-opcheckout">
47
+ <?php echo $this->getChildHtml('shippingmethod.progress') ?>
48
+ </div>
49
+ <?php endif; ?>
50
+
51
+ <?php if ($this->getCheckout()->getStepData('payment', 'is_show')): ?>
52
+ <div id="payment-progress-opcheckout">
53
+ <?php echo $this->getChildHtml('payment.progress') ?>
54
+ </div>
55
+ <?php endif; ?>
56
+ </dl>
57
+ </div>
58
+ </div>
59
+
app/design/frontend/Kartparadigm/default/template/checkout/onepage/review.phtml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="order-review" id="checkout-review-load">
28
+ <!-- Content loaded dynamically -->
29
+ </div>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/shipping.phtml ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <form action="" id="co-shipping-form">
28
+ <ul class="form-list">
29
+ <?php if ($this->customerHasAddresses()): ?>
30
+ <li class="wide">
31
+ <label for="shipping-address-select"><?php echo $this->__('Select a shipping address from your address book or enter a new address.') ?></label>
32
+ <div class="input-box">
33
+ <?php echo $this->getAddressesHtmlSelect('shipping') ?>
34
+ </div>
35
+ </li>
36
+ <?php endif ?>
37
+ <li id="shipping-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif ?>>
38
+ <fieldset>
39
+ <input type="hidden" name="shipping[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="shipping:address_id" />
40
+ <ul>
41
+ <li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress())->setFieldIdFormat('shipping:%s')->setFieldNameFormat('shipping[%s]')->setFieldParams('onchange="shipping.setSameAsBilling(false)"')->toHtml() ?></li>
42
+ <li class="fields">
43
+ <div class="fields">
44
+ <label for="shipping:company"><?php echo $this->__('Company') ?></label>
45
+ <div class="input-box">
46
+ <input type="text" id="shipping:company" name="shipping[company]" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" onchange="shipping.setSameAsBilling(false);" />
47
+ </div>
48
+ </div>
49
+ </li>
50
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
51
+ <li class="wide">
52
+ <label for="shipping:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
53
+ <div class="input-box">
54
+ <input type="text" title="<?php echo $this->__('Street Address') ?>" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" class="input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
55
+ </div>
56
+ </li>
57
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
58
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
59
+ <li class="wide">
60
+ <div class="input-box">
61
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="shipping[street][]" id="shipping:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
62
+ </div>
63
+ </li>
64
+ <?php endfor; ?>
65
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
66
+ <li class="wide">
67
+ <label for="billing:vat_id"><?php echo $this->__('VAT Number'); ?></label>
68
+ <div class="input-box">
69
+ <input type="text" id="shipping:vat_id" name="shipping[vat_id]" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()); ?>" title="<?php echo $this->__('VAT Number'); ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
70
+ </div>
71
+ </li>
72
+ <?php endif; ?>
73
+ <li class="fields">
74
+ <div class="field">
75
+ <label for="shipping:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
76
+ <div class="input-box">
77
+ <input type="text" title="<?php echo $this->__('City') ?>" name="shipping[city]" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="shipping:city" onchange="shipping.setSameAsBilling(false);" />
78
+ </div>
79
+ </div>
80
+ <div class="field">
81
+ <label for="shipping:region" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
82
+ <div class="input-box">
83
+ <select id="shipping:region_id" name="shipping[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
84
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
85
+ </select>
86
+ <script type="text/javascript">
87
+ //<![CDATA[
88
+ $('shipping:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
89
+ //]]>
90
+ </script>
91
+ <input type="text" id="shipping:region" name="shipping[region]" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
92
+ </div>
93
+ </div>
94
+ </li>
95
+ <li class="fields">
96
+ <div class="field">
97
+ <label for="shipping:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
98
+ <div class="input-box">
99
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="shipping[postcode]" id="shipping:postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" onchange="shipping.setSameAsBilling(false);" />
100
+ </div>
101
+ </div>
102
+ <div class="field">
103
+ <label for="shipping:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
104
+ <div class="input-box">
105
+ <?php echo $this->getCountryHtmlSelect('shipping') ?>
106
+ </div>
107
+ </div>
108
+ </li>
109
+ <li class="fields">
110
+ <div class="field">
111
+ <label for="shipping:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
112
+ <div class="input-box">
113
+ <input type="text" name="shipping[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="shipping:telephone" onchange="shipping.setSameAsBilling(false);" />
114
+ </div>
115
+ </div>
116
+ <div class="field">
117
+ <label for="shipping:fax"><?php echo $this->__('Fax') ?></label>
118
+ <div class="input-box">
119
+ <input type="text" name="shipping[fax]" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="shipping:fax" onchange="shipping.setSameAsBilling(false);" />
120
+ </div>
121
+ </div>
122
+ </li>
123
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
124
+ <li class="control">
125
+ <input type="checkbox" name="shipping[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="shipping:save_in_address_book" onchange="shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="shipping:save_in_address_book"><?php echo $this->__('Save in address book') ?></label></li>
126
+ <?php else:?>
127
+ <li class="no-display"><input type="hidden" name="shipping[save_in_address_book]" value="1" /></li>
128
+ <?php endif;?>
129
+ </ul>
130
+ </fieldset>
131
+ </li>
132
+ <li class="control">
133
+ <input type="checkbox" name="shipping[same_as_billing]" id="shipping:same_as_billing" value="1"<?php if($this->getAddress()->getSameAsBilling()): ?> checked="checked"<?php endif; ?> title="<?php echo $this->__('Use Billing Address') ?>" onclick="shipping.setSameAsBilling(this.checked)" class="checkbox" /><label for="shipping:same_as_billing"><?php echo $this->__('Use Billing Address') ?></label>
134
+ </li>
135
+ </ul>
136
+ <div class="buttons-set" id="shipping-buttons-container">
137
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
138
+ <p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
139
+ <button type="button" class="button" title="<?php echo $this->__('Continue') ?>" onclick="shipping.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
140
+ <span id="shipping-please-wait" class="please-wait" style="display:none;">
141
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
142
+ </span>
143
+ </div>
144
+ </form>
145
+ <script type="text/javascript">
146
+ //<![CDATA[
147
+ var shipping = new Shipping('co-shipping-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveShipping') ?>',
148
+ '<?php echo $this->getUrl('checkout/onepage/shippingMethod') ?>');
149
+ var shippingForm = new VarienForm('co-shipping-form');
150
+ shippingForm.extraChildParams = ' onchange="shipping.setSameAsBilling(false);"';
151
+ //shippingForm.setElementsRelation('shipping:country_id', 'shipping:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
152
+ $('shipping-address-select') && shipping.newAddress(!$('shipping-address-select').value);
153
+
154
+ var shippingRegionUpdater = new RegionUpdater('shipping:country_id', 'shipping:region', 'shipping:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'shipping:postcode');
155
+ //]]>
156
+ </script>
app/design/frontend/Kartparadigm/default/template/checkout/onepage/shipping_method.phtml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <form id="co-shipping-method-form" action="">
28
+ <div id="checkout-shipping-method-load">
29
+ <!-- Content loaded dynamically -->
30
+ </div>
31
+ <script type="text/javascript">
32
+ //<![CDATA[
33
+ var shippingMethod = new ShippingMethod('co-shipping-method-form', "<?php echo $this->getUrl('checkout/onepage/saveShippingMethod') ?>");
34
+ //]]>
35
+ </script>
36
+ <div id="onepage-checkout-shipping-method-additional-load">
37
+ <?php echo $this->getChildHtml('additional') ?>
38
+ </div>
39
+ <div class="buttons-set" id="shipping-method-buttons-container">
40
+ <p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
41
+ <button type="button" class="button" onclick="shippingMethod.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
42
+ <span id="shipping-method-please-wait" class="please-wait" style="display:none;">
43
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
44
+ </span>
45
+ </div>
46
+ </form>
app/design/frontend/Kartparadigm/default/template/customer/form/mini.login.phtml ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <head>
2
+ <!-- Important Owl stylesheet -->
3
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
4
+
5
+ <!-- Default Theme -->
6
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
7
+
8
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
9
+
10
+ <!-- Include js plugin -->
11
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
12
+
13
+ <script>
14
+ var jslide=$.noConflict();
15
+
16
+ jslide(document).ready(function() {
17
+ jslide("#prev").css("display","none");
18
+ jslide("#next").css("display","block");
19
+
20
+ var owl = jslide("#owl-demo");
21
+
22
+ owl.owlCarousel({
23
+ items : 1,
24
+ pagination : false,
25
+ navigation : false,
26
+ slideSpeed :600,
27
+ itemsDesktop : [1024,1], //5 items between 1000px and 901px
28
+ itemsDesktopSmall : [900,1], // betweem 900px and 601px
29
+ itemsTablet: [600,1], //2 items between 600 and 0
30
+ itemsMobile : [479,1] // itemsMobile disabled - inherit from itemsTablet option
31
+ });
32
+ jslide(".next").click(function(){
33
+ owl.trigger('owl.next');
34
+ jslide("#prev").css("display","block");
35
+ jslide("#next").css("display","none");
36
+
37
+
38
+ })
39
+ jslide(".prev").click(function(){
40
+ owl.trigger('owl.prev');
41
+ jslide("#prev").css("display","none");
42
+ jslide("#next").css("display","block");
43
+ })
44
+ });
45
+
46
+ </script>
47
+ <style>
48
+ #owl-demo .item{
49
+ padding: 30px 0px;
50
+ margin: 5px;
51
+ -webkit-border-radius: 3px;
52
+ -moz-border-radius: 3px;
53
+ border-radius: 3px;
54
+ text-align: center;
55
+ }
56
+ .owl-theme .owl-controls {
57
+ text-align: center;
58
+ position: absolute;
59
+ z-index: 1002;
60
+ top: 90px;
61
+ left: 600px;
62
+ }
63
+ .customNavigation{
64
+ text-align: center;
65
+ }
66
+ .customNavigation a{
67
+ cursor: pointer !Important;
68
+ -webkit-user-select: none;
69
+ -khtml-user-select: none;
70
+ -moz-user-select: none;
71
+ -ms-user-select: none;
72
+ user-select: none;
73
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
74
+ }
75
+ #next{
76
+ position: absolute;
77
+ z-index: 1;
78
+ top:450px;
79
+ left: 45%;
80
+ }
81
+ #prev{
82
+ position: absolute;
83
+ z-index: 1;
84
+ top:450px;
85
+ left: 0%;
86
+ right: 1px;
87
+ }
88
+ #owl-demo .item {
89
+ margin: 1px;
90
+ }
91
+ .block-login {
92
+ box-shadow: none;
93
+ }
94
+ .block-login .block-title strong {
95
+ font-size: 22px;
96
+ line-height: 21px;
97
+ }
98
+ </style>
99
+ </head>
100
+ <center>
101
+ <div style="height:55px"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
102
+ <div id="owl-demo" class="owl-carousel owl-theme" style="width:350px;">
103
+
104
+ <div class="item">
105
+
106
+ <div class="block block-login">
107
+ <div class="block-slider">
108
+ <div id="slide1">
109
+ <div class="block-title" id="slide1div">
110
+ <strong><span>Sign In</span></strong>
111
+ </div>
112
+ <div class="block-content" >
113
+ <form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="login-form">
114
+ <?php echo $this->getBlockHtml('formkey'); ?>
115
+ <ul class="form-list">
116
+ <li>
117
+ <label for="email" class="required">Email Address</label>
118
+ <div class="input-box">
119
+ <input name="login[username]" value="" id="email" class="input-text required-entry validate-email" title="Email Address" type="text">
120
+ </div>
121
+ </li>
122
+ <li>
123
+ <label for="pass" class="required">Password</label>
124
+ <div class="input-box">
125
+ <input name="login[password]" class="input-text required-entry validate-password" id="pass" title="Password" type="password">
126
+ </div>
127
+ </li>
128
+ </ul>
129
+
130
+
131
+
132
+ <button type="submit" class="button" title="Login" name="send" id="send2"><span><span>Login</span></span></button>
133
+
134
+ </form><br><br><br><br><br>
135
+ </div>
136
+ </div><!--slide one-->
137
+ </div><!-- block slider -->
138
+ <div class="new-users" style="margin-top: 1px;">
139
+ <button type="button" title="Register" class="button invert" onclick="window.location='<?php echo $this->getCreateAccountUrl() ?>'"><span><span>Register</span></span></button>
140
+ </div>
141
+ </div><!-- block login -->
142
+
143
+ </div>
144
+ <div class="item">
145
+
146
+ <div class="block block-login">
147
+ <div class="block-slider">
148
+ <div id="slide2">
149
+ <div class="block-title" id="slide2div">
150
+ <strong><span>Forgot Your Password?</span></strong>
151
+ </div>
152
+ <div class="block-content" style="margin-bottom: 42px;">
153
+ <form action="<?php echo $this->getUrl('*/*/forgotpasswordpost') ?>" method="post" id="form-validate">
154
+ <ul class="form-list">
155
+ <li>
156
+ <label for="email" class="required">Email Address</label>
157
+ <div class="input-box">
158
+ <input name="email" alt="email" id="email_address" class="input-text required-entry validate-email" value="" type="text">
159
+ </div>
160
+ </li>
161
+ </ul>
162
+ <button type="submit" class="button" title="Submit"><span><span>Submit</span></span></button>
163
+ <a id="button2" style="cursor:pointer" class="forgot-password" id="back-login"></a>
164
+
165
+ </form><br><br><br><br><br>
166
+ </div>
167
+ </div><!-- end of slide2 -->
168
+ <div class="new-users" style="margin-top: 1px;">
169
+ <button type="button" title="Register" class="button invert" onclick="window.location='<?php echo $this->getCreateAccountUrl() ?>'"><span ><span>Register</span></span></button>
170
+ </div>
171
+ </div><!-- end of block slider -->
172
+ </div><!-- end of block block-login -->
173
+
174
+ </div>
175
+ </div>
176
+
177
+ <div class="customNavigation">
178
+ <a id="next" class="btn next">Forgot Your Password?</a>
179
+ <a id="prev" class="btn prev">Back to Login?</a>
180
+ </div>
181
+ </center>
182
+ <script type="text/javascript">
183
+ //<![CDATA[
184
+ var dataForm = new VarienForm('login-form', true);
185
+ var dataForgetForm = new VarienForm('form-validate', true);
186
+ //]]>
187
+ </script>
app/design/frontend/Kartparadigm/default/template/directory/currency.phtml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style type="text/css">
2
+ #mobile-currency{display: none;}
3
+
4
+ </style>
5
+ <?php if($this->getCurrencyCount()>1): ?>
6
+
7
+ <div class="lang-currency-container">
8
+
9
+ <!-- LANGUAGES BOF -->
10
+ <!-- LANGUAGES EOF -->
11
+ <!-- Currency BOF -->
12
+ <div id="desktop-currency" class="header-switch currency-switch">
13
+ <span id="currency">Currency:<span class="current" style='color: #1D1C1B;background-size: 7px 4px;'><?php echo $this->getCurrentCurrencyCode(); ?></span>
14
+ </span>
15
+ <div class="header-dropdown" style='background-color: #fff;'>
16
+ <ul >
17
+ <?php foreach ($this->getCurrencies() as $_code => $_name): ?>
18
+ <li><a href="<?php echo $this->getSwitchCurrencyUrl($_code)?>" ><?php echo $_name."-".$_code ?></a></li>
19
+ <?php endforeach; ?>
20
+ </ul>
21
+
22
+ </div>
23
+ </div>
24
+ <select style="height:20px;margin-top: 4px;" id="mobile-currency" name="currency" title="<?php echo $this->__('Select Your Currency') ?>" onchange="setLocation(this.value)">
25
+ <?php foreach ($this->getCurrencies() as $_code => $_name): ?>
26
+ <option value="<?php echo $this->getSwitchCurrencyUrl($_code) ?>"<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected="selected"<?php endif; ?>>
27
+ <?php echo $_name ?> - <?php echo $_code ?>
28
+ </option>
29
+ <?php endforeach; ?>
30
+ </select>
31
+ <!-- Currency EOF -->
32
+ </div>
33
+
34
+
35
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/home/home-slider.phtml ADDED
@@ -0,0 +1,265 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <?php
3
+ $sliderheight = Mage::getStoreConfig('theme/theme_config_home/sliderheight');
4
+ if($sliderheight==''):
5
+ $sliderheight="470";
6
+ elseif(strrpos("$sliderheight","%")):
7
+ $sliderheight= substr($sliderheight, 0, -1);
8
+ $sliderheight=$sliderheight*(4.7);
9
+ elseif($sliderheight>0):
10
+ $sliderheight= $sliderheight;
11
+ else :
12
+ endif;
13
+ ?>
14
+ <!---------- ===========================================
15
+ START OF Configurations ============================
16
+ -->
17
+ <!--- FIRST BANNER IMAGE AND TARGET -->
18
+ <!-- first image setting for banner-->
19
+ <?php $bannerimage1= Mage::getStoreConfig('theme/theme_config_home/bannerimage1');?>
20
+ <?php if($bannerimage1==''):
21
+ $imgUrl1=$this->getSkinUrl("images/fullimage1.jpg");
22
+ ?>
23
+ <?php else:
24
+ $imgUrl1=$this->getSkinUrl("$bannerimage1");
25
+ ?>
26
+ <?php endif; ?>
27
+ <!-- target for first banner image -->
28
+ <?php $mage1target= Mage::getStoreConfig('theme/theme_config_home/image1target');?>
29
+ <?php
30
+ if($mage1target==''):
31
+ $bannerTarget1="javascript:void(0)";
32
+ else:
33
+ $bannerTarget1=$this->getbaseUrl()."$mage1target";
34
+ endif; ?>
35
+
36
+ <!--- SECOND BANNER IMAGE AND TARGET -->
37
+ <!-- first image setting for banner-->
38
+ <?php $bannerimage2= Mage::getStoreConfig('theme/theme_config_home/bannerimage2');?>
39
+ <?php if($bannerimage2==''):
40
+ $imgUrl2=$this->getSkinUrl("images/fullimage2.jpg");
41
+ ?>
42
+ <?php else:
43
+ $imgUrl2=$this->getSkinUrl("$bannerimage2");
44
+ ?>
45
+ <?php endif; ?>
46
+ <!-- target for first banner image -->
47
+ <?php $image2target= Mage::getStoreConfig('theme/theme_config_home/image2target');?>
48
+ <?php
49
+ if($mage1target==''):
50
+ $bannerTarget2="javascript:void(0)";
51
+ else:
52
+ $bannerTarget2=$this->getbaseUrl()."$image2target";
53
+ endif; ?>
54
+
55
+ <!--- Third BANNER IMAGE AND TARGET -->
56
+ <!-- third image setting for banner-->
57
+ <?php $bannerimage3= Mage::getStoreConfig('theme/theme_config_home/bannerimage3');?>
58
+ <?php if($bannerimage3==''):
59
+ $imgUrl3=$this->getSkinUrl("images/fullimage3.jpg");
60
+ ?>
61
+ <?php else:
62
+ $imgUrl3=$this->getSkinUrl("$bannerimage3");
63
+ ?>
64
+ <?php endif; ?>
65
+ <!-- target for third banner image -->
66
+ <?php $image3target= Mage::getStoreConfig('theme/theme_config_home/image3target');?>
67
+ <?php
68
+ if($mage1target==''):
69
+ $bannerTarget3="javascript:void(0)";
70
+ else:
71
+ $bannerTarget3=$this->getbaseUrl()."$image3target";
72
+ endif; ?>
73
+ <!---------- ===========================================
74
+ END OF Configurations ============================
75
+ -->
76
+
77
+
78
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
79
+
80
+ <!-- Default Theme -->
81
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
82
+
83
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
84
+ <!-- Include js plugin -->
85
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
86
+
87
+
88
+
89
+ <?php $navButtonPos=-($sliderheight+160)/2;
90
+ $textPositionTop=(($sliderheight+160)/2)-150;
91
+ $buttonPositionTop=$textPositionTop+150;
92
+ $buttonPositionTop=$buttonPositionTop."px";
93
+ $textPositionTop=$textPositionTop."px";
94
+ $navButtonPos=$navButtonPos."px"; ?>
95
+ <?php $sliderheight=$sliderheight."px"; ?>
96
+
97
+ <script type="text/javascript">
98
+
99
+ var hslider=$.noConflict();
100
+ hslider(document).ready(function() {
101
+
102
+ var homeslider = hslider("#slider-demo");
103
+
104
+ homeslider.owlCarousel({
105
+ autoPlay:true ,
106
+ slideSpeed : 300,
107
+ paginationSpeed : 400,
108
+ singleItem:true
109
+ });
110
+ hslider(".next1").click(function(){
111
+ homeslider.trigger('owl.next');
112
+ })
113
+ hslider(".prev1").click(function(){
114
+ homeslider.trigger('owl.prev');
115
+ })
116
+ });
117
+ </script>
118
+
119
+ <style type="text/css">
120
+ #slider-demo .item img{
121
+ display: block;
122
+ width: 100%;
123
+ height: <?php echo $sliderheight; ?>;
124
+ }
125
+ .customNavigation{
126
+ text-align: center;
127
+
128
+ }
129
+ .customNavigation a{
130
+ cursor: pointer !Important;
131
+ -webkit-user-select: none;
132
+ -khtml-user-select: none;
133
+ -moz-user-select: none;
134
+ -ms-user-select: none;
135
+ user-select: none;
136
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
137
+ }
138
+ #hslider-prev{
139
+ width: 78px !Important;
140
+ height: 78px !Important;
141
+ background: url("<?php echo $this->getSkinUrl('images/slideshow_arrows.png')?>") no-repeat scroll 100% 0px #FFF !important;
142
+ transform: rotate(180deg);
143
+ position: relative;
144
+ z-index: 1;
145
+ float: left;
146
+ margin-top: <?php echo $navButtonPos; ?>;
147
+ margin-left: 7%;
148
+ }
149
+ #hslider-next{
150
+ width: 78px !Important;
151
+ height: 78px !Important;
152
+ background: url("<?php echo $this->getSkinUrl('images/slideshow_arrows.png')?>") no-repeat scroll 100% 0px #FFF !important;
153
+ position: relative;
154
+ z-index: 1;
155
+ float: right;
156
+ margin-top: <?php echo $navButtonPos; ?>;
157
+ margin-right: 2%;
158
+ }
159
+ #home-screen-slider{
160
+ width:100%;height:<?php echo $sliderheight; ?>;display:block;
161
+ }
162
+ .cms-index-index .col2-left-layout .col-main {
163
+ width: 870px;
164
+ border: medium none;
165
+ padding: 30px 45px 0px;
166
+ margin: 0px;
167
+ min-height: 400px;
168
+ float: right;
169
+ }
170
+ .cms-index-index .col2-right-layout .col-main {
171
+ width: 870px;
172
+ border: medium none;
173
+ /*padding: 30px 45px 0px;*/
174
+ margin: 0px;
175
+ min-height: 400px;
176
+ float: left;
177
+ }
178
+ .cms-index-index .col-left,.cms-index-index .col-right {
179
+ padding: 30px 0px 0px;
180
+ }
181
+ .col-left {
182
+ float: left;
183
+ width: 0px;
184
+ }
185
+ .col-right {
186
+ float: right;
187
+ width: 0p;
188
+ }
189
+ .cms-index-index .col3-layout .col-wrapper {
190
+ width: 940px;
191
+ float: left;
192
+ }
193
+ .block-tags .block-content .actions {
194
+ width: 225px !important;
195
+ box-shadow: none !important;
196
+ }
197
+ .homepage-banner-text{
198
+ position: absolute;
199
+ z-index: 1;
200
+ top: <?php echo $textPositionTop; ?>;
201
+ left: 500px;
202
+ color: #000;
203
+ font-size: 24px;
204
+ width: 260px;
205
+ }
206
+ a.slider-buynow {
207
+ color: #666;
208
+ position: absolute;
209
+ z-index: 1;
210
+ top: <?php echo $buttonPositionTop; ?>;
211
+ left: 600px;
212
+ background: linear-gradient(to bottom, #FFF 1%, #F2F2F2 100%) repeat scroll 0% 0% transparent !important;
213
+ padding: 15px;
214
+ height: 10px;
215
+ border-radius: 3px;
216
+ cursor: pointer;
217
+ text-decoration: none;
218
+ }
219
+
220
+ </style>
221
+
222
+
223
+
224
+
225
+ <div id="home-screen-slider">
226
+ <div id="slider-demo" class="owl-carousel owl-theme">
227
+
228
+ <div class="item">
229
+ <img src="<?php echo $imgUrl1 ?>" alt="Image1" />
230
+ <center>
231
+ <p class="homepage-banner-text">
232
+ Responsive Web Design services that Improve
233
+ website viewing experience
234
+ </p>
235
+ <a href="<?php echo $bannerTarget1; ?>" class="slider-buynow">Buy Now</a></center>
236
+
237
+ </div>
238
+ <div class="item">
239
+ <img src="<?php echo $imgUrl2 ?>" alt="Image2" />
240
+ <center>
241
+ <p class="homepage-banner-text">
242
+
243
+ </p>
244
+ <a style="display:none" href="<?php echo $bannerTarget2; ?>" class="slider-buynow">Buy Now</a></center>
245
+
246
+ </div>
247
+ <div class="item">
248
+ <img src="<?php echo $imgUrl3 ?>" alt="Image3" />
249
+ <center>
250
+ <p class="homepage-banner-text">
251
+ Responsive Design
252
+ </p>
253
+ <a href="<?php echo $bannerTarget3; ?>" class="slider-buynow">Buy Now</a></center>
254
+
255
+ </div>
256
+
257
+ </div>
258
+ <div class="customNavigation" style="display: block;">
259
+ <a class="btn prev1 jcarousel-prev-horizontal" id="hslider-prev"></a>
260
+
261
+ <a class="btn next1 jcarousel-next-horizontal" id="hslider-next"></a>
262
+ </div>
263
+ </div>
264
+
265
+
app/design/frontend/Kartparadigm/default/template/page/1column-login.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@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) 2012 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
+ <style type="text/css">
33
+ .footer-info{
34
+ display: none;
35
+ }
36
+ .search-field #search_mini_form .form-search button {
37
+ margin: -29px 0px 0px 140px !important;
38
+ }
39
+ .search-field #search {
40
+ width: 164px;
41
+ padding: 4px 27px 4px 7px;
42
+ height: 29px;
43
+ }
44
+ .account-create input.input-text, textarea,.block-login input.input-text{
45
+ height: 30px !important;
46
+ }
47
+
48
+ </style>
49
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
50
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
51
+ <head>
52
+
53
+ <?php echo $this->getChildHtml('head') ?>
54
+ </head>
55
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
56
+ <?php echo $this->getChildHtml('after_body_start') ?>
57
+ <div class="wrapper">
58
+ <?php echo $this->getChildHtml('global_notices') ?>
59
+ <div class="page">
60
+ <?php echo $this->getChildHtml('header') ?>
61
+
62
+ <div class="main-container col1-layout" style="position: relative; background: none repeat scroll transparent;background:url('<?php echo $this->getSkinUrl("images/login-bkg.jpg")?>');background-size: 150% 100%;background-position: 45% 0%;">
63
+
64
+ <div class="main row clearfix">
65
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
66
+
67
+ <div class="col-main">
68
+ <?php echo $this->getChildHtml('global_messages') ?>
69
+ <?php echo $this->getChildHtml('content') ?>
70
+ </div>
71
+
72
+ </div></div>
73
+ <?php echo $this->getChildHtml('footer') ?>
74
+ <?php echo $this->getChildHtml('newreference') ?>
75
+ <?php echo $this->getChildHtml('before_body_end') ?>
76
+ </div>
77
+ </div>
78
+ <?php echo $this->getAbsoluteFooter() ?>
79
+ </body>
80
+ </html>
app/design/frontend/Kartparadigm/default/template/page/1column.phtml ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php $slider= Mage::getStoreConfig('theme/theme_config_home/globalslideshow');?>
33
+
34
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
35
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
36
+ <head>
37
+
38
+ <?php echo $this->getChildHtml('head') ?>
39
+ </head>
40
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
41
+ <?php echo $this->getChildHtml('after_body_start') ?>
42
+ <div class="wrapper">
43
+ <?php echo $this->getChildHtml('global_notices') ?>
44
+ <div class="page">
45
+ <?php echo $this->getChildHtml('header') ?>
46
+ <div class="main-container col1-layout">
47
+ <div class="main">
48
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
49
+ <?php if($slider=='Yes'):?>
50
+ <?php echo $this->getChildHtml('full-width-slider') ?>
51
+ <?php endif;?>
52
+ <?php echo $this->getChildHtml('full-width-slider_home') ?>
53
+ <div class="col-main">
54
+ <?php echo $this->getChildHtml('global_messages') ?>
55
+ <?php echo $this->getChildHtml('content') ?>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ <?php echo $this->getChildHtml('footer') ?>
60
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
61
+ <?php echo $this->getChildHtml('before_body_end') ?>
62
+ </div>
63
+ </div>
64
+ <?php echo $this->getAbsoluteFooter() ?>
65
+ </body>
66
+ </html>
app/design/frontend/Kartparadigm/default/template/page/2columns-left.phtml ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php $slider= Mage::getStoreConfig('theme/theme_config_home/globalslideshow');?>
33
+
34
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
35
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
36
+ <head>
37
+
38
+ <?php echo $this->getChildHtml('head') ?>
39
+ </head>
40
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
41
+ <?php echo $this->getChildHtml('after_body_start') ?>
42
+ <div class="wrapper">
43
+ <?php echo $this->getChildHtml('global_notices') ?>
44
+ <div class="page">
45
+ <?php echo $this->getChildHtml('header') ?>
46
+ <div class="main-container col2-left-layout">
47
+ <div class="main">
48
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
49
+ <?php if($slider=='Yes'):?>
50
+ <?php echo $this->getChildHtml('full-width-slider') ?>
51
+ <?php endif;?>
52
+ <?php echo $this->getChildHtml('full-width-slider_home') ?>
53
+ <div class="col-main">
54
+ <?php echo $this->getChildHtml('global_messages') ?>
55
+ <?php echo $this->getChildHtml('content') ?>
56
+ </div>
57
+ <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
58
+ </div>
59
+ </div>
60
+ <?php echo $this->getChildHtml('footer') ?>
61
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
62
+ <?php echo $this->getChildHtml('before_body_end') ?>
63
+ </div>
64
+ </div>
65
+ <?php echo $this->getAbsoluteFooter() ?>
66
+ </body>
67
+ </html>
app/design/frontend/Kartparadigm/default/template/page/2columns-right.phtml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php $slider= Mage::getStoreConfig('theme/theme_config_home/globalslideshow');?>
33
+
34
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
35
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
36
+ <head>
37
+
38
+ <?php echo $this->getChildHtml('head') ?>
39
+ </head>
40
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
41
+ <?php echo $this->getChildHtml('after_body_start') ?>
42
+ <div class="wrapper">
43
+ <?php echo $this->getChildHtml('global_notices') ?>
44
+ <div class="page">
45
+ <?php echo $this->getChildHtml('header') ?>
46
+ <div class="main-container col2-right-layout">
47
+ <div class="main">
48
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
49
+ <?php if($slider=='Yes'):?>
50
+ <?php echo $this->getChildHtml('full-width-slider') ?>
51
+ <?php endif;?>
52
+ <?php echo $this->getChildHtml('full-width-slider_home') ?>
53
+ <div class="col-main">
54
+
55
+ <?php echo $this->getChildHtml('global_messages') ?>
56
+ <?php echo $this->getChildHtml('content') ?>
57
+
58
+ </div>
59
+ <div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
60
+ </div>
61
+ </div>
62
+ <?php echo $this->getChildHtml('footer') ?>
63
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
64
+ <?php echo $this->getChildHtml('before_body_end') ?>
65
+ </div>
66
+ </div>
67
+ <?php echo $this->getAbsoluteFooter() ?>
68
+ </body>
69
+ </html>
app/design/frontend/Kartparadigm/default/template/page/3columns.phtml ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php if($slider=='Yes'):?>
47
+ <?php echo $this->getChildHtml('full-width-slider') ?>
48
+ <?php endif;?>
49
+ <?php echo $this->getChildHtml('full-width-slider_home') ?>
50
+ <div class="col-wrapper">
51
+ <div class="col-main">
52
+ <?php echo $this->getChildHtml('global_messages') ?>
53
+ <?php echo $this->getChildHtml('content') ?>
54
+ </div>
55
+ <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
56
+ </div>
57
+ <div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
58
+ </div>
59
+ </div>
60
+ <?php echo $this->getChildHtml('footer') ?>
61
+ <?php echo $this->getChildHtml('global_cookie_notice') ?>
62
+ <?php echo $this->getChildHtml('before_body_end') ?>
63
+ </div>
64
+ </div>
65
+ <?php echo $this->getAbsoluteFooter() ?>
66
+ </body>
67
+ </html>
app/design/frontend/Kartparadigm/default/template/page/html/breadcrumbs.phtml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 if($crumbs && is_array($crumbs)): ?>
28
+ <div class="breadcrumbs">
29
+ <ul>
30
+ <?php foreach($crumbs as $_crumbName=>$_crumbInfo): ?>
31
+ <li class="<?php echo $_crumbName ?>">
32
+ <?php if($_crumbInfo['link']): ?>
33
+ <a href="<?php echo $_crumbInfo['link'] ?>" title="<?php echo $this->escapeHtml($_crumbInfo['title']) ?>"><?php echo $this->escapeHtml($_crumbInfo['label']) ?></a>
34
+ <?php elseif($_crumbInfo['last']): ?>
35
+ <strong><?php echo $this->escapeHtml($_crumbInfo['label']) ?></strong>
36
+ <?php else: ?>
37
+ <?php echo $this->escapeHtml($_crumbInfo['label']) ?>
38
+ <?php endif; ?>
39
+ <?php if(!$_crumbInfo['last']): ?>
40
+ <span> </span>
41
+ <?php endif; ?>
42
+ </li>
43
+ <?php endforeach; ?>
44
+ </ul>
45
+ </div>
46
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/page/html/footer.phtml ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
3
+ <script type="text/javascript">
4
+ /* toTop Button start*/
5
+ var jqTop=$.noConflict();
6
+ jqTop(document).ready(function(){
7
+ jqTop(function() {
8
+ jqTop(window).scroll(function() {
9
+ if(jqTop(this).scrollTop() > 300) {
10
+ jqTop('#toTop').fadeIn();
11
+ } else {
12
+ jqTop('#toTop').fadeOut();
13
+ }
14
+ });
15
+ jqTop('#toTop').click(function() {
16
+ jqTop('body,html').animate({scrollTop:0},500);
17
+ });
18
+ });
19
+ });
20
+ /* toTop Button end*/
21
+ </script>
22
+
23
+ <?php $footerbox1 = Mage::getModel('cms/block')->load('rt001-footer-box1'); ?>
24
+ <?php $footerbox2 = Mage::getModel('cms/block')->load('rt001-footer-box2'); ?>
25
+ <?php $footerbox3 = Mage::getModel('cms/block')->load('rt001-footer-box3'); ?>
26
+ <?php $footerbox4 = Mage::getModel('cms/block')->load('rt001-footer-box4'); ?>
27
+ <style type="text/css">
28
+ .footer-info{
29
+ text-align: center;
30
+ }
31
+ </style>
32
+
33
+ <div class="footer-container">
34
+
35
+ <div class="footer-info">
36
+ <div class="row clearfix ">
37
+
38
+ <div class="grid_3"><a href="#" class="block-control"></a>
39
+ <h4><?php echo $footerbox1->getTitle(); ?></h4>
40
+ <div style="" class="block-content clearfix">
41
+ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('rt001-footer-box1')->toHtml() ?>
42
+ </div>
43
+ </div>
44
+
45
+ <div class="grid_3"><a href="#" class="block-control"></a>
46
+ <h4><?php echo $footerbox2->getTitle(); ?></h4>
47
+ <div style="" class="block-content clearfix">
48
+ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('rt001-footer-box2')->toHtml() ?>
49
+ </div>
50
+
51
+ </div>
52
+ <div class="grid_3 "><a href="#" class="block-control"></a>
53
+ <h4><?php echo $footerbox3->getTitle(); ?></h4>
54
+ <div style="" class="block-content clearfix">
55
+ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('rt001-footer-box3')->toHtml() ?>
56
+ </div>
57
+ </div>
58
+ <div class="grid_3"><a href="#" class="block-control"></a>
59
+ <h4><?php echo $footerbox4->getTitle(); ?></h4>
60
+ <div style="" class="block-content clearfix">
61
+ <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('rt001-footer-box3')->toHtml() ?>
62
+ </div> </div>
63
+
64
+ </div>
65
+ </div>
66
+ <footer class="row clearfix">
67
+ <div class="grid_6">
68
+ <address><?php echo $this->getCopyright() ?></address>
69
+ </div>
70
+ <div class="grid_6">
71
+
72
+ <ul class="links">
73
+ <li ><a href="javascript:void(0);">About Us</a></li> |
74
+ <li><a href="javascript:void(0);">Delivery &amp; Returns</a></li> |
75
+ <li><a href="javascript:void(0);">Terms &amp; Conditions</a></li> |
76
+ <li><a href="javascript:void(0);">Contact Us</a></li>
77
+ </ul>
78
+ </div>
79
+ </footer>
80
+ </div>
81
+
82
+ <a style="display: inline;" id="toTop"><span style="opacity: 0;" id="toTopHover"></span>To Top</a>
app/design/frontend/Kartparadigm/default/template/page/html/head.phtml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <meta http-equiv="Content-Type" content="<?php echo $this->getContentType() ?>" />
28
+ <title><?php echo $this->getTitle() ?></title>
29
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
30
+ <meta name="description" content="<?php echo htmlspecialchars($this->getDescription()) ?>" />
31
+ <meta name="keywords" content="<?php echo htmlspecialchars($this->getKeywords()) ?>" />
32
+ <meta name="robots" content="<?php echo htmlspecialchars($this->getRobots()) ?>" />
33
+ <link rel="icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" />
34
+ <link rel="shortcut icon" href="<?php echo $this->getFaviconFile(); ?>" type="image/x-icon" />
35
+ <!--[if lt IE 7]>
36
+ <script type="text/javascript">
37
+ //<![CDATA[
38
+ var BLANK_URL = '<?php echo $this->helper('core/js')->getJsUrl('blank.html') ?>';
39
+ var BLANK_IMG = '<?php echo $this->helper('core/js')->getJsUrl('spacer.gif') ?>';
40
+ //]]>
41
+ </script>
42
+ <![endif]-->
43
+ <?php echo $this->getCssJsHtml() ?>
44
+ <?php echo $this->getChildHtml() ?>
45
+ <?php echo $this->helper('core/js')->getTranslatorScript() ?>
46
+ <?php echo $this->getIncludes() ?>
app/design/frontend/Kartparadigm/default/template/page/html/header.phtml ADDED
@@ -0,0 +1,530 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <?php
31
+ $header_restore = Mage::getStoreConfig('theme/theme_config_res/headerres');
32
+ $footer_restore = Mage::getStoreConfig('theme/theme_config_res/footerres');
33
+ $them_restore = Mage::getStoreConfig('theme/theme_config_res/themres');
34
+ /* $header_restore = Mage::getStoreConfig('theme/theme_config_restore /heade_restore');
35
+ $footer_restore = Mage::getStoreConfig('theme/theme_config_restore /foote_restore');
36
+ */
37
+ ?>
38
+ <?php
39
+ $font = Mage::getStoreConfig('theme/theme_config/font');
40
+ $themeColor = "#".Mage::getStoreConfig('theme/theme_config/color');
41
+ ?>
42
+
43
+
44
+ <?php if($font=='Arial'):else:?>
45
+ <link href='http://fonts.googleapis.com/css?family=<?php echo str_replace(' ', '+', $font); ?>'>
46
+ <style>
47
+
48
+ body{
49
+ font-family:<?php echo $font ?> !important ;
50
+
51
+ }
52
+ </style>
53
+ <?php endif ;?>
54
+ <!--================================================================================================-->
55
+ <!--*******************************Theme SETTINGS***************************************-->
56
+ <!--================================================================================================-->
57
+
58
+
59
+ <?php if($themeColor==''||$themeColor=="#FFFFFF"||$them_restore=='Yes'):?>
60
+ <?php else :?>
61
+ <style type="text/css">
62
+ /*header styles start*/
63
+ /* mini-nav */
64
+ .slicknav_menu {
65
+ background: <?php echo $themeColor; ?> !important;
66
+ }
67
+ /* mini-nav */
68
+ #nav > li > a:hover > span, #nav > li.over > a > span, #nav > li.active > a > span {
69
+ border-top: 3px solid <?php echo $themeColor; ?> !important;
70
+ }
71
+ .compare-top,.cart-top > a,button.button span,#toTop{
72
+ background-color:<?php echo $themeColor; ?> !important;
73
+ }
74
+
75
+ .block,.block-login{
76
+ border-color:<?php echo $themeColor; ?> !important;
77
+ }
78
+
79
+ .search-top,.search-form-border,.search-top-container .search-form .search-top-title span.icon,
80
+ .compare-top-container .details-border,.compare-top-container .details-border,
81
+ .compare-top-title a span.icon{
82
+ background-color:<?php echo $themeColor; ?> !important;
83
+ }
84
+ .compare-top:hover {background-color:#322c29 !important; }
85
+ .search-form-border:before,.compare-top-container .details-border:before{
86
+ border-color: transparent transparent <?php echo $themeColor; ?> !important; transparent;
87
+ }
88
+ /*header styles end*/
89
+ /*footer styles start*/
90
+ .footer-info a,
91
+ .footer-info .information ul li:before, .footer-info ul.disc li:before{
92
+ color:<?php echo $themeColor; ?> !important;
93
+ }
94
+ .footer-info ul.social li a:hover,.footer-info .block-control:hover,
95
+ .footer-info .block-control-hide:hover{
96
+ background-color:<?php echo $themeColor; ?> !important;
97
+ }
98
+ /*footer styles end*/
99
+ /*product-list styles start*/
100
+ .price-box .price,.products-grid .add-to-links li span,
101
+ .toolbar-dropdown ul li a:hover, .toolbar-dropdown ul li.selected a{
102
+ color:<?php echo $themeColor; ?> !important;
103
+ }
104
+ .products-grid .hover .button-container button.button span span em,.products-grid .hover .price-box,
105
+ .quick-view {
106
+ background-color:<?php echo $themeColor; ?> !important;
107
+ }
108
+ .hover .price-box .price{
109
+ color:#FFFFFF !important;
110
+ }
111
+ .products-list .button-container .btn-add-cart span{
112
+ background-color:<?php echo $themeColor; ?> !important;
113
+ }
114
+ .product-tabs li.active,.product-tabs-container h2.active{
115
+ border-color:<?php echo $themeColor; ?> !important;
116
+ }
117
+ /*product-list styles end*/
118
+ /*product-view styles start*/
119
+ ul.product-tabs li a{
120
+ background:#FFFFFF !important;
121
+ }
122
+ .product-tabs li a.selected{
123
+ border-top: 4px solid <?php echo $themeColor; ?> !important;
124
+ background:#FFFFFF !important;
125
+ }
126
+ .product-view .add-to-links li:hover span.icon {
127
+ background-color:<?php echo $themeColor; ?> !important;
128
+ }
129
+ button.button:hover span {background-color:#393431 !important; }
130
+ /*product-view styles end*/
131
+ /*cart-page styles start*/
132
+ .cart-top > a:hover ,
133
+ .data-table .btn-edit2:hover,.data-table .btn-remove2:hover{background-color:#393431 !important;}
134
+ #toTop:hover{ background-color:#FFFFFF !important; }
135
+ .data-table {
136
+ border-top: 6px solid <?php echo $themeColor; ?> !important;
137
+ }
138
+ .cart .cart-collaterals .cart-block {
139
+ border-color:<?php echo $themeColor; ?> !important;
140
+ }
141
+ .cart-top-container .details-border,.cart-top-title a span.icon{
142
+ background-color:<?php echo $themeColor; ?> !important;
143
+ }
144
+ button.invert span, button.btn-continue span, .cart-shipping button span, .cart-coupon button span{
145
+ background-color:<?php echo $themeColor; ?> !important;
146
+ }
147
+ /*cart-page styles end*/
148
+ /*checkout-page styles start*/
149
+
150
+ .top-opc li.allow:hover .number{
151
+ background-color:<?php echo $themeColor; ?> !important;
152
+ }
153
+ .opc h3 ,.opc h4 {
154
+ color:#393431 !important;
155
+ }
156
+ .opc .step{
157
+ border-color:<?php echo $themeColor; ?> !important;
158
+ }
159
+ #checkout-step-login .block-checkout-register ul.ul li:before,
160
+ .block-progress dt:before{
161
+ color:<?php echo $themeColor; ?> !important;
162
+ }
163
+ /*checkout-page styles end*/
164
+ /*customer-acc-page styles start*/
165
+ .pager .pages .current,.pager .pages li a:hover{
166
+ color:<?php echo $themeColor; ?> !important;
167
+ }
168
+ /*customer-acc-page styles end*/
169
+
170
+ /*slider-button styles start*/
171
+
172
+ .jcarousel-next-horizontal:hover,.jcarousel-prev-horizontal:hover {
173
+ background-color:<?php echo $themeColor; ?> !important;
174
+ }
175
+ /*slider-button styles end*/
176
+ /******************************************other************************************/
177
+ .flex-control-paging li a:hover { background: <?php echo $themeColor; ?> !important; }
178
+ .flex-control-paging li a.flex-active { background:<?php echo $themeColor; ?> !important; cursor: default; }
179
+ /**********************************************************************************/
180
+ </style>
181
+ <?php endif ;?>
182
+ <!--================================================================================================-->
183
+ <!--*******************************HEADER SETTINGS***************************************-->
184
+ <!--================================================================================================-->
185
+ <?php
186
+ $toolbarbgcolor = "#".Mage::getStoreConfig('theme/theme_config_header/toolbarbgcolor');
187
+ $toolbarcolor = "#".Mage::getStoreConfig('theme/theme_config_header/toolbarcolor');
188
+ $toolbarhovercolor ="#". Mage::getStoreConfig('theme/theme_config_header/toolbarhovercolor');
189
+ $headerbgcolor = "#".Mage::getStoreConfig('theme/theme_config_header/headerbgcolor');
190
+ ?>
191
+ <?php if ($header_restore=='Yes'): ?>
192
+ <?php else :?>
193
+ <?php if($toolbarbgcolor ==''||$toolbarbgcolor =="#FFFFFF"):?>
194
+
195
+ <?php else :?>
196
+ <style>
197
+ .top-switch-bg {
198
+ background: none repeat scroll 0% 0% <?php echo $toolbarbgcolor;?> !important;
199
+ }
200
+ </style>
201
+ <?php endif ;?>
202
+
203
+ <!-- TOOL BAR COLOR-->
204
+ <?php if($toolbarcolor ==''||$toolbarcolor =="#FFFFFF"):?>
205
+
206
+ <?php else :?>
207
+ <style>
208
+ .top-switch-bg .links li a, .language-header-dropdown ul li a , .top-switch-bg .links li.separator {
209
+ color: <?php echo $toolbarcolor?>;
210
+ }
211
+ </style>
212
+ <?php endif ;?>
213
+
214
+ <!-- TOOL BAR HOVER -->
215
+ <?php if($toolbarhovercolor ==''||$toolbarhovercolor =="#FFFFFF"):?>
216
+
217
+ <?php else :?>
218
+ <style>
219
+ .top-switch-bg .links li a:hover{
220
+ color: <?php echo $toolbarhovercolor?>;
221
+ }
222
+ </style>
223
+ <?php endif ;?>
224
+ <!-- HEADER BG COLOR -->
225
+ <?php if($headerbgcolor ==''||$headerbgcolor =="#FFFFFF"):?>
226
+
227
+ <?php else :?>
228
+ <style>
229
+ #headdemo {
230
+ background: none repeat scroll 0% 0% <?php echo $headerbgcolor ;?> !important;
231
+ }
232
+ #nav > li > a > span {
233
+ background: none repeat scroll 0% 0% <?php echo $headerbgcolor ;?> !important;
234
+
235
+ }
236
+ </style>
237
+ <?php endif ;?>
238
+ <?php endif ;?>
239
+ <!--================================================================================================-->
240
+ <!--*******************************FOOTER SETTINGS***************************************-->
241
+ <!--================================================================================================-->
242
+ <?php
243
+ $footerbgcolor ="#". Mage::getStoreConfig('theme/theme_config_footer/footerbgcolor');
244
+ $footertextcolor = "#".Mage::getStoreConfig('theme/theme_config_footer/footertextcolor');
245
+ $footerlinkscolor ="#". Mage::getStoreConfig('theme/theme_config_footer/footerlinkscolor');
246
+ $footertexthovercolor ="#". Mage::getStoreConfig('theme/theme_config_footer/footertexthovercolor');
247
+ ?>
248
+ <?php if($footer_restore=='Yes'):?>
249
+ <?php else :?>
250
+ <!-- Footer BG COLOR -->
251
+ <?php if($footerbgcolor ==''||$footerbgcolor =="#FFFFFF"):?>
252
+
253
+ <?php else :?>
254
+ <style>
255
+ .footer-container {
256
+ background: none repeat scroll 0% 0% <?php echo$footerbgcolor ?> !important;
257
+ }
258
+ </style>
259
+ <?php endif ;?>
260
+ <!-- Footer TExt COLOR -->
261
+ <?php if($footertextcolor ==''||$footertextcolor =="#FFFFFF"):?>
262
+
263
+ <?php else :?>
264
+ <style>
265
+ .footer-container {
266
+ color: <?php echo $footertextcolor; ?> !important;
267
+ }
268
+ </style>
269
+ <?php endif ;?>
270
+ <!-- Footer Links COLOR -->
271
+ <?php if($footerlinkscolor==''||$footerlinkscolor =="#FFFFFF"):?>
272
+ <?php else :?>
273
+ <style>
274
+ .footer-container .links li a,.footer-container ul li a{
275
+ color: <?php echo $footerlinkscolor; ?> !important;
276
+ }
277
+ </style>
278
+ <?php endif ;?>
279
+ <!-- Footer Links Hover COLOR -->
280
+ <?php if($footertexthovercolor==''||$footertexthovercolor =="#FFFFFF"):?>
281
+ <?php else :?>
282
+ <style>
283
+ .footer-container .links li a:hover,.footer-container ul li a:hover{
284
+ color: <?php echo $footertexthovercolor; ?> !important;
285
+ }
286
+
287
+ </style>
288
+ <?php endif ;?>
289
+ <?php endif ;?>
290
+ <head>
291
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
292
+ <script type="text/javascript">
293
+
294
+ var topvar=$.noConflict();
295
+
296
+ /* top cart and compare jquery effect start */
297
+ topvar(document).ready(function(){
298
+ topvar("#top-comp-content").css("display","none");
299
+ topvar("#top-cart-content").css("display","none");
300
+
301
+ topvar(".compare-top-container").hover(function(){
302
+ topvar("#top-comp-content").css("display","block");
303
+ },function(){
304
+ topvar("#top-comp-content").css("display","none");
305
+ });
306
+
307
+
308
+ topvar(".cart-top-container").hover(function(){
309
+ topvar("#top-cart-content").css("display","block");
310
+ },function(){
311
+ topvar("#top-cart-content").css("display","none");
312
+ });
313
+ /* top cart and compare jquery effect end */
314
+
315
+
316
+
317
+ /*currency jquery effect start*/
318
+
319
+ topvar("#currency").hover(function(){
320
+ topvar('.header-switch').css('background-color','#fff');
321
+ topvar('.header-switch').css('box-shadow','0px 0px 10px 0px rgba(0, 0, 0, 0.15)');
322
+
323
+ topvar(".header-dropdown").slideDown();
324
+
325
+ });
326
+ topvar(".header-dropdown").hover(function(){
327
+ topvar('.header-switch').css('background-color','#fff');
328
+ topvar(".header-dropdown").stop();
329
+
330
+ });
331
+ topvar(".header-dropdown,#currency").mouseleave(function(){
332
+ topvar('.header-switch').css('box-shadow','none');
333
+ topvar('.header-switch').css('background-color','#F9F9F9');
334
+ topvar(".header-dropdown").slideUp();
335
+
336
+ });
337
+ /*currency jquery effect end*/
338
+
339
+ /*language jquery effect start*/
340
+
341
+ topvar("#language").hover(function(){
342
+ topvar('.language-switch').css('background-color','#fff');
343
+ topvar('.language-switch').css('box-shadow','0px 0px 10px 0px rgba(0, 0, 0, 0.15)');
344
+
345
+ topvar(".language-header-dropdown").slideDown();
346
+
347
+ });
348
+ topvar(".language-header-dropdown").hover(function(){
349
+ topvar('.language-switch').css('background-color','#fff');
350
+ topvar(".language-header-dropdown").stop();
351
+
352
+ });
353
+ topvar(".language-header-dropdown,#language").mouseleave(function(){
354
+ topvar('.language-switch').css('box-shadow','none');
355
+ topvar('.language-switch').css('background-color','#F9F9F9');
356
+ topvar(".language-header-dropdown").slideUp();
357
+
358
+ });
359
+
360
+ });
361
+ </script>
362
+ <style type="text/css">
363
+
364
+ /*top compare styles*/
365
+
366
+ .top-dropdowns {
367
+ position: absolute;
368
+ right: 100px;
369
+ top: 50%;
370
+ width: 350px;
371
+ }
372
+ #nav > li > a > span {
373
+ padding: 0px 10px;
374
+ border-top: 3px solid transparent;
375
+ background: none repeat scroll 0% 0% #000;
376
+ color:#FFF;
377
+ }
378
+
379
+ #headdemo{
380
+ background: none repeat scroll 0% 0% #000;
381
+ z-index:9999;
382
+ width: 100%;
383
+ }
384
+ .cart-top > a span {
385
+ color:#FFF;
386
+ }
387
+ .search-top-container {
388
+ float: none;
389
+ width:200px;
390
+ }
391
+ </style>
392
+ </head>
393
+
394
+
395
+ <div class="header-container">
396
+
397
+ <div class="top-switch-bg">
398
+ <div class="row clearfix">
399
+ <div class="grid_6">
400
+
401
+ <!-- LANGUAGES BOF -->
402
+ <div class="language-switch">
403
+ <?php echo $this->getChildHtml('store_language') ?>
404
+
405
+ </div>
406
+ <?php echo $this->getChildHtml('top-currency') ?>
407
+
408
+ </div>
409
+ <div class="grid_6">
410
+ <?php echo $this->getChildHtml('topLinks') ?>
411
+ </div>
412
+ </div>
413
+ </div>
414
+
415
+ <div id="headdemo" style="height: 85px;" >
416
+ <div style="height: 85px;" class="header-wrapper search-field">
417
+
418
+
419
+ <header>
420
+ <div class="row clearfix">
421
+ <div class="grid_12 " style='margin-top: -10px;margin-bottom: -14px;'>
422
+ <!-- START oF LOGO -->
423
+ <?php if ($this->getIsHomePage()):?>
424
+ <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>
425
+ <?php else:?>
426
+ <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>
427
+ <?php endif?>
428
+ <!-- END OF LOGO -->
429
+ <!-- START oF NAVIGATION MENU -->
430
+ <?php echo $this->getChildHtml('topMenu') ?>
431
+
432
+ <!-- END oF NAVIGATION MENU -->
433
+
434
+ <div class="top-dropdowns">
435
+ <!-- cart BOF -->
436
+ <div class="cart-top-title">
437
+ <a href="<?php echo Mage::getBaseUrl()?>checkout/cart/" class="clearfix"><span class="icon"></span>Bag</a></div>
438
+ <div class="cart-top-container">
439
+ <div class="cart-top">
440
+ <a class="summary" href="<?php echo Mage::getBaseUrl()?>checkout/cart/"><span>BAG (<?php if($this->helper('checkout/cart')->getSummaryCount()){echo $this->helper('checkout/cart')->getSummaryCount();}else {echo "0";} ?>)</span></a>
441
+ </div>
442
+ <div id="top-cart-content" style="z-index: 1;position: absolute;top: 40px;left: -110px;">
443
+ <?php echo $this->getChildHtml('topcart'); ?>
444
+ </div>
445
+ </div>
446
+ <!-- cart EOF -->
447
+
448
+ <!--compare start -->
449
+ <div class="compare-top-title">
450
+ <a href="#" class="clearfix" id="top-comp-icon"><span class="icon"></span>Compare</a>
451
+ </div>
452
+ <div class="compare-top-container">
453
+ <div class="compare-top" >
454
+
455
+ </div>
456
+ <div id="top-comp-content" style="z-index: 1;position: absolute;top: 40px;left: -50px;">
457
+ <?php echo $this->getChildHtml('topcomp'); ?>
458
+ </div>
459
+ </div>
460
+ <!--compare start -->
461
+ <!-- top search start-->
462
+ <div class="search-top-container">
463
+ <?php echo $this->getChildHtml('topSearch') ?>
464
+ </div>
465
+ <!-- top search end-->
466
+ <div class="clear"></div>
467
+ </div>
468
+ </div>
469
+ </div>
470
+ </header>
471
+
472
+
473
+ <?php echo $this->getChildHtml('topContainer'); ?>
474
+ </div>
475
+ </div>
476
+ </div>
477
+
478
+ <!--- SCRIPT FOR FIXED HEADER -->
479
+ <script>
480
+ jQuery( document ).ready(function( $ ) {
481
+
482
+ var div = $('#headdemo');
483
+ var start = $(div).offset().top;
484
+
485
+ $.event.add(window, "scroll", function() {
486
+ var p = $(window).scrollTop();
487
+ $(div).css('position',((p)>start) ? 'fixed' : 'static');
488
+ $(div).css('top',((p)>start) ? '0px' : '');
489
+ });
490
+
491
+ });
492
+ </script>
493
+
494
+
495
+ <!-- SCRIPT START FOR SLIDERS -->
496
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.css")?>">
497
+
498
+ <!-- Default Theme -->
499
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl("owl-carousel/owl.theme.css")?>">
500
+
501
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
502
+ <!-- Include js plugin -->
503
+ <script src="<?php echo $this->getSkinUrl("owl-carousel/owl.carousel.js")?>"></script>
504
+
505
+
506
+
507
+ <script type="text/javascript">
508
+ var custom_slider=$.noConflict();
509
+ custom_slider(document).ready(function() {
510
+ custom_slider("#custom_slider").owlCarousel({
511
+
512
+ slideSpeed : 300,
513
+ paginationSpeed : 400,
514
+ singleItem:true,
515
+ autoPlay:true
516
+
517
+ });
518
+ });
519
+ </script>
520
+ <style type="text/css">
521
+ #custom_slider .item img{
522
+ display: block;
523
+ width: 100%;
524
+ height: auto;
525
+ }
526
+ #custom_slider{
527
+ margin-top: 10px;
528
+ }
529
+ </style>
530
+ <!-- SCRIPT END FOR SLIDERS -->
app/design/frontend/Kartparadigm/default/template/page/html/top.links.phtml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ * @deprecated after 1.4.0.1
30
+ */
31
+ ?>
32
+ <?php if($toplinks && is_array($toplinks)): ?>
33
+ <ul class="links">
34
+ <?php echo $this->getChildHtml() ?>
35
+ <?php foreach($toplinks as $_toplink): ?>
36
+
37
+ <li<?php if($_toplink['first']||$_toplink['last']): ?> class="<?php if($_toplink['first']): ?>first<?php endif; ?>
38
+
39
+ </li>
40
+ <li class="separator">&nbsp;</li>
41
+ <?php if($_toplink['last']): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_toplink['liParams'] ?>><?php echo $_toplink['beforeText'] ?><a <?php echo $_toplink['aParams'] ?>><?php echo $_toplink['innerText'] ?></a><?php echo $_toplink['afterText'] ?>
42
+
43
+ <?php endforeach; ?>
44
+ </ul>
45
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/page/html/topmenu.phtml ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <head><meta name="viewport" content="width=device-width, initial-scale=1.0" />
35
+ <style type="text/css">
36
+ .slicknav_menu,#menu {
37
+ display:none;
38
+ }
39
+ .js .slicknav_menu {
40
+ width: 230px !important;
41
+ padding-top: 2px !important;
42
+ padding-bottom: 8px !important;
43
+ }
44
+ .slicknav_btn {
45
+ margin: 0px !important;
46
+ float: none !important;
47
+ background: none !important;
48
+ }
49
+ .slicknav_menu .slicknav_menutxt {
50
+ margin-left: 10px !important;
51
+ }
52
+ .slicknav_nav .slicknav_arrow {
53
+ float: right !important;
54
+ }
55
+ .slicknav_menu .slicknav_icon {
56
+ float: left;
57
+ margin: 0.188em 0px 0px 0px;
58
+ }
59
+ @media screen and (max-width: 50em) {
60
+ .js #menu {
61
+ display:none;
62
+ }
63
+ #nav { display: none;}
64
+ .js .slicknav_menu {
65
+ display:block;
66
+ }
67
+ }
68
+ </style>
69
+ <script src="<?php echo $this->getSkinUrl("js/modernizr.min.js")?>"></script>
70
+ </head>
71
+ <?php $_menu = $this->getHtml('level-top') ?>
72
+ <?php if($_menu): ?>
73
+ <div class="nav-container">
74
+ <ul id="nav">
75
+ <?php echo $_menu ?>
76
+
77
+
78
+ </ul>
79
+ <ul id="menu">
80
+ <?php echo $_menu ?>
81
+
82
+
83
+ </ul>
84
+ </div>
85
+ <?php endif ?>
86
+ <script src="<?php echo $this->getSkinUrl("js/jquery.min-1.11.1.js")?>"></script>
87
+ <script src="<?php echo $this->getSkinUrl("js/jquery.slicknav.js")?>"></script>
88
+ <script type="text/javascript">
89
+ var nav=$.noConflict();
90
+ nav(document).ready(function(){
91
+ nav('#menu').slicknav();
92
+ });
93
+ </script>
app/design/frontend/Kartparadigm/default/template/page/switch/languages.phtml ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ <style type="text/css">
4
+
5
+ .language-header-dropdown {
6
+ background: none repeat scroll 0% 0% #FFF;
7
+ padding: 14px;
8
+ display: none;
9
+ position: absolute;
10
+ margin: 0px;
11
+ box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
12
+
13
+ }
14
+ .language-header-dropdown ul li a {
15
+ display: block;
16
+ line-height: 28px;
17
+ min-width: 110px;
18
+ margin: 0px;
19
+ padding: 0px 9px;
20
+ color: #8C8C8C;
21
+ transition: #F2F1F0 200ms ease-in-out 0s;
22
+ }
23
+ .language-header-dropdown ul li a:hover { background:#f5f4f4; text-decoration:none; }
24
+
25
+ .language-switch {
26
+ line-height: 29px;
27
+ background-repeat: no-repeat;
28
+ background-position: 0% 50%;
29
+ margin-right: 2px;
30
+ float: left;
31
+ }
32
+ #language {
33
+ color: rgba(108, 108, 108, 0.59);
34
+ display: block;
35
+ padding: 0px 10px;
36
+ position: relative;
37
+ z-index: 2;
38
+ }
39
+ .language-switch span.current {
40
+ display: inline;
41
+ color: rgba(29, 28, 27, 0.59);
42
+ padding: 0px 12px 0px 5px;
43
+ background: url("http://shopper.queldorei.com/skin/frontend/shopper/default/images/arrow_switch.png") no-repeat scroll 100% 50% transparent;
44
+ }
45
+ #mobile-lang{display: none;}
46
+ </style>
47
+ <!-- Currency BOF -->
48
+ <div id="desktop-lang" class="lang-currency-container">
49
+ <?php if(count($this->getStores())>1): ?>
50
+ <?php $currentStore = Mage::app()->getStore()->getName(); ?>
51
+ <span id="language"><?php echo $this->__('Language:') ?>
52
+ <span class="current" style='color: #1D1C1B;background-size: 7px 4px;'>
53
+ <?php echo $currentStore; ?></span>
54
+ </span>
55
+ <div class="language-header-dropdown" style='background-color: #fff;'>
56
+ <ul>
57
+ <?php foreach ($this->getStores() as $_lang): ?>
58
+ <?php $_selected = ($_lang->getId() == $this->getCurrentStoreId()) ? ' selected="selected"' : '' ?>
59
+ <li><a href="<?php echo $_lang->getCurrentUrl() ?>" ><?php echo $this->escapeHtml($_lang->getName()) ?></a></li>
60
+ <?php endforeach; ?>
61
+ </ul>
62
+ </div>
63
+
64
+ <?php endif; ?>
65
+ </div>
66
+ <!-- Currency EOF -->
67
+
68
+ <?php if(count($this->getStores())>1): ?>
69
+ <div id="mobile-lang" class="form-language">
70
+ <!--<label for="select-language"><?php echo $this->__('Your Language:') ?></label>-->
71
+ <select style="height: 20px;margin-top: 4px;" id="select-language" title="<?php echo $this->__('Your Language') ?>" onchange="window.location.href=this.value">
72
+ <?php foreach ($this->getStores() as $_lang): ?>
73
+ <?php $_selected = ($_lang->getId() == $this->getCurrentStoreId()) ? ' selected="selected"' : '' ?>
74
+ <option value="<?php echo $_lang->getCurrentUrl() ?>"<?php echo $_selected ?>><?php echo $this->escapeHtml($_lang->getName()) ?></option>
75
+ <?php endforeach; ?>
76
+ </select>
77
+ </div>
78
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/page/template/links.phtml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ * @see Mage_Page_Block_Template_Links
30
+ */
31
+ ?>
32
+ <?php $_links = $this->getLinks(); ?>
33
+ <?php if(count($_links)>0): ?>
34
+ <ul class="links"<?php if($this->getName()): ?> id="<?php echo $this->getName() ?>"<?php endif;?>>
35
+ <?php foreach($_links as $_link): ?>
36
+ <?php if ($_link instanceof Mage_Core_Block_Abstract):?>
37
+ <?php echo $_link->toHtml() ?>
38
+ <li class="separator">&nbsp;</li>
39
+ <?php else: ?>
40
+ <li<?php if($_link->getIsFirst()||$_link->getIsLast()): ?> class="<?php if($_link->getIsFirst()): ?>first<?php endif; ?><?php if($_link->getIsLast()): ?> last<?php endif; ?>"<?php endif; ?> <?php echo $_link->getLiParams() ?>><?php echo $_link->getBeforeText() ?><a href="<?php echo $_link->getUrl() ?>" title="<?php echo $_link->getTitle() ?>" <?php echo $_link->getAParams() ?>><?php echo $_link->getLabel() ?></a><?php echo $_link->getAfterText() ?></li>
41
+ <li class="separator">&nbsp;</li>
42
+ <?php endif;?>
43
+ <?php endforeach; ?>
44
+ </ul>
45
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/persistent/checkout/onepage/billing.phtml ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Mage_Checkout_Block_Onepage_Billing $this */
27
+ ?>
28
+ <form id="co-billing-form" action="">
29
+ <fieldset>
30
+ <ul class="form-list">
31
+ <?php if ($this->customerHasAddresses()): ?>
32
+ <li class="wide">
33
+ <label for="billing-address-select"><?php echo $this->__('Select a billing address from your address book or enter a new address.') ?></label>
34
+ <div class="input-box">
35
+ <?php echo $this->getAddressesHtmlSelect('billing') ?>
36
+ </div>
37
+ </li>
38
+ <?php endif; ?>
39
+ <li id="billing-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif; ?>>
40
+ <fieldset>
41
+ <input type="hidden" name="billing[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="billing:address_id" />
42
+ <ul>
43
+ <li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress()->getFirstname() ? $this->getAddress() : $this->getQuote()->getCustomer())->setForceUseCustomerRequiredAttributes(!$this->isCustomerLoggedIn())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?></li>
44
+ <li class="fields">
45
+ <div class="field">
46
+ <label for="billing:company"><?php echo $this->__('Company') ?></label>
47
+ <div class="input-box">
48
+ <input type="text" id="billing:company" name="billing[company]" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
49
+ </div>
50
+ </div>
51
+ <?php if(!$this->isCustomerLoggedIn()): ?>
52
+ <div class="field">
53
+ <label for="billing:email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
54
+ <div class="input-box">
55
+ <input type="text" name="billing[email]" id="billing:email" value="<?php echo $this->escapeHtml($this->getAddress()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text validate-email required-entry" />
56
+ </div>
57
+ </div>
58
+ <?php endif; ?>
59
+ </li>
60
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
61
+ <li class="wide">
62
+ <label for="billing:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
63
+ <div class="input-box">
64
+ <input type="text" title="<?php echo $this->__('Street Address') ?>" name="billing[street][]" id="billing:street1" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" class="input-text <?php echo $_streetValidationClass ?>" />
65
+ </div>
66
+ </li>
67
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
68
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
69
+ <li class="wide">
70
+ <div class="input-box">
71
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="billing[street][]" id="billing:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="input-text <?php echo $_streetValidationClass ?>" />
72
+ </div>
73
+ </li>
74
+ <?php endfor; ?>
75
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
76
+ <li class="wide">
77
+ <label for="billing:vat_id"><?php echo $this->__('VAT Number') ?></label>
78
+ <div class="input-box">
79
+ <input type="text" id="billing:vat_id" name="billing[vat_id]" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()) ?>" title="<?php echo $this->__('VAT Number') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
80
+ </div>
81
+ </li>
82
+ <?php endif; ?>
83
+ <li class="fields">
84
+ <div class="field">
85
+ <label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
86
+ <div class="input-box">
87
+ <input type="text" title="<?php echo $this->__('City') ?>" name="billing[city]" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="billing:city" />
88
+ </div>
89
+ </div>
90
+ <div class="field">
91
+ <label for="billing:region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
92
+ <div class="input-box">
93
+ <select id="billing:region_id" name="billing[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
94
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
95
+ </select>
96
+ <script type="text/javascript">
97
+ //<![CDATA[
98
+ $('billing:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
99
+ //]]>
100
+ </script>
101
+ <input type="text" id="billing:region" name="billing[region]" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
102
+ </div>
103
+ </div>
104
+ </li>
105
+ <li class="fields">
106
+ <div class="field">
107
+ <label for="billing:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
108
+ <div class="input-box">
109
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="billing[postcode]" id="billing:postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
110
+ </div>
111
+ </div>
112
+ <div class="field">
113
+ <label for="billing:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
114
+ <div class="input-box">
115
+ <?php echo $this->getCountryHtmlSelect('billing') ?>
116
+ </div>
117
+ </div>
118
+ </li>
119
+ <li class="fields">
120
+ <div class="field">
121
+ <label for="billing:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
122
+ <div class="input-box">
123
+ <input type="text" name="billing[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="billing:telephone" />
124
+ </div>
125
+ </div>
126
+ <div class="field">
127
+ <label for="billing:fax"><?php echo $this->__('Fax') ?></label>
128
+ <div class="input-box">
129
+ <input type="text" name="billing[fax]" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="billing:fax" />
130
+ </div>
131
+ </div>
132
+ </li>
133
+ <?php if(!$this->isCustomerLoggedIn()): ?>
134
+
135
+ <?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
136
+ <?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
137
+ <?php if ($_dob->isEnabled() || $_gender->isEnabled()): ?>
138
+ <li class="fields">
139
+ <?php if ($_dob->isEnabled()): ?>
140
+ <div class="field">
141
+ <?php echo $_dob->setDate($this->getQuote()->getCustomerDob())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
142
+ </div>
143
+ <?php endif; ?>
144
+ <?php if ($_gender->isEnabled()): ?>
145
+ <div class="field">
146
+ <?php echo $_gender->setGender($this->getQuote()->getCustomerGender())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
147
+ </div>
148
+ <?php endif ?>
149
+ </li>
150
+ <?php endif ?>
151
+
152
+ <?php if ($this->isTaxvatEnabled()):?>
153
+ <li><?php echo $this->getTaxvatHtml() ?></li>
154
+ <?php endif; ?>
155
+
156
+ <li class="fields" id="register-customer-password">
157
+ <div class="field">
158
+ <label for="billing:customer_password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
159
+ <div class="input-box">
160
+ <input type="password" name="billing[customer_password]" id="billing:customer_password" title="<?php echo $this->__('Password') ?>" class="input-text required-entry validate-password" />
161
+ </div>
162
+ </div>
163
+ <div class="field">
164
+ <label for="billing:confirm_password" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
165
+ <div class="input-box">
166
+ <input type="password" name="billing[confirm_password]" title="<?php echo $this->__('Confirm Password') ?>" id="billing:confirm_password" class="input-text required-entry validate-cpassword" />
167
+ </div>
168
+ </div>
169
+ </li>
170
+ <?php echo $this->getChildHtml('persistent.remember.me'); ?>
171
+ <?php endif; ?>
172
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
173
+ <li class="control">
174
+ <input type="checkbox" name="billing[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="billing:save_in_address_book" onchange="if(window.shipping) shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="billing:save_in_address_book"><?php echo $this->__('Save in address book') ?></label>
175
+ </li>
176
+ <?php else:?>
177
+ <li class="no-display"><input type="hidden" name="billing[save_in_address_book]" value="1" /></li>
178
+ <?php endif; ?>
179
+ <?php echo $this->getChildHtml('form.additional.info'); ?>
180
+ </ul>
181
+ <?php echo $this->getChildHtml('persistent.remember.me.tooltip'); ?>
182
+ </fieldset>
183
+ </li>
184
+ <?php if ($this->canShip()): ?>
185
+ <li class="control">
186
+ <input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_yes" value="1"<?php if ($this->isUseBillingAddressForShipping()) {?> checked="checked"<?php }?> title="<?php echo $this->__('Ship to this address') ?>" onclick="$('shipping:same_as_billing').checked = true;" class="radio" /><label for="billing:use_for_shipping_yes"><?php echo $this->__('Ship to this address') ?></label></li>
187
+ <li class="control">
188
+ <input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_no" value="0"<?php if (!$this->isUseBillingAddressForShipping()) {?> checked="checked"<?php }?> title="<?php echo $this->__('Ship to different address') ?>" onclick="$('shipping:same_as_billing').checked = false;" class="radio" /><label for="billing:use_for_shipping_no"><?php echo $this->__('Ship to different address') ?></label>
189
+ </li>
190
+ <?php endif; ?>
191
+ </ul>
192
+ <?php if (!$this->canShip()): ?>
193
+ <input type="hidden" name="billing[use_for_shipping]" value="1" />
194
+ <?php endif; ?>
195
+ <div class="buttons-set" id="billing-buttons-container">
196
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
197
+ <button type="button" title="<?php echo $this->__('Continue') ?>" class="button" onclick="billing.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
198
+ <span class="please-wait" id="billing-please-wait" style="display:none;">
199
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
200
+ </span>
201
+ </div>
202
+ </fieldset>
203
+ </form>
204
+ <script type="text/javascript">
205
+ //<![CDATA[
206
+ var billing = new Billing('co-billing-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveBilling') ?>');
207
+ var billingForm = new VarienForm('co-billing-form');
208
+
209
+ //billingForm.setElementsRelation('billing:country_id', 'billing:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
210
+ $('billing-address-select') && billing.newAddress(!$('billing-address-select').value);
211
+
212
+ var billingRegionUpdater = new RegionUpdater('billing:country_id', 'billing:region', 'billing:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'billing:postcode');
213
+ if ($('onepage-guest-register-button')) {
214
+ Event.observe($('onepage-guest-register-button'), 'click', function(event) {
215
+ var billingRememberMe = $('co-billing-form').select('#remember-me-box');
216
+ if (billingRememberMe.length > 0) {
217
+ if ($('login:guest') && $('login:guest').checked) {
218
+ billingRememberMe[0].hide();
219
+ } else if ($('login:register') && ($('login:register').checked || $('login:register').type == 'hidden')) {
220
+ billingRememberMe[0].show();
221
+ }
222
+ }
223
+ });
224
+ }
225
+ //]]>
226
+ </script>
app/design/frontend/Kartparadigm/default/template/persistent/checkout/onepage/login.phtml ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ * Customer onepage checkout login form template
30
+ *
31
+ * @see app/design/frontend/base/default/template/checkout/onepage/login.phtml
32
+ */
33
+ /** @var $this Mage_Checkout_Block_Onepage_Login */
34
+ ?>
35
+
36
+ <?php echo $this->getChildHtml('login_before')?>
37
+ <div class="block block-checkout-register">
38
+ <h3><?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?><?php echo $this->__('Checkout as a Guest or Register') ?><?php else: ?><?php echo $this->__('Register to Create an Account') ?><?php endif; ?></h3>
39
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
40
+ <p><?php echo $this->__('Register with us for future convenience:') ?></p>
41
+ <?php else: ?>
42
+ <p><strong><?php echo $this->__('Register and save time!') ?></strong><br />
43
+ <?php echo $this->__('Register with us for future convenience:') ?></p>
44
+ <ul>
45
+ <li><?php echo $this->__('Fast and easy check out') ?></li>
46
+ <li><?php echo $this->__('Easy access to your order history and status') ?></li>
47
+ </ul>
48
+ <?php endif; ?>
49
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
50
+ <ul class="form-list">
51
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
52
+ <li class="control">
53
+ <input type="radio" name="checkout_method" id="login:guest" value="guest"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_GUEST): ?> checked="checked"<?php endif; ?> class="radio" /><label for="login:guest"><?php echo $this->__('Checkout as Guest') ?></label>
54
+ </li>
55
+ <?php endif; ?>
56
+ <li class="control">
57
+ <input type="radio" name="checkout_method" id="login:register" value="register"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_REGISTER || !$this->getQuote()->isAllowedGuestCheckout()): ?> checked="checked"<?php endif ?> class="radio" /><label for="login:register"><?php echo $this->__('Register') ?></label>
58
+ </li>
59
+ </ul>
60
+ <h4><?php echo $this->__('Register and save time!') ?></h4>
61
+ <p><?php echo $this->__('Register with us for future convenience:') ?></p>
62
+ <ul class="ul">
63
+ <li><?php echo $this->__('Fast and easy check out') ?></li>
64
+ <li><?php echo $this->__('Easy access to your order history and status') ?></li>
65
+ </ul>
66
+ <?php else: ?>
67
+ <input type="hidden" name="checkout_method" id="login:register" value="register" checked="checked" />
68
+ <?php endif; ?>
69
+ <div class="buttons-set">
70
+ <p class="required">&nbsp;</p>
71
+ <?php if ($this->getQuote()->isAllowedGuestCheckout()): ?>
72
+ <button id="onepage-guest-register-button" type="button" class="button" onclick="checkout.setMethod();"><span><span><?php echo $this->__('Continue') ?></span></span></button>
73
+ <?php elseif ($this->helper('checkout')->isCustomerMustBeLogged()): ?>
74
+ <button id="onepage-guest-register-button" type="button" class="button" onclick="window.location='<?php echo $this->helper('checkout/url')->getRegistrationUrl();?>'"><span><span><?php echo $this->__('Register') ?></span></span></button>
75
+ <?php else: ?>
76
+ <form action="<?php echo $this->getUrl('persistent/index/saveMethod'); ?>">
77
+ <button id="onepage-guest-register-button" type="submit" class="button"><span><span><?php echo $this->__('Register') ?></span></span></button>
78
+ </form>
79
+ <?php endif; ?>
80
+ </div>
81
+ </div>
82
+ <div class="block block-checkout-login">
83
+ <h3><?php echo $this->__('Login') ?></h3>
84
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
85
+ <form id="login-form" action="<?php echo $this->getPostAction() ?>" method="post">
86
+ <fieldset>
87
+ <?php echo $this->getBlockHtml('formkey'); ?>
88
+ <h4><?php echo $this->__('Already registered?') ?></h4>
89
+ <p><?php echo $this->__('Please log in below:') ?></p>
90
+ <ul class="form-list">
91
+ <li>
92
+ <label for="login-email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
93
+ <div class="input-box">
94
+ <input type="text" class="input-text required-entry validate-email" id="login-email" name="login[username]" value="<?php echo $this->escapeHtml($this->getUsername()) ?>" />
95
+ </div>
96
+ </li>
97
+ <li>
98
+ <label for="login-password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
99
+ <div class="input-box">
100
+ <input type="password" class="input-text required-entry" id="login-password" name="login[password]" />
101
+ </div>
102
+ </li>
103
+ <?php echo $this->getChildHtml('form.additional.info'); ?>
104
+ <?php echo $this->getChildHtml('persistent.remember.me'); ?>
105
+ </ul>
106
+ <input name="context" type="hidden" value="checkout" />
107
+ </fieldset>
108
+ </form>
109
+ <div class="buttons-set">
110
+ <button type="submit" class="button" onclick="onepageLogin(this)"><span><span><?php echo $this->__('Login') ?></span></span></button>
111
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
112
+ <a href="<?php echo $this->getUrl('customer/account/forgotpassword') ?>" class="f-left"><?php echo $this->__('Forgot your password?') ?></a>
113
+
114
+ </div>
115
+ </div>
116
+
117
+
118
+ <script type="text/javascript">
119
+ //<![CDATA[
120
+ var loginForm = new VarienForm('login-form', true);
121
+ $('login-email').observe('keypress', bindLoginPost);
122
+ $('login-password').observe('keypress', bindLoginPost);
123
+ function bindLoginPost(evt){
124
+ if (evt.keyCode == Event.KEY_RETURN) {
125
+ loginForm.submit();
126
+ }
127
+ }
128
+ function onepageLogin(button)
129
+ {
130
+ if(loginForm.validator && loginForm.validator.validate()){
131
+ button.disabled = true;
132
+ loginForm.submit();
133
+ }
134
+ }
135
+ //]]>
136
+ </script>
137
+ <?php
138
+ $registerParam = $this->getRequest()->getParam('register');
139
+ if ($registerParam || $registerParam === ''):
140
+ ?>
141
+ <script type="text/javascript">
142
+ //<![CDATA[
143
+ document.observe("dom:loaded", function() {
144
+ if($('login:register')) {
145
+ $('login:register').checked = true;
146
+ checkout.setMethod();
147
+ }
148
+ })
149
+ //]]>
150
+ </script>
151
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/persistent/customer/form/register.phtml ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="account-create">
2
+
3
+ <div class="block block-login">
4
+ <div class="block-title">
5
+ <strong><span>Register</span></strong>
6
+ </div>
7
+ <div class="block-content">
8
+
9
+ <form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="form-validate">
10
+
11
+ <input name="success_url" value="" type="hidden">
12
+ <input name="error_url" value="" type="hidden">
13
+
14
+ <h2 class="legend first">Personal Information</h2>
15
+ <ul class="form-list">
16
+ <li class="fields">
17
+ <div class="customer-name">
18
+ <div class="field name-firstname">
19
+ <label for="firstname" class="required"><em>*</em>First Name</label>
20
+ <div class="input-box">
21
+ <input id="firstname" name="firstname" value="" title="First Name" maxlength="255" class="input-text required-entry" type="text">
22
+ </div>
23
+ </div>
24
+ <div class="field name-lastname">
25
+ <label for="lastname" class="required"><em>*</em>Last Name</label>
26
+ <div class="input-box">
27
+ <input id="lastname" name="lastname" value="" title="Last Name" maxlength="255" class="input-text required-entry" type="text">
28
+ </div>
29
+ </div>
30
+ </div>
31
+ </li>
32
+ <li>
33
+ <label for="email_address" class="required"><em>*</em>Email Address</label>
34
+
35
+ <div class="input-box">
36
+ <input name="email" id="email_address" value="" title="Email Address" class="input-text validate-email required-entry" type="text">
37
+ </div>
38
+ </li>
39
+ <li class="control">
40
+ <div class="input-box">
41
+ <input name="is_subscribed" title="Sign Up for Newsletter" value="1" id="is_subscribed" class="checkbox" type="checkbox">
42
+ </div>
43
+ <label for="is_subscribed">Sign Up for Newsletter</label>
44
+ </li>
45
+
46
+ </ul>
47
+ <h2 class="legend">Login Information</h2>
48
+ <ul class="form-list">
49
+ <li class="fields">
50
+ <div class="field">
51
+ <label for="password" class="required"><em>*</em>Password</label>
52
+
53
+ <div class="input-box">
54
+ <input name="password" id="password" title="Password" class="input-text required-entry validate-password" type="password">
55
+ </div>
56
+ </div>
57
+ <div class="field">
58
+ <label for="confirmation" class="required"><em>*</em>Confirm Password</label>
59
+
60
+ <div class="input-box">
61
+ <input name="confirmation" title="Confirm Password" id="confirmation" class="input-text required-entry validate-cpassword" type="password">
62
+ </div>
63
+ </div>
64
+ </li>
65
+ </ul>
66
+
67
+
68
+ <script type="text/javascript">
69
+ //<![CDATA[
70
+ function toggleRememberMepopup(event){
71
+ if($('remember-me-popup')){
72
+ var viewportHeight = document.viewport.getHeight(),
73
+ docHeight = $$('body')[0].getHeight(),
74
+ height = docHeight > viewportHeight ? docHeight : viewportHeight;
75
+ $('remember-me-popup').toggle();
76
+ $('window-overlay').setStyle({ height: height + 'px' }).toggle();
77
+ }
78
+ Event.stop(event);
79
+ }
80
+
81
+ document.observe("dom:loaded", function() {
82
+ new Insertion.Bottom($$('body')[0], $('window-overlay'));
83
+ new Insertion.Bottom($$('body')[0], $('remember-me-popup'));
84
+
85
+ $$('.remember-me-popup-close').each(function(element){
86
+ Event.observe(element, 'click', toggleRememberMepopup);
87
+ })
88
+ $$('#remember-me-box a').each(function(element) {
89
+ Event.observe(element, 'click', toggleRememberMepopup);
90
+ });
91
+ });
92
+ //]]>
93
+ </script>
94
+
95
+ <div class="buttons-set">
96
+ <p class="required">* Required Fields</p>
97
+
98
+ <button type="submit" title="Submit" class="button">
99
+ <span><span>Submit</span></span></button>
100
+ </div>
101
+ </form>
102
+ <script type="text/javascript">
103
+ //<![CDATA[
104
+ var dataForm = new VarienForm('form-validate', true);
105
+ //]]>
106
+ </script>
107
+
108
+ </div><!-- block content -->
109
+
110
+ </div><!-- block login -->
111
+
112
+ </div><!-- account create -->
app/design/frontend/Kartparadigm/default/template/rating/detailed.phtml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 if(!empty($collection) && $collection->getSize()): ?>
28
+ <table class="ratings-table">
29
+ <col width="1" />
30
+ <col />
31
+ <tbody>
32
+ <?php foreach ($collection as $_rating): ?>
33
+ <?php if($_rating->getSummary()): ?>
34
+ <tr>
35
+ <th><?php echo $this->__($this->escapeHtml($_rating->getRatingCode())) ?></th>
36
+ <td>
37
+ <div class="rating-box">
38
+ <div class="rating" style="width:<?php echo ceil($_rating->getSummary()) ?>%;"></div>
39
+ </div>
40
+ </td>
41
+ </tr>
42
+ <?php endif; ?>
43
+ <?php endforeach; ?>
44
+ </tbody>
45
+ </table>
46
+ <?php endif; ?>
app/design/frontend/Kartparadigm/default/template/rating/empty.phtml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <p class="no-rating"><a href="#review-form"><?php echo $this->__('Be the first to review this product') ?></a></p>
app/design/frontend/Kartparadigm/red/layout/page.xml ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
55
+
56
+
57
+ <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
58
+ <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
59
+ <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
60
+
61
+ <!-- CUSTOM CSS START -->
62
+
63
+ <action method="addCss"><stylesheet>css/kartparadigm_custom1.css</stylesheet></action>
64
+ <action method="addCss"><stylesheet>css/kartparadigm_custom2.css</stylesheet></action>
65
+ <action method="addCss"><stylesheet>css/custom.css</stylesheet></action>
66
+ <action method="addCss"><stylesheet>css/kartparadigm_responsive.css</stylesheet></action>
67
+ <action method="addCss"><stylesheet>css/slicknav.css</stylesheet></action>
68
+
69
+ <!-- CUSTOM CSS END -->
70
+
71
+ <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
72
+ <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
73
+ </block>
74
+
75
+ <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
76
+ <label>Page Top</label>
77
+ </block>
78
+
79
+ <block type="page/html_notices" name="global_notices" as="global_notices" template="page/html/notices.phtml" />
80
+
81
+ <block type="page/html_header" name="header" as="header">
82
+ <block type="core/text_list" name="topcart" as="topcart"/>
83
+ <block type="page/template_links" name="top.links" as="topLinks"/>
84
+ <block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
85
+ <block type="core/text_list" name="top.menu" as="topMenu" translate="label">
86
+ <label>Navigation Bar</label>
87
+ <block type="page/html_topmenu" name="catalog.topnav" template="page/html/topmenu.phtml"/>
88
+ </block>
89
+ <block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
90
+ <label>Page Header</label>
91
+ <action method="setElementClass"><value>top-container</value></action>
92
+ </block>
93
+ <block type="page/html_welcome" name="welcome" as="welcome"/>
94
+ </block>
95
+
96
+ <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>
97
+
98
+ <block type="core/text_list" name="left" as="left" translate="label">
99
+ <label>Left Column</label>
100
+ </block>
101
+
102
+ <block type="core/messages" name="global_messages" as="global_messages"/>
103
+ <block type="core/messages" name="messages" as="messages"/>
104
+
105
+ <block type="core/text_list" name="content" as="content" translate="label">
106
+ <label>Main Content Area</label>
107
+ </block>
108
+
109
+ <block type="core/text_list" name="right" as="right" translate="label">
110
+ <label>Right Column</label>
111
+ </block>
112
+
113
+ <block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
114
+ <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
115
+ <label>Page Footer</label>
116
+ <action method="setElementClass"><value>bottom-container</value></action>
117
+ </block>
118
+ <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
119
+ <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
120
+ </block>
121
+
122
+ <block type="core/text_list" name="before_body_end" as="before_body_end" translate="label">
123
+ <label>Page Bottom</label>
124
+ <block type="page/html_cookieNotice" name="global_cookie_notice" as ="global_cookie_notice" template="page/html/cookienotice.phtml" before="-" />
125
+ </block>
126
+ </block>
127
+
128
+ <block type="core/profiler" output="toHtml" name="core_profiler"/>
129
+ </default>
130
+
131
+ <print translate="label" module="page">
132
+ <label>All Pages (Print Version)</label>
133
+ <!-- Mage_Page -->
134
+ <block type="page/html" name="root" output="toHtml" template="page/print.phtml">
135
+
136
+ <block type="page/html_head" name="head" as="head">
137
+ <action method="addJs"><script>prototype/prototype.js</script></action>
138
+ <action method="addJs"><script>mage/translate.js</script></action>
139
+ <action method="addJs"><script>lib/ccard.js</script></action>
140
+ <action method="addJs"><script>prototype/validation.js</script></action>
141
+ <action method="addJs"><script>varien/js.js</script></action>
142
+
143
+ <action method="addCss"><stylesheet>css/styles.css</stylesheet></action>
144
+ <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
145
+ <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
146
+ <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
147
+
148
+ <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
149
+ <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
150
+
151
+ </block>
152
+
153
+ <block type="core/text_list" name="content" as="content" translate="label">
154
+ <label>Main Content Area</label>
155
+ </block>
156
+
157
+ </block>
158
+ </print>
159
+
160
+ <!-- Custom page layout handles -->
161
+ <page_empty translate="label">
162
+ <label>All Empty Layout Pages</label>
163
+ <reference name="root">
164
+ <action method="setTemplate"><template>page/empty.phtml</template></action>
165
+ <!-- Mark root page block that template is applied -->
166
+ <action method="setIsHandle"><applied>1</applied></action>
167
+ </reference>
168
+ </page_empty>
169
+
170
+ <page_one_column translate="label">
171
+ <label>All One-Column Layout Pages</label>
172
+ <reference name="root">
173
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
174
+ <!-- Mark root page block that template is applied -->
175
+ <action method="setIsHandle"><applied>1</applied></action>
176
+ </reference>
177
+ </page_one_column>
178
+
179
+ <page_two_columns_left translate="label">
180
+ <label>All Two-Column Layout Pages (Left Column)</label>
181
+ <reference name="root">
182
+ <action method="setTemplate"><template>page/2columns-left.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_left>
187
+
188
+ <page_two_columns_right translate="label">
189
+ <label>All Two-Column Layout Pages (Right Column)</label>
190
+ <reference name="root">
191
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
192
+ <!-- Mark root page block that template is applied -->
193
+ <action method="setIsHandle"><applied>1</applied></action>
194
+ </reference>
195
+ </page_two_columns_right>
196
+
197
+ <page_three_columns translate="label">
198
+ <label>All Three-Column Layout Pages</label>
199
+ <reference name="root">
200
+ <action method="setTemplate"><template>page/3columns.phtml</template></action>
201
+ <!-- Mark root page block that template is applied -->
202
+ <action method="setIsHandle"><applied>1</applied></action>
203
+ </reference>
204
+ </page_three_columns>
205
+ </layout>
app/etc/modules/Kartparadigm_Theme.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Kartparadigm_Theme>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </Kartparadigm_Theme>
8
+ </modules>
9
+ </config>
media/wysiwyg/img/Selection_005.png ADDED
Binary file
media/wysiwyg/img/col_left_callout.jpg ADDED
Binary file
media/wysiwyg/img/electronics_cellphones.jpg ADDED
Binary file
media/wysiwyg/img/electronics_digitalcameras.jpg ADDED
Binary file
media/wysiwyg/img/electronics_laptops.jpg ADDED
Binary file
media/wysiwyg/img/logo.png ADDED
Binary file
media/wysiwyg/img/ph_callout_left_rebel.jpg ADDED
Binary file
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Kartparadigm_Theme</name>
4
+ <version>1.0.0.0</version>
5
+ <stability>stable</stability>
6
+ <license>OSL</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Elegance Responsive Theme from Kart Paradigm For Your Magento Store</summary>
10
+ <description>Elegance Responsive Theme from Kart Paradigm For Your Magento Store</description>
11
+ <notes>Tested With Magento 1.8</notes>
12
+ <authors><author><name>Kartparadigm</name><user>kartparadigm</user><email>kartparadigm@gmail.com</email></author></authors>
13
+ <date>2015-03-19</date>
14
+ <time>12:26:26</time>
15
+ <contents><target name="magecommunity"><dir name="Kartparadigm"><dir name="Theme"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Font.php" hash="3599b033416ebbc47cb29cafcaee1d92"/></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="9a7322e27aadaec500be22393023fac2"/><file name="system.xml" hash="e56cfa8938e4af450776521c57c49d81"/></dir><dir name="Helper"><file name="Data.php" hash="55bc660756d1d82f38bf7b6220d9745b"/></dir><dir name="Model"><dir name="Config"><file name="Font.php" hash="2d9c8970e46b276286aebdbb6aadad22"/><file name="Header.php" hash="b8dd7f630481aafa26a69b24e665fbf2"/></dir></dir><dir name="sql"><dir name="theme_setup"><file name="mysql4-install-0.1.0.php" hash="20ca91407bfc3dcc4c66f2b7cc2fa985"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Kartparadigm_Theme.xml" hash="ff158a19700572c75dfb8c74d346511f"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="kartparadigm_themeoptions.xml" hash="fb523f1d05eb29530e15396929657e51"/></dir></dir></dir></dir><dir name="frontend"><dir name="Kartparadigm"><dir name="default"><dir name="layout"><file name="catalog.xml" hash="e10923d3eeab4170c5eafcfc36405067"/><file name="checkout.xml" hash="240d02e8a39ed13d3cce8a184d519bbb"/><file name="customer.xml" hash="4a495a8eb2515d0fd4592d1b253aa92b"/><file name="directory.xml" hash="fc58f0c607c48373ac59b5f319930d96"/><file name="local.xml" hash="7abf402ab65e69bc0b390986fc2e4074"/><file name="local.xml~" hash="7abf402ab65e69bc0b390986fc2e4074"/><file name="page.xml" hash="da309aa3683c8c585f9081ac4e9727a7"/></dir><dir name="template"><dir name="callouts"><file name="left_col.phtml" hash="b9324b604a878eff3cde5d9da1afdfff"/><file name="right_col.phtml" hash="bb9319cddafdd56098e3702e5b34087a"/></dir><dir name="catalog"><dir name="product"><dir name="compare"><file name="top_campare.phtml" hash="7fd15c8c982352b8c8bfa2acfb933b41"/></dir><dir name="list"><file name="related.phtml" hash="a1851875a595a39679fa97579893a06c"/><file name="toolbar.phtml" hash="ea822e6e3e9c8f5ddf8b5353fd37111b"/><file name="upsell.phtml" hash="13132b52c8c4b47ef49c8ad10fd2fb18"/></dir><file name="list.phtml" hash="d1c9d5d83ce3b7a84b3dba30f7b8c328"/><dir name="view"><file name="additional.phtml" hash="5d113b63135e535c5b6fe5695dc94ded"/><file name="addtocart.phtml" hash="8da42ecd79442b2c227893b84a61c83e"/><file name="addto.phtml" hash="5ad0f525e46ef7a1a8cbef2608c58bfc"/><file name="attributes.phtml" hash="c184b99a88f08fa50704c399a37fcfbc"/><file name="description.phtml" hash="4e920e324b0a0d366127a3ad99e2328d"/><file name="media.phtml" hash="2d8510e62c14c7a0517c7b782f77e677"/><dir name="options"><file name="js.phtml" hash="160fcd9f5eade825dfa8f4121aac9778"/><dir name="type"><file name="date.phtml" hash="78a303ab99f3361028053bf0b977b976"/><file name="default.phtml" hash="4c599ba00a9e7ab0e39768f0c49d52c3"/><file name="file.phtml" hash="3a7fe05c434ec81f68229ba5365095cc"/><file name="select.phtml" hash="4385f417292667d74616d113de034d4c"/><file name="text.phtml" hash="c041996450010583ae8759480f87d317"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="85655fc307d163ec6bffc07bef7f8924"/></dir><file name="wrapper.phtml" hash="a797d8924b27b63652255a8331bf8d44"/></dir><file name="options.phtml" hash="81a5b17ed13aabbca729c61b3f9b9111"/><file name="price_clone.phtml" hash="24e53a27dc39aa31afd2cdac7ab1656d"/><file name="price.phtml" hash="7c2bf22b14747f2b99d54f2778fda3c8"/><file name="tierprices.phtml" hash="9eab82fafca8880c619276489bf99649"/><dir name="type"><file name="configurable.phtml" hash="e67c05bee0fa75df518c39929aa10187"/><file name="default.phtml" hash="d2a515d3c74005b29c03df8fb89660d0"/><file name="grouped.phtml" hash="a2cf1b972121dbee6a6159e0d13c180e"/><file name="simple.phtml" hash="e67c05bee0fa75df518c39929aa10187"/><file name="virtual.phtml" hash="e67c05bee0fa75df518c39929aa10187"/></dir></dir><file name="view.phtml" hash="1e4724bdd041b891cf5ce6b5792cef9f"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="a6506809feaf1777e007864fc62ce26f"/><file name="link_inline.phtml" hash="351d332bd78df5f47bf6b66cb89a8297"/></dir><dir name="new"><dir name="content"><file name="new_grid.phtml" hash="2b327d89e9533a1835bef70687fd20b6"/><file name="new_list.phtml" hash="6073d9562d08044588c8406a81890a39"/></dir></dir></dir></dir></dir><dir name="catalogsearch"><file name="form.mini.phtml" hash="5f95d0edae3012eb1ab883375c86a2e4"/></dir><dir name="checkout"><dir name="cart"><file name="sidebar.phtml" hash="df23f98ce77e29f14a154b49cc3b7982"/></dir><file name="cart.phtml" hash="aaddeac3d3db2522793f6d97078a5614"/><dir name="onepage"><file name="agreements.phtml" hash="a8f762dd61914b2d9eab9fe9ada1945a"/><file name="billing.phtml" hash="3627f62972b124c21cbb08fd67458552"/><file name="failure.phtml" hash="0b95128399f2521bf12837aceaa31836"/><file name="link.phtml" hash="323dcf7f1acb91a186595b618592be86"/><file name="login.phtml" hash="f9c7149ac00094f8dd1338fa82e6913c"/><file name="payment.phtml" hash="0f2094bb3da954aa9405c1af7b66ae2a"/><file name="progress.phtml" hash="3eab47ed120f6efd05f85294da825544"/><file name="review.phtml" hash="5ffdd3cc23815519462e3dcb1fc6b81a"/><file name="shipping_method.phtml" hash="ca5074b35e9a6167298a4a4433ecf98b"/><file name="shipping.phtml" hash="0dd2ceb18da2763395701c6379cb9a77"/></dir><file name="onepage.phtml" hash="b56ebb014bba7457ec64a95d7017d4a0"/></dir><dir name="customer"><dir name="form"><file name="mini.login.phtml" hash="67d0f9badb9e76302811115b3c5a5193"/></dir></dir><dir name="directory"><file name="currency.phtml" hash="3c6f5da4a9b1b135dc19f6424864c1b1"/></dir><dir name="home"><file name="home-slider.phtml" hash="00c9ec5acaf092ed4ef0579a558abe3a"/></dir><dir name="page"><file name="1column-login.phtml" hash="1e306a01ff3c77e2a278e0e6e62cf836"/><file name="1column.phtml" hash="be86f7b96e97f1ce952a0858021c3f86"/><file name="2columns-left.phtml" hash="b08fdbf958a09a8388a7d8f71cf20802"/><file name="2columns-right.phtml" hash="db1b4f17c62e9947a4d498fab7b4b016"/><file name="3columns.phtml" hash="5984fc5ab57dea6e62edc8005556b8b4"/><dir name="html"><file name="breadcrumbs.phtml" hash="7ff6f02412164d24d8f9019c366933e7"/><file name="footer.phtml" hash="d57b37de086bc41b14efbb6130fff187"/><file name="header.phtml" hash="bbbdd1b6d2d276eaa38d88285af6a5d4"/><file name="head.phtml" hash="26eb0de4f7bd3d97a57809110b44f1e7"/><file name="top.links.phtml" hash="2ef7b8a3d4e7bdfe8d0eb3baab6ec592"/><file name="topmenu.phtml" hash="a37b4d8bcdc329584d1411434471057f"/></dir><dir name="switch"><file name="languages.phtml" hash="7adcd48c0976bdeef17d7b5c8679b9d0"/></dir><dir name="template"><file name="links.phtml" hash="174caf7d97dc7988332384f38911a50e"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="fc58c50dba0ecbd0c3caac7eeb43fbff"/><file name="login.phtml" hash="c18bcb95e5ace903561dc2c02eb57c20"/></dir></dir><dir name="customer"><dir name="form"><file name="register.phtml" hash="08d32c6b7f2ca908148e873531121516"/></dir></dir></dir><dir name="rating"><file name="detailed.phtml" hash="fd0413a654744d23ce6eea412221a2e4"/><file name="empty.phtml" hash="2b5189dccbaa36740993f45bd6f11214"/></dir></dir></dir><dir name="red"><dir name="layout"><file name="page.xml" hash="da309aa3683c8c585f9081ac4e9727a7"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="Kartparadigm"><dir name="default"><dir name="css"><file name="custom.css" hash="8c18075316d5c3ebf8fc7c13a7e8f973"/><file name="kartparadigm_custom1.css" hash="557fd4e0f33095e13461d4102aac2ac3"/><file name="kartparadigm_responsive.css" hash="f941ce6bef9eac16cf205b9aedcc11f7"/><file name="oauth-simple.css" hash="67904fdf64804b5099b269b6ed195559"/><file name="print.css" hash="7e33379ce10c8eefe3a996a4747147e2"/><file name="slicknav.css" hash="e94d684d59b14cb91b1c4be7e78ae894"/><file name="styles.css" hash="218447b7abae8817a3c9879658dc70f6"/><file name="styles-ie.css" hash="c84e639708d3f4aca7481da19d9ab527"/><file name="zoome-min.css" hash="2cd1b88cd2c416ca745d620d74099ca4"/></dir><dir name="dist"><file name="easyzoom.css" hash="2cefe2d1cb1f7741e90631710a4c51a4"/><file name="easyzoom.js" hash="152a71abff4d703b7f744e2ee2033391"/></dir><dir name="images"><file name="arrow_button.png" hash="0940dd9a978c0ec67d2c6af2f4db76d1"/><file name="arrow_item.gif" hash="6b900f7859f71ad50b831443dadebd73"/><file name="arrow_switch.png" hash="7207a00f938ab4c9541b94da1392ad38"/><file name="arrow_totop.png" hash="11ba65a404c752de8d1febc9192f2e63"/><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><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-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><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_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><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.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><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_overlay.png" hash="041f0235c3be78832bfaa8b71b6b0f62"/><file name="btn_overlay_product.png" hash="14bbca567f8f7c29423499b5dcc29d99"/><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_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><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"/><file name="cart_top.png" hash="19d6b2f2ebad51586937fc3c964399b7"/><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="close-button.jpg" hash="11abcaf71c6fd86cd4bad6f55a5c5861"/><file name="compare.png" hash="6d104618e7ee2bb1df96b30ad62cd670"/><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="email.png" hash="b3ce78446a41bcf10f5b360abaf54f18"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="fullimage1.jpg" hash="e152c7841ca2ff1c1b5fd4b0e6648fe5"/><file name="fullimage2.jpg" hash="38a5c6fa40b112b416eb5c8d6d373729"/><file name="fullimage31.jpg" hash="54208fb22dcc4cdd77d66c241520e7cb"/><file name="fullimage3.jpg" hash="b6fee42a6cad31b5ee12fc6c55db730b"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="home_left_callout.jpg" hash="ee99a5586cf52e85c986d1275958a7da"/><file name="home_main_callout.jpg" hash="e6d1c119d5b24a5916fe394cb4b5cdc3"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="0387e39741a16898929775410df45c1e"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><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="icon_breadcrumb.gif" hash="cf5011f45d91707ca9a2adf0ad00eade"/><file name="icon_cart_listing_mask.png" hash="4fad1f67bf49d149f3a5e4f002954cc2"/><file name="icon_cart.png" hash="de8ba809a7d01078723cc7a190784c40"/><file name="icon_cart_product.png" hash="db0c78332221b74d6fd851201286d827"/><file name="i_desc_arrow.gif" hash="416c77d2204af4086f284e3c40abf77c"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_grid_mode.gif" hash="9cee2da37a616ba9c74546d9f29d90d5"/><file name="i_list_mode.gif" hash="30fcde3e54356c5926db2a11ab7e646a"/><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_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.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_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_bg.jpg" hash="7d788a663655590ae1699cf67c987efd"/><file name="login-bkg.jpg" hash="fe15543314b5bb8b2a784a56fd81547a"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><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="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="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="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_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="product-labels.png" hash="e3ce8e1dcc68e943a5101d5b3d72b794"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="rating.png" hash="ee50a3422fdbcdea0087a780d987bf2f"/><file name="search.png" hash="fb878b2183312d26d12eb9cdbd4c5ae9"/><file name="selectbox_arrow.png" hash="1a46d721bd9463e17f339478defeef69"/><file name="slider-arrows.png" hash="4ac7c7406ba3c64eab89e4f8df67624d"/><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="slideshow_arrows.png" hash="6d70de552e7e1b996ff3a7daab130572"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><file name="wishlist.png" hash="926c01e674a429b216d76f02bec48567"/><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="blurbox.js" hash="1c62c2bb03bfbff39e8b65edeafaa5d4"/><file name="bootstrap.min.js" hash="bed31fb959612a0a77d8e87b9d0b3683"/><file name="jquery.min-1.11.1.js" hash="8101d596b2b8fa35fe3a634ea342d7c3"/><file name="jquery.slicknav.js" hash="9809020b8571572205b1e958fbf5f44a"/><file name="modernizr.min.js" hash="42306a279a9e831515347ae319181cd1"/></dir><dir name="owl-carousel"><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="owl.carousel.css" hash="0371b5a2d50e985b09b7d337edc0dc9f"/><file name="owl.carousel.js" hash="a5f96c62d75be144282ef6cc429a6259"/><file name="owl.theme.css" hash="f23cf727e4fcca9a5470658da5e755c9"/></dir></dir><dir name="red"><dir name="css"><file name="custom.css" hash="b278be1971879132c620387708fd3fc0"/><file name="kartparadigm_custom1.css" hash="dba2f769c229da2e53afccf280e030e2"/><file name="kartparadigm_responsive.css" hash="f941ce6bef9eac16cf205b9aedcc11f7"/><file name="oauth-simple.css" hash="67904fdf64804b5099b269b6ed195559"/><file name="print.css" hash="7e33379ce10c8eefe3a996a4747147e2"/><file name="slicknav.css" hash="e94d684d59b14cb91b1c4be7e78ae894"/><file name="styles.css" hash="218447b7abae8817a3c9879658dc70f6"/><file name="styles-ie.css" hash="c84e639708d3f4aca7481da19d9ab527"/><file name="zoome-min.css" hash="2cd1b88cd2c416ca745d620d74099ca4"/></dir><dir name="dist"><file name="easyzoom.css" hash="2cefe2d1cb1f7741e90631710a4c51a4"/><file name="easyzoom.js" hash="152a71abff4d703b7f744e2ee2033391"/></dir><dir name="images"><file name="arrow_button.png" hash="0940dd9a978c0ec67d2c6af2f4db76d1"/><file name="arrow_item.gif" hash="6b900f7859f71ad50b831443dadebd73"/><file name="arrow_switch.png" hash="7207a00f938ab4c9541b94da1392ad38"/><file name="arrow_totop.png" hash="11ba65a404c752de8d1febc9192f2e63"/><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><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-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><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_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><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.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><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_overlay.png" hash="041f0235c3be78832bfaa8b71b6b0f62"/><file name="btn_overlay_product.png" hash="14bbca567f8f7c29423499b5dcc29d99"/><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_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><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"/><file name="cart_top.png" hash="19d6b2f2ebad51586937fc3c964399b7"/><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="close-button.jpg" hash="11abcaf71c6fd86cd4bad6f55a5c5861"/><file name="compare.png" hash="6d104618e7ee2bb1df96b30ad62cd670"/><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="email.png" hash="b3ce78446a41bcf10f5b360abaf54f18"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="fullimage1.jpg" hash="e152c7841ca2ff1c1b5fd4b0e6648fe5"/><file name="fullimage2.jpg" hash="38a5c6fa40b112b416eb5c8d6d373729"/><file name="fullimage31.jpg" hash="54208fb22dcc4cdd77d66c241520e7cb"/><file name="fullimage3.jpg" hash="b6fee42a6cad31b5ee12fc6c55db730b"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="home_left_callout.jpg" hash="ee99a5586cf52e85c986d1275958a7da"/><file name="home_main_callout.jpg" hash="e6d1c119d5b24a5916fe394cb4b5cdc3"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="0387e39741a16898929775410df45c1e"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><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="icon_breadcrumb.gif" hash="cf5011f45d91707ca9a2adf0ad00eade"/><file name="icon_cart_listing_mask.png" hash="4fad1f67bf49d149f3a5e4f002954cc2"/><file name="icon_cart.png" hash="de8ba809a7d01078723cc7a190784c40"/><file name="icon_cart_product.png" hash="db0c78332221b74d6fd851201286d827"/><file name="i_desc_arrow.gif" hash="416c77d2204af4086f284e3c40abf77c"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_grid_mode.gif" hash="9cee2da37a616ba9c74546d9f29d90d5"/><file name="i_list_mode.gif" hash="30fcde3e54356c5926db2a11ab7e646a"/><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_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.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_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="login_bg.jpg" hash="7d788a663655590ae1699cf67c987efd"/><file name="login-bkg.jpg" hash="fe15543314b5bb8b2a784a56fd81547a"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><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="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="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="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_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="product-labels.png" hash="e3ce8e1dcc68e943a5101d5b3d72b794"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="rating.png" hash="ee50a3422fdbcdea0087a780d987bf2f"/><file name="search.png" hash="fb878b2183312d26d12eb9cdbd4c5ae9"/><file name="selectbox_arrow.png" hash="1a46d721bd9463e17f339478defeef69"/><file name="slider-arrows.png" hash="4ac7c7406ba3c64eab89e4f8df67624d"/><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="slideshow_arrows.png" hash="6d70de552e7e1b996ff3a7daab130572"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><file name="wishlist.png" hash="926c01e674a429b216d76f02bec48567"/><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="blurbox.js" hash="1c62c2bb03bfbff39e8b65edeafaa5d4"/><file name="bootstrap.min.js" hash="bed31fb959612a0a77d8e87b9d0b3683"/><file name="jquery.min-1.11.1.js" hash="8101d596b2b8fa35fe3a634ea342d7c3"/><file name="jquery.slicknav.js" hash="9809020b8571572205b1e958fbf5f44a"/><file name="modernizr.min.js" hash="42306a279a9e831515347ae319181cd1"/></dir><dir name="owl-carousel"><file name="grabbing.png" hash="d817e1dba5bd5d891d0504bf1715807b"/><file name="owl.carousel.css" hash="0371b5a2d50e985b09b7d337edc0dc9f"/><file name="owl.carousel.js" hash="a5f96c62d75be144282ef6cc429a6259"/><file name="owl.theme.css" hash="f23cf727e4fcca9a5470658da5e755c9"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="wysiwyg"><dir name="img"><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="logo.png" hash="973cece94f16143eef38eb351d51e6c6"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="Selection_005.png" hash="96f33c669746951a9b185d26ef04797f"/></dir></dir></target></contents>
16
+ <compatible/>
17
+ <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
+ </package>
skin/frontend/Kartparadigm/default/css/custom.css ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*header styles*/
2
+
3
+ #nav ul ul {
4
+ margin-left:70px;
5
+ }
6
+
7
+ #nav > li > a:hover > span, #nav > li.over > a > span, #nav > li.active > a > span {
8
+ border-top: 3px solid #97CAE4;
9
+ color: #000;
10
+ }
11
+ /* toTop Button start*/
12
+ #toTop { display:none; text-decoration:none; position:fixed; z-index:100;
13
+ bottom:100px; right:10px; overflow:hidden; width:56px; height:56px; border:none; text-indent:-999px;
14
+ background:#97CAE4 url('../images/arrow_totop.png') 0 0 no-repeat;
15
+ -webkit-border-radius:100%; -moz-border-radius:100%; -o-border-radius:100%; border-radius:100%;}
16
+ #toTop:hover {background-color:#fff; background-position:0 100%;}
17
+ /* toTop Button start*/
18
+
19
+
20
+
21
+ /*header styles*/
22
+
23
+ /*product list styles */
24
+
25
+ .price-box .price {
26
+ font-family: Arial, Helvetica;
27
+ color: #97CAE4;
28
+ font-weight: 400;
29
+ font-size: 16px !Important;
30
+ }
31
+
32
+ /*product list styles */
33
+
34
+ /*product view page styles */
35
+
36
+ ul.product-tabs li a {
37
+ color: #42454a;
38
+ /*background: #97CAE4;*/
39
+ padding: 0.3em; text-decoration: none;
40
+ }
41
+
42
+ .product-tabs li a.selected{
43
+ border-top: 4px solid #97CAE4;
44
+ }
45
+ .box-up-sell .products-grid .btn-cart {
46
+ margin-right: 20% ;
47
+ }
48
+ /*product view page styles */
49
+ /*cart styles */
50
+
51
+
52
+ .cart .cart-collaterals .cart-total {
53
+ padding: 0px;
54
+ width: 100%;
55
+ }
56
+
57
+ /*cart styles */
skin/frontend/Kartparadigm/default/css/kartparadigm_custom1.css ADDED
@@ -0,0 +1,4170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ /* Reset ================================================================================= */
3
+ * { margin:0; padding:0; }
4
+
5
+ body { background:#fff; font:12px/1.35 Arial, Helvetica, sans-serif; color:#000; text-align:center; }
6
+
7
+ img { border:0; vertical-align:top; }
8
+
9
+ a { color:#05c; text-decoration:underline; }
10
+ a:hover { text-decoration:none; }
11
+ :focus { outline:0; }
12
+
13
+ /* Headings */
14
+ h1 { font-size:20px; font-weight:normal; line-height:1.15; }
15
+ h2 { font-size:18px; font-weight:normal; line-height:1.25; }
16
+ h3 { font-size:16px; font-weight:bold; line-height:1.25; }
17
+ h4 { font-size:14px; font-weight:bold; }
18
+ h5 { font-size:12px; font-weight:bold; }
19
+ h6 { font-size:11px; font-weight:bold; }
20
+
21
+ /* Forms */
22
+ form { display:inline; }
23
+ fieldset { border:0; }
24
+ legend { display:none; }
25
+
26
+ /* Table */
27
+ table { border:0; border-collapse:collapse; border-spacing:0; empty-cells:show; font-size:100%; }
28
+ caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }
29
+
30
+ /* Content */
31
+ strong { font-weight:bold; }
32
+ address { font-style:normal; }
33
+ cite { font-style:normal; }
34
+ q,
35
+ blockquote { quotes:none; }
36
+ q:before,
37
+ q:after { content:''; }
38
+ small,big { font-size:1em; }
39
+ sup { font-size:1em; vertical-align:top; }
40
+
41
+ /* Lists */
42
+ ul,ol { list-style:none; }
43
+
44
+ /* Tools */
45
+ .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; }
46
+ .nobr { white-space:nowrap !important; }
47
+ .wrap { white-space:normal !important; }
48
+ .a-left { text-align:left !important; }
49
+ .a-center { text-align:center !important; }
50
+ .a-right { text-align:right !important; }
51
+ .v-top { vertical-align:top; }
52
+ .v-middle { vertical-align:middle; width: auto !important;margin: 0px !important; }
53
+ .f-left,
54
+ .left { float:left !important; }
55
+ .f-right,
56
+ .right { float:right !important; }
57
+ .f-none { float:none !important; }
58
+ .f-fix { float:left; width:100%; }
59
+ .no-display { display:none; }
60
+ .no-margin { margin:0 !important; }
61
+ .no-padding { padding:0 !important; }
62
+ .no-bg { background:none !important; }
63
+ /* ======================================================================================= */
64
+
65
+
66
+ /* Layout ================================================================================ */
67
+ .wrapper {}
68
+ .page { width:1000px; margin:0 auto; padding:10px 0; text-align:left; }
69
+ .page-print { background:#fff; padding:20px; text-align:left; }
70
+ .page-empty { background:#fff; padding:20px; text-align:left; }
71
+ .page-popup { padding:20px; text-align:left; }
72
+ .main-container {}
73
+ .main { margin:10px 0; }
74
+
75
+ /* Base Columns */
76
+ .col-left { float:left; width:230px; padding:5px 5px 0; }
77
+ .col-main { float:left; width:736px; padding:5px; }
78
+ .col-right { float:right; width:230px; padding:15px 0px 0; }
79
+
80
+ /* 1 Column Layout */
81
+ .col1-layout .col-main { float:none; width:auto; }
82
+
83
+ /* 2 Columns Layout */
84
+ .col2-left-layout .col-main { float:right; }
85
+ .col2-right-layout .col-main {}
86
+
87
+ /* 3 Columns Layout */
88
+ .col3-layout .col-main { width:484px; margin-left:10px; }
89
+ .col3-layout .col-wrapper { float:left; width:748px; }
90
+ .col3-layout .col-wrapper .col-main { float:right; }
91
+
92
+ /* Content Columns */
93
+ .col2-set .col-1 { float:left; width:49%; }
94
+ .col2-set .col-2 { float:right; width:49%; }
95
+ .col2-set .col-narrow { width:33%; }
96
+ .col2-set .col-wide { width:65%; }
97
+
98
+ .col3-set .col-1 { float:left; width:32%; }
99
+ .col3-set .col-2 { float:left; width:32%; margin-left:2%; }
100
+ .col3-set .col-3 { float:right; width:32%; }
101
+
102
+ .col4-set .col-1 { float:left; width:23.5%; }
103
+ .col4-set .col-2 { float:left; width:23.5%; margin:0 2%; }
104
+ .col4-set .col-3 { float:left; width:23.5%; }
105
+ .col4-set .col-4 { float:right; width:23.5%; }
106
+ /* ======================================================================================= */
107
+
108
+
109
+ /* Global Styles ========================================================================= */
110
+ /* Form Elements */
111
+ input,select,textarea,button { font:12px Arial, Helvetica, sans-serif; vertical-align:middle; color:#000; }
112
+ input.input-text,select,textarea { background:#fff; border:1px solid #ddd; }
113
+ input.input-text,textarea { padding:2px; }
114
+ select { padding:1px; }
115
+ select option { padding-right:10px; }
116
+ select.multiselect option { border-bottom:1px solid #ddd; padding:2px 5px; }
117
+ select.multiselect option:last-child { border-bottom:0; }
118
+ textarea { overflow:auto; }
119
+ input.radio { margin-right:3px; }
120
+ input.checkbox { margin-right:3px; }
121
+ button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
122
+ button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
123
+ button.button { overflow:visible; width:auto; border:0; padding:0; margin:0; background:transparent; cursor:pointer; }
124
+ button.button span { float:left; height:21px; padding:0 0 0 8px; font:bold 12px/21px Arial, Helvetica, sans-serif; text-align:center; white-space:nowrap; color:#fff; }
125
+ button.button span span { background-position:100% 0; padding:0 12px 0 4px; }
126
+ button.disabled {}
127
+ button.disabled span {}
128
+
129
+ button.btn-checkout span {}
130
+ button.btn-checkout.no-checkout {}
131
+
132
+ p.control input.checkbox,
133
+ p.control input.radio { margin-right:6px; }
134
+
135
+ .form-list li { margin:0 0 8px; }
136
+ .form-list label { float:left; color:#111; font-weight:bold; position:relative; z-index:0; }
137
+ .form-list label.required {}
138
+ .form-list label.required em { float:right; font-style:normal; color:#eb340a; position:absolute; top:0; right:-8px; }
139
+ .form-list li.control label { float:none; }
140
+ .form-list li.control input.radio,
141
+ .form-list li.control input.checkbox { margin-right:6px; }
142
+ .form-list li.control .input-box { clear:none; display:inline; width:auto; }
143
+ /*.form-list li.fields { margin-right:-15px; }*/
144
+ .form-list .input-box { display:block; clear:both; width:260px; }
145
+ .form-list .field { float:left; width:275px; }
146
+ .form-list input.input-text { width:254px; }
147
+ .form-list textarea { width:254px; height:10em; }
148
+ .form-list select { width:260px; }
149
+ .form-list li.wide .input-box { width:535px; }
150
+ .form-list li.wide input.input-text { width:529px; }
151
+ .form-list li.wide textarea { width:529px; }
152
+ .form-list li.wide select { width:535px; }
153
+ .form-list li.additional-row { border-top:1px solid #ccc; margin-top:10px; padding-top:7px; }
154
+ .form-list li.additional-row .btn-remove { float:right; margin:5px 0 0; }
155
+ .form-list .input-range input.input-text { width:74px; }
156
+ /* Customer */
157
+ .form-list .customer-name-prefix .input-box,
158
+ .form-list .customer-name-suffix .input-box,
159
+ .form-list .customer-name-prefix-suffix .input-box,
160
+ .form-list .customer-name-prefix-middlename .input-box,
161
+ .form-list .customer-name-middlename-suffix .input-box,
162
+ .form-list .customer-name-prefix-middlename-suffix .input-box { width:auto; }
163
+
164
+ .form-list .name-prefix { width:65px; }
165
+ .form-list .name-prefix select { width:55px; }
166
+ .form-list .name-prefix input.input-text { width:49px; }
167
+
168
+ .form-list .name-suffix { width:65px; }
169
+ .form-list .name-suffix select { width:55px; }
170
+ .form-list .name-suffix input.input-text { width:49px; }
171
+
172
+ .form-list .name-middlename { width:70px; }
173
+ .form-list .name-middlename input.input-text { width:49px; }
174
+
175
+ .form-list .customer-name-prefix-middlename-suffix .name-firstname,
176
+ .form-list .customer-name-prefix-middlename .name-firstname { width:140px; }
177
+ .form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
178
+ .form-list .customer-name-prefix-middlename .name-firstname input.input-text { width:124px; }
179
+ .form-list .customer-name-prefix-middlename-suffix .name-lastname { width:205px; }
180
+ .form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text { width:189px; }
181
+
182
+ .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
183
+ .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
184
+ .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
185
+ .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
186
+
187
+ .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
188
+ .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
189
+ .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
190
+ .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
191
+
192
+ .form-list .customer-name-prefix .name-firstname,
193
+ .form-list .customer-name-middlename .name-firstname { width:210px; }
194
+
195
+ .form-list .customer-name-suffix .name-lastname,
196
+ .form-list .customer-name-middlename .name-firstname,
197
+ .form-list .customer-name-middlename-suffix .name-firstname,
198
+ .form-list .customer-name-middlename-suffix .name-lastname { width:205px; }
199
+
200
+ .form-list .customer-name-prefix .name-firstname input.input-text,
201
+ .form-list .customer-name-suffix .name-lastname input.input-text,
202
+ .form-list .customer-name-middlename .name-firstname input.input-text,
203
+ .form-list .customer-name-middlename-suffix .name-firstname input.input-text,
204
+ .form-list .customer-name-middlename-suffix .name-lastname input.input-text { width:189px; }
205
+
206
+ .form-list .customer-dob .dob-month,
207
+ .form-list .customer-dob .dob-day,
208
+ .form-list .customer-dob .dob-year { float:left; width:85px; }
209
+ .form-list .customer-dob input.input-text { display:block; width:74px; }
210
+ .form-list .customer-dob label { font-size:10px; font-weight:normal; color:#888; }
211
+ .form-list .customer-dob .dob-day,
212
+ .form-list .customer-dob .dob-month { width:60px; }
213
+ .form-list .customer-dob .dob-day input.input-text,
214
+ .form-list .customer-dob .dob-month input.input-text { width:46px; }
215
+ .form-list .customer-dob .dob-year { width:140px; }
216
+ .form-list .customer-dob .dob-year input.input-text { width:134px; }
217
+
218
+ .buttons-set { clear:both; margin:5px 0 0; padding:5px; }
219
+ .buttons-set .back-link { float:left; }
220
+ .buttons-set button.button { float:right; }
221
+ .buttons-set p.required { margin:0 0 5px; }
222
+
223
+ .buttons-set-order {}
224
+
225
+ .fieldset { background:#fefefe; padding:22px 25px 12px 33px; margin:28px 0; }
226
+ .fieldset .legend { float:left; font-weight:bold; font-size:13px; border:1px solid #fefefe; background:#dedede; color:#333; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
227
+
228
+ /* Form Validation */
229
+ .validation-advice { clear:both; min-height:13px; margin:3px 0 0; padding-left:17px; font-size:10px; line-height:13px; background:url(../images/validation_advice_bg.gif) 2px 1px no-repeat; color:#f00; }
230
+ .validation-failed { border:1px dashed #f00 !important; background:#faebe7 !important; }
231
+ .validation-passed {}
232
+ p.required { font-size:10px; text-align:right; color:#f00; }
233
+ /* Expiration date and CVV number validation fix */
234
+ .v-fix { float:left; }
235
+ .v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }
236
+
237
+ /* Global Messages */
238
+ .success { color:#3d6611; font-weight:bold; }
239
+ .error { color:#f00; font-weight:bold; }
240
+ .notice { color:#ccc; }
241
+
242
+ .messages,
243
+ .messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
244
+ .messages { width:100%; overflow:hidden; }
245
+ .messages li { margin:0 0 10px; }
246
+ .messages li li { margin:0 0 3px; }
247
+ .error-msg,
248
+ .success-msg,
249
+ .note-msg,
250
+ .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; }
251
+ .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
252
+ .success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(../images/i_msg-success.gif); color:#3d6611; }
253
+ .note-msg,
254
+ .notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(../images/i_msg-note.gif); color:#3d6611; }
255
+
256
+ /* BreadCrumbs */
257
+ .breadcrumbs { padding:10px; margin:0 0 10px; }
258
+ .breadcrumbs li { display:inline; }
259
+
260
+ /* Page Heading */
261
+ .page-title { border-bottom:1px solid #ddd; padding:0 0 5px; margin:0 0 10px; }
262
+ .page-title h1,
263
+ .page-title h2 { font-size:18px; color:#000; }
264
+ .page-title .separator { margin:0 3px; }
265
+ .page-title .link-rss { float:right; }
266
+ .title-buttons { text-align:right; }
267
+ .title-buttons h1,
268
+ .title-buttons h2,
269
+ .title-buttons h3,
270
+ .title-buttons h4,
271
+ .title-buttons h5,
272
+ .title-buttons h6 { float:left; }
273
+
274
+ .subtitle,
275
+ .sub-title { clear:both; }
276
+
277
+ /* Pager */
278
+ .pager { padding:5px; margin:5px 0; text-align:center; }
279
+ .pager .amount { float:left; }
280
+ .pager .limiter { float:right; }
281
+ .pager .pages { margin:0 135px; }
282
+ .pager .pages ol { display:inline; }
283
+ .pager .pages li { display:inline; }
284
+ .pager .pages .current {}
285
+
286
+ /* Sorter */
287
+ .sorter { padding:5px; margin:5px 0; }
288
+ .sorter .view-mode { float:left; }
289
+ .sorter .sort-by { float:right; }
290
+ .sorter .link-feed {}
291
+
292
+ /* Toolbar */
293
+ .toolbar {}
294
+ .toolbar .pager {}
295
+ .toolbar .sorter {}
296
+ .toolbar-bottom {}
297
+
298
+ /* Data Table */
299
+ .data-table { width:100%; }
300
+ .data-table th { padding:5px; font-weight:bold; white-space:nowrap; }
301
+ .data-table td { padding:5px; }
302
+ .data-table thead { background-color:#f2f2f2; }
303
+ .data-table tbody {}
304
+ .data-table tfoot {}
305
+ .data-table tr.first {}
306
+ .data-table tr.last {}
307
+ .data-table tr.odd {}
308
+ .data-table tr.even { background-color:#f6f6f6; }
309
+ .data-table tbody.odd {}
310
+ .data-table tbody.odd td { border-width:0 1px; }
311
+ .data-table tbody.even { background-color:#f6f6f6; }
312
+ .data-table tbody.even td { border-width:0 1px; }
313
+ .data-table tbody.odd tr.border td,
314
+ .data-table tbody.even tr.border td { border-bottom-width:1px; }
315
+ .data-table th .tax-flag { white-space:nowrap; font-weight:normal; }
316
+ .data-table td.label,
317
+ .data-table th.label { font-weight:bold; background-color:#f6f6f6; }
318
+ .data-table td.value {}
319
+
320
+ /* Shopping cart total summary row expandable to details */
321
+ tr.summary-total { cursor:pointer; }
322
+ tr.summary-total td {}
323
+ tr.summary-total .summary-collapse { float:right; text-align:right; padding-left:20px; background:url(../images/bkg_collapse.gif) 0 4px no-repeat; cursor:pointer; }
324
+ tr.show-details .summary-collapse { background-position:0 -53px; }
325
+ tr.show-details td {}
326
+ tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
327
+ tr.summary-details-first td { border-top:1px solid #d2d8db; }
328
+ tr.summary-details-excluded { font-style:italic; }
329
+
330
+ /* Shopping cart tax info */
331
+ .cart-tax-info { display:block; }
332
+ .cart-tax-info,
333
+ .cart-tax-info .cart-price { padding-right:20px; }
334
+ .cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 4px no-repeat; cursor:pointer; }
335
+ .cart-tax-info .price,
336
+ .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
337
+ .cart-tax-total-expanded { background-position:100% -53px; }
338
+
339
+ /* Class: std - styles for admin-controlled content */
340
+ .std .subtitle { padding:0; }
341
+ .std ol.ol { list-style:decimal outside; padding-left:1.5em; }
342
+ .std ul.disc { list-style:disc outside; padding-left:18px; margin:0 0 10px; }
343
+ .std dl dt { font-weight:bold; }
344
+ .std dl dd { margin:0 0 10px; }
345
+
346
+ /* Misc */
347
+ .links li { display:inline; }
348
+ .links li.first { padding-left:0 !important; }
349
+ .links li.last { background:none !important; padding-right:0 !important; }
350
+
351
+ .link-cart { font-weight:bold; color:#f00; }
352
+ .link-wishlist { font-weight:bold; }
353
+ .link-reorder { font-weight:bold; }
354
+ .link-compare { font-weight:bold; }
355
+ .link-print { background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px; }
356
+ .link-rss { background:url(../images/i_rss.gif) 0 1px no-repeat; padding-left:18px; white-space:nowrap; }
357
+ .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; }
358
+ .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; }
359
+ .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; }
360
+
361
+ .cards-list dt { margin:5px 0 0; }
362
+ .cards-list .offset { padding:2px 0 2px 20px; }
363
+
364
+
365
+ .separator { margin:0 3px; }
366
+
367
+ .divider { clear:both; display:block; font-size:0; line-height:0; height:1px; margin:10px 0; background:#ddd; text-indent:-999em; overflow:hidden; }
368
+
369
+ /* Noscript Notice */
370
+ .noscript { border:1px solid #ddd; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
371
+ .noscript .noscript-inner { width:1000px; margin:0 auto; padding:12px 0 12px; background:url(../images/i_notice.gif) 20px 50% no-repeat; }
372
+ .noscript p { margin:0; }
373
+
374
+ /* Demo Notice */
375
+ .demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; text-align:center; color:#fff; }
376
+ /* ======================================================================================= */
377
+
378
+
379
+ /* Header ================================================================================ */
380
+ .logo { float:left; }
381
+ .header-container {}
382
+ .header { padding:10px; }
383
+ .header .logo { float:left; text-decoration:none !important; }
384
+ .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
385
+ .header h1.logo { margin:0; padding:0; }
386
+ .header .welcome-msg { font-weight:bold; text-align:right; }
387
+ .header .welcome-msg a {}
388
+ .header .links { float:right; }
389
+ .header .form-search { text-align:right; }
390
+ .header .form-search .search-autocomplete { z-index:999; }
391
+ .header .form-search .search-autocomplete ul { background-color:#fff; }
392
+ .header .form-search .search-autocomplete li { padding:3px; border-bottom:1px solid #ddd; cursor:pointer; }
393
+ .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
394
+ .header .form-search .search-autocomplete li.selected {}
395
+ .header .form-language { clear:both; text-align:right; }
396
+ .header-container .top-container { clear:both; text-align:right; }
397
+
398
+ /********** < Navigation */
399
+ .nav-container {}
400
+ #nav { padding:5px 0; margin:10px 0; font-size:13px; }
401
+
402
+ /* All Levels */
403
+ #nav li { text-align:left; position:relative; }
404
+ #nav li.over { z-index:998; }
405
+ #nav li.parent {}
406
+ #nav li a { display:block; text-decoration:none; }
407
+ #nav li a:hover { text-decoration:none; }
408
+ #nav li a span { display:block; white-space:nowrap; cursor:pointer; }
409
+ #nav li ul a span { white-space:normal; }
410
+
411
+ /* 1st Level */
412
+ #nav li { float:left; }
413
+ #nav li a { float:left; padding:5px 10px; font-weight:bold; color:#888; }
414
+ #nav li a:hover { color:#000; }
415
+ #nav li.over a,
416
+ #nav li.active a { color:#000; }
417
+
418
+ /* 2nd Level */
419
+ #nav ul,
420
+ #nav div { position:absolute; width:15em; left:-10000px; background:#fafafa; }
421
+ #nav div ul { position:static; width:auto; border:none; }
422
+
423
+ #nav menu-dropdown
424
+
425
+ /* 3rd+ leven */
426
+ #nav ul ul,
427
+ #nav ul div { top:7px; }
428
+
429
+ #nav ul li { float:none; border-bottom:1px solid #ddd; }
430
+ #nav ul li.last { border-bottom:0; }
431
+ #nav ul li a { float:none; padding:3px 9px; font-weight:normal; color:#888 !important; }
432
+ #nav ul li a:hover { color:#000 !important; }
433
+ #nav ul li.active > a,
434
+ #nav ul li.over > a { color:#000 !important; }
435
+
436
+ /* Show menu */
437
+ #nav li ul.shown-sub,
438
+ #nav li div.shown-sub { left:0; z-index:999; }
439
+ #nav li .shown-sub ul.shown-sub,
440
+ #nav li .shown-sub li div.shown-sub { left:100px; }
441
+ /********** Navigation > */
442
+ /* ======================================================================================= */
443
+
444
+
445
+ /* Sidebar =============================================================================== */
446
+ .block { margin:0 0 10px; }
447
+ .block .block-title { border-bottom:1px solid #ddd; padding:3px 10px;text-align: center; }
448
+ .block .block-title strong { font-size:14px; font-weight:bold; }
449
+ .block .block-title strong span {}
450
+ .block .block-title a { text-decoration:none !important; }
451
+ .block .block-subtitle { font-size:13px; font-weight:bold; }
452
+ .block .block-content { padding:10px; }
453
+ .block .block-content li.item { padding:5px 0; }
454
+ .block .btn-remove,
455
+ .block .btn-edit { float:right;}
456
+ .block .actions { text-align:right; }
457
+ .block .actions a { float:left; }
458
+ .block .empty {}
459
+
460
+ .block li.odd {}
461
+ .block li.even { background-color:#f6f6f6; }
462
+
463
+ /* Mini Products List */
464
+ .mini-products-list li { padding:5px 0; }
465
+ .mini-products-list .product-image { float:left; width:50px; padding:5px; }
466
+ .mini-products-list .product-details { margin-left:75px; }
467
+ .mini-products-list .product-details h4 { font-size:1em; font-weight:bold; margin:0; }
468
+
469
+ /* Block: Account */
470
+ .block-account {}
471
+
472
+ /* Block: Currency Switcher */
473
+ .block-currency {}
474
+ .block-currency select { width:100%; border:1px solid #888; }
475
+
476
+ /* Block: Layered Navigation */
477
+ .block-layered-nav {}
478
+ .block-layered-nav dt { font-weight:bold; }
479
+ .block-layered-nav .currently {}
480
+ .block-layered-nav .btn-remove { float:left; margin:2px 3px 0 0; }
481
+
482
+ /* Block: Cart */
483
+ .col-right .block-cart {padding: 23px 20px !important;}
484
+ .cms-index-index .col3-layout .col-right .block-cart {padding: 0px !important;}
485
+ .col2-right-layout .col-right .block-cart {/*padding: 0px !important;*/}
486
+ .block-cart .summary {}
487
+ .block-cart .amount {}
488
+ .block-cart .subtotal { text-align:center; }
489
+ .block-cart .actions .paypal-logo { float:left; width:100%; margin:3px 0 0; text-align:right; }
490
+ .block-cart .actions .paypal-logo .paypal-or { clear:both; display:block; padding:0 55px 5px 0; }
491
+
492
+ /* Block: Wishlist */
493
+ .block-wishlist {}
494
+
495
+ /* Block: Related */
496
+ .block-related {}
497
+ .block-related li { padding:5px 0; }
498
+ .block-related input.checkbox { float:left; margin-right:-20px; }
499
+ .block-related .product { margin-left:20px; }
500
+ .block-related .product .product-image { float:left; margin-right:-65px; }
501
+ .block-related .product .product-details { margin-left:65px; }
502
+
503
+ /* Block: Compare Products */
504
+ .block-compare {}
505
+ .block-compare li { padding:5px 0; }
506
+
507
+ /* Block: Recently Viewed */
508
+ .block-viewed {}
509
+
510
+ /* Block: Recently Compared */
511
+ .block-compared {}
512
+
513
+ /* Block: Poll */
514
+ .block-poll label {}
515
+ .block-poll input.radio { float:left; margin:1px -18px 0 0; }
516
+ .block-poll .label { display:block; margin-left:18px; }
517
+ .block-poll li { padding:3px 9px; }
518
+ .block-poll .actions { margin:5px 0 0; }
519
+ .block-poll .answer { font-weight:bold; }
520
+ .block-poll .votes { float:right; margin-left:10px; }
521
+
522
+ /* Block: Tags */
523
+ .block-tags ul,
524
+ .block-tags li { display:inline; }
525
+
526
+ /* Block: Subscribe */
527
+ .block-subscribe {}
528
+
529
+ /* Block: Reorder */
530
+ .block-reorder {}
531
+ .block-reorder li { padding:5px 0; }
532
+ .block-reorder input.checkbox { float:left; margin:3px -20px 0 0; }
533
+ .block-reorder .product-name { margin-left:20px; }
534
+
535
+ /* Block: Banner */
536
+ .block-banner {}
537
+ .block-banner .block-content { text-align:center; }
538
+
539
+ /* Block: Login */
540
+ .block-login label { font-weight:bold; color:#666; }
541
+ .block-login input.input-text { display:block; width:167px; margin:3px 0; }
542
+
543
+ /* Paypal */
544
+ .sidebar .paypal-logo { display:block; margin:10px 0; text-align:center; }
545
+ .sidebar .paypal-logo a { float:none; }
546
+ /* ======================================================================================= */
547
+
548
+
549
+ /* Category Page ========================================================================= */
550
+ .category-title { border:0; margin:0 0 7px; }
551
+ .category-image { width:100%; overflow:hidden; margin:0 0 10px; text-align:center; }
552
+ .category-image img {}
553
+ .category-description { margin:0 0 10px; }
554
+ .category-products {}
555
+
556
+ /* View Type: Grid */
557
+ .products-grid { border-bottom:1px solid #ddd; position:relative; }
558
+ .products-grid.last { border-bottom:0; }
559
+ .products-grid li.item { float:left; width:138px; padding:12px 10px 80px; }
560
+ .products-grid .product-image { display:block; margin:0 0 10px; }
561
+ .products-grid .product-name { margin:0 0 5px; font-weight:bold; font-size:13px; }
562
+ .products-grid .product-name a {}
563
+ .products-grid .price-box { margin:5px 0; }
564
+ .products-grid .availability { line-height:21px; }
565
+ .products-grid .actions { position:absolute; bottom:12px; }
566
+ .col2-left-layout .products-grid,
567
+ .col2-right-layout .products-grid { width:632px; margin:0 auto; }
568
+ .col1-layout .products-grid { width:790px; margin:0 auto; }
569
+
570
+ /* View Type: List */
571
+ .products-list li.item { border-bottom:1px solid #ddd; padding:12px 10px; }
572
+ .products-list li.item.last { border-bottom:0; }
573
+ .products-list .product-image { float:left; margin:0; }
574
+ .products-list .product-shop { margin-left:150px; }
575
+ .products-list .product-name { margin:0 0 5px; font-weight:bold; font-size:13px; }
576
+ .products-list .product-name a {}
577
+ .products-list .price-box { float:left; margin:3px 13px 5px 0; }
578
+ .products-list .availability { float:left; margin:3px 0 0; }
579
+ .products-list .desc { clear:both; padding:6px 0 0; margin:0 0 15px; line-height:1.35; }
580
+ .products-list .desc .link-learn { font-size:11px; }
581
+ .products-list .add-to-links { clear:both; }
582
+ .products-list .add-to-links li { display:inline; }
583
+ .products-list .add-to-links .separator { display:inline; margin:0 2px; }
584
+ /* ======================================================================================= */
585
+
586
+
587
+ /* Product View ========================================================================== */
588
+ /* Rating */
589
+ .no-rating { margin:0; }
590
+
591
+ .ratings { font-size:11px; line-height:1.25; margin:7px 0; }
592
+ .ratings strong { float:left; margin:1px 3px 0 0; }
593
+ .ratings .rating-links { margin:0; }
594
+ .ratings .rating-links .separator { margin:0 2px; }
595
+ .ratings dt {}
596
+ .ratings dd {}
597
+ .rating-box { width:69px; height:13px; font-size:0; line-height:0; background:url(../images/rating.png) 0 0 repeat-x; text-indent:-999em; overflow:hidden; }
598
+ .rating-box .rating { float:left; height:13px; background:url(../images/rating.png) 0 100% repeat-x; }
599
+ .ratings .rating-box { float:left; margin-right:3px; }
600
+ .ratings .amount {}
601
+
602
+ .ratings-table th,
603
+ .ratings-table td { font-size:11px; line-height:1.15; padding:3px 0; }
604
+ .ratings-table th { font-weight:bold; padding-right:8px; }
605
+
606
+ /* Availability */
607
+ .availability { margin:0; }
608
+ .availability span { font-weight:bold; }
609
+ .availability.in-stock span {}
610
+ .availability.out-of-stock span { color:#d83820; }
611
+
612
+ .availability-only { margin:0 0 7px; }
613
+ .availability-only a { background:url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat; cursor:pointer; padding-right:15px; }
614
+ .availability-only .expanded { background-position:100% -15px; }
615
+ .availability-only strong {}
616
+
617
+ .availability-only-details { margin:0 0 7px; }
618
+ .availability-only-details th { background:#f2f2f2; font-size:10px; padding:0 8px; }
619
+ .availability-only-details td { border-bottom:1px solid #ddd; font-size:11px; padding:2px 8px 1px; }
620
+ .availability-only-details tr.odd td.last {}
621
+
622
+ /* Email to a Friend */
623
+ .email-friend {}
624
+
625
+ /* Alerts */
626
+ .alert-price {}
627
+ .alert-stock {}
628
+
629
+ /********** < Product Prices */
630
+ .price { white-space:nowrap !important; }
631
+
632
+ .price-box {}
633
+ .price-box .price { font-weight:bold; }
634
+
635
+ /* Regular price */
636
+ .regular-price {}
637
+ .regular-price .price { font-weight:bold; }
638
+
639
+ /* Old price */
640
+ .old-price {}
641
+ .old-price .price-label { white-space:nowrap; }
642
+ .old-price .price { font-weight:bold; text-decoration:line-through; }
643
+
644
+ /* Special price */
645
+ .special-price {}
646
+ .special-price .price-label { font-weight:bold; white-space:nowrap; }
647
+ .special-price .price { font-weight:bold; }
648
+
649
+ /* Minimal price (as low as) */
650
+ .minimal-price {}
651
+ .minimal-price .price-label { font-weight:bold; white-space:nowrap; }
652
+
653
+ .minimal-price-link { display:block; }
654
+ .minimal-price-link .label {}
655
+ .minimal-price-link .price { font-weight:normal; }
656
+
657
+ /* Excluding tax */
658
+ .price-excluding-tax { display:block; }
659
+ .price-excluding-tax .label { white-space:nowrap; }
660
+ .price-excluding-tax .price { font-weight:normal; }
661
+
662
+ /* Including tax */
663
+ .price-including-tax { display:block; }
664
+ .price-including-tax .label { white-space:nowrap; }
665
+ .price-including-tax .price { font-weight:bold; }
666
+
667
+ /* Configured price */
668
+ .configured-price {}
669
+ .configured-price .price-label { font-weight:bold; white-space:nowrap; }
670
+ .configured-price .price { font-weight:bold; }
671
+
672
+ /* FPT */
673
+ .weee { display:block; font-size:11px; color:#444; }
674
+ .weee .price { font-size:11px; font-weight:normal; }
675
+
676
+ /* Excl tax (for order tables) */
677
+ .price-excl-tax { display:block; }
678
+ .price-excl-tax .label { display:block; white-space:nowrap; }
679
+ .price-excl-tax .price { display:block; }
680
+
681
+ /* Incl tax (for order tables) */
682
+ .price-incl-tax { display:block; }
683
+ .price-incl-tax .label { display:block; white-space:nowrap; }
684
+ .price-incl-tax .price { display:block; font-weight:bold; }
685
+
686
+ /* Price range */
687
+ .price-from {}
688
+ .price-from .price-label { font-weight:bold; white-space:nowrap; }
689
+
690
+ .price-to {}
691
+ .price-to .price-label { font-weight:bold; white-space:nowrap; }
692
+
693
+ /* Price notice next to the options */
694
+ .price-notice { padding-left:10px; }
695
+ .price-notice .price { font-weight:bold; }
696
+
697
+ /* Price as configured */
698
+ .price-as-configured {}
699
+ .price-as-configured .price-label { font-weight:bold; white-space:nowrap; }
700
+
701
+ .price-box-bundle {}
702
+ /********** Product Prices > */
703
+
704
+ /* Tier Prices */
705
+ .tier-prices .price { font-weight:bold; }
706
+ .tier-prices .benefit {}
707
+
708
+ .tier-prices-grouped {}
709
+
710
+ /* Add to Links */
711
+ .add-to-links .separator { display:none; }
712
+
713
+ /* Add to Cart */
714
+ .add-to-cart label { float:left; margin-right:5px; }
715
+ .add-to-cart .qty { float:left; }
716
+ .add-to-cart button.button { float:left; margin-left:5px; }
717
+ .add-to-cart .paypal-logo { clear:left; text-align:right; }
718
+ .add-to-cart .paypal-logo .paypal-or { clear:both; display:block; margin:5px 60px 5px 0; }
719
+ .product-view .add-to-cart .paypal-logo { margin:0; }
720
+
721
+ /* Add to Links + Add to Cart */
722
+ .add-to-box {}
723
+ .add-to-box .add-to-cart { float:left; }
724
+ .add-to-box .or { float:left; margin:0 10px; }
725
+ .add-to-box .add-to-links { float:left; }
726
+
727
+
728
+ .product-view {}
729
+
730
+ .product-essential {}
731
+
732
+ .product-collateral .box-collateral { margin:0 0 15px; }
733
+
734
+ /* Product Images */
735
+ .product-view .product-img-box { float:left; width:267px; }
736
+ .col3-layout .product-view .product-img-box { float:none; margin:0 auto; }
737
+ .product-view .product-img-box .product-image { }
738
+ .product-view .product-img-box .product-image-zoom { position:relative; width:265px; height:265px; overflow:hidden; z-index:9; }
739
+ .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
740
+ .product-view .product-img-box .zoom-notice { text-align:center; }
741
+ .product-view .product-img-box .zoom { position:relative; z-index:9; height:18px; margin:0 auto 13px; padding:0 28px; cursor:pointer; }
742
+ .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
743
+ .product-view .product-img-box .zoom #track { position:relative; height:18px; }
744
+ .product-view .product-img-box .zoom #handle { position:absolute; left:0; top:-1px; width:9px; height:22px; }
745
+ .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
746
+ .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
747
+ .product-view .product-img-box .more-views ul { margin-left:-4px }
748
+ .product-view .product-img-box .more-views li { float:left; padding:1px; background-color:#ddd; margin:0 0 8px 4px ; }
749
+
750
+ .product-image-popup { margin:0 auto; }
751
+ .product-image-popup .buttons-set { float:right; clear:none; border:0; margin:0; padding:0; }
752
+ .product-image-popup .nav { margin:0 100px; text-align:center; }
753
+ .product-image-popup .image { display:block; }
754
+ .product-image-popup .image-label {}
755
+
756
+ /* Product Shop */
757
+ .product-view .product-shop { /*float:right; width:445px; */
758
+ float: none;
759
+ width: auto;
760
+ }
761
+ .col1-layout .product-view .product-shop { float:right; width:700px; }
762
+ .col3-layout .product-view .product-shop { float:none; width:auto; }
763
+ .product-view .product-name {}
764
+ .product-view .short-description {}
765
+
766
+ /* Product Options */
767
+ .product-options { padding:10px; margin:10px 0 0; background-color:#f6f6f6; }
768
+ .product-options dt label { font-weight:bold; }
769
+ .product-options dt .qty-holder { float:right; }
770
+ .product-options dt .qty-holder label { vertical-align:middle; }
771
+ .product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#000; }
772
+ .product-options dd { margin:10px 0; }
773
+ .product-options dl.last dd.last {}
774
+ .product-options dd input.input-text { width:98%; }
775
+ .product-options dd input.datetime-picker { width:150px; }
776
+ .product-options dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
777
+ .product-options dd textarea { width:98%; height:8em; }
778
+ .product-options dd select { width:100%; }
779
+ .product-options .options-list {}
780
+ .product-options .options-list input.radio { float:left; margin:3px -18px 0 0; }
781
+ .product-options .options-list input.checkbox { float:left; margin:3px -20px 0 0; }
782
+ .product-options .options-list .label { display:block; margin-left:20px; }
783
+ .product-options ul.validation-failed { padding:0 7px; }
784
+ .product-options p.required { padding:15px 0 0; }
785
+
786
+ .product-options-bottom { padding:10px; border-top:0; }
787
+ .product-options-bottom .price-box { margin:10px 0; }
788
+
789
+ /* Grouped Product */
790
+ .product-view .grouped-items-table {}
791
+
792
+ /* Block: Description */
793
+ .product-view .box-description {}
794
+
795
+ /* Block: Additional */
796
+ .product-view .box-additional {}
797
+
798
+ /* Block: Upsell */
799
+ .product-view .box-up-sell {}
800
+ .product-view .box-up-sell .products-grid td { width:25%; }
801
+
802
+ /* Block: Tags */
803
+ .product-view .box-tags {}
804
+ .product-view .box-tags .form-add label { float:left; }
805
+ .product-view .box-tags .form-add .input-box { float:left; width:260px; margin:0 5px; }
806
+ .product-view .box-tags .form-add input.input-text { width:254px; }
807
+ .product-view .box-tags .form-add p { clear:both; }
808
+
809
+ /* Block: Reviews */
810
+ .product-view .box-reviews {}
811
+ .product-view .box-reviews .form-add {}
812
+
813
+ /* Send a Friend */
814
+ .send-friend {}
815
+ /* ======================================================================================= */
816
+
817
+
818
+ /* Content Styles ================================================================= */
819
+ .product-name { font-size:1em; font-weight:normal; }
820
+ .product-name a {}
821
+
822
+ /* Product Tags */
823
+ .tags-list li { display:inline; }
824
+
825
+ /* Advanced Search */
826
+ .advanced-search {}
827
+ .advanced-search-amount {}
828
+ .advanced-search-summary {}
829
+
830
+ /* CMS Home Page */
831
+ .cms-home .subtitle {}
832
+ .cms-index-index .subtitle {}
833
+
834
+ /* Sitemap */
835
+ .page-sitemap .links { text-align:right; margin:0 8px -22px 0; }
836
+ .page-sitemap .links a { text-decoration:none; position:relative; }
837
+ .page-sitemap .links a:hover { text-decoration:underline; }
838
+ .page-sitemap .sitemap { margin:12px; }
839
+ .page-sitemap .sitemap a {}
840
+ .page-sitemap .sitemap li { margin:3px 0; }
841
+ .page-sitemap .sitemap li.level-0 { margin:10px 0 0; font-weight:bold; }
842
+ .page-sitemap .sitemap li.level-0 a {}
843
+
844
+ /* RSS */
845
+ .rss-title h1 { background:url(../images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
846
+ .rss-table .link-rss { display:block; line-height:1.35; background-position:0 2px; }
847
+ /* ======================================================================================= */
848
+
849
+
850
+ /* Shopping Cart ========================================================================= */
851
+ .cart {}
852
+
853
+ /* Checkout Types */
854
+ .cart .checkout-types { float:right; text-align:right; }
855
+ .cart .title-buttons .checkout-types li { float:left; margin:0 0 5px 5px; }
856
+ .cart .checkout-types .paypal-or { margin:0 8px; line-height:2.3; }
857
+ .cart .totals .checkout-types .paypal-or { clear:both; display:block; padding:3px 55px 8px 0; line-height:1.0; font-size:11px; }
858
+
859
+ /* Shopping Cart Table */
860
+ .cart-table .item-msg { font-size:10px; }
861
+
862
+ /* Shopping Cart Collateral boxes */
863
+ .cart .cart-collaterals { padding:25px 0 0; }
864
+ .cart .cart-collaterals .col2-set { float:left; width:700px; }
865
+
866
+ .cart .crosssell {}
867
+ .cart .crosssell h2 { font-size:13px; font-weight:bold; }
868
+ .cart .crosssell .product-image { float:left; width:75px; height:75px; }
869
+ .cart .crosssell .product-details { margin-left:90px; }
870
+ .cart .crosssell li.item { margin:12px 0; }
871
+
872
+ /* Discount Codes & Estimate Shipping and Tax Boxes */
873
+ .cart .discount,
874
+ .cart .shipping {}
875
+
876
+ /* Shopping Cart Totals */
877
+ .cart .totals { float:right; }
878
+ .cart .totals table { width:100%; }
879
+ .cart .totals table th,
880
+ .cart .totals table td { padding:5px; }
881
+ .cart .totals table th { font-weight:bold; }
882
+ .cart .totals table tfoot th {}
883
+
884
+ /* Options Tool Tip */
885
+ .item-options dt { font-weight:bold; font-style:italic; }
886
+ .item-options dd { padding-left:10px; }
887
+ .truncated { cursor:help; }
888
+ .truncated a.dots { cursor:help; }
889
+ .truncated a.details { cursor:help; }
890
+ .truncated .truncated_full_value { position:relative; z-index:999; }
891
+ .truncated .truncated_full_value .item-options { position:absolute; top:-99999em; left:-99999em; z-index:999; width:250px; padding:8px; background-color:#f6f6f6; }
892
+ .truncated .truncated_full_value .item-options > p { font-weight:bold; text-transform:uppercase; }
893
+ .truncated .show .item-options { top:-20px; left:50%; }
894
+ .col-left .truncated .show .item-options { left:30px; top:7px; }
895
+ .col-right .truncated .show .item-options { left:-240px; top:7px; }
896
+ /* ======================================================================================= */
897
+
898
+
899
+ /* Checkout ============================================================================== */
900
+ /********** < Common Checkout Styles */
901
+ /* Shipping and Payment methods */
902
+ .sp-methods dt { font-weight:bold; }
903
+ .sp-methods .price { font-weight:bold; }
904
+ .sp-methods .form-list { padding-left:20px; }
905
+ .sp-methods select.month { width:150px; margin-right:10px; }
906
+ .sp-methods select.year { width:96px; }
907
+ .sp-methods input.cvv { width:3em !important; }
908
+
909
+ .sp-methods .checkmo-list li { margin:0 0 5px; }
910
+ .sp-methods .checkmo-list label { width:135px; padding-right:10px; text-align:right; }
911
+ .sp-methods .checkmo-list address { float:left; }
912
+
913
+ .sp-methods .centinel-logos a { margin-right:3px; }
914
+ .sp-methods .centinel-logos img { vertical-align:middle; }
915
+
916
+ .sp-methods .release-amounts { margin:0.5em 0 1em; }
917
+ .sp-methods .release-amounts button { float:left; margin:5px 10px 0 0; }
918
+
919
+ .please-wait { float:right; margin-right:5px; }
920
+ .please-wait img { vertical-align:middle; }
921
+ .cvv-what-is-this { cursor:help; margin-left:5px; }
922
+
923
+ /* Tooltip */
924
+ .tool-tip { background-color:#f6f6f6; padding:5px; position:absolute; z-index:9999; }
925
+ .tool-tip .btn-close { text-align:right; }
926
+ .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; }
927
+ .tool-tip .tool-tip-content { padding:5px; }
928
+
929
+ /* Gift Messages */
930
+ .gift-messages {}
931
+ .gift-messages-form { background-color:#f5f5f5; }
932
+ .gift-messages-form { position:relative; }
933
+ .gift-messages-form label { float:none !important; position:static !important; }
934
+ .gift-messages-form h4 {}
935
+ .gift-messages-form .whole-order {}
936
+ .gift-messages-form .item { margin:0 0 10px; }
937
+ .gift-messages-form .item .product-img-box { float:left; width:75px; }
938
+ .gift-messages-form .item .product-image { margin:0 0 7px; }
939
+ .gift-messages-form .item .number { margin:0; font-weight:bold; text-align:center; }
940
+ .gift-messages-form .item .details { margin-left:90px; }
941
+ .gift-messages-form .item .details .product-name {}
942
+
943
+ .gift-message-link { display:block; background:url(../images/bkg_collapse.gif) 0 4px no-repeat; padding-left:20px; }
944
+ .gift-message-link.expanded { background-position:0 -53px; }
945
+ .gift-message-row {}
946
+ .gift-message-row .btn-close { float:right; }
947
+ .gift-message dt strong { font-weight:bold; }
948
+
949
+ /* Checkout Agreements */
950
+ .checkout-agreements {}
951
+ .checkout-agreements li { margin:10px 0; }
952
+ .checkout-agreements .agreement-content { background-color:#f6f6f6; padding:5px; height:10em; overflow:auto; }
953
+ .checkout-agreements .agree { padding:6px; }
954
+
955
+ /* Centinel */
956
+ .centinel {}
957
+ .centinel .authentication { background:#fff; }
958
+ .centinel .authentication iframe { width:99%; height:400px; background:transparent !important; margin:0 !important; padding:0 !important; border:0 !important; }
959
+
960
+ /* Generic Info Set */
961
+ .info-set {}
962
+ /********** Common Checkout Styles > */
963
+
964
+ /* One Page Checkout */
965
+ .block-progress {}
966
+ .block-progress dt { font-weight:bold; }
967
+ .block-progress dt.complete,
968
+ .block-progress dd.complete { background-color:#f6f6f6; }
969
+
970
+ .opc { border-bottom:1px solid #ddd; position:relative; }
971
+ .opc li.section { border-bottom:0; }
972
+
973
+ .opc .buttons-set.disabled button.button { display:none; }
974
+ .opc .buttons-set .please-wait { height:21px; line-height:21px; }
975
+
976
+ .opc .step-title { background-color:#f6f6f6; padding:0 5px; text-align:right; }
977
+ .opc .step-title .number { float:left; line-height:22px; margin-right:5px; }
978
+ .opc .step-title h2 { float:left; }
979
+ .opc .step-title a { display:none; float:right; }
980
+
981
+ .opc .allow .step-title { cursor:pointer; }
982
+ /*.opc .allow .step-title a { display:block; }*/
983
+
984
+ .opc .active {}
985
+ .opc .active .step-title { background-color:#ccc; cursor:default; }
986
+ /*.opc .active .step-title a { display:none; }*/
987
+
988
+ .opc .step { border-top:1px solid #ddd; padding:10px; position:relative; }
989
+ .opc .step .tool-tip { right:10px; }
990
+
991
+ .opc .order-review {}
992
+ .opc .order-review .authentication {}
993
+ .opc .order-review .warning-message {}
994
+
995
+ /* Multiple Addresses Checkout */
996
+ .checkout-progress { padding:0 50px; margin:10px 0; }
997
+ .checkout-progress li { float:left; width:20%; border-top:5px solid #ccc; text-align:center; color:#ccc; }
998
+ .checkout-progress li.active { border-top-color:#000; color:#000; }
999
+
1000
+ .multiple-checkout { position:relative; }
1001
+ .multiple-checkout .tool-tip { top:50%; margin-top:-120px; right:10px; }
1002
+ .multiple-checkout .grand-total { font-size:1.5em; text-align:right; }
1003
+ .multiple-checkout .grand-total big {}
1004
+ .multiple-checkout .grand-total .price {}
1005
+ /* ======================================================================================= */
1006
+
1007
+
1008
+ /* Account Login/Create Pages ============================================================ */
1009
+ .account-login {}
1010
+ .account-login .new-users {}
1011
+ .account-login .registered-users {}
1012
+
1013
+ .account-create {}
1014
+ /* Account Login/Create Pages ============================================================ */
1015
+
1016
+
1017
+ /* Remember Me Popup ===================================================================== */
1018
+ .window-overlay { background:rgba(0, 0, 0, 0.35); position:absolute; top:0; left:0; height:100%; width:100%; z-index:10111; }
1019
+
1020
+ .remember-me label { float:none; margin:0 6px; }
1021
+ .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:11000; }
1022
+ .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:14px; padding:5px 10px; }
1023
+ .remember-me-popup .remember-me-popup-head { position:relative; }
1024
+ .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; }
1025
+ .remember-me-popup .remember-me-popup-body { padding:10px; }
1026
+ .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; }
1027
+ /* Remember Me Popup ===================================================================== */
1028
+
1029
+
1030
+ /* My Account ============================================================================= */
1031
+ .my-account .title-buttons .link-rss { float:none; margin:0; }
1032
+
1033
+ /********** < Dashboard */
1034
+ .dashboard {}
1035
+ .dashboard .welcome-msg {}
1036
+
1037
+ /* Block: Recent Orders */
1038
+ .dashboard .box-recent { margin:10px 0; }
1039
+
1040
+ /* Block: Account Information */
1041
+ .dashboard .box-info {}
1042
+
1043
+ /* Block: Reviews */
1044
+ .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:#ddd; }
1045
+ .dashboard .box-reviews .details { margin-left:20px; }
1046
+
1047
+ /* Block: Tags */
1048
+ .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:#ddd; }
1049
+ .dashboard .box-tags .details { margin-left:20px; }
1050
+ /********** Dashboard > */
1051
+
1052
+ /* Address Book */
1053
+ .addresses-list {}
1054
+ .addresses-list-additional li.item {}
1055
+
1056
+ /* Order View */
1057
+ .order-info { padding:5px; }
1058
+ .order-info dt,
1059
+ .order-info dd,
1060
+ .order-info ul,
1061
+ .order-info li { display:inline; }
1062
+ .order-info dt { font-weight:bold; }
1063
+
1064
+ .order-date { margin:10px 0; }
1065
+
1066
+ .order-info-box {}
1067
+
1068
+ .order-items { width:100%; overflow-x:auto; }
1069
+
1070
+ .order-additional { margin:15px 0; }
1071
+ /* Order Gift Message */
1072
+ .gift-message dt strong { color:#666; }
1073
+ .gift-message dd { font-size:13px; margin:5px 0 0; }
1074
+ /* Order Comments */
1075
+ .order-about dt { font-weight:bold; }
1076
+ .order-about dd { font-size:13px; margin:0 0 7px; }
1077
+
1078
+ .tracking-table { margin:0 0 15px; }
1079
+ .tracking-table th { font-weight:bold; white-space:nowrap; }
1080
+
1081
+ .tracking-table-popup { width:100%; }
1082
+ .tracking-table-popup th { font-weight:bold; white-space:nowrap; }
1083
+ .tracking-table-popup th,
1084
+ .tracking-table-popup td { padding:1px 8px; }
1085
+
1086
+ /* Order Print Pages */
1087
+ .page-print .print-head {}
1088
+ .page-print .print-head img { float:left; }
1089
+ .page-print .print-head address { float:left; margin-left:15px; }
1090
+ /* Price Rewrites */
1091
+ .page-print .gift-message-link { display:none; }
1092
+ .page-print .price-excl-tax,
1093
+ .page-print .price-incl-tax { display:block; white-space:nowrap; }
1094
+ .page-print .cart-price,
1095
+ .page-print .price-excl-tax .label,
1096
+ .page-print .price-incl-tax .label,
1097
+ .page-print .price-excl-tax .price,
1098
+ .page-print .price-incl-tax .price { display:inline; }
1099
+
1100
+ /* My Reviews */
1101
+ .product-review .product-img-box { float:left; width:140px; }
1102
+ .product-review .product-img-box .product-image { display:block; width:125px; height:125px; }
1103
+ .product-review .product-img-box .label { font-size:11px; margin:0 0 3px; }
1104
+ .product-review .product-img-box .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1105
+ .product-review .product-details { margin-left:150px; }
1106
+ .product-review .product-name { font-size:16px; font-weight:bold; margin:0 0 10px; }
1107
+ .product-review h3 {}
1108
+ .product-review .ratings-table { margin:0 0 10px; }
1109
+ .product-review dt { font-weight:bold; }
1110
+ .product-review dd { font-size:13px; margin:5px 0 0; }
1111
+ /* ======================================================================================= */
1112
+
1113
+ /* MAP Popup============================================================================== */
1114
+ .cart-msrp-totals { color:red; font-size:12px !important; font-weight:bold; margin:10px 10px 0; padding:10px; text-align:right; text-transform:uppercase;}
1115
+ .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; }
1116
+
1117
+ .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; }
1118
+ .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:5px 30px 5px 10px; width:260px; }
1119
+ .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; }
1120
+ .map-popup-arrow { background:url(../images/map_popup_arrow.gif) no-repeat; position:absolute; left:50%; top:-10px; height:10px; width:19px; }
1121
+ .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; }
1122
+ .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:left; width:280px; }
1123
+ .map-popup-checkout { display:inline; float:right; text-align:right; }
1124
+ .map-popup-checkout span { display:block; padding-right:30px; }
1125
+ .map-popup-checkout .paypal-logo { margin:0 0 5px; }
1126
+ .map-popup-price .price-box,
1127
+ .map-popup-price .price-box .special-price { margin:0; padding:0; }
1128
+ .map-popup-price { margin:5px 0 0; }
1129
+ .map-popup-text { clear:right; margin:0 10px; padding:10px 0; text-align:left; word-wrap:break-word; }
1130
+ .map-popup-only-text { border-top:1px solid #ddd; }
1131
+ /* ======================================================================================= */
1132
+
1133
+
1134
+ /* Footer ================================================================================ */
1135
+ .footer { padding:10px; }
1136
+ .footer p { text-align:right; }
1137
+ .footer address { text-align:right; }
1138
+ .footer ul {}
1139
+ .footer ul li { display:inline; }
1140
+ .footer-container .bottom-container { text-align:center; }
1141
+ /* ======================================================================================= */
1142
+
1143
+
1144
+ /* Clears ================================================================================ */
1145
+ .clearer:after,
1146
+ .header-container:after,
1147
+ .header-container .top-container:after,
1148
+ .header:after,
1149
+ .header .quick-access:after,
1150
+ #nav:after,
1151
+ .main:after,
1152
+ .footer:after,
1153
+ .footer-container .bottom-container:after,
1154
+ .col-main:after,
1155
+ .col2-set:after,
1156
+ .col3-set:after,
1157
+ .col4-set:after,
1158
+ .search-autocomplete li:after,
1159
+ .block .block-content:after,
1160
+ .block .actions:after,
1161
+ .block li.item:after,
1162
+ .block-poll li:after,
1163
+ .block-layered-nav .currently li:after,
1164
+ .page-title:after,
1165
+ .products-grid:after,
1166
+ .products-list li.item:after,
1167
+ .box-account .box-head:after,
1168
+ .dashboard .box .box-title:after,
1169
+ .box-reviews li.item:after,
1170
+ .box-tags li.item:after,
1171
+ .pager:after,
1172
+ .sorter:after,
1173
+ .ratings:after,
1174
+ .add-to-box:after,
1175
+ .add-to-cart:after,
1176
+ .product-essential:after,
1177
+ .product-collateral:after,
1178
+ .product-view .product-img-box .more-views ul:after,
1179
+ .product-view .product-shop .short-description:after,
1180
+ .product-view .box-description:after,
1181
+ .product-view .box-tags .form-add:after,
1182
+ .product-options .options-list li:after,
1183
+ .product-options-bottom:after,
1184
+ .product-review:after,
1185
+ .cart:after,
1186
+ .cart-collaterals:after,
1187
+ .cart .crosssell li.item:after,
1188
+ .opc .step-title:after,
1189
+ .checkout-progress:after,
1190
+ .multiple-checkout .place-order:after,
1191
+ .group-select li:after,
1192
+ .form-list li:after,
1193
+ .form-list .field:after,
1194
+ .buttons-set:after,
1195
+ .page-print .print-head:after,
1196
+ .advanced-search-summary:after,
1197
+ .gift-messages-form .item:after,
1198
+ .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1199
+ /* ======================================================================================= */
1200
+
1201
+
1202
+ /* Widgets =============================================================================== */
1203
+ .widget { display:inline; }
1204
+ .widget .widget-title { clear:both; padding:15px 0 0; margin:0 0 7px; }
1205
+ .widget .widget-title h2 { font-size:15px; font-weight:bold; color:#e25203; }
1206
+
1207
+ .widget .mini-products-images-list .product-image { display:block; width:76px; height:76px; border:1px solid #a9a9a9; margin:0 auto; }
1208
+ .widget .mini-products-images-list li.item { float:left; width:77px; height:77px; }
1209
+
1210
+ /* Widget: Catalog New Proructs List */
1211
+ .widget-new-products { display:block; }
1212
+ .col-main .widget-new-products { margin:7px 0; }
1213
+ .widget-new-products .products-grid .product-image,
1214
+ .widget-new-products .products-list .product-image { width:85px; height:85px; }
1215
+ .widget-new-products .products-list .product-shop { margin-left:100px; }
1216
+ .sidebar .widget-new-products .block { font-size:11px; line-height:1.25; }
1217
+ .sidebar .widget-new-products .block-title strong { background:url(../images/widgets/i_widget-new.gif) 0 1px no-repeat; padding-left:21px; color:#dc5033; }
1218
+
1219
+ /* Widget: Recently Viewed Proructs */
1220
+ .widget-viewed { display:block; }
1221
+ .col-main .widget-viewed { margin:7px 0; }
1222
+ .widget-viewed .products-grid .product-image,
1223
+ .widget-viewed .products-list .product-image { width:85px; height:85px; }
1224
+ .widget-viewed .products-list .product-shop { margin-left:100px; }
1225
+ .sidebar .widget-viewed .block { font-size:11px; line-height:1.25; }
1226
+ .sidebar .widget-viewed .block-title strong { background:url(../images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }
1227
+
1228
+ /* Widget: Recently Compared Proructs */
1229
+ .widget-compared { display:block;}
1230
+ .col-main .widget-compared { margin:7px 0; }
1231
+ .widget-compared .products-grid .product-image,
1232
+ .widget-compared .products-list .product-image { width:85px; height:85px; }
1233
+ .widget-compared .products-list .product-shop { margin-left:100px; }
1234
+ .sidebar .widget-compared .block { font-size:11px; line-height:1.25; }
1235
+ .sidebar .widget-compared .block-title strong { background:url(../images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }
1236
+
1237
+ /* Widget: CMS Static Block */
1238
+ .widget-static-block {}
1239
+ .sidebar .widget-static-block { display:block; margin:0 0 15px; }
1240
+
1241
+ /* Widgets: Links Common Styles */
1242
+ .top-container .widget a { padding:0 0 0 7px; }
1243
+
1244
+ .bottom-container .widget a { padding:0 3px; }
1245
+
1246
+
1247
+ /* This is the moving lens square underneath the mouse pointer. */
1248
+ .cloud-zoom-lens {
1249
+ border: 1px solid #ededed;
1250
+ margin:-1px; /* Set this to minus the border thickness. */
1251
+ background-color:#fff;
1252
+ cursor:move;
1253
+ }
1254
+
1255
+ /* This is for the title text. */
1256
+ .cloud-zoom-title {
1257
+ font-family:Arial, Helvetica, sans-serif;
1258
+ position:absolute !important;
1259
+ background-color:#000;
1260
+ color:#fff;
1261
+ padding:3px;
1262
+ width:100%;
1263
+ text-align:center;
1264
+ font-weight:bold;
1265
+ font-size:10px;
1266
+ top:0px;
1267
+ }
1268
+
1269
+ /* This is the zoom window. */
1270
+ .cloud-zoom-big {
1271
+ margin-left:10px;
1272
+ background-repeat:no-repeat;
1273
+ background-color:#ffffff;
1274
+ border:2px solid white;
1275
+ overflow:hidden;
1276
+ -moz-box-shadow:0 0 10px #ddd;
1277
+ -webkit-box-shadow:0 0 10px #ddd;
1278
+ box-shadow:0 0 10px #ddd;
1279
+ }
1280
+
1281
+ /* This is the loading message. */
1282
+ .cloud-zoom-loading {
1283
+ color:white;
1284
+ background:#222;
1285
+ padding:3px;
1286
+ border:1px solid #000;
1287
+ }
1288
+
1289
+ .mousetrap {background:url('../images/spacer.gif') 0 0 !important; }
1290
+
1291
+ .jcarousel-skin-tango .jcarousel-container {
1292
+ }
1293
+
1294
+ .jcarousel-skin-tango .jcarousel-direction-rtl {
1295
+ direction: rtl;
1296
+ }
1297
+
1298
+ .jcarousel-skin-tango .jcarousel-container-horizontal {
1299
+ margin:0;
1300
+ width:1200px;
1301
+ padding:0px;
1302
+ }
1303
+ .jcarousel-skin-tango .jcarousel-clip-horizontal {
1304
+ width:1200px;
1305
+ }
1306
+ .home-main .jcarousel-skin-tango .jcarousel-container-horizontal {
1307
+ width:900px;
1308
+ }
1309
+ .home-main .jcarousel-skin-tango .jcarousel-clip-horizontal {
1310
+ width:900px;
1311
+ }
1312
+
1313
+ .jcarousel-skin-tango .jcarousel-clip {
1314
+ overflow:hidden;
1315
+ }
1316
+ .jcarousel-skin-tango .jcarousel-item {
1317
+ width:252px;
1318
+ }
1319
+
1320
+ .jcarousel-skin-tango .jcarousel-item-horizontal {
1321
+ margin:0;
1322
+ position:relative;
1323
+ }
1324
+
1325
+ .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
1326
+ margin-left:0;
1327
+ margin-right: 0;
1328
+ }
1329
+
1330
+ /**
1331
+ * Horizontal Buttons
1332
+ */
1333
+ .jcarousel-next-horizontal, .jcarousel-prev-horizontal {display:block; position:absolute; width:35px; height:35px; background:#fefefe url("../images/slider-arrows.png") 0 0 no-repeat; -webkit-border-radius:100% !important; -moz-border-radius:100% !important; border-radius:100% !important; }
1334
+ .jcarousel-prev-horizontal {margin:-60px 0 0; right:55px; background-position:100% 0;}
1335
+ .jcarousel-next-horizontal {margin:-60px 0 0; right:15px;}
1336
+ .jcarousel-next-horizontal:hover {background-color:#97CAE4; background-position:0 100%;}
1337
+ .jcarousel-prev-horizontal:hover {background-color:#97CAE4; background-position:100% 100%;}
1338
+ /*
1339
+ * HTML5 Boilerplate
1340
+ *
1341
+ * What follows is the result of much research on cross-browser styling.
1342
+ * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
1343
+ * Kroc Camen, and the H5BP dev community and team.
1344
+ *
1345
+ * Detailed information about this CSS: h5bp.com/css
1346
+ *
1347
+ * ==|== normalize ==========================================================
1348
+ */
1349
+
1350
+
1351
+ /* =============================================================================
1352
+ HTML5 display definitions
1353
+ ========================================================================== */
1354
+
1355
+ article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
1356
+ audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
1357
+ audio:not([controls]) { display: none; }
1358
+ [hidden] { display: none; }
1359
+
1360
+
1361
+ /* =============================================================================
1362
+ Base
1363
+ ========================================================================== */
1364
+
1365
+ /*
1366
+ * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
1367
+ * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
1368
+ */
1369
+
1370
+ html, body {}
1371
+ html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
1372
+ html, button, input, select, textarea { font-family: Arial, Helvetica; color: #222; }
1373
+ body { margin: 0; font-size: 1em; line-height: 1.4; }
1374
+
1375
+ /*
1376
+ * Remove text-shadow in selection highlight: h5bp.com/i
1377
+ * These selection declarations have to be separate
1378
+ * Also: hot pink! (or customize the background color to match your design)
1379
+ */
1380
+ ::-moz-selection { background: #666; color: #fff; text-shadow: none; }
1381
+ ::selection { background: #666; color: #fff; text-shadow: none; }
1382
+
1383
+
1384
+ /* =============================================================================
1385
+ Links
1386
+ ========================================================================== */
1387
+ a { color: #00e; }
1388
+ a:hover { color: #06e; }
1389
+ a:focus { outline: none; }
1390
+ /* Improve readability when focused and hovered in all browsers: h5bp.com/h */
1391
+ a:hover, a:active { outline: 0; }
1392
+ /* =============================================================================
1393
+ Typography
1394
+ ========================================================================== */
1395
+ abbr[title] { border-bottom: 1px dotted; }
1396
+ b, strong { font-weight: bold; }
1397
+ blockquote { margin: 1em 40px; }
1398
+ dfn { font-style: italic; }
1399
+ hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
1400
+ ins { background: #ff9; color: #000; text-decoration: none; }
1401
+ mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
1402
+ /* Redeclare monospace font family: h5bp.com/j
1403
+ pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
1404
+ */
1405
+ /* Improve readability of pre-formatted text in all browsers */
1406
+ pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
1407
+ q { quotes: none; }
1408
+ q:before, q:after { content: ""; content: none; }
1409
+ small { font-size: 85%; }
1410
+ /* Position subscript and superscript content without affecting line-height: h5bp.com/k */
1411
+ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
1412
+ sup { top: -0.5em; }
1413
+ sub { bottom: -0.25em; }
1414
+ /* =============================================================================
1415
+ Lists
1416
+ ========================================================================== */
1417
+ ul, ol { margin:0; padding:0px; }
1418
+ dd { margin: 0 0 0 40px; }
1419
+ nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
1420
+ /* =============================================================================
1421
+ Embedded content
1422
+ ========================================================================== */
1423
+ /*
1424
+ * 1. Improve image quality when scaled in IE7: h5bp.com/d
1425
+ * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
1426
+ */
1427
+ img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle;}
1428
+ /*
1429
+ * Correct overflow not hidden in IE9
1430
+ */
1431
+ svg:not(:root) { overflow: hidden; }
1432
+ /* =============================================================================
1433
+ Figures
1434
+ ========================================================================== */
1435
+ figure { margin: 0; }
1436
+ /* =============================================================================
1437
+ Forms
1438
+ ========================================================================== */
1439
+ form { margin: 0; }
1440
+ fieldset { border: 0; margin: 0; padding: 0; }
1441
+ /* Indicate that 'label' will shift focus to the associated form element */
1442
+ label { cursor: pointer; }
1443
+ /*
1444
+ * 1. Correct color not inheriting in IE6/7/8/9
1445
+ * 2. Correct alignment displayed oddly in IE6/7
1446
+ */
1447
+ legend { border: 0; *margin-left:-7px; padding: 0; white-space: normal; }
1448
+ /*
1449
+ * 1. Correct font-size not inheriting in all browsers
1450
+ * 2. Remove margins in FF3/4 S5 Chrome
1451
+ * 3. Define consistent vertical alignment display in all browsers
1452
+ */
1453
+ button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
1454
+ /*
1455
+ * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
1456
+ */
1457
+ button, input { line-height: normal; }
1458
+ /*
1459
+ * 1. Display hand cursor for clickable form elements
1460
+ * 2. Allow styling of clickable form elements in iOS
1461
+ * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
1462
+ */
1463
+ button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
1464
+ /*
1465
+ * Re-set default cursor for disabled elements
1466
+ */
1467
+ button[disabled], input[disabled] { cursor: default; }
1468
+ /*
1469
+ * Consistent box sizing and appearance
1470
+ */
1471
+ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
1472
+ input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
1473
+ input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
1474
+ /*
1475
+ * Remove inner padding and border in FF3/4: h5bp.com/l
1476
+ */
1477
+ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
1478
+ /*
1479
+ * 1. Remove default vertical scrollbar in IE6/7/8/9
1480
+ * 2. Allow only vertical resizing
1481
+ */
1482
+ textarea { overflow: auto; vertical-align: top; resize: vertical; }
1483
+ /* Colors for form validity */
1484
+ input:valid, textarea:valid { }
1485
+ input:invalid, textarea:invalid { background-color: #f0dddd; }
1486
+ /* =============================================================================
1487
+ Tables
1488
+ ========================================================================== */
1489
+ table { border-collapse: collapse; border-spacing: 0; }
1490
+ td { vertical-align: top; }
1491
+ /* =============================================================================
1492
+ Chrome Frame Prompt
1493
+ ========================================================================== */
1494
+ .chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }
1495
+ /* ==|== primary styles ===================================================== */
1496
+ body { font-size:12px; font-family:Arial, Helvetica, sans-serif; color:#1b1a19; background:#fafafa; }
1497
+ a { color:#828282; text-decoration:none; outline: none; }
1498
+ a:hover { color:#828282; text-decoration:underline; }
1499
+
1500
+ button.button span {background:#97CAE4 url('../images/btn_overlay.png') 0 0 repeat-x; padding:0px; height:42px; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px;}
1501
+ button.button span span {line-height:42px; padding:0 16px; font-size:14px; font-weight:300; color:#fff; text-align:center; white-space:nowrap; text-transform:lowercase;}
1502
+ button.button:hover span {background-color:#393431;}
1503
+ button.button:hover span span { }
1504
+
1505
+ button.invert span, button.btn-continue span, .cart-shipping button span, .cart-coupon button span {background-color:#97CAE4;}
1506
+ button.invert:hover span, button.btn-continue:hover span, .cart-shipping button:hover span, .cart-coupon button:hover span {background-color:#393431;}
1507
+
1508
+ button.btn-proceed-checkout span span {padding-right:60px; background:url('../images/arrow_button.png') 100% 50% no-repeat; }
1509
+ button.btn-proceed-checkout:hover span span { background-position:98% 50%; }
1510
+
1511
+ button.button_white { height:42px;
1512
+ -webkit-box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.15);
1513
+ -moz-box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.15);
1514
+ box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.15);
1515
+ }
1516
+ button.button_white span,
1517
+ button.button_white:hover span{
1518
+ background: #ffffff !important; /* Old browsers */
1519
+ background: -moz-linear-gradient(top, #ffffff 1%, #f2f2f2 100%) !important; /* FF3.6+ */
1520
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#f2f2f2)) !important; /* Chrome,Safari4+ */
1521
+ background: -webkit-linear-gradient(top, #ffffff 1%,#f2f2f2 100%) !important; /* Chrome10+,Safari5.1+ */
1522
+ background: -o-linear-gradient(top, #ffffff 1%,#f2f2f2 100%) !important; /* Opera 11.10+ */
1523
+ background: -ms-linear-gradient(top, #ffffff 1%,#f2f2f2 100%) !important; /* IE10+ */
1524
+ background: linear-gradient(to bottom, #ffffff 1%,#f2f2f2 100%) !important; /* W3C */
1525
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 ) !important; /* IE6-9 */
1526
+ }
1527
+ button.button_white span span { padding:0 37px; color:#000; color:rgba(0,0,0,0.75); }
1528
+ button.button_white:hover {padding:1px 0 0 1px;-webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none;}
1529
+ button.button_white:hover span span { }
1530
+
1531
+ .btn-remove, .btn-edit {display:block; width:15px; height:15px; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; }
1532
+ .btn-edit { background-image:url(../images/btn_edit.gif);}
1533
+ .btn-remove { background-image:url(../images/btn_remove.gif);}
1534
+
1535
+ h1, h2, h3 { color:#000; color:rgba(0,0,0,0.75); letter-spacing:0em; font-weight:400; }
1536
+
1537
+ .page-404 {}
1538
+ .std dl dt{ color:#4c4c4c;}
1539
+ .std h1, .std h2, .std h3, .std h4 {font-size:24px; font-family:Arial, Helvetica,serif; font-weight:400; text-transform:uppercase;}
1540
+ .std h2 {font-size:24px;}
1541
+ .std h3, .std h3 {font-size:18px;}
1542
+ .std ul.disc {list-style: none; margin:10px 0;}
1543
+ .std ul.disc li {line-height: 22px; padding:0 10px 0 20px; }
1544
+ .std ul.buttons li { background:none; float:left; padding:0; margin:0 3px 0;}
1545
+ .std ul.buttons li button.button span {text-transform: capitalize; font-size:12px;}
1546
+ .std img{ max-width:100%; height:auto;width:auto\9; /* ie8 */ }
1547
+
1548
+ .page-title { border:none; padding:0 0 58px;margin:0 15px; }
1549
+ .col2-left-layout .page-title { margin-left:-285px; }
1550
+ .col2-right-layout .page-title { margin-right:-285px; }
1551
+ .col3-layout .page-title { margin:0 -285px;text-align: center; }
1552
+ .page-popup .page-title { padding:0 0 18px; }
1553
+ .page-title h1, .page-title h2 {text-transform: uppercase; font-size:36px; font-family:Arial, Helvetica; font-weight:400; line-height:30px; letter-spacing:-1.5px }
1554
+ .page-head-alt {margin:0 0 20px; padding:0 0 15px; border-bottom:1px solid #e6e6e6;}
1555
+ .page-head-alt h3 {text-transform: uppercase; font-size: 24px; color:#4c4c4c;}
1556
+ .page-title-bg {position:absolute; width:100%; background:#f5f5f3;}
1557
+ .page-head h3, .product-category-title {margin:-30px 0 30px; line-height:36px; font-size:36px; padding:20px 0; color:#322c29; border-top:1px solid; border-top-color:#e3e3e3; border-top-color:rgba(227,227,227,0.61); }
1558
+ .col2-left-layout .page-head { margin-left:-300px; }
1559
+ .col2-right-layout .page-head { margin-right:-300px; }
1560
+ .col3-layout .page-head { margin:0 -300px; }
1561
+
1562
+ .buttons-set {padding:0; margin:0 15px; text-align:right;}
1563
+ .buttons-set button.button {float:left;}
1564
+ .buttons-set .back-link { float:right; }
1565
+ .fieldset {border:none; background:transparent; padding:15px;}
1566
+ .fieldset .legend {margin:-40px 0 0 -10px; padding:8px; background:transparent; border:none;}
1567
+ .form-list label { float:left; color:#000; color:rgba(0,0,0,0.75); font-weight:300; position:relative; z-index:0; margin-top:0px; padding:0 0 3px 2px; }
1568
+ .input-box{ border:0; padding:0; }
1569
+ input.input-text, textarea, input.qty {padding:4px; border:1px solid #e0e0e0; height:19px; -webkit-box-shadow:inset 0px 0px 5px 0px #eaeaea; -moz-box-shadow:inset 0px 0px 5px 0px #eaeaea; box-shadow:inset 0px 0px 5px 0px #eaeaea; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;}
1570
+ select {padding:1px; height:29px; line-height:29px; border:1px solid #e0e0e0; -webkit-box-shadow:inset 0px 0px 5px 0px #eaeaea; -moz-box-shadow:inset 0px 0px 5px 0px #eaeaea; box-shadow:inset 0px 0px 5px 0px #eaeaea;}
1571
+ select.multiselect {height:auto;}
1572
+ .form-list select {width:259px;}
1573
+ .buttons-set p.required { margin: 0 0 5px;}
1574
+ p.required { font-size: 12px; text-align: left; }
1575
+ .form-list li.wide textarea { width: 670px;}
1576
+ .dotted-border {border:2px dotted #aaa; padding:10px;}
1577
+
1578
+ /* Layout ================================================================================ */
1579
+ .wrapper {}
1580
+ .top-border{border-top:3px solid #9a1212;}
1581
+ .page { width:100%; margin:0 auto; padding: 0; }
1582
+
1583
+ .main-container {background:#fafafa; }
1584
+ .main { margin:0 auto; position: relative; z-index:1; }
1585
+
1586
+ /* Base Columns */
1587
+ .col-left { float:left; width:300px; border:none; padding:30px 0 0; margin:0; }
1588
+ .col-main, .col-main-left, .col-main-right { float:left; width:870px; border:none; padding:15px 15px 0; margin:0; min-height:400px; }
1589
+ .col-right { float:right; width:300px; border:none; padding:30px 0 0; margin:0; }
1590
+
1591
+ /* 1 Column Layout */
1592
+ .col1-layout .col-main {float:none; width:auto; margin:0;}
1593
+
1594
+ /* 2 Columns Layout */
1595
+ .col2-left-layout .col-main {}
1596
+ .col2-right-layout .col-main {}
1597
+
1598
+ .col3-layout .col-main {width:570px; margin:0; float:left;}
1599
+ .col3-layout .col-wrapper { width:auto; }
1600
+
1601
+ /*** CUSTOM STYLES ****/
1602
+ body.non-responsive {min-width:1200px;}
1603
+ /*.cms-index-index .col-main { width:auto; margin:0; padding:0 }*/
1604
+ .cms-index-index .col3-layout .col-left,.cms-index-index .col3-layout .col-right{
1605
+ padding: 50px 0px 0px;
1606
+ }
1607
+ .contacts-index-index .buttons-set {margin-top:-35px;}
1608
+ .contacts-index-index .buttons-set p.required {float:left; margin:0 0 25px;}
1609
+ .contacts-index-index .buttons-set button.button {margin: -12px 0 0; clear:left; }
1610
+ .contacts-index-index .form-list .input-box, .contacts-index-index .form-list li.wide .input-box {width:100%}
1611
+ .contacts-index-index .form-list input.input-text {width:50%}
1612
+ .contacts-index-index .form-list li.wide textarea {width:90%}
1613
+ .customer-account-login {}
1614
+ .customer-account-login .main-container {-webkit-box-shadow:inset 0px 4px 10px -5px rgba(0, 0, 0, 0.15); -moz-box-shadow:inset 0px 4px 10px -5px rgba(0, 0, 0, 0.15); box-shadow:inset 0px 4px 10px -5px rgba(0, 0, 0, 0.15);}
1615
+ .customer-account-login .account-login {padding:30px 0 90px;}
1616
+ .customer-account-login h2 {margin:0 0 10px;}
1617
+ .customer-account-create .account-create {padding:30px 0;}
1618
+ .customer-account-create .account-create h2.legend { margin:25px 0 0; }
1619
+ .customer-account-create .account-create h2.first { margin:0; }
1620
+ .customer-account-create .account-create .form-list .field { float:none; width:auto; }
1621
+ .customer-account-create .account-create .buttons-set { margin:0; text-align:center; }
1622
+ .customer-account-create .account-create .buttons-set button.button { float:none }
1623
+ .customer-account-create .account-create p.required { text-align:center; }
1624
+ .customer-account-forgotpassword .account-login {padding:30px 0;}
1625
+ .customer-account-forgotpassword .main-container {-webkit-box-shadow:inset 0px 4px 10px -5px rgba(0, 0, 0, 0.15); -moz-box-shadow:inset 0px 4px 10px -5px rgba(0, 0, 0, 0.15); box-shadow:inset 0px 4px 10px -5px rgba(0, 0, 0, 0.15);}
1626
+ .main .cart {}
1627
+ .main .cart-empty {margin:15px;}
1628
+ .catalog-category-view .col-left, .catalog-category-view .col-right {padding:15px 0 0;}
1629
+ .catalogsearch-result-index .breadcrumbs, .catalogsearch-advanced-index .breadcrumbs, .catalogsearch-advanced-result .breadcrumbs {display:none;}
1630
+ .catalog-category-view .col1-layout .products-grid {margin:0 0 0 -15px;}
1631
+ .checkout-onepage-index .col-right {padding:202px 0 0; }
1632
+ .checkout-onepage-success .buttons-set {margin:15px 0;}
1633
+ .checkout-cart-index {}
1634
+ .checkout-cart-index .page-title h1{line-height:42px;}
1635
+ .cart .page-title .checkout-types {margin-top:0px;}
1636
+ .cart .title-buttons .checkout-types li {margin:0}
1637
+ .sendfriend-product-send .form-list li.wide textarea { width:100%;}
1638
+ .sendfriend-product-send .buttons-set {text-align:left; }
1639
+ .sendfriend-product-send .buttons-set button.button {float:none;}
1640
+ .sendfriend-product-send .buttons-set button.button span span {width:120px}
1641
+
1642
+
1643
+ /* ======================================================================================= */
1644
+
1645
+ /* Header ================================================================================ */
1646
+ .header-container { background:#fff; color:#656565; position:relative; }
1647
+ .top-switch-bg{ background:#f9f9f9; border-top:5px solid #322c29; min-height:29px; position:relative; z-index:10030;}
1648
+
1649
+ .header-switch {line-height:29px; background-repeat:no-repeat; background-position:0% 50%; margin-right:2px; float:left;}
1650
+ .top-switch-bg .over {
1651
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1652
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1653
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
1654
+ .top-switch-bg .over span { background:#fff;}
1655
+ .header-switch span {color:rgba(108,108,108,0.59); display:block; padding:0 10px; position:relative; z-index:2; }
1656
+ .header-switch span.current { display:inline; color:rgba(29,28,27,0.59); padding:0 12px 0 5px; background:url("../images/arrow_switch.png") 100% 50% no-repeat; }
1657
+ .header-dropdown {background:#fff; padding:14px; display:none; position:absolute; margin:0;
1658
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1659
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1660
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
1661
+ .header-dropdown ul{}
1662
+ .header-dropdown ul li{}
1663
+ .header-dropdown ul li a{ display:block; line-height:28px; min-width:110px; margin:0; padding:0 9px; color:#8c8c8c; }
1664
+ .header-dropdown ul li a:hover { background:#f5f4f4; text-decoration:none; }
1665
+ .header-dropdown ul li a.selected {color:#322c29}
1666
+ .language-switch {margin-left:-10px;}
1667
+ .language-switch .header-dropdown ul li a{ background-repeat:no-repeat; background-position:10px 50%; padding:0 9px 0 35px; }
1668
+ .language-select, .currency-select {display:none; }
1669
+
1670
+ .links { float:right; margin: 0; padding: 0; }
1671
+ .links li{ margin: 0; padding: 0; line-height:29px; }
1672
+ .links li a {color:#1d1c1b;}
1673
+ .links li a:hover {color:#97CAE4; text-decoration: none;}
1674
+ .links li.separator{ padding:0 12px; }
1675
+
1676
+ header { position:relative; z-index:10020;
1677
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1678
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1679
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
1680
+ .logo { float:none; display: inline-block; }
1681
+ header a.logo { text-decoration:none !important; margin:34px 0; }
1682
+ header a.logo img{ max-width:100%; height:auto;width:auto\9; /* ie8 */ }
1683
+ header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
1684
+ header h1.logo {padding:0;}
1685
+ header.fixed {position:fixed; top:0; width:100%; background:#fff;}
1686
+ header.fixed a.logo { margin:14px 0; }
1687
+ header.fixed #nav, header.fixed #nav {margin:11px 0 14px 46px;}
1688
+
1689
+ .cart-top-container {float:right; position:relative; margin:0px 50px 0 4px;}
1690
+ .cart-top {}
1691
+ .cart-top > a {display:block; background:#97CAE4 url('../images/cart_top.png') 50% 50% no-repeat; width:38px; height:38px; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; }
1692
+ .cart-top > a:hover {background-color:#322c29; text-decoration:none; }
1693
+ .cart-top > a span {padding:0 0 0 48px; color:#373230; font-size:14px; font-family:Arial, Helvetica,sans-serif; font-weight:700; line-height:38px; text-transform:uppercase; white-space:nowrap;}
1694
+ .cart-top-container .details { display:none; background:#fff; width:254px; padding:16px; line-height:150%; color:#7b7b7b; position:absolute; z-index:10020; right:-40px; top:48px;
1695
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15); -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15); box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1696
+ -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px; }
1697
+ .cart-top-container .details-border{background:#97CAE4; height:4px; width:254px; padding:0 16px; margin:-16px 0 16px -16px; border-top-left-radius:2px; border-top-right-radius:2px; -moz-border-top-left-radius:2px; -moz-border-top-right-radius:2px; -webkit-border-top-left-radius:2px; -webkit-border-top-right-radius:2px; }
1698
+ .cart-top-container .details-border:before{content:""; position:absolute; border-color: transparent transparent #97CAE4 transparent; border-style: solid; border-width:5px; height:0; width:0; top:-9px; right:52px;}
1699
+ .cart-top-container .details .text-recently{font-size:11px;}
1700
+ .cart-top-container .details a{color:#7b7b7b; }
1701
+ .cart-top-container .details a:hover{text-decoration:none; color:#000; }
1702
+ .cart-top-container .details p{margin:14px 0 5px 0}
1703
+ .cart-top-container .details p.product-name {margin:0}
1704
+ .cart-top-container .details a.product-image{}
1705
+ .cart-top-container .details .item-options{font-size:10px; line-height:10px; }
1706
+ .cart-top-container .details ol{ margin:0; padding:0; }
1707
+ .cart-top-container .details ol li.item{ padding:0 0 10px; margin:0 0 10px; border-bottom:1px solid #f1f1f1;}
1708
+ .cart-top-container .details ol li.item:last-child{ margin:0; border:none;}
1709
+ .cart-top-container .details ol li.item strong{font-weight:300;}
1710
+ .mini-products-list .product-image { border: none; padding: 0px; }
1711
+ .mini-products-list .product-details { margin-left: 60px; }
1712
+ .cart-top-container .details .btn-edit { float:right; margin-left: 18px; }
1713
+ .cart-top-container .details .btn-remove { float:right; margin-left: 2px; }
1714
+ .cart-top-container .details .buttons { margin-top:15px; }
1715
+ .cart-top-container .details .button span span { font-size:14px; padding:0 15px; }
1716
+ .cart-top-container .details .button { float:right; }
1717
+ .cart-top-container .details .btn-continue { float:left; }
1718
+ .cart-top-container .cart-promotion {background: #eee; padding: 10px; color: #392420;}
1719
+ .cart-top-container .details .subtotal-wrapper{ width:286px; margin:0 0 1px -16px; padding:0; overflow:hidden;}
1720
+ .cart-top-container .details .subtotal{ background:#fefefe; width:254px; margin:0 0 0 -10px; padding:0 26px; line-height:41px; font-size:13px; font-weight:700; text-align:right; text-transform:uppercase; -moz-box-shadow:inset 0 0 10px rgba(57,36,32,0.18); -webkit-box-shadow:inset 0 0 10px rgba(57,36,32,0.18); box-shadow:inset 0 0 10px rgba(57,36,32,0.18); box-shadow: }
1721
+
1722
+
1723
+ .top-dropdowns { position: absolute; right: 0; top: 50%; margin-top: -20px;}
1724
+
1725
+
1726
+ .cart-top-title{font-family:Arial, Helvetica, sans-serif; font-size:14px; line-height:38px; text-align:left; margin:0 0 10px 5px; display:none; }
1727
+ .cart-top-title a{display:block; vertical-align:top;}
1728
+ .cart-top-title a:hover{text-decoration:none; color:#000; }
1729
+ .cart-top-title a span.icon {display:block; float:left; background:#97CAE4 url('../images/cart_top.png') 50% 50% no-repeat; width:38px; height:38px; margin:0 10px 0 0; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; }
1730
+ .cart-top-title a:hover span.icon {background-color:#322c29; text-decoration:none; }
1731
+
1732
+
1733
+
1734
+
1735
+ /********** < Search form */
1736
+ .search-top-container{float:right; position:relative; margin:0px 0 0 4px;}
1737
+
1738
+ .search-top:hover {background-color:#322c29; }
1739
+ .search-form{display:none; background:#fff; width:240px; padding:8px; position:absolute; z-index:10030; right:-60px; top:47px;
1740
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15); -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15); box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1741
+ -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px; }
1742
+ .search-form-border{background:#97CAE4; height:4px; width:240px; padding:0 8px; margin:-8px 0 8px -8px; border-top-left-radius:2px; border-top-right-radius:2px; -moz-border-top-left-radius:2px; -moz-border-top-right-radius:2px; -webkit-border-top-left-radius:2px; -webkit-border-top-right-radius:2px; }
1743
+ .search-form-border:before{content:""; position:absolute; border-color: transparent transparent #97CAE4 transparent; border-style: solid; border-width:5px; height:0; width:0; top:-9px; right:72px;}
1744
+ .search-top-container .search-form .search-top-title{font-family:Arial, Helvetica, sans-serif; font-size:16px; line-height:38px; text-align:left; vertical-align:top; margin:0 0 0 42px; display:none; }
1745
+ .search-top-container .search-form .search-top-title:hover span.icon {background-color:#322c29; text-decoration:none; }
1746
+
1747
+ #search_mini_form {}
1748
+ #search_mini_form .form-search {}
1749
+ #search { width:224px; height:19px; padding:4px 7px; border:1px solid #e3e3e3; line-height:19px; color:#7b7b7b; -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px; }
1750
+ #search_mini_form .form-search button {display:none;}
1751
+ .search-autocomplete { background:#fff; margin:0; position:relative !important; top:0 !important; left:0 !important; }
1752
+ .search-autocomplete ul{margin:0; padding:0;}
1753
+ .search-autocomplete ul li{line-height:21px; padding:0 10px; color:#000; color:rgba(0,0,0,0.67);}
1754
+ .search-autocomplete ul li span.amount{float:right; font-weight: 800;}
1755
+ .search-autocomplete ul li.odd{}
1756
+ .search-autocomplete ul li.even{background:#e7e7e7;}
1757
+ .search-autocomplete ul li.last{}
1758
+ .search-autocomplete ul li:hover{background:#ddd;}
1759
+
1760
+ .search-field {}
1761
+ .search-field #search {width: 164px; padding:4px 27px 4px 7px; }
1762
+ .search-field #search_mini_form .form-search { margin: 5px 12px 0 0; }
1763
+ .search-field #search_mini_form .form-search button {display:block; position:absolute; width:23px; height:29px; margin:-29px 0 0 176px; background:transparent url("../images/search.png") 0 0 no-repeat; border:0; }
1764
+ .search-field #search_mini_form .form-search button:hover { background-position:0 100%;}
1765
+ /********** < Search form */
1766
+
1767
+ /* top compare block*/
1768
+ .compare-top-container {float:right; position:relative; margin:0px 0 0 4px;}
1769
+ .compare-top {display:block; overflow:hidden; background:#97CAE4 url('../images/compare.png') 50% 50% no-repeat; width:38px; height:38px; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; cursor:pointer; }
1770
+ .compare-top:hover {background-color:#322c29; }
1771
+ .compare-top-container .details { display:none; background:#fff; width:254px; padding:16px; line-height:150%; color:#7b7b7b; position:absolute; z-index:10020; right:-40px; top:48px;
1772
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15); -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15); box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1773
+ -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px; }
1774
+ .compare-top-container .details-border{background:#97CAE4; height:4px; width:254px; padding:0 16px; margin:-16px 0 16px -16px; border-top-left-radius:2px; border-top-right-radius:2px; -moz-border-top-left-radius:2px; -moz-border-top-right-radius:2px; -webkit-border-top-left-radius:2px; -webkit-border-top-right-radius:2px; }
1775
+ .compare-top-container .details-border:before{content:""; position:absolute; border-color: transparent transparent #97CAE4 transparent; border-style: solid; border-width:5px; height:0; width:0; top:-9px; right:52px;}
1776
+ .compare-top-container .details a:hover{text-decoration:none; color:#000; }
1777
+ .compare-top-container .details li.item {margin:0 0 9px 25px; padding:0; line-height:16px; background:none;}
1778
+ .compare-top-container .details .btn-remove {float:left; margin:1px 0 0 -25px; }
1779
+ .compare-top-container .details .actions {margin:10px 0 0 0; padding:10px 0 0; border-top:1px solid #e8e8e8; text-align:center }
1780
+ .compare-top-container .details .actions .f-right {float:none !important; line-height:25px; }
1781
+ .compare-top-container .details .actions a {float:none;}
1782
+ .compare-top-container .details .actions a:before {content:''; position:absolute; width:15px; height:15px; margin:5px 0 0 -20px; background-color:#393431; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; background-image:url(../images/btn_remove.gif);}
1783
+
1784
+ .compare-top-title{font-family:Arial, Helvetica, sans-serif; font-size:14px; line-height:38px; text-align:left; margin:0 0 10px 5px; display:none; }
1785
+ .compare-top-title a{display:block; vertical-align:top;}
1786
+ .compare-top-title a:hover{text-decoration:none; color:#000; }
1787
+ .compare-top-title a span.icon {display:block; float:left; background:#97CAE4 url('../images/compare.png') 50% 50% no-repeat; width:38px; height:38px; margin:0 10px 0 0; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; }
1788
+ .compare-top-title a:hover span.icon {background-color:#322c29; text-decoration:none; }
1789
+
1790
+
1791
+ /* FOOTER ================================================================================ */
1792
+ .footer-container {background:none #322c29; color:#666666; margin:0; padding:0; position:relative;}
1793
+
1794
+ .footer-banners {background:#f7f7f6; padding:25px 0;}
1795
+ .footer-banners img{max-width: 100%; height: auto; width:auto\9; /* ie8 */}
1796
+ .footer-banners a:hover img{opacity:0.6;}
1797
+
1798
+ .footer-info { border-bottom:1px solid #666; padding:60px 0;}
1799
+ .footer-info a:hover {color:#fff; text-decoration: none;}
1800
+ .footer-info h4{font-size:24px; font-family:Arial, Helvetica, serif; font-weight:400; text-transform:uppercase; letter-spacing:0em; margin:0 0 24px; }
1801
+ .footer-info .information h4{margin-bottom:18px; }
1802
+ .footer-info hr{border-top:1px solid rgb(0,0,0); border-top-color:#e6e6e4; border-top-color:rgba(0,0,0,0.06); height:1px; margin:17px 0;}
1803
+ .footer-info p{line-height:150%; margin:0 0 0 3px;}
1804
+ .footer-info ul{margin:0; padding:0; }
1805
+ .footer-info ul li{margin:0; padding:0; line-height:30px; }
1806
+ .footer-info ul li p{overflow:hidden; line-height:30px; }
1807
+ .footer-info .block-content {display:block; }
1808
+ .footer-info iframe {width:300px; height:260px; margin:0 -15px;}
1809
+
1810
+ footer {line-height:58px; }
1811
+ footer a {color:#a2a2a2}
1812
+ footer a:hover {color:#fff; text-decoration: none;}
1813
+ footer ul{ margin:0; padding: 0; }
1814
+ footer ul.links{ float:right; margin-right:10px; }
1815
+ footer ul.links a{ color:rgb(140,140,140); color:rgba(140,140,140,0.87); }
1816
+ footer ul.links li a:hover {color:#97CAE4; text-decoration: none;}
1817
+ footer ul.links li.separator{ padding:0 9px 0 8px; }
1818
+ footer .copyright{border-top:1px dotted #e0e0e0; margin:40px 0 0; padding:20px 0 0;}
1819
+ footer address{ margin-left:10px; }
1820
+ .footer-container ul li a:hover{
1821
+ color: #97CAE4;
1822
+ }
1823
+ /********** < Navigation */
1824
+ .nav-container {position:relative; z-index:10010; display:inline-block; vertical-align:middle;}
1825
+ .nav-container .nav-top-title{ cursor:pointer; font-family:Arial, Helvetica, sans-serif; font-size:16px; text-align:left; width:220px; margin:0 auto 3px; padding:0 10px; line-height:36px; background:#eee; color:#000; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px; display:none; }
1826
+ .nav-container .nav-top-title a{color:#000; text-decoration:none; }
1827
+ .nav-container .nav-top-title div.icon {float:left; width:15px; margin:11px 10px 0 0;}
1828
+ .nav-container .nav-top-title div.icon span {display:block; height:3px; margin:0 0 2px;}
1829
+ .nav-container .nav-top-title:hover {}
1830
+ .nav-container .nav-top-title:hover a,
1831
+ .nav-container .nav-top-title.active a {color:#fff; }
1832
+ .nav-container .nav-top-title:hover div.icon span,
1833
+ .nav-container .nav-top-title.active div.icon span {background:#fff; }
1834
+ .nav-container li.parent em {float:right; display:none; width:36px; text-align:center; font-style:normal; font-weight:700; }
1835
+ .nav-container li.parent em:hover {cursor:pointer; background:#fff; color:#000 !important; }
1836
+
1837
+ #nav { width:750px; margin:31px 0 34px 46px; padding:0; position:relative; border:none; float:left; }
1838
+ .search-field #nav {width:560px}
1839
+ .below-logo #nav {width:auto; margin:0 0 10px 3px}
1840
+
1841
+ /* All Levels */
1842
+ #nav li { text-align:left; position: static; }
1843
+ #nav li.over { z-index:998; }
1844
+ #nav li.parent {}
1845
+ #nav li a { display:block; text-decoration:none; font-weight:300; }
1846
+ #nav li a:hover { text-decoration:none; }
1847
+ #nav li a span { display:block; white-space:nowrap; cursor:pointer; }
1848
+ #nav li ul a span { white-space:normal; }
1849
+
1850
+ /* 1st Level */
1851
+ #nav>li { float:left; position:relative; margin:0 3px 3px;}
1852
+ #nav>li>a { position:relative; float:left; padding:0; color:#373230; font-size:14px; font-family:Arial, Helvetica,sans-serif; font-weight:700; line-height:36px; letter-spacing:0em; text-transform:uppercase; }
1853
+ #nav>li>a>span{padding:0px 10px; border-top:3px solid transparent;}
1854
+ #nav>li:hover>a>span,
1855
+ #nav>li.over>a>span,
1856
+ #nav>li.active>a>span { background:#fff; }
1857
+ #nav>li:hover,
1858
+ #nav>li.over,
1859
+ #nav>li.active{
1860
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1861
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1862
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
1863
+ #nav>li>a:hover, #nav>li.over>a{z-index:1000;}
1864
+ #nav>li>a:hover>span,
1865
+ #nav>li.over>a>span,
1866
+ #nav>li.active>a>span{border-top:3px solid #97CAE4;}
1867
+ #nav>li.custom-block>a, #nav>li.custom-block>a>span {cursor:default;}
1868
+
1869
+ /* 2nd Level */
1870
+ /*#nav ul,*/
1871
+ #nav div.sub-wrapper { position:absolute; z-index:999; width:auto; padding:16px 0; margin:39px 0 0; left:-10000px; border:none; background:#fff;
1872
+ -webkit-box-shadow:0px 0px 12px 0px rgba(0, 0, 0, 0.15);
1873
+ -moz-box-shadow:0px 0px 12px 0px rgba(0, 0, 0, 0.15);
1874
+ box-shadow:0px 0px 12px 0px rgba(0, 0, 0, 0.15);}
1875
+ #nav div.sub-wrapper ul { position:static; width:auto; border:none; }
1876
+ #nav>li>div.sub-wrapper>ul>li { float:none; display:table-cell; border:none; width:210px; padding:0 16px; border-right:1px solid #ededed;}
1877
+ #nav>li>div.sub-wrapper>ul>li:last-child { border:none;}
1878
+
1879
+ /* 3rd+ leven */
1880
+ /*#nav ul ul,*/
1881
+ #nav div.sub-wrapper ul div.sub-wrapper { top:-5px;
1882
+ margin:0 0 0 101px;
1883
+ padding:0; width:auto; border:none;}
1884
+ #nav ul div.sub-wrapper ul{ padding:16px; width:auto; }
1885
+ #nav ul li { float:none; border:none; width:210px; line-height:28px; position:relative; }
1886
+ #nav ul li.last {}
1887
+ #nav ul li a {float:none; padding:0 10px; font-family:Arial, serif; font-size:12px; font-weight:normal; color:#322c29 !important; background:transparent none; }
1888
+ #nav ul li.active > a {background:#322c29 !important; color:#fff !important; }
1889
+ #nav ul li.over > a, #nav ul li a:hover {background:#f5f4f4; }
1890
+
1891
+ /* Show menu */
1892
+ #nav li ul.shown-sub,
1893
+ #nav li div.shown-sub { left:0px; z-index:999; }
1894
+ #nav li .shown-sub ul.shown-sub,
1895
+ #nav li .shown-sub li div.shown-sub { left:15px; }
1896
+
1897
+ #nav li.custom-block div.sub-wrapper { padding:16px;}
1898
+ #nav li.custom-block div.sub-wrapper strong {color:#373230; font-family:Arial, Helvetica, sans-serif; font-weight:700;}
1899
+ #nav li.custom-block div.sub-wrapper a { display:inline; color:#373230; float:none; font-weight:300; padding:0px; text-decoration:underline; border:none !important; background:transparent none !important;}
1900
+ #nav li.custom-block div.sub-wrapper a:hover,
1901
+ #nav li.custom-block div.sub-wrapper>ul>li a:hover,
1902
+ #nav li.custom-block div.sub-wrapper ul li.over > a{ color:#373230 !important; text-decoration:none; background:transparent none !important;}
1903
+ #nav li.custom-block div.sub-wrapper>ul, #nav li.custom-block div.sub-wrapper ul {}
1904
+ #nav li.custom-block div.sub-wrapper>ul>li, #nav li.custom-block div.sub-wrapper ul li { width:auto; float:none; line-height: 22px; padding: 0 10px 0 20px;}
1905
+
1906
+
1907
+ #nav { width:750px; margin:31px 0 34px 46px; padding:0; position:relative; border:none; float:left; }
1908
+ .search-field #nav {width:560px}
1909
+ .below-logo .nav-container {display:block; position:static;}
1910
+ .below-logo #nav {width:auto; margin:0 0 10px 3px}
1911
+
1912
+ /* All Levels */
1913
+ #nav li { text-align:left; position: static; }
1914
+ #nav li.over { z-index:998; }
1915
+ #nav li.parent {}
1916
+ #nav li a { display:block; text-decoration:none; font-weight:300; }
1917
+ #nav li a:hover { text-decoration:none; }
1918
+ #nav li a span { display:block; white-space:nowrap; cursor:pointer; }
1919
+ #nav li ul a span { white-space:normal; }
1920
+
1921
+ /* 1st Level */
1922
+ #nav>li { float:left; position:relative; margin:0 3px 3px;}
1923
+ #nav>li>a { position:relative; float:left; padding:0; color:#373230; font-size:14px; font-family:Arial, Helvetica,sans-serif; font-weight:700; line-height:36px; letter-spacing:0em; text-transform:uppercase; }
1924
+ #nav>li>a>span{padding:0px 10px; border-top:3px solid transparent; background:#fff;}
1925
+ #nav>li:hover,
1926
+ #nav>li.over,
1927
+ #nav>li.active{-webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1928
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1929
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
1930
+ #nav>li>a:hover, #nav>li.over>a{z-index:1000;}
1931
+ #nav>li>a:hover>span,
1932
+ #nav>li.over>a>span,
1933
+ #nav>li.active>a>span{border-top:3px solid #97CAE4;}
1934
+ #nav>li.custom-block>a, #nav>li.custom-block>a>span {cursor:default;}
1935
+
1936
+ /* 2nd Level */
1937
+ /*#nav ul,*/
1938
+ #nav ul { position:absolute; z-index:999; width:auto; padding:16px; margin:39px 0 0; left:-10000px; border:none; background:#fff;
1939
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1940
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1941
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
1942
+
1943
+ /* 3rd+ leven */
1944
+ /*#nav ul ul,*/
1945
+ #nav ul ul { top:-5px;
1946
+ /* commented by anusha
1947
+ margin:0 0 0 101px;
1948
+ */
1949
+ margin:0 0 0 0px;
1950
+ padding:0; width:auto; border:none;
1951
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1952
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
1953
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
1954
+ #nav ul ul{ padding:16px; width:auto; }
1955
+ #nav ul li { float:none; border:none; width:210px; line-height:28px; position:relative; }
1956
+ #nav ul li.last {}
1957
+ #nav ul li a {float:none; padding:0 10px; font-family:Arial, serif; font-size:12px; font-weight:normal; color:#322c29 !important; background:transparent none; }
1958
+ #nav ul li.active > a {background:#322c29 !important; color:#fff !important; }
1959
+ #nav ul li.over > a, #nav ul li a:hover {background:#f5f4f4; }
1960
+
1961
+ /* Show menu */
1962
+ #nav li ul.shown-sub,
1963
+ #nav li div.shown-sub { left:0px; z-index:999; }
1964
+ #nav li .shown-sub ul.shown-sub,
1965
+ #nav li .shown-sub li div.shown-sub { left:15px; }
1966
+
1967
+ #nav li.custom-block>ul>li { width:350px; line-height:150%; }
1968
+ #nav li.custom-block ul li strong {color:#888888; font-family:Arial, Helvetica, sans-serif; font-weight:700;}
1969
+ #nav li.custom-block ul li a { display:inline; color:#888888; float:none; font-weight:300; padding:0px; text-decoration:underline; border:none !important; background:transparent none !important;}
1970
+ #nav li.custom-block ul li a:hover,
1971
+ #nav li.custom-block ul li.over > a{ color:#888888 !important; text-decoration:none; background:transparent none !important;}
1972
+ #nav li.custom-block ul li>ul { position:static; width:auto; border:none; background:#fff; top:0; margin:0; padding:0; box-shadow:none; -moz-box-shadow:none; -webkit-box-shadow:none; }
1973
+ #nav li.custom-block ul li>ul>li { width:auto; float:none; line-height: 22px; padding: 0 10px 0 20px;}
1974
+
1975
+ /********** Navigation > */
1976
+ /* ======================================================================================= */
1977
+
1978
+ a.product-image {display:block;position:relative;}
1979
+
1980
+ .new-label, .sale-label {position: absolute; z-index:10000; width:91px; height:91px; background:url(../images/product-labels.png) 0 0 no-repeat; }
1981
+ .sale-top-left {top:-13px; left:-13px; background-position:-182px 0;}
1982
+ .sale-top-right {top:-13px; right:-13px; background-position:-273px 0;}
1983
+ .sale-bottom-left {bottom:-13px; left:-13px; background-position:-182px -91px;}
1984
+ .sale-bottom-right {bottom:-13px; right:-13px; background-position:-273px -91px;}
1985
+ .new-top-left {top:-13px; left:-13px; background-position:0 0;}
1986
+ .new-top-right {top:-13px; right:-13px; background-position:-91px 0;}
1987
+ .new-bottom-left {bottom:-13px; left:-13px; background-position:0 -91px;}
1988
+ .new-bottom-right {bottom:-13px; right:-13px; background-position:-91px -91px;}
1989
+ .product-img-box .sale-top-left {top:-4px; left:-4px; }
1990
+ .product-img-box .sale-top-right {top:-4px; right:-4px; }
1991
+ .product-img-box .new-top-left {top:-4px; left:-4px; }
1992
+ .product-img-box .new-top-right {top:-4px; right:-4px; }
1993
+
1994
+ .price-box {}
1995
+ .price-box a {white-space:nowrap;}
1996
+ .price-box a:hover {text-decoration:none;}
1997
+ .price-box .price{ color:#97CAE4; font-weight:400; font-size:16px; }
1998
+ .price-box .old-price .price{color:#8e8e8e; font-weight:400; font-size:11px; }
1999
+
2000
+ .availability {}
2001
+ .in-stock {color:green}
2002
+ .out-of-stock {color:red}
2003
+
2004
+ .ratings {}
2005
+ .rating-box {width:55px; height:10px; margin:2px 12px 0 0; background-image:url("../images/rating.png"); }
2006
+ .rating-box .rating {height:10px; background-image:url("../images/rating.png");}
2007
+ .rating-links .separator {margin: 0 2px; font-weight: 300; font-size: 12px; color:#d9d9d9;}
2008
+
2009
+ .breadcrumbs {border:none; margin:0 15px; padding:0; line-height:49px;}
2010
+ .breadcrumbs a{color:rgba(27,26,25,0.77);}
2011
+ .breadcrumbs strong{color:rgba(128,128,128,0.77); font-weight:300;}
2012
+ .breadcrumbs span{background: url("../images/icon_breadcrumb.gif") 50% 50% no-repeat; padding: 0 9px; }
2013
+ .breadcrumbs ul{margin: 0; padding: 0px;}
2014
+
2015
+ /* Global Messages */
2016
+ .success { color:#3d6611; font-weight:bold; }
2017
+ .error { color:#f00; font-weight:bold; }
2018
+ .notice { color:#ccc; }
2019
+
2020
+ .messages,
2021
+ .messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
2022
+ .messages { width:100%; overflow:hidden; }
2023
+ .messages li { margin:0 0 15px; }
2024
+ .messages li li { margin:0px; min-height:26px; line-height:26px; }
2025
+ .messages li li span{}
2026
+ .error-msg,
2027
+ .success-msg,
2028
+ .note-msg,
2029
+ .notice-msg { border-style:solid !important; border-width:1px !important; background-position:31px 31px !important; background-repeat:no-repeat !important; line-height:26px; min-height:26px !important; padding:31px 19px 31px 70px !important; font-size:18px !important; font-weight:normal !important; font-style: italic !important; }
2030
+ .error-msg { border-color:#f3f3f3; background-color:#f3f3f3; background-image:url(../images/i_msg-error.gif); color:#888; }
2031
+ .success-msg { border-color:#f3f3f3; background-color:#f3f3f3; background-image:url(../images/i_msg-success.gif); color:#888; }
2032
+ .note-msg { border-color:#f3f3f3; background-color:#f3f3f3; background-image:url(../images/i_msg-note.gif); color:#888; }
2033
+ .notice-msg { border-color:#f3f3f3; background-color:#f3f3f3; background-image:url(../images/i_msg-notice.gif); color:#888; }
2034
+
2035
+ .ajax_loading {position:absolute;margin-top:21px; display:none; }
2036
+ .products-list .product-shop .ajax_loading {left:-23px; margin:10px 0 0; }
2037
+ .product-shop .ajax_loading {margin:19px 0 0 -21px; }
2038
+ .quick-view { position:absolute; z-index:2; top: -95%;left: 5%; background:#97CAE4 url('../images/btn_overlay.png') 0 0 repeat-x; height:42px; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px; line-height:42px; padding:0 16px; font-size:14px; font-weight:300; color:#fff; text-align:center; white-space:nowrap; }
2039
+ .quick-view:hover {background-color:#393431; color:#fff; text-decoration:none;}
2040
+ div.alert a{ font-size:12px; color:#8db201; padding-left:5px;}
2041
+ div.alert a:hover{ color:#fff;}
2042
+ div.alert {position:fixed; background:#353535; top:0; left:50%; width:333px; margin-left:-220px; padding:20px 60px; color:#FFF; z-index:10030; font-size:12px; font-weight:bold; color:#ececec; border-radius:0 0 3px 3px; text-align:center;}
2043
+ div.alert button{ width:9px; height:9px; position:absolute; right:20px; top:45%; border:none; z-index:9999;}
2044
+ div.alert button:hover{ cursor:pointer; background-position:0 -9px;}
2045
+
2046
+ /*********** < BANNERS */
2047
+ .homepage-banners {margin:-13px 0px 68px !important;}
2048
+ .homepage-banners a{ position:relative; overflow:hidden; display:block; padding:11px; background:#fff; -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px;
2049
+ -webkit-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
2050
+ -moz-box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);
2051
+ box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.15);}
2052
+ .homepage-banners a img{position:relative; z-index:1; max-width:100%; height:auto; width:auto\9; /* ie8 */}
2053
+ .homepage-banners a:hover img{opacity:0.6;}
2054
+
2055
+ .homepage-banners a .content{position:absolute; z-index:2; margin:38px; color:#4e4d4b; text-align:center; }
2056
+ .homepage-banners a .content strong{font-family:Arial, Helvetica,sans-serif; font-size:32px; font-weight:300; text-transform:uppercase; line-height:24px; color:#302f2e; }
2057
+ .homepage-banners a .content .border{margin:15px 10px; height:1px; background:#d7d4d0; }
2058
+ .homepage-banners a .content p{margin:0;}
2059
+ .homepage-banners a .content button{margin:15px 0 0;}
2060
+ .homepage-banners a.text-right .content{right:11px; }
2061
+ .homepage-banners a.text-center .content{right:11px; left:11px}
2062
+
2063
+ .category-products {margin:0 0 50px;}
2064
+ .category-products h2 {margin:0 0 30px 15px;}
2065
+
2066
+ .home-main {width:900px; float:left; margin:30px 0 0;}
2067
+ .home-right {width:300px; float:right; margin:30px 0 0;}
2068
+ .home-left {width:300px;float:left; margin:30px 0 0;}
2069
+ .col1-layout .home-main .products-grid {width:900px;}
2070
+
2071
+ .home-left-col {}
2072
+ .home-left-col .home-main {float:right;}
2073
+ .home-left-col .home-left {float:left;}
2074
+
2075
+ /*********** < SLIDER */
2076
+ .slider-container{position: relative; border-top:1px solid #e1e1e1; background:#ededed; margin:53px 0 0 -15px; padding:42px 0 0; }
2077
+ .main-container > .slider-container {margin:0;}
2078
+ .slider-container h3{ font-family:Arial, Helvetica, serif; font-size:24px; font-weight:400; padding:0 0 28px; margin:0 0 0 15px; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
2079
+ .slider-container .block-subtitle{ margin:-15px 15px 15px; text-align:left; }
2080
+ .slider-container .block-subtitle a{text-decoration:underline;}
2081
+ .slider-container .block-subtitle a:hover{text-decoration:none;}
2082
+ .slider-container .jcarousel-list li {float:left; width:252px; padding:0; margin:0 15px 53px; position:relative; background:#fff; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2083
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15); -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15); box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2084
+ .slider-container .jcarousel-list h3{ font-size:24px; font-family:Arial, Helvetica; font-weight:300; color:#000; color:rgba(0,0,0,0.67); letter-spacing:-1px; margin:27px 0 26px 2px; text-align:center; }
2085
+ .slider-container .jcarousel-list .button-container {float:right;}
2086
+ .slider-container .jcarousel-list .button-container button.button span {width:35px; height:35px; border-radius:100%; -webkit-border-radius:100%; -moz-border-radius:100%; text-indent:-9999px;}
2087
+ .slider-container .jcarousel-list .button-container button.button span span {padding:0; background:url('../images/icon_cart.png') 50% 50% no-repeat; }
2088
+ .slider-container .jcarousel-list .product-image {display: block; margin:0 0 12px; }
2089
+ .slider-container .jcarousel-list .product-image img {position:relative; z-index:0; }
2090
+ .slider-container .jcarousel-list .product-name {color:#3c3c3c; font-size:16px; font-weight:300; display:block; margin:4px; line-height:120%; }
2091
+ .slider-container .jcarousel-list .product-name:hover {color:#000; text-decoration:none;}
2092
+ .slider-container .jcarousel-list .related-checkbox {margin:0 4px; line-height:12px; float:left; }
2093
+ .slider-container .jcarousel-list .price-box {overflow:hidden; margin:0px 0 0 4px; line-height:12px; letter-spacing:-1.2px }
2094
+
2095
+ .product-slider-container {}
2096
+ .footer-container .product-slider-container {background: #fafafa; width:100%;}
2097
+ .footer-container .jcarousel-skin-tango .jcarousel-clip-horizontal, .footer-container .jcarousel-skin-tango .jcarousel-container-horizontal {width:auto}
2098
+ .product-slider-container .title-container {margin:0 0 -27px; position:relative;}
2099
+ .product-slider-container h2{ margin:0 0 0 15px; padding:0 0 28px; font-family:Arial, Helvetica, serif; font-size:24px; font-weight:400; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
2100
+ .product-slider-container .jcarousel-skin-tango .jcarousel-clip { }
2101
+ .product-slider-container .jcarousel-skin-tango .jcarousel-clip ul.jcarousel-list {padding:35px 0 50px !important;}
2102
+ .product-slider-container .jcarousel-skin-tango .jcarousel-clip ul li.item div.hover {
2103
+ -webkit-box-shadow:0px 0px 25px 6px rgba(0, 0, 0, 0.09);
2104
+ -moz-box-shadow:0px 0px 25px 6px rgba(0, 0, 0, 0.09);
2105
+ box-shadow:0px 0px 25px 6px rgba(0, 0, 0, 0.09);}
2106
+
2107
+ /* Category Page ========================================================================= */
2108
+
2109
+ /* Pager */
2110
+ .pager { padding:16px 0 0; margin:0 0 16px; line-height:22px; text-align:center; border-top:1px solid; border-top-color:#e3e3e3; border-top-color:rgba(227,227,227,0.61); }
2111
+ .pager .amount { float:left; color:#262525; color:rgba(38,37,37,0.5); }
2112
+ .pager .amount strong{ font-weight: 400; }
2113
+ .pager .pages { float:right; margin:0; }
2114
+ .pager .pages ol { display:inline; margin:0; padding:0; }
2115
+ .pager .pages li { display:inline-block; width:22px; height:22px;; margin:0; text-align:center; }
2116
+ .pager .pages li a {display:block; float:left; width:22px; height:22px; text-decoration:none; line-height:25px; color:#262525; color:rgba(38,37,37,0.75);}
2117
+ .pager .pages li a:hover { color:#97CAE4; }
2118
+ .pager .pages li a.next, .pager .pages li a.previous { border:1px solid #e1e1e1; }
2119
+ .pager .pages li a.next:hover, .pager .pages li a.previous:hover { -webkit-box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.05); -moz-box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.05); box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.05);}
2120
+ .pager .pages strong {display:none}
2121
+ .pager .pages .current { vertical-align:top; color:#97CAE4; line-height:25px; }
2122
+
2123
+ /* Sorter */
2124
+ .sorter { padding:0px; margin:0 0 18px; line-height:27px; text-align:left; color:#808080;}
2125
+ .sorter .limiter, .sorter .sort-by, .sorter .sort-order, .sorter .view-mode { float:left; height:27px; border:1px solid #e1e1e1; -webkit-box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.05); -moz-box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.05); box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.05); }
2126
+ .sorter .sort-by { margin:10px 1px 0 0}
2127
+ .sorter .sort-by label{ margin:0 8px 0 5px}
2128
+ .sorter .limiter {}
2129
+ .sorter .limiter label{ margin:0 7px; }
2130
+ .sorter .link-feed {}
2131
+ .sorter .sort-order { margin:10px 10px 0 0;}
2132
+ .sorter .sort-order a {display:block; }
2133
+ .sorter .view-mode { margin:10px 10px 0 0;}
2134
+ .sorter .view-mode label { display:block; float:left; margin:0 7px; }
2135
+ .sorter .view-mode a, .sorter .view-mode strong { display:block; float:left; overflow:hidden; width:27px; height:27px; margin:0; text-indent:-999px; }
2136
+ .sorter .view-mode .grid { background:transparent url(../images/i_grid_mode.gif) 0% 0% no-repeat; border-left:1px solid #e1e1e1; border-right:1px solid #e1e1e1; }
2137
+ .sorter .view-mode .list { background:transparent url(../images/i_list_mode.gif) 0% 0% no-repeat; }
2138
+ .sorter .view-mode a:hover, .sorter .view-mode strong { background-position:0% 100% !important;}
2139
+ .sorter .view-mode a:hover, .sorter .view-mode strong.grid, .sorter .view-mode strong.list, .sorter .sort-order a:hover { -webkit-box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.10); -moz-box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.10); box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.10);}
2140
+
2141
+ /* Toolbar */
2142
+ .toolbar {}
2143
+ .toolbar img.v-middle{ vertical-align: top;}
2144
+ .toolbar select {height:27px; padding:0; margin:0; line-height:27px; border:none; box-shadow:none; color:#434343; }
2145
+ .toolbar .sort-by select {width:auto; }
2146
+ .toolbar-bottom {}
2147
+ .toolbar-bottom .sorter{display:none;}
2148
+
2149
+ .toolbar-switch {margin-top:10px; }
2150
+ .toolbar-switch .toolbar-dropdown { display:none; }
2151
+ .toolbar-switch select { display:none; }
2152
+ .toolbar-switch .current { color:#434343; }
2153
+ .toolbar-switch .toolbar-title {position:relative; z-index:4; padding:0 40px 0 0; background:transparent url('../images/selectbox_arrow.png') 100% 7px no-repeat;}
2154
+ .over .toolbar-title {background-color:#fff; height:30px; margin:0 -1px; border-left:1px solid #e1e1e1; border-right:1px solid #e1e1e1; }
2155
+
2156
+ .toolbar-dropdown {background:#fff; padding:11px 22px; display:none; position:absolute; z-index:3; margin:-1px; border:1px solid #e1e1e1; -webkit-box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.05); -moz-box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.05); box-shadow:1px 1px 2px 0px rgba(0, 0, 0, 0.05);}
2157
+ .toolbar-dropdown ul{}
2158
+ .toolbar-dropdown ul li{padding:0 0 0 12px; background: url("../images/arrow_item.gif") 0 7px no-repeat;}
2159
+ .toolbar-dropdown ul li a{ display:block; line-height:20px; margin:0; padding:0; color:#8c8c8c; }
2160
+ .toolbar-dropdown ul li a:hover, .toolbar-dropdown ul li.selected a { text-decoration:none; color:#97CAE4;}
2161
+
2162
+ .category-title { display: none; }
2163
+ .category-image { width:100%; overflow:hidden; margin:0 0 30px; text-align:center; }
2164
+ .category-image img {max-width:100%; width:auto\9; /* ie8 */}
2165
+ .category-description { border:1px solid; border-color:#e3e3e3; border-color:rgba(227,227,227,0.61); margin:0 0 20px 0; padding:20px; line-height:18px; text-align:center; color:#808080; }
2166
+ .category-description h1 {display:block; margin:0; font-size:24px; font-family:Arial, Helvetica, sans-serif; font-style:normal; color:#000; color:rgba(0,0,0,0.67); text-transform:uppercase;}
2167
+ .category-description p {margin:22px 0 0;}
2168
+ .category-description strong {color:#000; color:rgba(0,0,0,0.67); font-family:Arial, Helvetica, sans-serif; font-style:normal; }
2169
+ .category-description img{ max-width:100%; height:auto;width:auto\9; /* ie8 */ }
2170
+
2171
+ /* View Type: Grid */
2172
+ .products-grid { border:none; position:relative; margin:0 0 50px; }
2173
+ .col2-left-layout .products-grid,
2174
+ .col2-right-layout .products-grid { width:900px; margin:0 -15px; }
2175
+ .col1-layout .products-grid { width:1200px; margin:0 auto; }
2176
+
2177
+ .products-grid.last { border-bottom:0; }
2178
+ .products-grid li.item { float:left; width:252px; padding:0; margin:0 15px 30px; position:relative; background:#fff; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2179
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2180
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2181
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2182
+ .products-grid li.item a:hover {text-decoration:none; }
2183
+ .products-grid h3{ font-size:24px; font-family:Arial, Helvetica; font-weight:300; color:#000; color:rgba(0,0,0,0.67); letter-spacing:-1px; margin:27px 0 26px 2px; text-align:center; }
2184
+ .products-grid .button-container {float:right; margin-left:5px; }
2185
+ .products-grid .button-container button.button span {width:35px; height:35px; border-radius:100%; -webkit-border-radius:100%; -moz-border-radius:100%; text-indent:-9999px;}
2186
+ .products-grid .button-container button.button span span {padding:0; background:url('../images/icon_cart.png') 50% 50% no-repeat; }
2187
+ .products-grid .product-image {display: block; margin:0 0 12px; position:relative; z-index:1; }
2188
+ .products-grid .product-image img {position:relative; z-index:0; max-width:100%; height:auto; width:auto\9; /* ie8 */ }
2189
+ .products-grid .product-name {color:#3c3c3c; font-size:14px; font-weight:300; display:block; margin:4px; line-height:120%; }
2190
+ .products-grid .product-name:hover {color:#000; text-decoration:none;}
2191
+ .products-grid .price-box {margin:0px 0 5px 4px; line-height:14px; letter-spacing:-1.2px }
2192
+ /** gird hover mode **/
2193
+ .products-grid .regular {}
2194
+ .products-grid .hover {display:none; position:absolute; z-index:2; top:-9px; left:-9px; width:252px; padding:0; margin:0 30px 30px 0; background:#fff; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2195
+ -webkit-box-shadow:0px 0px 46px 12px rgba(0, 0, 0, 0.09);
2196
+ -moz-box-shadow:0px 0px 46px 12px rgba(0, 0, 0, 0.09);
2197
+ box-shadow:0px 0px 46px 12px rgba(0, 0, 0, 0.09);}
2198
+ .products-grid .hover .price-box{position:absolute; z-index:2; right:11px; min-width:66px; margin:0; padding:0; background:#97CAE4; line-height:18px; text-align:center; -webkit-border-radius:100%; -moz-border-radius:100%; border-radius:100%; }
2199
+ .products-grid .hover .price-box .price-label, .products-grid .hover .price-box .label{display:none;}
2200
+ .products-grid .hover .price-box sup{color:#fff; color:rgba(255,255,255,0.5); font-size:18px; font-style:normal; top:-0.3em; }
2201
+ .products-grid .hover .price-box .price{ color:#fff; font-size:24px; }
2202
+ .products-grid .hover .price-box .old-price .price{color:#fff; color:rgba(255,255,255,0.5); font-size:18px; }
2203
+ .products-grid .hover .price-box .old-price sup{top:0;}
2204
+ .products-grid .hover .product-name {text-align:center;}
2205
+ .products-grid .hover .ratings {width:55px; padding:0; margin:0 auto; }
2206
+ .products-grid .hover .rating-links {display:none;}
2207
+ .products-grid .hover .button-container {float:none; border-top:1px solid #f3f3f3; margin-top:12px; padding-top:13px; text-align:center;}
2208
+ .products-grid .hover .button-container button.button span {width:auto; height:19px; line-height:19px; background:transparent none !important; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0; text-indent:0;}
2209
+ .products-grid .hover .button-container button.button span span {padding:0; font-size:12px; color:#4d4d4d; text-transform:none; }
2210
+ .products-grid .hover .button-container button.button span span em {display:inline-block; float:left; margin:0 13px 0 0; width:24px; height:19px; background:#97CAE4 url("../images/icon_cart_listing_mask.png") 0 0 no-repeat;}
2211
+ .products-grid .hover .button-container button.button:hover span span em {background-color:#393431;}
2212
+ .products-grid .add-to-links {width:270px; height:40px; margin:9px -9px -9px; background:#fcfcfc; text-align:center;
2213
+ -webkit-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
2214
+ -moz-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
2215
+ box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);}
2216
+ .products-grid .add-to-links li {display:inline; margin:0 5px 0 0; line-height:40px;}
2217
+ .products-grid .add-to-links li span {display:inline-block; color:#97CAE4; margin-right:5px;}
2218
+ .products-grid .add-to-links a {font-weight:300}
2219
+ .products-grid .add-to-links a:hover {text-decoration:none;}
2220
+ .products-grid .add-to-links a.link-compare {}
2221
+ .products-grid .availability { line-height:39px; }
2222
+
2223
+ /* two_columns 3 products per row */
2224
+ .two_columns_3 {}
2225
+ /* two_columns 4 products per row */
2226
+ .two_columns_4 {}
2227
+ .two_columns_4 li.item {width:177px;}
2228
+ .two_columns_4 .hover {width:177px;}
2229
+ .two_columns_4 .add-to-links { width:195px; height:auto; padding:10px 0;}
2230
+ .two_columns_4 .add-to-links li { display:block; margin:0; line-height:140%; }
2231
+ .two_columns_4 .add-to-links li { display:block; margin:0; }
2232
+ .two_columns_4 .hover .price-box {display:none}
2233
+ .two_columns_4 .quick-view { top:18%; left:26%; height:32px; line-height:32px; font-size:12px; }
2234
+ .two_columns_4 .product-name {font-size:14px}
2235
+ .two_columns_4 .hover .button-container button.button span span em {margin:0 5px 0 0;}
2236
+
2237
+ /* two_columns 5 products per row */
2238
+ .col2-left-layout .two_columns_5 { margin:0 -10px}
2239
+ .two_columns_5 {}
2240
+ .two_columns_5 li.item {width:142px; margin:0 10px 20px}
2241
+ .two_columns_5 .hover {width:142px;}
2242
+ .two_columns_5 .add-to-links { width:160px; height:auto; padding:10px 0;}
2243
+ .two_columns_5 .add-to-links li { display:block; margin:0; line-height:140%; }
2244
+ .two_columns_5 .add-to-links li { display:block; margin:0; }
2245
+ .two_columns_5 .hover .price-box {display:none}
2246
+ .two_columns_5 .quick-view { top:15%; left:20%; height:32px; line-height:32px; font-size:12px; }
2247
+ .two_columns_5 .product-name {font-size:14px}
2248
+ .two_columns_5 .hover .button-container button.button span span em {margin:0 5px 0 0;}
2249
+
2250
+
2251
+
2252
+ /* one_columns 4 products per row */
2253
+ .one_column_4 {}
2254
+ /* one_columns 5 products per row */
2255
+ .one_column_5 {}
2256
+ .one_column_5 li.item {width:192px;}
2257
+ .one_column_5 .hover {width:192px;}
2258
+ .one_column_5 .add-to-links { width:210px; height:auto; padding:10px 0;}
2259
+ .one_column_5 .add-to-links li { display:block; margin:0; line-height:140%; }
2260
+ .one_column_5 .add-to-links li { display:block; margin:0; }
2261
+ .one_column_5 .hover .price-box {display:none}
2262
+ .one_column_5 .quick-view { top:18%; left:26%; height:32px; line-height:32px; font-size:12px; }
2263
+ .one_column_5 .product-name {font-size:14px}
2264
+ .one_column_5 .hover .button-container button.button span span em {margin:0 5px 0 0;}
2265
+ /* one_columns 6 products per row */
2266
+ .one_column_6 {}
2267
+ .one_column_6 li.item {width:152px;}
2268
+ .one_column_6 .hover {width:152px;}
2269
+ .one_column_6 .add-to-links { width:170px; height:auto; padding:10px 0;}
2270
+ .one_column_6 .add-to-links li { display:block; margin:0; line-height:140%; }
2271
+ .one_column_6 .add-to-links li { display:block; margin:0; }
2272
+ .one_column_6 .hover .price-box {display:none}
2273
+ .one_column_6 .quick-view { top:18%; left:21%; height:32px; line-height:32px; font-size:12px; }
2274
+ .one_column_6 .product-name {font-size:14px}
2275
+ .one_column_6 .hover .button-container button.button span span em {margin:0 5px 0 0;}
2276
+
2277
+ /* View Type: List */
2278
+ .products-list { margin:0; padding:0; position:relative; }
2279
+ .products-list li.item { border:none; padding:0 0 30px; }
2280
+ .products-list li.item .f-left{ position:relative;}
2281
+ .products-list li.item.last {}
2282
+ .products-list .product-image { padding:0; margin:0; position:relative; z-index:1; background:#fff; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2283
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2284
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2285
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2286
+ .products-list .product-image .back_img { position:absolute; z-index:1; display:none;}
2287
+ .products-list .product-shop { position:relative; margin-left:300px; }
2288
+ .products-list .product-name { margin:8px 0 5px; padding:0 0 13px; border-bottom:1px solid; border-bottom-color:#e3e3e3; border-bottom-color:rgba(227,227,227,0.61); }
2289
+ .products-list .product-name a { font-family:Arial, Helvetica; font-size:16px; color:#000; color:rgba(0,0,0,0.67); }
2290
+ .products-list .product-name a:hover { text-decoration:none; color:#000;}
2291
+ .products-list .price-container {float:none; margin:0 0 12px; padding:0 0 6px; border-bottom:1px solid; border-bottom-color:#e3e3e3; border-bottom-color:rgba(227,227,227,0.61); }
2292
+ .products-list .price-box {float:left; margin:0; padding:0; }
2293
+ .products-list .price-box .price {font-size:20px; }
2294
+ .products-list .price-box p {display:inline-block; margin:0 5px 0 0; }
2295
+ .products-list .ratings { float:left; width:270px; margin:6px 0 0 25px; padding:0; }
2296
+ .products-list .ratings, .products-list .ratings a { color:#1b1a19;}
2297
+ .products-list .price {}
2298
+ .products-list .desc { margin:0 0 8px; padding:0 0 14px; color:#1b1a19; line-height:1.35; border-bottom:1px solid; border-bottom-color:#e3e3e3; border-bottom-color:rgba(227,227,227,0.61); }
2299
+ .products-list .desc .link-learn { display:none;}
2300
+ .products-list .desc a { text-decoration: underline;}
2301
+ .products-list .desc a:hover { text-decoration: none;}
2302
+ .products-list .button-container { float:left; margin:0; line-height:35px; }
2303
+ .products-list .button-container p { line-height:35px;}
2304
+ .products-list .button-container .btn-add-cart { display:block; vertical-align:top; color:#322c29; font-size:14px;}
2305
+ .products-list .button-container .btn-add-cart span{ float:left; display:inline-block; border-radius: 100% 100% 100% 100%; height: 35px; text-indent: -9999px; width: 35px; margin:0 15px 0 0; background:#97CAE4 url("../images/icon_cart.png") no-repeat 50% 50%;}
2306
+ .products-list .button-container .btn-add-cart:hover {color:#000; text-decoration: none; }
2307
+ .products-list .button-container .btn-add-cart:hover span{background-color:#322c29;}
2308
+ .products-list .add-to-links {float:left; clear:none;}
2309
+ .products-list .add-to-links li {float:left; margin:0; line-height:35px;}
2310
+ .products-list .add-to-links li span {display:inline-block; width:1px; height:15px; margin:10px 25px; background:#d5d5d5; }
2311
+ .products-list .add-to-links a {color:#322c29; font-size:14px; font-weight:300 !important; line-height:35px; vertical-align:top;}
2312
+ .products-list .add-to-links a.link-compare {}
2313
+ .products-list .add-to-links a:hover {color:#000; text-decoration: none; }
2314
+
2315
+ /* ======================================================================================= */
2316
+
2317
+ .cart-empty a {font-weight: 800;}
2318
+ .cart fieldset { margin:0;}
2319
+ .cart .cart-collaterals { padding:29px 0 30px; text-align:center; }
2320
+ .cart .cart-collaterals .cart-block { position:relative; background:#fff; border:none; border-top:6px solid #97CAE4; padding:20px 13.513%; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
2321
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10); -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10); box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);}
2322
+ .cart .cart-collaterals h2 { font-family:Arial, Helvetica; font-size:20px; font-weight:400; padding:0 0 44px; margin:0; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
2323
+ .cart .cart-collaterals h2:after {content:''; float:left; width:90%; height:1px; background:#e8e8e8; margin:23px 0 0 5%;}
2324
+ .cart .cart-collaterals .buttons-set {margin:0; text-align:center; }
2325
+ .cart .cart-collaterals .buttons-set button.button{float:none;}
2326
+ .cart .cart-collaterals .input-box {width:100%; margin:0 0 10px;}
2327
+ .cart .cart-collaterals .input-box input{width:96%;}
2328
+ .cart .cart-collaterals .input-box select{width:100%;}
2329
+ .cart .cart-collaterals .cart-coupon {}
2330
+ .cart .cart-collaterals .cart-coupon .input-box{margin:17px 0;}
2331
+ .cart .cart-collaterals .cart-shipping {}
2332
+ .cart .cart-collaterals .cart-shipping .form-list {margin:17px 0 0;}
2333
+ .cart .cart-collaterals .cart-shipping .form-list label {float:none;}
2334
+ .cart .cart-collaterals .cart-total {padding:0;}
2335
+ .cart .cart-collaterals .cart-total .checkout-types {float:none; position:relative; width:100%; overflow:hidden; margin:0; padding:30px 0 25px; background:#fbfbfb; text-align:center;
2336
+ -webkit-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15); -moz-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15); box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);}
2337
+ .cart .cart-collaterals .cart-total .checkout-types button.button {margin:0 0 10px}
2338
+ #shopping-cart-totals-table {margin:20px auto 17px; }
2339
+ #shopping-cart-totals-table strong{ font-family:Arial, Helvetica, serif; font-size:24px; font-weight:400; text-transform:uppercase; letter-spacing:-1.2px; color:#000; color:rgba(0,0,0,0.75); }
2340
+ #shopping-cart-totals-table .a-right {text-align:center !important;}
2341
+ #shopping-cart-totals-table td {padding:0 0 5px; width:60%;}
2342
+
2343
+ .data-table{border-collapse:separate; border-top:6px solid #575757; -webkit-border-radius:2px; -moz-border-radius:2px; border-radius:2px;
2344
+ -moz-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.15); -webkit-box-shadow:0px 0px 8px rgba(0, 0, 0, 0.15); box-shadow:0px 0px 8px rgba(0, 0, 0, 0.15);}
2345
+ .data-table th, .data-table td, .data-table td a{ color:#000; color:rgba(0,0,0,0.67)}
2346
+ .data-table td a.product-image, .data-table td a.product-image img{ display:block; margin:0 auto;}
2347
+ .data-table td a:hover{ color:#000; text-decoration:none; }
2348
+ .data-table tbody td{ border:1px solid #e9e9e9; border-top:none; border-left:none;}
2349
+ .data-table tbody tr:last-child td{ border-bottom:none;}
2350
+ .data-table thead, .data-table tfoot{ background:#fafafa; }
2351
+ .data-table thead th{ -webkit-box-shadow:inset 0px -4px 6px -4px rgba(0, 0, 0, 0.15); -moz-box-shadow:inset 0px -4px 6px -4px rgba(0, 0, 0, 0.15); box-shadow:inset 0px -4px 6px -4px rgba(0, 0, 0, 0.15);}
2352
+ .data-table tfoot td{ -webkit-box-shadow:inset 0px 4px 6px -4px rgba(0, 0, 0, 0.15); -moz-box-shadow:inset 0px 4px 6px -4px rgba(0, 0, 0, 0.15); box-shadow:inset 0px 4px 6px -4px rgba(0, 0, 0, 0.15);}
2353
+ .data-table tr.even, .data-table tr.odd {background-color:#fff;}
2354
+ .data-table th {padding:18px 23px; font-weight:300; }
2355
+ .data-table td {padding:18px;}
2356
+ .data-table td.td-edit, .data-table td.td-price {padding:26px 18px;}
2357
+ .data-table td.td-image {border-left:none; }
2358
+ .data-table td.td-image img {width:115px; height:auto; }
2359
+ .data-table td.td-delete {border-right:none; }
2360
+ .data-table .product-name {font-weight:700;}
2361
+ .data-table .td-title {display:none;}
2362
+ .data-table .td-actions {display:none;}
2363
+
2364
+ .data-table .btn-edit2 {width:38px; height:38px; background:#97CAE4 url('../images/btn_edit.gif') 50% 50% no-repeat; }
2365
+ .data-table .btn-edit:hover {background-color:#393431}
2366
+ .data-table .btn-remove2 {width:38px; height:38px; background:#97CAE4 url('../images/btn_trash.gif') 50% 50% no-repeat; }
2367
+ .data-table .btn-remove:hover {background-color:#393431}
2368
+ .data-table .btn-continue {float:left;}
2369
+ .data-table button.button span {font-size: 12px; text-transform: lowercase;}
2370
+
2371
+ /* compare popup table */
2372
+ #product_comparison {margin:0 0 20px}
2373
+ #product_comparison th{ background:#fafafa; -webkit-box-shadow:inset -6px 0px 6px -6px rgba(0, 0, 0, 0.15); -moz-box-shadow:inset -6px 0 6px -6px rgba(0, 0, 0, 0.15); box-shadow:inset -6px 0 6px -6px rgba(0, 0, 0, 0.15);}
2374
+ #product_comparison thead, #product_comparison tfoot{ background:#fff; }
2375
+ #product_comparison thead td{ border:1px solid #e9e9e9; border-top:none; border-left:none;}
2376
+ #product_comparison thead tr:last-child td{ border-bottom:none;}
2377
+ #product_comparison .btn-remove { float:right;}
2378
+ #product_comparison a.product-image { margin:0 0 15px;}
2379
+ #product_comparison .price-box, #product_comparison .product-name, #product_comparison p, #product_comparison ul.add-to-links li { text-align:center;}
2380
+ #product_comparison .ratings {text-align:center; }
2381
+ #product_comparison .ratings .rating-box {float:none; margin:0 auto;}
2382
+
2383
+ .item-options {margin-top:10px;}
2384
+ .item-options dt{float:left; clear:left; font-style: normal; font-weight:300; }
2385
+ .item-options dt:after{content:' - '; }
2386
+ .item-options dd { float:left; margin:0 0 3px 3px; padding:0; font-weight: 400; font-style: normal; }
2387
+ .product-view .item-options {margin-top:10px;}
2388
+ .product-view .item-options dt{float:none; }
2389
+ .product-view .item-options dd { float:none; margin:5px 0 0 20px; padding:0; font-weight: 400; font-style: normal; }
2390
+
2391
+ /* Shipping and Payment methods */
2392
+ .sp-methods { margin:14px 0; }
2393
+ .sp-methods dt { margin:13px 0 5px; font-weight:bold; }
2394
+ .sp-methods dd {margin:0;}
2395
+ .sp-methods dd li { margin:5px 0; }
2396
+ .sp-methods label { font-weight:bold; color:#666; }
2397
+ .sp-methods .price { font-weight:bold; }
2398
+ .sp-methods .form-list { padding-left:20px; }
2399
+ .sp-methods .form-list li { margin:0 0 8px; }
2400
+ .sp-methods select.month { width:154px; margin-right:10px; }
2401
+ .sp-methods select.year { width:96px; }
2402
+ .sp-methods input.cvv { width:3em !important; }
2403
+
2404
+ .sp-methods .checkmo-list li { margin:0 0 5px; }
2405
+ .sp-methods .checkmo-list label { width:135px; padding-right:10px; text-align:right; }
2406
+ .sp-methods .checkmo-list address { float:left; }
2407
+
2408
+ .sp-methods .centinel-logos a { margin-right:3px; }
2409
+ .sp-methods .centinel-logos img { vertical-align:middle; }
2410
+
2411
+ .sp-methods .release-amounts { margin:0.5em 0; }
2412
+ .sp-methods .release-amounts button { float:left; margin:5px 10px 0 0; }
2413
+
2414
+ .please-wait { float:right; }
2415
+ .please-wait img { vertical-align:middle; }
2416
+ .cvv-what-is-this { font-size:11px; cursor:help; margin-left:10px; }
2417
+
2418
+ .dedicated-review-box {}
2419
+ .dedicated-review-box .ratings-list{margin:10px 0;}
2420
+
2421
+ #product-review-table {margin:0 0 15px; }
2422
+ #product-customer-reviews {}
2423
+ #product-customer-reviews li{margin-bottom:30px;}
2424
+ #product-customer-reviews .review-title{font-size:14px; font-family:Arial, Helvetica, serif; font-weight:400; color:#000; color:rgba(0,0,0,0.67); padding-right:15px;}
2425
+ #product-customer-reviews p{margin:0 0 0 5px;}
2426
+ #product-customer-reviews .ratings-list{margin:10px 0 10px 5px;}
2427
+ #product-customer-reviews .ratings-list td{line-height: 14px; padding:0 5px 0 0; }
2428
+ .add-review {border-top:1px solid #ededed; padding-top:30px;}
2429
+ .add-review h3.title{font-size:14px; font-family:Arial, Helvetica, serif; padding-right: 15px; margin:0 0 20px;}
2430
+ .add-review .data-table th{ padding:12px;}
2431
+ .add-review .data-table td{ padding:12px; text-align: center;}
2432
+ .add-review .form-list label{ color:#565656}
2433
+ .add-review .buttons-set { margin:0;}
2434
+ .add-review .buttons-set button.button{ float:left;}
2435
+
2436
+ #customer-reviews {margin-top:30px;}
2437
+ #customer-reviews dt a{font-size:14px; font-family:Arial, Helvetica, serif; padding-right: 15px;}
2438
+ #customer-reviews dd {margin:0 0 20px 10px;}
2439
+ #customer-reviews .ratings-table{margin:10px 0 10px 5px;}
2440
+ #customer-reviews .ratings-table td{line-height: 14px;}
2441
+ #customer-reviews .form-add {border-top:1px solid #ededed; padding-top:30px; margin-top:20px;}
2442
+ #customer-reviews .form-add h2{font-size:14px; font-family:Arial, Helvetica, serif; padding-right: 15px; margin:0 0 20px;}
2443
+ #customer-reviews .form-add .data-table th{ padding:12px;}
2444
+ #customer-reviews .form-add .data-table td{ padding:12px; text-align: center;}
2445
+ #customer-reviews .form-add .form-list label{ color:#565656}
2446
+ #customer-reviews .form-add .buttons-set button.button{ float:left;}
2447
+
2448
+ .top-opc { width:1170px; }
2449
+ .top-opc li{float:left; width:150px; margin:0 40px 30px 0;}
2450
+ .top-opc li .number{display:block; float:left; width:54px; height:54px; margin:0 10px 0 0; background:#dbdbdb; line-height:52px; font-family:Arial, Helvetica; font-size:30px; font-weight:300; color:#fff; text-align:center; border-radius:100%; -moz-border-radius:100%; -webkit-border-radius:100%; }
2451
+ .top-opc li h2{overflow:hidden; margin:11px 0 0; line-height:16px; font-size:16px; font-weight:300; color:#dbdbdb;}
2452
+ .top-opc li.allow {cursor:pointer;}
2453
+ .top-opc li.allow .number{background:#322c29;}
2454
+ .top-opc li.allow h2{color:#322c29;}
2455
+ .top-opc li.allow:hover .number{background:#97CAE4;}
2456
+
2457
+ .opc {border:0;}
2458
+ .opc button.button span {font-size:12px; text-transform: lowercase;}
2459
+ .opc .step {padding:23px 21px; margin:0 0 30px; position:relative; background:#fff; border:none; border-top:6px solid #97CAE4; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
2460
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);
2461
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);
2462
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);}
2463
+ .opc .step-title {display:none; padding:0; margin:0; background:transparent; border-bottom:1px solid #e8e8e8; font-size:18px; color:#4c4c4c; font-family:Arial, Helvetica, serif; line-height:47px; height:47px;}
2464
+ .opc .step-title h2 {margin:0; line-height:47px;}
2465
+ .opc .step-title .number {margin:10px 20px 0 18px; padding:0 18px 0 0; border-right:1px solid #e0e0e0; line-height:25px;}
2466
+ .opc .active .step-title {background: #f7f7f7; border:1px solid #e8e8e8;}
2467
+ .opc .active .step-title .number {border-right:1px solid #e8e8e8;}
2468
+ .opc .step-title:hover {background: #f7f7f7;}
2469
+ .opc .active .step-title:hover {background: #f7f7f7;}
2470
+ .opc h3{margin:0 0 15px; font-size:18px; color:#97CAE4; font-family:Arial, Helvetica, serif; font-weight:300; }
2471
+ .opc h4 {font-size:12px; font-weight:300; color:#97CAE4;}
2472
+ .opc .buttons-set {margin:0;}
2473
+ .opc .form-list {margin:10px 0 0;}
2474
+ .opc .form-list li{margin:0;}
2475
+ .opc .form-list .input-box {margin:0 0 15px;}
2476
+ .opc .form-list .input-box {width:100%;}
2477
+ .opc .form-list input.input-text {width:90%;}
2478
+ .opc .form-list li.wide .input-box {width:100%;}
2479
+ .opc .form-list li.wide input.input-text {width:95%;}
2480
+ .opc .form-list .field {width:50%;}
2481
+ .opc .td-label {display:none; font-style:italic; width:90px; }
2482
+ .opc .product-name {overflow:hidden; }
2483
+
2484
+
2485
+ #checkout-step-login {padding:0; margin:0; background:none transparent; border:0; box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none;}
2486
+ #checkout-step-login .block-checkout-register, #checkout-step-login .block-checkout-login{width:370px}
2487
+ #checkout-step-login .block-checkout-register{margin-left:0}
2488
+ #checkout-step-login .block-checkout-login{margin-right:0}
2489
+ #checkout-step-login .block .block-title{margin:0; border:none; }
2490
+ #checkout-step-login .block .block-content li {margin:0; padding:0; line-height:20px; background:none}
2491
+ #checkout-step-login .block-checkout-register h4{margin-top:20px; }
2492
+ #checkout-step-login .block-checkout-register ul.ul{}
2493
+ #checkout-step-login .block-checkout-register ul.ul li {line-height:24px; font-weight:300; padding:0 0 0 24px; position:relative; }
2494
+ #checkout-step-login .block-checkout-register ul.ul li:before { content: '\00b7';font-size:70px;position:absolute;top:2px;left:0px;font-family: Arial, Helvetica, sans-serif;font-style:normal;color:#97CAE4; }
2495
+ #checkout-step-login .block-checkout-login .buttons-set button.button {float:left; margin:0 13px 0 0;}
2496
+ #checkout-step-login .block-checkout-login .buttons-set .required {float:left; width:200px;}
2497
+ #checkout-step-login .block-checkout-login .buttons-set a {float:left;}
2498
+ #checkout-step-login input.input-text {width:318px;}
2499
+ #checkout-step-login label {color:#808080; margin:0;}
2500
+
2501
+ #checkout-review-table {}
2502
+ #checkout-review-table h3 {margin:0; font-size:12px; font-family:Arial,serif; color:#000; color:rgba(0,0,0,0.75); }
2503
+
2504
+ #checkout-step-review {}
2505
+ #checkout-step-review .buttons-set {margin-top:10px; line-height:42px;}
2506
+ #checkout-step-review .buttons-set button.button {float:right;}
2507
+
2508
+ #cart-sidebar-reorder {margin:0 0 30px}
2509
+ .block-reorder .block-content .actions {text-align:right; line-height:42px; }
2510
+
2511
+ .block-progress dt {line-height:24px; font-weight:300; padding:0 0 0 24px; position:relative;}
2512
+ .block-progress dt:before { content: '\00b7';font-size:70px;position:absolute;top:2px;left:0px;font-family: Arial, Helvetica, sans-serif;font-style:normal;color:#97CAE4; }
2513
+ .block-progress dt.complete {background:transparent; font-weight:700; }
2514
+ .block-progress dt a {font-size:10px; text-decoration:underline; }
2515
+ .block-progress dt a:hover {text-decoration:none;}
2516
+ .block-progress dt:last-child { border-bottom:none; }
2517
+ .block-progress dd {margin:5px 0; padding:0 0 0 23px; }
2518
+ .block-progress dd.complete { background: transparent;}
2519
+
2520
+
2521
+ .block { float:left; width:230px; padding:23px 20px; margin:0 15px 30px; position:relative; background:#fff; border:none; border-top:6px solid #97CAE4; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
2522
+ -webkit-box-shadow:0px 0px 6px 2px rgba(0, 0, 0, 0.10);
2523
+ -moz-box-shadow:0px 0px 6px 2px rgba(0, 0, 0, 0.10);
2524
+ box-shadow:0px 0px 6px 2px rgba(0, 0, 0, 0.10);}
2525
+ .block .block-title {border:0; padding:0 0 22px; margin:0 0 25px; color:#000; color:rgba(0,0,0,0.75); border-bottom:1px solid #e8e8e8; }
2526
+ .block .block-title strong {font-size:22px; font-weight:400; font-family:Arial, Helvetica, serif; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
2527
+ .block .block-title small {font-size:70%}
2528
+ .block .block-subtitle {margin:0 0 10px; padding: 0 0 25px; border-bottom: 1px solid #f4f4f4; font-size:14px;}
2529
+ .block .block-content {padding:0; margin:0;}
2530
+ .block .block-content p {padding:0 0 10px;}
2531
+ .block .block-content .actions {margin:0; padding:0; text-align:center; }
2532
+ .block .block-content .actions a:hover {text-decoration:none;}
2533
+ .block .block-content .actions .f-right {line-height:35px;}
2534
+ .block .block-content li, .block .block-content li.item {margin:0 0 0 3px; padding:0 0 0 13px; line-height:20px; background: url("../images/arrow_item.gif") 0 8px no-repeat }
2535
+ .block .block-content li:last-child, .block .block-content li.item:last-child {border:0; }
2536
+ .block .block-content a, .block .block-content li a, .block .block-content li.item a {color:#322c29; text-decoration:none;}
2537
+ .block .block-content a:hover, .block .block-content li a:hover, .block .block-content li.item a:hover {color:#999; text-decoration:none; }
2538
+ .block li.even, .block li.odd {background-color: transparent;}
2539
+ .block .btn-remove, .block .btn-edit {float:left;}
2540
+
2541
+
2542
+ .cms-index-index .block { float:left; width:270px; padding:0; margin:0 15px 30px; position:relative; background:#fff; border:none; border-top:6px solid #97CAE4; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
2543
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);
2544
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);
2545
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);}
2546
+ .cms-index-index .block .block-title {border:0; padding:24px 35px 27px; margin:0; color:#000; color:rgba(0,0,0,0.75); text-align:center;}
2547
+ .cms-index-index .block .block-title:after {content:''; float:left; width:120px; height:1px; background:#e8e8e8; margin:14px 0 0 39px;}
2548
+ .cms-index-index .block .block-title strong {font-size:24px; font-weight:400; font-family:Arial, Helvetica, serif; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
2549
+ .cms-index-index .block .block-subtitle {margin:0 0 10px; padding: 0 0 15px; border-bottom: 1px solid #f4f4f4;}
2550
+ .cms-index-index .block .block-content {padding:0 20px 25px; margin:0;}
2551
+ .cms-index-index .block .block-content .actions {margin:0; padding:0; text-align:center; }
2552
+ .cms-index-index .block .block-content .actions .f-right {line-height:35px;}
2553
+ .cms-index-index .block .block-content li, .block .block-content li.item {margin:0; padding:0; line-height:20px; background: none; }
2554
+ .cms-index-index .block .block-content li:last-child, .cms-index-index .block .block-content li.item:last-child {border:0; }
2555
+ .cms-index-index .block .block-content li a:hover, .cms-index-index .block .block-content li.item a:hover {color:#999; }
2556
+ .cms-index-index .block li.even, .cms-index-index .block li.odd {background-color: transparent;}
2557
+ .cms-index-index .block .btn-remove, .cms-index-index .block .btn-edit {float:left;}
2558
+
2559
+ .block-tags .block-content li {line-height:22px; font-size:16px; background:none; padding:0; margin:0; }
2560
+ .block-tags .block-content li a {color:#322c29;}
2561
+ .block-tags .block-content .actions {width:270px; height:40px; line-height:40px; margin:16px -21px -22px; background:#fcfcfc; text-align:center;
2562
+ }
2563
+ .block-tags .block-content .actions a { float:none;}
2564
+
2565
+ .block-poll .question {float:left; margin:0 10px 0 0; font-size:18px; font-weight:300; font-family:Arial, Helvetica, serif; color:#000; color:rgba(0,0,0,0.67); }
2566
+ .block-poll .block-subtitle {font-weight:300; }
2567
+ .block-poll .block-content li {line-height:30px; margin:0; padding:0; background:none; }
2568
+ .block-poll input.radio { margin-top:7px; }
2569
+ .block-poll .block-content .actions {margin:10px 0 0 0; padding:20px 0 0; border-top:1px solid #e8e8e8;}
2570
+
2571
+ .block-layered-nav .block-subtitle {display:none;}
2572
+ .block-layered-nav dt {margin:10px 0 5px; padding:0px; border:0; font-size:14px; font-weight:400; font-family:Arial, Helvetica, serif; color:#000; color:rgba(0,0,0,0.67);}
2573
+ .block-layered-nav dd {margin:0 0 15px;}
2574
+ .block-layered-nav .block-content dd li {margin:0 0 0 3px; padding:0 0 0 13px; line-height:20px; background: url("../images/arrow_item.gif") 0 8px no-repeat }
2575
+ .block-layered-nav .block-content dd li:last-child {border:0; }
2576
+ .block-layered-nav .block-content dd li a:hover {color:#999; }
2577
+ .block-layered-nav .shopby_more {display:none; text-align:right;}
2578
+
2579
+ .block-layered-price {}
2580
+ .block-layered-price .ui-slider-horizontal { height:6px; border:1px solid #e6e6e6; background:#fefefe; margin:0 0 10px; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0;
2581
+ -webkit-box-shadow:inset 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2582
+ -moz-box-shadow:inset 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2583
+ box-shadow:inset 0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2584
+ .block-layered-price .ui-widget-header {background:#5e5e5e none; }
2585
+ .block-layered-price .ui-slider-horizontal .ui-slider-handle {top: -.3em; margin-left: -.6em;}
2586
+ .block-layered-price .ui-slider .ui-slider-handle {width:19px; height:18px; }
2587
+ .block-layered-price .ui-widget-content .ui-state-default { border:none; cursor:pointer; }
2588
+
2589
+ .block-left-nav .block-title strong {font-size:24px;}
2590
+
2591
+ .block-compare .block-content li.item {margin:0 0 9px 25px; padding:0; line-height:16px; background:none;}
2592
+ .block-compare .btn-remove {float:left; margin:1px 0 0 -25px; }
2593
+ .block-compare .block-content .actions {margin:20px 0 0 0; padding:20px 0 0; border-top:1px solid #e8e8e8;}
2594
+ .block-compare .block-content .actions .f-right {float:none !important;}
2595
+ .block-compare .block-content .actions a {float:none;}
2596
+ .block-compare .block-content .actions a:before {content:''; position:absolute; width:15px; height:15px; margin:10px 0 0 -20px; background-color:#393431; -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%; background-image:url(../images/btn_remove.gif);}
2597
+
2598
+ .block-bestsellers{}
2599
+ .block-bestsellers .block-title {margin:0 0 21px;}
2600
+ .block-bestsellers .block-content li {margin:0 0 12px; padding:0 0 12px; line-height:16px; background:none; border-bottom: 1px solid #f4f4f4;}
2601
+ .block-bestsellers .block-content li:last-child {margin:0; padding:0; border:none;}
2602
+ .block-bestsellers .product-image {float:left; width:56px; margin-right:10px; border:5px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2603
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2604
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2605
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2606
+ .block-bestsellers .product-info {float:left; width:120px; }
2607
+ .block-bestsellers .price-box {margin-top:5px;}
2608
+ .block-bestsellers .price-box .price {font-size:12px;}
2609
+
2610
+ .block-viewed{}
2611
+ .block-viewed .block-title {margin:0 0 21px;}
2612
+ .block-viewed .block-content li {margin:0 0 12px; padding:0 0 12px; line-height:16px; background:none; border-bottom: 1px solid #f4f4f4;}
2613
+ .block-viewed .block-content li:last-child {margin:0; padding:0; border:none;}
2614
+ .block-viewed .product-image {float:left; width:56px; margin-right:10px; border:5px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2615
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2616
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2617
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2618
+ .block-viewed .product-info {float:left; width:120px; }
2619
+ .block-viewed .price-box {margin-top:5px;}
2620
+ .block-viewed .price-box .price {font-size:12px;}
2621
+
2622
+ .block-subscribe{}
2623
+ .block-subscribe .form-subscribe-header{text-align:center; font-size:14px; color:#000; color:rgba(0,0,0,0.67);}
2624
+ .block-subscribe .input-box{margin:16px 0; text-align:center }
2625
+ .block-subscribe input.input-text{min-width:90%; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px; }
2626
+
2627
+ .block-login {float:none; width:350px; margin:0 auto; padding:0; position:relative; background:#fff; border:none; border-top:6px solid #97CAE4; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
2628
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);
2629
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);
2630
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.10);}
2631
+ .block-login .block-title {padding:29px 33px 50px; border:0; margin:0; color:#000; color:rgba(0,0,0,0.75); text-align:center;}
2632
+ .block-login .block-title:after {width:250px; margin:23px 0 0 17px; content:''; float:left; height:1px; background:#e8e8e8; }
2633
+ .block-login .block-title strong {font-size:36px; line-height:30px;}
2634
+ .block-login .block-content {margin:0; padding:0 43px 25px; text-align:center;}
2635
+ .block-login .block-content ul {margin:0; padding:0; background:none; border:none; list-style:none; }
2636
+ .block-login .block-content li {margin:0; padding:0; background:none; border:none; text-align:center;}
2637
+ .block-login .block-content .form-list label { float:none; color:#505050; font-weight:300; padding:0;}
2638
+ .block-login .block-content .form-list .input-box{margin:2px 0 21px; width:auto; text-align:center;}
2639
+ .block-login input.input-text{margin:0; display:inline; min-width:96%; border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px; }
2640
+ .block-login .forgot-password{display:block; margin:10px 0 16px; color:#322c29; }
2641
+ .block-login .forgot-password:hover{color:#000; text-decoration:none; }
2642
+ .block-login .block-slider .slides > li strong {padding:0; margin:0; border:0;}
2643
+ .block-login .block-slider .slides > li button.button {margin:0;}
2644
+ .block-login .new-users {position:relative; width:350px; height:42px; overflow:hidden; margin:-25px 0 0; padding:13px 0; background:#fefefe; text-align:center;
2645
+ -webkit-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
2646
+ -moz-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
2647
+ box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);}
2648
+ .block-login .new-users .button{float:none;}
2649
+ .block-login .error-msg, .block-login .success-msg { border:none !important; background:none !important; line-height:1.4; min-height:10px !important; padding:0 0 10px !important; font-size:14px !important; font-weight:normal !important; font-style: italic !important; }
2650
+
2651
+
2652
+ /* Product Tabs */
2653
+ .product-tabs-container {}
2654
+ .product-tabs-container h2.tab-heading {display:none}
2655
+ .product-tabs { margin:25px 0 0; border:0; }
2656
+ .product-tabs li { float:left; border:1px solid #e1e1e1; height:43px; line-height:43px; margin-right:7px; position:relative; }
2657
+ .product-tabs li.first { }
2658
+ .product-tabs li.last { }
2659
+ .product-tabs a { display:block; height:47px; padding:0px 20px; color:#000; color:rgba(0,0,0,0.67); font-size:16px; font-family:Arial, Helvetica, serif; background: #f5f5f5; }
2660
+ .product-tabs a:hover { background-color:#fff; text-decoration:none; }
2661
+ .product-tabs li.active {border:none; border-top:4px solid #97CAE4; z-index:3; margin-top:-4px; height:46px; background:#fff;
2662
+ border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
2663
+ -webkit-box-shadow:1px -1px 6px -1px rgba(0, 0, 0, 0.15);
2664
+ -moz-box-shadow:1px -1px 6px -1px rgba(0, 0, 0, 0.15);
2665
+ box-shadow:1px -1px 6px -1px rgba(0, 0, 0, 0.15);}
2666
+ .product-tabs li.active a,
2667
+ .product-tabs li.active a:hover { background-color:#fff; }
2668
+ .product-tabs-content {position:relative; z-index:2; border:none; background:#fff; padding:23px; margin:69px 0 40px; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2669
+ -webkit-box-shadow:2px 1px 6px 0px rgba(0, 0, 0, 0.15);
2670
+ -moz-box-shadow:2px 1px 6px 0px rgba(0, 0, 0, 0.15);
2671
+ box-shadow:2px 1px 6px 0px rgba(0, 0, 0, 0.15);}
2672
+ .product-tabs-content h2 { display:none; font-size:12px; font-weight:bold; }
2673
+ .product-tabs-content h3, .product-tabs-content h4 {font-weight:400;}
2674
+ .product-tabs-content h4 {margin:0 0 10px;}
2675
+ .product-tabs-content .data-table td {padding-left:12px}
2676
+ .product-tabs-content ul.disc {}
2677
+ .product-tabs-content ul.disc li { width:auto; float:none; background:transparent url("../images/arrow_item.gif") no-repeat 10px 8px !important;; line-height: 22px; padding: 0 10px 0 20px;}
2678
+
2679
+ .product-tabs-accordion {display:none; margin:25px 0 30px; border:0; }
2680
+ .product-tabs-container h2.tab-heading { border:1px solid #e1e1e1; height:43px; line-height:43px; margin:-1px 0 0; position:relative; background: #f5f5f5; }
2681
+ .product-tabs-container h2.tab-heading:hover { background-color:#fff; }
2682
+ .product-tabs-container h2.tab-heading a { display:block; height:43px; padding:0px 20px; color:#000; color:rgba(0,0,0,0.67); font-size:16px; font-family:Arial, Helvetica, serif; }
2683
+ .product-tabs-container h2.tab-heading a:hover { text-decoration:none; }
2684
+ .product-tabs-container h2.active {border:none; border-top:4px solid #97CAE4; background:#fff;
2685
+ border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
2686
+ -webkit-box-shadow:1px -1px 6px -1px rgba(0, 0, 0, 0.15);
2687
+ -moz-box-shadow:1px -1px 6px -1px rgba(0, 0, 0, 0.15);
2688
+ box-shadow:1px -1px 6px -1px rgba(0, 0, 0, 0.15);}
2689
+ .product-tabs-container h2.active a,
2690
+ .product-tabs-container h2.active a:hover { background-color:#fff; }
2691
+ .accordion-content {display:none; margin:0;}
2692
+
2693
+ .product-view {}
2694
+ .product-view .buttons-set .back-link {float:right; margin:-60px 0 0;}
2695
+ .review-product-list .product-view .buttons-set .back-link {display:none;}
2696
+ .review-product-list .product-view .box-reviews {margin:0 0 30px;}
2697
+ .product-view h1 {font-size:30px; font-family:Arial, Helvetica; font-weight:400; color:#322c29; letter-spacing:-1px}
2698
+ .product-view h2 {font-size:20px; font-family:Arial, Helvetica; font-weight:400; color:#322c29; letter-spacing:-1px}
2699
+ .product-view .product-name { margin-bottom:7px; }
2700
+ .product-view .product-name a{ color:#322c29; }
2701
+ .product-view .product-name a:hover{ color:#000; text-decoration:none; }
2702
+ .product-view .availability { float:left; clear:left; font-size:12px; font-weight:300; color:#73b334; margin:10px 14px 0px 0; }
2703
+ .product-view .sku { float:left; font-size:12px; font-weight:700; margin:10px 0 0; }
2704
+ .product-view .availability-grouped { float:none; margin:5px 14px 15px 0; }
2705
+ .product-view .sku-grouped { font-size:12px; font-weight:700; margin:0 0 15px; }
2706
+ .product-view .grouped-items-table {margin:0 0 20px;}
2707
+ .product-view .product-shop .grouped-items-table .price-box .price { font-size:24px; line-height:24px; }
2708
+ .product-view .product-shop .grouped-items-table tbody td { padding:10px;}
2709
+ .product-view .product-essential {}
2710
+ .product-view .short-description { margin:15px 0; padding:17px 0; border:1px solid; border-color:#e3e3e3; border-color:rgba(227,227,227,0.61); border-left:none; border-right:none; color:#000; color:rgba(0,0,0,0.67);}
2711
+ .product-view .qty-container { margin:15px 0 17px; padding:0 0 17px; border-bottom:1px solid; border-bottom-color:#e3e3e3; border-bottom-color:rgba(227,227,227,0.61);}
2712
+ .product-view .qty-container label{float:left; margin-right:10px; line-height:30px; color:#000; color:rgba(0,0,0,0.67);}
2713
+ .product-view .qty-container input{float:left; width:40px;}
2714
+ .product-view .product-options {background: transparent; margin:0 0 0 0 13px; padding:0;}
2715
+ .col1-layout .product-view .product-shop { float:none; width:auto; overflow:hidden; margin:0;}
2716
+ .product-view .product-shop-info {overflow:hidden; padding:0 2px;}
2717
+ .product-view .product-shop .product-options {margin:0px 0 13px;}
2718
+ .product-view .product-shop .price-box {position:relative; float:left;}
2719
+ .product-view .product-shop .price-box .price-label { display:block;}
2720
+ .product-view .product-shop .price-box .price { font-size:48px; line-height:48px; }
2721
+ .product-view .product-shop .price-box .old-price { position:absolute; left:100%; margin:7px 14px; }
2722
+ .product-view .product-shop .price-box .old-price .price { color:#b5b5b5; font-size:14px; line-height:100%; }
2723
+ .product-view .product-shop .price-box p{}
2724
+ .product-view .product-shop .price-box-bundle {float:none;}
2725
+ .product-view .product-shop .price-box-bundle .price-box {float:none;}
2726
+ .product-view .product-shop .price-box-bundle .price-box p {display:block;}
2727
+ .product-view .product-shop .grouped-items-table .price-box .old-price {position:static; margin:0;}
2728
+ .product-view .product-options dt {margin:10px 0 0;}
2729
+ .product-view .product-options dt label em {color:#9A1212;}
2730
+ .product-view .product-options dd {padding: 0px 0px 17px; margin:0 0 17px; border-bottom:1px solid; border-bottom-color:#e3e3e3; border-bottom-color:rgba(227,227,227,0.61);}
2731
+ .product-options dd input.input-text {width:96%}
2732
+ .product-view .product-options .qty-holder {display:block; margin-top:5px;}
2733
+ .product-view .product-options dd input.qty {width:40px;}
2734
+ .product-view .product-options-bottom {background: transparent; margin:10px 0; padding:0;}
2735
+ .product-view .product-shop .product-options-bottom {margin:0; float:left;}
2736
+ .product-view .product-shop .product-options-bottom .price-box {float:none; margin:0 0 15px; }
2737
+ .product-view .product-img-box {width:363px; position:relative; margin: 0 30px 0 0;}
2738
+ .product-view .product-img-box .zoom {width: 210px; background:none; }
2739
+
2740
+
2741
+ .product-view .product-img-box .product-image {padding:0; margin:0 0 6px; position:relative; background:#fff; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2742
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2743
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2744
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2745
+ .product-view .product-img-box .product-image a {display:block; position: relative; overflow: hidden;}
2746
+ .product-view .product-img-box .zoom-notice {margin:5px 0;}
2747
+ .product-view .product-img-box .product-image-zoom {width:363px; height:363px;}
2748
+ .product-view .product-img-box .zoom-thumbnail {}
2749
+ .product-view .product-img-box .more-views { padding:8px 0; margin:0 0 6px; position:relative; background:#fff; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2750
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2751
+ -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);
2752
+ box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2753
+ .product-view .product-img-box .more-views ul {margin:0;}
2754
+ .product-view .product-img-box .more-views li { float:left; background:transparent; padding:0; margin:0 6px 0 0;}
2755
+ .product-view .product-img-box .more-views .jcarousel-skin-tango {margin:0 46px;}
2756
+ .product-view .product-img-box .more-views .jcarousel-skin-tango .jcarousel-container-horizontal {margin:0; width:402px;}
2757
+ .product-view .product-img-box .more-views .jcarousel-skin-tango .jcarousel-clip-horizontal {margin:0; width:402px;}
2758
+ .product-view .product-img-box .more-views .jcarousel-skin-tango .jcarousel-item {width:126px; margin:0 4px;}
2759
+ .product-view .product-img-box .more-views .jcarousel-controls {position:relative;}
2760
+ .product-view .product-img-box .more-views .jcarousel-prev-horizontal { position:absolute; left:1px;}
2761
+ .product-view .product-img-box .more-views .jcarousel-next-horizontal { position:absolute; right:1px;}
2762
+ .product-view .add-to-cart { margin:0;}
2763
+ .product-view .product-shop .add-to-box { margin:0; float:left;}
2764
+ .product-view .product-shop .add-to-cart button.button { margin:0;}
2765
+ .product-view .add-to-cart button.button span{ height:52px; background-image:url('../images/btn_overlay_product.png'); }
2766
+ .product-view .add-to-cart button.button span span {line-height:52px; font-size:14px; text-transform:capitalize; padding:0 20px 0 70px; background:url('../images/icon_cart_product.png') 17px 50% no-repeat; }
2767
+
2768
+ .product-view .add-to-links{margin:88px 0 0; padding:0; float:left; }
2769
+ .product-view .add-to-links li{line-height:38px; padding-left:53px; margin:0 0 0 20px; float:left;}
2770
+ .product-view .product-shop-info .add-to-links{float:none; clear:left;}
2771
+ .product-view .product-shop-info .add-to-links li{margin:8px 50px 0 0; float:none;}
2772
+ .product-view .add-to-links li a{display:block; color:#322c29; font-size:14px;}
2773
+ .product-view .add-to-links li span.icon {display:block; float:left; overflow:hidden; margin-left:-53px; width:38px; height:38px; background:#322c29 url("../images/wishlist.png") 50% 50% no-repeat; -webkit-border-radius:100% !important; -moz-border-radius:100% !important; border-radius:100% !important; text-indent:-999px; }
2774
+ .product-view .add-to-links li.compare span.icon {background-image:url('../images/compare.png');}
2775
+ .product-view .add-to-links li.email-friend span.icon {background-image:url('../images/email.png');}
2776
+ .product-view .add-to-links li a:hover {text-decoration:none }
2777
+ .product-view .add-to-links li:hover span.icon {background-color:#97CAE4}
2778
+
2779
+ .product-view .add-to-links .link-wishlist,
2780
+ .product-view .add-to-links .link-compare {font-weight:400;}
2781
+ .product-view .product-shop .no-rating, .product-view .product-shop .ratings { margin:0 0 10px; padding:0 0 10px; border-bottom:1px solid; border-bottom-color:#e3e3e3; border-bottom-color:rgba(227,227,227,0.61); }
2782
+ .product-view .product-shop .no-rating a, .product-view .product-shop .ratings a {color:#000; color:rgba(0,0,0,0.67); font-size:12px; text-decoration:none;}
2783
+ .product-view .product-shop .no-rating a:hover, .product-view .product-shop .ratings a:hover {color:#000;}
2784
+ .product-view .addthis_toolbox {margin:17px 0;}
2785
+ .product-view .grouped-items-table .qty{width:30px;}
2786
+ .product-view .tier-prices{margin:14px 0 0;}
2787
+ .product-options dd select {width:208px;}
2788
+ .product-options dd select.multiselect {width:100%;}
2789
+
2790
+ .product-view .box-tags h3 {font-size:14px; font-family:Arial, Helvetica, serif;}
2791
+ .product-view .box-tags .product-tags {margin:10px 0 20px;}
2792
+ .product-view .box-tags .product-tags li { display:inline; padding:0 6px; }
2793
+ .product-view .box-tags .product-tags li a{ text-decoration: underline; }
2794
+ .product-view .box-tags div.form-add{ border-top:1px solid #ededed; padding-top:20px; }
2795
+ .product-view .box-tags .form-add label{ display:block; float:none; font-size:14px; margin-bottom:5px; }
2796
+ .product-view .box-tags .form-add .input-box {margin:0;}
2797
+ .product-view .box-tags .form-add .input-text {height:24px; line-height:24px; border-right:0;}
2798
+ .product-view .box-tags .form-add button.button span {height:34px;line-height:34px; }
2799
+
2800
+ .product-view .after-tabs-block { margin:0 0 30px;}
2801
+
2802
+ .product-view .product-additional { float:right; width:270px; margin:0 3px 0 27px;}
2803
+ .product-view .product-additional .block {margin:0 0 20px; padding:0; width:270px; }
2804
+ .product-view .product-additional .block .block-title {border:0; padding:24px 35px 27px; margin:0; color:#000; color:rgba(0,0,0,0.75); text-align:center;}
2805
+ .product-view .product-additional .block .block-title:after {content:''; float:left; width:120px; height:1px; background:#e8e8e8; margin:14px 0 0 39px;}
2806
+ .product-view .product-additional .block .block-title strong {font-size:24px; font-weight:400; font-family:Arial, Helvetica, serif; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
2807
+ .product-view .product-additional .block .block-subtitle {margin:0 0 10px; padding: 0 0 15px; border-bottom: 1px solid #f4f4f4;}
2808
+ .product-view .product-additional .block .block-content {padding:0 20px 25px; margin:0;}
2809
+ .product-view .product-additional .block .block-content .actions {margin:0; padding:0; text-align:center; }
2810
+ .product-view .product-additional .block .block-content .actions .f-right {line-height:35px;}
2811
+ .product-view .product-additional .block .block-content li {margin:0; padding:0; line-height:20px; background: none; }
2812
+ .product-view .product-additional .block .block-content li:last-child, .product-view .product-additional .block .block-content li.item:last-child {border:0; }
2813
+ .product-view .product-additional .block .block-content li:hover a, .product-view .product-additional .block .block-content li.item:hover a {color:#999; }
2814
+ .product-view .product-additional .block li.even, .product-view .product-additional .block li.odd {background-color: transparent;}
2815
+ .product-view .product-additional .block .btn-remove, .product-view .product-additional .block .btn-edit {float:left;}
2816
+
2817
+ .product-view .box-up-sell {}
2818
+ .product-view .box-up-sell h2{font-size:24px; text-transform:uppercase; margin:0 80px 20px 0 }
2819
+ .product-view .box-up-sell .block-subtitle {line-height:32px;}
2820
+ .product-view .box-up-sell .block-subtitle a {font-weight:300; text-decoration:underline; }
2821
+ .product-view .box-up-sell .block-subtitle a:hover {text-decoration:none; }
2822
+ .product-view .box-up-sell .jcarousel-item, .product-view .box-up-sell .item {width:280px; margin:0;}
2823
+ .product-view .box-up-sell .item {float:left; width:130px; padding:0; margin:3px 4px 20px 3px; position:relative; }
2824
+ .product-view .box-up-sell .product-image {display:block; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2825
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15); -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15); box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2826
+ .product-view .box-up-sell .product-name {color:#3c3c3c; font-size:12px; font-weight:300; display:block; margin:10px 10px 6px; line-height:120%; }
2827
+ .product-view .box-up-sell .product-name:hover {color:#000; text-decoration:none;}
2828
+ .product-view .box-up-sell .upsell-checkbox {margin:0 4px; line-height:12px; float:left; }
2829
+ .product-view .box-up-sell .price-box {overflow:hidden; margin:0px 0 0 4px; line-height:12px; }
2830
+ .product-view .box-up-sell .price-box .price {font-size:12px; font-family:Arial,serif; line-height:100%;}
2831
+ .product-view .box-up-sell .jcarousel-next-horizontal {margin:-55px 0 0 30px; background-color:#efefef}
2832
+ .product-view .box-up-sell .jcarousel-prev-horizontal {margin:-55px 0 0 0; background-color:#efefef}
2833
+ .product-view .box-up-sell .jcarousel-container-horizontal {width:280px; margin:0;}
2834
+ .product-view .box-up-sell .jcarousel-clip-horizontal {width:280px; margin:0;}
2835
+
2836
+ .box-up-sell2 {position: relative; margin:30px 0 0 -15px; display:none; }
2837
+ .box-up-sell2 h3{ font-family:Arial, Helvetica, serif; font-size:24px; font-weight:300; padding:0 0 28px; margin:0 0 0 15px; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
2838
+ .box-up-sell2 .block-subtitle{ margin:-15px 15px 15px; text-align:left; }
2839
+ .box-up-sell2 .block-subtitle a{text-decoration:underline;}
2840
+ .box-up-sell2 .block-subtitle a:hover{text-decoration:none;}
2841
+ .box-up-sell2 .jcarousel-list li {float:left; width:252px; padding:0; margin:0 15px 53px; position:relative; background:#fff; border:9px solid #fff; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
2842
+ -webkit-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15); -moz-box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15); box-shadow:0px 0px 6px 0px rgba(0, 0, 0, 0.15);}
2843
+ .box-up-sell2 .jcarousel-list h3{ font-size:24px; font-family:Arial, Helvetica; font-weight:300; color:#000; color:rgba(0,0,0,0.67); letter-spacing:-1px; margin:27px 0 26px 2px; text-align:center; }
2844
+ .box-up-sell2 .jcarousel-list .button-container {float:right;}
2845
+ .box-up-sell2 .jcarousel-list .button-container button.button span {width:35px; height:35px; border-radius:100%; -webkit-border-radius:100%; -moz-border-radius:100%; text-indent:-9999px;}
2846
+ .box-up-sell2 .jcarousel-list .button-container button.button span span {padding:0; background:url('../images/icon_cart.png') 50% 50% no-repeat; }
2847
+ .box-up-sell2 .jcarousel-list .product-image {display: block; margin:0 0 12px; }
2848
+ .box-up-sell2 .jcarousel-list .product-image img {position:relative; z-index:0; }
2849
+ .box-up-sell2 .jcarousel-list .product-name {color:#3c3c3c; font-size:16px; font-weight:300; display:block; margin:4px; line-height:120%; }
2850
+ .box-up-sell2 .jcarousel-list .product-name:hover {color:#000; text-decoration:none;}
2851
+ .box-up-sell2 .jcarousel-list .upsell-checkbox {margin:0 4px; line-height:12px; float:left; }
2852
+ .box-up-sell2 .jcarousel-list .price-box {overflow:hidden; margin:0px 0 0 4px; line-height:12px; letter-spacing:-1.2px }
2853
+ .box-up-sell2 .jcarousel-next-horizontal {background-color:#efefef}
2854
+ .box-up-sell2 .jcarousel-prev-horizontal {background-color:#efefef}
2855
+
2856
+ .banner{margin-bottom:10px;}
2857
+ .banner a{display: block; position: relative; margin:0px; text-decoration:none;}
2858
+ .banner a:hover{text-decoration:none;}
2859
+ .banner a span{position:absolute; padding: 12px; top:50%; background: #1b1a19; font-weight: 300 !important; font-size:16px; line-height: 16px; color:#fff}
2860
+ .banner a.text-left span{left:0; text-align: left;}
2861
+ .banner a.text-center span{left:0; right:0; margin:0 auto; text-align: center;}
2862
+ .banner a.text-right span{right:0; text-align: right;}
2863
+ .banner a em{position:absolute; z-index:2; width:100%; height:100%; top:0; left:0; background: #000;
2864
+ filter: alpha(opacity=0); /* internet explorer */
2865
+ opacity: 0; /* fx, safari, opera, chrome */
2866
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
2867
+ }
2868
+ .banner a:hover em{
2869
+ filter:alpha(opacity=10); /* internet explorer */
2870
+ opacity:0.1; /* fx, safari, opera, chrome */
2871
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=10)"; /*IE8*/
2872
+ }
2873
+
2874
+
2875
+ /* My Account ============================================================================= */
2876
+ .my-account .title-buttons .link-rss { float:none; margin:0; }
2877
+
2878
+ /********** < Dashboard */
2879
+ .dashboard .welcome-msg { margin:0 8em 1.5em 0; }
2880
+ .dashboard .welcome-msg p { margin:0; }
2881
+ .dashboard .col2-set { margin:0 0 15px; }
2882
+
2883
+ /* General Box */
2884
+ .box-account { margin:0 0 15px; }
2885
+ .box-account .box-head { margin:0 0 5px; text-align:right; }
2886
+ .box-account .box-head h2 { float:left; margin:0; font-size:14px; font-weight:bold; color:#4c4c4c; }
2887
+ .box-account .box-head a { font-size:10px; text-transform:uppercase; }
2888
+
2889
+ .dashboard .box .box-title { background:#f1f1f1; padding:2px 10px; margin:0 0 12px; text-align:right; }
2890
+ .dashboard .box .box-title h3,
2891
+ .dashboard .box .box-title h4 { float:left; margin:0; font-size:12px; font-weight:bold; line-height:1.35; }
2892
+ .dashboard .box .box-title a { font-size:10px; text-transform:uppercase; }
2893
+ .dashboard .box .box-content { padding:0 10px; }
2894
+
2895
+ /* Block: Recent Orders */
2896
+ .dashboard .box-recent {}
2897
+
2898
+ /* Block: Account Information */
2899
+ .dashboard .box-info {}
2900
+ .dashboard .box-info h4 { font-size:11px; font-weight:bold; }
2901
+
2902
+ /* Block: Reviews */
2903
+ .dashboard .box-reviews .box-head { background:#f1f1f1; padding:2px 10px; margin:0 0 12px; }
2904
+ .dashboard .box-reviews .box-head h2 { font-size:12px; font-weight:bold; line-height:1.35; color:#444; }
2905
+ .dashboard .box-reviews .number { display:none; float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
2906
+ .dashboard .box-reviews .details { padding:0 10px; }
2907
+ .dashboard .box-reviews li.item { margin:0 0 7px; }
2908
+ .dashboard .box-reviews li.item.last { margin:0; }
2909
+ .dashboard .box-reviews .ratings { margin:7px 0 0; }
2910
+
2911
+ /* Block: Tags */
2912
+ .dashboard .box-tags .box-head { background:#f1f1f1; padding:2px 10px; margin:0 0 12px; }
2913
+ .dashboard .box-tags .box-head h2 { font-size:12px; font-weight:bold; line-height:1.35; color:#444; }
2914
+ .dashboard .box-tags .number { display:none; float:left; font-size:10px; font-weight:bold; line-height:1; color:#fff; margin:3px -20px 0 0; padding:2px 3px; background:#0a263c; }
2915
+ .dashboard .box-tags .details { padding:0 10px; }
2916
+ .dashboard .box-tags li.item { margin:0 0 7px; }
2917
+ .dashboard .box-tags li.item.last { margin:0; }
2918
+ .dashboard .box-tags .tags strong,
2919
+ .dashboard .box-tags .tags ul,
2920
+ .dashboard .box-tags .tags ul li { display:inline; }
2921
+ /********** Dashboard > */
2922
+
2923
+ /* Address Book */
2924
+ .addresses-list h2 { background:#f1f1f1; padding:2px 10px; margin:0 0 12px; font-size:13px; font-weight:bold; line-height:1.25; }
2925
+ .addresses-list h3 { font-weight:bold; font-size:12px; }
2926
+ .addresses-list address { margin:0 0 3px; }
2927
+ .addresses-list p { margin:0; }
2928
+ .addresses-list a { font-weight:bold; }
2929
+ .addresses-list .link-remove {}
2930
+ .addresses-list .separator { margin:0 3px; }
2931
+ .addresses-list li.item { padding:0 10px; margin:0 0 12px; }
2932
+ .addresses-list li.empty {}
2933
+ .addresses-list li.empty p { font-weight:bold; }
2934
+ .addresses-list .addresses-additional li.item {}
2935
+
2936
+ /* Order View */
2937
+ .order-info dt { display:none; }
2938
+ .order-info ul { margin-bottom:15px; border-bottom:1px solid #666; background:#f2f2f2; }
2939
+ .order-info li{ float:left; border-right:1px solid #a4a4a4; border-left:1px solid #fff; font-size:1.1em; line-height:1em; }
2940
+ .order-info li.first { border-left:0; }
2941
+ .order-info li.last { border-right:0; }
2942
+ .order-info li a { display:block; padding:6px 15px; color:#444; }
2943
+ .order-info li a:hover { background-color:#ddd; text-decoration:none; color:#444; }
2944
+ .order-info li.current { background-color:#666; font-weight:bold; padding:6px 15px; color:#fff; }
2945
+
2946
+ .order-date { margin:10px 0; }
2947
+
2948
+ .order-info-box { margin:0 0 15px; }
2949
+ .order-info-box h2 { font-size:13px; font-weight:bold; border-bottom:1px solid #ddd; margin:0 0 8px; }
2950
+ .order-info-box .box-payment p { margin:0 0 3px; }
2951
+ .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
2952
+
2953
+ .order-items { width:100%; overflow-x:auto; }
2954
+ .order-items h2,
2955
+ .order-items h3 { clear:none; font-weight:bold; font-size:13px; padding:0; margin:0 0 .45em; }
2956
+ .order-items h3 { font-size:12px; }
2957
+ .order-items .product-name { font-weight:bold !important; }
2958
+ .order-items .link-print { font-size:10px; text-transform:uppercase; }
2959
+ .order-items .order-links { text-align:right; }
2960
+ .order-items .order-links .link-print { font-weight:bold; font-size:11px; text-transform:none; }
2961
+
2962
+ .order-additional { margin:15px 0; }
2963
+ /* Order Gift Message */
2964
+ .gift-message dt strong { color:#555; }
2965
+ .gift-message dd { font-size:13px; margin:5px 0 0; }
2966
+ /* Order Comments */
2967
+ .order-about dt { font-weight:bold; }
2968
+ .order-about dd { font-size:13px; margin:0 0 7px; }
2969
+
2970
+ #my-orders-table {}
2971
+ #my-orders-table span.title {display:none; font-weight:700; width:100px; padding:0 15px 0 0 ;}
2972
+
2973
+ .tracking-table { margin:0 0 15px; }
2974
+ .tracking-table th { font-weight:bold; white-space:nowrap; }
2975
+
2976
+ .tracking-table-popup { width:100%; }
2977
+ .tracking-table-popup th { font-weight:bold; white-space:nowrap; }
2978
+ .tracking-table-popup th,
2979
+ .tracking-table-popup td { padding:1px 8px; }
2980
+
2981
+ /* Order Print Pages */
2982
+ .page-print .print-head { margin:0 0 15px; }
2983
+ .page-print .print-head .logo { float:left; }
2984
+ .page-print .print-head address { float:left; margin-left:15px; }
2985
+ .page-print h1 { font-size:15px; font-weight:bold; }
2986
+ .page-print h2,
2987
+ .page-print h3 { font-size:12px; font-weight:bold; }
2988
+ .page-print h2.h2 { font-size:15px; font-weight:bold; text-align:right; }
2989
+ .page-print .order-date { border-bottom:1px solid #ccc; padding:0 0 10px; margin:0 0 10px; }
2990
+ .page-print .col2-set { margin:0 0 10px; }
2991
+ /* Price Rewrites */
2992
+ .page-print .gift-message-link { display:none; }
2993
+ .page-print .price-excl-tax,
2994
+ .page-print .price-incl-tax { display:block; white-space:nowrap; }
2995
+ .page-print .cart-price,
2996
+ .page-print .price-excl-tax .label,
2997
+ .page-print .price-incl-tax .label,
2998
+ .page-print .price-excl-tax .price,
2999
+ .page-print .price-incl-tax .price { display:inline; }
3000
+
3001
+ /* My Wishlist */
3002
+ .my-wishlist .data-table td { padding:10px; text-align: center !important; }
3003
+ .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 auto 5px; }
3004
+ .my-wishlist textarea { display:block; width:96%; height:109px; }
3005
+ .my-wishlist .buttons-set { border:0; padding:0; margin:20px 0 0; text-align:left; }
3006
+ .my-wishlist .buttons-set button.button { float:none; }
3007
+ .my-wishlist .buttons-set .btn-add span,
3008
+ .my-wishlist .buttons-set .btn-share span {}
3009
+ #wishlist-table .add-to-links { white-space:nowrap; }
3010
+ #wishlist-table input.qty { width:50px; margin:0 0 15px; }
3011
+
3012
+ /* My Tags */
3013
+ .my-tag-edit { float:left; margin:0 0 10px; }
3014
+ .my-tag-edit .btn-remove { float:right; margin:4px 0 0 5px; }
3015
+ #my-tags-table { clear:both; }
3016
+ #my-tags-table td { padding:10px; }
3017
+ #my-tags-table .add-to-links { white-space:nowrap; }
3018
+
3019
+ /* My Reviews */
3020
+ #my-reviews-table td { padding:10px; }
3021
+ #my-reviews-table .rating-box { margin:3px 0 0; }
3022
+
3023
+ .product-review .product-img-box { float:left; width:140px; }
3024
+ .product-review .product-img-box .product-image { display:block; width:125px; height:125px; }
3025
+ .product-review .product-img-box .label { font-size:11px; margin:0 0 3px; }
3026
+ .product-review .product-img-box .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
3027
+ .product-review .product-details { margin-left:150px; }
3028
+ .product-review .product-name { font-size:16px; font-weight:bold; margin:0 0 10px; }
3029
+ .product-review h3 { font-size:12px; margin:0 0 3px; color:#2f2f2f; }
3030
+ .product-review .ratings-table { margin:0 0 10px; }
3031
+ .product-review dt { font-weight:bold; }
3032
+ .product-review dd { font-size:13px; margin:5px 0 0; }
3033
+ .product-review dd { font-size:13px; margin:5px 0 0; }
3034
+
3035
+ .new-users button.button {float:left;}
3036
+ .registered-users input.input-text{width:455px;}
3037
+
3038
+ .site-block { position:fixed; z-index:11999; }
3039
+ .left-side, .right-side { width:250px; top:200px; }
3040
+ .left-side{ left:-250px; }
3041
+ .right-side { right:-250px; }
3042
+ .bottom { right:0; bottom:0; }
3043
+
3044
+ .prev-next {margin:0; position:relative; float:right; }
3045
+ .prev-next span{}
3046
+ .product-prev {}
3047
+ .product-next {}
3048
+ .product-prev {right:108px; }
3049
+ .product-prev span{padding-left:28px; text-align:right; }
3050
+ .product-next span{padding-right:28px; background-position:100% 100%; }
3051
+ .product-next:hover, .product-prev:hover { text-decoration:none; -webkit-box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.05); -moz-box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.05); box-shadow:inset 2px 2px 6px 0px rgba(0, 0, 0, 0.05);}
3052
+
3053
+ /************* POPUP style */
3054
+ .page-popup { background: #e9e9e9; }
3055
+
3056
+ /************* FACEBOOK */
3057
+ #fb-root { display: none;}
3058
+ .fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] { width: 100% !important; }
3059
+
3060
+ /************* SLIDER */
3061
+ .slider { position: relative; top: 0; left: 0; overflow: hidden; width:100%; height:100%; padding:7px 0 20px; background:#f4f4f2;}
3062
+ #slide-timeline {position: absolute; z-index: 999; top:7px; width:0; height:3px; background:#322c29; }
3063
+
3064
+ /* Browser Resets */
3065
+ .flex-container a:active,
3066
+ .flexslider a:active,
3067
+ .flex-container a:focus,
3068
+ .flexslider a:focus {outline: none;}
3069
+ .slides,
3070
+ .flex-control-nav,
3071
+ .flex-direction-nav {margin: 0; padding: 0; list-style: none;}
3072
+ /* FlexSlider Necessary Styles
3073
+ *********************************/
3074
+ .flexslider {margin: 0; padding: 0; }
3075
+ .flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
3076
+ .flexslider .slides img {max-width: 100%; display: block; width:auto\9; /* ie8 */}
3077
+ .flexslider .slides .small_image{display:none; width:100%; height:auto;}
3078
+ .flex-pauseplay span {text-transform: capitalize;}
3079
+
3080
+ /* Clearfix for the .slides element */
3081
+ .slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
3082
+ html[xmlns] .slides {display: block;}
3083
+ * html .slides {height: 1%;}
3084
+
3085
+ /* FlexSlider Default Theme
3086
+ *********************************/
3087
+ .flexslider {margin:0; position:relative; zoom:1; }
3088
+ .flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
3089
+ .loading .flex-viewport {max-height: 300px;}
3090
+ .flexslider .slides {zoom: 1;}
3091
+ .carousel li {margin-right: 5px}
3092
+
3093
+ .flexslider .slides .row{position:relative;}
3094
+ .flexslider .slides .content{float:left; max-width:1000px; margin:30px 100px; color:#454746); color:rgba(0,0,0, 0.6); text-align:center; }
3095
+ .flexslider .slides .content strong{font-family:Arial, Helvetica,sans-serif; font-size:60px; font-weight:300; text-transform:uppercase; line-height:50px; color:#454746; color:rgba(0,0,0, 0.8); }
3096
+ .flexslider .slides .content .border{margin:15px 10px; height:1px; background:#bfc5c3; background:rgba(0,0,0,0.09); }
3097
+ .flexslider .slides .content p{margin:0; font-size:14px;}
3098
+ .flexslider .slides .content button{margin:15px 0 0;}
3099
+ .flexslider .slides .text-right .content{float:right; }
3100
+ .flexslider .slides .text-center .content{float:none; margin:30px auto;}
3101
+
3102
+
3103
+
3104
+
3105
+
3106
+ @media screen and (max-width: 860px) {
3107
+ .flex-direction-nav .flex-prev {opacity: 1; left: 0;}
3108
+ .flex-direction-nav .flex-next {opacity: 1; right: 0;}
3109
+ }
3110
+
3111
+ /*** Column slider ***/
3112
+ .block-slider {}
3113
+ .block-slider {margin: 0; padding: 0; }
3114
+ .block-slider .slides > li {margin:0; padding:0; line-height:1.4; text-align:center; background:none transparent; display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
3115
+ .block-slider .slides > li strong {display:block; border:0; padding:0 0 22px; margin:0 0 25px; color:#000; color:rgba(0,0,0,0.75); border-bottom:1px solid #e8e8e8; font-size:22px; font-weight:400; font-family:Arial, Helvetica, serif; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
3116
+ .block-slider .slides > li p {margin:0 0 20px; text-align:center; font-size:14px; color:#000; color:rgba(0,0,0,0.67);}
3117
+ .block-slider .slides > li button.button {margin:-21px 0 21px;}
3118
+ .block-slider .slides img {max-width: 100%; display: block; }
3119
+ .block-slider .flex-control-nav {position:relative; width:270px; height:33px; overflow:hidden; margin:0 -20px -25px; background:#fefefe; text-align:center;
3120
+ border-bottom-left-radius:2px; -moz-border-bottom-left-radius:2px; -webkit-border-bottom-left-radius:2px; border-bottom-right-radius:2px; -moz-border-bottom-right-radius:2px; -webkit-border-bottom-right-radius:2px;
3121
+ -webkit-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
3122
+ -moz-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
3123
+ box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);}
3124
+ .block-slider .flex-control-nav li {margin: 0 6px; padding:0; line-height:33px; background:none transparent; display:inline-block; zoom: 1; *display: inline;}
3125
+ .block-slider .flex-control-paging li a {margin:12px 0; }
3126
+
3127
+ .cms-index-index .block-slider {}
3128
+ .cms-index-index .block-slider {margin: 0; padding: 0; }
3129
+ .cms-index-index .block-slider .slides > li {margin:0; padding:22px 0 0; line-height:1.4; text-align:center; background:none transparent; display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
3130
+ .cms-index-index .block-slider .slides > li strong {display:block; border:0; padding:0 0 22px; margin:0 0 25px; color:#000; color:rgba(0,0,0,0.75); border-bottom:1px solid #e8e8e8; font-size:22px; font-weight:400; font-family:Arial, Helvetica, serif; text-transform:uppercase; letter-spacing:-1.2px; line-height:21px;}
3131
+ .cms-index-index .block-slider .slides > li p {margin:0 0 20px; text-align:center; font-size:14px; color:#000; color:rgba(0,0,0,0.67);}
3132
+ .cms-index-index .block-slider .slides > li button.button {margin:-21px 0 21px;}
3133
+ .cms-index-index .block-slider .slides img {max-width: 100%; display: block; }
3134
+ .cms-index-index .block-slider .flex-control-nav {position:relative; width:270px; height:33px; overflow:hidden; margin:0 -20px -25px; background:#fefefe; text-align:center;
3135
+ -webkit-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
3136
+ -moz-box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);
3137
+ box-shadow:inset 0px 5px 6px -4px rgba(0, 0, 0, 0.15);}
3138
+ .cms-index-index .block-slider .flex-control-nav li {margin: 0 6px; padding:0; line-height:33px; background:none transparent; display:inline-block; zoom: 1; *display: inline;}
3139
+ .cms-index-index .block-slider .flex-control-paging li a {margin:12px 0; }
3140
+
3141
+ .block-slideshow {padding:23px 20px 25px;}
3142
+
3143
+
3144
+ #review-buttons-container {margin:15px;}
3145
+ #review-buttons-container button {margin:0 15px 15px 0;}
3146
+ .paypal-shipping-method {margin:0 0 15px}
3147
+
3148
+ .calendar {z-index:1 !important}
3149
+
3150
+ .page-sitemap .links { float:none; text-align: right; margin: 0 0 10px; }
3151
+ .page-sitemap img.v-middle {vertical-align:top;}
3152
+
3153
+ /* ==|== media queries ======================================================
3154
+ EXAMPLE Media Query for Responsive Design.
3155
+ This example overrides the primary ('mobile first') styles
3156
+ Modify as content requires.
3157
+ ========================================================================== */
3158
+
3159
+ /***** Standard 1200px *****/
3160
+ .row { margin:0 auto; width:1200px; }
3161
+ .row .row { width:auto; display:inline-block; margin:0 -15px; }
3162
+ .grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 { display:inline; float: left; position: relative; margin:0 15px; min-height:1px;}
3163
+ .grid_1 { width:70px;}
3164
+ .grid_2 { width:170px;}
3165
+ .grid_3 { width:270px;}
3166
+ .grid_4 { width:370px;}
3167
+ .grid_5 { width:470px;}
3168
+ .grid_6 { width:570px;}
3169
+ .grid_7 { width:670px;}
3170
+ .grid_8 { width:770px;}
3171
+ .grid_9 { width:870px;}
3172
+ .grid_10 { width:970px;}
3173
+ .grid_11 { width:1070px;}
3174
+ .grid_12 { width:1170px;}
3175
+ .space_1 { margin-left:100px; }
3176
+ .space_2 { margin-left:200px; }
3177
+ .space_3 { margin-left:300px; }
3178
+ .space_4 { margin-left:400px; }
3179
+ .space_5 { margin-left:500px; }
3180
+ .space_6 { margin-left:600px; }
3181
+ .space_7 { margin-left:700px; }
3182
+ .space_8 { margin-left:800px; }
3183
+ .space_9 { margin-left:900px; }
3184
+ .space_10 { margin-left:1000px; }
3185
+ .space_11 { margin-left:1100px; }
3186
+
3187
+ /* CMS PAGE ======================================================================================= */
3188
+ .cms-page-view h1 {font-size: 36px; font-weight:400; padding:0 0 6px; letter-spacing:-1.5px}
3189
+ .cms-page-view .std h1,.cms-page-view .std h2,.cms-page-view .std h3,.cms-page-view .std h4,.cms-page-view .std h5,.cms-page-view .std h6{margin: 0 0 10px}
3190
+ .cms-page-view .std h1 {font-size: 30px;}
3191
+ .cms-page-view .std h2 {font-size: 26px;}
3192
+ .cms-page-view .std h3 {font-size: 22px;}
3193
+ .cms-page-view .std h4 {font-size: 18px;}
3194
+ .cms-page-view .std h5 {font-size: 16px;}
3195
+ .cms-page-view .std h6 {font-size: 14px;}
3196
+ .cms-page-view .page-head h3 {font-size: 36px; margin: -30px 0 30px}
3197
+
3198
+ .cms-page-view .std p {margin: 5px 0 15px;}
3199
+
3200
+ .std .alignleft { margin: 4px 27px 7px 0; float: left;}
3201
+ .std .alignright { margin: 4px 0 7px 27px; float: right;}
3202
+ .std .aligncenter { margin: 0 auto 7px; display: block; text-align: center;}
3203
+
3204
+ .content-container .std a.alignleft, .content-container .std a.alignright, .content-container .std a.aligncenter { background-color: transparent; padding: 0;}
3205
+
3206
+
3207
+ .std blockquote {
3208
+ background-color: #f0f0f0;
3209
+ margin: 0;
3210
+ padding: 25px 25px 10px;
3211
+ font-size: 15px;
3212
+ }
3213
+ .std blockquote:before {
3214
+ content: '"';
3215
+ width: 15px; height: 11px;
3216
+ margin: -2px 5px 0 -2px;
3217
+ font-size: 22px;
3218
+ float: left;
3219
+ }
3220
+
3221
+
3222
+ /* Class: std - styles for admin-controlled content */
3223
+ .std { }
3224
+ .std a {}
3225
+ .std a:hover {}
3226
+
3227
+ .std ul.ox_list_simple { list-style: disc}
3228
+ .std ol.ox_list_simple { list-style: decimal}
3229
+ .std ul.ox_list_simple, .std ol.ox_list_simple { padding-left: 18px; margin: 0 0 18px;}
3230
+ .std ul.ox_list_simple li, .std ol.ox_list_simple li {margin-bottom: 8px;}
3231
+ .std ul.ox_list_simple li p, .std ol.ox_list_simple li p {margin: 0;}
3232
+ .std ul.ox_list_simple li p img, .std ol.ox_list_simple li p img {margin-top: 10px;}
3233
+
3234
+ .std dl dt { margin-bottom: 8px; text-transform: uppercase;}
3235
+ .std dl dd { margin: 0 0 18px; padding: 0;}
3236
+
3237
+ /* for table */
3238
+ .std .data-table thead th { color: #000;}
3239
+ .std .data-table tbody th {
3240
+ padding: 13px 19px;
3241
+ color: #000;
3242
+ font-size: 13px;
3243
+ text-transform: uppercase;
3244
+ }
3245
+
3246
+
3247
+
3248
+ /* Tables
3249
+ -------------------------------------------------- */
3250
+ table.ox_table { margin-bottom: 21px; width: 100%}
3251
+ table.ox_table th, table.ox_table td, table.ox_table caption { padding: 10px 15px}
3252
+ table.ox_table caption { background: #eee}
3253
+ table.ox_table thead { background: #363636}
3254
+ table.ox_table thead th { text-align: left; color: #fafafa}
3255
+ table.ox_table tbody td { border-top: 1px solid #ddd; border-color: rgba(0,0,0,.06); -moz-transition: all .6s ease-in; -webkit-transition: all .6s ease-in; -o-transition: all .6s ease-in;}
3256
+ table.ox_table tbody tr:first-child td { border-top: 0}
3257
+ table.ox_table tbody tr:hover td {background: #f8f8f8; border-color: rgba(0,0,0,.03); color: #757575; -moz-transition: all .1s ease-in; -webkit-transition: all .1s ease-in; -o-transition: all .1s ease-in;}
3258
+ table.ox_table tfoot { font-style: italic}
3259
+
3260
+ pre {
3261
+ overflow-x: auto;
3262
+ padding-left: 8px; margin-bottom: 20px;
3263
+ line-height: 21px;
3264
+ }
3265
+
3266
+ /* Fluid Columns
3267
+ -------------------------------------------------------------- */
3268
+ .one_half, .one_third, .two_third, .one_fourth, .three_fourth { float: left; margin-right: 3.8%;}
3269
+ .one_half { width: 48%; *width: 47.99%;}
3270
+ .one_third { width: 30.66%; }
3271
+ .two_third { width: 65.32%; }
3272
+ .one_fourth { width: 22%; *width: 21.9%; }
3273
+ .three_fourth { width: 74%; }
3274
+ .one_half.last, .one_third.last, .two_third.last, .one_fourth.last, .three_fourth.last { margin-right: 0px;}
3275
+
3276
+
3277
+ /* ==|== non-semantic helper classes ========================================
3278
+ Please define your styles before this section.
3279
+ ========================================================================== */
3280
+ .no-shadow{-webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none}
3281
+ /* For image replacement */
3282
+ .ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
3283
+ .ir br { display: none; }
3284
+ /* Hide from both screenreaders and browsers: h5bp.com/u */
3285
+ .hidden { display: none !important; visibility: hidden; }
3286
+ /* Hide only visually, but have it available for screenreaders: h5bp.com/v */
3287
+ .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
3288
+ /* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
3289
+ .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
3290
+ /* Hide visually and from screenreaders, but maintain layout */
3291
+ .invisible { visibility: hidden; }
3292
+ /* Contain floats: h5bp.com/q */
3293
+ .clearfix:before, .clearfix:after { content: ""; display: table; }
3294
+ .clearfix:after { clear: both; }
3295
+ .clearfix { *zoom: 1; }
3296
+ .clear { clear:both; height:0; line-height: 0; font-size: 0;}
3297
+
3298
+ /* ==|== print styles =======================================================
3299
+ Print styles.
3300
+ Inlined to avoid required HTTP connection: h5bp.com/r
3301
+ ========================================================================== */
3302
+ @media print {
3303
+ * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
3304
+ a { text-decoration: underline; }
3305
+ a[href]:after { content: " (" attr(href) ")"; }
3306
+ abbr[title]:after { content: " (" attr(title) ")"; }
3307
+ .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
3308
+ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
3309
+ thead { display: table-header-group; } /* h5bp.com/t */
3310
+ tr, img { page-break-inside: avoid; }
3311
+ img { max-width: 100% !important; }
3312
+ @page { margin: 0.5cm; }
3313
+ p, h2, h3 { orphans: 3; widows: 3; }
3314
+ h2, h3 { page-break-after: avoid; }
3315
+ }
3316
+ /***** Standard 960px *****/
3317
+ @media only screen and (min-width:960px) and (max-width:1200px) {
3318
+ .row { margin:0 auto; width:960px; }
3319
+ .row .row { width:auto; display:inline-block; margin:0 -16px; }
3320
+ .grid_1 { width:48px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3321
+ .grid_2 { width:128px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3322
+ .grid_3 { width:208px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3323
+ .grid_4 { width:288px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3324
+ .grid_5 { width:368px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3325
+ .grid_6 { width:448px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3326
+ .grid_7 { width:528px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3327
+ .grid_8 { width:608px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3328
+ .grid_9 { width:688px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3329
+ .grid_10 { width:768px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3330
+ .grid_11 { width:848px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3331
+ .grid_12 { width:928px; margin:0 16px 0 16px; float:left; display:inline; position:relative }
3332
+ .space_1 { margin-left:96px; }
3333
+ .space_2 { margin-left:176px; }
3334
+ .space_3 { margin-left:256px; }
3335
+ .space_4 { margin-left:336px; }
3336
+ .space_5 { margin-left:416px; }
3337
+ .space_6 { margin-left:496px; }
3338
+ .space_7 { margin-left:576px; }
3339
+ .space_8 { margin-left:656px; }
3340
+ .space_9 { margin-left:736px; }
3341
+ .space_10 { margin-left:816px; }
3342
+ .space_11 { margin-left:896px; }
3343
+
3344
+ #nav, #nav { width:510px; }
3345
+ .search-field #nav, .search-field #nav { width:320px; }
3346
+ .below-logo #nav, .below-logo #nav {width:auto; margin:0 0 10px 26px}
3347
+
3348
+ .homepage-banners a .content{margin:18px;}
3349
+ .col1-layout .products-grid { width:900px; margin:0;}
3350
+ .home-right {margin-right:30px;}
3351
+ .home-main {width:600px;}
3352
+ .col1-layout .home-main .products-grid {width:600px;}
3353
+ .home-main .category-products {margin-left:30px;}
3354
+ .home-left-col {}
3355
+ .home-left-col .home-main {margin:30px 30px 0 0;}
3356
+ .home-left-col .home-main .category-products {margin-left:0;}
3357
+ .home-left-col .home-left {margin:30px 0 0 30px;}
3358
+
3359
+ .flexslider .slides .content{max-width:760px;}
3360
+ .flex-direction-nav {width:960px;}
3361
+
3362
+ .product-view .product-additional {display:none }
3363
+ .product-view .box-up-sell2 {display:block; margin-left:0; }
3364
+ .main .slider-container {width:900px; margin-left:0px }
3365
+ .main .slider-container h3 {width:600px; }
3366
+ .jcarousel-skin-tango .jcarousel-clip-horizontal,
3367
+ .jcarousel-skin-tango .jcarousel-container-horizontal {width:900px;}
3368
+ .home-main .jcarousel-skin-tango .jcarousel-container-horizontal,
3369
+ .home-main .jcarousel-skin-tango .jcarousel-clip-horizontal { width:600px; }
3370
+ .product-slider-container {width:900px}
3371
+ .home-main .product-slider-container {width:600px; margin-left:30px }
3372
+ .home-left-col .home-main .product-slider-container {margin:30px 30px 0 0;}
3373
+
3374
+ .col-main, .col-main-left, .col-main-right { width:600px; padding:30px 0 0; margin:0 15px; min-height:400px; }
3375
+ .col2-right-layout .col-main {margin-left:45px;}
3376
+ .checkout-onepage-index .col2-right-layout .col-main {margin-left:0;}
3377
+ .col3-layout .col-main {width:330px;}
3378
+ .col-left { margin-left:30px; }
3379
+ .col2-left-layout .products-grid,
3380
+ .col2-right-layout .products-grid { width:600px; margin:0 -15px; }
3381
+ .col1-layout .col-main {width: 900px; margin:0 0 0 45px;}
3382
+ .cms-index-index .col1-layout .col-main {width: 960px; margin:0 0 0 30px;}
3383
+ .toolbar { margin: 0 30px 0 0; }
3384
+ .breadcrumbs{ margin-left:45px; }
3385
+ .cart .cart-collaterals .grid_4{margin:0 2px 0 16px;}
3386
+
3387
+ .homepage-banners {width:900px !important;}
3388
+ .homepage-banners .grid_6{width:420px !important; margin:0 15px;}
3389
+
3390
+ .col2-left-layout .category-description {margin-right:30px; }
3391
+ .products-list {margin: 0 30px 0 0; }
3392
+ .products-list .add-to-links {float:none; clear:both;}
3393
+ .products-list .price-box {float:none}
3394
+ .products-list .ratings {float:none; margin:5px 0;}
3395
+ .products-list .add-to-links li:first-child span {display:none}
3396
+
3397
+ /* two_columns 4 products per row */
3398
+ .two_columns_4 {}
3399
+ .two_columns_4 li.item {width:152px; margin:0 15px 30px}
3400
+ .two_columns_4 .hover {width:152px;}
3401
+ .two_columns_4 .add-to-links { width:170px; height:auto; padding:10px 0;}
3402
+ .two_columns_4 .add-to-links li { display:block; margin:0; line-height:140%; }
3403
+ .two_columns_4 .add-to-links li { display:block; margin:0; }
3404
+ .two_columns_4 .hover .price-box {display:none}
3405
+ .two_columns_4 .quick-view { top:15%; left:23%; height:32px; line-height:32px; font-size:12px; }
3406
+ .two_columns_4 .product-name {font-size:14px}
3407
+ .two_columns_4 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3408
+ /* two_columns 5 products per row */
3409
+ .col2-left-layout .two_columns_5 { margin:0 -15px}
3410
+ .two_columns_5 {}
3411
+ .two_columns_5 li.item {width:152px; margin:0 15px 30px}
3412
+ .two_columns_5 .hover {width:152px;}
3413
+ .two_columns_5 .add-to-links { width:170px; height:auto; padding:10px 0;}
3414
+ .two_columns_5 .add-to-links li { display:block; margin:0; line-height:140%; }
3415
+ .two_columns_5 .add-to-links li { display:block; margin:0; }
3416
+ .two_columns_4 .hover .price-box {display:none}
3417
+ .two_columns_5 .quick-view { top:15%; left:23%; height:32px; line-height:32px; font-size:12px; }
3418
+ .two_columns_5 .product-name {font-size:14px}
3419
+ .two_columns_5 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3420
+
3421
+ /* one_columns 5 products per row */
3422
+ .one_column_5 {}
3423
+ .one_column_5 li.item {width:177px;}
3424
+ .one_column_5 .hover {width:177px;}
3425
+ .one_column_5 .add-to-links { width:195px; height:auto; padding:10px 0;}
3426
+ .one_column_5 .add-to-links li { display:block; margin:0; line-height:140%; }
3427
+ .one_column_5 .add-to-links li { display:block; margin:0; }
3428
+ .one_column_5 .hover .price-box {display:none}
3429
+ .one_column_5 .quick-view { top:18%; left:26%; height:32px; line-height:32px; font-size:12px; }
3430
+ .one_column_5 .product-name {font-size:14px}
3431
+ .one_column_5 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3432
+ /* one_columns 6 products per row */
3433
+ .one_column_6 {}
3434
+ .one_column_6 li.item {width:177px;}
3435
+ .one_column_6 .hover {width:177px;}
3436
+ .one_column_6 .add-to-links { width:195px; height:auto; padding:10px 0;}
3437
+ .one_column_6 .add-to-links li { display:block; margin:0; line-height:140%; }
3438
+ .one_column_6 .add-to-links li { display:block; margin:0; }
3439
+ .one_column_6 .hover .price-box {display:none}
3440
+ .one_column_6 .quick-view { top:18%; left:26%; height:32px; line-height:32px; font-size:12px; }
3441
+ .one_column_6 .product-name {font-size:14px}
3442
+ .one_column_6 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3443
+
3444
+ .top-opc {width:960px;}
3445
+ .top-opc li{float:left; width:150px; margin: 0 10px 30px 0;}
3446
+ .opc {width:630px;}
3447
+
3448
+ #checkout-step-login .block-checkout-register, #checkout-step-login .block-checkout-login{width:258px}
3449
+ #checkout-step-login input.input-text {width: 248px;}
3450
+
3451
+ .form-list li.wide .input-box {width:100%}
3452
+ .form-list li.wide input.input-text {width:98%}
3453
+
3454
+ .footer-info iframe {width:200px; margin:0 auto;}
3455
+ }
3456
+
3457
+ /***** iPad Smaller than 959px *****/
3458
+ @media only screen and (min-width: 768px) and (max-width: 959px) {
3459
+ .row { margin:0 auto; width:768px; }
3460
+ .row .row { width:auto; display:inline-block; margin:0 -14px; }
3461
+ .grid_1 { width:36px; margin:0 14px}
3462
+ .grid_2 { width:100px; margin:0 14px}
3463
+ .grid_3 { width:164px; margin:0 14px}
3464
+ .grid_4 { width:228px; margin:0 14px}
3465
+ .grid_5 { width:292px; margin:0 14px}
3466
+ .grid_6 { width:356px; margin:0 14px}
3467
+ .grid_7 { width:420px; margin:0 14px}
3468
+ .grid_8 { width:484px; margin:0 14px}
3469
+ .grid_9 { width:548px; margin:0 14px}
3470
+ .grid_10 { width:612px; margin:0 14px}
3471
+ .grid_11 { width:676px; margin:0 14px}
3472
+ .grid_12 { width:740px; margin:0 14px}
3473
+ .space_1 { margin-left:78px; }
3474
+ .space_2 { margin-left:142px; }
3475
+ .space_3 { margin-left:206px; }
3476
+ .space_4 { margin-left:270px; }
3477
+ .space_5 { margin-left:334px; }
3478
+ .space_6 { margin-left:398px; }
3479
+ .space_7 { margin-left:462px; }
3480
+ .space_8 { margin-left:526px; }
3481
+ .space_9 { margin-left:590px; }
3482
+ .space_10 { margin-left:654px; }
3483
+ .space_11 { margin-left:718px; }
3484
+
3485
+ header a.logo { float:none; display:block; margin:20px 10px 10px; text-align:center; }
3486
+ header h1.logo { float:none; display:block; }
3487
+ .top-dropdowns {width:240px; margin:8px auto 0; position:static;}
3488
+ .cart-top-container {display:none; }
3489
+ .cart-top-title{display:block; float:left; width:110px; }
3490
+ .compare-top-container {display:none; }
3491
+ .compare-top-title{display:block; float:left; width:110px; }
3492
+ .search-top-container {margin:0 0 10px; padding:0; float:none; clear:left; }
3493
+ .search-top-container .search-top, .search-top-container .search-form-border{display:none; }
3494
+ .search-top-container .search-form{display:block !important; opacity:1 !important; position:relative; top:0; left:0; margin:0 auto; padding:0 0 8px 0; background:none transparent; box-shadow:none; -webkit-box-shadow:none; -moz-box-shadow:none; }
3495
+ .search-field #search {width:204px}
3496
+ .search-field #search_mini_form .form-search button {margin-left:216px}
3497
+
3498
+ footer .grid_6{ text-align:center; float:none; width:768px; margin:0 auto; }
3499
+ footer ul.links { float:none; }
3500
+ footer address{ margin:15px 0 0;}
3501
+ .footer-info .grid_3 {width:356px; margin-bottom:30px; }
3502
+
3503
+ .nav-container, .nav-container .nav-top-title, .nav-container li.parent em {display:block; }
3504
+ .below-logo .nav-container {margin:0 0 15px;}
3505
+ #nav, #nav{float:none; width:240px !important; margin:0 auto 10px !important; display:none;}
3506
+ #nav li, #nav li { float:none; position:relative; width:240px; margin:0 auto 3px;}
3507
+ #nav li a, #nav li a, #nav ul li a, #nav ul li a { float:none; padding:0; }
3508
+ #nav li a span, #nav li a span {padding:0px 10px; border:none;}
3509
+ #nav li:hover,
3510
+ #nav li.over,
3511
+ #nav li.active,
3512
+ #nav li:hover,
3513
+ #nav li.over,
3514
+ #nav li.active{ -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none;}
3515
+ #nav>li>a:hover>span,
3516
+ #nav>li.over>a>span,
3517
+ #nav>li.active>a>span,
3518
+ #nav>li>a:hover>span,
3519
+ #nav>li.over>a>span,
3520
+ #nav>li.active>a>span{border:none; background:transparent; color:#fff; }
3521
+ #nav>li>a:hover>em,
3522
+ #nav>li.over>a>em,
3523
+ #nav>li.active>a>em,
3524
+ #nav>li>a:hover>em,
3525
+ #nav>li.over>a>em,
3526
+ #nav>li.active>a>em{color:#fff; }
3527
+ #nav li.custom-block, #nav li.custom-block { display:none !important;}
3528
+ #nav ul, #nav ul ul, #nav ul, #nav ul ul { position:static; margin:0; padding:5px 0 10px 5px; -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none; }
3529
+ #nav ul, #nav ul ul { display:none; }
3530
+ #nav ul li, #nav ul li {width:auto; }
3531
+ #nav div.sub-wrapper, #nav div.sub-wrapper ul div.sub-wrapper { display:none; position:static; width:auto; padding:0; margin:0; border:none; background:#fff; -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none;}
3532
+ #nav>li>div.sub-wrapper>ul>li { float:none; display:block; border:none; width:auto; padding:0;}
3533
+ #nav ul div.sub-wrapper ul { float:none; display:block; border:none; width:auto; padding:5px 0 10px 5px;}
3534
+ #nav ul.level0, #nav > li div { position:static; margin:0; padding:5px 0 10px 5px; width:auto; }
3535
+ #nav ul.level0 > li { float:none; display:block; width:auto; margin:0 auto 3px;}
3536
+ #nav ul.level0 > li.last {}
3537
+ #nav ul.level0 > li > a { padding:0; font-family:Arial, serif !important; font-size:12px; font-weight:normal; color:#322c29 !important; line-height:28px; letter-spacing:0; text-transform:none; }
3538
+ #nav ul ul li { float:none; width:auto; margin:0 auto 3px; padding:0; line-height:28px; background:none;}
3539
+ #nav ul li.over > a, #nav ul li a:hover {background:#f5f4f4 !important; }
3540
+
3541
+ .homepage-banners {width:600px !important;}
3542
+ .homepage-banners .grid_6{width:270px !important; margin:0 15px;}
3543
+ .homepage-banners a .content{margin:8px 14px;}
3544
+ .homepage-banners a .content p{display:none; }
3545
+ .homepage-banners a .content .border{margin:5px 10px; }
3546
+ .homepage-banners a .content strong{font-size:24px; }
3547
+ .homepage-banners a .content button{margin:5px 0 0;}
3548
+
3549
+ .col1-layout .products-grid { width:600px; margin:0; }
3550
+ .col-main, .col-main-left { width:600px; padding:30px 0 0; margin-right:84px; }
3551
+ .col-main-right { width:600px; padding:30px 0 0; margin-left:84px; }
3552
+ .col3-layout .col-main {width:600px; float:none !important; margin:0 0 0 84px;}
3553
+ .col2-right-layout .col-main {margin:0 0 0 84px;}
3554
+ .col1-layout .col-main {width: 600px; margin:0 0 0 84px;}
3555
+ .col1-layout .col-main .products-grid { margin:0;}
3556
+ .col-left, .col-right {width:600px; float:none; clear:both; margin:0 0 0 75px; }
3557
+ .col2-left-layout .products-grid,
3558
+ .col2-right-layout .products-grid { width:600px; margin:0; }
3559
+ .col2-left-layout .page-title, .col2-right-layout .page-title, .col3-layout .page-title,
3560
+ .col2-left-layout .page-head, .col2-right-layout .page-head, .col3-layout .page-head { margin:0 15px; }
3561
+ .cart .cart-collaterals .grid_4{width:600px; margin:0 0 24px 14px;}
3562
+ .checkout-onepage-index .col-right {padding:20px 0 0; float:none; margin:0 0 0 84px; }
3563
+ .checkout-onepage-index .col-right .block { float:none; margin:0 auto 30px; width:378px; position: static !important; top:0; }
3564
+
3565
+ .breadcrumbs{ margin-left:99px; }
3566
+
3567
+ .home-main .category-products {margin:0 0 30px 0;}
3568
+ .home-main, .home-right, .home-left {float:none}
3569
+ .home-right, .home-left {width:600px; margin:0 auto;}
3570
+ .home-main, .col1-layout .home-main .products-grid {width:600px;}
3571
+
3572
+ .flexslider .slides .content{max-width:560px;}
3573
+ .flexslider .slides .content strong{font-size:48px; line-height:40px; }
3574
+ .flex-direction-nav {width:768px; display:none !important; }
3575
+
3576
+ .site-block, .mousetrap, #cloud-big-zoom {display:none; }
3577
+
3578
+ #shopping-cart-totals-table strong {font-size:18px; padding:0 10px 0 0;}
3579
+ .data-table table, .data-table thead, .data-table tbody, tablr.data-table th, table.data-table td, .data-table tr { display: block; border: 0; text-align: left !important;}
3580
+ .data-table tfoot td { text-align:right !important;}
3581
+ .data-table th { display:none;}
3582
+ .data-table td {padding:10px;}
3583
+ .data-table td.td-name h2 {font-size:20px; font-weight:300; }
3584
+ .data-table td.td-image a {text-align:center; }
3585
+ .data-table td.td-image img {width:200px;}
3586
+ .data-table td.td-edit, .data-table .btn-remove {display:none;}
3587
+ .data-table .td-actions .btn-remove, .data-table .td-actions .btn-edit {display:inline-block;}
3588
+ .data-table td.td-price {padding:10px; background:#fafafa;}
3589
+ .data-table td.td-qty {padding:0 10px; background:#fafafa;}
3590
+ .data-table td.td-delete {background:#fafafa; text-align:center !important;}
3591
+ .data-table .td-title {display:inline-block; width:100px; padding:0 10px 0 0; font-weight:bold; }
3592
+ .data-table .td-actions {display:inline; padding:0 5px; }
3593
+ .data-table th.td-wishlist, .data-table td.td-wishlist {display:none;}
3594
+ #product-attribute-specs-table th { display:block;}
3595
+ #product-review-table {display:table; }
3596
+ #product-review-table thead, #product-review-table tfoot, #product-review-table tbody{display:table-row-group; }
3597
+ #product-review-table tr{display:table-row; }
3598
+ #product-review-table td{display:table-cell; }
3599
+ #product-review-table th{display:table-cell; padding:8px 3px; }
3600
+
3601
+ #checkout-review-table tfoot{}
3602
+ #checkout-review-table tfoot tr{display:table-row; }
3603
+ #checkout-review-table tfoot td{display:table-cell; }
3604
+
3605
+ .product-view .product-additional {display:none }
3606
+ .product-view .box-up-sell2 {display:block; margin-left:0; }
3607
+ .product-view .product-img-box {float:none; margin:0 auto 20px;}
3608
+ .product-view .product-shop-info .add-to-links {float:left; clear:none; margin:0;}
3609
+ .product-view .product-shop-info .add-to-links li{float:left; margin:8px 0 0 20px;}
3610
+ .product-view .product-shop-info .add-to-links li.wishlist{margin-left:0}
3611
+ .main .slider-container {width:600px; margin-left:0 }
3612
+ .main .slider-container h3 {width:500px; }
3613
+ .jcarousel-skin-tango .jcarousel-clip-horizontal,
3614
+ .jcarousel-skin-tango .jcarousel-container-horizontal {width:600px;}
3615
+ .home-main .jcarousel-skin-tango .jcarousel-container-horizontal,
3616
+ .home-main .jcarousel-skin-tango .jcarousel-clip-horizontal { width:600px; }
3617
+ .product-slider-container {width:600px}
3618
+
3619
+ #toTop {display:none !important;}
3620
+
3621
+ .toolbar { margin:0 15px; }
3622
+
3623
+ .language-switch, .currency-switch {display:block;}
3624
+ .language-select, .currency-select {display:block; float:left; margin:4px 10px 0 0; text-align:center;}
3625
+ .language-select select, .currency-select select {width:100px; height:auto;}
3626
+
3627
+ .toolbar-switch .current { display:none; }
3628
+ .toolbar-switch .toolbar-title { background: none; padding: 0 7px 0 0; }
3629
+ .toolbar-switch select { display:inline; height:auto; }
3630
+
3631
+ .products-list {margin: 0 15px; }
3632
+ .products-list .add-to-links {display:none;}
3633
+ .products-list .price-box {float:none}
3634
+ .products-list .ratings {float:none; margin:5px 0;}
3635
+ .products-list .add-to-links li:first-child span {display:none}
3636
+
3637
+ /* two_columns 4 products per row */
3638
+ .two_columns_4 {}
3639
+ .two_columns_4 li.item {width:152px; margin:0 15px 30px}
3640
+ .two_columns_4 .hover {width:152px;}
3641
+ .two_columns_4 .add-to-links { width:170px; height:auto; padding:10px 0;}
3642
+ .two_columns_4 .add-to-links li { display:block; margin:0; line-height:140%; }
3643
+ .two_columns_4 .add-to-links li { display:block; margin:0; }
3644
+ .two_columns_4 .hover .price-box {display:none}
3645
+ .two_columns_4 .quick-view { top:15%; left:23%; height:32px; line-height:32px; font-size:12px; }
3646
+ .two_columns_4 .product-name {font-size:14px}
3647
+ .two_columns_4 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3648
+ /* two_columns 5 products per row */
3649
+ .col2-left-layout .two_columns_5 { margin:0}
3650
+ .two_columns_5 {}
3651
+ .two_columns_5 li.item {width:152px; margin:0 15px 30px}
3652
+ .two_columns_5 .hover {width:152px;}
3653
+ .two_columns_5 .add-to-links { width:170px; height:auto; padding:10px 0;}
3654
+ .two_columns_5 .add-to-links li { display:block; margin:0; line-height:140%; }
3655
+ .two_columns_5 .add-to-links li { display:block; margin:0; }
3656
+ .two_columns_4 .hover .price-box {display:none}
3657
+ .two_columns_5 .quick-view { top:15%; left:23%; height:32px; line-height:32px; font-size:12px; }
3658
+ .two_columns_5 .product-name {font-size:14px}
3659
+ .two_columns_5 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3660
+
3661
+ /* one_columns 5 products per row */
3662
+ .one_column_5 {}
3663
+ .one_column_5 li.item {width:152px;}
3664
+ .one_column_5 .hover {width:152px;}
3665
+ .one_column_5 .add-to-links { width:170px; height:auto; padding:10px 0;}
3666
+ .one_column_5 .add-to-links li { display:block; margin:0; line-height:140%; }
3667
+ .one_column_5 .add-to-links li { display:block; margin:0; }
3668
+ .one_column_5 .hover .price-box {display:none}
3669
+ .one_column_5 .quick-view { top:18%; left:21%; height:32px; line-height:32px; font-size:12px; }
3670
+ .one_column_5 .product-name {font-size:14px}
3671
+ .one_column_5 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3672
+ /* one_columns 6 products per row */
3673
+ .one_column_6 {}
3674
+ .one_column_6 li.item {width:152px;}
3675
+ .one_column_6 .hover {width:152px;}
3676
+ .one_column_6 .add-to-links { width:170px; height:auto; padding:10px 0;}
3677
+ .one_column_6 .add-to-links li { display:block; margin:0; line-height:140%; }
3678
+ .one_column_6 .add-to-links li { display:block; margin:0; }
3679
+ .one_column_6 .hover .price-box {display:none}
3680
+ .one_column_6 .quick-view { top:18%; left:21%; height:32px; line-height:32px; font-size:12px; }
3681
+ .one_column_6 .product-name {font-size:14px}
3682
+ .one_column_6 .hover .button-container button.button span span em {margin:0 5px 0 0;}
3683
+
3684
+ .top-opc {width:600px; margin:0 0 0 50px}
3685
+ .opc {width:600px;}
3686
+ .opc .td-label {display:block; float:left; }
3687
+ #checkout-step-login .block-checkout-register, #checkout-step-login .block-checkout-login { width: 378px; margin: 20px auto 0 !important; float: none;}
3688
+ .buttons-set .back-link {margin:10px 0;}
3689
+
3690
+ #my-orders-table span.title {display:inline-block}
3691
+ #my-orders-table tr {border-bottom:1px solid #e9e9e9 }
3692
+ #my-orders-table tr.last {border:none}
3693
+
3694
+ .form-list li.wide .input-box,
3695
+ .form-list li.wide input.input-text {width:254px}
3696
+ }
3697
+
3698
+ /***** iPhone (portrait) *****/
3699
+ @media only screen and (max-width: 767px) {
3700
+ .row { margin:0 auto; width:300px; }
3701
+ .row .row { margin:0; width:auto; display:inline-block; }
3702
+ .grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 { width:270px; margin:0 15px 10px; float:left; display:inline; position:relative }
3703
+ .space_1, .space_2, .space_3, .space_4, .space_5, .space_6, .space_7, .space_8, .space_9, .space_10, .space_11 {
3704
+ margin-left:0;
3705
+ }
3706
+
3707
+ .title-buttons {text-align:center}
3708
+ .title-buttons h1, .title-buttons h2, .title-buttons h3, .title-buttons h4, .title-buttons h5, .title-buttons h6 {float:none;}
3709
+
3710
+ .prev-next {display:none; }
3711
+
3712
+ .site-block {display:none;}
3713
+
3714
+ .top-switch-bg .grid_6 {text-align:center; margin:0 15px 5px }
3715
+ ul.links { float:none; margin:0; }
3716
+ .links li{ line-height:120%; display:inline; padding:0 5px; text-align:center; white-space:nowrap; }
3717
+ .links li.separator {display:none; }
3718
+
3719
+ .footer-banners {padding:25px 0 0; }
3720
+ .footer-info {padding:30px 0 0; }
3721
+ .footer-info .grid_3 {margin-bottom:0px; }
3722
+ .footer-info .grid_3 .block-content {margin-bottom:30px; }
3723
+ .footer-info ul.social {margin:10px 0 0; }
3724
+ .footer-info .block-control {display:block; }
3725
+ .footer-info .block-content {display:none; }
3726
+ footer { line-height:150%;}
3727
+ footer .grid_6{ text-align:center; }
3728
+ footer address{ margin:15px 0 0;}
3729
+ footer ul.links { float:none; }
3730
+
3731
+ .language-switch, .currency-switch {display:block;}
3732
+ .language-select, .currency-select {display:block; width:50%; float:left; text-align:center; margin:5px 0 10px; }
3733
+ .language-select span, .currency-select span {display:none; }
3734
+ .language-select select, .currency-select select {width:125px; height:auto }
3735
+
3736
+ .toolbar-switch .current { display:none; }
3737
+ .toolbar-switch .toolbar-title { background: none; padding: 0 7px 0 0; }
3738
+ .toolbar-switch select { display:inline; height:auto; }
3739
+
3740
+ header a.logo { float:none; display:block; margin:20px 10px 10px; text-align:center; }
3741
+ header h1.logo { float:none; display:block; }
3742
+ .top-dropdowns {width:240px; margin:8px auto 0; position:static;}
3743
+ .cart-top-container {display:none; }
3744
+ .cart-top-title{display:block; float:left; width:110px; }
3745
+ .compare-top-container {display:none; }
3746
+ .compare-top-title{display:block; float:left; width:110px; }
3747
+ .search-top-container {margin:0; padding:0; float:none; clear:left; }
3748
+ .search-top-container .search-top, .search-top-container .search-form-border{display:none; }
3749
+ .search-top-container .search-form{display:block !important; opacity:1 !important; position:relative; top:0; left:0; margin:0 auto; padding:0 0 8px 0; background:none transparent; box-shadow:none; -webkit-box-shadow:none; -moz-box-shadow:none; }
3750
+ .search-field #search {width:204px}
3751
+ .search-field #search_mini_form .form-search button {margin-left:216px}
3752
+
3753
+ header .grid_12 {margin-bottom:5px;}
3754
+ .nav-container, .nav-container .nav-top-title, .nav-container li.parent em {display:block; }
3755
+ .below-logo .nav-container {margin:0 0 15px;}
3756
+ #nav, #nav{float:none; width:240px !important; margin:0 auto 10px !important; display:none;}
3757
+ #nav li, #nav li { float:none; position:relative; width:240px; margin:0 auto 3px;}
3758
+ #nav li a, #nav li a, #nav ul li a, #nav ul li a { float:none; padding:0; }
3759
+ #nav li a span, #nav li a span {padding:0px 10px; border:none;}
3760
+ #nav li:hover,
3761
+ #nav li.over,
3762
+ #nav li.active,
3763
+ #nav li:hover,
3764
+ #nav li.over,
3765
+ #nav li.active{ -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none;}
3766
+ #nav>li>a:hover>span,
3767
+ #nav>li.over>a>span,
3768
+ #nav>li.active>a>span,
3769
+ #nav>li>a:hover>span,
3770
+ #nav>li.over>a>span,
3771
+ #nav>li.active>a>span{border:none; background:transparent; color:#fff; }
3772
+ #nav>li>a:hover>em,
3773
+ #nav>li.over>a>em,
3774
+ #nav>li.active>a>em,
3775
+ #nav>li>a:hover>em,
3776
+ #nav>li.over>a>em,
3777
+ #nav>li.active>a>em{color:#fff; }
3778
+ #nav li.custom-block, #nav li.custom-block { display:none !important;}
3779
+ #nav ul, #nav ul ul, #nav ul, #nav ul ul { position:static; margin:0; padding:5px 0 10px 5px; -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none; }
3780
+ #nav ul, #nav ul ul { display:none; }
3781
+ #nav ul li, #nav ul li {width:auto; }
3782
+ #nav div.sub-wrapper, #nav div.sub-wrapper ul div.sub-wrapper { display:none; position:static; width:auto; padding:0; margin:0; border:none; background:#fff; -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none;}
3783
+ #nav>li>div.sub-wrapper>ul>li { float:none; display:block; border:none; width:auto; padding:0;}
3784
+ #nav ul div.sub-wrapper ul { float:none; display:block; border:none; width:auto; padding:5px 0 10px 5px;}
3785
+ #nav ul.level0, #nav > li div { position:static; margin:0; padding:5px 0 10px 5px; width:auto; }
3786
+ #nav ul.level0 > li { float:none; display:block; width:auto; margin:0 auto 3px;}
3787
+ #nav ul.level0 > li.last {}
3788
+ #nav ul.level0 > li > a { padding:0; font-family:Arial, serif !important; font-size:12px; font-weight:normal; color:#322c29 !important; line-height:28px; letter-spacing:0; text-transform:none; }
3789
+ #nav ul ul li { float:none; width:auto; margin:0 auto 3px; padding:0; line-height:28px; background:none;}
3790
+ #nav ul li.over > a, #nav ul li a:hover {background:#f5f4f4 !important; }
3791
+
3792
+ .homepage-banners a .content{margin:14px;}
3793
+ .homepage-banners a .content .border{margin:5px 10px; }
3794
+ .homepage-banners a .content strong{font-size:24px; line-height:18px }
3795
+ .homepage-banners a .content p{display:none;}
3796
+ .homepage-banners a .content button{margin:5px 0 0;}
3797
+
3798
+ .col1-layout .products-grid { width:300px; margin:0; }
3799
+ .col-main, .col-main-left, .col-main-right { float:none !important; width:300px; margin:0 auto; padding:30px 0 0; }
3800
+ .col-left, .col-right { float:none; margin:0 auto; }
3801
+ .col3-layout .col-main, .col1-layout .col-main {width: 300px; margin:0;}
3802
+ .col3-layout .col-wrapper {float:none; width:300px; margin:0 auto;}
3803
+ .col1-layout .col-main .products-grid { margin:0;}
3804
+ .col2-left-layout .products-grid,
3805
+ .col2-right-layout .products-grid { width:300px; margin:0 auto; }
3806
+ .col2-left-layout .page-title, .col2-right-layout .page-title, .col3-layout .page-title,
3807
+ .col2-left-layout .page-head, .col2-right-layout .page-head, .col3-layout .page-head { margin:0; }
3808
+ .catalog-category-view .col-left, .catalog-category-view .col-right {padding:0;}
3809
+ .cart .cart-collaterals .grid_4{width:300px; margin:0 0 25px;}
3810
+ .checkout-onepage-index .col-right {padding:20px 0 0; float:none; margin:0 auto; }
3811
+ .checkout-onepage-index .col-right .block { float:none; margin:0 auto 30px; }
3812
+
3813
+ .breadcrumbs{ margin-left:0px; }
3814
+
3815
+ .home-main .category-products {width:300px; margin:0 auto 30px ;}
3816
+ .home-main, .home-right {float:none; margin:30px auto 0}
3817
+ .home-main, .col1-layout .home-main .products-grid {width:300px;}
3818
+
3819
+
3820
+ .site-block, .mousetrap, #cloud-big-zoom {display:none; }
3821
+
3822
+ .block-login {width:300px;}
3823
+ .block-login .block-title {padding:29px 8px 50px;}
3824
+ .block-login .block-content {padding:0 18px 25px;}
3825
+ .block-login .new-users {width:300px;margin:0 0 -25px;}
3826
+
3827
+ .product-view .product-additional {display:none }
3828
+ .product-view .box-up-sell2 {display:block; margin-left:0; }
3829
+ .product-view .product-img-box {float:none; margin:0 auto 20px; max-width:300px }
3830
+ .product-view .product-img-box .product-image img{ width:282px; height:auto; }
3831
+ .product-view .product-img-box .more-views .jcarousel-skin-tango .jcarousel-container-horizontal,
3832
+ .product-view .product-img-box .more-views .jcarousel-skin-tango .jcarousel-clip-horizontal {width:190px !important; overflow:hidden; }
3833
+ .product-view .product-img-box .more-views .jcarousel-skin-tango .jcarousel-item {width:190px !important; margin:0}
3834
+ .product-view .product-img-box .more-views .jcarousel-skin-tango .jcarousel-item img {display:block; width:140px; height:auto; margin:0 auto;}
3835
+ .product-view .product-shop-info .add-to-links {float:left; clear:none; margin:0;}
3836
+ .product-view .product-shop-info .add-to-links li{float:left; margin:8px 0 0 0px;}
3837
+ .product-tabs {display:none}
3838
+ .product-tabs-container {margin: 0 0 30px;}
3839
+ .product-tabs-container h2.tab-heading{display:block}
3840
+ .product-tabs-content {margin:0}
3841
+ .product-view .box-tags .form-add .input-box {width:167px;}
3842
+ .product-view .box-tags .form-add input.input-text {width:167px;}
3843
+
3844
+ #customer-reviews .form-add .data-table th{ padding:6px;}
3845
+ #customer-reviews .form-add .data-table td{ padding:6px; text-align: center;}
3846
+
3847
+ .main .slider-container {width:300px; margin-left:0px }
3848
+ .main .slider-container h3 {width:190px; }
3849
+ .jcarousel-skin-tango .jcarousel-clip-horizontal,
3850
+ .jcarousel-skin-tango .jcarousel-container-horizontal {width:300px;}
3851
+ .home-main .jcarousel-skin-tango .jcarousel-container-horizontal,
3852
+ .home-main .jcarousel-skin-tango .jcarousel-clip-horizontal { width:300px; }
3853
+ .product-slider-container {width:300px}
3854
+ .product-slider-container h2 {width:200px;}
3855
+
3856
+ .cart .page-title {height:auto;}
3857
+ .cart .page-title .checkout-types {margin:60px 15px 0; float:none;}
3858
+ .cart .title-buttons .checkout-types li {float:none; margin:0; text-align:center;}
3859
+ #shopping-cart-totals-table strong {font-size:20px; padding:0 10px 0 0;}
3860
+ .data-table table, .data-table thead, .data-table tbody, table.data-table td, .data-table tr { display: block; border: 0; text-align: left !important;}
3861
+ .data-table th { display:none;}
3862
+ .data-table td {padding:10px;}
3863
+ .data-table td.td-name h2 {font-size:20px; font-weight:300; }
3864
+ .data-table td.td-image a {text-align:center; }
3865
+ .data-table td.td-image img {width:200px;}
3866
+ .data-table td.td-edit, .data-table .btn-remove {display:none;}
3867
+ .data-table .td-actions .btn-remove, .data-table .td-actions .btn-edit {display:inline-block;}
3868
+ .data-table td.td-price {padding:10px; background:#fafafa;}
3869
+ .data-table td.td-qty {padding:0 10px; background:#fafafa;}
3870
+ .data-table td.td-delete {background:#fafafa; text-align:center !important;}
3871
+ .data-table .td-title {display:inline-block; width:100px; padding:0 10px 0 0; font-weight:bold; }
3872
+ .data-table .td-actions {display:inline; padding:0 5px; }
3873
+ .data-table .button, .data-table .btn-continue {float:none; display:block; margin:0 auto 10px}
3874
+ .product-tabs-content .data-table th { display:block;}
3875
+ #product-review-table {display:table; }
3876
+ #product-review-table thead, #product-review-table tfoot, #product-review-table tbody{display:table-row-group; }
3877
+ #product-review-table tr{display:table-row; }
3878
+ #product-review-table td{display:table-cell; }
3879
+ #product-review-table th{display:table-cell; padding:8px 3px; }
3880
+
3881
+ #checkout-review-table tfoot{}
3882
+ #checkout-review-table tfoot tr{display:table-row; }
3883
+ #checkout-review-table tfoot td{display:table-cell; }
3884
+
3885
+ #toTop {display:none !important;}
3886
+
3887
+ .pager {text-align:center; }
3888
+ .pager .amount {margin:0 0 10px;}
3889
+ .pager .pages, .pager .amount {float:none}
3890
+
3891
+ .products-list .product-image, .products-list .f-left {float:none !important;}
3892
+ .products-list li.item {padding: 0 15px 30px;}
3893
+ .products-list .add-to-links {display:none;}
3894
+ .products-list .price-box {float:none}
3895
+ .products-list .ratings {float:none; margin:5px 0;}
3896
+ .products-list .add-to-links li:first-child span {display:none}
3897
+ .products-list .product-shop {margin:10px 0 0;}
3898
+
3899
+ /* two_columns 4 products per row */
3900
+ .two_columns_4 {}
3901
+ .two_columns_4 li.item {width:252px; margin:0 15px 30px}
3902
+ .two_columns_4 .product-name {font-size:16px}
3903
+ /* two_columns 5 products per row */
3904
+ .col2-left-layout .two_columns_5 { margin:0 auto}
3905
+ .two_columns_5 {}
3906
+ .two_columns_5 li.item {width:252px; margin:0 15px 30px}
3907
+ .two_columns_5 .product-name {font-size:16px}
3908
+
3909
+ /* one_column 5 products per row */
3910
+ .one_column_5 {}
3911
+ .one_column_5 li.item {width:252px; margin:0 15px 30px}
3912
+ .one_column_5 .product-name {font-size:16px}
3913
+ /* one_column 6 products per row */
3914
+ .one_column_6 {}
3915
+ .one_column_6 li.item {width:252px; margin:0 15px 30px}
3916
+ .one_column_6 .product-name {font-size:16px}
3917
+
3918
+ .top-opc {width:300px; margin:0}
3919
+ .top-opc li{margin:0 0 30px 0}
3920
+ .opc {width:300px;}
3921
+ .opc .form-list select {width:126px}
3922
+ .opc .td-label {display:block; float:left; }
3923
+ #checkout-review-submit p {margin:0 20px 0 0;}
3924
+ #checkout-step-login .block-checkout-register, #checkout-step-login .block-checkout-login { width:228px; margin: 20px auto 0 !important; float: none;}
3925
+ #checkout-step-login input.input-text {width:218px;}
3926
+
3927
+ #review-buttons-container {text-align: center}
3928
+ #review-buttons-container button {float:none;}
3929
+
3930
+ #my-orders-table span.title {display:inline-block}
3931
+ #my-orders-table tr {border-bottom:1px solid #e9e9e9 }
3932
+ #my-orders-table tr.last {border:none}
3933
+
3934
+ .form-list li.wide select {width:250px}
3935
+ .form-list li.wide .input-box,
3936
+ .form-list li.wide input.input-text {width:254px}
3937
+
3938
+ .col2-set .col-1, .col2-set .col-2 {float:none; width:100%;}
3939
+ .col2-set address {margin:5px 0;}
3940
+ .buttons-set .back-link {margin:10px 0;}
3941
+ }
3942
+
3943
+ /***** iPhone (landscape) *****/
3944
+ @media only screen and (min-width: 480px) and (max-width: 767px) {
3945
+ .row { margin:0 auto; width:456px; }
3946
+ .row .row { width:auto; display:inline-block; margin:0 -15px; }
3947
+ .grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 { width:426px; margin:0 15px 25px; float:left; display:inline; position:relative }
3948
+
3949
+ ul.links { display:inline;}
3950
+ .links li{ line-height:150%; display:inline; margin-right:15px; }
3951
+ .links li:last-child{ margin-right:0; }
3952
+ .links li.separator {display:none; }
3953
+
3954
+ .col1-layout .col-main {width: 300px; margin:0 0 0 84px;}
3955
+ .col1-layout .col-main .products-grid { margin:0;}
3956
+ .cart .cart-collaterals .grid_4{width:300px; margin:0 15px 25px;}
3957
+
3958
+ .homepage-banners a .content p{display:block;}
3959
+
3960
+
3961
+
3962
+ .main .slider-container {margin-left:0 }
3963
+ .breadcrumbs{ margin-left:84px; }
3964
+
3965
+ .homepage-banners {width:300px !important;}
3966
+ .homepage-banners .grid_6{width:300px;}
3967
+ .homepage-banners a .content p{display:none;}
3968
+ }
3969
+ .jcarousel-next-horizontal, .jcarousel-prev-horizontal { background-size:70px 70px; }
3970
+ button.btn-proceed-checkout span span {background-size:44px 20px; }
3971
+ .header-switch span.current { background-size:7px 4px}
3972
+ #toTop { background-size:56px 112px}
3973
+ .btn-remove, .block-compare .block-content .actions a:before { background-size:15px 15px}
3974
+ .sorter .view-mode .grid { background-size:27px 54px}
3975
+ .sorter .view-mode .list { background-size:27px 54px}
3976
+ .error-msg { background-size:26px 26px}
3977
+ .success-msg { background-size:26px 26px}
3978
+ .note-msg { background-size:26px 26px}
3979
+ .notice-msg { background-size:26px 26px}
3980
+ .breadcrumbs span { background-size:3px 5px}
3981
+ .cart-top > a, .cart-top-title a span.icon { background-size:24px 20px}
3982
+ .compare-top, .compare-top-title a span.icon { background-size:13px 16px}
3983
+ .products-grid .hover .button-container button.button span span em { background-size:24px 19px}
3984
+ .product-view .add-to-cart button.button span span { background-size:41px 20px}
3985
+ .product-view .add-to-links li span.icon { background-size:17px 16px}
3986
+ .product-view .add-to-links li.compare span.icon { background-size:13px 16px}
3987
+ .product-view .add-to-links li.email-friend span.icon { background-size:18px 13px}
3988
+ .search-top, .search-top-container .search-form .search-top-title span.icon { background-size:18px 18px}
3989
+ .data-table .btn-remove2 { background-size:16px 17px}
3990
+ .footer-info ul.twitterList li span.tweet-icon { background-size:13px 10px}
3991
+ .product-prev span, .product-next span { background-size:26px 54px}
3992
+ .rating-box, .rating-box .rating { background-size:11px 20px}
3993
+ .block-layered-price .ui-widget-content .ui-state-default { background-size:19px 18px}
3994
+ .flex-direction-nav a { background-size:154px 77px}
3995
+ .footer-info ul.social li a { background-size:144px 36px}
3996
+ .footer-info .block-control { background-size:70px 70px}
3997
+ .btn-edit { background-size:15px 15px}
3998
+ .data-table .btn-edit2 { background-size:16px 17px}
3999
+
4000
+ .std ul.disc li,
4001
+ #nav li.custom-block div.sub-wrapper>ul>li, #nav li.custom-block div.sub-wrapper ul li,
4002
+ #nav li.custom-block ul li>ul>li,
4003
+ .toolbar-dropdown ul li,
4004
+ .block .block-content li, .block .block-content li.item,
4005
+ .block-layered-nav .block-content dd li,
4006
+ .product-tabs-content ul.disc li { background-size:3px 5px}
4007
+
4008
+ .slider-container .jcarousel-list .button-container button.button span span,
4009
+ .products-grid .button-container button.button span span,
4010
+ .products-list .button-container .btn-add-cart span,
4011
+ .box-up-sell2 .jcarousel-list .button-container button.button span span { background-size:17px 13px}
4012
+
4013
+ .new-label, .sale-label { background-size:364px 182px}
4014
+ .product-view .product-img-box .zoom #handle { background-size:9px 22px}
4015
+ .toolbar-switch .toolbar-title { background-size:29px 14px}
4016
+
4017
+
4018
+ @media only screen and (-Webkit-min-device-pixel-ratio: 1.5),
4019
+ only screen and (-moz-min-device-pixel-ratio: 1.5),
4020
+ only screen and (-o-min-device-pixel-ratio: 3/2),
4021
+ only screen and (min-device-pixel-ratio: 1.5) {
4022
+
4023
+ .block-slider .slides > li,
4024
+ .block-viewed .block-content li,
4025
+ .block-tags .block-content li,
4026
+ .block-bestsellers .block-content li,
4027
+ .block-login .block-content li,
4028
+ .block-reorder .block-content li.item,
4029
+ .block-compare .block-content li.item,
4030
+ .block-slider .flex-control-nav li,
4031
+ .block-poll .block-content li{background:none;}
4032
+
4033
+ .block-compare .block-content .actions a::before, .compare-top-container .details .actions a::before {display:none }
4034
+ .form-list li.wide select {width:200px }
4035
+
4036
+ .footer-info .information ul li:before,
4037
+ #checkout-step-login .block-checkout-register ul.ul li:before,
4038
+ .block-progress dt:before {top:-2px}
4039
+
4040
+ }
4041
+
4042
+ @media only screen and (-Webkit-min-device-pixel-ratio: 1.5) and (max-width: 959px),
4043
+ only screen and (-moz-min-device-pixel-ratio: 1.5) and (max-width: 959px),
4044
+ only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 959px),
4045
+ only screen and (min-device-pixel-ratio: 1.5) and (max-width: 959px){
4046
+ .toolbar-switch .toolbar-title {background-image:none}
4047
+
4048
+ .block-slider .slides > li,
4049
+ .block-viewed .block-content li,
4050
+ .block-tags .block-content li,
4051
+ .block-bestsellers .block-content li,
4052
+ .block-login .block-content li,
4053
+ .block-reorder .block-content li.item,
4054
+ .block-compare .block-content li.item,
4055
+ .block-slider .flex-control-nav li,
4056
+ .block-poll .block-content li{background:none;}
4057
+
4058
+ .block-compare .block-content .actions a::before, .compare-top-container .details .actions a::before {display:none }
4059
+ .form-list li.wide select {width:200px }
4060
+
4061
+ .footer-info .information ul li:before,
4062
+ #checkout-step-login .block-checkout-register ul.ul li:before,
4063
+ .block-progress dt:before {top:-2px}
4064
+ }
4065
+ a{
4066
+ transition: color 600ms ease-in-out;
4067
+ -webkit-transition: color 600ms ease-in-out;
4068
+ -moz-transition: color 600ms ease-in-out;
4069
+ -o-transition: color 600ms ease-in-out;
4070
+ }
4071
+ a:hover{
4072
+ transition: color 10ms ease-in-out;
4073
+ -webkit-transition: color 10ms ease-in-out;
4074
+ -moz-transition: color 10ms ease-in-out;
4075
+ -o-transition: color 10ms ease-in-out;
4076
+ }
4077
+
4078
+ .slider-container .jcarousel-list .btn-cart,
4079
+ .jcarousel-next-horizontal, .jcarousel-prev-horizontal,
4080
+ #toTop,
4081
+ .banners a span,
4082
+ .banners a em,
4083
+ .banner a span,
4084
+ .banner a em,
4085
+ .products-grid .btn-cart,
4086
+ .products-list .btn-cart,
4087
+ .opc .step-title,
4088
+ .product-tabs a,
4089
+ .footer-banners a img, .homepage-banners a img,
4090
+ footer .footer-subscribe button.button span,
4091
+ .quick-view,
4092
+ nav .nav-top-title, .nav-container .nav-top-title,
4093
+ nav .nav-top-title div.icon span, .nav-container .nav-top-title div.icon span,
4094
+ .compare-top{
4095
+ transition: all 400ms ease-in-out;
4096
+ -webkit-transition: all 400ms ease-in-out;
4097
+ -moz-transition: all 400ms ease-in-out;
4098
+ -o-transition: all 400ms ease-in-out;
4099
+ }
4100
+ .jcarousel-next-horizontal:hover, .jcarousel-prev-horizontal:hover{
4101
+ transition: all 400ms ease-in-out;
4102
+ -webkit-transition: all 400ms ease-in-out;
4103
+ -moz-transition: all 400ms ease-in-out;
4104
+ -o-transition: all 400ms ease-in-out;
4105
+ }
4106
+
4107
+ .footer-info .block-control {
4108
+ transition: background-color 400ms ease-in-out;
4109
+ -webkit-transition: background-color 400ms ease-in-out;
4110
+ -moz-transition: background-color 400ms ease-in-out;
4111
+ -o-transition: background-color 400ms ease-in-out;
4112
+ }
4113
+
4114
+ button.button span,
4115
+ .products-list .button-container .btn-add-cart span,
4116
+ .pager .pages li a.next span,
4117
+ .pager .pages li a.previous span,
4118
+ .slideshow-nav a,
4119
+ .header-dropdown ul li a,
4120
+ .cart-top-title a span.icon,
4121
+ .compare-top-title a span.icon,
4122
+ .search-top-container .search-form .search-top-title span.icon,
4123
+ .footer-info ul.social li a,
4124
+ .footer-info ul.twitterList li span.tweet-icon,
4125
+ .search-top, .cart-top > a,
4126
+ .product-view .add-to-links li span.icon,
4127
+ .top-opc li.allow .number,
4128
+ .btn-remove, .btn-edit, .products-grid .hover .button-container button.button span span em {
4129
+ transition: background 200ms ease-in-out;
4130
+ -webkit-transition: background 200ms ease-in-out;
4131
+ -moz-transition: background 200ms ease-in-out;
4132
+ -o-transition: background 200ms ease-in-out;
4133
+ }
4134
+
4135
+ #nav>li>a, #nav ul li a, #nav>li>a>span,
4136
+ #mobile-nav>li>a, #mobile-nav ul li a, #mobile-nav>li>a>span,
4137
+ #nav>li>a, #nav ul li a, #nav>li>a>span {
4138
+ transition: all 600ms ease-in-out;
4139
+ -webkit-transition: all 600ms ease-in-out;
4140
+ -moz-transition: all 600ms ease-in-out;
4141
+ -o-transition: all 600ms ease-in-out;
4142
+ }
4143
+ #nav>li>a:hover, #nav ul li a:hover, #nav>li>a:hover>span,
4144
+ #mobile-nav>li>a:hover, #mobile-nav ul li a:hover, #mobile-nav>li>a:hover>span,
4145
+ #nav>li>a:hover, #nav ul li a:hover, #nav>li>a:hover>span {
4146
+ transition: all 100ms ease-in-out;
4147
+ -webkit-transition: all 100ms ease-in-out;
4148
+ -moz-transition: all 100ms ease-in-out;
4149
+ -o-transition: all 100ms ease-in-out;
4150
+ }
4151
+
4152
+ .products-grid .add-to-links li a:hover span {
4153
+ color:#000;
4154
+ -moz-transform: rotate(180deg);
4155
+ -ms-transform: rotate(180deg);
4156
+ -webkit-transform: rotate(180deg);
4157
+ -o-transform: rotate(180deg);
4158
+ transform: rotate(180deg);
4159
+ }
4160
+ .products-grid .add-to-links li a span,
4161
+ .mobile-nav li.parent > a em,
4162
+ .search-field #search_mini_form .form-search button{
4163
+ transition: all 400ms ease-in-out;
4164
+ -webkit-transition: all 400ms ease-in-out;
4165
+ -moz-transition: all 400ms ease-in-out;
4166
+ -o-transition: all 400ms ease-in-out;
4167
+ }
4168
+ .cms-index-index .col1-layout #home-screen-slider {
4169
+ margin-bottom: 40px !important;
4170
+ }
skin/frontend/Kartparadigm/default/css/kartparadigm_responsive.css ADDED
@@ -0,0 +1,1467 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ /* tablet in landscape mode */
4
+ @media (min-width: 801px) and (max-width: 1024px) {
5
+ .cms-index-index .col2-right-layout .col-main,.cms-index-index .col2-left-layout .col-main {
6
+ width: 630px !important;
7
+ }
8
+ #hslider-next,#hslider-prev{display: none;}
9
+ .search-field #search_mini_form .form-search button{
10
+ margin-left: 138px;
11
+ }
12
+ #tele_category_banners{
13
+ margin-left: 40px !important;
14
+ }
15
+ .cms-index-index .col1-layout .widget-new-products #owl-demo{
16
+ margin-left: 33px !important;
17
+ }
18
+ .cms-index-index .col-right .block-cart{
19
+ padding: 0px !important
20
+ }
21
+ .search-field #nav {
22
+ width: 330px !important;
23
+ }
24
+ .homepage-banner-text{display:none !important}a.slider-buynow{display:none !important}
25
+ .search-field #search {
26
+ width: 125px;
27
+ }
28
+ .search-top-container {
29
+ float: none;
30
+ width: 170px;
31
+ margin-left: 50px;
32
+ }
33
+ .easyzoom--adjacent .easyzoom-flyout{
34
+ display: none !important;
35
+ }
36
+ .box-up-sell .products-grid .btn-cart {
37
+ margin-right: 20% ;
38
+ }
39
+ .catalog-category-view .col1-layout .products-grid {
40
+ margin-left: -3% !important;
41
+ }
42
+
43
+ .catalog-category-view .col1-layout .category-image {
44
+ margin-left: 2% !important;
45
+ }
46
+
47
+ .top-opc{width:960px !important;}
48
+ #checkout-step-login, #checkout-step-billing, #checkout-step-shipping, #checkout-step-shipping_method, #checkout-step-payment, #checkout-step-review {
49
+ width: 650px !important;
50
+ margin-top: 50px;
51
+ }
52
+ #checkout-step-shipping, #checkout-step-shipping_method {
53
+ margin-left: -450px !important;
54
+
55
+ }
56
+ #checkout-step-payment {
57
+ margin-left: -620px !important;
58
+ }
59
+ #checkout-step-review {
60
+ margin-left: -775px !important;
61
+ }
62
+
63
+
64
+ }
65
+
66
+ /**********************************************************************************************/
67
+ /**********************************small tablets(landscape) **********************************/
68
+ @media (min-width:800px) and (max-width:900px) {
69
+ header h1.logo {
70
+ /*padding-bottom: 40px !important;*/
71
+ }
72
+ /*header styles*/
73
+ #headdemo ,.search-field {
74
+ height: auto !important;
75
+ }
76
+ #desktop-lang{display: none !important;}
77
+ #mobile-lang{display: block !important;}
78
+ #desktop-currency{display: none !important;}
79
+ #mobile-currency{display: block !important;}
80
+ #mini-toolbar{display: block !important;}
81
+ #desktop-toolbar{display: none !important;}
82
+ .homepage-banner-text{display:none !important}a.slider-buynow{display:none !important}
83
+ .easyzoom--adjacent .easyzoom-flyout{
84
+ display: none !important;
85
+ }
86
+ .top-dropdowns {
87
+ position: relative !important;
88
+ width: 46% !important;
89
+ right: -8% !important;
90
+ top: 75% !important;
91
+ }
92
+ header .grid_12 {
93
+ margin-bottom: 5px !important;
94
+ }
95
+ .compare-top-title {
96
+ width: 120px !important;
97
+ }
98
+ .cart-top-title {
99
+ width: 110px !important;
100
+ }
101
+ .cms-index-index .top-dropdowns {
102
+ position: relative !important;
103
+ width: 46% !important;
104
+ right: -8% !important;
105
+ top: 50% !important;
106
+ }
107
+ .js .slicknav_menu {
108
+
109
+ margin-left: 35% !important;
110
+ }
111
+
112
+
113
+ /*header styles*/
114
+
115
+
116
+
117
+ .header-container .links {
118
+ width: 475px;
119
+ }
120
+ /*home page */
121
+ #home-screen-slider {
122
+ margin-bottom: 40px !important;
123
+ }
124
+ .cms-index-index #tele_category_banners{
125
+ margin-left: -10px !important;
126
+ }
127
+ .cms-index-index .col2-right-layout #tele_category_banners{
128
+ margin-left: 40px !important;
129
+ }
130
+ .cms-index-index .col-right .block-cart{
131
+ padding: 0px !important
132
+ }
133
+ .cms-index-index .col-right .block-cart{
134
+ padding: 0px !important
135
+ }
136
+ #hslider-next,#hslider-prev{display: none;}
137
+
138
+ .cms-index-index .col2-right-layout .col-main {
139
+ width: 750px !important;
140
+ padding: 0px !important;
141
+ margin: 0px !important;
142
+ }
143
+ .cms-index-index .col2-left-layout .col-main {
144
+ width: 750px !important;
145
+ padding: 0px !important;
146
+ margin: 0px !important;
147
+ }
148
+ .col-main .widget-new-products {
149
+ margin-left: 100px;
150
+ }
151
+ .col-right {
152
+ float: right;
153
+ margin-right: 50px;
154
+ }
155
+ .cms-index-index .col-left {
156
+ width: 600px !important;
157
+ }
158
+ .cms-index-index .col2-right-layout .col-right {
159
+ width: 625px !important;
160
+ margin-right: 75px !important;
161
+ }
162
+ .block-tags .block-content .actions {
163
+ width: 225px !important;
164
+ box-shadow: none !important;
165
+ }
166
+ .cms-index-index .col2-left-layout .col-main .widget-new-products {
167
+ margin-left: 55px !important;
168
+ }
169
+ .footer-info{
170
+ text-align: center !important;
171
+ }
172
+ .cms-index-index .block-cart {
173
+ min-height: 150px !important;
174
+ box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
175
+ }
176
+ .catalog-category-view .block-cart {
177
+ min-height: 125px !important;
178
+ box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
179
+ }
180
+ .cms-index-index .topcart-title {
181
+ border: 0px none;
182
+ padding: 24px 35px 27px;
183
+ margin: 0px;
184
+ color: rgba(0, 0, 0, 0.75);
185
+ text-align: center;
186
+ }
187
+ .cms-index-index .topcart-title strong{
188
+ font-size: 24px;
189
+ font-weight: normal !important;
190
+ }
191
+ .breadcrumbs {
192
+ margin-left: 20px;
193
+ }
194
+ /*home page end*/
195
+ /*product list start*/
196
+ .category-products {
197
+ margin-left: 8% !important;
198
+ }
199
+ .category-image {
200
+ margin-left: 10px;
201
+ }
202
+ .catalog-category-view .col2-left-layout .category-image {
203
+ margin-left: -25px !important;
204
+ }
205
+ .catalog-category-view .col2-right-layout .category-image {
206
+ margin-left: 4% !important;
207
+ }
208
+ .catalog-category-view .col1-layout .category-image {
209
+ margin-left: 3.5% !important;
210
+ }
211
+ .catalog-category-view .col1-layout .col-main a img {
212
+ margin-left: 3.5% ;
213
+ }
214
+ .catalog-category-view .col2-right-layout .products-grid {
215
+ margin-left: 7% !important;
216
+ }
217
+ .catalog-category-view .col1-layout .products-grid {
218
+ margin-left: 6% !important;
219
+ }
220
+ .catalog-category-view .col1-layout #mini-toolbar{margin-left: 8% !important;}
221
+ .catalog-category-view .col2-right-layout #mini-toolbar{margin-left: 9% !important;}
222
+ .catalog-category-view .col2-left-layout .col-left{
223
+ margin: 0px 0px 0px 100px !important;
224
+ }
225
+ .catalog-category-view .col2-right-layout .col-right{
226
+ margin-right: 85px !important;
227
+ }
228
+ .links-hover{display: none !important;}
229
+ /*product list page styles end*/
230
+ /*product view start*/
231
+ .product-tabs-container .slider-container {
232
+
233
+ margin-left: 0px !important;
234
+ margin-left: 0px !important;
235
+ padding-right: 10% !important;
236
+ padding-left: 12% !important;
237
+ }
238
+
239
+ .col-main, .col-main-left, .col-main-right {
240
+ width: 750px !important;
241
+ padding: 0px !important;
242
+ margin: 0px !important;
243
+ }
244
+ .product-shop-info,.product-tabs,div.tabContent ,#product-options-wrapper,.product-options-bottom{
245
+ margin-left: 10% !important;
246
+ margin-right: 10% !important;
247
+ }
248
+ .product-view .box-up-sell {
249
+ /*margin-left: 15% !important;*/
250
+ }
251
+ .product-view .box-up-sell .jcarousel-next-horizontal,.product-view .box-up-sell .jcarousel-prev-horizontal{
252
+ background-color: #FFFFFF;
253
+ }
254
+ .product-view .box-up-sell .jcarousel-next-horizontal:hover,.product-view .box-up-sell .jcarousel-prev-horizontal:hover{
255
+ background-color: #393431;
256
+ }
257
+ .box-up-sell h2 {
258
+ font-size: 16px !important;
259
+ margin-bottom: 35px !important;
260
+ }
261
+ .box-up-sell .products-grid .btn-cart {
262
+ margin-right: 20% ;
263
+ }
264
+ .product-view .product-shop-info .add-to-links li {
265
+ margin: 8px 50px 0px 0px !important;
266
+
267
+ }
268
+
269
+ /*product view*/
270
+ /*cart page */
271
+ .main .cart {
272
+ margin-top: 5% !important;
273
+ margin-left: 10% !important;
274
+ margin-right: 10% !important;
275
+ }
276
+ .cart .page-title{
277
+ padding: 10px !important;
278
+ padding-bottom: 25px !important;
279
+ }
280
+ #shopping-cart-table{
281
+ margin: 0px 10px !important;
282
+ }
283
+ .data-table td a.product-image img {
284
+ width: 150px;
285
+ height: 150px;
286
+ }
287
+ .cart .totals {
288
+ float: none !important;
289
+ }
290
+ /*cart page */
291
+ /*checkout page*/
292
+ #checkout-step-login, #checkout-step-billing, #checkout-step-shipping, #checkout-step-shipping_method, #checkout-step-payment, #checkout-step-review {
293
+ width: 750px !important;
294
+ margin-top: 50px;
295
+ }
296
+ #checkout-step-login {
297
+ margin-left: -112px !important;
298
+ }
299
+ #checkout-step-billing {
300
+ width: 500px !important;
301
+ margin-left: -200px !important;
302
+ }
303
+ .checkout-onepage-index .col-right {
304
+ padding: 0px;
305
+ position: relative !important;
306
+ top: 0px !important;
307
+ right: 0px !important;
308
+ }
309
+ #checkout-step-shipping {
310
+ width: 500px !important;
311
+ margin-left: -255px !important;
312
+ }
313
+ #checkout-step-shipping_method{
314
+ width: 500px !important;
315
+ margin-left: 0px !important;
316
+ }
317
+
318
+ #checkout-step-payment {
319
+ width: 500px !important;
320
+ margin-left: -200px !important;
321
+ }
322
+ #checkout-step-review {
323
+ margin-left: -385px !important;
324
+ margin-bottom: 65px !important;
325
+ width: 500px !important;
326
+ }
327
+ .checkout-onepage-index .page-title h1 {
328
+ text-transform: uppercase;
329
+ font-size: 20px !important;
330
+ margin-top: 10px !important;
331
+ margin-left: 120px !important;
332
+ }
333
+ .top-opc .allow .number,.top-opc li.allow h2{
334
+ display: block !important;
335
+ }
336
+ .top-opc .number,.top-opc li h2{
337
+ display: none !important;
338
+ }
339
+ .checkout-onepage-index .col2-right-layout .col-main{
340
+ min-height: 250px !important;
341
+ }
342
+ .top-opc {
343
+ margin-left: 16% !important;
344
+ }
345
+ .checkout-onepage-success .page-title h1, .page-title h2,.checkout-cart-index .page-title h1, .page-title h2{
346
+ margin-top: 20px;
347
+ font-size: 18px;
348
+ color: #000;
349
+ }
350
+ /*checkout page*/
351
+ /*login and registration */
352
+ .customer-account-login #next {
353
+ top: 435px !important;
354
+ left: 42% !important;
355
+ }
356
+ .customer-account-login #prev{
357
+ top: 435px !important;
358
+ left: 2% !important;
359
+
360
+ }
361
+ .customer-account-login .col-main #owl-demo{
362
+ margin-left: 25px !important;
363
+ }
364
+ .customer-account-login .search-field #search_mini_form .form-search button{
365
+ margin: -29px 0px 0px 210px !important;
366
+ }
367
+ .customer-account-login .search-field #search {
368
+ width: 240px !important;
369
+ }
370
+ .customer-account-create .search-field #search_mini_form .form-search button {
371
+ margin: -29px 0px 0px 210px !important;
372
+ }
373
+
374
+ .customer-account-create .search-field #search {
375
+ width: 240px !important;
376
+ }
377
+ .customer-account-create .block-login {
378
+ margin-left: 29% !important;
379
+ }
380
+ /*login and registration */
381
+
382
+
383
+
384
+ }
385
+ /******************************************************************************************/
386
+ /* ******************************For large tablet view (potrait)***************************/
387
+ @media (min-width: 768px) and (max-width: 799px) {
388
+
389
+ header h1.logo {
390
+ /*padding-bottom: 40px !important;*/
391
+ }
392
+ /*header styles*/
393
+ #headdemo ,.search-field {
394
+ height: auto !important;
395
+ }
396
+ #desktop-lang{display: none !important;}
397
+ #mobile-lang{display: block !important;}
398
+ #desktop-currency{display: none !important;}
399
+ #mobile-currency{display: block !important;}
400
+ #mini-toolbar{display: block !important;}
401
+ #desktop-toolbar{display: none !important;}
402
+ .homepage-banner-text{display:none !important}a.slider-buynow{display:none !important}
403
+ .easyzoom--adjacent .easyzoom-flyout{
404
+ display: none !important;
405
+ }
406
+ header .grid_12 {
407
+ margin-bottom: 5px !important;
408
+ }
409
+ .top-dropdowns {
410
+ position: relative !important;
411
+ width: 46% !important;
412
+ right: -7% !important;
413
+ top: 75% !important;
414
+ }
415
+ .compare-top-title {
416
+ width: 120px !important;
417
+ }
418
+ .cart-top-title {
419
+ width: 110px !important;
420
+ }
421
+ .cms-index-index .top-dropdowns {
422
+ position: relative !important;
423
+ width: 46% !important;
424
+ right: -7% !important;
425
+ top: 50% !important;
426
+ }
427
+ .js .slicknav_menu {
428
+
429
+ margin-left: 34% !important;
430
+ }
431
+
432
+
433
+ /*header styles*/
434
+
435
+
436
+
437
+ .header-container .links {
438
+ width: 475px;
439
+ }
440
+ /*home page */
441
+ .cms-index-index .col-right .block-cart{
442
+ padding: 0px !important
443
+ }
444
+ #hslider-next,#hslider-prev{display: none;}
445
+ .cms-index-index .col2-right-layout .col-main {
446
+ width: 750px !important;
447
+ padding: 0px !important;
448
+ margin: 0px !important;
449
+ }
450
+ #home-screen-slider {
451
+ margin-bottom: 40px !important;
452
+ }
453
+ #tele_category_banners{
454
+ margin-left: 15px !important;
455
+ }
456
+ .cms-index-index .col2-left-layout .col-main {
457
+ width: 750px !important;
458
+ padding: 0px !important;
459
+ margin: 0px !important;
460
+ }
461
+ .col-main .widget-new-products {
462
+ margin-left: 100px;
463
+ }
464
+ .col-right {
465
+ float: right;
466
+ margin-right: 50px;
467
+ }
468
+ .cms-index-index .col-left {
469
+ width: 600px !important;
470
+ }
471
+ .cms-index-index .col-right {
472
+ width: 625px !important;
473
+ }
474
+ .block-tags .block-content .actions {
475
+ width: 225px !important;
476
+ box-shadow: none !important;
477
+ }
478
+ .cms-index-index .col2-left-layout .col-main .widget-new-products {
479
+ margin-left: 55px !important;
480
+ }
481
+ .footer-info{
482
+ text-align: center !important;
483
+ }
484
+ .cms-index-index .block-cart {
485
+ min-height: 150px !important;
486
+ box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
487
+ }
488
+ .catalog-category-view .block-cart {
489
+ min-height: 125px !important;
490
+ box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
491
+ }
492
+ .cms-index-index .topcart-title {
493
+ border: 0px none;
494
+ padding: 24px 35px 27px;
495
+ margin: 0px;
496
+ color: rgba(0, 0, 0, 0.75);
497
+ text-align: center;
498
+ }
499
+ .cms-index-index .topcart-title strong{
500
+ font-size: 24px;
501
+ font-weight: normal !important;
502
+ }
503
+ .breadcrumbs {
504
+ margin-left: 20px;
505
+ }
506
+ /*home page end*/
507
+ /*product list start*/
508
+ .category-products {
509
+ margin-left: 8% !important;
510
+ }
511
+ .catalog-category-view .col2-right-layout .category-products {
512
+ margin-left: 12% !important;
513
+ }
514
+ .category-image {
515
+ margin-left: 10px;
516
+ }
517
+ .catalog-category-view .col2-left-layout .category-image {
518
+ margin-left: -60px !important;
519
+ }
520
+ .catalog-category-view .col2-right-layout .col-right{
521
+ margin-right: 85px !important;
522
+ }
523
+ .catalog-category-view .col1-layout .col-main a img {
524
+ margin-left: 1% !important;
525
+ }
526
+ .catalog-category-view .col1-layout .col-main .sort-by a img {
527
+ margin-left: 0% !important;
528
+ }
529
+ .links-hover{display: none !important;}
530
+ /* page styles end*/
531
+ /*product view start*/
532
+ .product-tabs-container .slider-container {
533
+
534
+ margin-left: 0px !important;
535
+ margin-left: 0px !important;
536
+ padding-right: 10% !important;
537
+ padding-left: 12% !important;
538
+ }
539
+
540
+ .col-main, .col-main-left, .col-main-right {
541
+ width: 750px !important;
542
+ padding: 0px !important;
543
+ margin: 0px !important;
544
+ }
545
+ .product-shop-info,.product-tabs,div.tabContent ,#product-options-wrapper,.product-options-bottom{
546
+ margin-left: 10% !important;
547
+ margin-right: 10% !important;
548
+ }
549
+ .product-view .box-up-sell {
550
+ /*margin-left: 15% !important;*/
551
+ }
552
+ .product-view .box-up-sell .jcarousel-next-horizontal,.product-view .box-up-sell .jcarousel-prev-horizontal{
553
+ background-color: #FFFFFF;
554
+ }
555
+ .product-view .box-up-sell .jcarousel-next-horizontal:hover,.product-view .box-up-sell .jcarousel-prev-horizontal:hover{
556
+ background-color: #393431;
557
+ }
558
+ .box-up-sell h2 {
559
+ font-size: 16px !important;
560
+ margin-bottom: 35px !important;
561
+ }
562
+ .box-up-sell .products-grid .btn-cart {
563
+ margin-right: 20% ;
564
+ }
565
+ .product-view .product-shop-info .add-to-links li {
566
+ margin: 8px 50px 0px 0px !important;
567
+
568
+ }
569
+
570
+ /*product view*/
571
+ /*cart page */
572
+ .main .cart {
573
+ margin-top: 5% !important;
574
+ margin-left: 10% !important;
575
+ margin-right: 10% !important;
576
+ }
577
+ .cart .page-title{
578
+ padding: 10px !important;
579
+ padding-bottom: 25px !important;
580
+ }
581
+ #shopping-cart-table{
582
+ margin: 0px 10px !important;
583
+ }
584
+ .data-table td a.product-image img {
585
+ width: 150px;
586
+ height: 150px;
587
+ }
588
+ .cart .totals {
589
+ float: none !important;
590
+ }
591
+ /*cart page */
592
+ /*checkout page*/
593
+ #checkout-step-login, #checkout-step-billing, #checkout-step-shipping, #checkout-step-shipping_method, #checkout-step-payment, #checkout-step-review {
594
+ width: 750px !important;
595
+ margin-top: 50px;
596
+ }
597
+ #checkout-step-login {
598
+ margin-left: -112px !important;
599
+ }
600
+ #checkout-step-billing {
601
+ width: 500px !important;
602
+ margin-left: -200px !important;
603
+ }
604
+ .checkout-onepage-index .col-right {
605
+ padding: 0px;
606
+ position: relative !important;
607
+ top: 0px !important;
608
+ right: 0px !important;
609
+ }
610
+ #checkout-step-shipping {
611
+ width: 500px !important;
612
+ margin-left: -255px !important;
613
+ }
614
+ #checkout-step-shipping_method{
615
+ width: 500px !important;
616
+ margin-left: 0px !important;
617
+ }
618
+
619
+ #checkout-step-payment {
620
+ width: 500px !important;
621
+ margin-left: -200px !important;
622
+ }
623
+ #checkout-step-review {
624
+ margin-left: -385px !important;
625
+ margin-bottom: 65px !important;
626
+ width: 500px !important;
627
+ }
628
+ .checkout-onepage-index .page-title h1 {
629
+ text-transform: uppercase;
630
+ font-size: 20px !important;
631
+ margin-top: 10px !important;
632
+ margin-left: 120px !important;
633
+ }
634
+ .top-opc .allow .number,.top-opc li.allow h2{
635
+ display: block !important;
636
+ }
637
+ .top-opc .number,.top-opc li h2{
638
+ display: none !important;
639
+ }
640
+ .checkout-onepage-index .col2-right-layout .col-main{
641
+ min-height: 250px !important;
642
+ }
643
+ .top-opc {
644
+ margin-left: 16% !important;
645
+ }
646
+ .checkout-onepage-success .page-title h1, .page-title h2,.checkout-cart-index .page-title h1, .page-title h2{
647
+ margin-top: 20px;
648
+ font-size: 18px;
649
+ color: #000;
650
+ }
651
+ /*checkout page*/
652
+ /*login and registration */
653
+ .customer-account-login #next {
654
+ top: 435px !important;
655
+ left: 42% !important;
656
+ }
657
+ .customer-account-login #prev{
658
+ top: 435px !important;
659
+ left: 2% !important;
660
+
661
+ }
662
+ .customer-account-login .col-main #owl-demo{
663
+ margin-left: 25px !important;
664
+ }
665
+ .customer-account-login .search-field #search_mini_form .form-search button{
666
+ margin: -29px 0px 0px 210px !important;
667
+ }
668
+ .customer-account-login .search-field #search {
669
+ width: 240px !important;
670
+ }
671
+ .customer-account-create .search-field #search_mini_form .form-search button {
672
+ margin: -29px 0px 0px 210px !important;
673
+ }
674
+
675
+ .customer-account-create .search-field #search {
676
+ width: 240px !important;
677
+ }
678
+ .customer-account-create .block-login {
679
+ margin-left: 29% !important;
680
+ }
681
+ /*login and registration */
682
+
683
+ }
684
+
685
+ /**********************************************************************************************/
686
+ /**********************************small tablets(potrait) **************************************/
687
+ @media (min-width:569px) and (max-width:600px) {
688
+ /*header styles*/
689
+ #headdemo ,.search-field {
690
+ height: auto !important;
691
+ }
692
+ .top-dropdowns {
693
+ position: relative !important;
694
+ right: -3% !important;
695
+ top: 80% !important;
696
+ width: 60% !important;
697
+ }
698
+ header .grid_12 {
699
+ margin-bottom: 5px !important;
700
+ }
701
+ .js .slicknav_menu {
702
+ margin-left: 22.5% !important;
703
+ }
704
+
705
+ .cms-index-index .col1-layout .widget-new-products #owl-demo{
706
+ margin-left: 10px !important;
707
+ }
708
+ .lang-currency-container{
709
+ float: right !important;
710
+ }
711
+ #desktop-lang{display: none !important;}
712
+ #mobile-lang{display: block !important;}
713
+ #desktop-currency{display: none !important;}
714
+ #mobile-currency{display: block !important;}
715
+ #mini-toolbar{display: block !important;}
716
+ #desktop-toolbar{display: none !important;}
717
+ .homepage-banner-text{display:none !important}a.slider-buynow{display:none !important}
718
+ .easyzoom--adjacent .easyzoom-flyout{
719
+ display: none !important;
720
+ }
721
+ #tele_category_banners{
722
+ display: none !important;
723
+ }
724
+ .compare-top-title {
725
+ width: 120px !important;
726
+ }
727
+
728
+ /*header styles*/
729
+ .cms-index-index .col-right .block-cart{
730
+ padding: 0px !important
731
+ }
732
+ .cms-index-index .col2-right-layout .col-main {
733
+ width: 320px !important;
734
+ padding: 0px !important;
735
+ min-height: 300px !important;
736
+ }
737
+ .cms-index-index .col2-left-layout .col-main {
738
+ width: 320px !important;
739
+ padding: 0px !important;
740
+ min-height: 300px !important;
741
+ }
742
+ .cms-index-index .col-left, .cms-index-index .col-right {
743
+ padding: 0px 0px 0px !important;
744
+ float: none !important;
745
+ }
746
+ .cms-index-index .col-right {
747
+ margin-left: 25% !important;
748
+ }
749
+ .col-right {
750
+ width: 310px;
751
+ }
752
+ .col-left {
753
+ width: 310px !important;
754
+ }
755
+
756
+ .block-tags .block-content .actions {
757
+ width: 225px !important;
758
+ box-shadow: none !important;
759
+ }
760
+ #slider-demo .item img{
761
+ height: auto !important;
762
+ }
763
+ #hslider-prev,#hslider-next{
764
+ display: none !important;
765
+ }
766
+ #home-screen-slider{
767
+ height: auto !important;
768
+ }
769
+ .footer-info .block-control {
770
+ display: none !important;
771
+ }
772
+ .footer-info .block-content {
773
+ display: block !important;
774
+ }
775
+ .footer-info{
776
+ text-align: center !important;
777
+ }
778
+ .breadcrumbs {
779
+ margin-left: 20px;
780
+ }
781
+ .category-image {
782
+ margin-left: 0px;
783
+ }
784
+ /*list page styles start*/
785
+ .links-hover{display: none !important;}
786
+ .catalog-category-view .col2-left-layout #mini-toolbar{margin-left: 25px !important;}
787
+ /*list page styles end*/
788
+ /*product view start*/
789
+ .product-tabs-container .slider-container {
790
+
791
+ margin-left: 0px !important;
792
+ margin-left: 0px !important;
793
+ padding-right: 22% !important;
794
+ padding-left: 12% !important;
795
+ }
796
+
797
+ .col-main, .col-main-left, .col-main-right {
798
+ width: 320px !important;
799
+ padding: 0px !important;
800
+ margin: 0px 0px 0px 140px !important;
801
+ }
802
+ .product-shop-info,.product-tabs,div.tabContent ,#product-options-wrapper,.product-options-bottom{
803
+ margin-left: 5% !important;
804
+ margin-right: 5% !important;
805
+ }
806
+ .product-view .box-up-sell {
807
+ margin-left: 15% !important;
808
+ }
809
+ .product-view .box-up-sell .jcarousel-next-horizontal,.product-view .box-up-sell .jcarousel-prev-horizontal{
810
+ background-color: #FFFFFF;
811
+ }
812
+ .product-view .box-up-sell .jcarousel-next-horizontal:hover,.product-view .box-up-sell .jcarousel-prev-horizontal:hover{
813
+ background-color: #393431;
814
+ }
815
+
816
+ .product-view .box-up-sell h2 {
817
+ font-size: 16px !important;
818
+ margin-bottom: 35px !important;
819
+ }
820
+ #image {
821
+ width: 252px !important;
822
+ height: 252px !important;
823
+ }
824
+ .product-view .products-grid {
825
+ width: 275px !important;
826
+ }
827
+ .product-tabs-container .slider-container {
828
+ margin-left: 0px !important;
829
+ padding-right: 0% !important;
830
+
831
+ }
832
+ .product-view .box-up-sell {
833
+ margin-left: 5% !important;
834
+ }
835
+ .box-up-sell h2 {
836
+ font-size: 16px !important;
837
+ margin-bottom: 35px !important;
838
+ }
839
+ .box-up-sell .products-grid .btn-cart {
840
+ margin-right: 20% ;
841
+ }
842
+ /*product view*/
843
+ /*cart page */
844
+ .main .cart {
845
+ margin-top: 5% !important;
846
+ margin-left: 2% !important;
847
+ margin-right: 2% !important;
848
+ }
849
+ .cart .page-title{
850
+ padding: 10px !important;
851
+ padding-bottom: 25px !important;
852
+ }
853
+ #shopping-cart-table{
854
+ margin: 0px 10px !important;
855
+ }
856
+ .data-table td a.product-image img {
857
+ width: 150px;
858
+ height: 150px;
859
+ }
860
+ .cart .totals {
861
+ float: none !important;
862
+ }
863
+ .cart .page-title .checkout-types {
864
+ margin: 25px 15px 0px !important;
865
+ float: none;
866
+ }
867
+ /*cart page */
868
+ /*checkout page*/
869
+ #checkout-step-login, #checkout-step-billing, #checkout-step-shipping, #checkout-step-shipping_method, #checkout-step-payment, #checkout-step-review {
870
+ width: 320px !important;
871
+ margin-top: 50px;
872
+ }
873
+ #checkout-step-billing {
874
+ width: 275px !important;
875
+ margin-left: -149px !important;
876
+ }
877
+ .checkout-onepage-index .col-right {
878
+ padding: 0px;
879
+ position: relative !important;
880
+ top: 0px !important;
881
+ right: 0px !important;
882
+ }
883
+ #checkout-step-shipping, #checkout-step-shipping_method {
884
+ width: 265px !important;
885
+ margin-left: -145px !important;
886
+ }
887
+ #checkout-step-payment {
888
+ width: 265px !important;
889
+ margin-left: 5px !important;
890
+ }
891
+ #checkout-step-review {
892
+ margin-left: -140px !important;
893
+ margin-bottom: 65px !important;
894
+ width: 260px !important;
895
+ }
896
+ .checkout-onepage-index .page-title h1 {
897
+ text-transform: uppercase;
898
+ font-size: 20px !important;
899
+ margin-top: 10px !important;
900
+ }
901
+ .top-opc .allow .number,.top-opc li.allow h2{
902
+ display: block !important;
903
+ }
904
+ .top-opc .number,.top-opc li h2{
905
+ display: none !important;
906
+ }
907
+ .checkout-onepage-index .col2-right-layout .col-main{
908
+ min-height: 250px !important;
909
+ }
910
+ .checkout-onepage-success .page-title h1, .page-title h2,.checkout-cart-index .page-title h1, .page-title h2{
911
+ margin-top: 20px;
912
+ font-size: 18px;
913
+ color: #000;
914
+ }
915
+ /*checkout page*/
916
+ /*login and registration */
917
+ .customer-account-login #next {
918
+ top: 435px !important;
919
+ left: 40% !important;
920
+ }
921
+ .customer-account-login #prev{
922
+ top: 435px !important;
923
+ left: 10% !important;
924
+
925
+ }
926
+ .customer-account-login .col-main{
927
+ margin: 0px !important;
928
+ margin-left: 75px !important;
929
+ }
930
+ .customer-account-login .col-main #owl-demo{
931
+ margin-left: 0px !important;
932
+ }
933
+ .customer-account-login .search-field #search_mini_form .form-search button{
934
+ margin: -29px 0px 0px 210px !important;
935
+ }
936
+ .customer-account-login .search-field #search {
937
+ width: 240px !important;
938
+ }
939
+ .customer-account-create .search-field #search_mini_form .form-search button {
940
+ margin: -29px 0px 0px 210px !important;
941
+ }
942
+
943
+ .customer-account-create .search-field #search {
944
+ width: 240px !important;
945
+ }
946
+ .customer-account-create .block-login {
947
+ margin-left: -45px !important;
948
+ }
949
+ /*login and registration */
950
+
951
+ }
952
+ /************************************************************************************************/
953
+ /************************** Smartphones (landscape) ***************************************** */
954
+ @media (min-width : 321px) and (max-width : 568px) {
955
+
956
+
957
+ /*header styles*/
958
+ #headdemo ,.search-field {
959
+ height: auto !important;
960
+ }
961
+
962
+ .lang-currency-container{
963
+ float: right !important;
964
+ }
965
+ header .grid_12 {
966
+ margin-bottom: 5px !important;
967
+ }
968
+ .cms-index-index #tele_category_banners{
969
+ display: none !important;
970
+ }
971
+ #desktop-lang{display: none !important;}
972
+ #mobile-lang{display: block !important;}
973
+ #desktop-currency{display: none !important;}
974
+ #mobile-currency{display: block !important;}
975
+ #mini-toolbar{display: block !important;}
976
+ #desktop-toolbar{display: none !important;}
977
+ .homepage-banner-text{display:none !important}a.slider-buynow{display:none !important}
978
+ .easyzoom--adjacent .easyzoom-flyout{
979
+ display: none !important;
980
+ }
981
+ .compare-top-title {
982
+ width: 120px !important;
983
+ }
984
+ .js .slicknav_menu {
985
+ margin-left: 22.7% !important;
986
+ }
987
+ .top-dropdowns {
988
+ position: relative !important;
989
+ right: -2% !important;
990
+ top: 80% !important;
991
+ width: 60% !important;
992
+ }
993
+ /*header styles*/
994
+
995
+ /*home page*/
996
+ .cms-index-index .col-right .block-cart{
997
+ padding: 0px !important
998
+ }
999
+ .cms-index-index .col2-right-layout .col-main {
1000
+ width: 320px !important;
1001
+ padding: 0px !important;
1002
+ min-height: 300px !important;
1003
+ }
1004
+ .cms-index-index .col2-left-layout .col-main {
1005
+ width: 320px !important;
1006
+ padding: 0px !important;
1007
+ min-height: 300px !important;
1008
+ }
1009
+ .cms-index-index .col-left, .cms-index-index .col-right {
1010
+ padding: 0px 0px 0px !important;
1011
+ float: none !important;
1012
+ }
1013
+ .cms-index-index .col-right {
1014
+ margin-left: 25% !important;
1015
+ }
1016
+ .col-right {
1017
+ width: 310px;
1018
+ }
1019
+ .col-left {
1020
+ width: 310px !important;
1021
+ }
1022
+
1023
+ .block-tags .block-content .actions {
1024
+ width: 225px !important;
1025
+ box-shadow: none !important;
1026
+ }
1027
+ #slider-demo .item img{
1028
+ height: auto !important;
1029
+ }
1030
+ #hslider-prev,#hslider-next{
1031
+ display: none !important;
1032
+ }
1033
+ #home-screen-slider{
1034
+ height: auto !important;
1035
+ }
1036
+ .footer-info .block-control {
1037
+ display: none !important;
1038
+ }
1039
+ .footer-info .block-content {
1040
+ display: block !important;
1041
+ }
1042
+ .footer-info{
1043
+ text-align: center !important;
1044
+ }
1045
+ .breadcrumbs {
1046
+ margin-left: 20px;
1047
+ }
1048
+ .category-image {
1049
+ margin-left: 0px;
1050
+ }
1051
+ /*list page styles start*/
1052
+ .links-hover{display: none !important;}
1053
+ .catalog-category-view .col2-right-layout .col-main {
1054
+ margin: 0px auto !important;
1055
+ }
1056
+ /*list page styles end*/
1057
+ /*product view start*/
1058
+ .product-tabs-container .slider-container {
1059
+
1060
+ margin-left: 0px !important;
1061
+ margin-left: 0px !important;
1062
+ padding-right: 22% !important;
1063
+ padding-left: 12% !important;
1064
+ }
1065
+
1066
+ .col-main, .col-main-left, .col-main-right {
1067
+ width: 320px !important;
1068
+ padding: 0px !important;
1069
+ margin: 0px 0px 0px 140px !important;
1070
+ }
1071
+ .product-shop-info,.product-tabs,div.tabContent ,#product-options-wrapper,.product-options-bottom{
1072
+ margin-left: 5% !important;
1073
+ margin-right: 5% !important;
1074
+ }
1075
+ .product-view .box-up-sell {
1076
+ margin-left: 15% !important;
1077
+ }
1078
+ .product-view .box-up-sell .jcarousel-next-horizontal,.product-view .box-up-sell .jcarousel-prev-horizontal{
1079
+ background-color: #FFFFFF;
1080
+ }
1081
+ .product-view .box-up-sell .jcarousel-next-horizontal:hover,.product-view .box-up-sell .jcarousel-prev-horizontal:hover{
1082
+ background-color: #393431;
1083
+ }
1084
+
1085
+ .product-view .box-up-sell h2 {
1086
+ font-size: 16px !important;
1087
+ margin-bottom: 35px !important;
1088
+ }
1089
+ #image {
1090
+ width: 252px !important;
1091
+ height: 252px !important;
1092
+ }
1093
+ .product-view .products-grid {
1094
+ width: 275px !important;
1095
+ }
1096
+ .product-tabs-container .slider-container {
1097
+ margin-left: 0px !important;
1098
+ padding-right: 0% !important;
1099
+
1100
+ }
1101
+ .product-view .box-up-sell {
1102
+ margin-left: 5% !important;
1103
+ }
1104
+ .box-up-sell h2 {
1105
+ font-size: 16px !important;
1106
+ margin-bottom: 35px !important;
1107
+ }
1108
+ .box-up-sell .products-grid .btn-cart {
1109
+ margin-right: 20% ;
1110
+ }
1111
+ /*product view*/
1112
+ /*cart page */
1113
+ .main .cart {
1114
+ margin-top: 5% !important;
1115
+ margin-left: 2% !important;
1116
+ margin-right: 2% !important;
1117
+ }
1118
+ .cart .page-title{
1119
+ padding: 10px !important;
1120
+ padding-bottom: 25px !important;
1121
+ }
1122
+ #shopping-cart-table{
1123
+ margin: 0px 10px !important;
1124
+ }
1125
+ .data-table td a.product-image img {
1126
+ width: 150px;
1127
+ height: 150px;
1128
+ }
1129
+ .cart .totals {
1130
+ float: none !important;
1131
+ }
1132
+ .cart .page-title .checkout-types {
1133
+ margin: 25px 15px 0px !important;
1134
+ float: none;
1135
+ }
1136
+ /*cart page */
1137
+ /*checkout page*/
1138
+ #checkout-step-login, #checkout-step-billing, #checkout-step-shipping, #checkout-step-shipping_method, #checkout-step-payment, #checkout-step-review {
1139
+ width: 320px !important;
1140
+ margin-top: 50px;
1141
+ }
1142
+ #checkout-step-billing {
1143
+ width: 275px !important;
1144
+ margin-left: -149px !important;
1145
+ }
1146
+ .checkout-onepage-index .col-right {
1147
+ padding: 0px;
1148
+ position: relative !important;
1149
+ top: 0px !important;
1150
+ right: 0px !important;
1151
+ }
1152
+ #checkout-step-shipping, #checkout-step-shipping_method {
1153
+ width: 265px !important;
1154
+ margin-left: -145px !important;
1155
+ }
1156
+ #checkout-step-payment {
1157
+ width: 265px !important;
1158
+ margin-left: 5px !important;
1159
+ }
1160
+ #checkout-step-review {
1161
+ margin-left: -140px !important;
1162
+ margin-bottom: 65px !important;
1163
+ width: 260px !important;
1164
+ }
1165
+ .checkout-onepage-index .page-title h1 {
1166
+ text-transform: uppercase;
1167
+ font-size: 20px !important;
1168
+ margin-top: 10px !important;
1169
+ }
1170
+ .top-opc .allow .number,.top-opc li.allow h2{
1171
+ display: block !important;
1172
+ }
1173
+ .top-opc .number,.top-opc li h2{
1174
+ display: none !important;
1175
+ }
1176
+ .checkout-onepage-index .col2-right-layout .col-main{
1177
+ min-height: 250px !important;
1178
+ }
1179
+ .checkout-onepage-success .page-title h1, .page-title h2,.checkout-cart-index .page-title h1, .page-title h2{
1180
+ margin-top: 20px;
1181
+ font-size: 18px;
1182
+ color: #000;
1183
+ }
1184
+ /*checkout page*/
1185
+ /*login and registration */
1186
+ .customer-account-login #next {
1187
+ top: 435px !important;
1188
+ left: 40% !important;
1189
+ }
1190
+ .customer-account-login #prev{
1191
+ top: 435px !important;
1192
+ left: 10% !important;
1193
+
1194
+ }
1195
+ .customer-account-login .col-main{
1196
+ margin: 0px !important;
1197
+ margin-left: 75px !important;
1198
+ }
1199
+ .customer-account-login .col-main #owl-demo{
1200
+ margin-left: 0px !important;
1201
+ width: 320px !important;
1202
+ }
1203
+ .customer-account-login .search-field #search_mini_form .form-search button{
1204
+ margin: -29px 0px 0px 210px !important;
1205
+ }
1206
+ .customer-account-login .search-field #search {
1207
+ width: 240px !important;
1208
+ }
1209
+ .customer-account-create .search-field #search_mini_form .form-search button {
1210
+ margin: -29px 0px 0px 210px !important;
1211
+ }
1212
+
1213
+ .customer-account-create .search-field #search {
1214
+ width: 240px !important;
1215
+ }
1216
+ .customer-account-create .block-login {
1217
+ margin-left: -45px !important;
1218
+ }
1219
+ /*login and registration */
1220
+
1221
+ }
1222
+ /**************************************************************************************************/
1223
+ /******************************* Smartphones (portrait) *****************************************/
1224
+ @media only screen and (max-width:320px) {
1225
+ /*header styles*/
1226
+ #headdemo ,.search-field {
1227
+ height: auto !important;
1228
+ }
1229
+ header .grid_12 {
1230
+ margin-bottom: 5px !important;
1231
+ }
1232
+ .top-dropdowns {
1233
+ position: relative !important;
1234
+ right: 0px !important;
1235
+ top: 80% !important;
1236
+ width: 90% !important;
1237
+ }
1238
+ .lang-currency-container{
1239
+ float: right !important;
1240
+ }
1241
+ #desktop-lang{display: none !important;}
1242
+ #mobile-lang{display: block !important;}
1243
+ #desktop-currency{display: none !important;}
1244
+ #mobile-currency{display: block !important;}
1245
+ #mini-toolbar{display: block !important;}
1246
+ #desktop-toolbar{display: none !important;}
1247
+ .homepage-banner-text{display:none !important}a.slider-buynow{display:none !important}
1248
+ .easyzoom--adjacent .easyzoom-flyout{
1249
+ display: none !important;
1250
+ }
1251
+ .cms-index-index #tele_category_banners{
1252
+ display: none !important;
1253
+ }
1254
+ .compare-top-title {
1255
+ width: 120px !important;
1256
+ }
1257
+ .js .slicknav_menu {
1258
+ margin-left: 5% !important;
1259
+ }
1260
+ /*header styles*/
1261
+ /*homepage styles*/
1262
+ .cms-index-index .col-right .block-cart{
1263
+ padding: 0px !important
1264
+ }
1265
+ .cms-index-index .col1-layout .widget-new-products #owl-demo{
1266
+ margin-left: 10px !important;
1267
+ }
1268
+ .cms-index-index .col2-right-layout .col-main {
1269
+ width: 320px !important;
1270
+ padding: 0px !important;
1271
+ }
1272
+ .cms-index-index .col2-left-layout .col-main {
1273
+ width: 320px !important;
1274
+ padding: 0px !important;
1275
+ }
1276
+ .cms-index-index .col-left, .cms-index-index .col-right {
1277
+ padding: 0px 0px 0px !important;
1278
+ }
1279
+ .col-right {
1280
+ width: 310px;
1281
+ }
1282
+ .col-left {
1283
+ width: 310px !important;
1284
+ margin-left: 3% !important;
1285
+ }
1286
+ .block-tags .block-content .actions {
1287
+ width: 225px !important;
1288
+ box-shadow: none !important;
1289
+ }
1290
+ #slider-demo .item img{
1291
+ height: auto !important;
1292
+ }
1293
+ #hslider-prev,#hslider-next{
1294
+ display: none !important;
1295
+ }
1296
+ #home-screen-slider{
1297
+ height: auto !important;
1298
+ }
1299
+ .footer-info .block-control {
1300
+ display: none !important;
1301
+ }
1302
+ .footer-info .block-content {
1303
+ display: block !important;
1304
+ }
1305
+ .footer-info{
1306
+ text-align: center !important;
1307
+ }
1308
+ .toolbar {
1309
+ margin-left: 8% !important;
1310
+ }
1311
+ .breadcrumbs {
1312
+ margin-left: 15px;
1313
+ }
1314
+ .category-image {
1315
+ margin-left: 0px;
1316
+ }
1317
+ /*list page styles start*/
1318
+ .links-hover{display: none !important;}
1319
+ /*list page styles end*/
1320
+ /*product view start*/
1321
+ .product-tabs-container .slider-container {
1322
+
1323
+ margin-left: 0px !important;
1324
+ margin-left: 0px !important;
1325
+ padding-right: 22% !important;
1326
+ padding-left: 6% !important;
1327
+ }
1328
+
1329
+ .col-main, .col-main-left, .col-main-right {
1330
+ width: 320px !important;
1331
+ padding: 0px !important;
1332
+ margin: 0px !important;
1333
+ }
1334
+ .product-shop-info,.product-tabs,div.tabContent ,#product-options-wrapper,.product-options-bottom{
1335
+ margin-left: 5% !important;
1336
+ margin-right: 5% !important;
1337
+ }
1338
+ .product-view .box-up-sell {
1339
+ margin-left: 15% !important;
1340
+ }
1341
+ .product-view .box-up-sell .jcarousel-next-horizontal,.product-view .box-up-sell .jcarousel-prev-horizontal{
1342
+ background-color: #FFFFFF;
1343
+ }
1344
+ .product-view .box-up-sell .jcarousel-next-horizontal:hover,.product-view .box-up-sell .jcarousel-prev-horizontal:hover{
1345
+ background-color: #393431;
1346
+ }
1347
+ .product-view .box-up-sell h2 {
1348
+ font-size: 16px !important;
1349
+ margin-bottom: 35px !important;
1350
+ }
1351
+ #image {
1352
+ width: 252px !important;
1353
+ height: 252px !important;
1354
+ }
1355
+ .product-view .products-grid {
1356
+ width: 275px !important;
1357
+ }
1358
+ .product-tabs-container .slider-container {
1359
+ margin-left: 0px !important;
1360
+ padding-right: 0% !important;
1361
+ }
1362
+ .product-view .box-up-sell {
1363
+ margin-left: 5% !important;
1364
+ }
1365
+ .box-up-sell h2 {
1366
+ font-size: 16px !important;
1367
+ margin-bottom: 35px !important;
1368
+ }
1369
+ .box-up-sell .products-grid .btn-cart {
1370
+ margin-right: 20%;
1371
+ }
1372
+ /*product view*/
1373
+ /*cart page */
1374
+ #shopping-cart-table {
1375
+ margin: 0px 0px !important;
1376
+ }
1377
+ .cart .totals {
1378
+ float: none !important;
1379
+ }
1380
+ /*cart page */
1381
+ /*checkout page*/
1382
+ #checkout-step-login, #checkout-step-billing, #checkout-step-shipping, #checkout-step-shipping_method, #checkout-step-payment, #checkout-step-review {
1383
+ width: 320px !important;
1384
+ margin-top: 50px;
1385
+ }
1386
+ #checkout-step-billing {
1387
+ width: 275px !important;
1388
+ margin-left: -149px !important;
1389
+ }
1390
+ .checkout-onepage-index .col-right {
1391
+ padding: 0px;
1392
+ position: relative !important;
1393
+ top: 0px !important;
1394
+ right: 0px !important;
1395
+ }
1396
+ #checkout-step-shipping, #checkout-step-shipping_method {
1397
+ width: 265px !important;
1398
+ margin-left: -145px !important;
1399
+ }
1400
+ #checkout-step-payment {
1401
+ width: 265px !important;
1402
+ margin-left: 5px !important;
1403
+ }
1404
+ #checkout-step-review {
1405
+ margin-left: -140px !important;
1406
+ margin-bottom: 65px !important;
1407
+ width: 260px !important;
1408
+ }
1409
+ .checkout-onepage-index .page-title h1 {
1410
+ text-transform: uppercase;
1411
+ font-size: 20px !important;
1412
+ margin-top: 10px !important;
1413
+ margin-left: 10px !important;
1414
+ }
1415
+ .top-opc .allow .number,.top-opc li.allow h2{
1416
+ display: block !important;
1417
+ margin-left: 20px !important;
1418
+ }
1419
+ .top-opc .number,.top-opc li h2{
1420
+ display: none !important;
1421
+ }
1422
+ .checkout-onepage-index .col2-right-layout .col-main{
1423
+ min-height: 250px !important;
1424
+ }
1425
+ .checkout-onepage-success .page-title h1, .page-title h2,.checkout-cart-index .page-title h1, .page-title h2{
1426
+ margin-top: 20px;
1427
+ font-size: 18px;
1428
+ color: #000;
1429
+ }
1430
+ /*checkout page*/
1431
+ /*login and registration */
1432
+ .customer-account-login #next {
1433
+ top: 435px !important;
1434
+ left: 35% !important;
1435
+ }
1436
+ .customer-account-login #prev{
1437
+ top: 435px !important;
1438
+ left: 0% !important;
1439
+
1440
+ }
1441
+ .customer-account-login .col-main{
1442
+ margin: 0px !important;
1443
+ margin-left: -10px !important;
1444
+ }
1445
+ .customer-account-login #owl-demo{
1446
+ margin-left: 0px !important;
1447
+ width: 320px !important;
1448
+ }
1449
+
1450
+ .customer-account-login .search-field #search_mini_form .form-search button{
1451
+ margin: -29px 0px 0px 210px !important;
1452
+ }
1453
+ .customer-account-login .search-field #search {
1454
+ width: 240px !important;
1455
+ }
1456
+ .customer-account-create .search-field #search_mini_form .form-search button {
1457
+ margin: -29px 0px 0px 210px !important;
1458
+ }
1459
+
1460
+ .customer-account-create .search-field #search {
1461
+ width: 240px !important;
1462
+ }
1463
+ .customer-account-create .block-login {
1464
+ margin-left: 0px;
1465
+ }
1466
+ /*login and registration */
1467
+ }
skin/frontend/Kartparadigm/default/css/oauth-simple.css ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ body { background:#496778 50% 0 repeat-y; font:12px/1.55 Arial, Helvetica, sans-serif; color:#2f2f2f; text-align:center; }
29
+ img { border:0; vertical-align:top; }
30
+ a { color:#1e7ec8; text-decoration:underline; }
31
+ a:hover { text-decoration:none; }
32
+ :focus { outline:0; }
33
+
34
+ /* Headings */
35
+ h1,h2,h3,
36
+ h4,h5,h6 { margin:0 0 5px; line-height:1.35; color:#0a263c; }
37
+ h1 { font-size:20px; font-weight:normal; }
38
+ h2 { font-size:18px; font-weight:normal; }
39
+ h3 { font-size:16px; font-weight:bold; }
40
+ h4 { font-size:14px; font-weight:bold; }
41
+ h5 { font-size:12px; font-weight:bold; }
42
+ h6 { font-size:11px; font-weight:bold; }
43
+
44
+ /* Forms */
45
+ form { display:inline; }
46
+ fieldset { border:0; }
47
+ legend { display:none; }
48
+
49
+ /* Table */
50
+ table { border:0; /*border-collapse:collapse;*/ border-spacing:0; empty-cells:show; font-size:100%; }
51
+ caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }
52
+
53
+ /* Content */
54
+ p { margin:0 0 10px; }
55
+ strong { font-weight:bold; }
56
+ address { font-style:normal; line-height:1.35; }
57
+ cite { font-style:normal; }
58
+ q,
59
+ blockquote { quotes:none; }
60
+ q:before,
61
+ q:after { content:''; }
62
+ small,big { font-size:1em; }
63
+ /*sup { font-size:1em; vertical-align:top; }*/
64
+
65
+ /* Lists */
66
+ ul,ol { list-style:none; }
67
+
68
+ /* Tools */
69
+ .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; }
70
+ .nobr { white-space:nowrap !important; }
71
+ .wrap { white-space:normal !important; }
72
+ .a-left { text-align:left !important; }
73
+ .a-center { text-align:center !important; }
74
+ .a-right { text-align:right !important; }
75
+ .v-top { vertical-align:top; }
76
+ .v-middle { vertical-align:middle; }
77
+ .f-left,
78
+ .left { float:left !important; }
79
+ .f-right,
80
+ .right { float:right !important; }
81
+ .f-none { float:none !important; }
82
+ .f-fix { float:left; width:100%; }
83
+ .no-display { display:none; }
84
+ .no-margin { margin:0 !important; }
85
+ .no-padding { padding:0 !important; }
86
+ .no-bg { background:none !important; }
87
+ /* ======================================================================================= */
88
+
89
+ /* Default styles ======================================================================== */
90
+ /* boxes.css*/
91
+ .notification-global {
92
+ background: url("./../images/error_msg_icon.gif") no-repeat scroll 27px 5px #FFF9E9;
93
+ border-bottom: 1px solid #EEE2BE;
94
+ border-top: 1px solid #EEE2BE;
95
+ color: #444444;
96
+ font-size: 11px;
97
+ line-height: 16px;
98
+ margin: 0 0 -3px;
99
+ padding: 5px 27px 5px 47px;
100
+ position: relative;
101
+ }
102
+ .notification-global-notice {
103
+ background-image: url("./../images/note_msg_icon.gif");
104
+ }
105
+ .notification-global .label {
106
+ color: #EB5E00;
107
+ }
108
+ .notification-global .clickable {
109
+ cursor: pointer;
110
+ }
111
+ .notification-global span.critical {
112
+ color: #D20000;
113
+ }
114
+ .notification-global a:hover {
115
+ text-decoration: none;
116
+ }
117
+ .error, a.error span, .required, .validation-advice {
118
+ color: #D40707 !important;
119
+ font-weight: bold !important;
120
+ }
121
+ .notice {
122
+ color: #EA7601;
123
+ }
124
+ .messages ul {
125
+ border: 0 none !important;
126
+ }
127
+ .messages li {
128
+ font-size: 0.95em !important;
129
+ font-weight: bold !important;
130
+ margin-bottom: 11px !important;
131
+ min-height: 23px !important;
132
+ padding: 8px 8px 2px 32px !important;
133
+ }
134
+ .messages ul li {
135
+ border: 0 none !important;
136
+ margin: 0 0 3px !important;
137
+ padding: 0 !important;
138
+ }
139
+ .error-msg {
140
+ background: url("./../images/error_msg_icon.gif") no-repeat scroll 10px 10px #FAEBE7 !important;
141
+ border: 1px solid #F16048 !important;
142
+ color: #DF280A !important;
143
+ }
144
+ .success-msg {
145
+ background: url("./../images/success_msg_icon.gif") no-repeat scroll 10px 10px #EFF5EA !important;
146
+ border: 1px solid #95A486 !important;
147
+ color: #3D6611 !important;
148
+ }
149
+ .notice-msg {
150
+ background: url("./../images/note_msg_icon.gif") no-repeat scroll 10px 10px #FFFBF0 !important;
151
+ border: 1px solid #FFD967 !important;
152
+ color: #3D6611 !important;
153
+ }
154
+ .warning-msg {
155
+ background: url("./../images/warning_msg_icon.gif") no-repeat scroll 10px 10px #E6E6E6 !important;
156
+ border: 1px solid #666E73 !important;
157
+ color: #000000 !important;
158
+ }
159
+
160
+ button:hover, .form-button:hover {
161
+ background: #F77C16;
162
+ }
163
+ button:active, .form-button:active {
164
+ background: #F77C16;
165
+ }
166
+ button span {
167
+ background-position: 0 50%;
168
+ background-repeat: no-repeat;
169
+ line-height: 1.35em;
170
+ }
171
+ button span span {
172
+ background: none repeat scroll 0 0 transparent !important;
173
+ display: inline !important;
174
+ margin: 0 !important;
175
+ padding: 0 !important;
176
+ }
177
+
178
+
179
+ input.input-text, textarea, select {
180
+ background: none repeat scroll 0 0 #FFFFFF;
181
+ border-color: #AAAAAA #C8C8C8 #C8C8C8 #AAAAAA;
182
+ border-style: solid;
183
+ border-width: 1px;
184
+ font: 12px arial,helvetica,sans-serif;
185
+ }
186
+ input.input-text, textarea {
187
+ padding: 2px;
188
+ }
189
+ button, .form-button {
190
+ background: #FFAC47;
191
+ border-color: #ED6502 #A04300 #A04300 #ED6502;
192
+ border-style: solid;
193
+ border-width: 1px;
194
+ color: #FFFFFF;
195
+ cursor: pointer;
196
+ font: bold 12px arial,helvetica,sans-serif;
197
+ padding: 0 7px 1px;
198
+ text-align: center !important;
199
+ white-space: nowrap;
200
+ }
201
+ /* ======================================================================================= */
202
+
203
+
204
+ *, html {text-align: left;}
205
+
206
+ h1 {
207
+ color: #D12C01;
208
+ font-size: 22px;
209
+ font-weight: normal;
210
+ margin: 0;
211
+ text-align: left;
212
+ }
213
+
214
+ h2 {
215
+ color: #444444;
216
+ font: 16px Arial,Helvetica,sans-serif;
217
+ margin: 0 0 5px;
218
+ text-align: left;
219
+ }
220
+
221
+ body,
222
+ .main-container,
223
+ .header-container {background: none;}
224
+
225
+ .header-simple {height: 60px; text-align: left; padding: 10px 10px 0 10px; border-bottom: 1px solid #CFCFCF;}
226
+ .header-top img {height: 60px;}
227
+
228
+ .login-box > div {padding: 10px;}
229
+ .page-title {margin-bottom: 0; border-bottom: 1px solid #CFCFCF;}
230
+
231
+ .form-box {border-bottom: 1px solid #CFCFCF;}
232
+ .form-box .fieldset, .form-box fieldset {width: 320px; margin: 0 auto;}
233
+
234
+ .input-box {margin-bottom: 10px;}
235
+ .input-box label {width: 95px; font-weight: bold; display: block; float: left; text-align: right; padding-right: 10px;}
236
+ .input-box input {width: 209px;}
237
+
238
+ .required {font-weight: normal; color: #D40707 !important; font-size: 11px;}
239
+ .form-buttons {text-align: right;}
skin/frontend/Kartparadigm/default/css/print.css ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ * { background:none !important; text-align:left !important; }
26
+ html { margin:0 !important; padding:0 !important; }
27
+ body { background:#fff !important; font-size:9pt !important; padding:0 !important; margin:10px !important; }
28
+ a { color:#2976c9 !important; }
29
+ th,td { color:#2f2f2f !important; border-color:#ccc !important; }
30
+
31
+ .header-container,
32
+ .nav-container,
33
+ .footer-container,
34
+ .pager,
35
+ .toolbar,
36
+ .actions,
37
+ .buttons-set { display:none !important; }
38
+
39
+ .page-print .data-table .cart-tax-total { background-position:100% -54px; }
40
+ .page-print .data-table .cart-tax-info { display:block !important; }
skin/frontend/Kartparadigm/default/css/slicknav.css ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Mobile Menu Core Style
3
+ */
4
+
5
+ .slicknav_btn { position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; }
6
+ .slicknav_menu .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
7
+ .slicknav_menu .slicknav_icon { float: left; margin: 0.188em 0 0 0.438em; }
8
+ .slicknav_menu .slicknav_no-text { margin: 0 }
9
+ .slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
10
+ .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em }
11
+ .slicknav_nav { clear: both }
12
+ .slicknav_nav ul,
13
+ .slicknav_nav li { display: block;padding-top: 5px; }
14
+ .slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.4em; }
15
+ .slicknav_nav .slicknav_item { cursor: pointer; }
16
+ .slicknav_nav .slicknav_row { display: block; }
17
+ .slicknav_nav a { display: block }
18
+ .slicknav_nav .slicknav_item a,
19
+ .slicknav_nav .slicknav_parent-link a { display: inline }
20
+ .slicknav_menu:before,
21
+ .slicknav_menu:after { content: " "; display: table; }
22
+ .slicknav_menu:after { clear: both }
23
+ /* IE6/7 support */
24
+ .slicknav_menu { *zoom: 1 }
25
+
26
+ /*
27
+ User Default Style
28
+ Change the following styles to modify the appearance of the menu.
29
+ */
30
+
31
+ .slicknav_menu {
32
+ font-size:16px;
33
+ }
34
+ /* Button */
35
+ .slicknav_btn {
36
+ margin: 5px 5px 6px;
37
+ text-decoration:none;
38
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
39
+ -webkit-border-radius: 4px;
40
+ -moz-border-radius: 4px;
41
+ border-radius: 4px;
42
+ background-color: #222222;
43
+ }
44
+ /* Button Text */
45
+ .slicknav_menu .slicknav_menutxt {
46
+ color: #000;
47
+ font-weight: bold;
48
+ /*text-shadow: 0 1px 3px #000;*/
49
+ }
50
+ /* Button Lines */
51
+ .slicknav_menu .slicknav_icon-bar {
52
+ background-color: #000;
53
+ }
54
+ .slicknav_menu {
55
+ background:#FFFFFF;
56
+ padding:5px;
57
+ }
58
+ .slicknav_nav {
59
+ color:#000;
60
+ margin:0;
61
+ padding:0;
62
+ font-size:0.875em;
63
+ }
64
+ .slicknav_nav, .slicknav_nav ul {
65
+ list-style: none;
66
+ overflow:hidden;
67
+ }
68
+ .slicknav_nav ul {
69
+ padding:0;
70
+ margin:0 0 0 20px;
71
+ }
72
+ .slicknav_nav .slicknav_row {
73
+ padding:5px 10px;
74
+ margin:2px 5px;
75
+ }
76
+ .slicknav_nav a{
77
+ padding:5px 10px;
78
+ margin:2px 5px;
79
+ text-decoration:none;
80
+ color:#000;
81
+ }
82
+ .slicknav_nav .slicknav_item a,
83
+ .slicknav_nav .slicknav_parent-link a {
84
+ padding:0;
85
+ margin:0;
86
+ }
87
+ .slicknav_nav .slicknav_row:hover {
88
+ -webkit-border-radius: 6px;
89
+ -moz-border-radius: 6px;
90
+ border-radius: 6px;
91
+ background:#ccc;
92
+ color:#fff;
93
+ }
94
+ .slicknav_nav a:hover{
95
+ -webkit-border-radius: 6px;
96
+ -moz-border-radius: 6px;
97
+ border-radius: 6px;
98
+ background:#ccc;
99
+ color:#222;
100
+ }
101
+ .slicknav_nav .slicknav_txtnode {
102
+ margin-left:15px;
103
+ }
skin/frontend/Kartparadigm/default/css/styles-ie.css ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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); }
skin/frontend/Kartparadigm/default/css/styles.css ADDED
@@ -0,0 +1,1800 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 { background:#496778 url(../images/bkg_body.gif) 50% 0 repeat-y; font:12px/1.55 Arial, Helvetica, sans-serif; color:#2f2f2f; text-align:center; }
30
+
31
+ img { border:0; vertical-align:top; }
32
+
33
+ a { color:#1e7ec8; 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:12px; 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:954px; }
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 { background:#fbfaf6 url(../images/bkg_main1.gif) 50% 0 no-repeat; }
100
+ .main { width:900px; margin:0 auto; min-height:400px; padding:25px 25px 80px; background:#fffffe url(../images/bkg_main2.gif) 0 0 no-repeat; text-align:left; }
101
+
102
+ /* Base Columns */
103
+ .col-left { float:left; width:195px; padding:0 0 1px; }
104
+ .col-main { float:left; width:685px; padding:0 0 1px; }
105
+ .col-right { float:right; width:195px; padding:0 0 1px; }
106
+
107
+ /* 1 Column Layout */
108
+ .col1-layout .col-main { float:none; width:auto; }
109
+
110
+ /* 2 Columns Layout */
111
+ .col2-left-layout .col-main { float:right; }
112
+ .col2-right-layout .col-main {}
113
+
114
+ /* 3 Columns Layout */
115
+ .col3-layout .col-main { width:475px; margin-left:17px; }
116
+ .col3-layout .col-wrapper { float:left; width:687px; }
117
+ .col3-layout .col-wrapper .col-main { float:right; }
118
+
119
+ /* Content Columns */
120
+ .col2-set .col-1 { float:left; width:48.5%; }
121
+ .col2-set .col-2 { float:right; width:48.5%; }
122
+ .col2-set .col-narrow { width:32%; }
123
+ .col2-set .col-wide { width:65%; }
124
+
125
+ .col3-set .col-1 { float:left; width:32%; }
126
+ .col3-set .col-2 { float:left; width:32%; margin-left:2%; }
127
+ .col3-set .col-3 { float:right; width:32%; }
128
+
129
+ .col4-set .col-1 { float:left; width:23.5%; }
130
+ .col4-set .col-2 { float:left; width:23.5%; margin:0 2%; }
131
+ .col4-set .col-3 { float:left; width:23.5%; }
132
+ .col4-set .col-4 { float:right; width:23.5%; }
133
+ /* ======================================================================================= */
134
+
135
+
136
+ /* Global Styles ========================================================================= */
137
+ /* Form Elements */
138
+ input,select,textarea,button { font:12px/15px Arial, Helvetica, sans-serif; vertical-align:middle; color:#2f2f2f; }
139
+ input.input-text,select,textarea { background:#fff; border:1px solid #b6b6b6; }
140
+ input.input-text,textarea { padding:2px; }
141
+ select { padding:1px; }
142
+ select option { padding-right:10px; }
143
+ select.multiselect option { border-bottom:1px solid #b6b6b6; padding:2px 5px; }
144
+ select.multiselect option:last-child { border-bottom:0; }
145
+ textarea { overflow:auto; }
146
+ input.radio { margin-right:3px; }
147
+ input.checkbox { margin-right:3px; }
148
+ input.qty { width:2.5em !important; }
149
+ button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
150
+ button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
151
+ button.button { overflow:visible; width:auto; border:0; padding:0; margin:0; background:transparent; cursor:pointer; }
152
+ button.button span { display:block; height:19px; border:1px solid #de5400; background:#f18200; padding:0 8px; font:bold 12px/19px Arial, Helvetica, sans-serif; text-align:center; white-space:nowrap; color:#fff; }
153
+ button.button span span { border:0; padding:0; }
154
+ button.disabled span { border-color:#bbb !important; background:#bbb !important; }
155
+
156
+ button.btn-checkout span { height:40px; border:0; background:url(../images/btn_checkout.gif) 0 0 no-repeat; padding:0 0 0 9px; font:bold 15px/40px Arial, Helvetica, sans-serif; color:#fff; }
157
+ button.btn-checkout span span { background-position:100% 0; padding:0 25px 0 16px; }
158
+ button.btn-checkout.no-checkout span { background-position:0 100%; color:#b8baba; }
159
+ button.btn-checkout.no-checkout span span { background-position:100% 100%; }
160
+
161
+ p.control input.checkbox,
162
+ p.control input.radio { margin-right:6px; }
163
+ /* Form Highlight */
164
+ input.input-text:focus,select:focus,textarea:focus { background-color:#edf7fd; }
165
+ /*.highlight { background:#efefef; }*/
166
+
167
+ /* Form lists */
168
+ /* Grouped fields */
169
+ /*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/
170
+ .form-list li { margin:0 0 8px; }
171
+ .form-list label { float:left; color:#666; font-weight:bold; position:relative; z-index:0; }
172
+ .form-list label.required {}
173
+ .form-list label.required em { float:right; font-style:normal; color:#eb340a; position:absolute; top:0; right:-8px; }
174
+ .form-list li.control label { float:none; }
175
+ .form-list li.control input.radio,
176
+ .form-list li.control input.checkbox { margin-right:6px; }
177
+ .form-list li.control .input-box { clear:none; display:inline; width:auto; }
178
+ /*.form-list li.fields { margin-right:-15px; }*/
179
+ .form-list .input-box { display:block; clear:both; width:260px; }
180
+ .form-list .field { float:left; width:275px; }
181
+ .form-list input.input-text { width:254px; }
182
+ .form-list textarea { width:254px; height:10em; }
183
+ .form-list select { width:260px; }
184
+ .form-list li.wide .input-box { width:535px; }
185
+ .form-list li.wide input.input-text { width:529px; }
186
+ .form-list li.wide textarea { width:529px; }
187
+ .form-list li.wide select { width:535px; }
188
+ .form-list li.additional-row { border-top:1px solid #ccc; margin-top:10px; padding-top:7px; }
189
+ .form-list li.additional-row .btn-remove { float:right; margin:5px 0 0; }
190
+ .form-list .input-range input.input-text { width:74px; }
191
+
192
+ .form-list-narrow li { margin-bottom:0; }
193
+ .form-list-narrow li .input-box { margin-bottom:6px; }
194
+ .form-list-narrow li.wide .input-box { width:260px; }
195
+ .form-list-narrow li.wide input.input-text,
196
+ .form-list-narrow li.wide textarea { width:254px }
197
+ .form-list-narrow li.wide select { width:260px; }
198
+
199
+ /* Customer */
200
+ .form-list .customer-name-prefix .input-box,
201
+ .form-list .customer-name-suffix .input-box,
202
+ .form-list .customer-name-prefix-suffix .input-box,
203
+ .form-list .customer-name-prefix-middlename .input-box,
204
+ .form-list .customer-name-middlename-suffix .input-box,
205
+ .form-list .customer-name-prefix-middlename-suffix .input-box { width:auto; }
206
+
207
+ .form-list .name-prefix { width:65px; }
208
+ .form-list .name-prefix select { width:55px; }
209
+ .form-list .name-prefix input.input-text { width:49px; }
210
+
211
+ .form-list .name-suffix { width:65px; }
212
+ .form-list .name-suffix select { width:55px; }
213
+ .form-list .name-suffix input.input-text { width:49px; }
214
+
215
+ .form-list .customer-name-prefix-middlename-suffix .name-firstname,
216
+ .form-list .customer-name-prefix-middlename .name-firstname { width:140px; }
217
+ .form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
218
+ .form-list .customer-name-prefix-middlename .name-firstname input.input-text { width:124px; }
219
+ .form-list .customer-name-prefix-middlename-suffix .name-lastname { width:205px; }
220
+ .form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text { width:189px; }
221
+
222
+ .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
223
+ .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
224
+ .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
225
+ .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
226
+
227
+ .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
228
+ .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
229
+ .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
230
+ .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
231
+
232
+ .form-list .customer-name-prefix .name-firstname,
233
+ .form-list .customer-name-middlename .name-firstname,
234
+ .form-list .customer-name-middlename .name-middlename { width:210px; }
235
+
236
+ .form-list .customer-name-suffix .name-lastname,
237
+ .form-list .customer-name-middlename .name-firstname,
238
+ .form-list .customer-name-middlename .name-middlename,
239
+ .form-list .customer-name-middlename-suffix .name-firstname,
240
+ .form-list .customer-name-middlename-suffix .name-lastname { width:205px; }
241
+
242
+ .form-list .customer-name-prefix .name-firstname input.input-text,
243
+ .form-list .customer-name-suffix .name-lastname input.input-text,
244
+ .form-list .customer-name-middlename .name-firstname input.input-text,
245
+ .form-list .customer-name-middlename .name-middlename input.input-text,
246
+ .form-list .customer-name-middlename-suffix .name-firstname input.input-text,
247
+ .form-list .customer-name-middlename-suffix .name-lastname input.input-text { width:189px; }
248
+
249
+ .form-list .customer-dob .dob-month,
250
+ .form-list .customer-dob .dob-day,
251
+ .form-list .customer-dob .dob-year { float:left; width:85px; }
252
+ .form-list .customer-dob input.input-text { display:block; width:74px; }
253
+ .form-list .customer-dob label { font-size:10px; font-weight:normal; color:#888; }
254
+ .form-list .customer-dob .dob-day,
255
+ .form-list .customer-dob .dob-month { width:60px; }
256
+ .form-list .customer-dob .dob-day input.input-text,
257
+ .form-list .customer-dob .dob-month input.input-text { width:46px; }
258
+ .form-list .customer-dob .dob-year { width:140px; }
259
+ .form-list .customer-dob .dob-year input.input-text { width:134px; }
260
+
261
+ /* Independent fields */
262
+ /*.form-list li { margin:0 0 8px; }
263
+ .form-list li.fields { margin:0; }
264
+ .form-list .field { display:block; margin:0 0 8px; }
265
+ .form-list li.control {}
266
+ .form-list label { float:left; width:150px; padding:2px 10px 0 0; text-align:right; }
267
+ .form-list label.required { font-weight:bold; }
268
+ .form-list label.required em { font-variant:normal; color:#eb340a; margin-right:3px; }
269
+ .form-list .input-box { float:left; width:260px; }
270
+ .form-list input.input-text,
271
+ .form-list textarea { width:254px; }
272
+ .form-list select { width:260px; }
273
+ .form-list li.additional-row { border-top:1px solid #ddd; margin-top:10px; }
274
+ .form-list li.additional-row .btn-remove { float:right; margin:5px 5px 0 0; }
275
+ .form-list .input-range input.input-text { width:96px; }*/
276
+ /* Customer */
277
+ /*.form-list .customer-dob .dob-month,
278
+ .form-list .customer-dob .dob-day,
279
+ .form-list .customer-dob .dob-year { float:left; width:85px; }
280
+ .form-list .customer-dob input.input-text { display:block; width:74px; }
281
+ .form-list .customer-dob label { font-size:11px; font-weight:normal; color:#777; text-align:left; }
282
+ .form-list .customer-dob .dob-day,
283
+ .form-list .customer-dob .dob-month { width:60px; }
284
+ .form-list .customer-dob .dob-day input.input-text,
285
+ .form-list .customer-dob .dob-month input.input-text { width:46px; }
286
+ .form-list .customer-dob .dob-year { width:140px; }
287
+ .form-list .customer-dob .dob-year input.input-text { width:134px; }*/
288
+
289
+ .buttons-set { clear:both; margin:4em 0 0; padding:8px 0 0; border-top:1px solid #e4e4e4; text-align:right; }
290
+ .buttons-set p.required { margin:0 0 10px; }
291
+ .buttons-set .back-link { float:left; margin:0; }
292
+ .buttons-set button.button { float:right; margin-left:5px; }
293
+
294
+ .buttons-set-order { margin:10px 0 0; }
295
+ .buttons-set-order .please-wait { padding:12px 7px 0 0; }
296
+
297
+ .fieldset { border:1px solid #bbafa0; background:#fbfaf6; padding:22px 25px 12px 33px; margin:28px 0; }
298
+ .fieldset .legend { float:left; font-weight:bold; font-size:13px; border:1px solid #f19900; background:#f9f3e3; color:#e76200; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
299
+
300
+ /* Form Validation */
301
+ .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; }
302
+ .validation-failed { border:1px dashed #eb340a !important; background:#faebe7 !important; }
303
+ .validation-passed {}
304
+ p.required { font-size:11px; text-align:right; color:#EB340A; }
305
+ /* Expiration date and CVV number validation fix */
306
+ .v-fix { float:left; }
307
+ .v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }
308
+
309
+ /* Global Messages */
310
+ .success { color:#3d6611; font-weight:bold; }
311
+ .error { color:#df280a; font-weight:bold; }
312
+ .notice { color:#e26703; }
313
+
314
+ .messages,
315
+ .messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
316
+ .messages { width:100%; overflow:hidden; }
317
+ .messages li { margin:0 0 10px !important; }
318
+ .messages li li { margin:0 0 3px !important; }
319
+ .error-msg,
320
+ .success-msg,
321
+ .note-msg,
322
+ .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; }
323
+ .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
324
+ .success-msg { border-color:#446423; background-color:#eff5ea; background-image:url(../images/i_msg-success.gif); color:#3d6611; }
325
+ .note-msg,
326
+ .notice-msg { border-color:#fcd344; background-color:#fafaec; background-image:url(../images/i_msg-note.gif); color:#3d6611; }
327
+
328
+ /* BreadCrumbs */
329
+ .breadcrumbs { font-size:11px; line-height:1.25; margin:0 0 13px; }
330
+ .breadcrumbs li { display:inline; }
331
+ .breadcrumbs li strong { font-weight:bold; }
332
+
333
+ /* Page Heading */
334
+ .page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; }
335
+ .page-title h1,
336
+ .page-title h2 { margin:0; font-size:20px; color:#0a263c; }
337
+ .page-title .separator { margin:0 3px; }
338
+ .page-title .link-rss { float:right; margin:7px 0 0; }
339
+ .title-buttons { text-align:right; }
340
+ .title-buttons h1,
341
+ .title-buttons h2,
342
+ .title-buttons h3,
343
+ .title-buttons h4,
344
+ .title-buttons h5,
345
+ .title-buttons h6 { float:left; }
346
+
347
+ .subtitle,
348
+ .sub-title { clear:both; padding:15px 0 0; font-size:15px; font-weight:bold; margin:0 0 6px; color:#e25203; }
349
+
350
+ /* Pager */
351
+ .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; }
352
+ .pager .amount { float:left; margin:0; }
353
+ .pager .limiter { float:right; }
354
+ .pager .limiter label { vertical-align:middle; }
355
+ .pager .limiter select { padding:0; margin:0 0 1px; vertical-align:middle; }
356
+ .pager .pages { margin:0 140px; }
357
+ .pager .pages ol { display:inline; }
358
+ .pager .pages li { display:inline; margin:0 2px; }
359
+ .pager .pages .current {}
360
+
361
+ /* Sorter */
362
+ .sorter { font-size:11px; background:#fff url(../images/bkg_toolbar.gif) 0 100% repeat-x; padding:3px 8px; border-top:1px solid #e2e2e2; }
363
+ .sorter .view-mode { float:left; margin:0; }
364
+ .sorter .sort-by { float:right; padding-right:36px; }
365
+ .sorter .sort-by label { vertical-align:middle; }
366
+ .sorter .sort-by select { padding:0; margin:0 0 1px; vertical-align:middle; }
367
+ .sorter .link-feed {}
368
+
369
+ /* Toolbar */
370
+ .toolbar {}
371
+ .toolbar .pager { padding:3px 8px; border-bottom:1px solid #fff; }
372
+ .toolbar .sorter { border-bottom:1px solid #fff; }
373
+ .toolbar-bottom {}
374
+
375
+ /* Data Table */
376
+ .data-table { width:100%; border:1px solid #bebcb7; }
377
+ .data-table .odd { background:#f8f7f5 }
378
+ .data-table .even { background:#eeeded; }
379
+ /*.data-table tr.odd:hover,
380
+ .data-table tr.even:hover { background:#ebf1f6; }*/
381
+ .data-table td.last,
382
+ .data-table th.last { border-right:0; }
383
+ .data-table tr.last th,
384
+ .data-table tr.last td { border-bottom:0 !important; }
385
+ .data-table th { padding:3px 8px; font-weight:bold; }
386
+ .data-table td { padding:3px 8px; }
387
+
388
+ .data-table thead th { font-weight:bold; border-right:1px solid #c2d3e0; padding:2px 8px; color:#0a263c; white-space:nowrap; vertical-align:middle; }
389
+ .data-table thead th.wrap { white-space:normal; }
390
+ .data-table thead th a,
391
+ .data-table thead th a:hover { color:#fff; }
392
+ .data-table thead th { background:url(../images/bkg_th.gif) repeat-x 0 100% #d9e5ee; }
393
+ .data-table thead th .tax-flag { font-size:11px; white-space:nowrap; }
394
+
395
+ .data-table tfoot { border-bottom:1px solid #d9dde3; }
396
+ .data-table tfoot tr.first td { background:url(../images/bkg_tfoot.gif) 0 0 repeat-x; }
397
+ .data-table tfoot tr { background-color:#dee5e8 !important; }
398
+ .data-table tfoot td { padding-top:1px; padding-bottom:1px; border-bottom:0; border-right:1px solid #d9dde3; }
399
+ .data-table tfoot strong { font-size:16px; }
400
+
401
+ .data-table tbody th,
402
+ .data-table tbody td { border-bottom:1px solid #d9dde3; border-right:1px solid #d9dde3; }
403
+ /* Bundle products tables */
404
+ .data-table tbody.odd tr { background:#f8f7f5 !important; }
405
+ .data-table tbody.even tr { background:#f6f6f6 !important; }
406
+ .data-table tbody.odd tr td,
407
+ .data-table tbody.even tr td { border-bottom:0; }
408
+ .data-table tbody.odd tr.border td,
409
+ .data-table tbody.even tr.border td { border-bottom:1px solid #d9dde3; }
410
+
411
+ .data-table tbody td .option-label { font-weight:bold; font-style:italic; }
412
+ .data-table tbody td .option-value { padding-left:10px; }
413
+
414
+ /* Generic Info Box */
415
+ .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; }
416
+ .info-box h2 { font-weight:bold; font-size:13px; }
417
+
418
+ .info-table th { font-weight:bold; padding:2px 15px 2px 0; }
419
+ .info-table td { padding:2px 0; }
420
+
421
+ /* Shopping cart total summary row expandable to details */
422
+ tr.summary-total { cursor:pointer; }
423
+ tr.summary-total td {}
424
+ 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; }
425
+ tr.show-details .summary-collapse { background-position:0 -52px; }
426
+ tr.show-details td {}
427
+ tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
428
+ tr.summary-details-first td { border-top:1px solid #d2d8db; }
429
+ tr.summary-details-excluded { font-style:italic; }
430
+
431
+ /* Shopping cart tax info */
432
+ .cart-tax-info { display:block; }
433
+ .cart-tax-info,
434
+ .cart-tax-info .cart-price { padding-right:20px; }
435
+ .cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 5px no-repeat; cursor:pointer; }
436
+ .cart-tax-info .price,
437
+ .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
438
+ .cart-tax-total-expanded { background-position:100% -52px; }
439
+
440
+ /* Class: std - styles for admin-controlled content */
441
+ .std .subtitle { padding:0; }
442
+ .std ol.ol { list-style:decimal outside; padding-left:1.5em; }
443
+ .std ul.disc { list-style:disc outside; padding-left:18px; margin:0 0 10px; }
444
+ .std dl dt { font-weight:bold; }
445
+ .std dl dd { margin:0 0 10px; }
446
+ .std ul,
447
+ .std ol,
448
+ .std dl,
449
+ .std p,
450
+ .std address,
451
+ .std blockquote { margin:0 0 1em; padding:0; }
452
+ .std ul { list-style:disc outside; padding-left:1.5em; }
453
+ .std ol { list-style:decimal outside; padding-left:1.5em; }
454
+ .std ul ul { list-style-type:circle; }
455
+ .std ul ul,
456
+ .std ol ol,
457
+ .std ul ol,
458
+ .std ol ul { margin:.5em 0; }
459
+ .std dt { font-weight:bold; }
460
+ .std dd { padding:0 0 0 1.5em; }
461
+ .std blockquote { font-style:italic; padding:0 0 0 1.5em; }
462
+ .std address { font-style:normal; }
463
+ .std b,
464
+ .std strong { font-weight:bold; }
465
+ .std i,
466
+ .std em { font-style:italic; }
467
+
468
+ /* Misc */
469
+ .links li { display:inline; }
470
+ .links li.first { padding-left:0 !important; }
471
+ .links li.last { background:none !important; padding-right:0 !important; }
472
+
473
+ .link-cart { color:#dc6809 !important; font-weight:bold; }
474
+ .link-wishlist { color:#dc6809 !important; font-weight:bold; }
475
+ .link-reorder { font-weight:bold; color:#dc6809 !important; }
476
+ .link-compare { font-weight:bold; }
477
+ .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/ font-weight:bold; color:#dc6809; }
478
+ .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
479
+ .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; }
480
+ .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; }
481
+ .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; }
482
+ .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; }
483
+
484
+ .cards-list dt { margin:5px 0 0; }
485
+ .cards-list .offset { padding:2px 0 2px 20px; }
486
+
487
+ .separator { margin:0 3px; }
488
+
489
+ .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; }
490
+
491
+ /* Global site notices */
492
+ .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; }
493
+ .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; }
494
+ .global-site-notice .notice-inner p { margin:0; border:1px dotted #cccc73; padding:10px; }
495
+ .global-site-notice .notice-inner .actions { padding-top:10px; }
496
+
497
+ /* Cookie Notice */
498
+ .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 */ }
499
+
500
+ /* Noscript Notice */
501
+ .noscript {}
502
+
503
+ /* Demo Notice */
504
+ .demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; border:0; text-align:center; color:#fff; }
505
+ .demo-notice .notice-inner { width:auto; padding:0; background:none; text-align:center; }
506
+ .demo-notice .notice-inner p { padding:0; border:0; }
507
+
508
+ /* ======================================================================================= */
509
+
510
+
511
+ /* Header ================================================================================ */
512
+ .logo { float:left; }
513
+ .header-container { border-top:5px solid #0d2131; border-bottom:1px solid #415966; background:url(../images/bkg_header.jpg) 50% 0 repeat; }
514
+ .header { width:930px; margin:0 auto; padding:10px; text-align:right; position:relative; z-index:10; }
515
+ .header .logo { float:left; margin:3px 0 10px 12px; text-decoration:none !important; }
516
+ .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
517
+ .header h1.logo { margin:0; }
518
+ .header .quick-access { float:right; width:600px; padding:28px 10px 0 0; }
519
+ .header .welcome-msg { margin:0; color:#fff; text-align:right; }
520
+ .header .welcome-msg a { color:#ebbc58; }
521
+ .header .form-search { position:absolute; top:0; right:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:1px 0 0 16px; }
522
+ .header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
523
+ .header .form-search input.input-text { float:left; border-color:#5c7989; width:209px; margin-right:4px; }
524
+ .header .form-search button.button { float:left; }
525
+ .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; }
526
+ .header .form-search button.button span span { background-position:100% 0; padding:0 6px 0 3px; }
527
+ .header .form-search .search-autocomplete { z-index:999; left:40px !important; top:22px !important; }
528
+ .header .form-search .search-autocomplete ul { border:1px solid #5c7989; background-color:#f9f5f0; }
529
+ .header .form-search .search-autocomplete li { text-align:left; border-bottom:1px solid #f4eee7; padding:2px 8px 1px 8px; cursor:pointer; }
530
+ .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
531
+ .header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
532
+ .header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
533
+ .header .form-language { clear:both; padding:5px 0 0; text-align:right; }
534
+ .header .form-language label { font-weight:bold; padding-right:5px; color:#a7c6dd; vertical-align:middle; }
535
+ .header .form-language select { padding:0; }
536
+ .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
537
+ .header .links { float:right; margin:0 0 6px; }
538
+ .header .links li { float:left; font-size:11px; background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat; padding:0 8px 0 7px; }
539
+ .header .links a { color:#ebbc58; }
540
+ .header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
541
+ .header-container .top-container a { font-size:11px; color:#ebbc58; }
542
+
543
+ /********** < Navigation */
544
+ .nav-container { background:#0a263d url(../images/bkg_nav0.jpg) 50% 0 repeat-y; }
545
+ #nav { width:918px; margin:0 auto; padding:0 16px; font-size:13px; }
546
+
547
+ /* All Levels */ /* Style consistent throughout all nav levels */
548
+ #nav li { position:relative; text-align:left; }
549
+ #nav li.over { z-index:998; }
550
+ #nav a,
551
+ #nav a:hover { display:block; line-height:1.3em; text-decoration:none; }
552
+ #nav span { display:block; cursor:pointer; white-space:nowrap; }
553
+ #nav li ul span {white-space:normal; }
554
+ #nav ul li.parent a { background:url(../images/bkg_nav2.gif) 100% 100% no-repeat; }
555
+ #nav ul li.parent li a { background-image:none; }
556
+
557
+ /* 0 Level */
558
+ #nav li { float:left; }
559
+ #nav li.active a { color:#d96708; }
560
+ #nav a { float:left; padding:5px 12px 6px 8px; color:#a7c6dd; font-weight:bold; }
561
+ #nav li.over a,
562
+ #nav a:hover { color:#d96708; }
563
+
564
+ /* 1st Level */
565
+ #nav ul li,
566
+ #nav ul li.active { float:none; margin:0; padding-bottom:1px; background:#ecf3f6 url(../images/bkg_nav1.gif) 0 100% repeat-x; }
567
+ #nav ul li.last { background:#ecf3f6; padding-bottom:0; }
568
+
569
+ #nav ul a,
570
+ #nav ul a:hover { float:none; padding:0; background:none; }
571
+ #nav ul li a { font-weight:normal !important; }
572
+
573
+ /* 2nd Level */
574
+ #nav ul,
575
+ #nav div { position:absolute; width:15em; top:27px; left:-10000px; border:1px solid #899ba5; }
576
+ #nav div ul { position:static; width:auto; border:none; }
577
+
578
+ /* 3rd+ Level */
579
+ #nav ul ul,
580
+ #nav ul div { top:5px; }
581
+
582
+ #nav ul li a { background:#ecf3f6; }
583
+ #nav ul li a:hover { background:#d5e4eb; }
584
+ #nav ul li a,
585
+ #nav ul li a:hover { color:#2f2f2f !important; }
586
+ #nav ul span,
587
+ #nav ul li.last li span { padding:3px 15px 4px 15px; }
588
+
589
+ /* Show menu */
590
+ #nav li ul.shown-sub,
591
+ #nav li div.shown-sub { left:0; z-index:999; }
592
+ #nav li .shown-sub ul.shown-sub,
593
+ #nav li .shown-sub li div.shown-sub { left:100px; }
594
+ /********** Navigation > */
595
+ /* ======================================================================================= */
596
+
597
+
598
+ /* Sidebar =============================================================================== */
599
+ .block { border:1px solid #c4c1bc; margin:0 0 15px; }
600
+ .block .block-title { background:url(../images/bkg_block-title.gif) 0 0 repeat-x; border-bottom:1px solid #ddd; padding:2px 9px; }
601
+ .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; }
602
+ .block .block-title strong span {}
603
+ .block .block-title a { text-decoration:none !important; }
604
+ .block .block-subtitle { margin:0; padding:5px 9px; font-size:1em; font-weight:bold; color:#0a263c; }
605
+ .block .block-content { background:#f8f7f5; }
606
+ .block .block-content li.item { padding:7px 9px; }
607
+ .block .block-content .product-name { color:#1e7ec8; }
608
+ .block .btn-remove,
609
+ .block .btn-edit { float:right; margin:1px 0 2px 5px; }
610
+ .block .actions { background:#dee5e8 url(../images/bkg_block-actions.gif) 0 0 repeat-x; padding:6px 9px; text-align:right; }
611
+ .block .actions a { float:left; }
612
+ .block .actions button.button { float:right; }
613
+ .block .empty { margin:0; padding:5px 9px; }
614
+
615
+ .block li.odd { background-color:#f4f3f3; }
616
+ .block li.even { background-color:#fafafa; }
617
+
618
+ /* Mini Blocks */
619
+ .block-cart,
620
+ .block-wishlist,
621
+ .block-subscribe,
622
+ .block-compare,
623
+ .block-reorder,
624
+ .block-poll,
625
+ .block-gr-search,
626
+ .block-viewed,
627
+ .block-compared,
628
+ .block-related,
629
+ .block-tags,
630
+ .block-login { font-size:11px; line-height:1.25; }
631
+ .block-cart .block-title strong,
632
+ .block-wishlist .block-title strong,
633
+ .block-subscribe .block-title strong,
634
+ .block-compare .block-title strong,
635
+ .block-reorder .block-title strong,
636
+ .block-poll .block-title strong,
637
+ .block-viewed .block-title strong,
638
+ .block-compared .block-title strong,
639
+ .block-related .block-title strong,
640
+ .block-tags .block-title strong,
641
+ .block-login .block-title strong { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
642
+
643
+ /* Mini Products List */
644
+ .mini-products-list .product-image { float:left; width:50px; border:1px solid #a9a9a9; }
645
+ .mini-products-list .product-details { margin-left:60px; }
646
+ .block-cart .mini-products-list .product-details .product-name,
647
+ .block-cart .mini-products-list .product-details .nobr small { word-wrap:break-word; }
648
+ .block-cart .mini-products-list .product-details .nobr { white-space:normal !important; }
649
+
650
+ /* Block: Account */
651
+ .block-account { border-color:#bbb; }
652
+ .block-account .block-title { background:#fc9d36 url(../images/bkg_block-title-account.gif) 0 100% repeat-x; border:0; padding:3px 10px; }
653
+ .block-account .block-title strong { font-size:13px; color:#fff; }
654
+ .block-account .block-content { background:#fbfaf6; padding:7px 10px 7px; }
655
+ .block-account .block-content li a { display:block; border-bottom:1px solid #ddd; padding:3px 0; color:#5f5d5c; text-decoration:none !important; }
656
+ .block-account .block-content li a:hover { color:#ea7900; }
657
+ .block-account .block-content li.last a { border-bottom:0; }
658
+ .block-account .block-content li.current { border-bottom:1px solid #ddd; padding:3px 0; color:#ea7900; }
659
+ .block-account .block-content li.current.last { border-bottom:0; }
660
+
661
+ /* Block: Currency Switcher */
662
+ .block-currency { border:0; background:url(../images/bkg_block-currency.gif) 0 0 no-repeat; padding:7px 12px 10px; height:51px; }
663
+ .block-currency .block-title { background:none; border:0; padding:0; margin:0 0 5px; }
664
+ .block-currency .block-title strong { font:bold 13px/21px Arial, Helvetica, sans-serif; background:url(../images/i_block-currency.gif) 0 50% no-repeat; padding:0 0 0 21px; text-transform:none; color:#fff; }
665
+ .block-currency .block-content { background:none; padding:0; }
666
+ .block-currency .block-content select { width:100%; padding:0; }
667
+
668
+ /* Block: Layered Navigation */
669
+ .block-layered-nav { border:0; }
670
+ .block-layered-nav .block-title { border:0; padding:0; height:24px; background:url(../images/bkg_block-layered-title.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
671
+ .block-layered-nav .block-subtitle { line-height:1.35; background:#d5e8ff url(../images/bkg_block-layered1.gif) 0 50% repeat; padding:3px 9px; border:1px solid #b9ccdd; border-width:1px 0; text-transform:uppercase; color:#1f5070; }
672
+ .block-layered-nav .block-content { border:1px solid #a0b3c3; background:#e7f1f4; }
673
+ .block-layered-nav dt { background:url(../images/bkg_block-layered-dt.gif) 9px 11px no-repeat; padding:7px 10px 0 25px; font-weight:bold; text-transform:uppercase; }
674
+ .block-layered-nav dd { padding:0 12px 12px; background:url(../images/bkg_block-layered-dd.gif) 0 100% repeat-x; }
675
+ .block-layered-nav dd.last { background:none; }
676
+ .block-layered-nav .currently li { background:#fff url(../images/bkg_block-layered-li.gif) 0 100% repeat-x; padding:6px 24px 6px 10px; position:relative; z-index:1; line-height:1.5; }
677
+ .block-layered-nav .currently .label { font-weight:bold; padding-left:15px; background:url(../images/bkg_block-layered-label.gif) 0 4px no-repeat; text-transform:uppercase; display:inline-block; vertical-align:top; }
678
+ .block-layered-nav .currently .value { display:inline-block; vertical-align:top; }
679
+ .block-layered-nav .currently .btn-previous,
680
+ .block-layered-nav .currently .btn-remove { position:absolute; right:4px; top:9px; margin:0; }
681
+ .block-layered-nav .currently .btn-previous { right:17px; }
682
+ .block-layered-nav .actions { font-size:11px; padding:4px 5px 4px 9px; background:#cad6e4; border:1px solid #dee5e8; border-width:1px 0; text-align:right; }
683
+ .block-layered-nav .actions a { float:none; }
684
+
685
+ /* Block: Cart */
686
+ .block-cart .block-title { /*border-bottom:0;*/ }
687
+ .block-cart .block-title strong { background-image:url(../images/i_block-cart.gif); }
688
+ .block-cart .summary { background:#fff; padding:2px 8px 8px; margin:-1px 0 0; position:relative; z-index:1; }
689
+ .block-cart .amount { margin:0; }
690
+ .block-cart .amount a { font-weight:bold; }
691
+ .block-cart .subtotal { margin:5px 0 0; padding:2px 0; background:#fbebd9; text-align:center; }
692
+ .block-cart .subtotal .price { font-weight:bold; }
693
+ .block-cart .actions { border-bottom:1px solid #c2c2c2; }
694
+ .block-cart .actions .paypal-logo { float:left; width:100%; margin:3px 0 0; text-align:right; }
695
+ .block-cart .actions .paypal-logo .paypal-or { clear:both; display:block; padding:0 55px 8px 0; }
696
+
697
+ /* Block: Wishlist */
698
+ .block-wishlist .block-title strong { background-image:url(../images/i_block-wishlist.gif); }
699
+ .block-wishlist .actions { text-align:right; }
700
+ .block-wishlist .actions a { float:none; }
701
+
702
+ /* Block: Related */
703
+ .block-related .block-title strong { background-image:url(../images/i_block-related.gif); background-position:0 1px; }
704
+ .block-related input.checkbox { float:left; }
705
+ .block-related .product { margin-left:20px; }
706
+
707
+ /* Block: Compare Products */
708
+ .block-compare .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
709
+ .block-compare button.button span { border-color:#406a83; background:#618499; }
710
+ .page-popup .link-print { background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px; font-weight:bold; color:#1e7ec8; }
711
+ .compare-table { border:0; }
712
+ .compare-table thead tr.first th,
713
+ .compare-table thead tr.first td { border:0; background:none; padding:0; font-size:0; line-height:0; }
714
+ .compare-table .btn-remove { float:right; background-image:url(../images/btn_remove2.gif); width:72px; height:15px; }
715
+ .compare-table tbody th { background:#d9e5ee url(../images/bkg_th-v.gif) 100% 0 repeat-y; }
716
+ .compare-table tbody th,
717
+ .compare-table tbody td { padding:10px; border:0; border-top:1px solid #ccc; border-left:1px solid #ccc; }
718
+ .compare-table tbody td.last { border-right:1px solid #ccc; }
719
+ .compare-table tbody tr.last th,
720
+ .compare-table tbody tr.last td { border-bottom:1px solid #ccc !important; }
721
+ .compare-table tr.add-to-row td { background:#fffada; text-align:center; }
722
+ .compare-table tr.first td { text-align:center; }
723
+ .compare-table tr.first td .product-name { font-size:13px; font-weight:bold; margin:0 0 5px; color:#203548; }
724
+ .compare-table tr.first td .product-name a { color:#203548; }
725
+ .compare-table tr.first td .ratings { width:69px; margin:0 auto; }
726
+ .compare-table tr.first td p,
727
+ .compare-table tr.add-to-row td p { margin:0; }
728
+
729
+ /* Block: Recently Viewed */
730
+ .block-viewed .block-title strong { background-image:url(../images/i_block-viewed.gif); }
731
+
732
+ /* Block: Recently Compared */
733
+ .block-compared .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
734
+
735
+ /* Block: Poll */
736
+ .block-poll .block-title strong { background-image:url(../images/i_block-poll.gif); }
737
+ .block-poll .block-subtitle { font-size:12px; }
738
+ .block-poll label { color:#777; font-weight:bold; }
739
+ .block-poll input.radio { float:left; margin:1px -18px 0 0; }
740
+ .block-poll .label { display:block; margin-left:18px; }
741
+ .block-poll li { padding:3px 9px; }
742
+ .block-poll .actions { margin:5px 0 0; }
743
+ .block-poll button.button span { border-color:#406a83; background:#618499; }
744
+ .block-poll .answer { font-weight:bold; }
745
+ .block-poll .votes { float:right; margin-left:10px; }
746
+
747
+ /* Block: Orders and Returns */
748
+ .block-gr-search li { padding:3px 9px; }
749
+ .block-gr-search button.button span { border-color:#406a83; background:#618499; }
750
+
751
+ /* Block: Tags */
752
+ .block-tags .block-title strong { background-image:url(../images/i_block-tags.gif); }
753
+ .block-tags .block-content .tags-list { background:none; border:0; font-size:12px; }
754
+ .block-tags .block-content a { color:#1b2d3b; }
755
+ .block-tags .actions { text-align:right; }
756
+ .block-tags .actions a { float:none; }
757
+
758
+ /* Block: Subscribe */
759
+ .block-subscribe .block-content { padding:5px 10px; }
760
+ .block-subscribe .block-title strong { background-image:url(../images/i_block-subscribe.gif); }
761
+ .block-subscribe label { font-weight:bold; color:#666; }
762
+ .block-subscribe input.input-text { display:block; width:167px; margin:3px 0; }
763
+ .block-subscribe .actions { background:none; padding:0; margin:3px 0 0; text-align:left; }
764
+ .block-subscribe .actions button.button { float:none; }
765
+ .block-subscribe .actions button.button span { border-color:#406a83; background:#618499; }
766
+
767
+ /* Block: Reorder */
768
+ .block-reorder .block-title strong { background-image:url(../images/i_block-list.gif); }
769
+ .block-reorder input.checkbox { float:left; margin:2px -20px 0 0; }
770
+ .block-reorder .product-name { margin-left:20px; }
771
+ .block-reorder .validation-advice { margin:3px 9px 7px; }
772
+
773
+ /* Block: Banner */
774
+ .block-banner { border:0; }
775
+ .block-banner .block-content { padding:0; text-align:center; }
776
+
777
+ /* Block: Login */
778
+ .block-login .block-title strong { background-image:url(../images/i_ma-info.gif); }
779
+ .block-login .block-content { padding:5px 10px; }
780
+ .block-login label { font-weight:bold; color:#666; }
781
+ .block-login input.input-text { display:block; width:167px; margin:3px 0; }
782
+ .block-login .actions { background:none; padding:0; margin:3px 0 0; }
783
+ .block-login .actions button.button span { border-color:#406a83; background:#618499; }
784
+
785
+ /* Paypal */
786
+ .sidebar .paypal-logo { display:block; margin:10px 0; text-align:center; }
787
+ .sidebar .paypal-logo a { float:none; }
788
+ /* ======================================================================================= */
789
+
790
+
791
+ /* Category Page ========================================================================= */
792
+ .category-title { border:0; margin:0 0 7px; }
793
+ .category-image { width:100%; overflow:hidden; margin:0 0 10px; text-align:center; }
794
+ .category-image img {}
795
+ .category-description { margin:0 0 10px; }
796
+ .category-products {}
797
+
798
+ /* View Type: Grid */
799
+ .products-grid { border-bottom:1px solid #d9ddd3; background:url(../images/bkg_grid.gif) 0 0 repeat; position:relative; }
800
+ .products-grid.last { border-bottom:0; }
801
+ .products-grid li.item { float:left; width:138px; padding:12px 10px 80px; }
802
+ .products-grid .product-image { display:block; width:135px; height:135px; margin:0 0 10px; }
803
+ .products-grid .product-name { /*min-height:2.7em;*/ margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
804
+ .products-grid .product-name a { color:#203548; }
805
+ .products-grid .price-box { margin:5px 0; }
806
+ .products-grid .availability { line-height:21px; }
807
+ .products-grid .actions { position:absolute; bottom:12px; }
808
+ .col2-left-layout .products-grid,
809
+ .col2-right-layout .products-grid { width:632px; margin:0 auto; }
810
+ .col1-layout .products-grid { width:790px; margin:0 auto; }
811
+
812
+ /* View Type: List */
813
+ .products-list li.item { border-bottom:1px solid #d9ddd3; padding:12px 10px; }
814
+ .products-list li.item.last { border-bottom:0; }
815
+ .products-list .product-image { float:left; width:135px; height:135px; margin:0 0 10px; }
816
+ .products-list .product-shop { margin-left:150px; }
817
+ .products-list .product-name { margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
818
+ .products-list .product-name a { color:#203548; }
819
+ .products-list .price-box { float:left; margin:3px 13px 5px 0; }
820
+ .products-list .availability { float:left; margin:3px 0 0; }
821
+ .products-list .desc { clear:both; padding:6px 0 0; margin:0 0 15px; line-height:1.35; }
822
+ .products-list .desc .link-learn { font-size:11px; }
823
+ .products-list .add-to-links { clear:both; }
824
+ .products-list .add-to-links li { display:inline; }
825
+ .products-list .add-to-links .separator { display:inline; margin:0 2px; }
826
+ /* ======================================================================================= */
827
+
828
+
829
+ /* Product View ========================================================================== */
830
+ /* Rating */
831
+ .no-rating { margin:0; }
832
+
833
+ .ratings { font-size:11px; line-height:1.25; margin:7px 0; }
834
+ .ratings strong { float:left; margin:1px 3px 0 0; }
835
+ .ratings .rating-links { margin:0; }
836
+ .ratings .rating-links .separator { margin:0 2px; }
837
+ .ratings dt {}
838
+ .ratings dd {}
839
+ .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; }
840
+ .rating-box .rating { float:left; height:13px; background:url(../images/bkg_rating.gif) 0 100% repeat-x; }
841
+ .ratings .rating-box { float:left; margin-right:3px; }
842
+ .ratings .amount {}
843
+
844
+ .ratings-table th,
845
+ .ratings-table td { font-size:11px; line-height:1.15; padding:3px 0; }
846
+ .ratings-table th { font-weight:bold; padding-right:8px; }
847
+
848
+ /* Availability */
849
+ .availability { margin:0; }
850
+ .availability span { font-weight:bold; }
851
+ .availability.in-stock span {}
852
+ .availability.out-of-stock span { color:#d83820; }
853
+
854
+ .availability-only { margin:10px 0 7px; line-height:16px; background:url(../images/i_availability_only.gif) 0 50% no-repeat; padding-left:15px; }
855
+ .availability-only span,
856
+ .availability-only a { border-bottom:1px dashed #751d02; color:#000; }
857
+ .availability-only a { background:url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat; cursor:pointer; padding-right:15px; text-decoration:none; }
858
+ .availability-only .expanded { background-position:100% -15px; }
859
+ .availability-only strong { color:#be2c00; }
860
+
861
+ .availability-only-details { margin:0 0 7px; }
862
+ .availability-only-details th { background:#d2d6d9; font-size:10px; padding:0 8px; }
863
+ .availability-only-details td { background:#ebf0f3; border-bottom:1px solid #fff; font-size:11px; padding:2px 8px 1px; }
864
+ .availability-only-details tr.odd td.last { color:#d95e00; font-weight:bold; }
865
+
866
+ .product-view .product-shop .availability { font-size:11px; }
867
+ .product-view .product-shop .availability span { font-weight:normal; }
868
+
869
+ /* Email to a Friend */
870
+ .email-friend { margin:0; }
871
+
872
+ /* Alerts */
873
+ .alert-price { margin:0; font-size:11px; }
874
+ .alert-stock { margin:0; font-size:11px; }
875
+
876
+ /********** < Product Prices */
877
+ .price { white-space:nowrap !important; }
878
+
879
+ .price-box { margin:5px 0; }
880
+ .price-box .price { font-weight:bold; color:#c76200; }
881
+
882
+ /* Regular price */
883
+ .regular-price { color:#c76200; }
884
+ .regular-price .price { font-weight:bold; font-size:13px; color:#c76200; }
885
+ .block .regular-price,
886
+ .block .regular-price .price { color:#2f2f2f; }
887
+
888
+ /* Old price */
889
+ .old-price { margin:0; }
890
+ .old-price .price-label { white-space:nowrap; color:#999; }
891
+ .old-price .price { font-weight:bold; color:#c76200; text-decoration:line-through; }
892
+
893
+ /* Special price */
894
+ .special-price { margin:0; padding:3px 0; }
895
+ .special-price .price-label { font-size:13px; font-weight:bold; white-space:nowrap; color:#cd5033; }
896
+ .special-price .price { font-size:13px; font-weight:bold; color:#c76200; }
897
+
898
+ /* Minimal price (as low as) */
899
+ .minimal-price { margin:0; }
900
+ .minimal-price .price-label { font-weight:bold; white-space:nowrap; }
901
+
902
+ .minimal-price-link { display:block; }
903
+ .minimal-price-link .label {color:#1e7ec8;}
904
+ .minimal-price-link .price { font-weight:normal; color:#1e7ec8; }
905
+
906
+ /* Excluding tax */
907
+ .price-excluding-tax { display:block; color:#999; }
908
+ .price-excluding-tax .label { white-space:nowrap; color:#999; }
909
+ .price-excluding-tax .price { font-size:13px; font-weight:normal; color:#c76200; }
910
+
911
+ /* Including tax */
912
+ .price-including-tax { display:block; color:#999; }
913
+ .price-including-tax .label { white-space:nowrap; color:#999; }
914
+ .price-including-tax .price { font-size:13px; font-weight:bold; color:#c76200; }
915
+
916
+ /* Configured price */
917
+ .configured-price { margin:0; }
918
+ .configured-price .price-label { font-weight:bold; white-space:nowrap; }
919
+ .configured-price .price { font-weight:bold; }
920
+
921
+ /* FPT */
922
+ .weee { display:block; font-size:11px; color:#444; }
923
+ .weee .price { font-size:11px; font-weight:normal; }
924
+
925
+ /* Excl tax (for order tables) */
926
+ .price-excl-tax { display:block; }
927
+ .price-excl-tax .label { display:block; white-space:nowrap; }
928
+ .price-excl-tax .price { display:block; }
929
+
930
+ /* Incl tax (for order tables) */
931
+ .price-incl-tax { display:block; }
932
+ .price-incl-tax .label { display:block; white-space:nowrap; }
933
+ .price-incl-tax .price { display:block; font-weight:bold; }
934
+
935
+ /* Price range */
936
+ .price-from { margin:0; }
937
+ .price-from .price-label { font-weight:bold; white-space:nowrap; }
938
+
939
+ .price-to { margin:0; }
940
+ .price-to .price-label { font-weight:bold; white-space:nowrap; }
941
+
942
+ /* Price notice next to the options */
943
+ .price-notice { padding-left:10px; color:#999; }
944
+ .price-notice .price { font-weight:bold; color:#2f2f2f; }
945
+
946
+ /* Price as configured */
947
+ .price-as-configured { margin:0; }
948
+ .price-as-configured .price-label { font-weight:bold; white-space:nowrap; }
949
+
950
+ .price-box-bundle { padding:0 0 10px 0; }
951
+ .price-box-bundle .price-box { margin:0 !important; padding:0 !important; }
952
+ .price-box-bundle .price { color:#555; }
953
+ /********** Product Prices > */
954
+
955
+ /* Tier Prices */
956
+ .product-pricing,
957
+ .tier-prices { margin:10px 0; padding:10px; background-color:#f4f7f7; border:1px solid #dadddd; color:#424242; }
958
+ .tier-prices li { line-height:1.4; background:url(../images/i_tier.gif) no-repeat 0 3px; padding:2px 0 2px 10px; }
959
+ .tier-prices .benefit { font-style:italic; font-weight:bold; color:#2f2f2f; }
960
+ .tier-prices .price { font-weight:bold; color:#2f2f2f; }
961
+
962
+ .tier-prices-grouped li { padding:2px 0; color:#e26703; }
963
+ .tier-prices-grouped li .price { font-weight:bold; }
964
+
965
+ /* Add to Links */
966
+ .add-to-links { font-size:11px; margin:5px 0 0; }
967
+ .add-to-links .separator { display:none; }
968
+
969
+ /* Add to Cart */
970
+ .add-to-cart label { float:left; margin-right:5px; font-weight:bold; color:#666; }
971
+ .add-to-cart .qty { float:left; margin-right:5px; }
972
+ .add-to-cart button.button { float:left; }
973
+ .add-to-cart .paypal-logo { clear:left; margin:0; text-align:right; }
974
+ .add-to-cart .paypal-logo .paypal-or { clear:both; display:block; margin:5px 60px 5px 0; }
975
+ .product-view .add-to-cart .paypal-logo { margin:0; }
976
+
977
+ /* Add to Links + Add to Cart */
978
+ .add-to-box { margin:10px 0; }
979
+ .add-to-box .add-to-cart { float:left; }
980
+ .add-to-box .or { float:left; font-weight:bold; margin:0 7px; color:#666; }
981
+ .add-to-box .add-to-links { float:left; margin:0; font-size:12px !important; line-height:1.25 !important; text-align:left !important; }
982
+ .add-to-box .add-to-links li { display:block !important; }
983
+ .add-to-box .add-to-links li .separator { display:none !important; }
984
+
985
+
986
+ .product-view { border:1px solid #c4c6c8; }
987
+
988
+ .product-essential { padding:25px; background:#fff url(../images/bkg_product-view.gif) 100% 0 no-repeat; }
989
+ .product-essential h2 { font:bold 13px/1.35 Arial, Helvetica, sans-serif; }
990
+
991
+ .product-collateral { background:#faf7ee url(../images/bkg_product_collateral.gif) 0 0 repeat-x; padding:25px; }
992
+ .product-collateral h2 { font-weight:bold; font-size:15px; color:#e26703; border-bottom:1px solid #e5dcc3; padding:0 0 1px; margin:0 0 15px; }
993
+ .product-collateral .box-collateral { margin:0 0 25px; }
994
+
995
+ /* Product Images */
996
+ .product-view .product-img-box { float:left; width:267px; }
997
+ .col3-layout .product-view .product-img-box { float:none; margin:0 auto; }
998
+ .product-view .product-img-box .product-image { margin:0 0 13px; }
999
+ .product-view .product-img-box .product-image-zoom { position:relative; width:265px; height:265px; overflow:hidden; z-index:9; }
1000
+ .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
1001
+ .product-view .product-img-box .zoom-notice { font-size:11px; margin:0 0 5px; text-align:center; }
1002
+ .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; }
1003
+ .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
1004
+ .product-view .product-img-box .zoom #track { position:relative; height:18px; }
1005
+ .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; }
1006
+ .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
1007
+ .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
1008
+ .product-view .product-img-box .more-views h2 { font-size:11px; border-bottom:1px solid #ccc; margin:0 0 8px; text-transform:uppercase; }
1009
+ .product-view .product-img-box .more-views ul { margin-left:-9px }
1010
+ .product-view .product-img-box .more-views li { float:left; margin:0 0 8px 9px; }
1011
+ .product-view .product-img-box .more-views li a { float:left; width:56px; height:56px; border:2px solid #ddd; overflow:hidden; }
1012
+
1013
+ .product-image-popup { margin:0 auto; }
1014
+ .product-image-popup .buttons-set { float:right; clear:none; border:0; margin:0; padding:0; }
1015
+ .product-image-popup .nav { font-weight:bold; margin:0 100px; text-align:center; }
1016
+ .product-image-popup .image { display:block; margin:10px 0; }
1017
+ .product-image-popup .image-label { font-size:13px; font-weight:bold; margin:0 0 10px; color:#2f2f2f; }
1018
+
1019
+ /* Product Shop */
1020
+ .product-view .product-shop { float:right; width:330px; }
1021
+ .col1-layout .product-view .product-shop { float:right; width:545px; }
1022
+ .col3-layout .product-view .product-shop { float:none; width:auto; }
1023
+ .product-view .product-shop .product-name { margin:0 0 5px; }
1024
+ .product-view .product-shop .product-name h1 { margin:0; font:bold 15px/1.35 Arial, Helvetica, sans-serif; }
1025
+ .product-view .product-shop .availability { margin:10px 0; }
1026
+ .product-view .product-shop .short-description { margin:10px 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; padding:10px 0 0; }
1027
+ .product-view .product-shop .price-box { margin:10px 0; }
1028
+ .product-view .product-shop .add-to-links { margin:0; }
1029
+ .product-view .product-shop .add-to-links { font-size:12px; text-align:right; }
1030
+ .product-view .product-shop .add-to-links li,
1031
+ .product-view .product-shop .add-to-links li .separator { display:inline; }
1032
+ .product-view .product-shop .add-to-links a { color:#1E7EC8 !important; font-weight:normal !important; }
1033
+
1034
+ /* Product Options */
1035
+ .product-options { margin:20px 0 0; padding:10px 15px 20px; position:relative; background-color:#f6f6f6; border:1px solid #e4e4e4; }
1036
+ .product-options dt { padding:10px 0 0; font-weight:normal; }
1037
+ .product-options dt label { font-weight:bold; color:#2f2f2f; }
1038
+ .product-options dt label.required em { color:#eb340a; margin-left:5px; }
1039
+ .product-options dd .qty-holder { display:block; padding:10px 0 0; }
1040
+ .product-options dd .qty-holder label { vertical-align:middle; }
1041
+ .product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#2f2f2f; }
1042
+ .product-options dd { padding:5px 10px 15px; margin:0 0 5px; border-bottom:1px solid #e4e4e4; }
1043
+ .product-options dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
1044
+ .product-options dd input.input-text { width:98%; }
1045
+ .product-options dd input.datetime-picker { width:150px; }
1046
+ .product-options dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
1047
+ .product-options dd textarea { width:98%; height:8em; }
1048
+ .product-options dd select { width:99%; }
1049
+ .product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
1050
+ .product-options ul.options-list { margin-right:5px; }
1051
+ .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1052
+ .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1053
+ .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1054
+ .product-options ul.options-list .label { display:block; margin-left:18px; }
1055
+ .product-options ul.options-list label { font-weight:normal; }
1056
+ .product-options ul.validation-failed { padding:0 7px; }
1057
+ .product-options p.note { margin:0; font-size:11px; }
1058
+ .product-options p.required { position:absolute; right:20px; top:20px; }
1059
+
1060
+ .product-options-bottom { background-color:#fffada; padding:15px 20px; border:1px solid #e4e4e4; border-top:0; }
1061
+ .product-options-bottom .product-pricing,
1062
+ .product-options-bottom .tier-prices { margin:0; padding:0 0 10px; border:0; background:0; color:#e26703; }
1063
+ .product-options-bottom .tier-prices li { background:0; padding:2px 0; }
1064
+ .product-options-bottom .tier-prices .price,
1065
+ .product-options-bottom .tier-prices .benefit { color:#e26703; }
1066
+ .product-options-bottom .price-box { float:left; margin:0; padding:0; }
1067
+ .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1068
+ .col3-layout .product-options-bottom .price-box { float:none; padding:0 0 5px; }
1069
+ .product-options-bottom .price-label { float:left; padding-right:5px; }
1070
+ .product-options-bottom .price-tax { float:left; }
1071
+ .product-options-bottom .add-to-cart { float:right; }
1072
+ .product-shop .product-options-bottom { margin:0 0 10px; }
1073
+ .product-shop .product-options-bottom .price-box { float:none; margin:0 0 5px; }
1074
+ .product-shop .product-options-bottom .price-label { float:none; padding-right:0; }
1075
+ .product-shop .product-options-bottom .price-tax { float:none; }
1076
+ .product-shop .product-options-bottom .add-to-cart-box { clear:both; float:left; padding-top:12px; }
1077
+ .product-shop .product-options-bottom .add-to-links { clear:both; padding:5px 0 0; text-align:right; }
1078
+
1079
+ /* Grouped Product */
1080
+ .product-view .grouped-items-table .price-box { margin:0; padding:0; }
1081
+
1082
+ /* Block: Description */
1083
+ .product-view .box-description {}
1084
+
1085
+ /* Block: Additional */
1086
+ .product-view .box-additional .data-table th,
1087
+ .product-view .box-additional .data-table td { line-height:1.25; }
1088
+
1089
+ /* Block: Upsell */
1090
+ .product-view .box-up-sell h2 { border-bottom:0; padding:0; margin:0 0 8px; }
1091
+ .product-view .box-up-sell .products-grid { width:100%; border:1px solid #e5dcc3; }
1092
+ .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; }
1093
+ .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1094
+ .product-view .box-up-sell .products-grid td.last { border-right:0; }
1095
+ .product-view .box-up-sell .products-grid td img { border:1px solid #e5dcc3; }
1096
+ .product-view .box-up-sell .products-grid .product-image { text-align:center; }
1097
+ .product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; }
1098
+ .product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1099
+
1100
+ /* Block: Tags */
1101
+ .product-view .box-tags { margin:0; }
1102
+ .product-view .box-tags h3 { font-size:13px; }
1103
+ .product-view .box-tags .product-tags { display:block; margin:0 0 15px; }
1104
+ .product-view .box-tags .product-tags li { display:inline; background:url(../images/bkg_pipe3.gif) 100% 4px no-repeat; padding:0 7px 0 4px; }
1105
+ .product-view .box-tags .product-tags li.first { padding-left:0; }
1106
+ .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1107
+ .product-view .box-tags .form-add label { display:block; font-size:13px; font-weight:bold; margin:0 0 5px; color:#0a263c;}
1108
+ .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; }
1109
+ .product-view .box-tags .form-add input.input-text { width:299px; }
1110
+ .product-view .box-tags .form-add button.button span { border-color:#406a83; background:#618499; }
1111
+ .product-view .box-tags .note { margin:3px 0 0; padding:0 0 0 23px; font-size:11px; }
1112
+
1113
+ /* Block: Reviews */
1114
+ .product-view .box-reviews dl { margin:15px 0; }
1115
+ .product-view .box-reviews dt a,
1116
+ .product-view .box-reviews dt span { font-weight:bold; }
1117
+ .product-view .box-reviews dd { margin:0 0 15px; }
1118
+ .product-view .box-reviews dd small { font-style:italic; }
1119
+ .product-view .box-reviews .form-add { margin:15px 0 0; }
1120
+ .product-view .box-reviews .form-add h3 { font-size:13px; font-weight:normal; }
1121
+ .product-view .box-reviews .form-add h3 span { font-weight:bold; }
1122
+ .product-view .box-reviews .form-add h4 { font-size:12px; }
1123
+ .product-view .box-reviews .form-add .data-table td { text-align:center; }
1124
+ .product-view .box-reviews .form-add .form-list { margin:15px 0 0; }
1125
+ .product-view .box-reviews .form-add .form-list .input-box { width:360px; }
1126
+ .product-view .box-reviews .form-add .form-list input.input-text,
1127
+ .product-view .box-reviews .form-add .form-list textarea { width:354px; }
1128
+
1129
+ /* Send a Friend */
1130
+ .send-friend .form-list { width:615px; overflow:hidden; }
1131
+ .send-friend .form-list li { margin-right:-15px; }
1132
+ .send-friend .form-list li p { margin:0 15px 0 0; }
1133
+ .send-friend .form-list .field { width:315px; }
1134
+ .send-friend .form-list .input-box { width:300px; }
1135
+ .send-friend .form-list input.input-text,
1136
+ .send-friend .form-list textarea { width:294px; }
1137
+ .send-friend .form-list li.wide .input-box { width:612px; }
1138
+ .send-friend .form-list li.wide textarea { width:609px; }
1139
+ .send-friend .buttons-set .limit { float:right; margin:0 7px 0 0; font-size:11px; line-height:21px; }
1140
+ /* ======================================================================================= */
1141
+
1142
+
1143
+ /* Content Styles ================================================================= */
1144
+ .product-name { margin:0; font-size:1em; font-weight:normal; }
1145
+ .product-name a { color:#1e7ec8; }
1146
+
1147
+ /* Product Tags */
1148
+ .tags-list { display:block; font-size:13px; border:1px solid #c1c4bc; background:#f8f7f5; padding:10px; }
1149
+ .tags-list li { display:inline !important; margin:0 4px 0 0; }
1150
+ .tags-list li a { color:#1b2d3b; }
1151
+
1152
+ /* Advanced Search */
1153
+ .advanced-search .form-list label { width:160px; padding-right:10px; }
1154
+ .advanced-search .form-list .input-box,
1155
+ .advanced-search .form-list .input-range { float:left; clear:none; }
1156
+ .advanced-search-amount { margin:0 0 10px; }
1157
+ .advanced-search-summary { margin:10px 0; border:1px solid #e9d7c9; background:#fff6f1; padding:10px; }
1158
+ .advanced-search-summary ul { float:left; width:49%; }
1159
+ .advanced-search-summary strong { color:#E17C24; padding-left:15px; background:url(../images/i_search_criteria.gif) 0 3px no-repeat; }
1160
+ .advanced-search-summary p { clear:both; font-weight:bold; margin:0; }
1161
+
1162
+ /* CMS Home Page */
1163
+ .cms-home .subtitle {}
1164
+ .cms-index-index .subtitle {}
1165
+
1166
+ /* Sitemap */
1167
+ .page-sitemap .links { text-align:right; margin:0 8px -22px 0; }
1168
+ .page-sitemap .links a { text-decoration:none; position:relative; }
1169
+ .page-sitemap .links a:hover { text-decoration:underline; }
1170
+ .page-sitemap .sitemap { margin:12px; }
1171
+ .page-sitemap .sitemap a { color:#1b2d3b; }
1172
+ .page-sitemap .sitemap li { margin:3px 0; }
1173
+ .page-sitemap .sitemap li.level-0 { margin:10px 0 0; font-weight:bold; }
1174
+ .page-sitemap .sitemap li.level-0 a { color:#1e7ec8; }
1175
+
1176
+ /* RSS */
1177
+ .rss-title h1 { background:url(../images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
1178
+ .rss-table .link-rss { display:block; line-height:1.55; background-position:0 4px; }
1179
+ /* ======================================================================================= */
1180
+
1181
+
1182
+ /* Shopping Cart ========================================================================= */
1183
+ .cart .page-title { border-bottom:0; margin:0 0 12px; }
1184
+ .cart .page-title h1 { margin:10px 0 0; }
1185
+
1186
+ /* Checkout Types */
1187
+ .cart .page-title .checkout-types li { margin:0 0 5px; }
1188
+ .cart .title-buttons .checkout-types { float:right; }
1189
+ .cart .title-buttons .checkout-types li { float:left; margin:0 0 5px 5px; }
1190
+ .cart .checkout-types .paypal-or { margin:0 8px; line-height:2.3; }
1191
+ .cart .totals .checkout-types .paypal-or { clear:both; display:block; padding:8px 55px 0 0; line-height:1.0; font-size:11px; }
1192
+
1193
+ /* Shopping Cart Table */
1194
+ .cart-table th { padding:2px 10px; }
1195
+ .cart-table td { padding:10px; }
1196
+ .cart-table .product-name { font-weight:bold; margin:0 0 5px; color:#2f2f2f; }
1197
+ .cart-table .item-msg { margin:5px 0; font-size:11px; font-weight:bold; color:#df280a; }
1198
+ .cart-table tfoot td { padding:5px 10px; }
1199
+ .cart-table .btn-continue { float:left; }
1200
+ .cart-table .btn-empty span,
1201
+ .cart-table .btn-continue span,
1202
+ .cart-table .btn-update span { border-color:#406a83; background:#618499; }
1203
+ .cart-table .btn-update,
1204
+ .cart-table .btn-empty { float:right; }
1205
+ .cart-table .btn-update { margin-left:10px; }
1206
+
1207
+ /* Shopping Cart Collateral boxes */
1208
+ .cart .cart-collaterals { padding:25px 0 0; }
1209
+ .cart .cart-collaterals .col2-set { float:left; width:605px; }
1210
+ .cart .cart-collaterals .col2-set .col-2 { width:294px; }
1211
+
1212
+ .cart .crosssell { border:1px solid #cec3b6; background:#fafaec; padding:12px 15px; }
1213
+ .cart .crosssell h2 { font-size:13px; font-weight:bold; }
1214
+ .cart .crosssell .product-image { float:left; width:75px; height:75px; border:1px solid #d0cdc9; }
1215
+ .cart .crosssell .product-details { margin-left:90px; }
1216
+ .cart .crosssell .product-name { font-weight:bold; }
1217
+ .cart .crosssell li.item { margin:12px 0; }
1218
+ .cart .crosssell .link-compare { font-weight:normal; }
1219
+
1220
+ /* Discount Codes & Estimate Shipping and Tax Boxes */
1221
+ .cart .discount,
1222
+ .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; }
1223
+ .cart .discount h2,
1224
+ .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; }
1225
+ .cart .discount button span,
1226
+ .cart .shipping button span { border-color:#406a83; background:#618499; }
1227
+ .cart .discount .buttons-set,
1228
+ .cart .shipping .buttons-set { margin:10px 0 0; border:0; padding:0; text-align:left; }
1229
+ .cart .discount .buttons-set button.button,
1230
+ .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1231
+
1232
+ .cart .discount h2 { background-image:url(../images/i_discount.gif); }
1233
+ .cart .discount .input-box { margin:8px 0 0; width:260px; }
1234
+ .cart .discount input.input-text { width:254px; }
1235
+
1236
+ .cart .shipping h2 { background-image:url(../images/i_shipping.gif); }
1237
+ .cart .shipping .sp-methods { margin:10px 0 0; padding:5px 0 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; }
1238
+
1239
+ /* Shopping Cart Totals */
1240
+ .cart .totals { float:right; width:268px; background:#dee5e8; border:1px solid #bebcb7; }
1241
+ .cart .totals table { width:100%; margin:7px 0; }
1242
+ .cart .totals td { padding:1px 15px 1px 7px; }
1243
+ .cart .totals tr.last td {}
1244
+ .cart .totals tfoot th { padding:5px 15px 5px 7px; }
1245
+ .cart .totals tfoot td { padding-top:5px; padding-bottom:5px; }
1246
+ .cart .totals tfoot th strong,
1247
+ .cart .totals tfoot td strong { font-size:15px; }
1248
+ .cart .totals .checkout-types { font-size:13px; padding:8px 15px 15px; text-align:right; }
1249
+ .cart .totals .checkout-types li { clear:both; margin:10px 0; }
1250
+
1251
+ /* Options Tool Tip */
1252
+ .item-options dt { font-weight:bold; font-style:italic; }
1253
+ .item-options dd { padding-left:10px; margin:0 0 6px; }
1254
+ .truncated { cursor:help; }
1255
+ .truncated a.dots { cursor:help; }
1256
+ .truncated a.details { cursor:help; }
1257
+ .truncated .truncated_full_value { position:relative; z-index:999; }
1258
+ .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; }
1259
+ .truncated .truncated_full_value .item-options > p { font-weight:bold; text-transform:uppercase; }
1260
+ .truncated .show .item-options { top:-20px; left:50%; }
1261
+ .col-left .truncated .show .item-options { left:15px; top:7px; }
1262
+ .col-right .truncated .show .item-options { left:-240px; top:7px; }
1263
+ /* ======================================================================================= */
1264
+
1265
+
1266
+ /* Checkout ============================================================================== */
1267
+ /********** < Common Checkout Styles */
1268
+ /* Shipping and Payment methods */
1269
+ .sp-methods { margin:0 0 8px; }
1270
+ .sp-methods dt { margin:13px 0 5px; font-weight:bold; }
1271
+ .sp-methods dd {}
1272
+ .sp-methods dd li { margin:5px 0; }
1273
+ .sp-methods label { font-weight:bold; color:#666; }
1274
+ .sp-methods .price { font-weight:bold; }
1275
+ .sp-methods .form-list { padding-left:20px; }
1276
+ .sp-methods .form-list li { margin:0 0 8px; }
1277
+ .sp-methods select.month { width:154px; margin-right:10px; }
1278
+ .sp-methods select.year { width:96px; }
1279
+ .sp-methods input.cvv { width:3em !important; }
1280
+
1281
+ .sp-methods .checkmo-list li { margin:0 0 5px; }
1282
+ .sp-methods .checkmo-list label { width:135px; padding-right:10px; text-align:right; }
1283
+ .sp-methods .checkmo-list address { float:left; }
1284
+
1285
+ .sp-methods .centinel-logos a { margin-right:3px; }
1286
+ .sp-methods .centinel-logos img { vertical-align:middle; }
1287
+
1288
+ .sp-methods .release-amounts { margin:0.5em 0; }
1289
+ .sp-methods .release-amounts button { float:left; margin:5px 10px 0 0; }
1290
+
1291
+ .please-wait { float:right; }
1292
+ .please-wait img { vertical-align:middle; }
1293
+ .cvv-what-is-this { font-size:11px; cursor:help; margin-left:10px; }
1294
+
1295
+ /* Tooltip */
1296
+ .tool-tip { border:1px solid #7BA7C9; background:#EAF6FF; padding:15px 20px; position:absolute; z-index:9999; }
1297
+ .tool-tip .btn-close { margin:-9px -14px 0; text-align:right; }
1298
+ .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; }
1299
+ .tool-tip .tool-tip-content { padding:5px; }
1300
+
1301
+ /* Gift Messages */
1302
+ .gift-messages h3 { font-size:12px; font-weight:bold; color:#e87403; }
1303
+ .gift-messages p.control { color:#8e8d8b; }
1304
+ .gift-messages-form { position:relative; }
1305
+ .gift-messages-form label { float:none !important; position:static !important; }
1306
+ .gift-messages-form h4 { font-size:12px; font-weight:bold; color:#e87403; }
1307
+ .gift-messages-form .whole-order { margin:0 0 25px; }
1308
+ .gift-messages-form .item { margin:0 0 10px; }
1309
+ .gift-messages-form .item .product-img-box { float:left; width:75px; }
1310
+ .gift-messages-form .item .product-image { margin:0 0 7px; }
1311
+ .gift-messages-form .item .number { margin:0; font-weight:bold; text-align:center; color:#8a8987; }
1312
+ .gift-messages-form .item .details { margin-left:90px; }
1313
+ .gift-messages-form .item .details .product-name { font-size:13px; font-weight:bold; margin:0 0 10px; }
1314
+ .gift-messages-form .item .details .form-list .field { width:255px; }
1315
+ .gift-messages-form .item .details .form-list .input-box { width:240px; }
1316
+ .gift-messages-form .item .details .form-list input.input-text { width:234px; }
1317
+ .gift-messages-form .item .details .form-list li.wide .input-box { width:500px; }
1318
+ .gift-messages-form .item .details .form-list li.wide textarea { width:494px; }
1319
+
1320
+ .gift-message-link { font-size:11px; background:url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat; padding-right:7px; }
1321
+ .gift-message-link.expanded { background-position:100% -40px; }
1322
+ .gift-message-row { background:#f2efe9; }
1323
+ .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; }
1324
+
1325
+ /* Checkout Agreements */
1326
+ .checkout-agreements li { margin:30px 0; }
1327
+ .checkout-agreements .agreement-content { overflow:auto; height:12em; padding:10px; background-color:#fbfaf6; border:1px solid #bbb6a5; }
1328
+ .checkout-agreements .agree { margin:0; padding:10px 0 10px 11px; }
1329
+ .checkout-agreements .agree input.checkbox { margin-right:6px; }
1330
+ .checkout-agreements .agree label { font-weight:bold; color:#666; }
1331
+
1332
+ .opc .checkout-agreements { border:1px solid #d9dde3; border-width:0 1px; padding:5px 30px; }
1333
+ .opc .checkout-agreements li { margin:20px 0 0; }
1334
+ .opc .checkout-agreements .agreement-content { background-color:#fff; border-color:#e4e4e4; padding:5px; }
1335
+ .opc .checkout-agreements .agree { padding-left:6px; }
1336
+
1337
+ /* Centinel */
1338
+ .centinel {}
1339
+ .centinel .authentication { border:1px solid #ddd; background:#fff; }
1340
+ .centinel .authentication iframe { width:99%; height:400px; background:transparent !important; margin:0 !important; padding:0 !important; border:0 !important; }
1341
+
1342
+ .opc .centinel { border:1px solid #bbb6a5; border-width:0 1px 1px; padding:10px 30px; }
1343
+
1344
+ /* Generic Info Set */
1345
+ .info-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1346
+ .info-set h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1347
+ .info-set h3,
1348
+ .info-set h4 { font-size:13px; font-weight:bold; color:#E26703; }
1349
+ .info-set h2 a,
1350
+ .info-set h3 a,
1351
+ .info-set h4 a { font-weight:normal; }
1352
+ .info-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1353
+ .info-set h3.legend { margin:0 0 10px; color:#0a263c; }
1354
+ .info-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1355
+ .info-set .box { margin:0 0 15px; }
1356
+ .info-set .box h2 { color:#e26703; }
1357
+ .info-set .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1358
+ .info-set .data-table .product-name a { font-weight:bold !important; }
1359
+ .info-set .data-table .item-options { margin:5px 0 0; }
1360
+ /********** Common Checkout Styles > */
1361
+
1362
+ /* One Page Checkout */
1363
+ .block-progress { border:0; margin:0; }
1364
+ .block-progress .block-title { background:none; border:0; padding:0; margin:0 0 5px; }
1365
+ .block-progress .block-title strong { font-size:13px; color:#0a263c; }
1366
+ .block-progress .block-content { background:none; }
1367
+ .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; }
1368
+ .block-progress dd { background:#eee; border:1px solid #a3aeb3; border-top:0; padding:8px 13px; margin:0 0 6px; }
1369
+ .block-progress dt.complete { margin:0; background:#d0dce1; color:#5e8ab4; }
1370
+ .block-progress dd.complete {}
1371
+ .block-progress p { margin:0; }
1372
+ .block-progress .cards-list dt { background:none; border:0 none; color:inherit; font-size:12px; margin:5px 0; padding:0; }
1373
+ .block-progress .cards-list dd { border:0 none; margin:0; padding:0; }
1374
+ .block-progress .cards-list .info-table th { font-weight:normal; }
1375
+
1376
+ /* show/hide "change" link for progress step depend on complete status
1377
+ * should be placed in .css file */
1378
+ .opc-block-progress dt.complete a,
1379
+ .opc-block-progress dt.complete .separator { display: inline; }
1380
+ .opc-block-progress dt a,
1381
+ .opc-block-progress dt .separator { display: none; }
1382
+
1383
+ .opc .buttons-set { margin-top:0; padding-top:2em; }
1384
+ .opc .buttons-set p.required { margin:0; padding:0 0 10px; }
1385
+ .opc .buttons-set .back-link small { display:none; }
1386
+ .opc .buttons-set .back-link a { background:url(../images/i_arrow-top.gif) 0 50% no-repeat; padding-left:16px; }
1387
+ .opc .buttons-set.disabled button.button { display:none; }
1388
+ .opc .buttons-set .please-wait { height:21px; line-height:21px; }
1389
+ .opc .ul { list-style:disc outside; padding-left:18px; }
1390
+
1391
+ .opc { position:relative; }
1392
+ .opc li.section {}
1393
+
1394
+ .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; }
1395
+ .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; }
1396
+ .opc .step-title h2 { float:left; margin:0; font:bold 13px/16px Arial, Helvetica, sans-serif; color:#999; }
1397
+ .opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }
1398
+
1399
+ .opc .allow .step-title { background:#d0dce1; border:1px solid #a3aeb3; border-bottom:0; color:#a4b3b9; cursor:pointer; }
1400
+ .opc .allow .step-title .number { background:#dbe6eb; border-color:#dbe6eb; color:#a4b3b9; }
1401
+ .opc .allow .step-title h2 { color:#a4b3b9; }
1402
+ /*.opc .allow .step-title a { display:block; }*/
1403
+
1404
+ .opc .active .step-title { background:#f9f3e3; border:1px solid #bbafa0; padding-bottom:5px; color:#f18200; cursor:default; }
1405
+ .opc .active .step-title .number { background:#f18200; border-color:#f19900; color:#fff; }
1406
+ .opc .active .step-title h2 { color:#f18200; }
1407
+ /*.opc .active .step-title a { display:none; }*/
1408
+
1409
+ .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; }
1410
+ .opc .step .tool-tip { right:30px; }
1411
+
1412
+ #opc-login .buttons-set { border-top:0; }
1413
+ #opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
1414
+ #opc-login h4 { font-size:1em; font-weight:bold; margin:0; color:#2f2f2f; }
1415
+
1416
+ #opc-shipping_method .buttons-set { border-top:0; }
1417
+ .opc .gift-messages-form { margin:0 -30px; background:#f6f1eb; border:1px solid #e9e4de; border-width:1px 0; padding:22px 24px 22px 30px; }
1418
+ .opc .gift-messages-form .inner-box { padding:5px; height:260px; overflow:auto; }
1419
+
1420
+ #opc-review .step { border:0; padding:0; }
1421
+ #opc-review .product-name { font-weight:bold; color:#0a263c; }
1422
+ #opc-review .item-options { margin:5px 0 0; }
1423
+ #opc-review .buttons-set { padding:20px 30px; border:1px solid #d9dde3; border-width:0 1px 1px; }
1424
+ #opc-review .buttons-set p { margin:0; line-height:40px; }
1425
+ #opc-review .buttons-set .please-wait { height:40px; line-height:40px; }
1426
+ #opc-review .authentication { margin:0 auto; width:570px; }
1427
+ #opc-review .warning-message { color:#222; font-weight:bold; text-align:center; padding:10px 10px 0; }
1428
+
1429
+ /* Multiple Addresses Checkout */
1430
+ .checkout-progress { padding:0 90px; margin:0 0 20px; }
1431
+ .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; }
1432
+ .checkout-progress li.active { border-top-color:#e96200; color:#e96200; }
1433
+
1434
+ .multiple-checkout h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1435
+ .multiple-checkout h3,
1436
+ .multiple-checkout h4 { font-size:13px; font-weight:bold; color:#E26703; }
1437
+ .multiple-checkout h2 a,
1438
+ .multiple-checkout h3 a,
1439
+ .multiple-checkout h4 a { font-weight:normal; }
1440
+ .multiple-checkout .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1441
+ .multiple-checkout .data-table .product-name a { font-weight:bold !important; }
1442
+ .multiple-checkout .data-table .item-options { margin:5px 0 0; }
1443
+
1444
+ .multiple-checkout .gift-messages { margin:15px 0 0; }
1445
+
1446
+ .multiple-checkout .tool-tip { top:50%; margin-top:-120px; right:20px; }
1447
+
1448
+ .multiple-checkout .col2-set,
1449
+ .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; }
1450
+ .multiple-checkout .col2-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1451
+ .multiple-checkout .col2-set h3.legend { margin:0 0 10px; color:#0a263c; }
1452
+ .multiple-checkout .col2-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1453
+ .multiple-checkout .box { margin:0 0 15px; }
1454
+ .multiple-checkout .box h2 { color:#e26703; }
1455
+
1456
+ .multiple-checkout .place-order .please-wait { float:right; padding:27px 7px 0 0; }
1457
+ .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; }
1458
+ .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; }
1459
+ .multiple-checkout .place-order .grand-total .inner div { display:inline; }
1460
+ .multiple-checkout .place-order .grand-total big { display:inline; margin-right:12px; }
1461
+ .multiple-checkout .place-order .grand-total .price { color:#E26703; }
1462
+ .multiple-checkout .place-order .grand-total button.button span { font-size:16px; }
1463
+ .multiple-checkout .place-order .grand-total button.button span span { padding:0 45px 0 36px; }
1464
+
1465
+ /* Step 1 */
1466
+ .multiple-checkout .title-buttons button.button span { border-color:#406a83; background:#618499; }
1467
+ #multiship-addresses-table td { padding:10px; }
1468
+ #multiship-addresses-table tfoot td { padding:5px 10px; }
1469
+ #multiship-addresses-table tfoot button.button span { border-color:#406a83; background:#618499; }
1470
+
1471
+ /* Step 2 */
1472
+ .multiple-checkout .gift-messages-form .item .details .form-list { width:100%; overflow:hidden; }
1473
+ .multiple-checkout .gift-messages-form .item .details .form-list li { margin-right:-15px; }
1474
+ .multiple-checkout .gift-messages-form .item .details .form-list .field { width:230px; }
1475
+ .multiple-checkout .gift-messages-form .item .details .form-list .input-box { width:215px; }
1476
+ .multiple-checkout .gift-messages-form .item .details .form-list input.input-text { width:209px; }
1477
+ .multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box { width:445px; }
1478
+ .multiple-checkout .gift-messages-form .item .details .form-list li.wide textarea { width:439px; }
1479
+ .checkout-multishipping-shipping .box-sp-methods { border:1px solid #d9d2be; background:#f9f3e3; padding:13px; position:relative; }
1480
+ .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; }
1481
+
1482
+ /* Step 3 */
1483
+ .checkout-multishipping-billing .multiple-checkout { position:relative; }
1484
+ /* ======================================================================================= */
1485
+
1486
+
1487
+ /* Account Login/Create Pages ============================================================ */
1488
+ .account-login .content { min-height:345px; padding:14px 21px; background:#faf7ee url(../images/bkg_login-box.gif) 0 0 repeat-x; border:1px solid #bbb6a5; border-bottom:0; }
1489
+ .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; }
1490
+ .account-login .new-users h2 { background-image:url(../images/i_page1.gif)}
1491
+ .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1492
+ .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; }
1493
+
1494
+ .account-create {}
1495
+
1496
+ /* Captcha ================================================================================ */
1497
+ .captcha-note { clear:left; padding-top:5px; }
1498
+ .captcha-image { float:left; display:inline; margin:0; position:relative; width:258px; }
1499
+ .captcha-image .captcha-img { border:1px solid #b6b6b6; vertical-align:bottom; width:100%; }
1500
+ .registered-users .captcha-image { margin:0;}
1501
+ .captcha-reload { cursor:pointer; position:absolute; top:2px; right:2px;}
1502
+ .captcha-reload.refreshing { animation:rotate 1.5s infinite linear; -webkit-animation:rotate 1.5s infinite linear; -moz-animation:rotate 1.5s infinite linear; }
1503
+
1504
+ @-webkit-keyframes rotate {
1505
+ 0% { -webkit-transform:rotate(0); }
1506
+ 0% { -webkit-transform:rotate(-360deg); }
1507
+ }
1508
+ @-moz-keyframes rotate {
1509
+ 0% { -moz-transform:rotate(0); }
1510
+ 0% { -moz-transform:rotate(-360deg); }
1511
+ }
1512
+ @keyframes rotate {
1513
+ 0% { transform:rotate(0); }
1514
+ 0% { transform:rotate(-360deg); }
1515
+ }
1516
+
1517
+ /* Remember Me Popup ===================================================================== */
1518
+ .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; }
1519
+
1520
+ .remember-me label { float:none; margin:0 6px; }
1521
+ .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; }
1522
+ .remember-me-popup h3 { background:#d9e5ee; border-bottom:1px solid #ccc; font-size:14px; padding:5px 10px; }
1523
+ .remember-me-popup .remember-me-popup-head { position:relative; }
1524
+ .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; }
1525
+ .remember-me-popup .remember-me-popup-body { padding:10px; }
1526
+ .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; }
1527
+ /* Remember Me Popup ===================================================================== */
1528
+
1529
+
1530
+ /* My Account ============================================================================= */
1531
+ .my-account .title-buttons .link-rss { float:none; margin:0; }
1532
+
1533
+ /********** < Dashboard */
1534
+ .dashboard .welcome-msg { margin:0 8em 1.5em 0; }
1535
+ .dashboard .welcome-msg p { margin:0; }
1536
+ .dashboard .col2-set { margin:0 0 15px; }
1537
+
1538
+ /* General Box */
1539
+ .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; }
1540
+ .box-account .box-head { border-bottom:1px solid #d9dde3; margin:0 0 10px; text-align:right; }
1541
+ .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; }
1542
+
1543
+ .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; }
1544
+ .dashboard .box .box-title h3,
1545
+ .dashboard .box .box-title h4 { float:left; font-size:13px; font-weight:bold; margin:0; }
1546
+
1547
+ /* Block: Recent Orders */
1548
+ .dashboard .box-recent .box-head h2 { background-image:url(../images/i_folder-table.gif); }
1549
+
1550
+ /* Block: Account Information */
1551
+ .dashboard .box-info .box-head h2 { background-image:url(../images/i_ma-info.gif); }
1552
+ .dashboard .box-info h4 { font-size:11px; font-weight:bold; text-transform:uppercase; }
1553
+
1554
+ /* Block: Reviews */
1555
+ .dashboard .box-reviews .box-head h2 { background-image:url(../images/i_ma-reviews.gif); }
1556
+ .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; }
1557
+ .dashboard .box-reviews .details { margin-left:20px; }
1558
+ .dashboard .box-reviews li.item { margin:0 0 7px; }
1559
+ .dashboard .box-reviews li.item.last { margin:0; }
1560
+ .dashboard .box-reviews .ratings { margin:7px 0 0; }
1561
+
1562
+ /* Block: Tags */
1563
+ .dashboard .box-tags .box-head h2 { background-image:url(../images/i_ma-tags.gif); }
1564
+ .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; }
1565
+ .dashboard .box-tags .details { margin-left:20px; }
1566
+ .dashboard .box-tags li.item { margin:0 0 7px; }
1567
+ .dashboard .box-tags li.item.last { margin:0; }
1568
+ .dashboard .box-tags .tags strong,
1569
+ .dashboard .box-tags .tags ul,
1570
+ .dashboard .box-tags .tags ul li { display:inline; }
1571
+ /********** Dashboard > */
1572
+
1573
+ /* Address Book */
1574
+ .addresses-list h2 { font-weight:bold; font-size:13px; color:#e26703; text-transform:uppercase; }
1575
+ .addresses-list h3 { font-weight:bold; font-size:13px; }
1576
+ .addresses-list address { margin:0 0 3px; }
1577
+ .addresses-list p { margin:0; }
1578
+ .addresses-list a { font-weight:bold; }
1579
+ .addresses-list .link-remove { color:#646464; }
1580
+ .addresses-list .separator { margin:0 3px; }
1581
+ .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; }
1582
+ .addresses-list li.empty { background:none; border:0; padding:0; }
1583
+ .addresses-list li.empty p { font-weight:bold; }
1584
+ .addresses-list .addresses-additional li.item { background:none; border:0; padding:0; }
1585
+
1586
+ /* Order View */
1587
+ .order-info { background:#dee5e8; border:1px solid #d0cbc1; padding:4px 8px; margin:0 0 8px; }
1588
+ .order-info dt,
1589
+ .order-info dd,
1590
+ .order-info ul,
1591
+ .order-info li { display:inline; }
1592
+ .order-info .current { font-weight:bold; }
1593
+ .order-info li { margin:0 3px; }
1594
+
1595
+ .order-date { margin:10px 0; }
1596
+
1597
+ .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; }
1598
+ .order-info-box h2 { font-weight:bold; font-size:13px; }
1599
+ .order-info-box .box-payment p { margin:0 0 3px; }
1600
+ .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
1601
+
1602
+ .order-items { width:100%; overflow-x:auto; }
1603
+ .order-items h2,
1604
+ .order-items h3 { clear:none; font-weight:bold; font-size:13px; padding:0; margin:0 0 5px; color:#0a263c; }
1605
+ .order-items .product-name { font-size:1em !important; font-weight:bold !important; }
1606
+ .order-items .link-print { color:#1e7ec8; font-weight:normal; }
1607
+ .order-items .order-links { text-align:right; }
1608
+
1609
+ .order-additional { margin:15px 0; }
1610
+ /* Order Gift Message */
1611
+ .gift-message dt strong { color:#666; }
1612
+ .gift-message dd { font-size:13px; margin:5px 0 0; }
1613
+ /* Order Comments */
1614
+ .order-about dt { font-weight:bold; }
1615
+ .order-about dd { font-size:13px; margin:0 0 7px; }
1616
+
1617
+ .tracking-table { margin:0 0 15px; }
1618
+ .tracking-table th { font-weight:bold; white-space:nowrap; }
1619
+
1620
+ .tracking-table-popup { width:100%; }
1621
+ .tracking-table-popup th { font-weight:bold; white-space:nowrap; }
1622
+ .tracking-table-popup th,
1623
+ .tracking-table-popup td { padding:1px 8px; }
1624
+
1625
+ /* Order Print Pages */
1626
+ .page-print .print-head { margin:0 0 15px; }
1627
+ .page-print .print-head .logo { float:left; }
1628
+ .page-print .print-head address { float:left; margin-left:15px; }
1629
+ .page-print h1 { font-size:16px; font-weight:bold; }
1630
+ .page-print h2,
1631
+ .page-print h3 { font-size:13px; font-weight:bold; }
1632
+ .page-print h2.h2 { font-size:16px; font-weight:bold; }
1633
+ .page-print .order-date { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 10px; margin:0 0 10px; }
1634
+ .page-print .col2-set { margin:0 0 10px; }
1635
+ /* Price Rewrites */
1636
+ .page-print .gift-message-link { display:none; }
1637
+ .page-print .price-excl-tax,
1638
+ .page-print .price-incl-tax { display:block; white-space:nowrap; }
1639
+ .page-print .cart-price,
1640
+ .page-print .price-excl-tax .label,
1641
+ .page-print .price-incl-tax .label,
1642
+ .page-print .price-excl-tax .price,
1643
+ .page-print .price-incl-tax .price { display:inline; }
1644
+
1645
+ /* My Wishlist */
1646
+ .my-wishlist .data-table td { padding:10px; }
1647
+ .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 0 5px; }
1648
+ .my-wishlist textarea { display:block; width:97%; height:109px; }
1649
+ .my-wishlist .buttons-set { margin-top:2em; }
1650
+ .my-wishlist .buttons-set button.button { float:none; }
1651
+ .my-wishlist .buttons-set .btn-add span,
1652
+ .my-wishlist .buttons-set .btn-share span { border-color:#406a83; background:#618499; }
1653
+ #wishlist-table .add-to-links { white-space:nowrap; }
1654
+
1655
+ /* My Tags */
1656
+ .my-tag-edit { float:left; margin:0 0 10px; }
1657
+ .my-tag-edit .btn-remove { float:right; margin:4px 0 0 5px; }
1658
+ #my-tags-table { clear:both; }
1659
+ #my-tags-table td { padding:10px; }
1660
+ #my-tags-table .add-to-links { white-space:nowrap; }
1661
+
1662
+ /* My Reviews */
1663
+ #my-reviews-table td { padding:10px; }
1664
+
1665
+ .product-review .product-img-box { float:left; width:140px; }
1666
+ .product-review .product-img-box .product-image { display:block; width:125px; height:125px; }
1667
+ .product-review .product-img-box .label { font-size:11px; margin:0 0 3px; }
1668
+ .product-review .product-img-box .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1669
+ .product-review .product-details { margin-left:150px; }
1670
+ .product-review .product-name { font-size:16px; font-weight:bold; margin:0 0 10px; }
1671
+ .product-review h3 { font-size:12px; margin:0 0 3px; color:#2f2f2f; }
1672
+ .product-review .ratings-table { margin:0 0 10px; }
1673
+ .product-review dt { font-weight:bold; }
1674
+ .product-review dd { font-size:13px; margin:5px 0 0; }
1675
+
1676
+ /* Billing Agreements */
1677
+ .billing-agreements .info-box{ margin:15px 0; }
1678
+ .billing-agreements .form-list li select { float:left; }
1679
+ .billing-agreements .form-list li button.button { float:left; margin-left:10px; }
1680
+ .billing-agreements .table-caption { font-weight:bold; font-size:13px; }
1681
+ /* ======================================================================================= */
1682
+
1683
+
1684
+ /* MAP Popup============================================================================== */
1685
+ .cart-msrp-totals { color:red; font-size:12px !important; font-weight:bold; margin:10px 10px 0; padding:10px; text-align:right; text-transform:uppercase;}
1686
+ .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; }
1687
+
1688
+ .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; }
1689
+ .map-popup-heading { background:#d9e5ee; border-bottom:1px solid #ccc; padding:5px 30px 5px 10px; width:260px; }
1690
+ .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; }
1691
+ .map-popup-arrow { background:url(../images/map_popup_arrow.gif) no-repeat; position:absolute; left:50%; top:-10px; height:10px; width:19px; }
1692
+ .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; }
1693
+ .map-popup-content { border-top:1px solid #eee; padding:10px; overflow:hidden; text-align:left; width:280px; }
1694
+ .map-popup-checkout { display:inline; float:right; text-align:right; }
1695
+ .map-popup-checkout span { display:block; padding-right:30px; }
1696
+ .map-popup-checkout .paypal-logo { margin:0 0 5px; }
1697
+ .map-popup-price .price-box,
1698
+ .map-popup-price .price-box .special-price { margin:0; padding:0; }
1699
+ .map-popup-price { margin:5px 0 0; }
1700
+ .map-popup-text { clear:right; margin:0 10px; padding:10px 0; text-align:left; word-wrap:break-word; }
1701
+ .map-popup-only-text { border-top:1px solid #ddd; }
1702
+ /* ======================================================================================= */
1703
+
1704
+
1705
+ /* Footer ================================================================================ */
1706
+ .footer-container { border-top:15px solid #b6d1e2; }
1707
+ .footer { width:930px; margin:0 auto; padding:10px 10px 50px; }
1708
+ .footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
1709
+ .footer .store-switcher label { font-weight:bold; vertical-align:middle; }
1710
+ .footer .store-switcher select { padding:0; vertical-align:middle; }
1711
+ .footer a { color:#fff; text-decoration:none; }
1712
+ .footer a:hover { text-decoration:underline; }
1713
+ .footer .bugs { margin:13px 0 0; color:#ecf3f6; }
1714
+ .footer .bugs a { color:#ecf3f6; text-decoration:underline; }
1715
+ .footer .bugs a:hover { text-decoration:none; }
1716
+ .footer address { margin:0 0 20px; color:#ecf3f6; }
1717
+ .footer address a { color:#ecf3f6; text-decoration:underline; }
1718
+ .footer address a:hover { text-decoration:none; }
1719
+ .footer ul { display:inline; }
1720
+ .footer ul.links { display:block; }
1721
+ .footer li { display:inline; background:url(../images/bkg_pipe2.gif) 100% 60% no-repeat; padding:0 7px 0 4px; }
1722
+ .footer li.last { background:none !important; padding-right:0 !important; }
1723
+ .footer-container .bottom-container { margin:0 0 5px; }
1724
+ /* ======================================================================================= */
1725
+
1726
+ /* Sample Data============================================================================ */
1727
+ .home-callout { margin-bottom:12px; }
1728
+ .home-callout img { display:block }
1729
+ .home-spot { float:left; width:470px; margin-left:20px; }
1730
+ .best-selling h3 { margin:12px 0 6px 0; color:#e25203; font-size:1.2em; }
1731
+ .best-selling table { border-top:1px solid #ccc; }
1732
+ .best-selling tr.odd { background:#eee url(../images/best_selling_tr_odd_bg.gif) 0 100% repeat-x; }
1733
+ .best-selling tr.even { background:#fff url(../images/best_selling_tr_even_bg.gif) 0 100% repeat-x; }
1734
+ .best-selling td { width:50%; border-bottom:1px solid #ccc; padding:8px 10px 8px 8px; font-size:11px; }
1735
+ .best-selling .product-img { float:left; border:2px solid #dcdcdc; }
1736
+ .best-selling .product-description { margin-left:107px; line-height:1.3em; }
1737
+ .best-selling a.product-name,
1738
+ .home-spot .best-selling a.product-name:hover { color:#203548; }
1739
+ /* ======================================================================================= */
1740
+
1741
+
1742
+ /* Clears ================================================================================ */
1743
+ .clearer:after,
1744
+ .header-container:after,
1745
+ .header-container .top-container:after,
1746
+ .header:after,
1747
+ .header .quick-access:after,
1748
+ #nav:after,
1749
+ .main:after,
1750
+ .footer:after,
1751
+ .footer-container .bottom-container:after,
1752
+ .col-main:after,
1753
+ .col2-set:after,
1754
+ .col3-set:after,
1755
+ .col3-layout .product-options-bottom .price-box:after,
1756
+ .col4-set:after,
1757
+ .search-autocomplete li:after,
1758
+ .block .block-content:after,
1759
+ .block .actions:after,
1760
+ .block li.item:after,
1761
+ .block-poll li:after,
1762
+ .block-layered-nav .currently li:after,
1763
+ .page-title:after,
1764
+ .products-grid:after,
1765
+ .products-list li.item:after,
1766
+ .box-account .box-head:after,
1767
+ .dashboard .box .box-title:after,
1768
+ .box-reviews li.item:after,
1769
+ .box-tags li.item:after,
1770
+ .pager:after,
1771
+ .sorter:after,
1772
+ .ratings:after,
1773
+ .add-to-box:after,
1774
+ .add-to-cart:after,
1775
+ .product-essential:after,
1776
+ .product-collateral:after,
1777
+ .product-view .product-img-box .more-views ul:after,
1778
+ .product-view .box-tags .form-add:after,
1779
+ .product-view .product-shop .short-description:after,
1780
+ .product-view .box-description:after,
1781
+ .product-options .options-list li:after,
1782
+ .product-options-bottom:after,
1783
+ .product-review:after,
1784
+ .cart:after,
1785
+ .cart-collaterals:after,
1786
+ .cart .crosssell li.item:after,
1787
+ .opc .step-title:after,
1788
+ .checkout-progress:after,
1789
+ .multiple-checkout .place-order:after,
1790
+ .group-select li:after,
1791
+ .form-list li:after,
1792
+ .form-list .field:after,
1793
+ .buttons-set:after,
1794
+ .page-print .print-head:after,
1795
+ .advanced-search-summary:after,
1796
+ .gift-messages-form .item:after,
1797
+ .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1798
+ /* ======================================================================================= */
1799
+
1800
+ .guest-select {width:305px !important;}
skin/frontend/Kartparadigm/default/css/zoome-min.css ADDED
@@ -0,0 +1 @@
 
1
+ @charset "utf-8";.zm-wrap{max-width:100%;margin:auto;position:relative;zoom:1;display:inline-block;*display:inline}.zm-preload{display:none !important}.zm-hover{position:absolute;z-index:9998;top:0;left:0;display:none}#zm-magnifier{position:absolute;display:none;overflow:hidden;z-index:9999; box-shadow:0 0 5px rgba(0,0,0,.6),0 0 3px rgba(0,0,0,.13) inset;border:3px solid #ddd;border:3px solid rgba(255,255,255,.3)}#zm-magnifier img{max-width:100000px;position:relative;top:0;left:0;z-index:0;cursor:none;box-shadow:0 0 5px rgba(0,0,0,.3)}#zm-magnifier span{position:absolute;top:0px;right:0px;display:block;background:#fff;z-index:9999;overflow:visible;font-size:10px;line-height:1em;padding:2px 6px;border-radius:0 0 0 4px;background:rgba(255,255,255,.5);box-shadow:-1px 1px 2px rgba(0,0,0,.15);font-family:Verdana,Geneva,sans-serif;text-shadow:0 0 4px #fff}.zm-gray{filter:gray}.zm-blur{filter:blur(add=0,direction=0,strength=4)}.zm-trans{background:url(trans_bg.html);width:100%;height:100%;}
skin/frontend/Kartparadigm/default/dist/easyzoom.css ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * EasyZoom core styles
3
+ */
4
+ .easyzoom {
5
+ position: relative;
6
+
7
+ /* 'Shrink-wrap' the element */
8
+ display: inline-block;
9
+ *display: inline;
10
+ *zoom: 1;
11
+ }
12
+
13
+ .easyzoom img {
14
+ vertical-align: bottom;
15
+ }
16
+
17
+ .easyzoom.is-loading img {
18
+ cursor: progress;
19
+ }
20
+
21
+ .easyzoom.is-ready img {
22
+ cursor: crosshair;
23
+ }
24
+
25
+ .easyzoom.is-error img {
26
+ cursor: not-allowed;
27
+ }
28
+
29
+ .easyzoom-notice {
30
+ position: absolute;
31
+ top: 50%;
32
+ left: 50%;
33
+ z-index: 150;
34
+ width: 10em;
35
+ margin: -1em 0 0 -5em;
36
+ line-height: 2em;
37
+ text-align: center;
38
+ background: #FFF;
39
+ box-shadow: 0 0 10px #888;
40
+ }
41
+
42
+ .easyzoom-flyout {
43
+ position:absolute;
44
+ z-index: 100;
45
+ overflow: hidden;
46
+ background: #FFF;
47
+ }
48
+
49
+ /**
50
+ * EasyZoom layout variations
51
+ */
52
+ .easyzoom--overlay .easyzoom-flyout {
53
+ top: 0;
54
+ left: 0;
55
+ width: 100%;
56
+ height: 100%;
57
+ }
58
+
59
+ .easyzoom--adjacent .easyzoom-flyout {
60
+ top: 0;
61
+ left: 100%;
62
+ width: 100%;
63
+ height: 100%;
64
+ margin-left: 20px;
65
+ }
skin/frontend/Kartparadigm/default/dist/easyzoom.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ /*!
2
+ * @name image-zoom
3
+ * @author Matt Hinchliffe <http://maketea.co.uk>
4
+ * @modified Monday, September 15th, 2014
5
+ * @version 2.2.1
6
+ */!function(a){"use strict";function b(b,c){return this.$target=a(b),this.opts=a.extend({},i,c),void 0===this.isOpen&&this._init(),this}var c,d,e,f,g,h,i={loadingNotice:"Loading image",errorNotice:"The image could not be loaded",errorDuration:2500,preventClicks:!0,onShow:void 0,onHide:void 0};b.prototype._init=function(){var b=this;this.$link=this.$target.find("a"),this.$image=this.$target.find("img"),this.$flyout=a('<div class="easyzoom-flyout" />'),this.$notice=a('<div class="easyzoom-notice" />'),this.$target.on("mouseenter.easyzoom touchstart.easyzoom",function(a){b.isMouseOver=!0,a.originalEvent.touches&&1!==a.originalEvent.touches.length||(a.preventDefault(),b.show(a,!0))}).on("mousemove.easyzoom touchmove.easyzoom",function(a){b.isOpen&&(a.preventDefault(),b._move(a))}).on("mouseleave.easyzoom touchend.easyzoom",function(){b.isMouseOver=!1,b.isOpen&&b.hide()}),this.opts.preventClicks&&this.$target.on("click.easyzoom","a",function(a){a.preventDefault()})},b.prototype.show=function(a,b){var g,h,i,j,k=this;return this.isReady?(this.$target.append(this.$flyout),g=this.$target.width(),h=this.$target.height(),i=this.$flyout.width(),j=this.$flyout.height(),c=this.$zoom.width()-i,d=this.$zoom.height()-j,e=c/g,f=d/h,this.isOpen=!0,this.opts.onShow&&this.opts.onShow.call(this),void(a&&this._move(a))):void this._load(this.$link.attr("href"),function(){(k.isMouseOver||!b)&&k.show(a)})},b.prototype._load=function(b,c){var d=new Image;this.$target.addClass("is-loading").append(this.$notice.text(this.opts.loadingNotice)),this.$zoom=a(d),d.onerror=a.proxy(function(){var a=this;this.$notice.text(this.opts.errorNotice),this.$target.removeClass("is-loading").addClass("is-error"),this.detachNotice=setTimeout(function(){a.$notice.detach(),a.detachNotice=null},this.opts.errorDuration)},this),d.onload=a.proxy(function(){d.width&&(this.isReady=!0,this.$notice.detach(),this.$flyout.html(this.$zoom),this.$target.removeClass("is-loading").addClass("is-ready"),c())},this),d.style.position="absolute",d.src=b},b.prototype._move=function(a){if(0===a.type.indexOf("touch")){var b=a.touches||a.originalEvent.touches;g=b[0].pageX,h=b[0].pageY}else g=a.pageX||g,h=a.pageY||h;var i=this.$target.offset(),j=h-i.top,k=g-i.left,l=Math.ceil(j*f),m=Math.ceil(k*e);0>m||0>l||m>c||l>d?this.hide():this.$zoom.css({top:""+-1*l+"px",left:""+-1*m+"px"})},b.prototype.hide=function(){this.isOpen&&(this.$flyout.detach(),this.isOpen=!1,this.opts.onHide&&this.opts.onHide.call(this))},b.prototype.swap=function(b,c,d){this.hide(),this.isReady=!1,this.detachNotice&&clearTimeout(this.detachNotice),this.$notice.parent().length&&this.$notice.detach(),a.isArray(d)&&(d=d.join()),this.$target.removeClass("is-loading is-ready is-error"),this.$image.attr({src:b,srcset:d}),this.$link.attr("href",c)},b.prototype.teardown=function(){this.hide(),this.$target.removeClass("is-loading is-ready is-error").off(".easyzoom"),this.detachNotice&&clearTimeout(this.detachNotice),delete this.$link,delete this.$zoom,delete this.$image,delete this.$notice,delete this.$flyout,delete this.isOpen,delete this.isReady},a.fn.easyZoom=function(c){return this.each(function(){var d=a.data(this,"easyZoom");d?void 0===d.isOpen&&d._init():a.data(this,"easyZoom",new b(this,c))})},"function"==typeof define&&define.amd?define(function(){return b}):"undefined"!=typeof module&&module.exports&&(module.exports=b)}(jQuery);
skin/frontend/Kartparadigm/default/images/arrow_button.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/arrow_item.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/arrow_switch.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/arrow_totop.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/best_selling_tr_even_bg.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/best_selling_tr_odd_bg.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_account_box.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-actions.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-currency.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-layered-dd.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-layered-dt.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-layered-label.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-layered-li.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-layered-title.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-layered1.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-title-account.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_block-title.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_body.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_buttons-set1.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_checkout.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_collapse-gm.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_collapse.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_divider1.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_form-search.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_grand-total.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_grid.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_header.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_login-box.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_main1.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_main2.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_nav0.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_nav1.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_nav2.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_opc-title-off.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_pipe1.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_pipe2.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_pipe3.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_product-view.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_product_collateral.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_rating.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_sp-methods.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_tfoot.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_th-v.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_th.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/bkg_toolbar.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_checkout.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_edit.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_gm-close.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_google_checkout.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_overlay.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_overlay_product.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_paypal_checkout.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_place_order.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_previous.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_proceed_to_checkout.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_proceed_to_checkout_dis.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_remove.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_remove2.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_search.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_trash.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/btn_window_close.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/calendar.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/cart_top.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/catalog/product/placeholder/image.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/catalog/product/placeholder/small_image.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/catalog/product/placeholder/thumbnail.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/close-button.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/compare.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/cvv.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/cvv.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/email.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/fam_book_open.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/free_shipping_callout.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/fullimage1.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/fullimage2.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/fullimage3.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/fullimage31.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/grid-cal.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/home_left_callout.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/home_main_callout.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_arrow-top.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_asc_arrow.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_availability_only.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_availability_only_arrow.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-cart.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-currency.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-list.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-poll.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-related.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-subscribe.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-tags.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-viewed.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_block-wishlist.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_desc_arrow.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_discount.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_folder-table.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_grid_mode.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_list_mode.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_ma-info.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_ma-reviews.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_ma-tags.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_msg-error.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_msg-note.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_msg-success.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_notice.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_page1.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_page2.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_pager-next.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_pager-prev.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_print.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_rss-big.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_rss.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_search_criteria.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_shipping.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_tag_add.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_tier.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_type_grid.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/i_type_list.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/icon_breadcrumb.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/icon_cart.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/icon_cart_listing_mask.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/icon_cart_product.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/login-bkg.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/login_bg.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/logo.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/logo_email.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/logo_print.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/magnifier_handle.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/map_popup_arrow.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/404_callout1.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/404_callout2.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/about_us_img.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/best_selling_img01.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/best_selling_img02.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/best_selling_img03.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/best_selling_img04.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/best_selling_img05.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/best_selling_img06.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/cell_phone_landing_banner1.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/col_left_callout.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/col_right_callout.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/electronics_cellphones.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/electronics_digitalcameras.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/electronics_laptops.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/furniture_callout_spot.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/furnitures_bed_room.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/furnitures_living_room.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/head_electronics_cellphones.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/head_electronics_digicamera.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/head_electronics_laptops.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/laptop_callout_mid1.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/laptop_callout_mid2.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/laptop_callout_mid3.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/laptop_callout_spot.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/media/shirts_landing_banner1.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/np_cart_thumb.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/np_more_img.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/np_product_main.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/np_thumb.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/np_thumb2.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/opc-ajax-loader.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/pager_arrow_left.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/pager_arrow_right.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/ph_callout_left_rebel.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/ph_callout_left_top.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/product-labels.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/product_zoom_overlay_magnif.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/rating.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/search.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/selectbox_arrow.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/slider-arrows.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/slider_bg.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/slider_btn_zoom_in.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/slider_btn_zoom_out.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/slideshow_arrows.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/spacer.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/validation_advice_bg.gif ADDED
Binary file
skin/frontend/Kartparadigm/default/images/wishlist.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/catalog/category/placeholder/image.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/catalog/category/placeholder/small_image.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/catalog/category/placeholder/thumbnail.jpg ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/tab_account.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/tab_cart.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/tab_home.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/tab_more.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/tab_page.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/tab_search.png ADDED
Binary file
skin/frontend/Kartparadigm/default/images/xmlconnect/tab_shop.png ADDED
Binary file
skin/frontend/Kartparadigm/default/js/blurbox.js ADDED
@@ -0,0 +1,306 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ;(function (factory) {
2
+ if (typeof define === 'function' && define.amd) {
3
+ // AMD. Register as an anonymous module.
4
+ define(['jquery'], factory);
5
+ } else {
6
+ // Browser globals
7
+ factory(jQuery);
8
+ }
9
+ }(function ($, undefined) {
10
+ "use strict";
11
+
12
+ var style = '\
13
+ body, html { width: 100%; height: 100%; margin: 0; padding: 0; }\
14
+ .blurbox-noscroll { overflow: hidden; height: 100%; width: 100%; }\
15
+ .blurbox-hidden { display: none !important; }\
16
+ #blurbox-wrapper { overflow: auto; overflow-x:hidden;padding: 10px; border-radius: 5px; background-color: white; opacity: 0; position: fixed; top: 50%; left: 50%; z-index: 9999; width: 50%; height: 50%; max-width: 82%; max-height: 95%; display: block; }\
17
+ #blurbox-wrapper.blurbox-small { box-sizing: border-box; }\
18
+ #blurbox-wrapper.blurbox-show { opacity: 1; }\
19
+ #blurbox-darkenbg { opacity: 0; top: 0; left: 0; z-index: 9998; position: fixed; height: 100%; width: 100%; }\
20
+ #blurbox-darkenbg.blurbox-show { opacity: 1; }\
21
+ @media (max-width: 480px) {\
22
+ #blurbox-wrapper { margin: 0; left: 0; height: 100%; width: 80%; top: 100%; opacity: 1; border-radius: 0; max-height: none; max-width: none; }\
23
+ #blurbox-wrapper.blurbox-show { top: 0; }\
24
+ }\
25
+ ',
26
+ ffsvg = 'url("data:image/svg+xml;utf8,'+encodeURIComponent('<svg version="1.1" xmlns="http://www.w3.org/2000/svg"><filter id="blur"><feGaussianBlur stdDeviation="')+'{blur}'+encodeURIComponent('" /></filter></svg>')+'#blur")';
27
+
28
+ $('head').append('<style>'+style+'</style>');
29
+ var pluginName = 'blurbox',
30
+ plugin = function( element, options ) {
31
+ this.element = $(element);
32
+ this.options = $.extend( {}, plugin.defaults, options);
33
+ this._init();
34
+ };
35
+
36
+ $.extend(plugin, {
37
+ defaults: {
38
+ blur: 3,
39
+ animateBlur: true,
40
+ duration: 300,
41
+ autosize: true,
42
+ bgColor: 'rgba(0,0,0,0.2)',
43
+ bodyContent: null
44
+ },
45
+ activeBlurbox: null,
46
+ darkenbg: null,
47
+ wrapper: null,
48
+ bodyContent: null,
49
+ styleProps: {
50
+ filter: 'filter',
51
+ transition: 'transition',
52
+ },
53
+ cssProps: {
54
+ filter: 'filter',
55
+ transition: 'transition'
56
+ },
57
+ stylePropVals: {
58
+ filter: 'blur({blur}px)',
59
+ transition: '{prop} {dur}ms'
60
+ },
61
+ stylePrefixes: ['Moz', 'Webkit', 'Khtml', 'O', 'Ms'],
62
+ transitionEndEvents: 'webkitTransitionEnd mozTransitionEnd msTransitionEnd oTransitionEnd',
63
+ _init: function() {
64
+ this.darkenbg = $('#blurbox-darkenbg');
65
+ if(!this.darkenbg.length) {
66
+ this.darkenbg = $('<div id="blurbox-darkenbg" class="blurbox-hidden">');
67
+ $('body').append(this.darkenbg);
68
+ this.darkenbg.click(function() {
69
+ plugin.activeBlurbox.hide();
70
+ });
71
+ }
72
+
73
+ this.wrapper = $('#blurbox-wrapper');
74
+ if(!this.wrapper.length) {
75
+ this.wrapper = $('<div id="blurbox-wrapper" class="blurbox-hidden">');
76
+ $('body').append(this.wrapper);
77
+ }
78
+
79
+ this.bodyContent = $('body').children(':first');
80
+
81
+ this._determineProps();
82
+ },
83
+ _testStylePrefixes: function(s, prop, testVal) {
84
+ // test no prefix first
85
+ if(s[prop] !== undefined) {
86
+ s[prop] = testVal;
87
+ if(s[testprop] === testVal) {
88
+ plugin.styleProps[prop] = prop;
89
+ plugin.cssProps[prop] = prop;
90
+ return;
91
+ }
92
+ }
93
+ var capprop = prop.substr(0,1).toUpperCase()+prop.substr(1),
94
+ testprop;
95
+ $.each(this.stylePrefixes, function(i,v) {
96
+ testprop = v+capprop;
97
+ // check if the property exists
98
+ if(s[testprop] !== undefined) {
99
+ // try setting it (for webkit)
100
+ s[testprop] = testVal;
101
+ if(s[testprop] === testVal) {
102
+ plugin.styleProps[prop] = testprop;
103
+ plugin.cssProps[prop] = '-'+v.toLowerCase()+'-'+prop;
104
+ return false;
105
+ }
106
+ }
107
+ });
108
+ },
109
+ _determineProps: function() {
110
+ var s = $('<div>')[0].style;
111
+ plugin._testStylePrefixes(s, 'filter', 'blur(3px)')
112
+ if(plugin.styleProps.filter === 'filter') {
113
+ // test for moz
114
+ var testval = ffsvg.replace('{blur}',1);
115
+ s.filter = testval;
116
+ if(s.filter === testval) {
117
+ plugin.stylePropVals.filter = ffsvg;
118
+ }
119
+ }
120
+ plugin._testStylePrefixes(s, 'transition', 'width 100ms');
121
+ },
122
+ _applyProp: function(el,prop,subs) {
123
+ var val = plugin.stylePropVals[prop];
124
+ if($.isPlainObject(subs)) {
125
+ $.each(subs, function(k,v) {
126
+ val = val.replace('{'+k+'}', v);
127
+ });
128
+ } else {
129
+ // array of property values
130
+ var vals = [];
131
+ $.each(subs, function(i,sub) {
132
+ $.each(sub, function(k,v) {
133
+ vals.push(val.replace('{'+k+'}', v));
134
+ });
135
+ });
136
+ val = vals.join(', ');
137
+ }
138
+
139
+ el.style[plugin.styleProps[prop]] = val;
140
+ },
141
+ _removeProp: function(el, prop) {
142
+ el.style[plugin.styleProps[prop]] = '';
143
+ },
144
+ hide: function(options) {
145
+ if(this.activeBlurbox) {
146
+ this.activeBlurbox.hide(options);
147
+ }
148
+ }
149
+ });
150
+
151
+ plugin._init();
152
+
153
+ $.extend(plugin.prototype, {
154
+ _init: function() {
155
+ this.displayed = false;
156
+ //this.element.detach();
157
+ this.applyOptions(this.options);
158
+ },
159
+
160
+ applyOptions: function(options) {
161
+ this.options = $.extend( {}, plugin.defaults, options);;
162
+
163
+ this.bodyContent = this.options.bodyContent || plugin.bodyContent;
164
+ this.bodyContent.addClass('blurbox-bodyContent');
165
+
166
+ // apply styles
167
+ var isSmall = $('body').width() <= 480;
168
+ plugin._applyProp(plugin.wrapper[0], 'transition', {prop:isSmall ? 'top' : 'opacity',dur:this.options.duration});
169
+ plugin._applyProp(plugin.darkenbg[0], 'transition', {prop:'opacity',dur:this.options.duration});
170
+ if(this.options.animateBlur) {
171
+ plugin._applyProp(this.bodyContent[0], 'transition', {prop:plugin.cssProps.filter,dur:this.options.duration});
172
+ } else {
173
+ plugin._removeProp(this.bodyContent[0], 'transition');
174
+ }
175
+
176
+ plugin.darkenbg.css('backgroundColor', this.options.bgColor || '');
177
+ },
178
+
179
+ show: function(options) {
180
+ this.applyOptions((options && $.isPlainObject(options)) || {});
181
+
182
+ if(plugin.activeBlurbox) {
183
+ plugin.activeBlurbox.hide();
184
+ }
185
+
186
+ $(document).trigger('blurbox.willShow', this);
187
+
188
+ this.element.detach();
189
+
190
+ var isBig = $('body').width() > 480;
191
+
192
+ plugin.wrapper.addClass(isBig ? 'blurbox-big' : 'blurbox-small');
193
+
194
+ if(isBig && this.options.autosize) {
195
+ this.autosize(true);
196
+ }
197
+
198
+ // prevent scroll on body
199
+ this.bodyContent.addClass('blurbox-noscroll');
200
+ // set the popup content and 'show' it
201
+ plugin.wrapper.html(this.element);
202
+ this.element.show();
203
+ // blur it
204
+ if(isBig && this.options.animateBlur && this.options.blur > 0) {
205
+ plugin._applyProp(this.bodyContent[0], 'filter', {blur:this.options.blur});
206
+ }
207
+ plugin.wrapper.removeClass('blurbox-hidden');
208
+ if(this.options.bgColor) {
209
+ plugin.darkenbg.removeClass('blurbox-hidden');
210
+ }
211
+ if(isBig) {
212
+ plugin.wrapper.css({'margin-left':'-'+(plugin.wrapper.width()/2)+'px', 'margin-top':'-'+(plugin.wrapper.height()/2)+'px'})
213
+ }
214
+
215
+ var t = this,
216
+ endAnim = function() {
217
+ if(!t.options.animateBlur && t.options.blur > 0) {
218
+ plugin._applyProp(t.bodyContent[0], 'filter', {blur:t.options.blur});
219
+ }
220
+ plugin.wrapper.off(plugin.tranisitionEndEvents);
221
+ clearTimeout(timeout);
222
+ },
223
+ timeout;
224
+ // set timeout at 0 to let elements be rendered first after display:none has been removed
225
+ setTimeout(function() {
226
+ plugin.wrapper.addClass('blurbox-show');
227
+ if(t.options.bgColor) {
228
+ plugin.darkenbg.addClass('blurbox-show');
229
+ }
230
+ t.bodyContent.on('click.blurbox', $.proxy(t.hide,t));
231
+
232
+ timeout = setTimeout(endAnim, t.options.duration+50);
233
+ plugin.wrapper.on(plugin.tranisitionEndEvents, endAnim);
234
+ },0);
235
+
236
+ this.displayed = true;
237
+ plugin.activeBlurbox = this;
238
+
239
+ $(document).trigger('blurbox.didShow', this);
240
+
241
+ return this;
242
+ },
243
+
244
+ hide: function(options) {
245
+ this.applyOptions((options && $.isPlainObject(options)) || {});
246
+
247
+ $(document).trigger('blurbox.willHide', this);
248
+ this.bodyContent.off('click.blurbox');
249
+ // allow scroll on body
250
+ this.bodyContent.removeClass('blurbox-noscroll');
251
+ // hide the wrapper
252
+ plugin.wrapper.removeClass('blurbox-show');
253
+ // hide the overlay
254
+ plugin.darkenbg.removeClass('blurbox-show');
255
+ // set a timeout and listen for transition end events, whichever happens first end the animation
256
+ var endAnim = function() {
257
+ // at end of animation, display:none the wrapper
258
+ plugin.wrapper.addClass('blurbox-hidden').removeClass('blurbox-big').removeClass('blurbox-small');
259
+ plugin.wrapper.css({height:'',width:'','margin-left':'', 'margin-top':''});
260
+ // and the overlay
261
+ plugin.darkenbg.addClass('blurbox-hidden');
262
+ // stop listening for animation end events and clear the timeout
263
+ plugin.wrapper.off(plugin.tranisitionEndEvents);
264
+ clearTimeout(timeout);
265
+ },
266
+ timeout = setTimeout(endAnim, this.options.duration);
267
+ plugin.wrapper.on(plugin.tranisitionEndEvents, endAnim);
268
+ plugin._removeProp(this.bodyContent[0], 'filter');
269
+ this.displayed = false;
270
+ plugin.activeBlurbox = null;
271
+ $(document).trigger('blurbox.didHide', this);
272
+ return this;
273
+ },
274
+
275
+ toggle: function(options) {
276
+ return this.displayed ? this.hide(options) : this.show(options);
277
+ },
278
+
279
+ autosize: function(renderOffscreen) {
280
+ if(renderOffscreen) {
281
+ var style = this.element.attr('style');
282
+ // render off screen for size
283
+ this.element.css({position:'absolute',left:'100000px',display:'block'});
284
+ $('body').append(this.element);
285
+ }
286
+ var width = this.element.width();
287
+ var height = this.element.height();
288
+ if(renderOffscreen) {
289
+ this.element.detach();
290
+ style ? this.element.attr('style', style) : this.element.removeAttr('style');
291
+ }
292
+ plugin.wrapper.css({width:width,height:height});
293
+ }
294
+ });
295
+
296
+ $.fn[pluginName] = function ( options ) {
297
+ if(!this.length) return null;
298
+ var p = $.data(this, 'plugin_' + pluginName);
299
+ if (p) { return p; }
300
+ p = new plugin( this, options );
301
+ $.data(this, 'plugin_' + pluginName, p);
302
+ return p;
303
+ };
304
+
305
+ $[pluginName] = plugin;
306
+ }));
skin/frontend/Kartparadigm/default/js/bootstrap.min.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ /*!
2
+ * Bootstrap.js by @fat & @mdo
3
+ * Copyright 2013 Twitter, Inc.
4
+ * http://www.apache.org/licenses/LICENSE-2.0.txt
5
+ */
6
+ !function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var n=e.fn.button;e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=n,this},e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var n=this.getActiveIndex(),r=this;if(t>this.$items.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var t=e(a.$indicators.children()[a.getActiveIndex()]);t&&t.addClass("active")}));if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}};var n=e.fn.carousel;e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.pause().cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=n,this},e(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data()),o;i.carousel(s),(o=n.attr("data-slide-to"))&&i.data("carousel").pause().to(o).cycle(),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.collapse.defaults,n),this.options.parent&&(this.$parent=e(this.options.parent)),this.options.toggle&&this.toggle()};t.prototype={constructor:t,dimension:function(){var e=this.$element.hasClass("width");return e?"width":"height"},show:function(){var t,n,r,i;if(this.transitioning||this.$element.hasClass("in"))return;t=this.dimension(),n=e.camelCase(["scroll",t].join("-")),r=this.$parent&&this.$parent.find("> .accordion-group > .in");if(r&&r.length){i=r.data("collapse");if(i&&i.transitioning)return;r.collapse("hide"),i||r.data("collapse",null)}this.$element[t](0),this.transition("addClass",e.Event("show"),"shown"),e.support.transition&&this.$element[t](this.$element[0][n])},hide:function(){var t;if(this.transitioning||!this.$element.hasClass("in"))return;t=this.dimension(),this.reset(this.$element[t]()),this.transition("removeClass",e.Event("hide"),"hidden"),this.$element[t](0)},reset:function(e){var t=this.dimension();return this.$element.removeClass("collapse")[t](e||"auto")[0].offsetWidth,this.$element[e!==null?"addClass":"removeClass"]("collapse"),this},transition:function(t,n,r){var i=this,s=function(){n.type=="show"&&i.reset(),i.transitioning=0,i.$element.trigger(r)};this.$element.trigger(n);if(n.isDefaultPrevented())return;this.transitioning=1,this.$element[t]("in"),e.support.transition&&this.$element.hasClass("collapse")?this.$element.one(e.support.transition.end,s):s()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var n=e.fn.collapse;e.fn.collapse=function(n){return this.each(function(){var r=e(this),i=r.data("collapse"),s=e.extend({},e.fn.collapse.defaults,r.data(),typeof n=="object"&&n);i||r.data("collapse",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.collapse.defaults={toggle:!0},e.fn.collapse.Constructor=t,e.fn.collapse.noConflict=function(){return e.fn.collapse=n,this},e(document).on("click.collapse.data-api","[data-toggle=collapse]",function(t){var n=e(this),r,i=n.attr("data-target")||t.preventDefault()||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,""),s=e(i).data("collapse")?"toggle":n.data();n[e(i).hasClass("in")?"addClass":"removeClass"]("collapsed"),e(i).collapse(s)})}(window.jQuery),!function(e){"use strict";function r(){e(".dropdown-backdrop").remove(),e(t).each(function(){i(e(this)).removeClass("open")})}function i(t){var n=t.attr("data-target"),r;n||(n=t.attr("href"),n=n&&/#/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,"")),r=n&&e(n);if(!r||!r.length)r=t.parent();return r}var t="[data-toggle=dropdown]",n=function(t){var n=e(t).on("click.dropdown.data-api",this.toggle);e("html").on("click.dropdown.data-api",function(){n.parent().removeClass("open")})};n.prototype={constructor:n,toggle:function(t){var n=e(this),s,o;if(n.is(".disabled, :disabled"))return;return s=i(n),o=s.hasClass("open"),r(),o||("ontouchstart"in document.documentElement&&e('<div class="dropdown-backdrop"/>').insertBefore(e(this)).on("click",r),s.toggleClass("open")),n.focus(),!1},keydown:function(n){var r,s,o,u,a,f;if(!/(38|40|27)/.test(n.keyCode))return;r=e(this),n.preventDefault(),n.stopPropagation();if(r.is(".disabled, :disabled"))return;u=i(r),a=u.hasClass("open");if(!a||a&&n.keyCode==27)return n.which==27&&u.find(t).focus(),r.click();s=e("[role=menu] li:not(.divider):visible a",u);if(!s.length)return;f=s.index(s.filter(":focus")),n.keyCode==38&&f>0&&f--,n.keyCode==40&&f<s.length-1&&f++,~f||(f=0),s.eq(f).focus()}};var s=e.fn.dropdown;e.fn.dropdown=function(t){return this.each(function(){var r=e(this),i=r.data("dropdown");i||r.data("dropdown",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.dropdown.Constructor=n,e.fn.dropdown.noConflict=function(){return e.fn.dropdown=s,this},e(document).on("click.dropdown.data-api",r).on("click.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("click.dropdown.data-api",t,n.prototype.toggle).on("keydown.dropdown.data-api",t+", [role=menu]",n.prototype.keydown)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=n,this.$element=e(t).delegate('[data-dismiss="modal"]',"click.dismiss.modal",e.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};t.prototype={constructor:t,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var t=this,n=e.Event("show");this.$element.trigger(n);if(this.isShown||n.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var n=e.support.transition&&t.$element.hasClass("fade");t.$element.parent().length||t.$element.appendTo(document.body),t.$element.show(),n&&t.$element[0].offsetWidth,t.$element.addClass("in").attr("aria-hidden",!1),t.enforceFocus(),n?t.$element.one(e.support.transition.end,function(){t.$element.focus().trigger("shown")}):t.$element.focus().trigger("shown")})},hide:function(t){t&&t.preventDefault();var n=this;t=e.Event("hide"),this.$element.trigger(t);if(!this.isShown||t.isDefaultPrevented())return;this.isShown=!1,this.escape(),e(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),e.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var t=this;e(document).on("focusin.modal",function(e){t.$element[0]!==e.target&&!t.$element.has(e.target).length&&t.$element.focus()})},escape:function(){var e=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(t){t.which==27&&e.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var t=this,n=setTimeout(function(){t.$element.off(e.support.transition.end),t.hideModal()},500);this.$element.one(e.support.transition.end,function(){clearTimeout(n),t.hideModal()})},hideModal:function(){var e=this;this.$element.hide(),this.backdrop(function(){e.removeBackdrop(),e.$element.trigger("hidden")})},removeBackdrop:function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},backdrop:function(t){var n=this,r=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var i=e.support.transition&&r;this.$backdrop=e('<div class="modal-backdrop '+r+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?e.proxy(this.$element[0].focus,this.$element[0]):e.proxy(this.hide,this)),i&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in");if(!t)return;i?this.$backdrop.one(e.support.transition.end,t):t()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),e.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(e.support.transition.end,t):t()):t&&t()}};var n=e.fn.modal;e.fn.modal=function(n){return this.each(function(){var r=e(this),i=r.data("modal"),s=e.extend({},e.fn.modal.defaults,r.data(),typeof n=="object"&&n);i||r.data("modal",i=new t(this,s)),typeof n=="string"?i[n]():s.show&&i.show()})},e.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},e.fn.modal.Constructor=t,e.fn.modal.noConflict=function(){return e.fn.modal=n,this},e(document).on("click.modal.data-api",'[data-toggle="modal"]',function(t){var n=e(this),r=n.attr("href"),i=e(n.attr("data-target")||r&&r.replace(/.*(?=#[^\s]+$)/,"")),s=i.data("modal")?"toggle":e.extend({remote:!/#/.test(r)&&r},i.data(),n.data());t.preventDefault(),i.modal(s).one("hide",function(){n.focus()})})}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("tooltip",e,t)};t.prototype={constructor:t,init:function(t,n,r){var i,s,o,u,a;this.type=t,this.$element=e(n),this.options=this.getOptions(r),this.enabled=!0,o=this.options.trigger.split(" ");for(a=o.length;a--;)u=o[a],u=="click"?this.$element.on("click."+this.type,this.options.selector,e.proxy(this.toggle,this)):u!="manual"&&(i=u=="hover"?"mouseenter":"focus",s=u=="hover"?"mouseleave":"blur",this.$element.on(i+"."+this.type,this.options.selector,e.proxy(this.enter,this)),this.$element.on(s+"."+this.type,this.options.selector,e.proxy(this.leave,this)));this.options.selector?this._options=e.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(t){return t=e.extend({},e.fn[this.type].defaults,this.$element.data(),t),t.delay&&typeof t.delay=="number"&&(t.delay={show:t.delay,hide:t.delay}),t},enter:function(t){var n=e.fn[this.type].defaults,r={},i;this._options&&e.each(this._options,function(e,t){n[e]!=t&&(r[e]=t)},this),i=e(t.currentTarget)[this.type](r).data(this.type);if(!i.options.delay||!i.options.delay.show)return i.show();clearTimeout(this.timeout),i.hoverState="in",this.timeout=setTimeout(function(){i.hoverState=="in"&&i.show()},i.options.delay.show)},leave:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!n.options.delay||!n.options.delay.hide)return n.hide();n.hoverState="out",this.timeout=setTimeout(function(){n.hoverState=="out"&&n.hide()},n.options.delay.hide)},show:function(){var t,n,r,i,s,o,u=e.Event("show");if(this.hasContent()&&this.enabled){this.$element.trigger(u);if(u.isDefaultPrevented())return;t=this.tip(),this.setContent(),this.options.animation&&t.addClass("fade"),s=typeof this.options.placement=="function"?this.options.placement.call(this,t[0],this.$element[0]):this.options.placement,t.detach().css({top:0,left:0,display:"block"}),this.options.container?t.appendTo(this.options.container):t.insertAfter(this.$element),n=this.getPosition(),r=t[0].offsetWidth,i=t[0].offsetHeight;switch(s){case"bottom":o={top:n.top+n.height,left:n.left+n.width/2-r/2};break;case"top":o={top:n.top-i,left:n.left+n.width/2-r/2};break;case"left":o={top:n.top+n.height/2-i/2,left:n.left-r};break;case"right":o={top:n.top+n.height/2-i/2,left:n.left+n.width}}this.applyPlacement(o,s),this.$element.trigger("shown")}},applyPlacement:function(e,t){var n=this.tip(),r=n[0].offsetWidth,i=n[0].offsetHeight,s,o,u,a;n.offset(e).addClass(t).addClass("in"),s=n[0].offsetWidth,o=n[0].offsetHeight,t=="top"&&o!=i&&(e.top=e.top+i-o,a=!0),t=="bottom"||t=="top"?(u=0,e.left<0&&(u=e.left*-2,e.left=0,n.offset(e),s=n[0].offsetWidth,o=n[0].offsetHeight),this.replaceArrow(u-r+s,s,"left")):this.replaceArrow(o-i,o,"top"),a&&n.offset(e)},replaceArrow:function(e,t,n){this.arrow().css(n,e?50*(1-e/t)+"%":"")},setContent:function(){var e=this.tip(),t=this.getTitle();e.find(".tooltip-inner")[this.options.html?"html":"text"](t),e.removeClass("fade in top bottom left right")},hide:function(){function i(){var t=setTimeout(function(){n.off(e.support.transition.end).detach()},500);n.one(e.support.transition.end,function(){clearTimeout(t),n.detach()})}var t=this,n=this.tip(),r=e.Event("hide");this.$element.trigger(r);if(r.isDefaultPrevented())return;return n.removeClass("in"),e.support.transition&&this.$tip.hasClass("fade")?i():n.detach(),this.$element.trigger("hidden"),this},fixTitle:function(){var e=this.$element;(e.attr("title")||typeof e.attr("data-original-title")!="string")&&e.attr("data-original-title",e.attr("title")||"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var t=this.$element[0];return e.extend({},typeof t.getBoundingClientRect=="function"?t.getBoundingClientRect():{width:t.offsetWidth,height:t.offsetHeight},this.$element.offset())},getTitle:function(){var e,t=this.$element,n=this.options;return e=t.attr("data-original-title")||(typeof n.title=="function"?n.title.call(t[0]):n.title),e},tip:function(){return this.$tip=this.$tip||e(this.options.template)},arrow:function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(t){var n=t?e(t.currentTarget)[this.type](this._options).data(this.type):this;n.tip().hasClass("in")?n.hide():n.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var n=e.fn.tooltip;e.fn.tooltip=function(n){return this.each(function(){var r=e(this),i=r.data("tooltip"),s=typeof n=="object"&&n;i||r.data("tooltip",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.tooltip.Constructor=t,e.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},e.fn.tooltip.noConflict=function(){return e.fn.tooltip=n,this}}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("popover",e,t)};t.prototype=e.extend({},e.fn.tooltip.Constructor.prototype,{constructor:t,setContent:function(){var e=this.tip(),t=this.getTitle(),n=this.getContent();e.find(".popover-title")[this.options.html?"html":"text"](t),e.find(".popover-content")[this.options.html?"html":"text"](n),e.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var e,t=this.$element,n=this.options;return e=(typeof n.content=="function"?n.content.call(t[0]):n.content)||t.attr("data-content"),e},tip:function(){return this.$tip||(this.$tip=e(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var n=e.fn.popover;e.fn.popover=function(n){return this.each(function(){var r=e(this),i=r.data("popover"),s=typeof n=="object"&&n;i||r.data("popover",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.popover.Constructor=t,e.fn.popover.defaults=e.extend({},e.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),e.fn.popover.noConflict=function(){return e.fn.popover=n,this}}(window.jQuery),!function(e){"use strict";function t(t,n){var r=e.proxy(this.process,this),i=e(t).is("body")?e(window):e(t),s;this.options=e.extend({},e.fn.scrollspy.defaults,n),this.$scrollElement=i.on("scroll.scroll-spy.data-api",r),this.selector=(this.options.target||(s=e(t).attr("href"))&&s.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=e("body"),this.refresh(),this.process()}t.prototype={constructor:t,refresh:function(){var t=this,n;this.offsets=e([]),this.targets=e([]),n=this.$body.find(this.selector).map(function(){var n=e(this),r=n.data("target")||n.attr("href"),i=/^#\w/.test(r)&&e(r);return i&&i.length&&[[i.position().top+(!e.isWindow(t.$scrollElement.get(0))&&t.$scrollElement.scrollTop()),r]]||null}).sort(function(e,t){return e[0]-t[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},process:function(){var e=this.$scrollElement.scrollTop()+this.options.offset,t=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,n=t-this.$scrollElement.height(),r=this.offsets,i=this.targets,s=this.activeTarget,o;if(e>=n)return s!=(o=i.last()[0])&&this.activate(o);for(o=r.length;o--;)s!=i[o]&&e>=r[o]&&(!r[o+1]||e<=r[o+1])&&this.activate(i[o])},activate:function(t){var n,r;this.activeTarget=t,e(this.selector).parent(".active").removeClass("active"),r=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',n=e(r).parent("li").addClass("active"),n.parent(".dropdown-menu").length&&(n=n.closest("li.dropdown").addClass("active")),n.trigger("activate")}};var n=e.fn.scrollspy;e.fn.scrollspy=function(n){return this.each(function(){var r=e(this),i=r.data("scrollspy"),s=typeof n=="object"&&n;i||r.data("scrollspy",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.scrollspy.Constructor=t,e.fn.scrollspy.defaults={offset:10},e.fn.scrollspy.noConflict=function(){return e.fn.scrollspy=n,this},e(window).on("load",function(){e('[data-spy="scroll"]').each(function(){var t=e(this);t.scrollspy(t.data())})})}(window.jQuery),!function(e){"use strict";var t=function(t){this.element=e(t)};t.prototype={constructor:t,show:function(){var t=this.element,n=t.closest("ul:not(.dropdown-menu)"),r=t.attr("data-target"),i,s,o;r||(r=t.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,""));if(t.parent("li").hasClass("active"))return;i=n.find(".active:last a")[0],o=e.Event("show",{relatedTarget:i}),t.trigger(o);if(o.isDefaultPrevented())return;s=e(r),this.activate(t.parent("li"),n),this.activate(s,s.parent(),function(){t.trigger({type:"shown",relatedTarget:i})})},activate:function(t,n,r){function o(){i.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),t.addClass("active"),s?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu")&&t.closest("li.dropdown").addClass("active"),r&&r()}var i=n.find("> .active"),s=r&&e.support.transition&&i.hasClass("fade");s?i.one(e.support.transition.end,o):o(),i.removeClass("in")}};var n=e.fn.tab;e.fn.tab=function(n){return this.each(function(){var r=e(this),i=r.data("tab");i||r.data("tab",i=new t(this)),typeof n=="string"&&i[n]()})},e.fn.tab.Constructor=t,e.fn.tab.noConflict=function(){return e.fn.tab=n,this},e(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(t){t.preventDefault(),e(this).tab("show")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.typeahead.defaults,n),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=e(this.options.menu),this.shown=!1,this.listen()};t.prototype={constructor:t,select:function(){var e=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(e)).change(),this.hide()},updater:function(e){return e},show:function(){var t=e.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:t.top+t.height,left:t.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(t){var n;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(n=e.isFunction(this.source)?this.source(this.query,e.proxy(this.process,this)):this.source,n?this.process(n):this)},process:function(t){var n=this;return t=e.grep(t,function(e){return n.matcher(e)}),t=this.sorter(t),t.length?this.render(t.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(e){return~e.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(e){var t=[],n=[],r=[],i;while(i=e.shift())i.toLowerCase().indexOf(this.query.toLowerCase())?~i.indexOf(this.query)?n.push(i):r.push(i):t.push(i);return t.concat(n,r)},highlighter:function(e){var t=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return e.replace(new RegExp("("+t+")","ig"),function(e,t){return"<strong>"+t+"</strong>"})},render:function(t){var n=this;return t=e(t).map(function(t,r){return t=e(n.options.item).attr("data-value",r),t.find("a").html(n.highlighter(r)),t[0]}),t.first().addClass("active"),this.$menu.html(t),this},next:function(t){var n=this.$menu.find(".active").removeClass("active"),r=n.next();r.length||(r=e(this.$menu.find("li")[0])),r.addClass("active")},prev:function(e){var t=this.$menu.find(".active").removeClass("active"),n=t.prev();n.length||(n=this.$menu.find("li").last()),n.addClass("active")},listen:function(){this.$element.on("focus",e.proxy(this.focus,this)).on("blur",e.proxy(this.blur,this)).on("keypress",e.proxy(this.keypress,this)).on("keyup",e.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",e.proxy(this.keydown,this)),this.$menu.on("click",e.proxy(this.click,this)).on("mouseenter","li",e.proxy(this.mouseenter,this)).on("mouseleave","li",e.proxy(this.mouseleave,this))},eventSupported:function(e){var t=e in this.$element;return t||(this.$element.setAttribute(e,"return;"),t=typeof this.$element[e]=="function"),t},move:function(e){if(!this.shown)return;switch(e.keyCode){case 9:case 13:case 27:e.preventDefault();break;case 38:e.preventDefault(),this.prev();break;case 40:e.preventDefault(),this.next()}e.stopPropagation()},keydown:function(t){this.suppressKeyPressRepeat=~e.inArray(t.keyCode,[40,38,9,13,27]),this.move(t)},keypress:function(e){if(this.suppressKeyPressRepeat)return;this.move(e)},keyup:function(e){switch(e.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}e.stopPropagation(),e.preventDefault()},focus:function(e){this.focused=!0},blur:function(e){this.focused=!1,!this.mousedover&&this.shown&&this.hide()},click:function(e){e.stopPropagation(),e.preventDefault(),this.select(),this.$element.focus()},mouseenter:function(t){this.mousedover=!0,this.$menu.find(".active").removeClass("active"),e(t.currentTarget).addClass("active")},mouseleave:function(e){this.mousedover=!1,!this.focused&&this.shown&&this.hide()}};var n=e.fn.typeahead;e.fn.typeahead=function(n){return this.each(function(){var r=e(this),i=r.data("typeahead"),s=typeof n=="object"&&n;i||r.data("typeahead",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},e.fn.typeahead.Constructor=t,e.fn.typeahead.noConflict=function(){return e.fn.typeahead=n,this},e(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(t){var n=e(this);if(n.data("typeahead"))return;n.typeahead(n.data())})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=e.extend({},e.fn.affix.defaults,n),this.$window=e(window).on("scroll.affix.data-api",e.proxy(this.checkPosition,this)).on("click.affix.data-api",e.proxy(function(){setTimeout(e.proxy(this.checkPosition,this),1)},this)),this.$element=e(t),this.checkPosition()};t.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var t=e(document).height(),n=this.$window.scrollTop(),r=this.$element.offset(),i=this.options.offset,s=i.bottom,o=i.top,u="affix affix-top affix-bottom",a;typeof i!="object"&&(s=o=i),typeof o=="function"&&(o=i.top()),typeof s=="function"&&(s=i.bottom()),a=this.unpin!=null&&n+this.unpin<=r.top?!1:s!=null&&r.top+this.$element.height()>=t-s?"bottom":o!=null&&n<=o?"top":!1;if(this.affixed===a)return;this.affixed=a,this.unpin=a=="bottom"?r.top-n:null,this.$element.removeClass(u).addClass("affix"+(a?"-"+a:""))};var n=e.fn.affix;e.fn.affix=function(n){return this.each(function(){var r=e(this),i=r.data("affix"),s=typeof n=="object"&&n;i||r.data("affix",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.affix.Constructor=t,e.fn.affix.defaults={offset:0},e.fn.affix.noConflict=function(){return e.fn.affix=n,this},e(window).on("load",function(){e('[data-spy="affix"]').each(function(){var t=e(this),n=t.data();n.offset=n.offset||{},n.offsetBottom&&(n.offset.bottom=n.offsetBottom),n.offsetTop&&(n.offset.top=n.offsetTop),t.affix(n)})})}(window.jQuery);
skin/frontend/Kartparadigm/default/js/jquery.min-1.11.1.js ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ /*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
2
+ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;
3
+ if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Mb=/alpha\([^)]*\)/i,Nb=/opacity\s*=\s*([^)]*)/,Ob=/^(none|table(?!-c[ea]).+)/,Pb=new RegExp("^("+S+")(.*)$","i"),Qb=new RegExp("^([+-])=("+S+")","i"),Rb={position:"absolute",visibility:"hidden",display:"block"},Sb={letterSpacing:"0",fontWeight:"400"},Tb=["Webkit","O","Moz","ms"];function Ub(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Tb.length;while(e--)if(b=Tb[e]+c,b in a)return b;return d}function Vb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fb(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wb(a,b,c){var d=Pb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Yb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ib(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Jb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Hb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xb(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Jb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ub(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ub(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Jb(a,b,d)),"normal"===f&&b in Sb&&(f=Sb[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Ob.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Rb,function(){return Yb(a,b,d)}):Yb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ib(a);return Wb(a,c,d?Xb(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Mb.test(f)?f.replace(Mb,e):f+" "+e)}}),m.cssHooks.marginRight=Lb(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Jb,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Gb.test(a)||(m.cssHooks[a+b].set=Wb)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ib(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Vb(this,!0)},hide:function(){return Vb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Zb(a,b,c,d,e){return new Zb.prototype.init(a,b,c,d,e)}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")
4
+ },cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var b,c=Zb.propHooks[this.prop];return this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Zb.propHooks._default.set(this),this}},Zb.prototype.init.prototype=Zb.prototype,Zb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Zb.propHooks.scrollTop=Zb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Zb.prototype.init,m.fx.step={};var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[ic],ec={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bc.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bc.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fc(){return setTimeout(function(){$b=void 0}),$b=m.now()}function gc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hc(a,b,c){for(var d,e=(ec[b]||[]).concat(ec["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ic(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fb(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fb(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ac.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fb(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hc(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jc(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kc(a,b,c){var d,e,f=0,g=dc.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$b||fc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$b||fc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jc(k,j.opts.specialEasing);g>f;f++)if(d=dc[f].call(j,a,k,j.opts))return d;return m.map(k,hc,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kc,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],ec[c]=ec[c]||[],ec[c].unshift(b)},prefilter:function(a,b){b?dc.unshift(a):dc.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kc(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gc(b,!0),a,d,e)}}),m.each({slideDown:gc("show"),slideUp:gc("hide"),slideToggle:gc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($b=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$b=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_b||(_b=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_b),_b=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lc=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lc,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mc,nc,oc=m.expr.attrHandle,pc=/^(?:checked|selected)$/i,qc=k.getSetAttribute,rc=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nc:mc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rc&&qc||!pc.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qc?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nc={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rc&&qc||!pc.test(c)?a.setAttribute(!qc&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=oc[b]||m.find.attr;oc[b]=rc&&qc||!pc.test(b)?function(a,b,d){var e,f;return d||(f=oc[b],oc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,oc[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rc&&qc||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mc&&mc.set(a,b,c)}}),qc||(mc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},oc.id=oc.name=oc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mc.set},m.attrHooks.contenteditable={set:function(a,b,c){mc.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sc=/^(?:input|select|textarea|button|object)$/i,tc=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sc.test(a.nodeName)||tc.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var uc=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(uc," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vc=m.now(),wc=/\?/,xc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yc,zc,Ac=/#.*$/,Bc=/([?&])_=[^&]*/,Cc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Dc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ec=/^(?:GET|HEAD)$/,Fc=/^\/\//,Gc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hc={},Ic={},Jc="*/".concat("*");try{zc=location.href}catch(Kc){zc=y.createElement("a"),zc.href="",zc=zc.href}yc=Gc.exec(zc.toLowerCase())||[];function Lc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mc(a,b,c,d){var e={},f=a===Ic;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nc(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Oc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zc,type:"GET",isLocal:Dc.test(yc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nc(Nc(a,m.ajaxSettings),b):Nc(m.ajaxSettings,a)},ajaxPrefilter:Lc(Hc),ajaxTransport:Lc(Ic),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yc[1]&&c[2]===yc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yc[3]||("http:"===yc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mc(Hc,k,b,v),2===t)return v;h=k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Ec.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bc.test(e)?e.replace(Bc,"$1_="+vc++):e+(wc.test(e)?"&":"?")+"_="+vc++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mc(Ic,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Oc(k,v,c)),u=Pc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qc=/%20/g,Rc=/\[\]$/,Sc=/\r?\n/g,Tc=/^(?:submit|button|image|reset|file)$/i,Uc=/^(?:input|select|textarea|keygen)/i;function Vc(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rc.test(a)?d(a,e):Vc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vc(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vc(c,a[c],b,e);return d.join("&").replace(Qc,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Uc.test(this.nodeName)&&!Tc.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sc,"\r\n")}}):{name:b.name,value:c.replace(Sc,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zc()||$c()}:Zc;var Wc=0,Xc={},Yc=m.ajaxSettings.xhr();a.ActiveXObject&&m(a).on("unload",function(){for(var a in Xc)Xc[a](void 0,!0)}),k.cors=!!Yc&&"withCredentials"in Yc,Yc=k.ajax=!!Yc,Yc&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xc[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zc(){try{return new a.XMLHttpRequest}catch(b){}}function $c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _c=[],ad=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_c.pop()||m.expando+"_"+vc++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ad.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ad.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ad,"$1"+e):b.jsonp!==!1&&(b.url+=(wc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_c.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bd=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bd)return bd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cd=a.document.documentElement;function dd(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dd(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=t