car_parts_store_template - Version 0.1.0

Version Notes

Car Parts Store Template

Download this release

Release Info

Developer Magebuzz
Extension car_parts_store_template
Version 0.1.0
Comparing to
See all releases


Version 0.1.0

Files changed (266) hide show
  1. app/design/frontend/default/car_store/layout/catalog.xml +432 -0
  2. app/design/frontend/default/car_store/layout/catalogsearch.xml +138 -0
  3. app/design/frontend/default/car_store/layout/checkout.xml +412 -0
  4. app/design/frontend/default/car_store/layout/customer.xml +266 -0
  5. app/design/frontend/default/car_store/layout/directory.xml +78 -0
  6. app/design/frontend/default/car_store/layout/newsletter.xml +68 -0
  7. app/design/frontend/default/car_store/layout/page.xml +183 -0
  8. app/design/frontend/default/car_store/layout/poll.xml +57 -0
  9. app/design/frontend/default/car_store/layout/tag.xml +130 -0
  10. app/design/frontend/default/car_store/template/catalog/category/page.phtml +36 -0
  11. app/design/frontend/default/car_store/template/catalog/category/view.phtml +73 -0
  12. app/design/frontend/default/car_store/template/catalog/layer/state.phtml +46 -0
  13. app/design/frontend/default/car_store/template/catalog/layer/view.phtml +66 -0
  14. app/design/frontend/default/car_store/template/catalog/navigation/left.phtml +59 -0
  15. app/design/frontend/default/car_store/template/catalog/navigation/top.phtml +57 -0
  16. app/design/frontend/default/car_store/template/catalog/product/compare/list.phtml +139 -0
  17. app/design/frontend/default/car_store/template/catalog/product/compare/sidebar.phtml +65 -0
  18. app/design/frontend/default/car_store/template/catalog/product/list.phtml +148 -0
  19. app/design/frontend/default/car_store/template/catalog/product/list/toolbar.phtml +97 -0
  20. app/design/frontend/default/car_store/template/catalog/product/list/upsell.phtml +52 -0
  21. app/design/frontend/default/car_store/template/catalog/product/new.phtml +73 -0
  22. app/design/frontend/default/car_store/template/catalog/product/price.phtml +414 -0
  23. app/design/frontend/default/car_store/template/catalog/product/view.phtml +137 -0
  24. app/design/frontend/default/car_store/template/catalog/product/view/media.phtml +85 -0
  25. app/design/frontend/default/car_store/template/catalog/product/view/options/wrapper.phtml +33 -0
  26. app/design/frontend/default/car_store/template/catalog/product/view/options/wrapper/bottom.phtml +29 -0
  27. app/design/frontend/default/car_store/template/catalogsearch/advanced/form.phtml +95 -0
  28. app/design/frontend/default/car_store/template/catalogsearch/advanced/result.phtml +60 -0
  29. app/design/frontend/default/car_store/template/catalogsearch/form.mini.phtml +40 -0
  30. app/design/frontend/default/car_store/template/catalogsearch/result.phtml +55 -0
  31. app/design/frontend/default/car_store/template/catalogsearch/term.phtml +38 -0
  32. app/design/frontend/default/car_store/template/checkout/cart.phtml +137 -0
  33. app/design/frontend/default/car_store/template/checkout/cart/coupon.phtml +59 -0
  34. app/design/frontend/default/car_store/template/checkout/cart/crosssell.phtml +59 -0
  35. app/design/frontend/default/car_store/template/checkout/cart/item/default.phtml +241 -0
  36. app/design/frontend/default/car_store/template/checkout/cart/sidebar.phtml +87 -0
  37. app/design/frontend/default/car_store/template/checkout/onepage/agreements.phtml +51 -0
  38. app/design/frontend/default/car_store/template/checkout/onepage/billing.phtml +203 -0
  39. app/design/frontend/default/car_store/template/checkout/onepage/failure.phtml +32 -0
  40. app/design/frontend/default/car_store/template/checkout/onepage/link.phtml +29 -0
  41. app/design/frontend/default/car_store/template/checkout/onepage/login.phtml +120 -0
  42. app/design/frontend/default/car_store/template/checkout/onepage/payment.phtml +70 -0
  43. app/design/frontend/default/car_store/template/checkout/onepage/payment/methods.phtml +57 -0
  44. app/design/frontend/default/car_store/template/checkout/onepage/progress.phtml +119 -0
  45. app/design/frontend/default/car_store/template/checkout/onepage/review.phtml +29 -0
  46. app/design/frontend/default/car_store/template/checkout/onepage/review/button.phtml +27 -0
  47. app/design/frontend/default/car_store/template/checkout/onepage/review/info.phtml +84 -0
  48. app/design/frontend/default/car_store/template/checkout/onepage/review/item.phtml +239 -0
  49. app/design/frontend/default/car_store/template/checkout/onepage/review/totals.phtml +47 -0
  50. app/design/frontend/default/car_store/template/checkout/onepage/shipping.phtml +154 -0
  51. app/design/frontend/default/car_store/template/checkout/onepage/shipping_method.phtml +46 -0
  52. app/design/frontend/default/car_store/template/checkout/onepage/shipping_method/additional.phtml +29 -0
  53. app/design/frontend/default/car_store/template/checkout/onepage/shipping_method/available.phtml +96 -0
  54. app/design/frontend/default/car_store/template/directory/currency.phtml +49 -0
  55. app/design/frontend/default/car_store/template/newsletter/subscribe.phtml +56 -0
  56. app/design/frontend/default/car_store/template/page/2columns-left.phtml +59 -0
  57. app/design/frontend/default/car_store/template/page/2columns-right.phtml +59 -0
  58. app/design/frontend/default/car_store/template/page/html/breadcrumbs.phtml +46 -0
  59. app/design/frontend/default/car_store/template/page/html/footer.phtml +32 -0
  60. app/design/frontend/default/car_store/template/page/html/header.phtml +48 -0
  61. app/design/frontend/default/car_store/template/page/html/pager.phtml +124 -0
  62. app/design/frontend/default/car_store/template/page/print.phtml +52 -0
  63. app/design/frontend/default/car_store/template/poll/active.phtml +75 -0
  64. app/design/frontend/default/car_store/template/poll/result.phtml +47 -0
  65. app/design/frontend/default/car_store/template/reports/product_viewed.phtml +53 -0
  66. app/design/frontend/default/car_store/template/sales/reorder/sidebar.phtml +86 -0
  67. app/design/frontend/default/car_store/template/tag/cloud.phtml +38 -0
  68. app/design/frontend/default/car_store/template/tag/customer/recent.phtml +53 -0
  69. app/design/frontend/default/car_store/template/tag/customer/tags.phtml +43 -0
  70. app/design/frontend/default/car_store/template/tag/customer/view.phtml +82 -0
  71. app/design/frontend/default/car_store/template/tag/list.phtml +63 -0
  72. app/design/frontend/default/car_store/template/tag/popular.phtml +50 -0
  73. installation_guide/Magebuzz Car Store Template Installation Guide.pdf +0 -0
  74. package.xml +18 -0
  75. skin/frontend/default/car_store/css/home-banner.css +14 -0
  76. skin/frontend/default/car_store/css/print.css +40 -0
  77. skin/frontend/default/car_store/css/styles-ie.css +144 -0
  78. skin/frontend/default/car_store/css/styles.css +2267 -0
  79. skin/frontend/default/car_store/images/adv1.png +0 -0
  80. skin/frontend/default/car_store/images/adv2.png +0 -0
  81. skin/frontend/default/car_store/images/adv3.png +0 -0
  82. skin/frontend/default/car_store/images/banner.png +0 -0
  83. skin/frontend/default/car_store/images/banner2.png +0 -0
  84. skin/frontend/default/car_store/images/best_selling_tr_even_bg.gif +0 -0
  85. skin/frontend/default/car_store/images/best_selling_tr_odd_bg.gif +0 -0
  86. skin/frontend/default/car_store/images/bkg_account_box.gif +0 -0
  87. skin/frontend/default/car_store/images/bkg_block-actions.gif +0 -0
  88. skin/frontend/default/car_store/images/bkg_block-currency.gif +0 -0
  89. skin/frontend/default/car_store/images/bkg_block-layered-dd.gif +0 -0
  90. skin/frontend/default/car_store/images/bkg_block-layered-dt.gif +0 -0
  91. skin/frontend/default/car_store/images/bkg_block-layered-label.gif +0 -0
  92. skin/frontend/default/car_store/images/bkg_block-layered-li.gif +0 -0
  93. skin/frontend/default/car_store/images/bkg_block-layered-title.gif +0 -0
  94. skin/frontend/default/car_store/images/bkg_block-layered1.gif +0 -0
  95. skin/frontend/default/car_store/images/bkg_block-title-account.gif +0 -0
  96. skin/frontend/default/car_store/images/bkg_block-title.gif +0 -0
  97. skin/frontend/default/car_store/images/bkg_body.gif +0 -0
  98. skin/frontend/default/car_store/images/bkg_bot-site-block-left.png +0 -0
  99. skin/frontend/default/car_store/images/bkg_bot-site-category.png +0 -0
  100. skin/frontend/default/car_store/images/bkg_bot-site.png +0 -0
  101. skin/frontend/default/car_store/images/bkg_button-hover.png +0 -0
  102. skin/frontend/default/car_store/images/bkg_button-search.png +0 -0
  103. skin/frontend/default/car_store/images/bkg_button.png +0 -0
  104. skin/frontend/default/car_store/images/bkg_buttons-set1.gif +0 -0
  105. skin/frontend/default/car_store/images/bkg_cart-nav.png +0 -0
  106. skin/frontend/default/car_store/images/bkg_checkout.gif +0 -0
  107. skin/frontend/default/car_store/images/bkg_collapse-gm.gif +0 -0
  108. skin/frontend/default/car_store/images/bkg_collapse.gif +0 -0
  109. skin/frontend/default/car_store/images/bkg_divider1.gif +0 -0
  110. skin/frontend/default/car_store/images/bkg_form-search.gif +0 -0
  111. skin/frontend/default/car_store/images/bkg_form-search.png +0 -0
  112. skin/frontend/default/car_store/images/bkg_grand-total.gif +0 -0
  113. skin/frontend/default/car_store/images/bkg_grid.gif +0 -0
  114. skin/frontend/default/car_store/images/bkg_header.jpg +0 -0
  115. skin/frontend/default/car_store/images/bkg_header.png +0 -0
  116. skin/frontend/default/car_store/images/bkg_hover-first-navigation.png +0 -0
  117. skin/frontend/default/car_store/images/bkg_img-product-view.png +0 -0
  118. skin/frontend/default/car_store/images/bkg_img-product.png +0 -0
  119. skin/frontend/default/car_store/images/bkg_login-box.gif +0 -0
  120. skin/frontend/default/car_store/images/bkg_main.png +0 -0
  121. skin/frontend/default/car_store/images/bkg_main1.gif +0 -0
  122. skin/frontend/default/car_store/images/bkg_main2.gif +0 -0
  123. skin/frontend/default/car_store/images/bkg_nav.png +0 -0
  124. skin/frontend/default/car_store/images/bkg_nav0.jpg +0 -0
  125. skin/frontend/default/car_store/images/bkg_nav1.gif +0 -0
  126. skin/frontend/default/car_store/images/bkg_nav2.gif +0 -0
  127. skin/frontend/default/car_store/images/bkg_nav2.png +0 -0
  128. skin/frontend/default/car_store/images/bkg_navigation.png +0 -0
  129. skin/frontend/default/car_store/images/bkg_opc-title-off.gif +0 -0
  130. skin/frontend/default/car_store/images/bkg_pipe1.gif +0 -0
  131. skin/frontend/default/car_store/images/bkg_pipe2.gif +0 -0
  132. skin/frontend/default/car_store/images/bkg_pipe3.gif +0 -0
  133. skin/frontend/default/car_store/images/bkg_product-view.gif +0 -0
  134. skin/frontend/default/car_store/images/bkg_product_collateral.gif +0 -0
  135. skin/frontend/default/car_store/images/bkg_rating.gif +0 -0
  136. skin/frontend/default/car_store/images/bkg_sepa-nav.png +0 -0
  137. skin/frontend/default/car_store/images/bkg_sidebarblock-content-category.png +0 -0
  138. skin/frontend/default/car_store/images/bkg_sidebarblock-content-left.png +0 -0
  139. skin/frontend/default/car_store/images/bkg_sidebarblock-content.png +0 -0
  140. skin/frontend/default/car_store/images/bkg_sorter-toolbar.png +0 -0
  141. skin/frontend/default/car_store/images/bkg_sp-methods.gif +0 -0
  142. skin/frontend/default/car_store/images/bkg_sub-hover.png +0 -0
  143. skin/frontend/default/car_store/images/bkg_sub.png +0 -0
  144. skin/frontend/default/car_store/images/bkg_tfoot.gif +0 -0
  145. skin/frontend/default/car_store/images/bkg_th-v.gif +0 -0
  146. skin/frontend/default/car_store/images/bkg_th.gif +0 -0
  147. skin/frontend/default/car_store/images/bkg_title-newproduct.png +0 -0
  148. skin/frontend/default/car_store/images/bkg_title.png +0 -0
  149. skin/frontend/default/car_store/images/bkg_toolbar.gif +0 -0
  150. skin/frontend/default/car_store/images/bkg_top-site-block-left.png +0 -0
  151. skin/frontend/default/car_store/images/bkg_top-site-category.png +0 -0
  152. skin/frontend/default/car_store/images/bkg_top-site.png +0 -0
  153. skin/frontend/default/car_store/images/btn-active-slider.png +0 -0
  154. skin/frontend/default/car_store/images/btn-no-active-slider.png +0 -0
  155. skin/frontend/default/car_store/images/btn_checkout.gif +0 -0
  156. skin/frontend/default/car_store/images/btn_gm-close.gif +0 -0
  157. skin/frontend/default/car_store/images/btn_google_checkout.gif +0 -0
  158. skin/frontend/default/car_store/images/btn_paypal_checkout.gif +0 -0
  159. skin/frontend/default/car_store/images/btn_place_order.gif +0 -0
  160. skin/frontend/default/car_store/images/btn_proceed_to_checkout.gif +0 -0
  161. skin/frontend/default/car_store/images/btn_proceed_to_checkout_dis.gif +0 -0
  162. skin/frontend/default/car_store/images/btn_remove.gif +0 -0
  163. skin/frontend/default/car_store/images/btn_remove2.gif +0 -0
  164. skin/frontend/default/car_store/images/btn_search.gif +0 -0
  165. skin/frontend/default/car_store/images/btn_trash.gif +0 -0
  166. skin/frontend/default/car_store/images/btn_window_close.gif +0 -0
  167. skin/frontend/default/car_store/images/calendar.gif +0 -0
  168. skin/frontend/default/car_store/images/catalog/product/placeholder/image.jpg +0 -0
  169. skin/frontend/default/car_store/images/catalog/product/placeholder/small_image.jpg +0 -0
  170. skin/frontend/default/car_store/images/catalog/product/placeholder/thumbnail.jpg +0 -0
  171. skin/frontend/default/car_store/images/cvv.gif +0 -0
  172. skin/frontend/default/car_store/images/cvv.jpg +0 -0
  173. skin/frontend/default/car_store/images/fam_book_open.png +0 -0
  174. skin/frontend/default/car_store/images/featured1.png +0 -0
  175. skin/frontend/default/car_store/images/featured2.png +0 -0
  176. skin/frontend/default/car_store/images/featured3.png +0 -0
  177. skin/frontend/default/car_store/images/featured4.png +0 -0
  178. skin/frontend/default/car_store/images/featured5.png +0 -0
  179. skin/frontend/default/car_store/images/featured6.png +0 -0
  180. skin/frontend/default/car_store/images/free_shipping_callout.jpg +0 -0
  181. skin/frontend/default/car_store/images/grid-cal.gif +0 -0
  182. skin/frontend/default/car_store/images/home_left_callout.jpg +0 -0
  183. skin/frontend/default/car_store/images/home_main_callout.jpg +0 -0
  184. skin/frontend/default/car_store/images/i_arrow-top.gif +0 -0
  185. skin/frontend/default/car_store/images/i_asc_arrow.gif +0 -0
  186. skin/frontend/default/car_store/images/i_availability_only.gif +0 -0
  187. skin/frontend/default/car_store/images/i_availability_only_arrow.gif +0 -0
  188. skin/frontend/default/car_store/images/i_block-cart.gif +0 -0
  189. skin/frontend/default/car_store/images/i_block-currency.gif +0 -0
  190. skin/frontend/default/car_store/images/i_block-list.gif +0 -0
  191. skin/frontend/default/car_store/images/i_block-poll.gif +0 -0
  192. skin/frontend/default/car_store/images/i_block-related.gif +0 -0
  193. skin/frontend/default/car_store/images/i_block-subscribe.gif +0 -0
  194. skin/frontend/default/car_store/images/i_block-tags.gif +0 -0
  195. skin/frontend/default/car_store/images/i_block-viewed.gif +0 -0
  196. skin/frontend/default/car_store/images/i_block-wishlist.gif +0 -0
  197. skin/frontend/default/car_store/images/i_desc_arrow.gif +0 -0
  198. skin/frontend/default/car_store/images/i_discount.gif +0 -0
  199. skin/frontend/default/car_store/images/i_folder-table.gif +0 -0
  200. skin/frontend/default/car_store/images/i_ma-info.gif +0 -0
  201. skin/frontend/default/car_store/images/i_ma-reviews.gif +0 -0
  202. skin/frontend/default/car_store/images/i_ma-tags.gif +0 -0
  203. skin/frontend/default/car_store/images/i_msg-error.gif +0 -0
  204. skin/frontend/default/car_store/images/i_msg-note.gif +0 -0
  205. skin/frontend/default/car_store/images/i_msg-success.gif +0 -0
  206. skin/frontend/default/car_store/images/i_notice.gif +0 -0
  207. skin/frontend/default/car_store/images/i_page1.gif +0 -0
  208. skin/frontend/default/car_store/images/i_page2.gif +0 -0
  209. skin/frontend/default/car_store/images/i_pager-next.gif +0 -0
  210. skin/frontend/default/car_store/images/i_pager-prev.gif +0 -0
  211. skin/frontend/default/car_store/images/i_print.gif +0 -0
  212. skin/frontend/default/car_store/images/i_rss-big.png +0 -0
  213. skin/frontend/default/car_store/images/i_rss.gif +0 -0
  214. skin/frontend/default/car_store/images/i_search_criteria.gif +0 -0
  215. skin/frontend/default/car_store/images/i_shipping.gif +0 -0
  216. skin/frontend/default/car_store/images/i_tag_add.gif +0 -0
  217. skin/frontend/default/car_store/images/i_tier.gif +0 -0
  218. skin/frontend/default/car_store/images/i_type_grid.gif +0 -0
  219. skin/frontend/default/car_store/images/i_type_list.gif +0 -0
  220. skin/frontend/default/car_store/images/logo.gif +0 -0
  221. skin/frontend/default/car_store/images/logo.png +0 -0
  222. skin/frontend/default/car_store/images/logo_email.gif +0 -0
  223. skin/frontend/default/car_store/images/logo_print.gif +0 -0
  224. skin/frontend/default/car_store/images/magnifier_handle.gif +0 -0
  225. skin/frontend/default/car_store/images/media/404_callout1.jpg +0 -0
  226. skin/frontend/default/car_store/images/media/404_callout2.jpg +0 -0
  227. skin/frontend/default/car_store/images/media/about_us_img.jpg +0 -0
  228. skin/frontend/default/car_store/images/media/best_selling_img01.jpg +0 -0
  229. skin/frontend/default/car_store/images/media/best_selling_img02.jpg +0 -0
  230. skin/frontend/default/car_store/images/media/best_selling_img03.jpg +0 -0
  231. skin/frontend/default/car_store/images/media/best_selling_img04.jpg +0 -0
  232. skin/frontend/default/car_store/images/media/best_selling_img05.jpg +0 -0
  233. skin/frontend/default/car_store/images/media/best_selling_img06.jpg +0 -0
  234. skin/frontend/default/car_store/images/media/cell_phone_landing_banner1.jpg +0 -0
  235. skin/frontend/default/car_store/images/media/col_left_callout.jpg +0 -0
  236. skin/frontend/default/car_store/images/media/col_right_callout.jpg +0 -0
  237. skin/frontend/default/car_store/images/media/electronics_cellphones.jpg +0 -0
  238. skin/frontend/default/car_store/images/media/electronics_digitalcameras.jpg +0 -0
  239. skin/frontend/default/car_store/images/media/electronics_laptops.jpg +0 -0
  240. skin/frontend/default/car_store/images/media/furniture_callout_spot.jpg +0 -0
  241. skin/frontend/default/car_store/images/media/furnitures_bed_room.jpg +0 -0
  242. skin/frontend/default/car_store/images/media/furnitures_living_room.jpg +0 -0
  243. skin/frontend/default/car_store/images/media/head_electronics_cellphones.gif +0 -0
  244. skin/frontend/default/car_store/images/media/head_electronics_digicamera.gif +0 -0
  245. skin/frontend/default/car_store/images/media/head_electronics_laptops.gif +0 -0
  246. skin/frontend/default/car_store/images/media/laptop_callout_mid1.jpg +0 -0
  247. skin/frontend/default/car_store/images/media/laptop_callout_mid2.jpg +0 -0
  248. skin/frontend/default/car_store/images/media/laptop_callout_mid3.jpg +0 -0
  249. skin/frontend/default/car_store/images/media/laptop_callout_spot.jpg +0 -0
  250. skin/frontend/default/car_store/images/media/shirts_landing_banner1.jpg +0 -0
  251. skin/frontend/default/car_store/images/np_cart_thumb.gif +0 -0
  252. skin/frontend/default/car_store/images/np_more_img.gif +0 -0
  253. skin/frontend/default/car_store/images/np_product_main.gif +0 -0
  254. skin/frontend/default/car_store/images/np_thumb.gif +0 -0
  255. skin/frontend/default/car_store/images/np_thumb2.gif +0 -0
  256. skin/frontend/default/car_store/images/opc-ajax-loader.gif +0 -0
  257. skin/frontend/default/car_store/images/ph_callout_left_rebel.jpg +0 -0
  258. skin/frontend/default/car_store/images/ph_callout_left_top.gif +0 -0
  259. skin/frontend/default/car_store/images/product_zoom_overlay_magnif.gif +0 -0
  260. skin/frontend/default/car_store/images/slider_bg.gif +0 -0
  261. skin/frontend/default/car_store/images/slider_btn_zoom_in.gif +0 -0
  262. skin/frontend/default/car_store/images/slider_btn_zoom_out.gif +0 -0
  263. skin/frontend/default/car_store/images/spacer.gif +0 -0
  264. skin/frontend/default/car_store/images/validation_advice_bg.gif +0 -0
  265. skin/frontend/default/car_store/js/coin-slider.js +480 -0
  266. skin/frontend/default/car_store/js/jquery-1.4.2.min.js +154 -0
app/design/frontend/default/car_store/layout/catalog.xml ADDED
@@ -0,0 +1,432 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 Magento Inc. (http://www.magentocommerce.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+
28
+ Supported layout update handles (action):
29
+ - catalog_product_gallery
30
+ - catalog_product_compare_index
31
+
32
+ Supported layout update handles (special):
33
+ - default
34
+ - catalog_category_default
35
+ - catalog_category_layered
36
+ - catalog_product_view
37
+
38
+ -->
39
+ <layout version="0.1.0">
40
+
41
+ <!--
42
+ Default layout, loads most of the pages
43
+ -->
44
+
45
+ <default>
46
+
47
+ <!-- Mage_Catalog -->
48
+ <reference name="top.menu">
49
+ <block type="catalog/navigation" name="catalog.topnav" template="catalog/navigation/top.phtml"/>
50
+ </reference>
51
+ <reference name="left">
52
+ <block type="catalog/product_compare_sidebar" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
53
+ </reference>
54
+ <reference name="right">
55
+
56
+ </reference>
57
+ <reference name="footer_links">
58
+ <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>
59
+ </reference>
60
+ <block type="catalog/product_price_template" name="catalog_product_price_template" />
61
+ </default>
62
+
63
+
64
+ <!--
65
+ Category default layout
66
+ -->
67
+
68
+ <catalog_category_default translate="label">
69
+ <label>Catalog Category (Non-Anchor)</label>
70
+ <reference name="root">
71
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
72
+ </reference>
73
+ <reference name="left">
74
+ <block type="catalog/navigation" name="catalog.leftnav" before="-" template="catalog/navigation/left.phtml"/>
75
+ </reference>
76
+ <reference name="content">
77
+ <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
78
+ <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
79
+ <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
80
+ <block type="page/html_pager" name="product_list_toolbar_pager"/>
81
+ <!-- The following code shows how to set your own pager increments -->
82
+ <!--
83
+ <action method="setDefaultListPerPage"><limit>4</limit></action>
84
+ <action method="setDefaultGridPerPage"><limit>9</limit></action>
85
+ <action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
86
+ <action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
87
+ <action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
88
+ <action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
89
+ <action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
90
+ -->
91
+ </block>
92
+ <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
93
+ <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
94
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
95
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
96
+ <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
97
+ <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
98
+ </block>
99
+ </block>
100
+ </reference>
101
+ </catalog_category_default>
102
+
103
+ <!--
104
+ Category layered navigation layout
105
+ -->
106
+
107
+ <catalog_category_layered translate="label">
108
+ <label>Catalog Category (Anchor)</label>
109
+ <reference name="root">
110
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
111
+ </reference>
112
+ <reference name="left">
113
+ <block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml"/>
114
+ </reference>
115
+ <reference name="content">
116
+ <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
117
+ <block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
118
+ <!-- <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/su.phtml</template></action> -->
119
+ <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
120
+ <block type="page/html_pager" name="product_list_toolbar_pager"/>
121
+ <!-- The following code shows how to set your own pager increments -->
122
+ <!--
123
+ <action method="setDefaultListPerPage"><limit>4</limit></action>
124
+ <action method="setDefaultGridPerPage"><limit>3</limit></action>
125
+ <action method="addPagerLimit"><mode>list</mode><limit>2</limit></action>
126
+ <action method="addPagerLimit"><mode>list</mode><limit>4</limit></action>
127
+ <action method="addPagerLimit"><mode>list</mode><limit>6</limit></action>
128
+ <action method="addPagerLimit"><mode>list</mode><limit>8</limit></action>
129
+ <action method="addPagerLimit" translate="label"><mode>list</mode><limit>all</limit><label>All</label></action>
130
+ <action method="addPagerLimit"><mode>grid</mode><limit>3</limit></action>
131
+ <action method="addPagerLimit"><mode>grid</mode><limit>6</limit></action>
132
+ <action method="addPagerLimit"><mode>grid</mode><limit>9</limit></action>
133
+ <action method="addPagerLimit" translate="label"><mode>grid</mode><limit>all</limit><label>All</label></action>
134
+ -->
135
+ </block>
136
+ <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
137
+ <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
138
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
139
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
140
+ <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
141
+ <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
142
+ </block>
143
+ </block>
144
+ </reference>
145
+ </catalog_category_layered>
146
+
147
+ <catalog_category_layered_nochildren translate="label">
148
+ <label>Catalog Category (Without Subcategories)</label>
149
+ <remove name="right.reports.product.viewed" />
150
+ <reference name="right">
151
+ <block type="reports/product_viewed" before="right.permanent.callout" name="left.reports.product.viewed" template="reports/product_viewed.phtml" />
152
+ </reference>
153
+ </catalog_category_layered_nochildren>
154
+
155
+ <!--
156
+ Compare products page
157
+ -->
158
+
159
+ <catalog_product_compare_index translate="label">
160
+ <label>Catalog Product Compare List</label>
161
+ <!-- Mage_Catalog -->
162
+ <reference name="root">
163
+ <action method="setTemplate"><template>page/popup.phtml</template></action>
164
+ </reference>
165
+ <reference name="head">
166
+ <action method="addJs"><script>scriptaculous/scriptaculous.js</script></action>
167
+ <action method="addJs"><script>varien/product.js</script></action>
168
+ </reference>
169
+ <reference name="content">
170
+ <block type="catalog/product_compare_list" name="catalog.compare.list" template="catalog/product/compare/list.phtml"/>
171
+ </reference>
172
+ </catalog_product_compare_index>
173
+
174
+ <customer_account_index>
175
+ <reference name="right">
176
+ <action method="unsetChild"><name>catalog.compare.sidebar</name></action>
177
+ </reference>
178
+ </customer_account_index>
179
+
180
+ <!--
181
+ Product view
182
+ -->
183
+
184
+ <catalog_product_view translate="label">
185
+ <label>Catalog Product View (Any)</label>
186
+ <!-- Mage_Catalog -->
187
+ <reference name="root">
188
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
189
+ </reference>
190
+ <reference name="left">
191
+ <block type="catalog/layer_view" name="catalog.leftnav" before="-" template="catalog/layer/view.phtml"/>
192
+ </reference>
193
+ <reference name="head">
194
+ <action method="addJs"><script>varien/product.js</script></action>
195
+
196
+ <action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
197
+ <action method="addItem"><type>js</type><name>calendar/calendar.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
198
+ <action method="addItem"><type>js</type><name>calendar/calendar-setup.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
199
+ </reference>
200
+ <reference name="content">
201
+ <block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
202
+ <!--
203
+ <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/summary.phtml</template></action>
204
+ <action method="addReviewSummaryTemplate"><type>short</type><template>review/helper/summary_short.phtml</template></action>
205
+ <action method="addReviewSummaryTemplate"><type>...</type><template>...</template></action>
206
+ -->
207
+ <block type="catalog/product_view_media" name="product.info.media" as="media" template="catalog/product/view/media.phtml"/>
208
+ <block type="core/text_list" name="alert.urls" as="alert_urls" translate="label">
209
+ <label>Alert Urls</label>
210
+ </block>
211
+
212
+ <action method="setTierPriceTemplate"><template>catalog/product/view/tierprices.phtml</template></action>
213
+
214
+ <block type="catalog/product_list_upsell" name="product.info.upsell" as="upsell_products" template="catalog/product/list/upsell.phtml">
215
+ <action method="setColumnCount"><columns>4</columns></action>
216
+ <action method="setItemLimit"><type>upsell</type><limit>4</limit></action>
217
+ </block>
218
+
219
+ <block type="catalog/product_view_additional" name="product.info.additional" as="product_additional_data" />
220
+ <block type="catalog/product_view_description" name="product.description" as="description" template="catalog/product/view/description.phtml">
221
+ <action method="addToParentGroup"><group>detailed_info</group></action>
222
+ </block>
223
+ <block type="catalog/product_view_attributes" name="product.attributes" as="additional" template="catalog/product/view/attributes.phtml">
224
+ <action method="addToParentGroup"><group>detailed_info</group></action>
225
+ </block>
226
+ <block type="catalog/product_view" name="product.info.addto" as="addto" template="catalog/product/view/addto.phtml"/>
227
+ <block type="catalog/product_view" name="product.info.addtocart" as="addtocart" template="catalog/product/view/addtocart.phtml"/>
228
+
229
+ <block type="core/text_list" name="product.info.extrahint" as="extrahint" translate="label">
230
+ <label>Product View Extra Hint</label>
231
+ </block>
232
+
233
+ <block type="catalog/product_view" name="product.info.options.wrapper" as="product_options_wrapper" template="catalog/product/view/options/wrapper.phtml" translate="label">
234
+ <label>Info Column Options Wrapper</label>
235
+ <block type="core/template" name="options_js" template="catalog/product/view/options/js.phtml"/>
236
+ <block type="catalog/product_view_options" name="product.info.options" as="product_options" template="catalog/product/view/options.phtml">
237
+ <action method="addOptionRenderer"><type>text</type><block>catalog/product_view_options_type_text</block><template>catalog/product/view/options/type/text.phtml</template></action>
238
+ <action method="addOptionRenderer"><type>file</type><block>catalog/product_view_options_type_file</block><template>catalog/product/view/options/type/file.phtml</template></action>
239
+ <action method="addOptionRenderer"><type>select</type><block>catalog/product_view_options_type_select</block><template>catalog/product/view/options/type/select.phtml</template></action>
240
+ <action method="addOptionRenderer"><type>date</type><block>catalog/product_view_options_type_date</block><template>catalog/product/view/options/type/date.phtml</template></action>
241
+ </block>
242
+ <block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
243
+ </block>
244
+ <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">
245
+ <label>Bottom Block Options Wrapper</label>
246
+ <action method="insert"><block>product.tierprices</block></action>
247
+ <block type="catalog/product_view" name="product.clone_prices" as="prices" template="catalog/product/view/price_clone.phtml"/>
248
+ <action method="append"><block>product.info.addtocart</block></action>
249
+ </block>
250
+
251
+ <block type="core/template_facade" name="product.info.container1" as="container1">
252
+ <action method="setDataByKey"><key>alias_in_layout</key><value>container1</value></action>
253
+ <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
254
+ <action method="append"><block>product.info.options.wrapper</block></action>
255
+ <action method="append"><block>product.info.options.wrapper.bottom</block></action>
256
+ </block>
257
+ <block type="core/template_facade" name="product.info.container2" as="container2">
258
+ <action method="setDataByKey"><key>alias_in_layout</key><value>container2</value></action>
259
+ <action method="setDataByKeyFromRegistry"><key>options_container</key><key_in_registry>product</key_in_registry></action>
260
+ <action method="append"><block>product.info.options.wrapper</block></action>
261
+ <action method="append"><block>product.info.options.wrapper.bottom</block></action>
262
+ </block>
263
+ <action method="unsetCallChild"><child>container1</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
264
+ <action method="unsetCallChild"><child>container2</child><call>ifEquals</call><if>0</if><key>alias_in_layout</key><key>options_container</key></action>
265
+ </block>
266
+ </reference>
267
+ <reference name="right">
268
+ <block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
269
+ </reference>
270
+ </catalog_product_view>
271
+
272
+ <!--
273
+ Additional block dependant on product type
274
+ -->
275
+ <PRODUCT_TYPE_simple translate="label" module="catalog">
276
+ <label>Catalog Product View (Simple)</label>
277
+ <reference name="product.info">
278
+ <block type="catalog/product_view_type_simple" name="product.info.simple" as="product_type_data" template="catalog/product/view/type/simple.phtml">
279
+ <block type="core/text_list" name="product.info.simple.extra" as="product_type_data_extra"/>
280
+ </block>
281
+ </reference>
282
+ </PRODUCT_TYPE_simple>
283
+ <PRODUCT_TYPE_configurable translate="label" module="catalog">
284
+ <label>Catalog Product View (Configurable)</label>
285
+ <reference name="product.info">
286
+ <block type="catalog/product_view_type_configurable" name="product.info.configurable" as="product_type_data" template="catalog/product/view/type/configurable.phtml">
287
+ <block type="core/text_list" name="product.info.configurable.extra" as="product_type_data_extra"/>
288
+ </block>
289
+ </reference>
290
+ <reference name="product.info.options.wrapper">
291
+ <block type="catalog/product_view_type_configurable" name="product.info.options.configurable" as="options_configurable" before="-" template="catalog/product/view/type/options/configurable.phtml"/>
292
+ </reference>
293
+ </PRODUCT_TYPE_configurable>
294
+ <PRODUCT_TYPE_grouped translate="label" module="catalog">
295
+ <label>Catalog Product View (Grouped)</label>
296
+ <reference name="product.info">
297
+ <block type="catalog/product_view_type_grouped" name="product.info.grouped" as="product_type_data" template="catalog/product/view/type/grouped.phtml">
298
+ <block type="core/text_list" name="product.info.grouped.extra" as="product_type_data_extra"/>
299
+ </block>
300
+ </reference>
301
+ </PRODUCT_TYPE_grouped>
302
+ <PRODUCT_TYPE_virtual translate="label" module="catalog">
303
+ <label>Catalog Product View (Virtual)</label>
304
+ <reference name="product.info">
305
+ <block type="catalog/product_view_type_virtual" name="product.info.virtual" as="product_type_data" template="catalog/product/view/type/virtual.phtml">
306
+ <block type="core/text_list" name="product.info.virtual.extra" as="product_type_data_extra"/>
307
+ </block>
308
+ </reference>
309
+ </PRODUCT_TYPE_virtual>
310
+
311
+
312
+
313
+ <!--
314
+ Product send to friend
315
+ -->
316
+
317
+ <catalog_product_send translate="label">
318
+ <label>Catalog Product Email to a Friend</label>
319
+ <!-- Mage_Catalog -->
320
+ <reference name="root">
321
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
322
+ </reference>
323
+ <reference name="head">
324
+ <action method="addJs"><script>varien/product.js</script></action>
325
+ </reference>
326
+ <reference name="content">
327
+ <block type="catalog/product_send" name="product.send" template="catalog/product/send.phtml">
328
+ </block>
329
+ </reference>
330
+ </catalog_product_send>
331
+
332
+ <!--
333
+ Product additional images gallery popup
334
+ -->
335
+
336
+ <catalog_product_gallery translate="label">
337
+ <label>Catalog Product Image Gallery Popup</label>
338
+ <!-- Mage_Catalog -->
339
+ <reference name="root">
340
+ <action method="setTemplate"><template>page/popup.phtml</template></action>
341
+ </reference>
342
+ <reference name="content">
343
+ <block type="catalog/product_gallery" name="catalog_product_gallery" template="catalog/product/gallery.phtml"/>
344
+ </reference>
345
+ </catalog_product_gallery>
346
+
347
+ <!--
348
+ SEO Site Map
349
+ -->
350
+
351
+ <catalog_seo_sitemap translate="label">
352
+ <label>Catalog Seo Sitemap (Common)</label>
353
+ <remove name="right"/>
354
+ <remove name="left"/>
355
+
356
+ <reference name="root">
357
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
358
+ </reference>
359
+ <reference name="content">
360
+ <block type="page/template_container" name="seo.sitemap.container" template="catalog/seo/sitemap/container.phtml">
361
+ <block type="page/template_links" name="seo.sitemap.links" as="links" template="page/template/links.phtml"/>
362
+ <block type="page/html_pager" name="seo.sitemap.pager.top" as="pager_top" template="page/html/pager.phtml"/>
363
+ <block type="page/html_pager" name="seo.sitemap.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
364
+ </block>
365
+ </reference>
366
+ </catalog_seo_sitemap>
367
+
368
+ <catalog_seo_sitemap_category translate="label">
369
+ <label>Catalog Seo Sitemap (Category List)</label>
370
+ <update handle="catalog_seo_sitemap" />
371
+ <reference name="seo.sitemap.container">
372
+ <action method="setTitle" translate="title" module="catalog"><title>Categories</title></action>
373
+ <block type="catalog/seo_sitemap_category" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
374
+ <action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
375
+ <action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
376
+ <action method="setItemsTitle" translate="title" module="catalog"><title>categories</title></action>
377
+ </block>
378
+ </reference>
379
+ <reference name="seo.sitemap.links">
380
+ <action method="addLink" translate="label title" module="catalog"><label>Products Sitemap</label><url helper="catalog/map/getProductUrl"/><title>Products Sitemap</title></action>
381
+ </reference>
382
+ </catalog_seo_sitemap_category>
383
+
384
+ <catalog_seo_sitemap_category_tree translate="label">
385
+ <label>Catalog Seo Sitemap (Category Tree)</label>
386
+ <reference name="seo.sitemap.container">
387
+ <remove name="seo.sitemap.pager.top" />
388
+ <remove name="seo.sitemap.pager.bottom" />
389
+ <block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.top" as="pager_top" template="page/html/pager.phtml"/>
390
+ <block type="catalog/seo_sitemap_tree_pager" name="seo.sitemap.tree.pager.bottom" as="pager_bottom" template="page/html/pager.phtml"/>
391
+ <remove name="seo.sitemap.sitemap" />
392
+ <block type="catalog/seo_sitemap_tree_category" name="seo.sitemap.sitemap_tree" as="sitemap" after="pager_top" template="catalog/seo/tree.phtml">
393
+ <action method="bindPager"><pager>seo.sitemap.tree.pager.top</pager></action>
394
+ <action method="bindPager"><pager>seo.sitemap.tree.pager.bottom</pager></action>
395
+ </block>
396
+ </reference>
397
+ </catalog_seo_sitemap_category_tree>
398
+
399
+ <catalog_seo_sitemap_product translate="label">
400
+ <label>Catalog Seo Sitemap (Product List)</label>
401
+ <update handle="catalog_seo_sitemap" />
402
+ <reference name="seo.sitemap.container">
403
+ <action method="setTitle" translate="title" module="catalog"><title>Products</title></action>
404
+ <block type="catalog/seo_sitemap_product" name="seo.sitemap.sitemap" as="sitemap" after="pager_top" template="catalog/seo/sitemap.phtml">
405
+ <action method="bindPager"><pager>seo.sitemap.pager.top</pager></action>
406
+ <action method="bindPager"><pager>seo.sitemap.pager.bottom</pager></action>
407
+ <action method="setItemsTitle" translate="title" module="catalog"><title>products</title></action>
408
+ </block>
409
+ </reference>
410
+ <reference name="seo.sitemap.links">
411
+ <action method="addLink" translate="label title" module="catalog"><label>Categories Sitemap</label><url helper="catalog/map/getCategoryUrl"/><title>Categories Sitemap</title></action>
412
+ </reference>
413
+ </catalog_seo_sitemap_product>
414
+
415
+
416
+ <!--
417
+ Catalog search terms block
418
+ -->
419
+
420
+ <catalog_seo_searchterm_popular translate="label">
421
+ <label>Catalog Seo Popular Search Terms</label>
422
+ <remove name="right"/>
423
+ <remove name="left"/>
424
+ <reference name="root">
425
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
426
+ </reference>
427
+ <reference name="content">
428
+ <block type="catalog/seo_searchterm" name="seo.searchterm" template="catalog/seo/searchterm.phtml"/>
429
+ </reference>
430
+ </catalog_seo_searchterm_popular>
431
+
432
+ </layout>
app/design/frontend/default/car_store/layout/catalogsearch.xml ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ <default>
32
+ <reference name="header">
33
+ <block type="core/template" name="top.search" as="topSearch" template="catalogsearch/form.mini.phtml"/>
34
+ </reference>
35
+ <reference name="footer_links">
36
+ <action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
37
+ <label>Search Terms</label>
38
+ <url helper="catalogsearch/getSearchTermUrl" />
39
+ <title>Search Terms</title>
40
+ </action>
41
+ <action method="addLink" translate="label title" module="catalogsearch">
42
+ <label>Advanced Search</label>
43
+ <url helper="catalogsearch/getAdvancedSearchUrl" />
44
+ <title>Advanced Search</title>
45
+ </action>
46
+ </reference>
47
+ </default>
48
+
49
+ <catalogsearch_result_index translate="label">
50
+ <label>Quick Search Form</label>
51
+ <reference name="root">
52
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
53
+ </reference>
54
+ <reference name="left">
55
+ <block type="catalogsearch/layer" name="catalogsearch.leftnav" before="-" template="catalog/layer/view.phtml"/>
56
+ </reference>
57
+ <reference name="content">
58
+ <block type="catalogsearch/result" name="search.result" template="catalogsearch/result.phtml">
59
+ <block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml">
60
+ <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
61
+ <block type="page/html_pager" name="product_list_toolbar_pager"/>
62
+ </block>
63
+ <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
64
+ <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
65
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
66
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
67
+ <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
68
+ <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
69
+ </block>
70
+ <action method="setListOrders"/>
71
+ <action method="setListModes"/>
72
+ <action method="setListCollection"/>
73
+ </block>
74
+ </reference>
75
+ </catalogsearch_result_index>
76
+
77
+ <catalogsearch_advanced_index translate="label">
78
+ <label>Advanced Search Form</label>
79
+ <!-- Mage_Catalogsearch -->
80
+ <reference name="root">
81
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
82
+ </reference>
83
+ <reference name="head">
84
+ <action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
85
+ <action method="addItem"><type>js</type><name>calendar/calendar.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
86
+ <action method="addItem"><type>js</type><name>calendar/calendar-setup.js</name><!--<params/><if/><condition>can_load_calendar_js</condition>--></action>
87
+ </reference>
88
+ <reference name="content">
89
+ <block type="catalogsearch/advanced_form" name="catalogsearch_advanced_form" template="catalogsearch/advanced/form.phtml"/>
90
+ <block type="core/html_calendar" name="html_calendar" as="html_calendar" template="page/js/calendar.phtml"/>
91
+ </reference>
92
+ </catalogsearch_advanced_index>
93
+
94
+ <!--
95
+ Advanced search results
96
+ -->
97
+
98
+ <catalogsearch_advanced_result translate="label">
99
+ <label>Advanced Search Result</label>
100
+ <update handle="page_two_columns_right" />
101
+ <!-- Mage_Catalogsearch -->
102
+ <reference name="root">
103
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
104
+ </reference>
105
+ <reference name="content">
106
+ <block type="catalogsearch/advanced_result" name="catalogsearch_advanced_result" template="catalogsearch/advanced/result.phtml">
107
+ <block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml">
108
+ <block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
109
+ <block type="page/html_pager" name="product_list_toolbar_pager"/>
110
+ </block>
111
+ <action method="addColumnCountLayoutDepend"><layout>empty</layout><count>6</count></action>
112
+ <action method="addColumnCountLayoutDepend"><layout>one_column</layout><count>5</count></action>
113
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_left</layout><count>4</count></action>
114
+ <action method="addColumnCountLayoutDepend"><layout>two_columns_right</layout><count>4</count></action>
115
+ <action method="addColumnCountLayoutDepend"><layout>three_columns</layout><count>3</count></action>
116
+ <action method="setToolbarBlockName"><name>product_list_toolbar</name></action>
117
+ </block>
118
+ <action method="setListOrders"/>
119
+ <action method="setListModes"/>
120
+ <action method="setListCollection"/>
121
+ </block>
122
+ </reference>
123
+ </catalogsearch_advanced_result>
124
+
125
+ <catalogsearch_term_popular translate="label">
126
+ <label>Popular Search Terms</label>
127
+ <remove name="right"/>
128
+ <remove name="left"/>
129
+
130
+ <reference name="root">
131
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
132
+ </reference>
133
+ <reference name="content">
134
+ <block type="catalogsearch/term" name="seo.searchterm" template="catalogsearch/term.phtml"/>
135
+ </reference>
136
+ </catalogsearch_term_popular>
137
+
138
+ </layout>
app/design/frontend/default/car_store/layout/checkout.xml ADDED
@@ -0,0 +1,412 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 Magento Inc. (http://www.magentocommerce.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+
28
+ -->
29
+ <layout version="0.1.0">
30
+
31
+ <!--
32
+ Default layout, loads most of the pages
33
+ -->
34
+
35
+ <default>
36
+
37
+ <!-- Mage_Checkout -->
38
+ <reference name="top.links">
39
+ <block type="checkout/links" name="checkout_cart_link">
40
+ <!-- <action method="addCartLink"></action> -->
41
+ <action method="addCheckoutLink"></action>
42
+ </block>
43
+ </reference>
44
+ <reference name="left">
45
+ <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
46
+ <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
47
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
48
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
49
+ <block type="core/text_list" name="cart_sidebar.extra_actions" as="extra_actions"/>
50
+ </block>
51
+ </reference>
52
+ </default>
53
+
54
+ <checkout_cart_index translate="label">
55
+ <label>Shopping Cart</label>
56
+ <remove name="right"/>
57
+ <remove name="left"/>
58
+ <!-- Mage_Checkout -->
59
+ <reference name="root">
60
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
61
+ </reference>
62
+ <reference name="content">
63
+ <block type="checkout/cart" name="checkout.cart">
64
+ <action method="setCartTemplate"><value>checkout/cart.phtml</value></action>
65
+ <action method="setEmptyTemplate"><value>checkout/cart/noItems.phtml</value></action>
66
+ <action method="chooseTemplate"/>
67
+ <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/item/default.phtml</template></action>
68
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/item/default.phtml</template></action>
69
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/item/default.phtml</template></action>
70
+
71
+ <block type="core/text_list" name="checkout.cart.top_methods" as="top_methods" translate="label">
72
+ <label>Payment Methods Before Checkout Button</label>
73
+ <block type="checkout/onepage_link" name="checkout.cart.methods.onepage" template="checkout/onepage/link.phtml"/>
74
+ </block>
75
+
76
+ <block type="page/html_wrapper" name="checkout.cart.form.before" as="form_before" translate="label">
77
+ <label>Shopping Cart Form Before</label>
78
+ </block>
79
+
80
+ <block type="core/text_list" name="checkout.cart.methods" as="methods" translate="label">
81
+ <label>Payment Methods After Checkout Button</label>
82
+ <block type="checkout/onepage_link" name="checkout.cart.methods.onepage" template="checkout/onepage/link.phtml"/>
83
+ <block type="checkout/multishipping_link" name="checkout.cart.methods.multishipping" template="checkout/multishipping/link.phtml"/>
84
+ </block>
85
+
86
+ <block type="checkout/cart_coupon" name="checkout.cart.coupon" as="coupon" template="checkout/cart/coupon.phtml"/>
87
+ <block type="checkout/cart_shipping" name="checkout.cart.shipping" as="shipping" template="checkout/cart/shipping.phtml"/>
88
+ <block type="checkout/cart_crosssell" name="checkout.cart.crosssell" as="crosssell" template="checkout/cart/crosssell.phtml"/>
89
+
90
+ <block type="checkout/cart_totals" name="checkout.cart.totals" as="totals" template="checkout/cart/totals.phtml"/>
91
+ </block>
92
+ </reference>
93
+ </checkout_cart_index>
94
+
95
+ <!--
96
+ Multi address shipping checkout main layout,
97
+ will be rendered on all checkout pages
98
+ -->
99
+
100
+ <checkout_multishipping translate="label">
101
+ <label>Multishipping Checkout</label>
102
+ <!-- Mage_Checkout -->
103
+ <remove name="right"/>
104
+ <remove name="left"/>
105
+
106
+ <reference name="root">
107
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
108
+ </reference>
109
+ <reference name="content">
110
+ <block type="checkout/multishipping_state" name="checkout_state" template="checkout/multishipping/state.phtml"/>
111
+ </reference>
112
+ </checkout_multishipping>
113
+
114
+ <checkout_multishipping_login>
115
+ <update handle="customer_account_login"/>
116
+ </checkout_multishipping_login>
117
+
118
+ <checkout_multishipping_register>
119
+ <update handle="customer_account_create"/>
120
+ </checkout_multishipping_register>
121
+
122
+ <!--
123
+ Multi address shipping checkout selection of address per item page
124
+ -->
125
+
126
+ <checkout_multishipping_address_select translate="label">
127
+ <label>Multishipping Checkout Shipping Address Selection</label>
128
+ <update handle="checkout_multishipping"/>
129
+ <!-- Mage_Checkout -->
130
+ <reference name="content">
131
+ <block type="checkout/multishipping_address_select" name="checkout_address_select" template="checkout/multishipping/address/select.phtml"/>
132
+ </reference>
133
+ </checkout_multishipping_address_select>
134
+
135
+ <checkout_multishipping_address_selectbilling translate="label">
136
+ <label>Multishipping Checkout Billing Address Selection</label>
137
+ <update handle="checkout_multishipping"/>
138
+ <!-- Mage_Checkout -->
139
+ <reference name="content">
140
+ <block type="checkout/multishipping_address_select" name="checkout_address_select" template="checkout/multishipping/address/select.phtml"/>
141
+ </reference>
142
+ </checkout_multishipping_address_selectbilling>
143
+
144
+
145
+ <checkout_multishipping_address_newshipping translate="label">
146
+ <label>Multishipping Checkout Shipping Address Creation</label>
147
+ <update handle="checkout_multishipping"/>
148
+ <update handle="checkout_multishipping_customer_address"/>
149
+ </checkout_multishipping_address_newshipping>
150
+
151
+ <checkout_multishipping_address_newbilling translate="label">
152
+ <label>Multishipping Checkout Billing Address Creation</label>
153
+ <update handle="checkout_multishipping"/>
154
+ <update handle="checkout_multishipping_customer_address"/>
155
+ </checkout_multishipping_address_newbilling>
156
+
157
+ <checkout_multishipping_address_editshipping translate="label">
158
+ <label>Multishipping Checkout Shipping Address Edit Form</label>
159
+ <update handle="checkout_multishipping"/>
160
+ <update handle="checkout_multishipping_customer_address"/>
161
+ </checkout_multishipping_address_editshipping>
162
+
163
+ <checkout_multishipping_address_editaddress>
164
+ <update handle="checkout_multishipping"/>
165
+ <update handle="checkout_multishipping_customer_address"/>
166
+ </checkout_multishipping_address_editaddress>
167
+
168
+ <checkout_multishipping_address_editbilling translate="label">
169
+ <label>Multishipping Checkout Billing Address Edit Form</label>
170
+ <update handle="checkout_multishipping"/>
171
+ <update handle="checkout_multishipping_customer_address"/>
172
+ </checkout_multishipping_address_editbilling>
173
+
174
+ <checkout_multishipping_customer_address translate="label">
175
+ <label>Multishipping Checkout Customer Address Edit Form</label>
176
+ <reference name="content">
177
+ <block type="customer/address_edit" name="customer_address_edit" template="customer/address/edit.phtml"/>
178
+ </reference>
179
+ </checkout_multishipping_customer_address>
180
+
181
+ <!--
182
+ Multi address shipping checkout address page
183
+ -->
184
+
185
+ <checkout_multishipping_addresses translate="label">
186
+ <label>Multishipping Checkout Address (Any) Form</label>
187
+ <update handle="checkout_multishipping"/>
188
+ <!-- Mage_Checkout -->
189
+ <reference name="content">
190
+ <block type="checkout/multishipping_addresses" name="checkout_addresses" template="checkout/multishipping/addresses.phtml">
191
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
192
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
193
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
194
+ </block>
195
+ </reference>
196
+ </checkout_multishipping_addresses>
197
+
198
+ <!--
199
+ Multi address shipping checkout shipping information
200
+ -->
201
+
202
+ <checkout_multishipping_shipping translate="label">
203
+ <label>Multishipping Checkout Shipping Information Step</label>
204
+ <update handle="checkout_multishipping"/>
205
+ <!-- Mage_Checkout -->
206
+ <reference name="content">
207
+ <block type="checkout/multishipping_shipping" name="checkout_shipping" template="checkout/multishipping/shipping.phtml">
208
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
209
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
210
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
211
+
212
+ <block type="checkout/multishipping_billing_items" name="checkout_billing_items" template="checkout/multishipping/billing/items.phtml">
213
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
214
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
215
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
216
+ </block>
217
+ </block>
218
+ </reference>
219
+ </checkout_multishipping_shipping>
220
+
221
+ <!--
222
+ Multi address shipping checkout billing information
223
+ -->
224
+
225
+ <checkout_multishipping_billing translate="label">
226
+ <label>Multishipping Checkout Billing Information Step</label>
227
+ <update handle="checkout_multishipping"/>
228
+ <!-- Mage_Checkout -->
229
+ <reference name="content">
230
+ <block type="checkout/multishipping_billing" name="checkout_billing" template="checkout/multishipping/billing.phtml">
231
+ <action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
232
+
233
+ <!--<block type="checkout/multishipping_billing_items" name="checkout_billing_items" template="checkout/multishipping/billing/items.phtml">
234
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
235
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
236
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
237
+ </block>-->
238
+
239
+ </block>
240
+ </reference>
241
+ </checkout_multishipping_billing>
242
+
243
+ <!--
244
+ Multi address shipping checkout overview
245
+ -->
246
+
247
+ <checkout_multishipping_overview translate="label">
248
+ <label>Multishipping Checkout Overview</label>
249
+ <update handle="checkout_multishipping"/>
250
+ <!-- Mage_Checkout -->
251
+ <reference name="content">
252
+ <block type="checkout/multishipping_overview" name="checkout_overview" template="checkout/multishipping/overview.phtml">
253
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/multishipping/item/default.phtml</template></action>
254
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/item/default.phtml</template></action>
255
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/item/default.phtml</template></action>
256
+ <action method="addRowItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/multishipping/overview/item.phtml</template></action>
257
+ <action method="addRowItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/multishipping/overview/item.phtml</template></action>
258
+ <block type="checkout/multishipping_payment_info" name="payment_info">
259
+ <action method="setInfoTemplate"><method></method><template></template></action>
260
+ </block>
261
+ <block type="checkout/agreements" name="checkout.multishipping.agreements" as="agreements" template="checkout/multishipping/agreements.phtml"/>
262
+ <block type="checkout/cart_totals" name="totals" />
263
+ <block type="core/text_list" name="checkout.multishipping.overview.items.after" as="items_after"/>
264
+ </block>
265
+ </reference>
266
+ </checkout_multishipping_overview>
267
+
268
+ <!--
269
+ Multi address shipping checkout success
270
+ -->
271
+
272
+ <checkout_multishipping_success translate="label">
273
+ <label>Multishipping Checkout Success</label>
274
+ <update handle="checkout_multishipping"/>
275
+ <!-- Mage_Checkout -->
276
+ <reference name="content">
277
+ <block type="checkout/multishipping_success" name="checkout_success" template="checkout/multishipping/success.phtml"/>
278
+ </reference>
279
+ </checkout_multishipping_success>
280
+
281
+ <!--
282
+ One page checkout main layout
283
+ -->
284
+
285
+ <checkout_onepage_index translate="label">
286
+ <label>One Page Checkout</label>
287
+ <!-- Mage_Checkout -->
288
+ <remove name="left"/>
289
+
290
+ <reference name="root">
291
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
292
+ </reference>
293
+ <reference name="right">
294
+ <action method="unsetChildren"></action>
295
+ <block type="page/html_wrapper" name="checkout.progress.wrapper">
296
+ <action method="setElementId"><value>checkout-progress-wrapper</value></action>
297
+ <block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml"/>
298
+ </block>
299
+ </reference>
300
+ <reference name="content">
301
+ <block type="checkout/onepage" name="checkout.onepage" template="checkout/onepage.phtml">
302
+ <block type="checkout/onepage_login" name="checkout.onepage.login" as="login" template="checkout/onepage/login.phtml">
303
+ <block type="page/html_wrapper" name="checkout.onepage.login.before" as="login_before">
304
+ <action method="setMayBeInvisible"><value>1</value></action>
305
+ </block>
306
+ </block>
307
+ <block type="checkout/onepage_billing" name="checkout.onepage.billing" as="billing" template="checkout/onepage/billing.phtml"/>
308
+ <block type="checkout/onepage_shipping" name="checkout.onepage.shipping" as="shipping" template="checkout/onepage/shipping.phtml"/>
309
+ <block type="checkout/onepage_shipping_method" name="checkout.onepage.shipping_method" as="shipping_method" template="checkout/onepage/shipping_method.phtml">
310
+ <block type="checkout/onepage_shipping_method_available" name="checkout.onepage.shipping_method.available" as="available" template="checkout/onepage/shipping_method/available.phtml"/>
311
+ <block type="checkout/onepage_shipping_method_additional" name="checkout.onepage.shipping_method.additional" as="additional" template="checkout/onepage/shipping_method/additional.phtml"/>
312
+ </block>
313
+ <block type="checkout/onepage_payment" name="checkout.onepage.payment" as="payment" template="checkout/onepage/payment.phtml">
314
+ <block type="checkout/onepage_payment_methods" name="checkout.payment.methods" as="methods" template="checkout/onepage/payment/methods.phtml">
315
+ <action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
316
+ </block>
317
+ </block>
318
+ <block type="checkout/onepage_review" name="checkout.onepage.review" as="review" template="checkout/onepage/review.phtml">
319
+ <block type="checkout/agreements" name="checkout.onepage.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
320
+ </block>
321
+ </block>
322
+ </reference>
323
+ </checkout_onepage_index>
324
+
325
+ <!--
326
+ One page checkout progress block
327
+ -->
328
+
329
+ <checkout_onepage_progress>
330
+ <!-- Mage_Checkout -->
331
+ <remove name="right"/>
332
+ <remove name="left"/>
333
+
334
+ <block type="checkout/onepage_progress" name="root" output="toHtml" template="checkout/onepage/progress.phtml">
335
+ <block type="checkout/onepage_payment_info" name="payment_info">
336
+ <action method="setInfoTemplate"><method></method><template></template></action>
337
+ </block>
338
+ </block>
339
+ </checkout_onepage_progress>
340
+
341
+ <!--
342
+ One page checkout payment methods block
343
+ -->
344
+ <checkout_onepage_paymentmethod>
345
+ <remove name="right"/>
346
+ <remove name="left"/>
347
+
348
+ <block type="checkout/onepage_payment_methods" name="root" output="toHtml" template="checkout/onepage/payment/methods.phtml">
349
+ <action method="setMethodFormTemplate"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action>
350
+ </block>
351
+ </checkout_onepage_paymentmethod>
352
+
353
+
354
+ <!--
355
+ One page checkout shipping methods block
356
+ -->
357
+
358
+ <checkout_onepage_shippingmethod>
359
+ <!-- Mage_Checkout -->
360
+ <remove name="right"/>
361
+ <remove name="left"/>
362
+
363
+ <block type="checkout/onepage_shipping_method_available" name="root" output="toHtml" template="checkout/onepage/shipping_method/available.phtml"/>
364
+ </checkout_onepage_shippingmethod>
365
+
366
+ <checkout_onepage_additional>
367
+ <!-- Mage_Checkout -->
368
+ <remove name="right"/>
369
+ <remove name="left"/>
370
+
371
+ <block type="checkout/onepage_shipping_method_additional" name="root" output="toHtml" template="checkout/onepage/shipping_method/additional.phtml">
372
+ <action method="setDontDisplayContainer"><param>1</param></action>
373
+ </block>
374
+ </checkout_onepage_additional>
375
+
376
+ <!--
377
+ One page checkout order review block
378
+ -->
379
+
380
+ <checkout_onepage_review>
381
+ <!-- Mage_Checkout -->
382
+ <remove name="right"/>
383
+ <remove name="left"/>
384
+
385
+ <block type="checkout/onepage_review_info" name="root" output="toHtml" template="checkout/onepage/review/info.phtml">
386
+ <action method="addItemRender"><type>default</type><block>checkout/cart_item_renderer</block><template>checkout/onepage/review/item.phtml</template></action>
387
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/onepage/review/item.phtml</template></action>
388
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/onepage/review/item.phtml</template></action>
389
+ <block type="checkout/cart_totals" name="checkout.onepage.review.info.totals" as="totals" template="checkout/onepage/review/totals.phtml"/>
390
+ <block type="core/text_list" name="checkout.onepage.review.info.items.before" as="items_before"/>
391
+ </block>
392
+ </checkout_onepage_review>
393
+
394
+ <checkout_onepage_success translate="label">
395
+ <label>One Page Checkout Success</label>
396
+ <reference name="root">
397
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
398
+ </reference>
399
+ <reference name="content">
400
+ <block type="checkout/onepage_success" name="checkout.success" template="checkout/success.phtml"/>
401
+ </reference>
402
+ </checkout_onepage_success>
403
+ <checkout_onepage_failure translate="label">
404
+ <label>One Page Checkout Failure</label>
405
+ <reference name="root">
406
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
407
+ </reference>
408
+ <reference name="content">
409
+ <block type="checkout/onepage_failure" name="checkout.failure" template="checkout/onepage/failure.phtml"/>
410
+ </reference>
411
+ </checkout_onepage_failure>
412
+ </layout>
app/design/frontend/default/car_store/layout/customer.xml ADDED
@@ -0,0 +1,266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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>My 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><url helper="customer/getLoginUrl"/><title>Log In</title><prepare/><urlParams/><position>100</position></action>
76
+ </reference>
77
+ <remove name="wishlist_sidebar"></remove>
78
+ <remove name="reorder"></remove>
79
+ </customer_logged_out>
80
+
81
+ <!--
82
+ Layout for customer login page
83
+ -->
84
+
85
+ <customer_account_login translate="label">
86
+ <label>Customer Account Login Form</label>
87
+ <!-- Mage_Customer -->
88
+ <remove name="right"/>
89
+ <remove name="left"/>
90
+
91
+ <reference name="root">
92
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
93
+ </reference>
94
+ <reference name="content">
95
+ <block type="customer/form_login" name="customer_form_login" template="customer/form/login.phtml"/>
96
+ </reference>
97
+ </customer_account_login>
98
+
99
+ <!--
100
+ Layout for customer log out page
101
+ -->
102
+
103
+ <customer_account_logoutsuccess translate="label">
104
+ <label>Customer Account Logout Success</label>
105
+ <!-- Mage_Customer -->
106
+ <remove name="right"/>
107
+ <remove name="left"/>
108
+
109
+ <reference name="root">
110
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
111
+ </reference>
112
+ <reference name="content">
113
+ <block type="core/template" name="customer_logout" template="customer/logout.phtml"/>
114
+ </reference>
115
+ </customer_account_logoutsuccess>
116
+
117
+ <!--
118
+ New customer registration
119
+ -->
120
+
121
+ <customer_account_create translate="label">
122
+ <label>Customer Account Registration Form</label>
123
+ <!-- Mage_Customer -->
124
+ <remove name="right"/>
125
+ <remove name="left"/>
126
+
127
+ <reference name="root">
128
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
129
+ </reference>
130
+ <reference name="content">
131
+ <block type="customer/form_register" name="customer_form_register" template="customer/form/register.phtml">
132
+ <block type="page/html_wrapper" name="customer.form.register.fields.before" as="form_fields_before"/>
133
+ </block>
134
+ </reference>
135
+ </customer_account_create>
136
+
137
+ <customer_account_forgotpassword translate="label">
138
+ <label>Customer Forgot Password Form</label>
139
+ <remove name="right"/>
140
+ <remove name="left"/>
141
+
142
+ <reference name="root">
143
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
144
+ <action method="setHeaderTitle" translate="title" module="customer"><title>Password forgotten</title></action>
145
+ </reference>
146
+ <reference name="content">
147
+ <!--<block type="core/template" name="forgotPassword" template="customer/form/forgotpassword.phtml"/>-->
148
+ <block type="customer/account_forgotpassword" name="forgotPassword" template="customer/form/forgotpassword.phtml"/>
149
+ </reference>
150
+ </customer_account_forgotpassword>
151
+
152
+ <customer_account_confirmation>
153
+ <remove name="right"/>
154
+ <remove name="left"/>
155
+
156
+ <reference name="root">
157
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
158
+ <action method="setHeaderTitle" translate="title" module="customer"><title>Send confirmation link</title></action>
159
+ </reference>
160
+ <reference name="content">
161
+ <block type="core/template" name="accountConfirmation" template="customer/form/confirmation.phtml"/>
162
+ </reference>
163
+ </customer_account_confirmation>
164
+
165
+ <customer_account_edit translate="label">
166
+ <label>Customer Account Edit Form</label>
167
+ <update handle="customer_account"/>
168
+ <reference name="root">
169
+ <action method="setHeaderTitle" translate="title" module="customer"><title>Edit Account Info</title></action>
170
+ </reference>
171
+ <reference name="my.account.wrapper">
172
+ <block type="customer/form_edit" name="customer_edit" template="customer/form/edit.phtml"/>
173
+ </reference>
174
+
175
+ <reference name="left">
176
+ <action method="unsetChild"><name>left.permanent.callout</name></action>
177
+ </reference>
178
+ </customer_account_edit>
179
+
180
+ <!--
181
+ Customer account pages, rendered for all tabs in dashboard
182
+ -->
183
+
184
+ <customer_account translate="label">
185
+ <label>Customer My Account (All Pages)</label>
186
+ <!--remove name="catalog.compare.sidebar"/>
187
+ <remove name="sale.reorder.sidebar"/-->
188
+ <!-- Mage_Customer -->
189
+ <reference name="root">
190
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
191
+ </reference>
192
+
193
+ <reference name="content">
194
+ <block type="page/html_wrapper" name="my.account.wrapper">
195
+ <action method="setElementClass"><value>my-account</value></action>
196
+ </block>
197
+ </reference>
198
+
199
+ <reference name="left">
200
+ <block type="customer/account_navigation" name="customer_account_navigation" before="-" template="customer/account/navigation.phtml">
201
+ <action method="addLink" translate="label" module="customer"><name>account</name><path>customer/account/</path><label>Account Dashboard</label></action>
202
+ <action method="addLink" translate="label" module="customer"><name>account_edit</name><path>customer/account/edit/</path><label>Account Information</label></action>
203
+ <action method="addLink" translate="label" module="customer"><name>address_book</name><path>customer/address/</path><label>Address Book</label></action>
204
+ </block>
205
+ <!-- <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml">
206
+ <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
207
+ <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
208
+ <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
209
+ </block>
210
+ <block type="catalog/product_compare_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
211
+ <block type="sales/reorder_sidebar" name="sale.reorder.sidebar" as="reorder" template="sales/reorder/sidebar.phtml"/> -->
212
+ <remove name="tags_popular"/>
213
+
214
+ </reference>
215
+ </customer_account>
216
+
217
+ <!--
218
+ Customer account home dashboard layout
219
+ -->
220
+
221
+ <customer_account_index translate="label">
222
+ <label>Customer My Account Dashboard</label>
223
+ <update handle="customer_account"/>
224
+ <!-- Mage_Customer -->
225
+ <reference name="root">
226
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
227
+ </reference>
228
+ <reference name="my.account.wrapper">
229
+ <block type="customer/account_dashboard" name="customer_account_dashboard" template="customer/account/dashboard.phtml">
230
+ <block type="customer/account_dashboard_hello" name="customer_account_dashboard_hello" as="hello" template="customer/account/dashboard/hello.phtml"/>
231
+ <block type="core/template" name="customer_account_dashboard_top" as="top" />
232
+ <block type="customer/account_dashboard_info" name="customer_account_dashboard_info" as="info" template="customer/account/dashboard/info.phtml"/>
233
+ <block type="customer/account_dashboard_newsletter" name="customer_account_dashboard_newsletter" as="newsletter" template="customer/account/dashboard/newsletter.phtml"/>
234
+ <block type="customer/account_dashboard_address" name="customer_account_dashboard_address" as="address" template="customer/account/dashboard/address.phtml"/>
235
+ </block>
236
+ </reference>
237
+
238
+ </customer_account_index>
239
+
240
+ <!--
241
+ Customer account address book
242
+ -->
243
+
244
+ <customer_address_index translate="label">
245
+ <label>Customer My Account Address Book</label>
246
+ <!-- Mage_Customer -->
247
+ <update handle="customer_account"/>
248
+ <reference name="my.account.wrapper">
249
+ <block type="customer/address_book" name="address_book" template="customer/address/book.phtml"/>
250
+ </reference>
251
+ </customer_address_index>
252
+
253
+ <!--
254
+ Customer account address edit page
255
+ -->
256
+
257
+ <customer_address_form translate="label">
258
+ <label>Customer My Account Address Edit Form</label>
259
+ <!-- Mage_Customer -->
260
+ <update handle="customer_account"/>
261
+ <reference name="my.account.wrapper">
262
+ <block type="customer/address_edit" name="customer_address_edit" template="customer/address/edit.phtml"/>
263
+ </reference>
264
+ </customer_address_form>
265
+
266
+ </layout>
app/design/frontend/default/car_store/layout/directory.xml ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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="head">
36
+ <block type="core/template" name="optional_zip_countries" as="optional_zip_countries" template="directory/js/optional_zip_countries.phtml" />
37
+ </reference>
38
+ </default> -->
39
+
40
+ <!-- <catalog_category_default>
41
+ <reference name="left">
42
+ <block type="directory/currency" name="currency" before="catalog.leftnav" template="directory/currency.phtml"/>
43
+ </reference>
44
+ </catalog_category_default> -->
45
+
46
+ <!--
47
+ Category layered navigation layout
48
+ -->
49
+
50
+ <!-- <catalog_category_layered>
51
+ <reference name="left">
52
+ <block type="directory/currency" name="currency" before="catalog.leftnav" template="directory/currency.phtml"/>
53
+ </reference>
54
+ </catalog_category_layered> -->
55
+
56
+ <!--
57
+ Catalog Search layout
58
+ -->
59
+
60
+ <!-- <catalogsearch_advanced_index>
61
+ <reference name="left">
62
+ <block type="directory/currency" name="right_currency" before="-" template="directory/currency.phtml"/>
63
+ </reference>
64
+ </catalogsearch_advanced_index> -->
65
+
66
+ <!-- <catalogsearch_result_index>
67
+ <reference name="left">
68
+ <block type="directory/currency" name="currency" before="-" template="directory/currency.phtml"/>
69
+ </reference>
70
+ </catalogsearch_result_index> -->
71
+
72
+ <!-- <catalogsearch_advanced_result>
73
+ <reference name="right">
74
+ <block type="directory/currency" name="right_currency" before="-" template="directory/currency.phtml"/>
75
+ </reference>
76
+ </catalogsearch_advanced_result> -->
77
+
78
+ </layout>
app/design/frontend/default/car_store/layout/newsletter.xml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 Magento Inc. (http://www.magentocommerce.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+
28
+ -->
29
+ <layout version="0.1.0">
30
+
31
+ <!--
32
+ Default layout, loads most of the pages
33
+ -->
34
+
35
+ <default>
36
+
37
+ <!-- Mage_Newsletter -->
38
+ <reference name="left">
39
+ <block type="newsletter/subscribe" name="left.newsletter" template="newsletter/subscribe.phtml"/>
40
+ </reference>
41
+
42
+ </default>
43
+
44
+ <!--
45
+ Customer account pages, rendered for all tabs in dashboard
46
+ -->
47
+
48
+ <customer_account>
49
+ <!-- Mage_Newsletter -->
50
+ <reference name="customer_account_navigation">
51
+ <action method="addLink" translate="label" module="newsletter"><name>newsletter</name><path>newsletter/manage/</path><label>Newsletter Subscriptions</label></action>
52
+ </reference>
53
+ <remove name="left.newsletter"/>
54
+ </customer_account>
55
+
56
+ <newsletter_manage_index translate="label">
57
+ <label>Customer My Account Newsletter Subscriptions</label>
58
+ <update handle="customer_account"/>
59
+ <reference name="my.account.wrapper">
60
+ <block type="customer/newsletter" name="customer_newsletter">
61
+ <block type="page/html_wrapper" name="customer.newsletter.form.before" as="form_before">
62
+ <action method="setMayBeInvisible"><value>1</value></action>
63
+ </block>
64
+ </block>
65
+ </reference>
66
+ </newsletter_manage_index>
67
+
68
+ </layout>
app/design/frontend/default/car_store/layout/page.xml ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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" ifconfig="dev/js/deprecation"><script>prototype/deprecation.js</script></action>
40
+ <action method="addJs"><script>lib/ccard.js</script></action>
41
+ <action method="addJs"><script>prototype/validation.js</script></action>
42
+ <action method="addJs"><script>scriptaculous/builder.js</script></action>
43
+ <action method="addJs"><script>scriptaculous/effects.js</script></action>
44
+ <action method="addJs"><script>scriptaculous/dragdrop.js</script></action>
45
+ <action method="addJs"><script>scriptaculous/controls.js</script></action>
46
+ <action method="addJs"><script>scriptaculous/slider.js</script></action>
47
+ <action method="addJs"><script>varien/js.js</script></action>
48
+ <action method="addJs"><script>varien/form.js</script></action>
49
+ <action method="addJs"><script>varien/menu.js</script></action>
50
+ <action method="addJs"><script>mage/translate.js</script></action>
51
+ <action method="addJs"><script>mage/cookies.js</script></action>
52
+
53
+ <action method="addCss"><stylesheet>css/styles.css</stylesheet></action>
54
+ <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
55
+ <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
56
+ <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
57
+
58
+ <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
59
+ <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
60
+ </block>
61
+
62
+ <block type="core/text_list" name="after_body_start" as="after_body_start"/>
63
+
64
+ <block type="page/html_notices" name="global_notices" as="global_notices" template="page/html/notices.phtml" />
65
+
66
+ <block type="page/html_header" name="header" as="header">
67
+ <block type="page/template_links" name="top.links" as="topLinks"/>
68
+ <block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
69
+ <block type="directory/currency" name="store_currency" as="store_currency" template="directory/currency.phtml"/>
70
+ <block type="core/text_list" name="top.menu" as="topMenu"/>
71
+ <block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
72
+ <label>Page Header</label>
73
+ <action method="setElementClass"><value>top-container</value></action>
74
+ </block>
75
+ </block>
76
+
77
+ <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>
78
+
79
+ <block type="core/text_list" name="left" as="left" translate="label">
80
+ <label>Left Column</label>
81
+ </block>
82
+
83
+ <block type="core/messages" name="global_messages" as="global_messages"/>
84
+ <block type="core/messages" name="messages" as="messages"/>
85
+
86
+ <block type="core/text_list" name="content" as="content" translate="label">
87
+ <label>Main Content Area</label>
88
+ </block>
89
+
90
+ <block type="core/text_list" name="right" as="right" translate="label">
91
+ <label>Right Column</label>
92
+ </block>
93
+
94
+ <block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
95
+ <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
96
+ <label>Page Footer</label>
97
+ <action method="setElementClass"><value>bottom-container</value></action>
98
+ </block>
99
+ <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
100
+ <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
101
+ </block>
102
+
103
+ <block type="core/text_list" name="before_body_end" as="before_body_end"/>
104
+ </block>
105
+
106
+ <block type="core/profiler" output="toHtml" name="core_profiler"/>
107
+ </default>
108
+
109
+ <print translate="label" module="page">
110
+ <label>All Pages (Print Version)</label>
111
+ <!-- Mage_Page -->
112
+ <block type="page/html" name="root" output="toHtml" template="page/print.phtml">
113
+
114
+ <block type="page/html_head" name="head" as="head">
115
+ <action method="addJs"><script>prototype/prototype.js</script></action>
116
+ <action method="addJs"><script>mage/translate.js</script></action>
117
+ <action method="addJs"><script>lib/ccard.js</script></action>
118
+ <action method="addJs"><script>prototype/validation.js</script></action>
119
+ <action method="addJs"><script>varien/js.js</script></action>
120
+
121
+ <action method="addCss"><stylesheet>css/styles.css</stylesheet></action>
122
+ <action method="addItem"><type>skin_css</type><name>css/styles-ie.css</name><params/><if>lt IE 8</if></action>
123
+ <action method="addCss"><stylesheet>css/widgets.css</stylesheet></action>
124
+ <action method="addCss"><stylesheet>css/print.css</stylesheet><params>media="print"</params></action>
125
+
126
+ <action method="addItem"><type>js</type><name>lib/ds-sleight.js</name><params/><if>lt IE 7</if></action>
127
+ <action method="addItem"><type>skin_js</type><name>js/ie6.js</name><params/><if>lt IE 7</if></action>
128
+
129
+ </block>
130
+
131
+ <block type="core/text_list" name="content" as="content" translate="label">
132
+ <label>Main Content Area</label>
133
+ </block>
134
+
135
+ </block>
136
+ </print>
137
+
138
+ <!-- Custom page layout handles -->
139
+ <page_empty translate="label">
140
+ <label>All Empty Layout Pages</label>
141
+ <reference name="root">
142
+ <action method="setTemplate"><template>page/empty.phtml</template></action>
143
+ <!-- Mark root page block that template is applied -->
144
+ <action method="setIsHandle"><applied>1</applied></action>
145
+ </reference>
146
+ </page_empty>
147
+
148
+ <page_one_column translate="label">
149
+ <label>All One-Column Layout Pages</label>
150
+ <reference name="root">
151
+ <action method="setTemplate"><template>page/1column.phtml</template></action>
152
+ <!-- Mark root page block that template is applied -->
153
+ <action method="setIsHandle"><applied>1</applied></action>
154
+ </reference>
155
+ </page_one_column>
156
+
157
+ <page_two_columns_left translate="label">
158
+ <label>All Two-Column Layout Pages (Left Column)</label>
159
+ <reference name="root">
160
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
161
+ <!-- Mark root page block that template is applied -->
162
+ <action method="setIsHandle"><applied>1</applied></action>
163
+ </reference>
164
+ </page_two_columns_left>
165
+
166
+ <page_two_columns_right translate="label">
167
+ <label>All Two-Column Layout Pages (Right Column)</label>
168
+ <reference name="root">
169
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
170
+ <!-- Mark root page block that template is applied -->
171
+ <action method="setIsHandle"><applied>1</applied></action>
172
+ </reference>
173
+ </page_two_columns_right>
174
+
175
+ <page_three_columns translate="label">
176
+ <label>All Three-Column Layout Pages</label>
177
+ <reference name="root">
178
+ <action method="setTemplate"><template>page/3columns.phtml</template></action>
179
+ <!-- Mark root page block that template is applied -->
180
+ <action method="setIsHandle"><applied>1</applied></action>
181
+ </reference>
182
+ </page_three_columns>
183
+ </layout>
app/design/frontend/default/car_store/layout/poll.xml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 Magento Inc. (http://www.magentocommerce.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+
28
+ -->
29
+ <layout version="0.1.0">
30
+
31
+ <!--
32
+ Default layout, loads most of the pages
33
+ -->
34
+
35
+ <default>
36
+
37
+ <!-- Mage_Poll -->
38
+ <reference name="left">
39
+ <block type="poll/activePoll" name="right.poll">
40
+ <action method="setPollTemplate"><template>poll/active.phtml</template><type>poll</type></action>
41
+ <action method="setPollTemplate"><template>poll/result.phtml</template><type>results</type></action>
42
+ </block>
43
+ </reference>
44
+
45
+ </default>
46
+
47
+ <!--
48
+ Customer account home dashboard layout
49
+ -->
50
+
51
+ <customer_account_index>
52
+ <reference name="right">
53
+ <action method="unsetChild"><name>right.poll</name></action>
54
+ </reference>
55
+ </customer_account_index>
56
+
57
+ </layout>
app/design/frontend/default/car_store/layout/tag.xml ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ <!-- Mage_Tag -->
37
+ <reference name="left">
38
+ <block type="tag/popular" name="tags_popular" template="tag/popular.phtml"/>
39
+ </reference>
40
+
41
+ </default>
42
+
43
+ <!--
44
+ Customer account pages, rendered for all tabs in dashboard
45
+ -->
46
+
47
+ <customer_account>
48
+ <!-- Mage_Tag -->
49
+ <reference name="customer_account_navigation">
50
+ <action method="addLink" translate="label" module="tag"><name>tags</name><path>tag/customer/</path><label>My Tags</label></action>
51
+ </reference>
52
+ </customer_account>
53
+
54
+ <!--
55
+ Customer account home dashboard layout
56
+ -->
57
+
58
+ <customer_account_index>
59
+ <!-- Mage_Tag -->
60
+ <reference name="customer_account_dashboard">
61
+ <action method="unsetChild"><name>customer_account_dashboard_info2</name></action>
62
+ <block type="tag/customer_recent" name="customer_account_dashboard_info2" as="info2" template="tag/customer/recent.phtml"/>
63
+ </reference>
64
+ </customer_account_index>
65
+
66
+ <catalog_product_view>
67
+ <!-- Mage_Tag -->
68
+ <reference name="product.info.additional">
69
+ <block type="tag/product_list" name="product_tag_list" before="-" template="tag/list.phtml">
70
+ <block type="page/html_wrapper" name="product.tag.list.list.before" as="list_before">
71
+ <action method="setMayBeInvisible"><value>1</value></action>
72
+ </block>
73
+ </block>
74
+ </reference>
75
+ </catalog_product_view>
76
+
77
+ <!--
78
+ All tags page
79
+ -->
80
+
81
+ <tag_list_index translate="label">
82
+ <label>Tags List (All Available)</label>
83
+ <!-- Mage_Tag -->
84
+ <reference name="root">
85
+ <action method="setTemplate"><template>page/2columns-right.phtml</template></action>
86
+ </reference>
87
+ <reference name="content">
88
+ <block type="tag/all" name="tags_all" template="tag/cloud.phtml"/>
89
+ </reference>
90
+ </tag_list_index>
91
+
92
+ <tag_product_list translate="label">
93
+ <label>Tagged Products List</label>
94
+ <!-- Mage_Tag -->
95
+ <reference name="root">
96
+ <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
97
+ </reference>
98
+ <reference name="content">
99
+ <block type="tag/product_result" name="tag_products" template="catalogsearch/result.phtml">
100
+ <block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml"></block>
101
+ <action method="setListOrders"/>
102
+ <action method="setListModes"/>
103
+ <action method="setListCollection"/>
104
+ </block>
105
+ </reference>
106
+ </tag_product_list>
107
+
108
+ <tag_customer_index translate="label">
109
+ <label>Customer My Account My Tags List</label>
110
+ <update handle="customer_account"/>
111
+ <reference name="root">
112
+ <action method="setHeaderTitle" translate="title" module="customer"><title>My Account</title></action>
113
+ </reference>
114
+ <reference name="my.account.wrapper">
115
+ <block type="tag/customer_tags" name="customer_tags" template="tag/customer/tags.phtml"/>
116
+ </reference>
117
+ </tag_customer_index>
118
+
119
+ <tag_customer_view translate="label">
120
+ <label>Customer My Account Tag View</label>
121
+ <update handle="customer_account"/>
122
+ <reference name="root">
123
+ <action method="setHeaderTitle" translate="title" module="customer"><title>My Account</title></action>
124
+ </reference>
125
+ <reference name="my.account.wrapper">
126
+ <block type="tag/customer_view" name="customer_view" template="tag/customer/view.phtml"/>
127
+ </reference>
128
+ </tag_customer_view>
129
+
130
+ </layout>
app/design/frontend/default/car_store/template/catalog/category/page.phtml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * @deprecated after 1.4.0.0-alpha3
29
+ */
30
+ ?>
31
+ <div class="page-title">
32
+ <h1><?php echo $this->getTitle() ?></h1>
33
+ </div>
34
+ <div>
35
+ <?php echo $this->getContent() ?>
36
+ </div>
app/design/frontend/default/car_store/template/catalog/category/view.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) 2010 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
+ * Category view template
30
+ *
31
+ * @see Mage_Catalog_Block_Category_View
32
+ */
33
+ ?>
34
+ <?php
35
+ $_helper = $this->helper('catalog/output');
36
+ $_category = $this->getCurrentCategory();
37
+ $_imgHtml = '';
38
+ if ($_imgUrl = $_category->getImageUrl()) {
39
+ $_imgHtml = '<p class="category-image"><img src="'.$_imgUrl.'" alt="'.$this->htmlEscape($_category->getName()).'" title="'.$this->htmlEscape($_category->getName()).'" /></p>';
40
+ $_imgHtml = $_helper->categoryAttribute($_category, $_imgHtml, 'image');
41
+ }
42
+ ?>
43
+ <!--<div class="page-title category-title">
44
+ <div class="top-site">
45
+ <?php //if($this->IsRssCatalogEnable() && $this->IsTopCategory()): ?>
46
+ <a href="<?php //echo $this->getRssLink() ?>" class="link-rss"><?php //echo $this->__('Subscribe to RSS Feed') ?></a>
47
+ <?php //endif; ?>
48
+ <h1><?php //echo $_helper->categoryAttribute($_category, $_category->getName(), 'name') ?></h1>
49
+ </div>
50
+ </div>-->
51
+
52
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
53
+
54
+ <?php //if($_imgUrl): ?>
55
+ <?php //echo $_imgHtml ?>
56
+ <?php //endif; ?>
57
+
58
+ <?php if($_description=$this->getCurrentCategory()->getDescription()): ?>
59
+ <div class="category-description std">
60
+ <?php echo $_helper->categoryAttribute($_category, $_description, 'description') ?>
61
+ </div>
62
+ <?php endif; ?>
63
+
64
+ <?php if($this->isContentMode()): ?>
65
+ <?php echo $this->getCmsBlockHtml() ?>
66
+
67
+ <?php elseif($this->isMixedMode()): ?>
68
+ <?php echo $this->getCmsBlockHtml() ?>
69
+ <?php echo $this->getProductListHtml() ?>
70
+
71
+ <?php else: ?>
72
+ <?php echo $this->getProductListHtml() ?>
73
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalog/layer/state.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) 2010 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
+ * Category layered navigation state
30
+ *
31
+ * @see Mage_Catalog_Block_Layer_State
32
+ */
33
+ ?>
34
+ <?php $_filters = $this->getActiveFilters() ?>
35
+ <?php if(!empty($_filters)): ?>
36
+ <p class="block-subtitle"><?php echo $this->__('') ?></p>
37
+ <ol class="currently">
38
+ <?php foreach ($_filters as $_filter): ?>
39
+ <li>
40
+ <a href="<?php echo $_filter->getRemoveUrl() ?>" title="<?php echo $this->__('Remove This Item') ?>" class="btn-remove"><?php echo $this->__('Remove This Item') ?></a>
41
+ <span class="label"><?php echo $this->__($_filter->getName()) ?>:</span> <?php echo $_filter->getLabel() ?>
42
+ </li>
43
+ <?php endforeach; ?>
44
+ </ol>
45
+ <div class="actions"><a href="<?php echo $this->getClearUrl() ?>"><?php echo $this->__('Clear All') ?></a></div>
46
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalog/layer/view.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) 2010 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
+ * Category layered navigation
30
+ *
31
+ * @see Mage_Catalog_Block_Layer_View
32
+ */
33
+ ?>
34
+ <?php if($this->canShowBlock()): ?>
35
+ <div class="block block-layered-nav">
36
+ <div class="block-title">
37
+ <div class="top-site">
38
+ <strong><span><?php echo $this->__('Shopping Options') ?></span></strong>
39
+ </div>
40
+
41
+ </div>
42
+ <div class="sidebarblock-content">
43
+ <div class="block-content">
44
+ <?php echo $this->getStateHtml() ?>
45
+ <?php if($this->canShowOptions()): ?>
46
+ <p class="block-subtitle"><?php echo $this->__('') ?></p>
47
+ <dl id="narrow-by-list">
48
+ <?php $_filters = $this->getFilters() ?>
49
+ <?php foreach ($_filters as $_filter): ?>
50
+ <?php if($_filter->getItemsCount()): ?>
51
+ <dt><?php echo $this->__($_filter->getName()) ?></dt>
52
+ <dd><?php echo $_filter->getHtml() ?></dd>
53
+ <?php endif; ?>
54
+ <?php endforeach; ?>
55
+ </dl>
56
+ <script type="text/javascript">decorateDataList('narrow-by-list')</script>
57
+ <?php endif; ?>
58
+ </div>
59
+ </div>
60
+ <div class="bot-site">
61
+ <div class="right">
62
+ <div class="stretched-layer"> </div>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalog/navigation/left.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) 2010 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
+ * Category left navigation
29
+ *
30
+ * @see Mage_Catalog_Block_Navigation
31
+ */
32
+ ?>
33
+ <?php if (!Mage::registry('current_category')) return ?>
34
+ <?php $_categories = $this->getCurrentChildCategories() ?>
35
+ <?php $_count = is_array($_categories)?count($_categories):$_categories->count(); ?>
36
+ <?php if($_count): ?>
37
+ <div class="block block-layered-nav">
38
+ <div class="block-title">
39
+ <strong><span><?php echo $this->__('Browse By') ?></span></strong>
40
+ </div>
41
+ <div class="block-content">
42
+ <dl id="narrow-by-list2">
43
+ <dt><?php echo $this->__('Category') ?></dt>
44
+ <dd>
45
+ <ol>
46
+ <?php foreach ($_categories as $_category): ?>
47
+ <?php if($_category->getIsActive()): ?>
48
+ <li>
49
+ <a href="<?php echo $this->getCategoryUrl($_category) ?>"<?php if ($this->isCategoryActive($_category)): ?> class="current"<?php endif; ?>><?php echo $this->htmlEscape($_category->getName()) ?></a> (<?php echo $_category->getProductCount() ?>)
50
+ </li>
51
+ <?php endif; ?>
52
+ <?php endforeach ?>
53
+ </ol>
54
+ </dd>
55
+ </dl>
56
+ <script type="text/javascript">decorateDataList('narrow-by-list2')</script>
57
+ </div>
58
+ </div>
59
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalog/navigation/top.phtml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Top menu for store
30
+ *
31
+ * @see Mage_Catalog_Block_Navigation
32
+ */
33
+ ?>
34
+ <?php
35
+ /**
36
+ * $this->renderCategoriesMenuHtml() supports optional arguments:
37
+ * int Level number for list item class to start from
38
+ * string Extra class of outermost list items
39
+ * string If specified wraps children list in div with this class
40
+ */
41
+ ?>
42
+ <?php $_menu = $this->renderCategoriesMenuHtml(0,'level-top') ?>
43
+ <?php if($_menu): ?>
44
+ <div class="nav-container">
45
+ <ul id="nav">
46
+ <?php echo $_menu ?>
47
+ </ul>
48
+ <ul class="cart-nav">
49
+ <?php
50
+ $_quote = Mage::getSingleton('checkout/session')->getQuote();
51
+ $_cartQty = $_quote->getItemsQty() * 1;
52
+ ?>
53
+ <li class="first"><a href="<?php echo $this->getUrl('checkout/cart') ?>"><strong> <span>Cart</span></strong></a></li>
54
+ <li class="last"><a href="<?php echo $this->getUrl('checkout/cart') ?>"><strong><?php echo $_cartQty;?><span>ITEMS</span></strong></a></li>
55
+ </ul>
56
+ </div>
57
+ <?php endif ?>
app/design/frontend/default/car_store/template/catalog/product/compare/list.phtml ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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_Compare_List */
27
+ ?>
28
+ <div class="page-title title-buttons">
29
+ <h1><?php echo $this->__('Compare Products') ?></h1>
30
+ <a href="#" onclick="window.print(); return false;" class="link-print"><?php echo $this->__('Print This Page') ?></a>
31
+ </div>
32
+ <?php $_total=$this->getItems()->getSize() ?>
33
+ <?php if($_total): ?>
34
+ <table class="data-table compare-table" id="product_comparison">
35
+ <?php $_i=0 ?>
36
+ <?php foreach($this->getItems() as $_item): ?>
37
+ <?php if($_i++%10==0): ?>
38
+ <col width="1" />
39
+ <?php endif; ?>
40
+ <col width="<?php echo floor(100/$_total); ?>%" />
41
+ <?php endforeach; ?>
42
+ <?php if ($_total>2): ?>
43
+ <thead>
44
+ <tr>
45
+ <?php $_i=0 ?>
46
+ <?php foreach($this->getItems() as $_item): ?>
47
+ <?php if($_i++%10==0): ?>
48
+ <th>&nbsp;</th>
49
+ <?php endif; ?>
50
+ <td class="a-right"><a href="#" class="btn-remove" onclick="setLocation('<?php echo $this->getRemoveUrl($_item) ?>'); window.opener.location.reload();" title="<?php echo $this->__('Remove This Item') ?>"><?php echo $this->__('Remove This Item') ?></a></td>
51
+ <?php endforeach; ?>
52
+ </tr>
53
+ </thead>
54
+ <?php endif ?>
55
+ <tbody>
56
+ <tr class="product-shop-row">
57
+ <?php $_i=0 ?>
58
+ <?php foreach($this->getItems() as $_item): ?>
59
+ <?php if($_i++%10==0): ?>
60
+ <th>&nbsp;</th>
61
+ <?php endif; ?>
62
+ <td>
63
+ <a class="product-image" href="#" onclick="setPLocation('<?php echo $this->getProductUrl($_item) ?>', true)" title="<?php echo $this->stripTags($_item->getName(), null, true) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'small_image')->resize(125, 125); ?>" width="125" height="125" alt="<?php echo $this->stripTags($_item->getName(), null, true) ?>" /></a>
64
+ <h2 class="product-name"><a href="#" onclick="setPLocation('<?php echo $this->getProductUrl($_item) ?>', true)" title="<?php echo $this->stripTags($_item->getName(), null, true) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></h2>
65
+ <?php echo $this->getReviewsSummaryHtml($_item, 'short') ?>
66
+ <?php echo $this->getPriceHtml($_item, true, '-compare-list-top') ?>
67
+ <?php if($_item->isSaleable()): ?>
68
+ <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
69
+ <?php else: ?>
70
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
71
+ <?php endif; ?>
72
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
73
+ <ul class="add-to-links">
74
+ <li><a href="#" class="link-wishlist" onclick="setPLocation('<?php echo $this->getAddToWishlistUrl($_item) ?>', true)"><?php echo $this->__('Add to Wishlist') ?></a></li>
75
+ </ul>
76
+ <?php endif; ?>
77
+ </td>
78
+ <?php endforeach; ?>
79
+ </tr>
80
+ </tbody>
81
+ <tbody>
82
+ <?php foreach ($this->getAttributes() as $_attribute): ?>
83
+ <tr>
84
+ <?php $_i=0 ?>
85
+ <?php foreach($this->getItems() as $_item): ?>
86
+ <?php if($_i++%10==0): ?>
87
+ <th><span class="nobr"><?php echo $_attribute->getStoreLabel() ?></span></th>
88
+ <?php endif; ?>
89
+ <td>
90
+ <?php switch ($_attribute->getAttributeCode()) {
91
+ case "price": ?>
92
+ <?php echo $this->getPriceHtml($_item, true, '-compare-list-' . $_attribute->getCode()) ?>
93
+ <?php break;
94
+ case "small_image": ?>
95
+ <img src="<?php echo $this->helper('catalog/image')->init($_item, 'small_image')->resize(125, 125); ?>" width="125" height="125" alt="<?php echo $this->htmlEscape($_item->getName()) ?>" title="<?php echo $this->htmlEscape($_item->getName()) ?>" />
96
+ <?php break;
97
+ case "date":
98
+ echo substr($this->getProductAttributeValue($_item, $_attribute),0,10);
99
+ break;
100
+ default: ?>
101
+ <?php echo $this->helper('catalog/output')->productAttribute($_item, $this->getProductAttributeValue($_item, $_attribute), $_attribute->getCode()) ?>
102
+ <?php break;
103
+ } ?>
104
+ </td>
105
+ <?php endforeach; ?>
106
+ </tr>
107
+ <?php endforeach; ?>
108
+ </tbody>
109
+ <tbody>
110
+ <tr class="add-to-row">
111
+ <?php $_i=0 ?>
112
+ <?php foreach($this->getItems() as $_item): ?>
113
+ <?php if($_i++%10==0): ?>
114
+ <th>&nbsp;</th>
115
+ <?php endif; ?>
116
+ <td>
117
+ <?php echo $this->getPriceHtml($_item, true, '-compare-list-bottom') ?>
118
+ <?php if($_item->isSaleable()): ?>
119
+ <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setPLocation('<?php echo $this->getAddToCartUrl($_item) ?>', true)"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
120
+ <?php else: ?>
121
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
122
+ <?php endif; ?>
123
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
124
+ <ul class="add-to-links">
125
+ <li><a href="#" class="link-wishlist" onclick="setPLocation('<?php echo $this->getAddToWishlistUrl($_item) ?>', true)"><?php echo $this->__('Add to Wishlist') ?></a></li>
126
+ </ul>
127
+ <?php endif; ?>
128
+ </td>
129
+ <?php endforeach; ?>
130
+ </tr>
131
+ </tbody>
132
+ </table>
133
+ <div class="buttons-set">
134
+ <button type="button" title="<?php echo $this->__('Close Window') ?>" class="button" onclick="window.close();"><span><span><?php echo $this->__('Close Window') ?></span></span></button>
135
+ </div>
136
+ <script type="text/javascript">decorateTable('product_comparison');</script>
137
+ <?php else: ?>
138
+ <script type="text/javascript">window.close();</script>
139
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalog/product/compare/sidebar.phtml ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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_Compare_Sidebar */
27
+ ?>
28
+ <div class="block block-compare">
29
+ <div class="block-title">
30
+ <div class="top-site">
31
+ <strong><span><?php echo $this->__('Compare Products') ?>
32
+ <?php if($this->helper('catalog/product_compare')->getItemCount()>0): ?>
33
+ <small><?php echo $this->__('(%d)', $this->helper('catalog/product_compare')->getItemCount()) ?></small>
34
+ <?php endif; ?>
35
+ </span></strong>
36
+ </div>
37
+ </div>
38
+ <div class="sidebarblock-content">
39
+ <div class="block-content">
40
+ <?php if($this->helper('catalog/product_compare')->getItemCount()>0): ?>
41
+ <ol id="compare-items">
42
+ <?php foreach($this->helper('catalog/product_compare')->getItemCollection() as $_index=>$_item): ?>
43
+ <li class="item">
44
+ <input type="hidden" class="compare-item-id" value="<?php echo $_item->getId() ?>" />
45
+ <a href="<?php echo $this->helper('catalog/product_compare')->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 comparison list?') ?>');"><?php echo $this->__('Remove This Item') ?></a>
46
+ <p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></p>
47
+ </li>
48
+ <?php endforeach; ?>
49
+ </ol>
50
+ <script type="text/javascript">decorateList('compare-items')</script>
51
+ <div class="actions">
52
+ <a href="<?php echo $this->helper('catalog/product_compare')->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>
53
+ <button type="button" title="<?php echo $this->__('Compare') ?>" class="button" onclick="popWin('<?php echo $this->helper('catalog/product_compare')->getListUrl() ?>','compare','top:0,left:0,width=820,height=600,resizable=yes,scrollbars=yes')"><span><span><?php echo $this->__('Compare') ?></span></span></button>
54
+ </div>
55
+ <?php else: ?>
56
+ <p class="empty"><?php echo $this->__('You have no items to compare.') ?></p>
57
+ <?php endif; ?>
58
+ </div>
59
+ </div>
60
+ <div class="bot-site">
61
+ <div class="right-corner">
62
+ <div class="stretched-layer"> </div>
63
+ </div>
64
+ </div>
65
+ </div>
app/design/frontend/default/car_store/template/catalog/product/list.phtml ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Product list template
30
+ *
31
+ * @see Mage_Catalog_Block_Product_List
32
+ */
33
+ ?>
34
+ <?php
35
+ $_productCollection=$this->getLoadedProductCollection();
36
+ $_helper = $this->helper('catalog/output');
37
+ $currentCategory = Mage::registry('current_category');
38
+ ?>
39
+ <?php if(!$_productCollection->count()): ?>
40
+ <p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
41
+ <?php else: ?>
42
+ <div class="category-products">
43
+ <div class="top-site">
44
+ <?php if($currentCategory):?>
45
+ <?php $_category = Mage::getModel('catalog/category')->load($currentCategory->getId());?>
46
+ <h1 class="page-title"><?php echo $_category->getName() ?></h1>
47
+ <? if($_imgUrl=$_category->getImageUrl()):?>
48
+ <div class="category-image">
49
+ <img src="<?php echo $_imgUrl ?>" alt="<?php echo $this->htmlEscape($_category->getName())?>" title="<?php echo $this->htmlEscape($_category->getName())?>" />
50
+ </div>
51
+ <?php endif; ?>
52
+ <?php endif; ?>
53
+ </div>
54
+ <div class="sidebarblock-content">
55
+ <?php echo $this->getToolbarHtml() ?>
56
+ <?php // List mode ?>
57
+ <?php if($this->getMode()!='grid'): ?>
58
+ <?php $_iterator = 0; ?>
59
+ <ol class="products-list" id="products-list">
60
+ <?php foreach ($_productCollection as $_product): ?>
61
+ <li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
62
+ <?php // Product Image ?>
63
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(163,140); ?>" width="163" height="140" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
64
+ <?php // Product description ?>
65
+ <div class="product-shop">
66
+ <div class="f-fix">
67
+ <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
68
+ <?php if($_product->getRatingSummary()): ?>
69
+ <?php echo $this->getReviewsSummaryHtml($_product) ?>
70
+ <?php endif; ?>
71
+ <?php echo $this->getPriceHtml($_product, true) ?>
72
+ <?php if($_product->isSaleable()): ?>
73
+
74
+ <?php else: ?>
75
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
76
+ <?php endif; ?>
77
+ <div class="desc std">
78
+ <?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
79
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>" class="link-more"><?php echo $this->__('Learn More') ?></a>
80
+ </div>
81
+ <p><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button></p>
82
+ <ul class="add-to-links">
83
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
84
+ <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
85
+ <?php endif; ?>
86
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
87
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
88
+ <?php endif; ?>
89
+ </ul>
90
+ </div>
91
+ </div>
92
+ </li>
93
+ <?php endforeach; ?>
94
+ </ol>
95
+ <script type="text/javascript">decorateList('products-list', 'none-recursive')</script>
96
+
97
+ <?php else: ?>
98
+
99
+ <?php // Grid Mode ?>
100
+
101
+ <?php $_collectionSize = $_productCollection->count() ?>
102
+ <?php $_columnCount = 4; ?>
103
+ <?php $i=0; foreach ($_productCollection as $_product): ?>
104
+ <?php if ($i++%$_columnCount==0): ?>
105
+
106
+ <ul class="products-grid">
107
+ <?php endif ?>
108
+ <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
109
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(163,140); ?>" width="163" height="140" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
110
+ <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h2>
111
+ <?php if($_product->getRatingSummary()): ?>
112
+ <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
113
+ <?php endif; ?>
114
+ <?php echo $this->getPriceHtml($_product, true) ?>
115
+ <div class="actions">
116
+ <?php if($_product->isSaleable()): ?>
117
+ <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>
118
+ <?php else: ?>
119
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
120
+ <?php endif; ?>
121
+ <ul class="add-to-links">
122
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
123
+ <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
124
+ <?php endif; ?>
125
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?>
126
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
127
+ <?php endif; ?>
128
+ </ul>
129
+ </div>
130
+ </li>
131
+ <?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
132
+ </ul>
133
+ <?php endif ?>
134
+ <?php endforeach ?>
135
+ <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
136
+ <?php endif; ?>
137
+
138
+ <div class="toolbar-bottom">
139
+ <?php echo $this->getToolbarHtml() ?>
140
+ </div>
141
+ </div>
142
+ <div class="bot-site">
143
+ <div class="right-corner">
144
+ <div class="stretched-layer"> </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalog/product/list/toolbar.phtml ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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 toolbar
30
+ *
31
+ * @see Mage_Catalog_Block_Product_List_Toolbar
32
+ */
33
+ ?>
34
+ <?php if($this->getCollection()->getSize()): ?>
35
+ <div class="toolbar">
36
+ <div class="pager">
37
+ <p class="amount">
38
+ <?php if($this->getLastPageNum()>1): ?>
39
+ <?php echo $this->__('Items %s to %s of %s total', $this->getFirstNum(), $this->getLastNum(), $this->getTotalNum()) ?>
40
+ <?php else: ?>
41
+ <strong><?php echo $this->__('%s Item(s)', $this->getTotalNum()) ?></strong>
42
+ <?php endif; ?>
43
+ </p>
44
+
45
+ <div class="limiter">
46
+ <label><?php echo $this->__('Show') ?></label>
47
+ <select onchange="setLocation(this.value)">
48
+ <?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
49
+ <option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
50
+ <?php echo $_limit ?>
51
+ </option>
52
+ <?php endforeach; ?>
53
+ </select> <?php echo $this->__('per page') ?>
54
+ </div>
55
+
56
+
57
+
58
+ </div>
59
+
60
+ <?php if( $this->isExpanded() ): ?>
61
+ <div class="sorter">
62
+ <?php if( $this->isEnabledViewSwitcher() ): ?>
63
+ <p class="view-mode">
64
+ <?php $_modes = $this->getModes(); ?>
65
+ <?php if($_modes && count($_modes)>1): ?>
66
+ <label><?php echo $this->__('View as') ?>:</label>
67
+ <?php foreach ($this->getModes() as $_code=>$_label): ?>
68
+ <?php if($this->isModeActive($_code)): ?>
69
+ <strong title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></strong>&nbsp;
70
+ <?php else: ?>
71
+ <a href="<?php echo $this->getModeUrl($_code) ?>" title="<?php echo $_label ?>" class="<?php echo strtolower($_code); ?>"><?php echo $_label ?></a>&nbsp;
72
+ <?php endif; ?>
73
+ <?php endforeach; ?>
74
+ <?php endif; ?>
75
+ </p>
76
+ <?php endif; ?>
77
+
78
+ <div class="sort-by">
79
+ <label><?php echo $this->__('Sort By') ?></label>
80
+ <select onchange="setLocation(this.value)">
81
+ <?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
82
+ <option value="<?php echo $this->getOrderUrl($_key, 'asc') ?>"<?php if($this->isOrderCurrent($_key)): ?> selected="selected"<?php endif; ?>>
83
+ <?php echo $_order ?>
84
+ </option>
85
+ <?php endforeach; ?>
86
+ </select>
87
+ <?php if($this->getCurrentDirection() == 'desc'): ?>
88
+ <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>
89
+ <?php else: ?>
90
+ <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>
91
+ <?php endif; ?>
92
+ </div>
93
+ <?php echo $this->getPagerHtml() ?>
94
+ </div>
95
+ <?php endif; ?>
96
+ </div>
97
+ <?php endif ?>
app/design/frontend/default/car_store/template/catalog/product/list/upsell.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) 2010 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(count($this->getItemCollection()->getItems())): ?>
28
+ <div class="box-collateral box-up-sell">
29
+ <h2><?php echo $this->__('You may also be interested in the following product(s)') ?></h2>
30
+ <table class="products-grid" id="upsell-product-table">
31
+ <?php // $this->setColumnCount(5); // uncomment this line if you want to have another number of columns. also can be changed in layout ?>
32
+ <?php $this->resetItemsIterator() ?>
33
+ <?php for($_i=0;$_i<$this->getRowCount();$_i++): ?>
34
+ <tr>
35
+ <?php for($_j=0;$_j<$this->getColumnCount();$_j++): ?>
36
+ <?php if($_link=$this->getIterableItem()): ?>
37
+ <td>
38
+ <a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_link->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_link, 'small_image')->resize(163,142) ?>" width="163" height="142" alt="<?php echo $this->htmlEscape($_link->getName()) ?>" /></a>
39
+ <h3 class="product-name"><a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_link->getName()) ?>"><?php echo $this->htmlEscape($_link->getName()) ?></a></h3>
40
+ <?php echo $this->getPriceHtml($_link, true, '-upsell') ?>
41
+ <?php echo $this->getReviewsSummaryHtml($_link) ?>
42
+ </td>
43
+ <?php else: ?>
44
+ <td class="empty">&nbsp;</td>
45
+ <?php endif; ?>
46
+ <?php endfor; ?>
47
+ </tr>
48
+ <?php endfor; ?>
49
+ </table>
50
+ <script type="text/javascript">decorateTable('upsell-product-table')</script>
51
+ </div>
52
+ <?php endif ?>
app/design/frontend/default/car_store/template/catalog/product/new.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) 2010 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="maincp-right ">
29
+ <div class="top-site">
30
+ <div class="right-corner">
31
+ <strong>
32
+ <span><?php echo $this->__('New Products') ?></span>
33
+ </strong>
34
+ </div>
35
+ </div>
36
+
37
+ <div class="sidebarblock-content">
38
+ <?php $_columnCount = 4; ?>
39
+ <?php $i=0; foreach ($_products->getItems() as $_product): ?>
40
+ <?php if ($i++%$_columnCount==0): ?>
41
+ <ul class="products-grid">
42
+ <?php endif ?>
43
+ <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
44
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(163,142) ?>" width="163" height="142" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" /></a>
45
+ <h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h3>
46
+ <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
47
+ <?php echo $this->getPriceHtml($_product, true, '-new') ?>
48
+ <div class="actions">
49
+ <?php if($_product->isSaleable()): ?>
50
+ <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>
51
+ <?php else: ?>
52
+ <p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
53
+ <?php endif; ?>
54
+ <ul class="add-to-links">
55
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
56
+ <li><a href="<?php echo $this->getAddToWishlistUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
57
+ <?php endif; ?>
58
+ <?php if ($_compareUrl = $this->getAddToCompareUrl($_product)): ?>
59
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
60
+ <?php endif; ?>
61
+ </ul>
62
+ </div>
63
+ </li>
64
+ <?php if ($i%$_columnCount==0 || $i==count($_products)): ?>
65
+ </ul>
66
+ <?php endif ?>
67
+ <?php endforeach; ?>
68
+ </div>
69
+ <div class="bot-site">
70
+ <div class="right-corner"></div>
71
+ </div>
72
+ </div>
73
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalog/product/price.phtml ADDED
@@ -0,0 +1,414 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ $_id = $_product->getId();
45
+ $_weeeSeparator = '';
46
+ $_simplePricesTax = ($_taxHelper->displayPriceIncludingTax() || $_taxHelper->displayBothPrices());
47
+ $_minimalPriceValue = $_product->getMinimalPrice();
48
+ $_minimalPrice = $_taxHelper->getPrice($_product, $_minimalPriceValue, $_simplePricesTax);
49
+ ?>
50
+
51
+ <?php if (!$_product->isGrouped()): ?>
52
+ <?php $_weeeTaxAmount = $_weeeHelper->getAmountForDisplay($_product); ?>
53
+ <?php if ($_weeeHelper->typeOfDisplay($_product, array(1,2,4))): ?>
54
+ <?php $_weeeTaxAmount = $_weeeHelper->getAmount($_product); ?>
55
+ <?php $_weeeTaxAttributes = $_weeeHelper->getProductWeeeAttributesForDisplay($_product); ?>
56
+ <?php endif; ?>
57
+
58
+ <div class="price-box">
59
+ <?php $_price = $_taxHelper->getPrice($_product, $_product->getPrice()) ?>
60
+ <?php $_regularPrice = $_taxHelper->getPrice($_product, $_product->getPrice(), $_simplePricesTax) ?>
61
+ <?php $_finalPrice = $_taxHelper->getPrice($_product, $_product->getFinalPrice()) ?>
62
+ <?php $_finalPriceInclTax = $_taxHelper->getPrice($_product, $_product->getFinalPrice(), true) ?>
63
+ <?php $_weeeDisplayType = $_weeeHelper->getPriceDisplayType(); ?>
64
+ <?php if ($_finalPrice == $_price): ?>
65
+ <?php if ($_taxHelper->displayBothPrices()): ?>
66
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
67
+ <span class="price-excluding-tax">
68
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
69
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
70
+ <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,false) ?>
71
+ </span>
72
+ </span>
73
+ <span class="price-including-tax">
74
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
75
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
76
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
77
+ </span>
78
+ </span>
79
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
80
+ <span class="price-excluding-tax">
81
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
82
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
83
+ <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,false) ?>
84
+ </span>
85
+ </span>
86
+ <span class="price-including-tax">
87
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
88
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
89
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
90
+ </span>
91
+ <span class="weee">(
92
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
93
+ <?php echo $_weeeSeparator; ?>
94
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
95
+ <?php $_weeeSeparator = ' + '; ?>
96
+ <?php endforeach; ?>
97
+ )</span>
98
+ </span>
99
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
100
+ <span class="price-excluding-tax">
101
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
102
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
103
+ <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,false) ?>
104
+ </span>
105
+ </span>
106
+ <span class="price-including-tax">
107
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
108
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
109
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
110
+ </span>
111
+ <span class="weee">(
112
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
113
+ <?php echo $_weeeSeparator; ?>
114
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount()+$_weeeTaxAttribute->getTaxAmount(), true, true); ?>
115
+ <?php $_weeeSeparator = ' + '; ?>
116
+ <?php endforeach; ?>
117
+ )</span>
118
+ </span>
119
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
120
+ <span class="price-excluding-tax">
121
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
122
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
123
+ <?php echo $_coreHelper->currency($_price,true,false) ?>
124
+ </span>
125
+ </span>
126
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
127
+ <span class="weee">
128
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
129
+ </span>
130
+ <?php endforeach; ?>
131
+ <span class="price-including-tax">
132
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
133
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
134
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
135
+ </span>
136
+ </span>
137
+ <?php else: ?>
138
+ <span class="price-excluding-tax">
139
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
140
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
141
+ <?php echo $_coreHelper->currency($_price,true,false) ?>
142
+ </span>
143
+ </span>
144
+ <span class="price-including-tax">
145
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
146
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
147
+ <?php echo $_coreHelper->currency($_finalPriceInclTax,true,false) ?>
148
+ </span>
149
+ </span>
150
+ <?php endif; ?>
151
+ <?php else: ?>
152
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
153
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
154
+ <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true) ?>
155
+ </span>
156
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
157
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
158
+ <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true) ?>
159
+ </span>
160
+ <span class="weee">(
161
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
162
+ <?php echo $_weeeSeparator; ?>
163
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
164
+ <?php $_weeeSeparator = ' + '; ?>
165
+ <?php endforeach; ?>
166
+ )</span>
167
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
168
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
169
+ <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true) ?>
170
+ </span>
171
+ <span class="weee">(
172
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
173
+ <?php echo $_weeeSeparator; ?>
174
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount()+$_weeeTaxAttribute->getTaxAmount(), true, true); ?>
175
+ <?php $_weeeSeparator = ' + '; ?>
176
+ <?php endforeach; ?>
177
+ )</span>
178
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
179
+ <span class="regular-price"><?php echo $_coreHelper->currency($_price,true,true) ?></span><br />
180
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
181
+ <span class="weee">
182
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
183
+ </span>
184
+ <?php endforeach; ?>
185
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
186
+ <?php echo $_coreHelper->currency($_price+$_weeeTaxAmount,true,true) ?>
187
+ </span>
188
+ <?php else: ?>
189
+ <span class="regular-price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
190
+ <?php echo $_coreHelper->currency($_price,true,true) ?>
191
+ </span>
192
+ <?php endif; ?>
193
+ <?php endif; ?>
194
+ <?php else: /* if ($_finalPrice == $_price): */ ?>
195
+ <?php $_originalWeeeTaxAmount = $_weeeHelper->getOriginalAmount($_product); ?>
196
+
197
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 0)): // including ?>
198
+ <p class="old-price">
199
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
200
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
201
+ <?php echo $_coreHelper->currency($_regularPrice+$_originalWeeeTaxAmount,true,false) ?>
202
+ </span>
203
+ </p>
204
+
205
+ <?php if ($_taxHelper->displayBothPrices()): ?>
206
+ <p class="special-price">
207
+ <span class="price-label"><?php echo $this->__('Special Price:') ?></span>
208
+ <span class="price-excluding-tax">
209
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
210
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
211
+ <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false) ?>
212
+ </span>
213
+ </span>
214
+ <span class="price-including-tax">
215
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
216
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
217
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
218
+ </span>
219
+ </span>
220
+ </p>
221
+ <?php else: ?>
222
+ <p class="special-price">
223
+ <span class="price-label"><?php echo $this->__('Special Price:') ?></span>
224
+ <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
225
+ <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false) ?>
226
+ </span>
227
+ </p>
228
+ <?php endif; ?>
229
+
230
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 1)): // incl. + weee ?>
231
+ <p class="old-price">
232
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
233
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
234
+ <?php echo $_coreHelper->currency($_regularPrice+$_originalWeeeTaxAmount,true,false) ?>
235
+ </span>
236
+ </p>
237
+
238
+ <p class="special-price">
239
+ <span class="price-label"><?php echo $this->__('Special Price:') ?></span>
240
+ <span class="price-excluding-tax">
241
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
242
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
243
+ <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false) ?>
244
+ </span>
245
+ </span>
246
+ <span class="weee">(
247
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
248
+ <?php echo $_weeeSeparator; ?>
249
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
250
+ <?php $_weeeSeparator = ' + '; ?>
251
+ <?php endforeach; ?>
252
+ )</span>
253
+ <span class="price-including-tax">
254
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
255
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
256
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
257
+ </span>
258
+ </span>
259
+ </p>
260
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 4)): // incl. + weee ?>
261
+ <p class="old-price">
262
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
263
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
264
+ <?php echo $_coreHelper->currency($_regularPrice+$_originalWeeeTaxAmount,true,false) ?>
265
+ </span>
266
+ </p>
267
+
268
+ <p class="special-price">
269
+ <span class="price-label"><?php echo $this->__('Special Price:') ?></span>
270
+ <span class="price-excluding-tax">
271
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
272
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
273
+ <?php echo $_coreHelper->currency($_finalPrice+$_weeeTaxAmount,true,false) ?>
274
+ </span>
275
+ </span>
276
+ <span class="weee">(
277
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
278
+ <?php echo $_weeeSeparator; ?>
279
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount()+$_weeeTaxAttribute->getTaxAmount(), true, true); ?>
280
+ <?php $_weeeSeparator = ' + '; ?>
281
+ <?php endforeach; ?>
282
+ )</span>
283
+ <span class="price-including-tax">
284
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
285
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
286
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
287
+ </span>
288
+ </span>
289
+ </p>
290
+ <?php elseif ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, 2)): // excl. + weee + final ?>
291
+ <p class="old-price">
292
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
293
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
294
+ <?php echo $_coreHelper->currency($_regularPrice,true,false) ?>
295
+ </span>
296
+ </p>
297
+
298
+ <p class="special-price">
299
+ <span class="price-label"><?php echo $this->__('Special Price:') ?></span>
300
+ <span class="price-excluding-tax">
301
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
302
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
303
+ <?php echo $_coreHelper->currency($_finalPrice,true,false) ?>
304
+ </span>
305
+ </span>
306
+ <?php foreach ($_weeeTaxAttributes as $_weeeTaxAttribute): ?>
307
+ <span class="weee">
308
+ <?php echo $_weeeTaxAttribute->getName(); ?>: <?php echo $_coreHelper->currency($_weeeTaxAttribute->getAmount(), true, true); ?>
309
+ </span>
310
+ <?php endforeach; ?>
311
+ <span class="price-including-tax">
312
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
313
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
314
+ <?php echo $_coreHelper->currency($_finalPriceInclTax+$_weeeTaxAmount,true,false) ?>
315
+ </span>
316
+ </span>
317
+ </p>
318
+ <?php else: // excl. ?>
319
+ <p class="old-price">
320
+ <span class="price-label"><?php echo $this->__('Regular Price:') ?></span>
321
+ <span class="price" id="old-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
322
+ <?php echo $_coreHelper->currency($_regularPrice,true,false) ?>
323
+ </span>
324
+ </p>
325
+
326
+ <?php if ($_taxHelper->displayBothPrices()): ?>
327
+ <p class="special-price">
328
+ <span class="price-label"><?php echo $this->__('Special Price:') ?></span>
329
+ <span class="price-excluding-tax">
330
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
331
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
332
+ <?php echo $_coreHelper->currency($_finalPrice,true,false) ?>
333
+ </span>
334
+ </span>
335
+ <span class="price-including-tax">
336
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
337
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
338
+ <?php echo $_coreHelper->currency($_finalPriceInclTax,true,false) ?>
339
+ </span>
340
+ </span>
341
+ </p>
342
+ <?php else: ?>
343
+ <p class="special-price">
344
+ <span class="price-label"><?php echo $this->__('Special Price:') ?></span>
345
+ <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
346
+ <?php echo $_coreHelper->currency($_finalPrice,true,false) ?>
347
+ </span>
348
+ </p>
349
+ <?php endif; ?>
350
+ <?php endif; ?>
351
+
352
+ <?php endif; /* if ($_finalPrice == $_price): */ ?>
353
+
354
+ <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue && $_minimalPriceValue < $_product->getFinalPrice()): ?>
355
+
356
+ <?php $_minimalPriceDisplayValue = $_minimalPrice; ?>
357
+ <?php if ($_weeeTaxAmount && $_weeeHelper->typeOfDisplay($_product, array(0, 1, 4))): ?>
358
+ <?php $_minimalPriceDisplayValue = $_minimalPrice+$_weeeTaxAmount; ?>
359
+ <?php endif; ?>
360
+
361
+ <?php if ($this->getUseLinkForAsLowAs()):?>
362
+ <a href="<?php echo $_product->getProductUrl(); ?>" class="minimal-price-link">
363
+ <?php else:?>
364
+ <span class="minimal-price-link">
365
+ <?php endif?>
366
+ <span class="label"><?php echo $this->__('As low as:') ?></span>
367
+ <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
368
+ <?php echo $_coreHelper->currency($_minimalPriceDisplayValue,true,false) ?>
369
+ </span>
370
+ <?php if ($this->getUseLinkForAsLowAs()):?>
371
+ </a>
372
+ <?php else:?>
373
+ </span>
374
+ <?php endif?>
375
+ <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice && $_minimalPrice < $_finalPrice): */ ?>
376
+ </div>
377
+
378
+ <?php else: /* if (!$_product->isGrouped()): */ ?>
379
+ <?php
380
+ $_exclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue, $includingTax = null);
381
+ $_inclTax = $_taxHelper->getPrice($_product, $_minimalPriceValue, $includingTax = true);
382
+ ?>
383
+ <?php if ($this->getDisplayMinimalPrice() && $_minimalPriceValue): ?>
384
+ <div class="price-box">
385
+ <p class="minimal-price">
386
+ <span class="price-label"><?php echo $this->__('Starting at:') ?></span>
387
+ <?php if ($_taxHelper->displayBothPrices()): ?>
388
+ <span class="price-excluding-tax">
389
+ <span class="label"><?php echo $_taxHelper->__('Excl. Tax:') ?></span>
390
+ <span class="price" id="price-excluding-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
391
+ <?php echo $_coreHelper->currency($_exclTax, true, false) ?>
392
+ </span>
393
+ </span>
394
+ <span class="price-including-tax">
395
+ <span class="label"><?php echo $_taxHelper->__('Incl. Tax:') ?></span>
396
+ <span class="price" id="price-including-tax-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
397
+ <?php echo $_coreHelper->currency($_inclTax, true, false) ?>
398
+ </span>
399
+ </span>
400
+ <?php else: ?>
401
+ <?php
402
+ $_showPrice = $_inclTax;
403
+ if (!$_taxHelper->displayPriceIncludingTax()) {
404
+ $_showPrice = $_exclTax;
405
+ }
406
+ ?>
407
+ <span class="price" id="product-minimal-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>">
408
+ <?php echo $_coreHelper->currency($_showPrice, true, false) ?>
409
+ </span>
410
+ <?php endif; ?>
411
+ </p>
412
+ </div>
413
+ <?php endif; /* if ($this->getDisplayMinimalPrice() && $_minimalPrice): */ ?>
414
+ <?php endif; /* if (!$_product->isGrouped()): */ ?>
app/design/frontend/default/car_store/template/catalog/product/view.phtml ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ <?php
35
+ $_helper = $this->helper('catalog/output');
36
+ $_product = $this->getProduct();
37
+ ?>
38
+ <script type="text/javascript">
39
+ var optionsPrice = new Product.OptionsPrice(<?php echo $this->getJsonConfig() ?>);
40
+ </script>
41
+ <div id="messages_product_view"><?php echo $this->getMessagesBlock()->getGroupedHtml() ?></div>
42
+ <div class="product-view">
43
+ <div class="top-site">
44
+ </div>
45
+ <div class="sidebarblock-content">
46
+ <div class="product-essential">
47
+ <form action="<?php echo $this->getAddToCartUrl($_product) ?>" method="post" id="product_addtocart_form"<?php if($_product->getOptions()): ?> enctype="multipart/form-data"<?php endif; ?>>
48
+ <div class="no-display">
49
+ <input type="hidden" name="product" value="<?php echo $_product->getId() ?>" />
50
+ <input type="hidden" name="related_product" id="related-products-field" value="" />
51
+ </div>
52
+
53
+ <div class="product-shop">
54
+ <div class="product-name">
55
+ <h1><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></h1>
56
+ </div>
57
+
58
+ <?php if ($this->canEmailToFriend()): ?>
59
+ <p class="email-friend"><a href="<?php echo $this->helper('catalog/product')->getEmailToFriendUrl($_product) ?>"><?php echo $this->__('Email to a Friend') ?></a></p>
60
+ <?php endif; ?>
61
+
62
+ <?php echo $this->getReviewsSummaryHtml($_product, false, true)?>
63
+ <?php echo $this->getChildHtml('alert_urls') ?>
64
+ <?php echo $this->getChildHtml('product_type_data') ?>
65
+ <?php echo $this->getTierPriceHtml() ?>
66
+ <?php echo $this->getChildHtml('extrahint') ?>
67
+
68
+ <?php if (!$this->hasOptions()):?>
69
+ <div class="add-to-box">
70
+ <?php if($_product->isSaleable()): ?>
71
+ <?php echo $this->getChildHtml('addtocart') ?>
72
+ <?php if( $this->helper('wishlist')->isAllow() || $_compareUrl=$this->helper('catalog/product_compare')->getAddUrl($_product)): ?>
73
+ <span class="or"><?php echo $this->__('') ?></span>
74
+ <?php endif; ?>
75
+ <?php endif; ?>
76
+ <?php echo $this->getChildHtml('addto') ?>
77
+ </div>
78
+ <?php echo $this->getChildHtml('extra_buttons') ?>
79
+ <?php else:?>
80
+ <?php echo $this->getChildHtml('addto') ?>
81
+ <?php endif; ?>
82
+
83
+ <?php if ($_product->getShortDescription()):?>
84
+ <div class="short-description">
85
+ <h2><?php echo $this->__('Quick Overview') ?></h2>
86
+ <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
87
+ </div>
88
+ <?php endif;?>
89
+
90
+ <?php echo $this->getChildHtml('other');?>
91
+
92
+ <?php if ($_product->isSaleable() && $this->hasOptions()):?>
93
+ <?php echo $this->getChildChildHtml('container1', '', true, true) ?>
94
+ <?php endif;?>
95
+
96
+ </div>
97
+
98
+ <div class="product-img-box">
99
+ <?php echo $this->getChildHtml('media') ?>
100
+ </div>
101
+
102
+ <div class="clearer"></div>
103
+ <?php if ($_product->isSaleable() && $this->hasOptions()):?>
104
+ <?php echo $this->getChildChildHtml('container2', '', true, true) ?>
105
+ <?php endif;?>
106
+ </form>
107
+ <script type="text/javascript">
108
+ //<![CDATA[
109
+ var productAddToCartForm = new VarienForm('product_addtocart_form');
110
+ productAddToCartForm.submit = function(){
111
+ if (this.validator.validate()) {
112
+ this.form.submit();
113
+ }
114
+ }.bind(productAddToCartForm);
115
+ //]]>
116
+ </script>
117
+ </div>
118
+
119
+ <div class="product-collateral">
120
+ <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
121
+ <div class="box-collateral <?php echo "box-{$alias}"?>">
122
+ <?php if ($title = $this->getChildData($alias, 'title')):?>
123
+ <h2><?php echo $this->escapeHtml($title); ?></h2>
124
+ <?php endif;?>
125
+ <?php echo $html; ?>
126
+ </div>
127
+ <?php endforeach;?>
128
+ <?php echo $this->getChildHtml('upsell_products') ?>
129
+ <?php echo $this->getChildHtml('product_additional_data') ?>
130
+ </div>
131
+ </div>
132
+ <div class="bot-site">
133
+ <div class="right-corner">
134
+ <div class="stretched-layer"> </div>
135
+ </div>
136
+ </div>
137
+ </div>
app/design/frontend/default/car_store/template/catalog/product/view/media.phtml ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ <?php if ($_product->getImage() != 'no_selection' && $_product->getImage()): ?>
38
+ <div class="product-image-view">
39
+ <p class="product-image product-image-zoom">
40
+ <?php
41
+ $_img = '<img id="image" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
42
+ echo $_helper->productAttribute($_product, $_img, 'image');
43
+ ?>
44
+ </p>
45
+ </div>
46
+ <p class="zoom-notice" id="track_hint"><?php echo $this->__('Double click on above image to view full picture') ?></p>
47
+ <div class="zoom">
48
+ <img id="zoom_out" src="<?php echo $this->getSkinUrl('images/slider_btn_zoom_out.gif') ?>" alt="<?php echo $this->__('Zoom Out') ?>" title="<?php echo $this->__('Zoom Out') ?>" class="btn-zoom-out" />
49
+ <div id="track">
50
+ <div id="handle"></div>
51
+ </div>
52
+ <img id="zoom_in" src="<?php echo $this->getSkinUrl('images/slider_btn_zoom_in.gif') ?>" alt="<?php echo $this->__('Zoom In') ?>" title="<?php echo $this->__('Zoom In') ?>" class="btn-zoom-in" />
53
+ </div>
54
+ <script type="text/javascript">
55
+ //<![CDATA[
56
+ Event.observe(window, 'load', function() {
57
+ product_zoom = new Product.Zoom('image', 'track', 'handle', 'zoom_in', 'zoom_out', 'track_hint');
58
+ });
59
+ //]]>
60
+ </script>
61
+ <?php else: ?>
62
+ <p class="product-image">
63
+ <?php
64
+ $_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(249,218).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
65
+ echo $_helper->productAttribute($_product, $_img, 'image');
66
+ ?>
67
+ </p>
68
+ <?php endif; ?>
69
+ <?php if (count($this->getGalleryImages()) > 0): ?>
70
+ <?php $_columnCount = 3; ?>
71
+ <div class="more-views">
72
+ <h2><?php echo $this->__('More Views') ?></h2>
73
+ <?php $i = 0; foreach ($this->getGalleryImages() as $_image):?>
74
+ <?php if ($i++%$_columnCount==0): ?>
75
+ <ul>
76
+ <?php endif ?>
77
+ <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
78
+ <a href="#" onclick="popWin('<?php echo $this->getGalleryUrl($_image) ?>', 'gallery', 'width=300,height=300,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes'); return false;" title="<?php echo $this->htmlEscape($_image->getLabel()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(78,79); ?>" width="78" height="79" alt="<?php echo $this->htmlEscape($_image->getLabel()) ?>" /></a>
79
+ </li>
80
+ <?php if ($i%$_columnCount==0 || $i==count($this->getGalleryImages())): ?>
81
+ </ul>
82
+ <?php endif ?>
83
+ <?php endforeach; ?>
84
+ </div>
85
+ <?php endif; ?>
app/design/frontend/default/car_store/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) 2010 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/default/car_store/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) 2010 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/default/car_store/template/catalogsearch/advanced/form.phtml ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * Catalog advanced search form
30
+ *
31
+ * @see Mage_CatalogSearch_Block_Advanced_Form
32
+ */
33
+ ?>
34
+ <div class="page-title">
35
+ <h1><?php echo $this->__('Catalog Advanced Search') ?></h1>
36
+ </div>
37
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
38
+ <form action="<?php echo $this->getSearchPostUrl() ?>" method="get" id="form-validate">
39
+ <div class="fieldset advanced-search">
40
+ <h2 class="legend"><?php echo $this->__('Search Settings') ?></h2>
41
+ <ul class="form-list" id="advanced-search-list">
42
+ <?php foreach ($this->getSearchableAttributes() as $_attribute): ?>
43
+ <?php $_code = $_attribute->getAttributeCode() ?>
44
+ <li>
45
+ <label for="<?php echo $_code ?>"><?php echo $this->getAttributeLabel($_attribute) ?></label>
46
+ <?php switch($this->getAttributeInputType($_attribute)):
47
+ case 'number': ?>
48
+ <div class="input-range">
49
+ <input type="text" name="<?php echo $_code ?>[from]" value="<?php echo $this->htmlEscape($this->getAttributeValue($_attribute, 'from')) ?>" id="<?php echo $_code ?>" title="<?php echo $this->htmlEscape($this->getAttributeLabel($_attribute)) ?>" class="input-text validate-number" />
50
+ <span class="separator">-</span>
51
+ <input type="text" name="<?php echo $_code ?>[to]" value="<?php echo $this->htmlEscape($this->getAttributeValue($_attribute, 'to')) ?>" id="<?php echo $_code ?>_to" title="<?php echo $this->htmlEscape($this->getAttributeLabel($_attribute)) ?>" class="input-text validate-number" />
52
+ </div>
53
+ <?php break;
54
+ case 'price': ?>
55
+ <div class="input-range">
56
+ <input name="<?php echo $_code ?>[from]" value="<?php echo $this->htmlEscape($this->getAttributeValue($_attribute, 'from')) ?>" id="<?php echo $_code ?>" title="<?php echo $this->htmlEscape($this->getAttributeLabel($_attribute)) ?>" class="input-text validate-number" type="text" />
57
+ <span class="separator">-</span>
58
+ <input name="<?php echo $_code ?>[to]" value="<?php echo $this->htmlEscape($this->getAttributeValue($_attribute, 'to')) ?>" id="<?php echo $_code ?>_to" title="<?php echo $this->htmlEscape($this->getAttributeLabel($_attribute)) ?>" class="input-text validate-number" type="text" />
59
+ <small>(<?php echo $this->getCurrency($_attribute); ?>)</small>
60
+ </div>
61
+ <?php break;
62
+ case 'select': ?>
63
+ <div class="input-box">
64
+ <?php echo $this->getAttributeSelectElement($_attribute) ?>
65
+ </div>
66
+ <?php break;
67
+ case 'yesno': ?>
68
+ <?php echo $this->getAttributeYesNoElement($_attribute) ?>
69
+ <?php break;
70
+ case 'date': ?>
71
+ <div class="input-range">
72
+ <?php echo $this->getDateInput($_attribute, 'from') ?>
73
+ <span class="separator">-</span>
74
+ <?php echo $this->getDateInput($_attribute, 'to') ?>
75
+ </div>
76
+ <?php break;
77
+ default: ?>
78
+ <div class="input-box">
79
+ <input type="text" name="<?php echo $_code ?>" id="<?php echo $_code ?>" value="<?php echo $this->htmlEscape($this->getAttributeValue($_attribute)) ?>" title="<?php echo $this->htmlEscape($this->getAttributeLabel($_attribute)) ?>" class="input-text <?php echo $this->getAttributeValidationClass($_attribute) ?>" />
80
+ </div>
81
+ <?php endswitch; ?>
82
+ </li>
83
+ <?php endforeach; ?>
84
+ </ul>
85
+ <script type="text/javascript">decorateList('advanced-search-list')</script>
86
+ </div>
87
+ <div class="buttons-set">
88
+ <button type="submit" title="<?php echo $this->__('Search') ?>" class="button"><span><span><?php echo $this->__('Search') ?></span></span></button>
89
+ </div>
90
+ </form>
91
+ <script type="text/javascript">
92
+ //<![CDATA[
93
+ var dataForm = new VarienForm('form-validate', true);
94
+ //]]>
95
+ </script>
app/design/frontend/default/car_store/template/catalogsearch/advanced/result.phtml ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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->__('Catalog Advanced Search') ?></h1>
29
+ </div>
30
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
31
+ <?php if($this->getResultCount()): ?>
32
+ <p class="advanced-search-amount">
33
+ <?php echo $this->helper('catalogsearch')->__('<strong>%d item(s)</strong> were found using the following search criteria', $this->getResultCount()); ?>
34
+ </p>
35
+ <?php else: ?>
36
+ <p class="error-msg"><?php echo $this->helper('catalogsearch')->__('No items were found using the following search criteria.');?> <a href="<?php echo $this->getFormUrl(); ?>"><?php echo $this->helper('catalogsearch')->__('Modify your search'); ?></a></p>
37
+ <?php endif; ?>
38
+
39
+ <div class="advanced-search-summary">
40
+ <?php $searchCriterias=$this->getSearchCriterias(); ?>
41
+ <?php foreach (array('left', 'right') as $side): ?>
42
+ <?php if(@$searchCriterias[$side]): ?>
43
+ <ul>
44
+ <?php foreach($searchCriterias[$side] as $criteria): ?>
45
+ <li><strong><?php echo $this->htmlEscape($this->helper('catalog')->__($criteria['name'])); ?>:</strong> <?php echo $this->htmlEscape($criteria['value']); ?></li>
46
+ <?php endforeach; ?>
47
+ </ul>
48
+ <?php endif; ?>
49
+ <?php endforeach; ?>
50
+ <?php if($this->getResultCount()): ?>
51
+ <p>
52
+ <?php echo $this->helper('catalogsearch')->__("Don't see what you're looking for?"); ?>
53
+ <a href="<?php echo $this->getFormUrl(); ?>"><?php echo $this->helper('catalogsearch')->__('Modify your search'); ?></a>
54
+ </p>
55
+ <?php endif; ?>
56
+ </div>
57
+ <?php if($this->getResultCount()): ?>
58
+ <?php echo $this->getProductListHtml() ?>
59
+ <?php endif; ?>
60
+ <?php $this->getSearchCriterias(); ?>
app/design/frontend/default/car_store/template/catalogsearch/form.mini.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) 2010 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="search_mini_form" action="<?php echo $this->helper('catalogsearch')->getResultUrl() ?>" method="get">
28
+ <div class="form-search">
29
+
30
+ <input id="search" type="text" name="<?php echo $this->helper('catalogsearch')->getQueryParamName() ?>" value="<?php echo $this->helper('catalogsearch')->getEscapedQueryText() ?>" class="input-text" />
31
+ <button type="submit" title="<?php echo $this->__('Search') ?>" class="button"><span><span><?php echo $this->__('') ?></span></span></button>
32
+ <div id="search_autocomplete" class="search-autocomplete"></div>
33
+ <script type="text/javascript">
34
+ //<![CDATA[
35
+ var searchForm = new Varien.searchForm('search_mini_form', 'search', '<?php echo $this->__('Search entire store here...') ?>');
36
+ searchForm.initAutocomplete('<?php echo $this->helper('catalogsearch')->getSuggestUrl() ?>', 'search_autocomplete');
37
+ //]]>
38
+ </script>
39
+ </div>
40
+ </form>
app/design/frontend/default/car_store/template/catalogsearch/result.phtml ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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->getResultCount()): ?>
28
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
29
+ <div class="page-title">
30
+ <?php if ($this->helper('rss/catalog')->getTagFeedUrl()): ?>
31
+ <a href="<?php echo $this->helper('rss/catalog')->getTagFeedUrl() ?>" class="nobr link-rss"><?php echo $this->__('Subscribe to Feed') ?></a>
32
+ <?php endif; ?>
33
+ <h1><?php echo ($this->getHeaderText() || $this->getHeaderText() === false) ? $this->getHeaderText() : $this->__("Search results for '%s'", $this->helper('catalogsearch')->getEscapedQueryText()) ?></h1>
34
+ </div>
35
+ <?php if ($messages = $this->getNoteMessages()):?>
36
+ <p class="note-msg">
37
+ <?php foreach ($messages as $message):?>
38
+ <?php echo $message?><br />
39
+ <?php endforeach;?>
40
+ </p>
41
+ <?php endif; ?>
42
+ <?php echo $this->getProductListHtml() ?>
43
+ <?php else: ?>
44
+ <div class="page-title">
45
+ <h1><?php echo ($this->getHeaderText() || $this->getHeaderText() === false) ? $this->getHeaderText() : $this->__("Search results for '%s'", $this->helper('catalogsearch')->getEscapedQueryText()) ?></h1>
46
+ </div>
47
+ <p class="note-msg">
48
+ <?php echo ($this->getNoResultText()) ? $this->getNoResultText() : $this->__('Your search returns no results.') ?>
49
+ <?php if ($messages = $this->getNoteMessages()):?>
50
+ <?php foreach ($messages as $message):?>
51
+ <br /><?php echo $message?>
52
+ <?php endforeach;?>
53
+ <?php endif; ?>
54
+ </p>
55
+ <?php endif; ?>
app/design/frontend/default/car_store/template/catalogsearch/term.phtml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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->__('Popular Search Terms') ?></h1>
29
+ </div>
30
+ <?php if( sizeof($this->getTerms()) > 0 ): ?>
31
+ <ul class="tags-list">
32
+ <?php foreach ($this->getTerms() as $_term): ?>
33
+ <li><a href="<?php echo $this->getSearchUrl($_term) ?>" style="font-size:<?php echo $_term->getRatio()*70+75 ?>%;"><?php echo $this->htmlEscape($_term->getName()) ?></a></li>
34
+ <?php endforeach; ?>
35
+ </ul>
36
+ <?php else: ?>
37
+ <p class="note-msg"><?php echo $this->__('There are no search terms available.'); ?></p>
38
+ <?php endif; ?>
app/design/frontend/default/car_store/template/checkout/cart.phtml ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2011 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
+ <div class="cart">
35
+ <div class="page-title title-buttons">
36
+ <h1><?php echo $this->__('Shopping Cart') ?></h1>
37
+ <?php if(!$this->hasError()): ?>
38
+ <ul class="checkout-types">
39
+ <?php foreach ($this->getMethods('top_methods') as $method): ?>
40
+ <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
41
+ <li><?php echo $methodHtml; ?></li>
42
+ <?php endif; ?>
43
+ <?php endforeach; ?>
44
+ </ul>
45
+ <?php endif; ?>
46
+ </div>
47
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
48
+ <?php echo $this->getChildHtml('form_before') ?>
49
+ <form action="<?php echo $this->getUrl('checkout/cart/updatePost') ?>" method="post">
50
+ <fieldset>
51
+ <table id="shopping-cart-table" class="data-table cart-table">
52
+ <col width="1" />
53
+ <col />
54
+ <col width="1"/>
55
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
56
+ <col width="1" />
57
+ <?php endif ?>
58
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
59
+ <col width="1" />
60
+ <?php endif; ?>
61
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
62
+ <col width="1" />
63
+ <?php endif; ?>
64
+ <col width="1" />
65
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
66
+ <col width="1" />
67
+ <?php endif; ?>
68
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
69
+ <col width="1" />
70
+ <?php endif; ?>
71
+ <col width="1" />
72
+
73
+ <?php $mergedCells = ($this->helper('tax')->displayCartBothPrices() ? 2 : 1); ?>
74
+ <thead>
75
+ <tr>
76
+ <th rowspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Product Image') ?></span></th>
77
+ <th rowspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Product Name') ?></th>
78
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
79
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><span class="nobr"><?php echo $this->__('Move to Wishlist') ?></span></th>
80
+ <?php endif ?>
81
+ <th class="a-center" colspan="<?php echo $mergedCells; ?>"><span class="nobr"><?php echo $this->__('Unit Price') ?></span></th>
82
+ <th rowspan="<?php echo $mergedCells; ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
83
+ <th class="a-center" colspan="<?php echo $mergedCells; ?>"><?php echo $this->__('Subtotal') ?></th>
84
+ <th class="a-center last" rowspan="<?php echo $mergedCells; ?>">&nbsp;</th>
85
+ </tr>
86
+ <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
87
+ <tr>
88
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
89
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
90
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
91
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
92
+ </tr>
93
+ <?php endif; ?>
94
+ </thead>
95
+ <tfoot>
96
+ <tr>
97
+ <td colspan="50" class="a-right">
98
+ <?php if($this->getContinueShoppingUrl()): ?>
99
+ <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>
100
+ <?php endif; ?>
101
+ <button type="submit" title="<?php echo $this->__('Update Shopping Cart') ?>" class="button btn-update"><span><span><?php echo $this->__('Update Shopping Cart') ?></span></span></button>
102
+ </td>
103
+ </tr>
104
+ </tfoot>
105
+ <tbody>
106
+ <?php foreach($this->getItems() as $_item): ?>
107
+ <?php echo $this->getItemHtml($_item) ?>
108
+ <?php endforeach ?>
109
+ </tbody>
110
+ </table>
111
+ <script type="text/javascript">decorateTable('shopping-cart-table')</script>
112
+ </fieldset>
113
+ </form>
114
+ <div class="cart-collaterals">
115
+ <div class="col2-set">
116
+ <div class="col-1">
117
+ <?php echo $this->getChildHtml('crosssell') ?>
118
+ </div>
119
+ <div class="col-2">
120
+ <?php echo $this->getChildHtml('coupon') ?>
121
+ <?php if (!$this->getIsVirtual()): echo $this->getChildHtml('shipping'); endif; ?>
122
+ </div>
123
+ </div>
124
+ <div class="totals">
125
+ <?php echo $this->getChildHtml('totals'); ?>
126
+ <?php if(!$this->hasError()): ?>
127
+ <ul class="checkout-types">
128
+ <?php foreach ($this->getMethods('methods') as $method): ?>
129
+ <?php if ($methodHtml = $this->getMethodHtml($method)): ?>
130
+ <li><?php echo $methodHtml; ?></li>
131
+ <?php endif; ?>
132
+ <?php endforeach; ?>
133
+ </ul>
134
+ <?php endif; ?>
135
+ </div>
136
+ </div>
137
+ </div>
app/design/frontend/default/car_store/template/checkout/cart/coupon.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) 2010 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="discount-coupon-form" action="<?php echo $this->getUrl('checkout/cart/couponPost') ?>" method="post">
28
+ <div class="discount">
29
+ <h2><?php echo $this->__('Discount Codes') ?></h2>
30
+ <div class="discount-form">
31
+ <label for="coupon_code"><?php echo $this->__('Enter your coupon code if you have one.') ?></label>
32
+ <input type="hidden" name="remove" id="remove-coupone" value="0" />
33
+ <div class="input-box">
34
+ <input class="input-text" id="coupon_code" name="coupon_code" value="<?php echo $this->htmlEscape($this->getCouponCode()) ?>" />
35
+ </div>
36
+ <div class="buttons-set">
37
+ <button type="button" title="<?php echo $this->__('Apply Coupon') ?>" class="button" onclick="discountForm.submit(false)" value="<?php echo $this->__('Apply Coupon') ?>"><span><span><?php echo $this->__('Apply Coupon') ?></span></span></button>
38
+ <?php if(strlen($this->getCouponCode())): ?>
39
+ &nbsp; <button type="button" title="<?php echo $this->__('Cancel') ?>" class="button btn-cancel-coupon" onclick="discountForm.submit(true)" value="<?php echo $this->__('Cancel') ?>"><span><span><?php echo $this->__('Cancel') ?></span></span></button>
40
+ <?php endif;?>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </form>
45
+ <script type="text/javascript">
46
+ //<![CDATA[
47
+ var discountForm = new VarienForm('discount-coupon-form');
48
+ discountForm.submit = function (isRemove) {
49
+ if (isRemove) {
50
+ $('coupon_code').removeClassName('required-entry');
51
+ $('remove-coupone').value = "1";
52
+ } else {
53
+ $('coupon_code').addClassName('required-entry');
54
+ $('remove-coupone').value = "0";
55
+ }
56
+ return VarienForm.prototype.submit.bind(discountForm)();
57
+ }
58
+ //]]>
59
+ </script>
app/design/frontend/default/car_store/template/checkout/cart/crosssell.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) 2010 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
+ * Cart cross sell items template
30
+ *
31
+ * @see Mage_Checkout_Block_Cart_Crosssell
32
+ */
33
+ ?>
34
+ <?php if($this->getItemCount()): ?>
35
+ <div class="crosssell">
36
+ <h2><?php echo $this->__('Based on your selection, you may be interested in the following items:') ?></h2>
37
+ <ul id="crosssell-products-list">
38
+ <?php foreach ($this->getItems() as $_item): ?>
39
+ <li class="item">
40
+ <a class="product-image" href="<?php echo $_item->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_item->getName()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(80,82); ?>" width="80" height="82" alt="<?php echo $this->htmlEscape($_item->getName()) ?>" /></a>
41
+ <div class="product-details">
42
+ <h3 class="product-name"><a href="<?php echo $_item->getProductUrl() ?>"><?php echo $this->htmlEscape($_item->getName()) ?></a></h3>
43
+ <?php echo $this->getPriceHtml($_item, true) ?>
44
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_item) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
45
+ <ul class="add-to-links">
46
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
47
+ <li><a href="<?php echo $this->getAddToWishlistUrl($_item) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li>
48
+ <?php endif; ?>
49
+ <?php if($_compareUrl=$this->getAddToCompareUrl($_item)): ?>
50
+ <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li>
51
+ <?php endif; ?>
52
+ </ul>
53
+ </div>
54
+ </li>
55
+ <?php endforeach; ?>
56
+ </ul>
57
+ <script type="text/javascript">decorateList('crosssell-products-list', 'none-recursive')</script>
58
+ </div>
59
+ <?php endif; ?>
app/design/frontend/default/car_store/template/checkout/cart/item/default.phtml ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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 $_item = $this->getItem()?>
28
+ <tr>
29
+ <td><?php if ($this->hasProductUrl()):?><a href="<?php echo $this->getProductUrl() ?>" title="<?php echo $this->htmlEscape($this->getProductName()) ?>"><?php endif;?><img src="<?php echo $this->getProductThumbnail()->resize(134,116); ?>" width="134" height="116" alt="<?php echo $this->htmlEscape($this->getProductName()) ?>" /><?php if ($this->hasProductUrl()):?></a><?php endif;?></td>
30
+ <td>
31
+ <h2 class="product-name">
32
+ <?php if ($this->hasProductUrl()):?>
33
+ <a href="<?php echo $this->getProductUrl() ?>"><?php echo $this->htmlEscape($this->getProductName()) ?></a>
34
+ <?php else: ?>
35
+ <?php echo $this->htmlEscape($this->getProductName()) ?>
36
+ <?php endif; ?>
37
+ </h2>
38
+ <?php if ($_options = $this->getOptionList()):?>
39
+ <dl class="item-options">
40
+ <?php foreach ($_options as $_option) : ?>
41
+ <?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
42
+ <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
43
+ <dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
44
+ <?php if (isset($_formatedOptionValue['full_view'])): ?>
45
+ <div class="truncated_full_value">
46
+ <dl class="item-options">
47
+ <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
48
+ <dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
49
+ </dl>
50
+ </div>
51
+ <?php endif; ?>
52
+ </dd>
53
+ <?php endforeach; ?>
54
+ </dl>
55
+ <?php endif;?>
56
+ <?php if ($messages = $this->getMessages()): ?>
57
+ <?php foreach ($messages as $message): ?>
58
+ <p class="item-msg <?php echo $message['type'] ?>">* <?php echo $message['text'] ?></p>
59
+ <?php endforeach; ?>
60
+ <?php endif; ?>
61
+ </td>
62
+ <?php if ($this->helper('wishlist')->isAllowInCart()) : ?>
63
+ <td class="a-center">
64
+ <input type="checkbox" value="1" name="cart[<?php echo $_item->getId() ?>][wishlist]" title="<?php echo $this->__('Move to Wishlist') ?>" class="checkbox" />
65
+ </td>
66
+ <?php endif ?>
67
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
68
+ <td class="a-right">
69
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
70
+ <span class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
71
+ <?php else: ?>
72
+ <span class="cart-price">
73
+ <?php endif; ?>
74
+
75
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
76
+ <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>
77
+ <?php else: ?>
78
+ <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
79
+ <?php endif; ?>
80
+
81
+ </span>
82
+
83
+
84
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
85
+
86
+ <div class="cart-tax-info" id="eunit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
87
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
88
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
89
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
90
+ <?php endforeach; ?>
91
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
92
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
93
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
94
+ <?php endforeach; ?>
95
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
96
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
97
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
98
+ <?php endforeach; ?>
99
+ <?php endif; ?>
100
+ </div>
101
+
102
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
103
+ <div class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
104
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>
105
+ </div>
106
+ <?php endif; ?>
107
+ <?php endif; ?>
108
+ </td>
109
+ <?php endif; ?>
110
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
111
+ <td>
112
+ <?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
113
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
114
+ <span class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
115
+ <?php else: ?>
116
+ <span class="cart-price">
117
+ <?php endif; ?>
118
+
119
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
120
+ <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?>
121
+ <?php else: ?>
122
+ <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>
123
+ <?php endif; ?>
124
+
125
+ </span>
126
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
127
+
128
+ <div class="cart-tax-info" id="unit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
129
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
130
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
131
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span>
132
+ <?php endforeach; ?>
133
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
134
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
135
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
136
+ <?php endforeach; ?>
137
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
138
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
139
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span>
140
+ <?php endforeach; ?>
141
+ <?php endif; ?>
142
+ </div>
143
+
144
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
145
+ <div class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
146
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?></span>
147
+ </div>
148
+ <?php endif; ?>
149
+ <?php endif; ?>
150
+ </td>
151
+ <?php endif; ?>
152
+ <td class="a-center">
153
+ <input name="cart[<?php echo $_item->getId() ?>][qty]" value="<?php echo $this->getQty() ?>" size="4" title="<?php echo $this->__('Qty') ?>" class="input-text qty" maxlength="12" />
154
+ </td>
155
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
156
+ <td class="a-right">
157
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
158
+ <span class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
159
+ <?php else: ?>
160
+ <span class="cart-price">
161
+ <?php endif; ?>
162
+
163
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
164
+ <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?>
165
+ <?php else: ?>
166
+ <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
167
+ <?php endif; ?>
168
+
169
+ </span>
170
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
171
+
172
+ <div class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
173
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
174
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
175
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
176
+ <?php endforeach; ?>
177
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
178
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
179
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
180
+ <?php endforeach; ?>
181
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
182
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
183
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
184
+ <?php endforeach; ?>
185
+ <?php endif; ?>
186
+ </div>
187
+
188
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
189
+ <div class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
190
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?></span>
191
+ </div>
192
+ <?php endif; ?>
193
+ <?php endif; ?>
194
+ </td>
195
+ <?php endif; ?>
196
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
197
+ <td>
198
+ <?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?>
199
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
200
+ <span class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
201
+ <?php else: ?>
202
+ <span class="cart-price">
203
+ <?php endif; ?>
204
+
205
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
206
+ <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?>
207
+ <?php else: ?>
208
+ <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxRowDisposition()) ?>
209
+ <?php endif; ?>
210
+
211
+ </span>
212
+
213
+
214
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
215
+
216
+ <div class="cart-tax-info" id="subtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
217
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
218
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
219
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span>
220
+ <?php endforeach; ?>
221
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
222
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
223
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
224
+ <?php endforeach; ?>
225
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
226
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
227
+ <span class="weee"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span>
228
+ <?php endforeach; ?>
229
+ <?php endif; ?>
230
+ </div>
231
+
232
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
233
+ <div class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
234
+ <span class="weee"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>: <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?></span>
235
+ </div>
236
+ <?php endif; ?>
237
+ <?php endif; ?>
238
+ </td>
239
+ <?php endif; ?>
240
+ <td class="a-center"><a href="<?php echo $this->getDeleteUrl() ?>" title="<?php echo $this->__('Remove item')?>" class="btn-remove2"><?php echo $this->__('Remove item')?></a></td>
241
+ </tr>
app/design/frontend/default/car_store/template/checkout/cart/sidebar.phtml ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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">
36
+
37
+ <div class="block-title">
38
+ <div class="top-site">
39
+ <strong><span><?php echo $this->__('My Cart') ?></span></strong>
40
+ </div>
41
+ </div>
42
+ <div class="sidebarblock-content">
43
+ <?php $_cartQty = $this->getSummaryCount() ?>
44
+
45
+ <div class="block-content">
46
+ <?php if ($_cartQty>0): ?>
47
+ <div class="summary">
48
+ <?php if ($_cartQty==1): ?>
49
+ <p class="amount"><?php echo $this->__('There is <a href="%s">1 item</a> in your cart.', $this->getUrl('checkout/cart')) ?></p>
50
+ <?php else: ?>
51
+ <p class="amount"><?php echo $this->__('There are <a href="%s">%s items</a> in your cart.', $this->getUrl('checkout/cart'), $_cartQty) ?></p>
52
+ <?php endif ?>
53
+ <p class="subtotal">
54
+ <span class="label"><?php echo $this->__('Cart Subtotal:') ?></span> <?php echo Mage::helper('checkout')->formatPrice($this->getSubtotal()) ?>
55
+ <?php if ($_subtotalInclTax = $this->getSubtotalInclTax()): ?>
56
+ <br />(<?php echo Mage::helper('checkout')->formatPrice($_subtotalInclTax) ?> <?php echo Mage::helper('tax')->getIncExcText(true) ?>)
57
+ <?php endif; ?>
58
+ </p>
59
+ </div>
60
+ <?php endif ?>
61
+ <?php if($_cartQty && $this->isPossibleOnepageCheckout()): ?>
62
+ <div class="actions">
63
+ <?php echo $this->getChildHtml('extra_actions') ?>
64
+ <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>
65
+ </div>
66
+ <?php endif ?>
67
+ <?php $_items = $this->getRecentItems() ?>
68
+ <?php if(count($_items)): ?>
69
+ <p class="block-subtitle"><?php echo $this->__('Recently added item(s)') ?></p>
70
+ <ol id="cart-sidebar" class="mini-products-list">
71
+ <?php foreach($_items as $_item): ?>
72
+ <?php echo $this->getItemHtml($_item) ?>
73
+ <?php endforeach; ?>
74
+ </ol>
75
+ <script type="text/javascript">decorateList('cart-sidebar', 'none-recursive')</script>
76
+ <?php else: ?>
77
+ <p class="empty"><?php echo $this->__('You have no items in your shopping cart.') ?></p>
78
+ <?php endif ?>
79
+ </div>
80
+ </div>
81
+ <div class="bot-site">
82
+ <div class="right-corner">
83
+ <div class="stretched-layer"> </div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ <?php endif;?>
app/design/frontend/default/car_store/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) 2010 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->htmlEscape($_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->htmlEscape($_a->getCheckboxText()) ?>" class="checkbox" /><label for="agreement-<?php echo $_a->getId()?>"><?php echo $this->htmlEscape($_a->getCheckboxText()) ?></label>
47
+ </p>
48
+ </li>
49
+ <?php endforeach ?>
50
+ </ol>
51
+ </form>
app/design/frontend/default/car_store/template/checkout/onepage/billing.phtml ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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())->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->htmlEscape($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text" />
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->htmlEscape($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
+ <li class="wide">
60
+ <label for="billing:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
61
+ <div class="input-box">
62
+ <input type="text" title="<?php echo $this->__('Street Address') ?>" name="billing[street][]" id="billing:street1" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(1)) ?>" class="input-text required-entry" />
63
+ </div>
64
+ </li>
65
+ <?php for ($_i=2, $_n=$this->helper('customer/address')->getStreetLines(); $_i<=$_n; $_i++): ?>
66
+ <li class="wide">
67
+ <div class="input-box">
68
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="billing[street][]" id="billing:street<?php echo $_i?>" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet($_i)) ?>" class="input-text" />
69
+ </div>
70
+ </li>
71
+ <?php endfor ?>
72
+ <li class="fields">
73
+ <div class="field">
74
+ <label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
75
+ <div class="input-box">
76
+ <input type="text" title="<?php echo $this->__('City') ?>" name="billing[city]" value="<?php echo $this->htmlEscape($this->getAddress()->getCity()) ?>" class="input-text required-entry" id="billing:city" />
77
+ </div>
78
+ </div>
79
+ <div class="field">
80
+ <label for="billing:region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
81
+ <div class="input-box">
82
+ <select id="billing:region_id" name="billing[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
83
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
84
+ </select>
85
+ <script type="text/javascript">
86
+ //<![CDATA[
87
+ $('billing:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
88
+ //]]>
89
+ </script>
90
+ <input type="text" id="billing:region" name="billing[region]" value="<?php echo $this->htmlEscape($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text" style="display:none;" />
91
+ </div>
92
+ </div>
93
+ </li>
94
+ <li class="fields">
95
+ <div class="field">
96
+ <label for="billing:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
97
+ <div class="input-box">
98
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="billing[postcode]" id="billing:postcode" value="<?php echo $this->htmlEscape($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international required-entry" />
99
+ </div>
100
+ </div>
101
+ <div class="field">
102
+ <label for="billing:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
103
+ <div class="input-box">
104
+ <?php echo $this->getCountryHtmlSelect('billing') ?>
105
+ </div>
106
+ </div>
107
+ </li>
108
+ <li class="fields">
109
+ <div class="field">
110
+ <label for="billing:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
111
+ <div class="input-box">
112
+ <input type="text" name="billing[telephone]" value="<?php echo $this->htmlEscape($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text required-entry" id="billing:telephone" />
113
+ </div>
114
+ </div>
115
+ <div class="field">
116
+ <label for="billing:fax"><?php echo $this->__('Fax') ?></label>
117
+ <div class="input-box">
118
+ <input type="text" name="billing[fax]" value="<?php echo $this->htmlEscape($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text" id="billing:fax" />
119
+ </div>
120
+ </div>
121
+ </li>
122
+ <?php if(!$this->isCustomerLoggedIn()): ?>
123
+
124
+ <?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
125
+ <?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
126
+ <?php if ($_dob->isEnabled() || $_gender->isEnabled()): ?>
127
+ <li class="fields">
128
+ <?php if ($_dob->isEnabled()): ?>
129
+ <div class="field">
130
+ <?php echo $_dob->setDate($this->getQuote()->getCustomerDob())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
131
+ </div>
132
+ <?php endif; ?>
133
+ <?php if ($_gender->isEnabled()): ?>
134
+ <div class="field">
135
+ <?php echo $_gender->setGender($this->getQuote()->getCustomerGender())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
136
+ </div>
137
+ <?php endif ?>
138
+ </li>
139
+ <?php endif ?>
140
+
141
+ <?php $_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat') ?>
142
+ <?php if ($_taxvat->isEnabled()): ?>
143
+ <li>
144
+ <?php echo $_taxvat->setTaxvat($this->getQuote()->getCustomerTaxvat())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
145
+ </li>
146
+ <?php endif ?>
147
+
148
+ <li class="fields" id="register-customer-password">
149
+ <div class="field">
150
+ <label for="billing:customer_password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
151
+ <div class="input-box">
152
+ <input type="password" name="billing[customer_password]" id="billing:customer_password" title="<?php echo $this->__('Password') ?>" class="input-text required-entry validate-password" />
153
+ </div>
154
+ </div>
155
+ <div class="field">
156
+ <label for="billing:confirm_password" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
157
+ <div class="input-box">
158
+ <input type="password" name="billing[confirm_password]" title="<?php echo $this->__('Confirm Password') ?>" id="billing:confirm_password" class="input-text required-entry validate-cpassword" />
159
+ </div>
160
+ </div>
161
+ </li>
162
+ <?php endif; ?>
163
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
164
+ <li class="control">
165
+ <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>
166
+ </li>
167
+ <?php else:?>
168
+ <li class="no-display"><input type="hidden" name="billing[save_in_address_book]" value="1" /></li>
169
+ <?php endif; ?>
170
+ </ul>
171
+ </fieldset>
172
+ </li>
173
+ <?php if ($this->canShip()): ?>
174
+ <li class="control">
175
+ <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>
176
+ <li class="control">
177
+ <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>
178
+ </li>
179
+ <?php endif; ?>
180
+ </ul>
181
+ <?php if (!$this->canShip()): ?>
182
+ <input type="hidden" name="billing[use_for_shipping]" value="1" />
183
+ <?php endif; ?>
184
+ <div class="buttons-set" id="billing-buttons-container">
185
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
186
+ <button type="button" title="<?php echo $this->__('Continue') ?>" class="button" onclick="billing.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
187
+ <span class="please-wait" id="billing-please-wait" style="display:none;">
188
+ <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...') ?>
189
+ </span>
190
+ </div>
191
+ </fieldset>
192
+ </form>
193
+ <script type="text/javascript">
194
+ //<![CDATA[
195
+ var billing = new Billing('co-billing-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveBilling') ?>');
196
+ var billingForm = new VarienForm('co-billing-form');
197
+
198
+ //billingForm.setElementsRelation('billing:country_id', 'billing:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
199
+ $('billing-address-select') && billing.newAddress(!$('billing-address-select').value);
200
+
201
+ var billingRegionUpdater = new RegionUpdater('billing:country_id', 'billing:region', 'billing:region_id', countryRegions, undefined, 'billing:postcode');
202
+ //]]>
203
+ </script>
app/design/frontend/default/car_store/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) 2010 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/default/car_store/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) 2010 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/default/car_store/template/checkout/onepage/login.phtml ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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="col2-set">
28
+ <?php echo $this->getChildHtml('login_before')?>
29
+ <div class="col-1">
30
+ <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>
31
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
32
+ <p><?php echo $this->__('Register with us for future convenience:') ?></p>
33
+ <?php else: ?>
34
+ <p><strong><?php echo $this->__('Register and save time!') ?></strong><br />
35
+ <?php echo $this->__('Register with us for future convenience:') ?></p>
36
+ <ul>
37
+ <li><?php echo $this->__('Fast and easy check out') ?></li>
38
+ <li><?php echo $this->__('Easy access to your order history and status') ?></li>
39
+ </ul>
40
+ <?php endif; ?>
41
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
42
+ <ul class="form-list">
43
+ <?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
44
+ <li class="control">
45
+ <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>
46
+ </li>
47
+ <?php endif; ?>
48
+ <li class="control">
49
+ <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>
50
+ </li>
51
+ </ul>
52
+ <h4><?php echo $this->__('Register and save time!') ?></h4>
53
+ <p><?php echo $this->__('Register with us for future convenience:') ?></p>
54
+ <ul class="ul">
55
+ <li><?php echo $this->__('Fast and easy check out') ?></li>
56
+ <li><?php echo $this->__('Easy access to your order history and status') ?></li>
57
+ </ul>
58
+ <?php else: ?>
59
+ <input type="hidden" name="checkout_method" id="login:register" value="register" checked="checked" />
60
+ <?php endif; ?>
61
+ </div>
62
+ <div class="col-2">
63
+ <h3><?php echo $this->__('Login') ?></h3>
64
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
65
+ <form id="login-form" action="<?php echo $this->getPostAction() ?>" method="post">
66
+ <fieldset>
67
+ <h4><?php echo $this->__('Already registered?') ?></h4>
68
+ <p><?php echo $this->__('Please log in below:') ?></p>
69
+ <ul class="form-list">
70
+ <li>
71
+ <label for="login-email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
72
+ <div class="input-box">
73
+ <input type="text" class="input-text required-entry validate-email" id="login-email" name="login[username]" value="<?php echo $this->htmlEscape($this->getUsername()) ?>" />
74
+ </div>
75
+ </li>
76
+ <li>
77
+ <label for="login-password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
78
+ <div class="input-box">
79
+ <input type="password" class="input-text required-entry" id="login-password" name="login[password]" />
80
+ </div>
81
+ </li>
82
+ </ul>
83
+ </fieldset>
84
+ </form>
85
+ </div>
86
+ </div>
87
+ <div class="col2-set">
88
+ <div class="col-1">
89
+ <div class="buttons-set">
90
+ <p class="required">&nbsp;</p>
91
+ <button type="button" class="button" onclick="checkout.setMethod();"><span><span><?php echo ($this->getQuote()->isAllowedGuestCheckout() ? $this->__('Continue') : $this->__('Register')) ?></span></span></button>
92
+ </div>
93
+ </div>
94
+ <div class="col-2">
95
+ <div class="buttons-set">
96
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
97
+ <a href="<?php echo $this->getUrl('customer/account/forgotpassword') ?>" class="f-left"><?php echo $this->__('Forgot your password?') ?></a>
98
+ <button type="submit" class="button" onclick="onepageLogin(this)"><span><span><?php echo $this->__('Login') ?></span></span></button>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ <script type="text/javascript">
103
+ //<![CDATA[
104
+ var loginForm = new VarienForm('login-form', true);
105
+ $('login-email').observe('keypress', bindLoginPost);
106
+ $('login-password').observe('keypress', bindLoginPost);
107
+ function bindLoginPost(evt){
108
+ if (evt.keyCode == Event.KEY_RETURN) {
109
+ loginForm.submit();
110
+ }
111
+ }
112
+ function onepageLogin(button)
113
+ {
114
+ if(loginForm.validator && loginForm.validator.validate()){
115
+ button.disabled = true;
116
+ loginForm.submit();
117
+ }
118
+ }
119
+ //]]>
120
+ </script>
app/design/frontend/default/car_store/template/checkout/onepage/payment.phtml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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 payment = new Payment('co-payment-form', '<?php echo $this->getUrl('checkout/onepage/savePayment') ?>');
30
+ //]]>
31
+ </script>
32
+ <form action="" id="co-payment-form">
33
+ <fieldset>
34
+ <?php echo $this->getChildHtml('methods') ?>
35
+ </fieldset>
36
+ </form>
37
+ <div class="tool-tip" id="payment-tool-tip" style="display:none;">
38
+ <div class="btn-close"><a href="#" id="payment-tool-tip-close" title="<?php echo $this->__('Close') ?>"><?php echo $this->__('Close') ?></a></div>
39
+ <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>
40
+ </div>
41
+ <div class="buttons-set" id="payment-buttons-container">
42
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
43
+ <p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
44
+ <button type="button" class="button" onclick="payment.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
45
+ <span class="please-wait" id="payment-please-wait" style="display:none;">
46
+ <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...') ?>
47
+ </span>
48
+ </div>
49
+ <script type="text/javascript">
50
+ //<![CDATA[
51
+ function toggleToolTip(event){
52
+ if($('payment-tool-tip')){
53
+ $('payment-tool-tip').setStyle({
54
+ top: (Event.pointerY(event)-560)+'px'//,
55
+ //left: (Event.pointerX(event)+100)+'px'
56
+ })
57
+ $('payment-tool-tip').toggle();
58
+ }
59
+ Event.stop(event);
60
+ }
61
+ if($('payment-tool-tip-close')){
62
+ Event.observe($('payment-tool-tip-close'), 'click', toggleToolTip);
63
+ }
64
+ //]]>
65
+ </script>
66
+ <script type="text/javascript">
67
+ //<![CDATA[
68
+ payment.currentMethod = "<?php echo $this->getChild('methods')->getSelectedMethodCode() ?>";
69
+ //]]>
70
+ </script>
app/design/frontend/default/car_store/template/checkout/onepage/payment/methods.phtml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * One page checkout payment methods
30
+ *
31
+ * @see Mage_Checkout_Block_Onepage_Payment_Methods
32
+ */
33
+ ?>
34
+ <dl class="sp-methods" id="checkout-payment-method-load">
35
+ <?php foreach ($this->getMethods() as $_method): $_code = $_method->getCode() ?>
36
+ <dt>
37
+ <?php if( sizeof($this->getMethods()) > 1 ): ?>
38
+ <input id="p_method_<?php echo $_code ?>" value="<?php echo $_code ?>" type="radio" name="payment[method]" title="<?php echo $this->htmlEscape($_method->getTitle()) ?>" onclick="payment.switchMethod('<?php echo $_code ?>')"<?php if($this->getSelectedMethodCode()==$_code): ?> checked="checked"<?php endif; ?> class="radio" />
39
+ <?php else: ?>
40
+ <span class="no-display"><input id="p_method_<?php echo $_code ?>" value="<?php echo $_code ?>" type="radio" name="payment[method]" checked="checked" class="radio" /></span>
41
+ <?php endif; ?>
42
+ <label for="p_method_<?php echo $_code ?>"><?php echo $this->getMethodTitle($_method) ?> <?php echo $this->getMethodLabelAfterHtml($_method) ?></label>
43
+ </dt>
44
+ <?php if ($html = $this->getPaymentMethodFormHtml($_method)): ?>
45
+ <dd>
46
+ <?php echo $html; ?>
47
+ </dd>
48
+ <?php endif; ?>
49
+ <?php endforeach; ?>
50
+ </dl>
51
+ <?php echo $this->getChildChildHtml('additional'); ?>
52
+ <script type="text/javascript">
53
+ //<![CDATA[
54
+ <?php echo $this->getChildChildHtml('scripts'); ?>
55
+ payment.init();
56
+ //]]>
57
+ </script>
app/design/frontend/default/car_store/template/checkout/onepage/progress.phtml ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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">
28
+ <div class="block-title">
29
+ <div class="top-site">
30
+ <strong><span><?php echo $this->__('Your Checkout') ?></span></strong>
31
+ </div>
32
+ </div>
33
+ <div class="sidebarblock-content">
34
+ <div class="block-content">
35
+ <dl>
36
+ <?php if ($this->getCheckout()->getStepData('billing', 'is_show')): ?>
37
+ <?php if($this->getCheckout()->getStepData('billing', 'complete')): ?>
38
+ <dt class="complete">
39
+ <?php echo $this->__('Billing Address') ?> <span class="separator">|</span> <a href="#billing" onclick="checkout.accordion.openSection('opc-billing'); return false;"><?php echo $this->__('Change') ?></a>
40
+ </dt>
41
+ <dd class="complete">
42
+ <address><?php echo $this->getBilling()->format('html') ?></address>
43
+ </dd>
44
+ <?php else: ?>
45
+ <dt>
46
+ <?php echo $this->__('Billing Address') ?>
47
+ </dt>
48
+ <?php endif; ?>
49
+ <?php endif; ?>
50
+
51
+ <?php if ($this->getCheckout()->getStepData('shipping', 'is_show')): ?>
52
+ <?php if($this->getCheckout()->getStepData('shipping', 'complete')): ?>
53
+ <dt class="complete">
54
+ <?php echo $this->__('Shipping Address') ?> <span class="separator">|</span> <a href="#payment" onclick="checkout.accordion.openSection('opc-shipping');return false;"><?php echo $this->__('Change') ?></a>
55
+ </dt>
56
+ <dd class="complete">
57
+ <address><?php echo $this->getShipping()->format('html') ?></address>
58
+ </dd>
59
+ <?php else: ?>
60
+ <dt>
61
+ <?php echo $this->__('Shipping Address') ?>
62
+ </dt>
63
+ <?php endif; ?>
64
+ <?php endif; ?>
65
+
66
+ <?php if ($this->getCheckout()->getStepData('shipping_method', 'is_show')): ?>
67
+ <?php if($this->getCheckout()->getStepData('shipping_method', 'complete')): ?>
68
+ <dt class="complete">
69
+ <?php echo $this->__('Shipping Method') ?> <span class="separator">|</span> <a href="#shipping_method" onclick="checkout.accordion.openSection('opc-shipping_method'); return false;"><?php echo $this->__('Change') ?></a>
70
+ </dt>
71
+ <dd class="complete">
72
+ <?php if ($this->getShippingMethod()): ?>
73
+ <?php echo $this->getShippingDescription() ?>
74
+
75
+ <?php $_excl = $this->getShippingPriceExclTax(); ?>
76
+ <?php $_incl = $this->getShippingPriceInclTax(); ?>
77
+ <?php if ($this->helper('tax')->displayShippingPriceIncludingTax()): ?>
78
+ <?php echo $_incl; ?>
79
+ <?php else: ?>
80
+ <?php echo $_excl; ?>
81
+ <?php endif; ?>
82
+ <?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
83
+ (<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
84
+ <?php endif; ?>
85
+
86
+ <?php else: ?>
87
+ <?php echo $this->__('Shipping method has not been selected yet') ?>
88
+ <?php endif; ?>
89
+ </dd>
90
+ <?php else: ?>
91
+ <dt>
92
+ <?php echo $this->__('Shipping Method') ?>
93
+ </dt>
94
+ <?php endif; ?>
95
+ <?php endif; ?>
96
+
97
+ <?php if ($this->getCheckout()->getStepData('payment', 'is_show')): ?>
98
+ <?php if($this->getCheckout()->getStepData('payment', 'complete')): ?>
99
+ <dt class="complete">
100
+ <?php echo $this->__('Payment Method') ?> <span class="separator">|</span> <a href="#payment" onclick="checkout.accordion.openSection('opc-payment'); return false;"><?php echo $this->__('Change') ?></a>
101
+ </dt>
102
+ <dd class="complete">
103
+ <?php echo $this->getPaymentHtml() ?>
104
+ </dd>
105
+ <?php else: ?>
106
+ <dt>
107
+ <?php echo $this->__('Payment Method') ?>
108
+ </dt>
109
+ <?php endif; ?>
110
+ <?php endif; ?>
111
+ </dl>
112
+ </div>
113
+ </div>
114
+ <div class="bot-site">
115
+ <div class="right-corner">
116
+ <div class="stretched-layer"> </div>
117
+ </div>
118
+ </div>
119
+ </div>
app/design/frontend/default/car_store/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) 2010 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
+ <?php echo $this->getChildHtml('info') ?>
29
+ </div>
app/design/frontend/default/car_store/template/checkout/onepage/review/button.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) 2010 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
+ <button type="submit" title="<?php echo $this->__('Place Order') ?>" class="button btn-checkout" onclick="review.save();"><span><span><?php echo $this->__('Place Order') ?></span></span></button>
app/design/frontend/default/car_store/template/checkout/onepage/review/info.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) 2010 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 echo $this->getChildHtml('items_before'); ?>
28
+ <div id="checkout-review-table-wrapper">
29
+ <table class="data-table" id="checkout-review-table">
30
+ <?php if ($this->helper('tax')->displayCartBothPrices()): $colspan = $rowspan = 2; else: $colspan = $rowspan = 1; endif; ?>
31
+ <col />
32
+ <col width="1" />
33
+ <col width="1" />
34
+ <col width="1" />
35
+ <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
36
+ <col width="1" />
37
+ <col width="1" />
38
+ <?php endif; ?>
39
+ <thead>
40
+ <tr>
41
+ <th rowspan="<?php echo $rowspan ?>"><?php echo $this->__('Product Name') ?></th>
42
+ <th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Price') ?></th>
43
+ <th rowspan="<?php echo $rowspan ?>" class="a-center"><?php echo $this->__('Qty') ?></th>
44
+ <th colspan="<?php echo $colspan ?>" class="a-center"><?php echo $this->__('Subtotal') ?></th>
45
+ </tr>
46
+ <?php if ($this->helper('tax')->displayCartBothPrices()): ?>
47
+ <tr>
48
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
49
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
50
+ <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th>
51
+ <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th>
52
+ </tr>
53
+ <?php endif; ?>
54
+ </thead>
55
+ <?php echo $this->getChildHtml('totals'); ?>
56
+ <tbody>
57
+ <?php foreach($this->getItems() as $_item): ?>
58
+ <?php echo $this->getItemHtml($_item)?>
59
+ <?php endforeach ?>
60
+ </tbody>
61
+ </table>
62
+ </div>
63
+ <?php echo $this->getChildHtml('items_after'); ?>
64
+ <script type="text/javascript">
65
+ //<![CDATA[
66
+ decorateTable('checkout-review-table');
67
+ truncateOptions();
68
+ //]]>
69
+ </script>
70
+ <div id="checkout-review-submit">
71
+ <?php echo $this->getChildHtml('agreements') ?>
72
+ <div class="buttons-set" id="review-buttons-container">
73
+ <p class="f-left"><?php echo $this->__('Forgot an Item?') ?> <a href="<?php echo $this->getUrl('checkout/cart') ?>"><?php echo $this->__('Edit Your Cart') ?></a></p>
74
+ <button type="submit" title="<?php echo $this->__('Place Order') ?>" class="button btn-checkout" onclick="review.save();"><span><span><?php echo $this->__('Place Order') ?></span></span></button>
75
+ <span class="please-wait" id="review-please-wait" style="display:none;">
76
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Submitting order information...') ?>" title="<?php echo $this->__('Submitting order information...') ?>" class="v-middle" /> <?php echo $this->__('Submitting order information...') ?>
77
+ </span>
78
+ </div>
79
+ <script type="text/javascript">
80
+ //<![CDATA[
81
+ review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
82
+ //]]>
83
+ </script>
84
+ </div>
app/design/frontend/default/car_store/template/checkout/onepage/review/item.phtml ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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 $_item = $this->getItem()?>
28
+ <tr>
29
+ <td><h3 class="product-name"><?php echo $this->htmlEscape($this->getProductName()) ?></h3>
30
+ <?php if ($_options = $this->getOptionList()):?>
31
+ <dl class="item-options">
32
+ <?php foreach ($_options as $_option) : ?>
33
+ <?php $_formatedOptionValue = $this->getFormatedOptionValue($_option) ?>
34
+ <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
35
+ <dd<?php if (isset($_formatedOptionValue['full_view'])): ?> class="truncated"<?php endif; ?>><?php echo $_formatedOptionValue['value'] ?>
36
+ <?php if (isset($_formatedOptionValue['full_view'])): ?>
37
+ <div class="truncated_full_value">
38
+ <dl class="item-options">
39
+ <dt><?php echo $this->htmlEscape($_option['label']) ?></dt>
40
+ <dd><?php echo $_formatedOptionValue['full_view'] ?></dd>
41
+ </dl>
42
+ </div>
43
+ <?php endif; ?>
44
+ </dd>
45
+ <?php endforeach; ?>
46
+ </dl>
47
+ <?php endif;?>
48
+ <?php if ($addtInfoBlock = $this->getProductAdditionalInformationBlock()):?>
49
+ <?php echo $addtInfoBlock->setItem($_item)->toHtml() ?>
50
+ <?php endif;?>
51
+ </td>
52
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
53
+ <td class="a-right">
54
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
55
+ <span class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
56
+ <?php else: ?>
57
+ <span class="cart-price">
58
+ <?php endif; ?>
59
+
60
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
61
+ <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?>
62
+ <?php else: ?>
63
+ <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()) ?>
64
+ <?php endif; ?>
65
+
66
+ </span>
67
+
68
+
69
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
70
+
71
+ <div class="cart-tax-info" id="eunit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
72
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
73
+ <small>
74
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
75
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />
76
+ <?php endforeach; ?>
77
+ </small>
78
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
79
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
80
+ <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></small></span><br />
81
+ <?php endforeach; ?>
82
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
83
+ <small>
84
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
85
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />
86
+ <?php endforeach; ?>
87
+ </small>
88
+ <?php endif; ?>
89
+ </div>
90
+
91
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
92
+ <div class="cart-tax-total" onclick="taxToggle('eunit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
93
+ <span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_item->getCalculationPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition()); ?></span>
94
+ </div>
95
+ <?php endif; ?>
96
+ <?php endif; ?>
97
+ </td>
98
+ <?php endif; ?>
99
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
100
+ <td>
101
+ <?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?>
102
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
103
+ <span class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
104
+ <?php else: ?>
105
+ <span class="cart-price">
106
+ <?php endif; ?>
107
+
108
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
109
+ <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?>
110
+ <?php else: ?>
111
+ <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxDisposition()) ?>
112
+ <?php endif; ?>
113
+
114
+ </span>
115
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
116
+
117
+ <div class="cart-tax-info" id="unit-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
118
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
119
+ <small>
120
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
121
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount'],true,true); ?></span><br />
122
+ <?php endforeach; ?>
123
+ </small>
124
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
125
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
126
+ <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></small></span><br />
127
+ <?php endforeach; ?>
128
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
129
+ <small>
130
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
131
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['amount_incl_tax'],true,true); ?></span><br />
132
+ <?php endforeach; ?>
133
+ </small>
134
+ <?php endif; ?>
135
+ </div>
136
+
137
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
138
+ <div class="cart-tax-total" onclick="taxToggle('unit-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
139
+ <span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedAmount()); ?></span>
140
+ </div>
141
+ <?php endif; ?>
142
+ <?php endif; ?>
143
+ </td>
144
+ <?php endif; ?>
145
+ <td class="a-center"><?php echo $_item->getQty() ?></td>
146
+ <?php if ($this->helper('tax')->displayCartPriceExclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
147
+ <td class="a-right">
148
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
149
+ <span class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
150
+ <?php else: ?>
151
+ <span class="cart-price">
152
+ <?php endif; ?>
153
+
154
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
155
+ <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?>
156
+ <?php else: ?>
157
+ <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()) ?>
158
+ <?php endif; ?>
159
+
160
+ </span>
161
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
162
+
163
+ <div class="cart-tax-info" id="esubtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
164
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
165
+ <small>
166
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
167
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span><br />
168
+ <?php endforeach; ?>
169
+ </small>
170
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
171
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
172
+ <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></small></span><br />
173
+ <?php endforeach; ?>
174
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
175
+ <small>
176
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
177
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span><br />
178
+ <?php endforeach; ?>
179
+ </small>
180
+ <?php endif; ?>
181
+ </div>
182
+
183
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
184
+ <div class="cart-tax-total" onclick="taxToggle('esubtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
185
+ <span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition()); ?></span>
186
+ </div>
187
+ <?php endif; ?>
188
+ <?php endif; ?>
189
+ </td>
190
+ <?php endif; ?>
191
+ <?php if ($this->helper('tax')->displayCartPriceInclTax() || $this->helper('tax')->displayCartBothPrices()): ?>
192
+ <td>
193
+ <?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?>
194
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
195
+ <span class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
196
+ <?php else: ?>
197
+ <span class="cart-price">
198
+ <?php endif; ?>
199
+
200
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
201
+ <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?>
202
+ <?php else: ?>
203
+ <?php echo $this->helper('checkout')->formatPrice($_incl-$_item->getWeeeTaxRowDisposition()) ?>
204
+ <?php endif; ?>
205
+
206
+ </span>
207
+
208
+
209
+ <?php if (Mage::helper('weee')->getApplied($_item)): ?>
210
+
211
+ <div class="cart-tax-info" id="subtotal-item-tax-details<?php echo $_item->getId(); ?>" style="display:none;">
212
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
213
+ <small>
214
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
215
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount'],true,true); ?></span><br />
216
+ <?php endforeach; ?>
217
+ </small>
218
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
219
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
220
+ <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></small></span><br />
221
+ <?php endforeach; ?>
222
+ <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
223
+ <small>
224
+ <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?>
225
+ <span class="nobr"><?php echo $tax['title']; ?>: <?php echo Mage::helper('checkout')->formatPrice($tax['row_amount_incl_tax'],true,true); ?></span><br />
226
+ <?php endforeach; ?>
227
+ </small>
228
+ <?php endif; ?>
229
+ </div>
230
+
231
+ <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales') && $_item->getWeeeTaxAppliedAmount()): ?>
232
+ <div class="cart-tax-total" onclick="taxToggle('subtotal-item-tax-details<?php echo $_item->getId(); ?>', this, 'cart-tax-total-expanded');">
233
+ <span class="nobr"><?php echo Mage::helper('weee')->__('Total incl. tax'); ?>:<br /> <?php echo $this->helper('checkout')->formatPrice($_incl+$_item->getWeeeTaxAppliedRowAmount()); ?></span>
234
+ </div>
235
+ <?php endif; ?>
236
+ <?php endif; ?>
237
+ </td>
238
+ <?php endif; ?>
239
+ </tr>
app/design/frontend/default/car_store/template/checkout/onepage/review/totals.phtml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * @see Mage_Checkout_Block_Cart_Totals
29
+ */
30
+ ?>
31
+ <?php if ($this->getTotals()): ?>
32
+ <tfoot>
33
+ <?php $_colspan = $this->helper('tax')->displayCartBothPrices() ? 5 : 3; ?>
34
+ <?php echo $this->renderTotals(null, $_colspan); ?>
35
+ <?php echo $this->renderTotals('footer', $_colspan); ?>
36
+ <?php if ($this->needDisplayBaseGrandtotal()):?>
37
+ <tr>
38
+ <td class="a-right" colspan="<?php echo $_colspan; ?>">
39
+ <small><?php echo $this->helper('sales')->__('Your credit card will be charged for') ?></small>
40
+ </td>
41
+ <td class="a-right">
42
+ <small><?php echo $this->displayBaseGrandtotal() ?></small>
43
+ </td>
44
+ </tr>
45
+ <?php endif?>
46
+ </tfoot>
47
+ <?php endif; ?>
app/design/frontend/default/car_store/template/checkout/onepage/shipping.phtml ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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->htmlEscape($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text" onchange="shipping.setSameAsBilling(false);" />
47
+ </div>
48
+ </div>
49
+ <?php if(false): ?>
50
+ <div class="fields">
51
+ <label for="shipping:email" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
52
+ <div class="input-box">
53
+ <input type="text" name="shipping[email]" id="shipping:email" value="<?php echo $this->htmlEscape($this->getAddress()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text validate-email required-entry" />
54
+ </div>
55
+ </div>
56
+ <?php endif ?>
57
+ </li>
58
+ <li class="wide">
59
+ <label for="shipping:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
60
+ <div class="input-box">
61
+ <input type="text" title="<?php echo $this->__('Street Address') ?>" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet(1)) ?>" class="input-text required-entry" onchange="shipping.setSameAsBilling(false);" />
62
+ </div>
63
+ </li>
64
+ <?php for ($_i=2, $_n=$this->helper('customer/address')->getStreetLines(); $_i<=$_n; $_i++): ?>
65
+ <li class="wide">
66
+ <div class="input-box">
67
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="shipping[street][]" id="shipping:street<?php echo $_i?>" value="<?php echo $this->htmlEscape($this->getAddress()->getStreet($_i)) ?>" class="input-text" onchange="shipping.setSameAsBilling(false);" />
68
+ </div>
69
+ </li>
70
+ <?php endfor ?>
71
+ <li class="fields">
72
+ <div class="field">
73
+ <label for="shipping:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
74
+ <div class="input-box">
75
+ <input type="text" title="<?php echo $this->__('City') ?>" name="shipping[city]" value="<?php echo $this->htmlEscape($this->getAddress()->getCity()) ?>" class="input-text required-entry" id="shipping:city" onchange="shipping.setSameAsBilling(false);" />
76
+ </div>
77
+ </div>
78
+ <div class="field">
79
+ <label for="shipping:region" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
80
+ <div class="input-box">
81
+ <select id="shipping:region_id" name="shipping[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
82
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
83
+ </select>
84
+ <script type="text/javascript">
85
+ //<![CDATA[
86
+ $('shipping:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
87
+ //]]>
88
+ </script>
89
+ <input type="text" id="shipping:region" name="shipping[region]" value="<?php echo $this->htmlEscape($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text" style="display:none;" />
90
+ </div>
91
+ </div>
92
+ </li>
93
+ <li class="fields">
94
+ <div class="field">
95
+ <label for="shipping:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
96
+ <div class="input-box">
97
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="shipping[postcode]" id="shipping:postcode" value="<?php echo $this->htmlEscape($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international required-entry" onchange="shipping.setSameAsBilling(false);" />
98
+ </div>
99
+ </div>
100
+ <div class="field">
101
+ <label for="shipping:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
102
+ <div class="input-box">
103
+ <?php echo $this->getCountryHtmlSelect('shipping') ?>
104
+ </div>
105
+ </div>
106
+ </li>
107
+ <li class="fields">
108
+ <div class="field">
109
+ <label for="shipping:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
110
+ <div class="input-box">
111
+ <input type="text" name="shipping[telephone]" value="<?php echo $this->htmlEscape($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text required-entry" id="shipping:telephone" onchange="shipping.setSameAsBilling(false);" />
112
+ </div>
113
+ </div>
114
+ <div class="field">
115
+ <label for="shipping:fax"><?php echo $this->__('Fax') ?></label>
116
+ <div class="input-box">
117
+ <input type="text" name="shipping[fax]" value="<?php echo $this->htmlEscape($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text" id="shipping:fax" onchange="shipping.setSameAsBilling(false);" />
118
+ </div>
119
+ </div>
120
+ </li>
121
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
122
+ <li class="control">
123
+ <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>
124
+ <?php else:?>
125
+ <li class="no-display"><input type="hidden" name="shipping[save_in_address_book]" value="1" /></li>
126
+ <?php endif;?>
127
+ </ul>
128
+ </fieldset>
129
+ </li>
130
+ <li class="control">
131
+ <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>
132
+ </li>
133
+ </ul>
134
+ <div class="buttons-set" id="shipping-buttons-container">
135
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
136
+ <p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
137
+ <button type="button" class="button" title="<?php echo $this->__('Continue') ?>" onclick="shipping.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
138
+ <span id="shipping-please-wait" class="please-wait" style="display:none;">
139
+ <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...') ?>
140
+ </span>
141
+ </div>
142
+ </form>
143
+ <script type="text/javascript">
144
+ //<![CDATA[
145
+ var shipping = new Shipping('co-shipping-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveShipping') ?>',
146
+ '<?php echo $this->getUrl('checkout/onepage/shippingMethod') ?>');
147
+ var shippingForm = new VarienForm('co-shipping-form');
148
+ shippingForm.extraChildParams = ' onchange="shipping.setSameAsBilling(false);"';
149
+ //shippingForm.setElementsRelation('shipping:country_id', 'shipping:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
150
+ $('shipping-address-select') && shipping.newAddress(!$('shipping-address-select').value);
151
+
152
+ var shippingRegionUpdater = new RegionUpdater('shipping:country_id', 'shipping:region', 'shipping:region_id', countryRegions, undefined, 'shipping:postcode');
153
+ //]]>
154
+ </script>
app/design/frontend/default/car_store/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) 2010 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
+ <?php echo $this->getChildHtml('available') ?>
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/default/car_store/template/checkout/onepage/shipping_method/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) 2010 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->getQuote()->isVirtual()): ?>
28
+ <?php echo $this->helper('giftmessage/message')->getInline('onepage_checkout', $this->getQuote(), $this->getDontDisplayContainer()) ?>
29
+ <?php endif; ?>
app/design/frontend/default/car_store/template/checkout/onepage/shipping_method/available.phtml ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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 (!($_shippingRateGroups = $this->getShippingRates())): ?>
28
+ <p><?php echo $this->__('Sorry, no quotes are available for this order at this time.') ?></p>
29
+ <?php else: ?>
30
+ <dl class="sp-methods">
31
+ <?php $shippingMe = array(); ?>
32
+ <?php $_sole = count($_shippingRateGroups) == 1; foreach ($_shippingRateGroups as $code => $_rates): ?>
33
+ <dt><?php echo $this->getCarrierName($code) ?></dt>
34
+ <dd>
35
+ <ul>
36
+ <?php $_sole = $_sole && count($_rates) == 1; foreach ($_rates as $_rate): ?>
37
+ <?php $shippingMe[] = "'".$_rate->getCode()."':".(float)$_rate->getPrice(); ?>
38
+ <li>
39
+ <?php if ($_rate->getErrorMessage()): ?>
40
+ <ul class="messages"><li class="error-msg"><ul><li><?php echo $_rate->getErrorMessage() ?></li></ul></li></ul>
41
+ <?php else: ?>
42
+ <?php if ($_sole) : ?>
43
+ <span class="no-display"><input name="shipping_method" type="radio" value="<?php echo $_rate->getCode() ?>" id="s_method_<?php echo $_rate->getCode() ?>" checked="checked" /></span>
44
+ <?php else: ?>
45
+ <input name="shipping_method" type="radio" value="<?php echo $_rate->getCode() ?>" id="s_method_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio" onchange="return includingShipping('<?php echo $_rate->getCode();?>');"/>
46
+
47
+ <script type="text/javascript">
48
+ //<![CDATA[
49
+ <?php if ($_rate->getCode()===$this->getAddressShippingMethod()): ?>
50
+ lastPrice = <?php echo (float)$_rate->getPrice(); ?>;
51
+ <?php endif; ?>
52
+ //]]>
53
+ </script>
54
+
55
+ <?php endif; ?>
56
+ <label for="s_method_<?php echo $_rate->getCode() ?>"><?php echo $_rate->getMethodTitle() ?>
57
+ <?php $_excl = $this->getShippingPrice($_rate->getPrice(), $this->helper('tax')->displayShippingPriceIncludingTax()); ?>
58
+ <?php $_incl = $this->getShippingPrice($_rate->getPrice(), true); ?>
59
+ <?php echo $_excl; ?>
60
+ <?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
61
+ (<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
62
+ <?php endif; ?>
63
+ </label>
64
+ <?php endif ?>
65
+ </li>
66
+ <?php endforeach; ?>
67
+ </ul>
68
+ </dd>
69
+ <?php endforeach; ?>
70
+ </dl>
71
+ <script type="text/javascript">
72
+ //<![CDATA[
73
+ <?php if (!empty($shippingMe)): ?>
74
+ var shippingMe = {<?php echo implode(',',$shippingMe); ?>};
75
+ <?php endif; ?>
76
+
77
+ function includingShipping(getShippingCode)
78
+ {
79
+ <?php if (!empty($shippingMe)): ?>
80
+ var newPrice = shippingMe[getShippingCode];
81
+ if (!lastPrice) {
82
+ lastPrice = newPrice;
83
+ quoteBaseGrandTotal += newPrice;
84
+ }
85
+ if (newPrice != lastPrice) {
86
+ quoteBaseGrandTotal += (newPrice-lastPrice);
87
+ lastPrice = newPrice;
88
+
89
+ }
90
+ <?php endif; ?>
91
+ checkQuoteBaseGrandTotal = quoteBaseGrandTotal;
92
+ return false;
93
+ }
94
+ //]]>
95
+ </script>
96
+ <?php endif; ?>
app/design/frontend/default/car_store/template/directory/currency.phtml ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * Currency switcher
30
+ *
31
+ * @see Mage_Directory_Block_Currency
32
+ */
33
+ ?>
34
+ <?php if($this->getCurrencyCount()>1): ?>
35
+ <div class="block block-currency">
36
+ <div class="block-title">
37
+ <strong><span><?php echo $this->__('Select Your Currency') ?>:</span></strong>
38
+ </div>
39
+ <div class="block-content">
40
+ <select name="currency" title="<?php echo $this->__('Select Your Currency') ?>" onchange="setLocation(this.value)">
41
+ <?php foreach ($this->getCurrencies() as $_code => $_name): ?>
42
+ <option value="<?php echo $this->getSwitchCurrencyUrl($_code) ?>"<?php if($_code==$this->getCurrentCurrencyCode()): ?> selected="selected"<?php endif; ?>>
43
+ <?php echo $_name ?> - <?php echo $_code ?>
44
+ </option>
45
+ <?php endforeach; ?>
46
+ </select>
47
+ </div>
48
+ </div>
49
+ <?php endif; ?>
app/design/frontend/default/car_store/template/newsletter/subscribe.phtml ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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-subscribe">
28
+ <div class="block-title">
29
+ <div class="top-site">
30
+ <strong><span><?php echo $this->__('Newsletter') ?></span></strong>
31
+ </div>
32
+ </div>
33
+ <div class="sidebarblock-content">
34
+ <form action="<?php echo $this->getFormActionUrl() ?>" method="post" id="newsletter-validate-detail">
35
+ <div class="block-content">
36
+ <label for="newsletter"><?php echo $this->__('Sign Up for Our Newsletter:') ?></label>
37
+ <div class="input-box">
38
+ <input type="text" name="email" id="newsletter" title="<?php echo $this->__('Sign up for our newsletter') ?>" class="input-text required-entry validate-email" />
39
+ </div>
40
+ <div class="actions">
41
+ <button type="submit" title="<?php echo $this->__('Subscribe') ?>" class="button"><span><span><?php echo $this->__('Subscribe') ?></span></span></button>
42
+ </div>
43
+ </div>
44
+ </form>
45
+ <script type="text/javascript">
46
+ //<![CDATA[
47
+ var newsletterSubscriberFormDetail = new VarienForm('newsletter-validate-detail');
48
+ //]]>
49
+ </script>
50
+ </div>
51
+ <div class="bot-site">
52
+ <div class="right-corner">
53
+ <div class="stretched-layer"> </div>
54
+ </div>
55
+ </div>
56
+ </div>
app/design/frontend/default/car_store/template/page/2columns-left.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) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Template for Mage_Page_Block_Html
30
+ */
31
+ ?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
+ <head>
35
+ <?php echo $this->getChildHtml('head') ?>
36
+ </head>
37
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
+ <?php echo $this->getChildHtml('after_body_start') ?>
39
+ <div class="wrapper">
40
+ <?php echo $this->getChildHtml('global_notices') ?>
41
+ <div class="page">
42
+ <?php echo $this->getChildHtml('header') ?>
43
+ <div class="main-container col2-left-layout">
44
+ <div class="main">
45
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
46
+ <div class="col-main">
47
+ <?php echo $this->getChildHtml('global_messages') ?>
48
+ <?php echo $this->getChildHtml('content') ?>
49
+ </div>
50
+ <div class="col-left sidebar"><?php echo $this->getChildHtml('left') ?></div>
51
+ </div>
52
+ </div>
53
+ <?php echo $this->getChildHtml('footer') ?>
54
+ <?php echo $this->getChildHtml('before_body_end') ?>
55
+ </div>
56
+ </div>
57
+ <?php echo $this->getAbsoluteFooter() ?>
58
+ </body>
59
+ </html>
app/design/frontend/default/car_store/template/page/2columns-right.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) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Template for Mage_Page_Block_Html
30
+ */
31
+ ?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>">
34
+ <head>
35
+ <?php echo $this->getChildHtml('head') ?>
36
+ </head>
37
+ <body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
38
+ <?php echo $this->getChildHtml('after_body_start') ?>
39
+ <div class="wrapper">
40
+ <?php echo $this->getChildHtml('global_notices') ?>
41
+ <div class="page">
42
+ <?php echo $this->getChildHtml('header') ?>
43
+ <div class="main-container col2-right-layout">
44
+ <div class="main">
45
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
46
+ <div class="col-main">
47
+ <?php echo $this->getChildHtml('global_messages') ?>
48
+ <?php echo $this->getChildHtml('content') ?>
49
+ </div>
50
+ <div class="col-right sidebar"><?php echo $this->getChildHtml('right') ?></div>
51
+ </div>
52
+ </div>
53
+ <?php echo $this->getChildHtml('footer') ?>
54
+ <?php echo $this->getChildHtml('before_body_end') ?>
55
+ </div>
56
+ </div>
57
+ <?php echo $this->getAbsoluteFooter() ?>
58
+ </body>
59
+ </html>
app/design/frontend/default/car_store/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) 2010 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->htmlEscape($_crumbInfo['title']) ?>"><?php echo $this->htmlEscape($_crumbInfo['label']) ?></a>
34
+ <?php elseif($_crumbInfo['last']): ?>
35
+ <strong><?php echo $this->htmlEscape($_crumbInfo['label']) ?></strong>
36
+ <?php else: ?>
37
+ <?php echo $this->htmlEscape($_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/default/car_store/template/page/html/footer.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) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <div class="footer-container">
28
+ <div class="footer">
29
+ <?php echo $this->getChildHtml() ?>
30
+ <address><?php echo $this->getCopyright() ?></address>
31
+ </div>
32
+ </div>
app/design/frontend/default/car_store/template/page/html/header.phtml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ /**
27
+ * @var Mage_Page_Block_Html_Header $this
28
+ */
29
+ ?>
30
+ <div class="header-container">
31
+ <div class="header">
32
+ <div class="welcome-logo">
33
+ <p class="welcome-msg"><?php echo $this->getWelcome()?></p>
34
+ <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>
35
+ </div>
36
+ <div class="quick-access">
37
+ <?php echo $this->getChildHtml('topLinks') ?>
38
+ <div class="language-curreny">
39
+ <?php echo $this->getChildHtml('store_currency') ?>
40
+ <?php echo $this->getChildHtml('store_language') ?>
41
+ </div>
42
+ </div>
43
+ <?php echo $this->getChildHtml('topSearch') ?>
44
+ <?php echo $this->getChildHtml('topContainer'); ?>
45
+ <?php echo $this->getChildHtml('topMenu') ?>
46
+ </div>
47
+ </div>
48
+
app/design/frontend/default/car_store/template/page/html/pager.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) 2010 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
+ * Pager template
30
+ *
31
+ * @see Mage_Page_Block_Html_Pager
32
+ */
33
+ ?>
34
+ <?php if($this->getCollection()->getSize()): ?>
35
+
36
+ <?php if($this->getUseContainer()): ?>
37
+ <div class="pager">
38
+ <?php endif ?>
39
+
40
+ <?php if($this->getShowAmounts()): ?>
41
+ <p class="amount">
42
+ <?php if($this->getLastPageNum()>1): ?>
43
+ <?php echo $this->__('Items %s to %s of %s total', $this->getFirstNum(), $this->getLastNum(), $this->getTotalNum()) ?>
44
+ <?php else: ?>
45
+ <strong><?php echo $this->__('%s Item(s)', $this->getTotalNum()) ?></strong>
46
+ <?php endif; ?>
47
+ </p>
48
+ <?php endif ?>
49
+
50
+ <?php if($this->getShowPerPage()): ?>
51
+ <div class="limiter">
52
+ <label><?php echo $this->__('Show') ?></label>
53
+ <select onchange="setLocation(this.value)">
54
+ <?php foreach ($this->getAvailableLimit() as $_key=>$_limit): ?>
55
+ <option value="<?php echo $this->getLimitUrl($_key) ?>"<?php if($this->isLimitCurrent($_key)): ?> selected="selected"<?php endif ?>>
56
+ <?php echo $_limit ?>
57
+ </option>
58
+ <?php endforeach; ?>
59
+ </select> <?php echo $this->__('per page') ?>
60
+ </div>
61
+ <?php endif ?>
62
+
63
+ <?php if($this->getLastPageNum()>1): ?>
64
+ <div class="pages">
65
+ <strong><?php echo $this->__('Page:') ?></strong>
66
+ <ol>
67
+ <?php if (!$this->isFirstPage()): ?>
68
+ <li>
69
+ <a class="previous" href="<?php echo $this->getPreviousPageUrl() ?>" title="<?php echo $this->__('Previous') ?>">
70
+ <?php if(!$this->getAnchorTextForPrevious()): ?>
71
+ <img src="<?php echo $this->getSkinUrl('images/i_pager-prev.gif') ?>" alt="<?php echo $this->__('Previous') ?>" class="v-middle" />
72
+ <?php else: ?>
73
+ <?php echo $this->getAnchorTextForPrevious() ?>
74
+ <?php endif;?>
75
+ </a>
76
+ </li>
77
+ <?php endif;?>
78
+
79
+ <?php if ($this->canShowFirst()): ?>
80
+ <li><a class="first" href="<?php echo $this->getFirstPageUrl() ?>">1</a></li>
81
+ <?php endif;?>
82
+
83
+ <?php if ($this->canShowPreviousJump()): ?>
84
+ <li><a class="previous_jump" title="" href="<?php echo $this->getPreviousJumpUrl() ?>">...</a></li>
85
+ <?php endif;?>
86
+
87
+ <?php foreach ($this->getFramePages() as $_page): ?>
88
+ <?php if ($this->isPageCurrent($_page)): ?>
89
+ <li class="current"><?php echo $_page ?></li>
90
+ <?php else: ?>
91
+ <li><a href="<?php echo $this->getPageUrl($_page) ?>"><?php echo $_page ?></a></li>
92
+ <?php endif;?>
93
+ <?php endforeach;?>
94
+
95
+
96
+ <?php if ($this->canShowNextJump()): ?>
97
+ <li><a class="next_jump" title="" href="<?php echo $this->getNextJumpUrl() ?>">...</a></li>
98
+ <?php endif;?>
99
+
100
+ <?php if ($this->canShowLast()): ?>
101
+ <li><a class="last" href="<?php echo $this->getLastPageUrl() ?>"><?php echo $this->getLastPageNum() ?></a></li>
102
+ <?php endif;?>
103
+
104
+ <?php if (!$this->isLastPage()): ?>
105
+ <li>
106
+ <a class="next" href="<?php echo $this->getNextPageUrl() ?>" title="<?php echo $this->__('Next') ?>">
107
+ <?php if(!$this->getAnchorTextForNext()): ?>
108
+ <img src="<?php echo $this->getSkinUrl('images/i_pager-next.gif') ?>" alt="<?php echo $this->__('Next') ?>" class="v-middle" />
109
+ <?php else: ?>
110
+ <?php echo $this->getAnchorTextForNext() ?>
111
+ <?php endif;?>
112
+ </a>
113
+ </li>
114
+ <?php endif;?>
115
+ </ol>
116
+
117
+ </div>
118
+ <?php endif; ?>
119
+
120
+ <?php if($this->getUseContainer()): ?>
121
+ </div>
122
+ <?php endif ?>
123
+
124
+ <?php endif ?>
app/design/frontend/default/car_store/template/page/print.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) 2010 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 class="page-print<?php echo $this->getBodyClass()?$this->getBodyClass():'' ?>">
38
+ <div>
39
+ <div class="print-head">
40
+ <img src="<?php echo $this->getPrintLogoUrl() ? $this->getPrintLogoUrl() : $this->getSkinUrl('images/logo_print.gif') ?>" class="logo" alt="" />
41
+ <?php if ($this->getPrintLogoText()):?>
42
+ <address><?php echo nl2br($this->htmlEscape($this->getPrintLogoText())) ?></address>
43
+ <?php endif;?>
44
+ </div>
45
+ <?php echo $this->getChildHtml('content') ?>
46
+ <div class="buttons-set">
47
+ <button type="button" title="<?php echo $this->__('Close Window') ?>" class="button" onclick="window.close();"><span><span><?php echo $this->__('Close Window') ?></span></span></button>
48
+ </div>
49
+ <?php echo $this->getAbsoluteFooter() ?>
50
+ </div>
51
+ </body>
52
+ </html>
app/design/frontend/default/car_store/template/poll/active.phtml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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(isset($poll)) : ?>
28
+ <script type="text/javascript">
29
+ //<![CDATA[
30
+ function validatePollAnswerIsSelected()
31
+ {
32
+ var options = $$('input.poll_vote');
33
+ for( i in options ) {
34
+ if( options[i].checked == true ) {
35
+ return true;
36
+ }
37
+ }
38
+ return false;
39
+ }
40
+ //]]>
41
+ </script>
42
+ <div class="block block-poll">
43
+ <div class="block-title">
44
+ <div class="top-site">
45
+ <strong><span><?php echo $this->__('Community Poll') ?></span></strong>
46
+ </div>
47
+ </div>
48
+ <div class="sidebarblock-content">
49
+ <form id="pollForm" action="<?php echo $action ?>" method="post" onsubmit="return validatePollAnswerIsSelected();">
50
+ <div class="block-content">
51
+ <p class="block-subtitle"><?php echo $this->htmlEscape($poll->getPollTitle()); ?></p>
52
+ <?php if( $poll_answers ): ?>
53
+ <ul id="poll-answers">
54
+ <?php foreach( $poll_answers as $answer ): ?>
55
+ <li>
56
+ <input type="radio" name="vote" class="radio poll_vote" id="vote_<?php echo $answer->getId() ?>" value="<?php echo $answer->getAnswerId() ?>" />
57
+ <span class="label"><label for="vote_<?php echo $answer->getId() ?>"><?php echo $this->htmlEscape($answer->getAnswerTitle()) ?></label></span>
58
+ </li>
59
+ <?php endforeach; ?>
60
+ </ul>
61
+ <script type="text/javascript">decorateList('poll-answers');</script>
62
+ <?php endif; ?>
63
+ <div class="actions">
64
+ <button type="submit" title="<?php echo $this->__('Vote') ?>" class="button"><span><span><?php echo $this->__('Vote') ?></span></span></button>
65
+ </div>
66
+ </div>
67
+ </form>
68
+ </div>
69
+ <div class="bot-site">
70
+ <div class="right-corner">
71
+ <div class="stretched-layer"> </div>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ <?php endif; ?>
app/design/frontend/default/car_store/template/poll/result.phtml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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(isset($poll)) : ?>
28
+ <div class="block block-poll">
29
+ <div class="block-title">
30
+ <strong><span><?php echo $this->__('Community Poll') ?></span></strong>
31
+ </div>
32
+ <div class="block-content">
33
+ <p class="block-subtitle"><?php echo $this->htmlEscape($poll->getPollTitle()); ?></p>
34
+ <?php if( $poll_answers ): ?>
35
+ <ol id="poll-answers">
36
+ <?php foreach( $poll_answers as $answer ): ?>
37
+ <li>
38
+ <span class="votes"><?php echo $answer->getVotesCount() ?> (<?php echo $answer->getPercent() ?>%)</span>
39
+ <span class="answer"><?php echo $this->htmlEscape($answer->getAnswerTitle()) ?>:</span>
40
+ </li>
41
+ <?php endforeach; ?>
42
+ </ol>
43
+ <script type="text/javascript">decorateList('poll-answers');</script>
44
+ <?php endif; ?>
45
+ </div>
46
+ </div>
47
+ <?php endif; ?>
app/design/frontend/default/car_store/template/reports/product_viewed.phtml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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_Reports_Block_Product_Viewed */
27
+ ?>
28
+ <?php if ($_products = $this->getRecentlyViewedProducts()): ?>
29
+ <div class="block block-viewed">
30
+ <div class="block-title">
31
+ <div class="top-site">
32
+ <strong><span><?php echo $this->__('Recently Viewed') ?></span></strong>
33
+ </div>
34
+ </div>
35
+ <div class="sidebarblock-content">
36
+ <div class="block-content">
37
+ <ol id="recently-viewed-items">
38
+ <?php foreach ($_products as $_item): ?>
39
+ <li class="item">
40
+ <p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName() , 'name') ?></a></p>
41
+ </li>
42
+ <?php endforeach; ?>
43
+ </ol>
44
+ <script type="text/javascript">decorateList('recently-viewed-items');</script>
45
+ </div>
46
+ </div>
47
+ </div class="bot-site">
48
+ <div class="right-corner">
49
+ <div class="stretched-layer"> </div>
50
+ </div>
51
+ </div>
52
+ </div>
53
+ <?php endif; ?>
app/design/frontend/default/car_store/template/sales/reorder/sidebar.phtml ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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
+ * Last order sidebar
30
+ *
31
+ * @see Mage_Sale_Block_Reorder_Sidebar
32
+ */
33
+ ?>
34
+ <?php $_items = $this->getItems()?>
35
+ <?php if($_items): ?>
36
+ <div class="block block-reorder">
37
+ <div class="block-title">
38
+ <div class="top-site">
39
+ <strong><span><?php echo $this->__('My Orders') ?></span></strong>
40
+ </div>
41
+ </div>
42
+ <div class="sidebarblock-content">
43
+ <form method="post" action="<?php echo $this->getFormActionUrl() ?>" id="reorder-validate-detail">
44
+ <div class="block-content">
45
+ <p class="block-subtitle"><?php echo $this->__('Last Ordered Items') ?></p>
46
+ <ol id="cart-sidebar-reorder">
47
+ <?php $_showAddButtonFlag = false ?>
48
+ <?php foreach ($_items as $_item): ?>
49
+ <li class="item">
50
+ <?php if ($this->isItemAvailableForReorder($_item)): ?>
51
+ <?php $_showAddButtonFlag = true ?>
52
+ <input type="checkbox" name="order_items[]" id="reorder-item-<?php echo $_item->getId() ?>" value="<?php echo $_item->getId() ?>" title="<?php echo $this->__('Add to Cart') ?>" class="checkbox validate-one-required-by-name" />
53
+ <script type="text/javascript">
54
+ //<![CDATA[
55
+ $('reorder-item-<?php echo $_item->getId() ?>').advaiceContainer = 'cart-sidebar-reorder-advice-container';
56
+ //]]>
57
+ </script>
58
+ <?php endif; ?>
59
+ <p class="product-name"><a href="<?php echo $_item->getProduct()->getProductUrl() ?>"><?php echo $this->htmlEscape($_item->getName()) ?></a></p>
60
+ </li>
61
+ <?php endforeach; ?>
62
+ </ol>
63
+ <script type="text/javascript">decorateList('cart-sidebar-reorder')</script>
64
+ <div id="cart-sidebar-reorder-advice-container"></div>
65
+ <div class="actions">
66
+ <?php if ($_showAddButtonFlag): ?>
67
+ <button type="submit" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
68
+ <?php endif; ?>
69
+ <a href="<?php echo $this->getUrl('customer/account') ?>"><?php echo $this->__('View All'); ?></a>
70
+ </div>
71
+ </div>
72
+ </form>
73
+ </div>
74
+ <div class="bot-site">
75
+ <div class="right-corner">
76
+ <div class="stretched-layer"> </div>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ <?php echo $this->getPagerHtml(); ?>
81
+ <script type="text/javascript">
82
+ //<![CDATA[
83
+ var reorderFormDetail = new VarienForm('reorder-validate-detail');
84
+ //]]>
85
+ </script>
86
+ <?php endif ?>
app/design/frontend/default/car_store/template/tag/cloud.phtml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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->__('All Tags') ?></h1>
29
+ </div>
30
+ <?php if( sizeof($this->getTags()) > 0 ): ?>
31
+ <ul class="tags-list">
32
+ <?php foreach ($this->getTags() as $_tag): ?>
33
+ <li><a href="<?php echo $_tag->getTaggedProductsUrl() ?>" style="font-size:<?php echo $_tag->getRatio()*70+75 ?>%;"><?php echo $this->htmlEscape($_tag->getName()) ?></a></li>
34
+ <?php endforeach; ?>
35
+ </ul>
36
+ <?php else: ?>
37
+ <p class="note-msg"><?php echo $this->__('There are no tags available.') ?></p>
38
+ <?php endif; ?>
app/design/frontend/default/car_store/template/tag/customer/recent.phtml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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="box-account box-tags">
28
+ <div class="box-head">
29
+ <h2><?php echo $this->__('My Recent Tags') ?></h2>
30
+ <a href="<?php echo $this->getAllTagsUrl() ?>"><?php echo $this->__('View All Tags') ?></a>
31
+ </div>
32
+ <ol id="my_recent_tags">
33
+ <?php $iterator = 0; ?>
34
+ <?php foreach( $this->getCollection()->getItems() as $_item ): ?>
35
+ <li class="item">
36
+ <span class="number"><?php echo ++$iterator ?></span>
37
+ <div class="details">
38
+ <h3 class="product-name"><a href="<?php echo $_item->getProductUrl() ?>"><?php echo $this->htmlEscape($_item->getName()) ?></a></h3>
39
+ <div class="tags">
40
+ <strong><?php echo $this->__('Tags:') ?></strong>
41
+ <?php $_i = 0; ?>
42
+ <ul>
43
+ <?php foreach( $_item->getProductTags() as $_tag ): ?>
44
+ <li><a href="<?php echo $_tag->getViewTagUrl() ?>"><?php echo $this->htmlEscape($_tag->getName()) ?></a><?php if(++$_i != sizeof($_item->getProductTags()->getItems())): ?>,<?php endif; ?></li>
45
+ <?php endforeach; ?>
46
+ </ul>
47
+ </div>
48
+ </div>
49
+ </li>
50
+ <?php endforeach; ?>
51
+ </ol>
52
+ <script type="text/javascript">decorateList('my_recent_tags', 'none-recursive');</script>
53
+ </div>
app/design/frontend/default/car_store/template/tag/customer/tags.phtml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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 echo $this->getMessagesBlock()->getGroupedHtml() ?>
28
+ <div class="page-title">
29
+ <h1><?php echo $this->__('My Tags') ?></h1>
30
+ </div>
31
+ <?php if($this->getTags()): ?>
32
+ <p><?php echo $this->__('Click on a tag to view your corresponding products.') ?></p>
33
+ <ul class="tags-list">
34
+ <?php foreach ($this->getTags() as $_tag): ?>
35
+ <li><a href="<?php echo $this->getUrl('tag/customer/view', array('tagId' => $_tag->getTagId())) ?>" style="font-size:<?php echo $_tag->getRatio()*70+75 ?>%;"><?php echo $this->htmlEscape($_tag->getName()) ?></a></li>
36
+ <?php endforeach; ?>
37
+ </ul>
38
+ <?php else: ?>
39
+ <p><?php echo $this->__('You have not tagged any products yet.') ?></p>
40
+ <?php endif; ?>
41
+ <div class="buttons-set">
42
+ <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
43
+ </div>
app/design/frontend/default/car_store/template/tag/customer/view.phtml ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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->__('My Tags') ?></h1>
29
+ </div>
30
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
31
+ <p class="my-tag-edit">
32
+ <a href="#" title="<?php echo $this->__('Delete') ?>" onclick="if(confirm('<?php echo $this->__('Are you sure you want to delete this tag?') ?>')) window.location='<?php echo $this->getTagInfo()->getRemoveTagUrl(); ?>'; return false;" class="btn-remove"><?php echo $this->__('Delete') ?></a>
33
+ <?php echo $this->__('<strong>Tag Name:</strong> %s', $this->htmlEscape($this->getTagInfo()->getName())) ?>
34
+ </p>
35
+ <div class="clearer"></div>
36
+ <?php echo $this->getToolbarHtml() ?>
37
+ <table class="data-table" id="my-tags-table">
38
+ <?php if( sizeof($this->getMyProducts()) > 0 ): ?>
39
+ <col width="1" />
40
+ <col />
41
+ <col width="1" />
42
+ <tbody>
43
+ <?php $iterator = 0 ?>
44
+ <?php foreach($this->getMyProducts() as $_product): ?>
45
+ <tr<?php if($iterator % 2 == 0): ?> class="odd"<?php $iterator++;endif; ?>>
46
+ <td><a href="<?php echo $_product->getProductUrl(); ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(100, 100); ?>" width="100" height="100" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" /></a></td>
47
+ <td>
48
+ <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h2>
49
+ <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
50
+ <?php echo $this->getPriceHtml($_product) ?>
51
+ <?php echo $this->htmlEscape($_product->getDescription()) ?>
52
+ </td>
53
+ <td>
54
+ <?php if($_product->isSaleable()): ?>
55
+ <button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getUrl('checkout/cart/add',array('product'=>$_product->getId())) ?>')"><span><span><?php echo $this->__('Add to Cart') ?></span></span></button>
56
+ <?php endif; ?>
57
+ <?php if ($this->helper('wishlist')->isAllow()) : ?>
58
+ <ul class="add-to-links">
59
+ <li>
60
+ <a href="<?php echo $this->getUrl('wishlist/index/add',array('product'=>$_product->getId())) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a>
61
+ </li>
62
+ </ul>
63
+ <?php endif; ?>
64
+ </td>
65
+ </tr>
66
+ <?php endforeach; ?>
67
+ </tbody>
68
+ <?php else: ?>
69
+ <tbody>
70
+ <tr>
71
+ <td>
72
+ <?php echo $this->__("Unable to find any products tagged with '%s' in the current store", $this->htmlEscape($this->getTagInfo()->getName()) ) ?>
73
+ </td>
74
+ </tr>
75
+ </tbody>
76
+ <?php endif; ?>
77
+ </table>
78
+ <script type="text/javascript">decorateTable('my-tags-table')</script>
79
+ <?php echo $this->getToolbarHtml() ?>
80
+ <div class="buttons-set">
81
+ <p class="back-link"><a href="<?php echo $this->getUrl('*/*/')?>"><small>&laquo; </small><?php echo $this->__('Back to Tags List')?></a></p>
82
+ </div>
app/design/frontend/default/car_store/template/tag/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) 2010 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="box-collateral box-tags">
28
+ <h2><?php echo $this->__('Product Tags') ?></h2>
29
+ <?php echo $this->getChildHtml('list_before')?>
30
+ <?php if( $this->getCount() ): ?>
31
+ <h3><?php echo $this->__('Other people marked this product with these tags:') ?></h3>
32
+ <ul id="<?php echo $this->getUniqueHtmlId('product-tags_'); ?>" class="product-tags">
33
+ <?php echo $this->renderTags('<li><a href="%1$s">%2$s</a> (%3$s)</li>') ?>
34
+ </ul>
35
+ <script type="text/javascript">
36
+ decorateGeneric($("<?php echo $this->getUniqueHtmlId('product-tags_'); ?>").select('li'), ['first', 'last']);
37
+ </script>
38
+ <?php endif; ?>
39
+ <form id="addTagForm" action="<?php echo $this->getFormAction(); ?>" method="get">
40
+ <div class="form-add">
41
+ <label for="productTagName"><?php echo $this->__('Add Your Tags:') ?></label>
42
+ <div class="input-box">
43
+ <input type="text" class="input-text required-entry" name="productTagName" id="productTagName" />
44
+ </div>
45
+ <button type="button" title="<?php echo $this->__('Add Tags') ?>" class="button" onclick="submitTagForm()">
46
+ <span>
47
+ <span><?php echo $this->__('Add Tags') ?></span>
48
+ </span>
49
+ </button>
50
+ </div>
51
+ </form>
52
+ <p class="note"><?php echo $this->__("Use spaces to separate tags. Use single quotes (') for phrases.") ?></p>
53
+ <script type="text/javascript">
54
+ //<![CDATA[
55
+ var addTagFormJs = new VarienForm('addTagForm');
56
+ function submitTagForm(){
57
+ if(addTagFormJs.validator.validate()) {
58
+ addTagFormJs.form.submit();
59
+ }
60
+ }
61
+ //]]>
62
+ </script>
63
+ </div>
app/design/frontend/default/car_store/template/tag/popular.phtml ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@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) 2010 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-tags">
28
+ <div class="block-title">
29
+ <div class="top-site">
30
+ <strong><span><?php echo $this->__('Popular Tags'); ?></span></strong>
31
+ </div>
32
+ </div>
33
+ <div class="sidebarblock-content">
34
+ <div class="block-content">
35
+ <ul>
36
+ <?php foreach ($this->getTags() as $_tag): ?>
37
+ <li><a href="<?php echo $_tag->getTaggedProductsUrl() ?>" style="font-size:<?php echo $_tag->getRatio()*70+75 ?>%;"><?php echo $this->htmlEscape($_tag->getName()) ?></a></li>
38
+ <?php endforeach; ?>
39
+ </ul>
40
+ <div class="actions">
41
+ <a href="<?php echo $this->getUrl('tag/list') ?>"><?php echo $this->__('View All Tags') ?></a>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ <div class="bot-site">
46
+ <div class="right-corner">
47
+ <div class="stretched-layer"> </div>
48
+ </div>
49
+ </div>
50
+ </div>
installation_guide/Magebuzz Car Store Template Installation Guide.pdf ADDED
Binary file
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>car_parts_store_template</name>
4
+ <version>0.1.0</version>
5
+ <stability>stable</stability>
6
+ <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Car Parts Store Template</summary>
10
+ <description>Car Parts Store Template</description>
11
+ <notes>Car Parts Store Template</notes>
12
+ <authors><author><name>Magebuzz</name><user>magebuzz</user><email>magebuzz@gmail.com</email></author></authors>
13
+ <date>2012-08-25</date>
14
+ <time>08:49:42</time>
15
+ <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="car_store"><dir name="layout"><file name="catalog.xml" hash="cfff89e55d6194ed5d698a5bfbecc100"/><file name="catalogsearch.xml" hash="4c52964c8ac841f457bac0fd7a317de7"/><file name="checkout.xml" hash="8260fcae554ec3bff5e23f0efaa3ebf5"/><file name="customer.xml" hash="1dd49ee22c10a4e91eb9b66425555cf0"/><file name="directory.xml" hash="4023929b5daa13f67b0c2d1e8f7c3059"/><file name="newsletter.xml" hash="54523b6a6398a8029a396630f0b1ab0d"/><file name="page.xml" hash="52e57a980f2a578d90f8a6b7104b927d"/><file name="poll.xml" hash="8613c74fdc62610f63cfd53c4d272145"/><file name="tag.xml" hash="b63a1f4782089dcd9b9297e58fc31f52"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="page.phtml" hash="459dc32a2f72bc4c3e256c9b1ec105e7"/><file name="view.phtml" hash="515dee4e2300d1486906cfb2cb58d421"/></dir><dir name="layer"><file name="state.phtml" hash="70747730f5a911419b6f13d299f6d710"/><file name="view.phtml" hash="4ad376079fb5ac831ce046ce52446722"/></dir><dir name="navigation"><file name="left.phtml" hash="4b36d10d83b0fdd32ac22bf7f8c9420c"/><file name="top.phtml" hash="fbed2ecb7e6fe996478271bb22c076d6"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="2184882e2e06dec8457455c054d2dfc6"/><file name="sidebar.phtml" hash="ef5f60b072ba62f6b87c45fc6922330e"/></dir><dir name="list"><file name="toolbar.phtml" hash="5868fe10c620dd4648adbc59b48fdbf3"/><file name="upsell.phtml" hash="ddc1c6c66cc020751411ba6ca6c03aa1"/></dir><file name="list.phtml" hash="4b9bf0b0c367764ee5d8435cdd5c8bee"/><file name="new.phtml" hash="f62346183c73efb00ce6aa460b19c3af"/><file name="price.phtml" hash="ea37eb4128e0e97bff5a7b44b9ad1429"/><dir name="view"><file name="media.phtml" hash="121f2e167b5362eae69f0f948700f356"/><dir name="options"><dir name="wrapper"><file name="bottom.phtml" hash="57ab510ee102bf9480164a5b042eabfb"/></dir><file name="wrapper.phtml" hash="36c43af32544e878e495ff19b4f4e36d"/></dir></dir><file name="view.phtml" hash="532366c1c79fa88b58d50dd5b67413f2"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="f57cff992f2ae8952cafc7983f91ac6b"/><file name="result.phtml" hash="03e199eda8913c5de11bad64c3cb7d28"/></dir><file name="form.mini.phtml" hash="1088949f5a40c1cd1d425ceb23cb9562"/><file name="result.phtml" hash="ac7ce473496ae569b03cd053c2c9e99d"/><file name="term.phtml" hash="53578b74dbdba2cc4ab53e7613ab74d0"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="09eda91298bd30765804ad5e6b08fb80"/><file name="crosssell.phtml" hash="8af650f0c816ac09b2f526bc069ef7e2"/><dir name="item"><file name="default.phtml" hash="d6de561bb13712d0090ea401568d37f6"/></dir><file name="sidebar.phtml" hash="7c5022dc4f8a280985fbeb881e5cc14d"/></dir><file name="cart.phtml" hash="8fa96d99639a6ca5e77c7804d86550f1"/><dir name="onepage"><file name="agreements.phtml" hash="27d773a74d4429aead5fc91d665155d1"/><file name="billing.phtml" hash="02f0c82112ba19f0f8511a3d543c87dc"/><file name="failure.phtml" hash="30b563a2dc54e1d1220433508f195f16"/><file name="link.phtml" hash="ad2b86530c743b457f837de82462c2c7"/><file name="login.phtml" hash="737ba9ec27505b12fd526f752c6cc443"/><dir name="payment"><file name="methods.phtml" hash="22cf8391c13865b007dc33fb89f1a0dc"/></dir><file name="payment.phtml" hash="fdd375638c38b233ad9f340a20220825"/><file name="progress.phtml" hash="b297d77043980d430db9faeb225cb975"/><dir name="review"><file name="button.phtml" hash="82f48790eaa4d07395cb4b0e1db44b95"/><file name="info.phtml" hash="d8351ec0c1e9b8b39cb7d62d8c43e0af"/><file name="item.phtml" hash="7c4fd54fb91b0c65baf4f27c99413394"/><file name="totals.phtml" hash="ab5ae9a5d6d9936c1d87a64908482c36"/></dir><file name="review.phtml" hash="3ef2cb42a00e9458fc43b005840d85d4"/><file name="shipping.phtml" hash="7c639b573df60abd4840f66d11ca4cd6"/><dir name="shipping_method"><file name="additional.phtml" hash="16415fda2562d00468703d2c02146cce"/><file name="available.phtml" hash="ffe98ccd33f7cc8e4f86a7c080e47892"/></dir><file name="shipping_method.phtml" hash="5412f35c33b955e2f6041bcb789b4268"/></dir></dir><dir name="directory"><file name="currency.phtml" hash="5c7fc2cd0d01cf44a90a59caf2a37de5"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="09c818b0aa0c5fd557ebc691594e2fd3"/></dir><dir name="page"><file name="2columns-left.phtml" hash="509e6dc4a4216a6fb7276128cc37156a"/><file name="2columns-right.phtml" hash="1992bd6aa0c74035cd5f757f78fb8d9d"/><dir name="html"><file name="breadcrumbs.phtml" hash="685469f9a2081a9b7909f346fac22962"/><file name="footer.phtml" hash="df7bbe68214dcd0fc5699d87a63253c4"/><file name="header.phtml" hash="6abc77aeeacdc7499b1078b32ffab909"/><file name="pager.phtml" hash="29ddac1c3a0e9407844e00bfdd95ea9c"/></dir><file name="print.phtml" hash="e7f12953e63e0bd303296419e5576fe4"/></dir><dir name="poll"><file name="active.phtml" hash="ece0fb7289913cdf49bb2450e240639a"/><file name="result.phtml" hash="ac63c105a6af2ffa2742a3476cad818e"/></dir><dir name="reports"><file name="product_viewed.phtml" hash="f3600f1b50e612c2fa90b7313f1a4445"/></dir><dir name="sales"><dir name="reorder"><file name="sidebar.phtml" hash="63d60c2f9031e8c51f0bb3f8a0565666"/></dir></dir><dir name="tag"><file name="cloud.phtml" hash="cca2ca73af05a06ab07fa44e51693837"/><dir name="customer"><file name="recent.phtml" hash="3ba4a010b9d2e18ab30f43a0b83ccf8f"/><file name="tags.phtml" hash="983e645203ddd887e5dd997e9f39a476"/><file name="view.phtml" hash="01c0d1b7f40a8a784060ccd2e09b060e"/></dir><file name="list.phtml" hash="fcb18cee63ce68746f39ed9c2ef37fcb"/><file name="popular.phtml" hash="7d6620ab4f9ce198e8ac5f634f6df34a"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="car_store"><dir name="css"><file name="home-banner.css" hash="e857ee8fb6f9eee456978098f3511093"/><file name="print.css" hash="8fb2acea15ecc5730319fc4b9f45336b"/><file name="styles-ie.css" hash="bc675684a6206ec1f268848ed1f47b48"/><file name="styles.css" hash="33abdf15e576ebd90455ba173ad865c5"/></dir><dir name="images"><file name="adv1.png" hash="898a7bd8788646d46aa623f031cba761"/><file name="adv2.png" hash="1535094aefe91bebfc12debf792afd5d"/><file name="adv3.png" hash="6b87301accde725a32204c82a2616433"/><file name="banner.png" hash="190b004b04febbbc2ae98f052355285a"/><file name="banner2.png" hash="3f4be47398395bc174967acb0051d411"/><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-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_bot-site-block-left.png" hash="35f6996da1fe456bf4dd689640973314"/><file name="bkg_bot-site-category.png" hash="cb654af6f1b6f9ec72c8285bc30da77b"/><file name="bkg_bot-site.png" hash="ad5171980bfb51e45ca42c0d81ad41ed"/><file name="bkg_button-hover.png" hash="d2030a33320b723b3ccd924c92289ecd"/><file name="bkg_button-search.png" hash="a93c37e3f45175bf317d0abb648a7ee4"/><file name="bkg_button.png" hash="f6c82a69fade93092b6c49b8482f309c"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_cart-nav.png" hash="c735ca528d1a907dc4fb021164a66795"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_form-search.png" hash="814e02402a5661883f7d2090f1f6c5ef"/><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_header.png" hash="74f280391f1aa1a473ea2c7a037a477b"/><file name="bkg_hover-first-navigation.png" hash="4f03da3201d8b95601b5d0ad65355f8e"/><file name="bkg_img-product-view.png" hash="ca93a572c0d81f5f565c062029e8b8a3"/><file name="bkg_img-product.png" hash="40e111cd9ed3e9f5435dcdf03d247e81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main.png" hash="20068e875b17f13a01de566bbe06f76f"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav.png" hash="7dca24d88e0eae6e2a66e4b78680ca2d"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_nav2.png" hash="5190ee21f3c4b9a15aa0d87115833080"/><file name="bkg_navigation.png" hash="d754879ef927429dbf15751d8063c1b1"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sepa-nav.png" hash="587b72b392f63721d760f8ea878b788e"/><file name="bkg_sidebarblock-content-category.png" hash="f2d1dd81eb15cb8ede8e3e8c25a9d40a"/><file name="bkg_sidebarblock-content-left.png" hash="c4289208638e301f92371a979acdd4f2"/><file name="bkg_sidebarblock-content.png" hash="17bcd55ef52741ad2b0397142ce1b1ea"/><file name="bkg_sorter-toolbar.png" hash="892d2f4c4603a6986a787d4e7a77a6cb"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_sub-hover.png" hash="b72532fbdbcbef88e3f9e4669b5ec5f1"/><file name="bkg_sub.png" hash="99919ab596a166c5c82c93555e074262"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_title-newproduct.png" hash="080b8a2ec0f936d18a801515edf7d0ec"/><file name="bkg_title.png" hash="eb621e2a6e3156fe7c1918b82163b01a"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="bkg_top-site-block-left.png" hash="22f84a6cfbef46b575c139a085197b43"/><file name="bkg_top-site-category.png" hash="185380c9b567e3de479d63e134a32783"/><file name="bkg_top-site.png" hash="60b21f6622b03e567118246a5e295564"/><file name="btn-active-slider.png" hash="23f8ef587a5dc9edd0c65104d38e4dd5"/><file name="btn-no-active-slider.png" hash="bd57d4da2d750557d4c949261a7160b9"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="e07170d6e8b9b41166db54344b8627ed"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="featured1.png" hash="3316a77910cd385efc569a8d84808148"/><file name="featured2.png" hash="9a7065cb7a723b9fe4a434db421f3382"/><file name="featured3.png" hash="73e047c3b76fd9ac1855dd36a0734661"/><file name="featured4.png" hash="80b038b2a87b2d3255ce395c79a5acb9"/><file name="featured5.png" hash="dd9f9a273bb421932235bd5fdcae29e3"/><file name="featured6.png" hash="17369dcda26cf8be0e0779b2699f20d0"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><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="6167a2cc1760b4fd8fa008ccdb21730d"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="a119ac48a7ae7e7d7e7ee61f311f8c2e"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><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="e449419077f4dcb51e455fd19e12b217"/><file name="i_pager-prev.gif" hash="7b12015c77210aa90d1a05e811e05aa2"/><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="logo.gif" hash="5499bffcd15cdc2f6741b231079bf4dc"/><file name="logo.png" hash="b30eba4cad17fe992490930912965975"/><file name="logo_email.gif" hash="5499bffcd15cdc2f6741b231079bf4dc"/><file name="logo_print.gif" hash="5499bffcd15cdc2f6741b231079bf4dc"/><file name="magnifier_handle.gif" hash="02e33fa195128f5a32944fbbd8b5aba4"/><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_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="slider_bg.gif" hash="42170d3724c9f9fa706ac2924199d7bc"/><file name="slider_btn_zoom_in.gif" hash="551a63d57bbd4e52afe0d6886185e3f7"/><file name="slider_btn_zoom_out.gif" hash="e36488e49d60381aadf36016b5652e69"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/></dir><dir name="js"><file name="coin-slider.js" hash="13a5d899e443f5a59bbebc532a28926f"/><file name="jquery-1.4.2.min.js" hash="223e1978ec4920a72140c1b0ea680dc3"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="installation_guide"><file name="Magebuzz Car Store Template Installation Guide.pdf" hash="a9577b5d228379409338167556bd92ca"/></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/default/car_store/css/home-banner.css ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .coin-slider { overflow: hidden; zoom: 1; position: relative;margin:0 0 25px; }
2
+ #home-slider{width:998px;float:left;text-align:left;margin-bottom:10px;}
3
+ .coin-slider .img { }
4
+ .coin-slider a{ text-decoration: none; outline: none; border: none; }
5
+ .cs-buttons {float: right; position: absolute; bottom: 30px; right: 50px;}
6
+ .cs-buttons a { margin-left: 10px;float: left;background: url(../images/btn-no-active-slider.png) no-repeat left top; color: #B8C4CF; text-indent: -1000px;height: 13px; width: 13px;}
7
+ .cs-active { background: url(../images/btn-active-slider.png) no-repeat left top !important; color: #FFFFFF; height: 13px; width: 13px; text-indent:-999; }
8
+ .cs-title { padding: 10px; background: #000000; color: #FFFFFF;}
9
+ /* #cs-navigation-home-slider a.cs-prev{width:33px; height:27px; background: url(../images/btn-back-hover.png) top left no-repeat; cursor:pointer;top: 350px !important;right:44px !important;left: auto !important;}
10
+ #cs-navigation-home-slider a.cs-prev:hover{width:33px; height:27px; background: url(../images/btn-back.png) top left no-repeat; cursor:pointer;}
11
+ #cs-navigation-home-slider a.cs-prev span{display:none;}
12
+ #cs-navigation-home-slider a.cs-next{width:33px; height:27px; background: url(../images/btn-next-hover.png) top left no-repeat; cursor:pointer;top: 350px !important;right:8px !important;}
13
+ #cs-navigation-home-slider a.cs-next:hover{width:33px; height:27px; background: url(../images/btn-next.png) top left no-repeat; cursor:pointer;}
14
+ #cs-navigation-home-slider a.cs-next span{display:none;} */
skin/frontend/default/car_store/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) 2010 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/default/car_store/css/styles-ie.css ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+
38
+ /* Doubled Margin Fixes */
39
+ .product-view .product-img-box .more-views li,
40
+ .product-view .box-tags .form-add .input-box,
41
+ .sp-methods select.month { display:inline; }
42
+
43
+ /********** < Navigation styles */
44
+ #nav li,
45
+ #nav li a { zoom:1; }
46
+ #nav li { vertical-align:top; }
47
+ /********** < Navigation styles */
48
+
49
+ select { margin-bottom:1px; }
50
+ input.radio { width:13px; height:13px; }
51
+ input.checkbox { width:13px; height:13px; }
52
+ button.button { height:21px; }
53
+ button.button span { position:relative; }
54
+ button.btn-checkout { height:40px; }
55
+ .form-list label { position:relative; z-index:0; }
56
+ .form-list label.required em { position:absolute; top:0; right:-8px; }
57
+
58
+ table { face-color:expression(runtimeStyle.scrollbarFaceColor = '#fff', cellSpacing = 0); }
59
+
60
+ .product-view .product-img-box .zoom.disabled { filter:alpha(opacity=30); }
61
+
62
+ .gift-messages-form { position:relative; zoom:1; }
63
+
64
+ .tool-tip .btn-close a { margin:0; }
65
+
66
+ .product-view .box-tags .product-tags li,
67
+ .footer li { padding:0 7px 0 0; }
68
+
69
+ .product-options dd .time-picker select { margin:0; padding:0; }
70
+
71
+ /* Clearer */
72
+ .clearer { display:block; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
73
+
74
+ /* Clears and hasLayout fixes */
75
+ .header-container,
76
+ .header-container .top-container,
77
+ .header,
78
+ .header .quick-access,
79
+ #nav,
80
+ .main,
81
+ .footer,
82
+ .footer-container .bottom-container,
83
+ .col-main,
84
+ .col2-set,
85
+ .col3-set,
86
+ .col3-layout .product-options-bottom .price-box,
87
+ .col4-set,
88
+ .messages li,
89
+ .search-autocomplete li,
90
+ .block,
91
+ .block .block-content,
92
+ .block .actions,
93
+ .block li.item,
94
+ .block-poll li,
95
+ .block-poll .label,
96
+ .block-layered-nav .currently li,
97
+ .block-account .block-content li a,
98
+ .mini-products-list .product-details,
99
+ .page-title,
100
+ .rss-title h1,
101
+ .products-grid,
102
+ .products-list li.item,
103
+ .box-account .box-head,
104
+ .dashboard .box .box-title,
105
+ .box-reviews li.item,
106
+ .box-tags li.item,
107
+ .pager,
108
+ .sorter,
109
+ .ratings,
110
+ .add-to-box,
111
+ .add-to-cart,
112
+ .product-essential,
113
+ .product-collateral,
114
+ .product-view .product-img-box .more-views ul,
115
+ .product-view .box-tags .form-add,
116
+ .product-options .options-list li,
117
+ .product-options-bottom,
118
+ .truncated,
119
+ .truncated .truncated_full_value,
120
+ .product-review,
121
+ .cart,
122
+ .cart-collaterals,
123
+ .cart .crosssell li.item,
124
+ .cart .discount,
125
+ .opc .step-title,
126
+ .opc .step,
127
+ .multiple-checkout,
128
+ .sp-methods,
129
+ .checkout-progress,
130
+ .multiple-checkout .place-order,
131
+ .form-list li,
132
+ .form-list .field,
133
+ .group-select li,
134
+ .buttons-set,
135
+ .page-print .print-head,
136
+ .cart-tax-total,
137
+ .advanced-search-summary,
138
+ .advanced-search-summary p,
139
+ .gift-messages-form .item,
140
+ .send-friend .form-list li p,
141
+ .centinel .authentication { zoom:1; }
142
+
143
+ /* Hover Fix */
144
+ 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/default/car_store/css/styles.css ADDED
@@ -0,0 +1,2267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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:#ffffff; 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:#464646; 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:#fd9000; }
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; color:#464646; font-weight: normal;}
78
+ .a-right strong { text-align:right !important; color:#464646; font-weight: normal;}
79
+ .v-top { vertical-align:top; }
80
+ .v-middle { vertical-align:middle; }
81
+ .f-left,
82
+ .left { float:left !important; }
83
+ .f-right,
84
+ .right { float:right !important; }
85
+ .f-none { float:none !important; }
86
+ .f-fix { float:left; width:100%; }
87
+ .no-display { display:none; }
88
+ .no-margin { margin:0 !important; }
89
+ .no-padding { padding:0 !important; }
90
+ .no-bg { background:none !important; }
91
+ /* ======================================================================================= */
92
+
93
+
94
+ /* Layout ================================================================================ */
95
+ .wrapper { min-width:954px; }
96
+ .page {}
97
+ .page-print { background:url(../images/bkg_main.png) repeat left top; padding:25px 30px; text-align:left; }
98
+ .page-empty { background:#fff; padding:20px; text-align:left; }
99
+ .page-popup { background:url(../images/bkg_main.png) repeat left top; padding:25px 30px; text-align:left; }
100
+ .main-container { background:#fbfaf6 url(../images/bkg_main.png) repeat left top; margin: 11px 0 0 0; border-top: 1px solid #d5d5d5; padding: 0 0 22px;}
101
+ .main { width:1000px;margin: 0 auto; min-height:400px;background:url(../images/bkg_main.png) repeat left top; text-align:left;padding: 15px 0 0; }
102
+
103
+ /* Base Columns */
104
+ .col-left { float:left; width:200px; padding:0 0 1px; }
105
+ .col-main { float:left; width:785px; padding:0 0 1px; }
106
+ .col-right { float:right; width:200px; padding:0 0 1px; }
107
+
108
+ /* 1 Column Layout */
109
+ .col1-layout .col-main { float:none; width:auto; }
110
+
111
+ /* 2 Columns Layout */
112
+ .col2-left-layout .col-main { float:right; border: 1px solid #d5d5d5;}
113
+ .col2-right-layout .col-main {}
114
+ .col2-right-layout .col-main .category-products {border: 1px solid #d5d5d5; float: left;}
115
+ .col2-right-layout .col-main .category-products .toolbar .pager .limiter {padding: 0 19px 0 0;}
116
+
117
+ /* 3 Columns Layout */
118
+ .col3-layout .col-main { width:475px; margin-left:17px; }
119
+ .col3-layout .col-wrapper { float:left; width:687px; }
120
+ .col3-layout .col-wrapper .col-main { float:right; }
121
+
122
+ /* Content Columns */
123
+ .col2-set .col-1 { float:left; width:48.5%; }
124
+ .col2-set .col-2 { float:right; width:48.5%; }
125
+ .col2-set .col-narrow { width:32%; }
126
+ .col2-set .col-wide { width:65%; }
127
+
128
+ .col3-set .col-1 { float:left; width:32%; }
129
+ .col3-set .col-2 { float:left; width:32%; margin-left:2%; }
130
+ .col3-set .col-3 { float:right; width:32%; }
131
+
132
+ .col4-set .col-1 { float:left; width:23.5%; }
133
+ .col4-set .col-2 { float:left; width:23.5%; margin:0 2%; }
134
+ .col4-set .col-3 { float:left; width:23.5%; }
135
+ .col4-set .col-4 { float:right; width:23.5%; }
136
+ /* ======================================================================================= */
137
+
138
+
139
+ /* Global Styles ========================================================================= */
140
+ /* Form Elements */
141
+ input,select,textarea,button { font:12px/15px Arial, Helvetica, sans-serif; vertical-align:middle; color:#2f2f2f; }
142
+ input.input-text,select,textarea { background:#fff; border:1px solid #d5d5d5; }
143
+ input.input-text,textarea { padding:2px; }
144
+ select { padding:1px; }
145
+ select option { padding-right:10px; }
146
+ select.multiselect option { padding:2px 5px; }
147
+ select.multiselect option:last-child { border-bottom:0; }
148
+ textarea { overflow:auto; }
149
+ input.radio { margin-right:3px; }
150
+ input.checkbox { margin-right:3px; }
151
+ input.qty { width:2.5em !important; }
152
+ button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
153
+ button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
154
+ button.button{ overflow:visible; width:auto; border:0; padding:0; margin:0; background:transparent; cursor:pointer;height: 27px!important; float: left; }
155
+ button.button span{
156
+ background: url(../images/bkg_button.png) no-repeat scroll 0 0 transparent;
157
+ color: white;
158
+ float: left;
159
+ font-size: 12px;
160
+ font-weight: bold;
161
+ height: 27px;
162
+ text-transform: uppercase;
163
+ line-height: 27px;
164
+ padding: 0 0 0 7px;
165
+ position: relative;
166
+ text-align: center;
167
+ white-space: nowrap;
168
+ overflow:visible;
169
+
170
+ }
171
+ button.button span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
172
+
173
+ button.button:hover span{
174
+ background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
175
+ color: white;
176
+ float: left;
177
+ font-size: 12px;
178
+ font-weight: bold;
179
+ height: 27px;
180
+ text-transform: uppercase;
181
+ line-height: 27px;
182
+ padding: 0 0 0 7px;
183
+ position: relative;
184
+ text-align: center;
185
+ white-space: nowrap;
186
+ overflow:visible;
187
+
188
+ }
189
+ button.button:hover span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
190
+ button.disabled span { border-color:#bbb !important; background:#bbb !important; }
191
+
192
+ button.btn-checkout span { height:27px; border:0;font:bold 15px/27px Arial, Helvetica, sans-serif; color:#fff; }
193
+ button.btn-checkout span span { background-position:100% 0; }
194
+ button.btn-checkout.no-checkout span { background-position:0 100%; color:#b8baba; }
195
+ button.btn-checkout.no-checkout span span { background-position:100% 100%; }
196
+
197
+ p.control input.checkbox,
198
+ p.control input.radio { margin-right:6px; }
199
+ /* Form Highlight */
200
+ input.input-text:focus,select:focus,textarea:focus { background-color:#edf7fd; }
201
+ /*.highlight { background:#efefef; }*/
202
+
203
+ /* Form lists */
204
+ /* Grouped fields */
205
+ /*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/
206
+ .form-list li { margin:0 0 8px; }
207
+ .form-list label { float:left; color:#636363; font-weight:bold; position:relative; z-index:0; }
208
+ .form-list label.required {}
209
+ .form-list label.required em { float:right; font-style:normal; color:#eb340a; position:absolute; top:0; right:-8px; }
210
+ .form-list li.control label { float:none; }
211
+ .form-list li.control input.radio,
212
+ .form-list li.control input.checkbox { margin-right:6px; }
213
+ .form-list li.control .input-box { clear:none; display:inline; width:auto; }
214
+ /*.form-list li.fields { margin-right:-15px; }*/
215
+ .form-list .input-box { display:block; clear:both; width:260px; }
216
+ .form-list .field { float:left; width:275px; }
217
+ .form-list input.input-text { width:254px; }
218
+ .form-list textarea { width:254px; height:10em; }
219
+ .form-list select { width:260px; }
220
+ .form-list li.wide .input-box { width:535px; }
221
+ .form-list li.wide input.input-text { width:529px; }
222
+ .form-list li.wide textarea { width:529px; }
223
+ .form-list li.wide select { width:535px; }
224
+ .form-list li.additional-row { border-top:1px solid #ccc; margin-top:10px; padding-top:7px; }
225
+ .form-list li.additional-row .btn-remove { float:right; margin:5px 0 0; }
226
+ .form-list .input-range input.input-text { width:74px; }
227
+ /* Customer */
228
+ .form-list .customer-name-prefix .input-box,
229
+ .form-list .customer-name-suffix .input-box,
230
+ .form-list .customer-name-prefix-suffix .input-box,
231
+ .form-list .customer-name-prefix-middlename .input-box,
232
+ .form-list .customer-name-middlename-suffix .input-box,
233
+ .form-list .customer-name-prefix-middlename-suffix .input-box { width:auto; }
234
+
235
+ .form-list .name-prefix { width:65px; }
236
+ .form-list .name-prefix select { width:55px; }
237
+ .form-list .name-prefix input.input-text { width:49px; }
238
+
239
+ .form-list .name-suffix { width:65px; }
240
+ .form-list .name-suffix select { width:55px; }
241
+ .form-list .name-suffix input.input-text { width:49px; }
242
+
243
+ .form-list .name-middlename { width:70px; }
244
+ .form-list .name-middlename input.input-text { width:49px; }
245
+
246
+ .form-list .customer-name-prefix-middlename-suffix .name-firstname,
247
+ .form-list .customer-name-prefix-middlename .name-firstname { width:140px; }
248
+ .form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
249
+ .form-list .customer-name-prefix-middlename .name-firstname input.input-text { width:124px; }
250
+ .form-list .customer-name-prefix-middlename-suffix .name-lastname { width:205px; }
251
+ .form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text { width:189px; }
252
+
253
+ .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
254
+ .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
255
+ .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
256
+ .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
257
+
258
+ .form-list .customer-name-prefix-suffix .name-firstname { width:210px; }
259
+ .form-list .customer-name-prefix-suffix .name-lastname { width:205px; }
260
+ .form-list .customer-name-prefix-suffix .name-firstname input.input-text,
261
+ .form-list .customer-name-prefix-suffix .name-lastname input.input-text { width:189px; }
262
+
263
+ .form-list .customer-name-prefix .name-firstname,
264
+ .form-list .customer-name-middlename .name-firstname { width:210px; }
265
+
266
+ .form-list .customer-name-suffix .name-lastname,
267
+ .form-list .customer-name-middlename .name-firstname,
268
+ .form-list .customer-name-middlename-suffix .name-firstname,
269
+ .form-list .customer-name-middlename-suffix .name-lastname { width:205px; }
270
+
271
+ .form-list .customer-name-prefix .name-firstname input.input-text,
272
+ .form-list .customer-name-suffix .name-lastname input.input-text,
273
+ .form-list .customer-name-middlename .name-firstname input.input-text,
274
+ .form-list .customer-name-middlename-suffix .name-firstname input.input-text,
275
+ .form-list .customer-name-middlename-suffix .name-lastname input.input-text { width:189px; }
276
+
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:10px; font-weight:normal; color:#888; }
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
+ /* Independent fields */
290
+ /*.form-list li { margin:0 0 8px; }
291
+ .form-list li.fields { margin:0; }
292
+ .form-list .field { display:block; margin:0 0 8px; }
293
+ .form-list li.control {}
294
+ .form-list label { float:left; width:150px; padding:2px 10px 0 0; text-align:right; }
295
+ .form-list label.required { font-weight:bold; }
296
+ .form-list label.required em { font-variant:normal; color:#eb340a; margin-right:3px; }
297
+ .form-list .input-box { float:left; width:260px; }
298
+ .form-list input.input-text,
299
+ .form-list textarea { width:254px; }
300
+ .form-list select { width:260px; }
301
+ .form-list li.additional-row { border-top:1px solid #ddd; margin-top:10px; }
302
+ .form-list li.additional-row .btn-remove { float:right; margin:5px 5px 0 0; }
303
+ .form-list .input-range input.input-text { width:96px; }*/
304
+ /* Customer */
305
+ /*.form-list .customer-dob .dob-month,
306
+ .form-list .customer-dob .dob-day,
307
+ .form-list .customer-dob .dob-year { float:left; width:85px; }
308
+ .form-list .customer-dob input.input-text { display:block; width:74px; }
309
+ .form-list .customer-dob label { font-size:11px; font-weight:normal; color:#777; text-align:left; }
310
+ .form-list .customer-dob .dob-day,
311
+ .form-list .customer-dob .dob-month { width:60px; }
312
+ .form-list .customer-dob .dob-day input.input-text,
313
+ .form-list .customer-dob .dob-month input.input-text { width:46px; }
314
+ .form-list .customer-dob .dob-year { width:140px; }
315
+ .form-list .customer-dob .dob-year input.input-text { width:134px; }*/
316
+
317
+ .buttons-set { clear:both; margin:4em 0 0; padding:8px 0 0; border-top:1px solid #e4e4e4; text-align:right; }
318
+ .buttons-set p.required { margin:0 0 10px; }
319
+ .buttons-set .back-link { float:left; margin:0; }
320
+ .buttons-set button.button { float:right; margin-left:5px; }
321
+ .buttons-set button.button span{
322
+ background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
323
+ color: white;
324
+ float: left;
325
+ font-size: 12px;
326
+ font-weight: bold;
327
+ height: 27px;
328
+ text-transform: uppercase;
329
+ line-height: 27px;
330
+ padding: 0 0 0 7px;
331
+ position: relative;
332
+ text-align: center;
333
+ white-space: nowrap;
334
+ overflow:visible;
335
+
336
+ }
337
+ .buttons-set button.button span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
338
+
339
+ .buttons-set-order { margin:10px 0 0; }
340
+ .buttons-set-order .please-wait { padding:12px 7px 0 0; }
341
+
342
+ .fieldset { border:1px solid #d5d5d5; background:#f8f8f8; padding:22px 25px 12px 33px; margin:28px 0; }
343
+ .fieldset .legend { float:left; font-weight:normal; font-size:13px; border:1px solid #d5d5d5; background:#f8f8f8; color:#fd9000; margin:-33px 0 0 -10px; padding:0 8px; position:relative; }
344
+
345
+ /* Form Validation */
346
+ .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; }
347
+ .validation-failed { border:1px dashed #eb340a !important; background:#faebe7 !important; }
348
+ .validation-passed {}
349
+ p.required { font-size:11px; text-align:right; color:#EB340A; }
350
+ /* Expiration date and CVV number validation fix */
351
+ .v-fix { float:left; }
352
+ .v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }
353
+
354
+ /* Global Messages */
355
+ .success { color:#3d6611; font-weight:bold; }
356
+ .error { color:#df280a; font-weight:bold; }
357
+ .notice { color:#e26703; }
358
+
359
+ .messages,
360
+ .messages ul { list-style:none !important; margin:0 !important; padding:0 !important; }
361
+ .messages { width:100%; overflow:hidden; }
362
+ .messages li { margin:0 0 10px !important; }
363
+ .messages li li { margin:0 0 3px !important; }
364
+ .error-msg,
365
+ .success-msg,
366
+ .note-msg,
367
+ .notice-msg { border-style:1px solid #d5d5d5 !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; }
368
+ .error-msg { border-color:#f16048; background-color:#faebe7; background-image:url(../images/i_msg-error.gif); color:#df280a; }
369
+ .success-msg { border-color:#d5d5d5; background-color:#f8f8f8; background-image:url(../images/i_msg-success.gif); color:#464646s; }
370
+ .note-msg,
371
+ .notice-msg { border-color:#d5d5d5; background-color:#f8f8f8; background-image:url(../images/i_msg-note.gif); color:#464646; }
372
+
373
+ /* BreadCrumbs */
374
+ .breadcrumbs { font-size:11px; line-height:1.25; margin:0 0 10px; }
375
+ .breadcrumbs li { display:inline; }
376
+ .breadcrumbs li a { color: #898989;text-decoration: none; font-size: 12px;}
377
+ .breadcrumbs li strong { font-weight:normal; color: #fd9000; font-size: 12px; }
378
+
379
+ /* Page Heading */
380
+ .page-title { overflow:hidden; border-bottom:1px solid #d5d5d5; margin:0 0 25px; }
381
+ .page-title h1,
382
+ .page-title h2 { margin:0; font-size:16px; color:#fd9000; text-transform: capitalize; line-height: 23px;}
383
+ .page-title .separator { margin:0 3px; }
384
+ .page-title .link-rss { float:right; margin:7px 0 0; }
385
+ .title-buttons { text-align:right; }
386
+ .title-buttons h1,
387
+ .title-buttons h2,
388
+ .title-buttons h3,
389
+ .title-buttons h4,
390
+ .title-buttons h5,
391
+ .title-buttons h6 { float:left; }
392
+
393
+ .subtitle { clear:both; padding:15px 0 0; font-size:15px; font-weight:bold; margin:0 0 6px; color:#fd9000; }
394
+
395
+ /* Pager */
396
+ .pager { font-size:12px;text-align:center; }
397
+ .pager .amount { float:left; margin:0; }
398
+ .pager .limiter { float:right;padding: 0 30px 0 0; }
399
+ .pager .limiter label { vertical-align:middle; }
400
+ .pager .limiter select { padding:0; margin:0 0 1px; vertical-align:middle; }
401
+ .pager .pages { margin:0 140px; }
402
+ .pager .pages ol { display:inline; }
403
+ .pager .pages li { display:inline; margin:0 2px; }
404
+ .pager .pages .current {}
405
+
406
+ /* Pages */
407
+
408
+ .pages {margin: 0 270px; }
409
+ .pages strong {color: #636363; margin: 0 5px 0 0;}
410
+ .pages ol { display:inline; }
411
+ .pages li { display:inline; margin:0 5px; }
412
+ .pages .current {font-size: 16px; color: #fd9000; font-weight: bold;}
413
+ .pages a {text-decoration: none;color: #636363;}
414
+ .pages a.next {text-decoration: none;}
415
+ .pages a.previous {text-decoration: none;}
416
+
417
+ /* Sorter */
418
+ .sorter { font-size:12px;}
419
+ .sorter .view-mode { float:left; margin:0; background: url(../images/bkg_sorter-toolbar.png) no-repeat scroll 76% 60% transparent;}
420
+ .sorter .sort-by { float:right; padding-right:36px; }
421
+ .sorter .sort-by label { vertical-align:middle; }
422
+ .sorter .sort-by select { padding:0; margin:0 0 1px; vertical-align:middle; }
423
+ .sorter .link-feed {}
424
+
425
+ /* Toolbar */
426
+ .toolbar {margin: 10px 0;padding: 0 15px 7px; border-bottom: 1px solid #d5d5d5;}
427
+ .toolbar .pager {border-bottom: 1px dotted #d5d5d5; padding: 0 0 5px;}
428
+ .toolbar .sorter {padding: 5px 0 0}
429
+ .toolbar .sorter .view-mode strong{font-weight: normal;}
430
+ .toolbar .sorter .view-mode a{color: #636363;}
431
+ .toolbar .sorter .view-mode .list{padding: 0 0 0 10px;}
432
+ .toolbar-bottom {border-bottom: 0 none; border-top: 1px solid #d5d5d5; margin: 10px 0 -20px;}
433
+ .toolbar-bottom .toolbar {border-bottom: 0 none; }
434
+
435
+ /* Data Table */;
436
+ .data-table { width:100%; border:1px solid #bebcb7; }
437
+ .data-table .odd { }
438
+ .data-table .even { }
439
+ /*.data-table tr.odd:hover,
440
+ .data-table tr.even:hover { background:#ebf1f6; }*/
441
+ .product-view .box-additional .data-table {color:#636363;}
442
+ .product-view .box-additional .data-table tr.even td.last {font-size: 11px;}
443
+ .data-table td.last,
444
+ .data-table th.last { border-right:0; }
445
+ .data-table tr.last th,
446
+ .data-table tr.last td { border-bottom:0 none; }
447
+ .data-table th { padding:3px 8px; font-weight:normal; }
448
+ .data-table td { padding:3px 8px; }
449
+
450
+ .data-table thead th { font-weight:normal; border-right:1px solid #d5d5d5; padding:2px 8px; color:#464646; white-space:nowrap; vertical-align:middle;font-size: 14px; }
451
+ .data-table thead th.wrap { white-space:normal; }
452
+ .data-table thead th a,
453
+ .data-table thead th a:hover { color:#fff; }
454
+ .data-table thead th { }
455
+ .data-table thead th .tax-flag { font-size:11px; white-space:nowrap; }
456
+
457
+ .data-table tfoot { border-bottom:1px solid #d5d5d5;border-top:1px solid #d5d5d5 }
458
+ .data-table tfoot tr.first td {border-top: 1px solid #d5d5d5;}
459
+ .data-table tfoot tr { }
460
+ .data-table tfoot td { padding-top:1px; padding-bottom:1px; border-bottom:0; border-right:1px solid #d5d5d5; }
461
+ .data-table tfoot strong { font-size:16px; }
462
+
463
+ .data-table tbody th,
464
+ .data-table tbody td { border-bottom:1px solid #d5d5d5; border-right:1px solid #d5d5d5;vertical-align: middle; }
465
+ /* Bundle products tables */
466
+ .data-table tbody.odd tr { }
467
+ .data-table tbody.even tr { }
468
+ .data-table tbody.odd tr td,
469
+ .data-table tbody.even tr td { border-bottom:0; }
470
+ .data-table tbody.odd tr.border td,
471
+ .data-table tbody.even tr.border td { border-bottom:1px solid #d5d5d5; }
472
+
473
+ .data-table tbody td .option-label { font-weight:bold; font-style:italic; }
474
+ .data-table tbody td .option-value { padding-left:10px; }
475
+
476
+ /* Generic Info Box */
477
+ .info-box {border:1px solid #d5d5d5; padding:12px 15px; margin:0 0 15px; }
478
+ .info-box h2 { font-weight:bold; font-size:13px; }
479
+
480
+ .info-table th { font-weight:bold; padding:2px 15px 2px 0; }
481
+ .info-table td { padding:2px 0; }
482
+
483
+ /* Shopping cart total summary row expandable to details */
484
+ tr.summary-total { cursor:pointer; }
485
+ tr.summary-total td {}
486
+ 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; }
487
+ tr.show-details .summary-collapse { background-position:0 -52px; }
488
+ tr.show-details td {}
489
+ tr.summary-details td { font-size:11px; background-color:#dae1e4; color:#626465; }
490
+ tr.summary-details-first td { border-top:1px solid #d2d8db; }
491
+ tr.summary-details-excluded { font-style:italic; }
492
+
493
+ /* Shopping cart tax info */
494
+ .cart-tax-info { display:block; }
495
+ .cart-tax-info,
496
+ .cart-tax-info .cart-price { padding-right:20px; }
497
+ .cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 5px no-repeat; cursor:pointer; }
498
+ .cart-tax-info .price,
499
+ .cart-tax-total .price { display:inline !important; font-weight:normal !important; }
500
+ .cart-tax-total-expanded { background-position:100% -52px; }
501
+
502
+ /* Class: std - styles for admin-controlled content */
503
+ .std .subtitle { padding:0; }
504
+ .std ol.ol { list-style:decimal outside; padding-left:1.5em; }
505
+ .std ul.disc { list-style:disc outside; padding-left:18px; margin:0 0 10px; }
506
+ .std dl dt { font-weight:bold; }
507
+ .std dl dd { margin:0 0 10px; }
508
+ /*.std ul,
509
+ .std ol,
510
+ .std dl,
511
+ .std p,
512
+ .std address,
513
+ .std blockquote { margin:0 0 1em; padding:0; }
514
+ .std ul { list-style:disc outside; padding-left:1.5em; }
515
+ .std ol { list-style:decimal outside; padding-left:1.5em; }
516
+ .std ul ul { list-style-type:circle; }
517
+ .std ul ul,
518
+ .std ol ol,
519
+ .std ul ol,
520
+ .std ol ul { margin:.5em 0; }
521
+ .std dt { font-weight:bold; }
522
+ .std dd { padding:0 0 0 1.5em; }
523
+ .std blockquote { font-style:italic; padding:0 0 0 1.5em; }
524
+ .std address { font-style:normal; }
525
+ .std b,
526
+ .std strong { font-weight:bold; }
527
+ .std i,
528
+ .std em { font-style:italic; }*/
529
+
530
+ /* Misc */
531
+ .links li { display:inline; }
532
+ .links li.first { padding-left:0 !important; }
533
+ .links li.last { background:none !important; padding-right:0 !important; }
534
+
535
+ .link-cart { color:#fd9000 !important; font-weight:bold; }
536
+ .link-wishlist { color:#fd9000 !important; font-weight:normal; }
537
+ .link-reorder { font-weight:bold; color:#fd9000 !important; }
538
+ .link-compare { font-weight:normal; color: #464646; }
539
+ .link-print { /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/ font-weight:bold; color:#fd9000; }
540
+ .link-rss { background:url(../images/i_rss.gif) 0 2px no-repeat; padding-left:18px; line-height:14px; white-space:nowrap; }
541
+ .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; }
542
+ .btn-remove2 { display:block; width:26px; height:27px; font-size:0; line-height:0; background:url(../images/btn_trash.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
543
+
544
+ .separator { margin:0 3px; }
545
+
546
+ .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; }
547
+
548
+ /* Noscript Notice */
549
+ .noscript { border:1px solid #ddd; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
550
+ .noscript .noscript-inner { width:950px; margin:0 auto; padding:12px 0 12px; background:url(../images/i_notice.gif) 20px 50% no-repeat; }
551
+ .noscript p { margin:0; }
552
+
553
+ /* Demo Notice */
554
+ .demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; text-align:center; color:#fff; }
555
+ /* ======================================================================================= */
556
+
557
+
558
+ /* Header ================================================================================ */
559
+ .logo { float:left; }
560
+ .header-container { background:url(../images/bkg_header.png) repeat left top; }
561
+ .header { width:1000px; margin:0 auto;text-align:right; position:relative; z-index:10; }
562
+ .header .logo { float:left;text-decoration:none !important; }
563
+ .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
564
+ .header h1.logo { margin:0; }
565
+ .header .quick-access { float:right; width:600px;margin: 45px 0 0;}
566
+ .header .welcome-msg { margin:0; color:#fd9000; text-align:left; padding-bottom: 20px; }
567
+ .header .form-search {float: right;width:318px; height:32px; background:url(../images/bkg_form-search.png) no-repeat left top; }
568
+ .header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
569
+ .header .form-search input.input-text { height: 22px;float:left;border: 0 none; width:265px; margin: 3px 5px 3px 10px; background: 0 none; }
570
+ .header .form-search button.button{ overflow:visible; width:auto; border:0; padding:0; margin:5px 0 0; background:transparent; cursor:pointer;height: 22px!important; float: left; }
571
+ .header .form-search button.button span{
572
+ background: url(../images/bkg_button-search.png) no-repeat scroll 0 0 transparent;
573
+ color: white;
574
+ float: left;
575
+ font-size: 12px;
576
+ font-weight: bold;
577
+ height: 22px;
578
+ text-transform: uppercase;
579
+ line-height: 22px;
580
+ padding: 0 0 0 12px;
581
+ position: relative;
582
+ text-align: center;
583
+ white-space: nowrap;
584
+ overflow:visible;
585
+
586
+ }
587
+ .header .form-search button.button span span{background-position: 100% 0; padding: 0 10px 0 0; font-size:12px; font-weight:bold; color:white;}
588
+ .header .form-search .search-autocomplete { z-index:999; left:40px !important; top:22px !important; }
589
+ .header .form-search .search-autocomplete ul { border:1px solid #5c7989; background-color:#f9f5f0; }
590
+ .header .form-search .search-autocomplete li { text-align:left; border-bottom:1px solid #f4eee7; padding:2px 8px 1px 8px; cursor:pointer; }
591
+ .header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
592
+ .header .form-search .search-autocomplete li.odd { background-color:#fffefb; }
593
+ .header .form-search .search-autocomplete li.selected { background-color:#f7e8dd; }
594
+ .header .form-language {
595
+ float: right;
596
+ line-height: 28px;
597
+ margin: 0 0 15px;
598
+ padding: 1px 0;
599
+ text-align: right;
600
+ }
601
+ .header .form-language label { font-weight:normal; padding-right:5px; color:#ffffff; vertical-align:middle; }
602
+ .header .form-language select { padding:0; }
603
+ .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
604
+ .header .links { float:right; margin:0 0 6px; width: 40%;}
605
+ .header .links li { float:left; font-size:12px;padding:0 10px 0 0; }
606
+ .header .links li.last { padding: 0; }
607
+ .header .links a { color:#ffffff; text-decoration: none;}
608
+ .header .links a:hover {text-decoration: underline;}
609
+ .header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
610
+ .header-container .top-container a { font-size:11px; color:#ebbc58; }
611
+
612
+ /********** < Navigation */
613
+ .nav-container {clear: both; float: left; margin: 15px 0 0; background: url(../images/bkg_navigation.png) no-repeat left top; width: 1000px;}
614
+ #nav { width:800px; margin:0 auto;font-size:14px; float: left;}
615
+
616
+ /* All Levels */ /* Style consistent throughout all nav levels */
617
+ #nav li { position:relative; text-align:left; }
618
+ #nav li.over { z-index:998; }
619
+ #nav a,
620
+ #nav a:hover { display:block; line-height:30px; text-decoration:none; }
621
+ #nav span { display:block; cursor:pointer; white-space:nowrap; }
622
+ #nav li ul span {white-space:normal; }
623
+ #nav ul li.parent a { background:url(../images/bkg_nav2.gif) 100% 100% no-repeat; }
624
+ #nav ul li.parent li a { background-image:none; }
625
+
626
+ /* 0 Level */
627
+ #nav li { float:left; }
628
+ #nav li.active a { color:#ffffff; }
629
+ #nav a { float:left; padding:5px 23px 6px; color:#ffffff; font-weight:normal; }
630
+ #nav li.over a,
631
+ #nav a:hover { }
632
+ /* 1st Level */
633
+ #nav ul li,
634
+ #nav ul li.active { float:none; margin:0; padding-bottom:1px; background:url(../images/bkg_sub.png) repeat-x left top; }
635
+ #nav ul li.last {padding-bottom:0; }
636
+
637
+ #nav ul a,
638
+ #nav ul a:hover { float:none; padding:0; background:none; }
639
+ #nav ul li a { font-weight:normal !important; }
640
+
641
+ /* 2nd Level */
642
+ #nav ul,
643
+ #nav div { position:absolute; width:12em; top:40px; left:-10000px; border:1px solid #fd9000;}
644
+ #nav div ul { position:static; width:auto; border:none; }
645
+
646
+ /* 3rd+ Level */
647
+ #nav ul ul,
648
+ #nav ul div { top:5px; margin: 0 0 0 68px; }
649
+
650
+ #nav ul li a { background:#ecf3f6; }
651
+ #nav ul li a:hover { background:#d5e4eb; }
652
+ #nav ul li a,
653
+ #nav ul li a:hover { color:#ffffff !important; }
654
+ #nav ul span,
655
+ #nav ul li.last li span { padding:3px 22px 4px; }
656
+
657
+ /* Show menu */
658
+ #nav li ul.shown-sub,
659
+ #nav li div.shown-sub { left:0; z-index:999; }
660
+ #nav li .shown-sub ul.shown-sub,
661
+ #nav li .shown-sub li div.shown-sub { left:100px; }
662
+
663
+
664
+
665
+ #nav li.level0 a {line-height: 30px; background: url(../images/bkg_sepa-nav.png) no-repeat right top;}
666
+ #nav li.level0 ul li {padding: 3px 22px 4px;}
667
+ #nav li.level0 ul li span {padding: 0;}
668
+ #nav li.level-top ul li a {line-height: 20px!important; background: 0 none;}
669
+
670
+ #nav li.first:hover {background: url(../images/bkg_hover-first-navigation.png) no-repeat left top;}
671
+ #nav li:hover {background: url(../images/bkg_sub-hover.png) no-repeat left top;}
672
+ #nav li.level0 ul li:hover {background: url(../images/bkg_sub-hover.png) no-repeat left top;}
673
+
674
+ /********** Navigation > */
675
+ /* ======================================================================================= */
676
+
677
+
678
+ /* Sidebar =============================================================================== */
679
+ .block { margin:0 0 15px; width: 100%;}
680
+ .block .block-title { border-bottom:1px solid #d5d5d5;float: left;}
681
+ .block .block-title strong { padding: 0 !important; text-align: center;display:block; font:normal 16px/22px Arial, Helvetica, sans-serif; min-height:16px; padding:1px 0 1px; text-transform:capitalize; color:#fd9000; }
682
+ .block .block-title strong span {padding: 0 10px 0 0;}
683
+ .block .block-title a { text-decoration:none !important; }
684
+ .block .block-subtitle { margin:0; padding:5px 9px; font-size:1em; font-weight:bold; color:#636363; }
685
+ .block .block-content {}
686
+ .block .block-content li.item { padding:7px 9px; }
687
+ .block .block-content .product-name { color:#1e7ec8; }
688
+ .block .btn-remove { float:right; margin:1px 9px 2px 5px; }
689
+ .block .actions {padding:6px 9px; text-align:right; }
690
+ .block .actions a { float:left; }
691
+ .block .actions button.button { float:right;padding: 0 9px 0 0; }
692
+ .block .empty { margin:0; padding:5px 12px;font-size: 12px;color: #636363;}
693
+
694
+ .block li.odd { }
695
+ .block li.even { }
696
+
697
+ /* Mini Blocks */
698
+ .block-cart,
699
+ .block-wishlist,
700
+ .block-subscribe,
701
+ .block-compare,
702
+ .block-reorder,
703
+ .block-poll,
704
+ .block-viewed,
705
+ .block-compared,
706
+ .block-related,
707
+ .block-tags,
708
+ .block-login { font-size:11px; line-height:1.25; }
709
+ .block-cart .block-title strong,
710
+ .block-wishlist .block-title strong,
711
+ .block-subscribe .block-title strong,
712
+ .block-compare .block-title strong,
713
+ .block-reorder .block-title strong,
714
+ .block-poll .block-title strong,
715
+ .block-viewed .block-title strong,
716
+ .block-compared .block-title strong,
717
+ .block-related .block-title strong,
718
+ .block-tags .block-title strong,
719
+ .block-login .block-title strong { background-position:0 0; background-repeat:no-repeat; padding-left:21px; }
720
+
721
+ /* Mini Products List */
722
+ .mini-products-list .product-image { float:left; width:50px; border:1px solid #a9a9a9; }
723
+ .mini-products-list .product-details { margin-left:60px; }
724
+
725
+ /* Block: Account */
726
+ .block-account { border: 1px solid #d5d5d5;background: #f8f8f8; }
727
+ .block-account .block-title {color:#fd9000;}
728
+ .block-account .block-title strong { font-size:16px; color:#fd9000; font-weight: normal;}
729
+ .block-account .block-content {padding:7px 10px 7px; }
730
+ .block-account .block-content li a { display:block; border-bottom:1px solid #d5d5d5; padding:3px 0; color:#464646; text-decoration:none !important; }
731
+ .block-account .block-content li a:hover { color:#fd9000; }
732
+ .block-account .block-content li.last a { border-bottom:0; }
733
+ .block-account .block-content li.current { border-bottom:1px solid #d5d5d5; padding:3px 0; color:#fd9000; font-weight: normal;}
734
+ .block-account .block-content li.current strong{font-weight: normal;}
735
+ .block-account .block-content li.current.last { border-bottom:0; }
736
+
737
+ /* Block: Currency Switcher */
738
+ .block-currency { border:0;line-height: 28px; float: right; width: auto;padding: 0 0 0 20px;}
739
+ .block-currency .block-title { background:none; border:0; padding:0; margin:0 0 5px;float: left; }
740
+ .block-currency .block-title strong { font:bold 12px/31px Arial, Helvetica, sans-serif; padding:0 5px 0 21px; text-transform:none; color:#fff; font-weight: normal; float: left; }
741
+ .block-currency .block-content { background:none; padding:0;float: left; }
742
+ .block-currency .block-content select { width:125px; padding:0; }
743
+
744
+ /* Block: Layered Navigation */
745
+ .block-layered-nav { border: 1px solid #d5d5d5;float: left;}
746
+ .block-layered-nav .block-title { border:0; padding:0;overflow:hidden; border-bottom: 1px solid #d5d5d5; }
747
+ .block-layered-nav .block-subtitle { line-height:1.35; padding:3px 9px;text-transform:uppercase; color:#1f5070; }
748
+ .block-layered-nav .block-content {}
749
+ .block-layered-nav .block-content li{color: #636363;}
750
+ .block-layered-nav .block-content li a {color: #636363; text-decoration: none; font-size: 12px;}
751
+ .block-layered-nav .block-content li a:hover {text-decoration: underline;}
752
+ .block-layered-nav dt {padding:7px 10px 0; font-weight:bold; text-transform:capitalize; color: #fd9000; }
753
+ .block-layered-nav dd { padding:0 12px 12px; background:url(../images/bkg_block-layered-dd.gif) 0 100% repeat-x; }
754
+ .block-layered-nav dd.last { background:none; }
755
+ .block-layered-nav .currently li {padding:4px 6px 4px 10px; }
756
+ .block-layered-nav .currently .label { font-weight:bold; text-transform:uppercase; }
757
+ .block-layered-nav .currently .btn-remove { margin:3px 0 0; }
758
+ .block-layered-nav .actions { font-size:11px; padding:4px 9px; text-align:right; }
759
+ .block-layered-nav .actions a { float:none; }
760
+
761
+ /* Block: Cart */
762
+ .block-cart {float: left; border: 1px solid #D5D5D5;}
763
+ .block-cart .block-title { /*border-bottom:0;*/padding: 0 ; text-align: center;}
764
+ .block-cart .block-title strong {}
765
+ .block-cart .block-title strong span {color: #fd9000; font-weight: normal; text-transform: capitalize;}
766
+ .block-cart .block-content {clear: both; float: left;width: 100%;}
767
+ .block-cart .summary {padding:5px 8px 8px; margin:-1px 0 0; position:relative; z-index:1; }
768
+ .block-cart .amount { margin:0; color: #636363;}
769
+ .block-cart .amount a { font-weight:bold; color: #464646; }
770
+ .block-cart .subtotal { margin:5px 0 0; padding:2px 0; text-align:center; float: left; }
771
+ .block-cart .subtotal .label {color: #636363; }
772
+ .block-cart .subtotal .price { font-weight:bold; color: #fd9000;}
773
+ .block-cart .actions { border-bottom:1px solid #c2c2c2; }
774
+
775
+ /* Block: Wishlist */
776
+ .block-wishlist .block-title strong { }
777
+ .block-wishlist .actions { text-align:right; }
778
+ .block-wishlist .actions a { float:none; }
779
+
780
+ /* Block: Related */
781
+ .block-related .block-title strong { background-image:url(../images/i_block-related.gif); background-position:0 1px; }
782
+ .block-related input.checkbox { float:left; }
783
+ .block-related .product { margin-left:20px; }
784
+
785
+ /* Block: Compare Products */
786
+ .block-compare .block-title strong { background-position:0 1px; }
787
+ .block-compare button.button span {}
788
+ .page-popup .link-print { background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px; font-weight:bold; color:#1e7ec8; }
789
+ .compare-table { border:0; }
790
+ .compare-table thead tr.first th,
791
+ .compare-table thead tr.first td { border:0; background:none; padding:0; font-size:0; line-height:0; }
792
+ .compare-table .btn-remove { float:right; background-image:url(../images/btn_remove2.gif); width:72px; height:15px; }
793
+ .compare-table tbody th { }
794
+ .compare-table tbody th,
795
+ .compare-table tbody td { padding:10px; border:0; border-top:1px solid #ccc; border-left:1px solid #ccc; }
796
+ .compare-table tbody td.last { border-right:1px solid #ccc; }
797
+ .compare-table tbody tr.last th,
798
+ .compare-table tbody tr.last td { border-bottom:1px solid #ccc !important; }
799
+ .compare-table tr.add-to-row td { }
800
+ .compare-table tr.first td { text-align:center; }
801
+ .compare-table tr.first td .product-name { font-size:13px; font-weight:bold; margin:0 0 5px; color:#203548; }
802
+ .compare-table tr.first td .product-name a { color:#203548; }
803
+ .compare-table tr.first td .ratings { width:69px; margin:0 auto; }
804
+ .compare-table tr.first td p,
805
+ .compare-table tr.add-to-row td p { margin:0; }
806
+
807
+ /* Block: Recently Viewed */
808
+ .block-viewed {border: 1px solid #d5d5d5; float: left;}
809
+ .block-viewed .block-title {float: left;}
810
+ .block-viewed .block-content {float: left;}
811
+ .block-viewed .block-title strong { }
812
+
813
+ /* Block: Recently Compared */
814
+ .block-compared .block-title strong { background-image:url(../images/i_block-list.gif); background-position:0 1px; }
815
+
816
+ /* Block: Poll */
817
+ .block-poll .block-title strong {}
818
+ .block-poll .block-subtitle { font-size:12px; color: #fd9000; font-weight: normal; }
819
+ .block-poll label { color:#777; font-weight:bold; }
820
+ .block-poll input.radio { float:left; margin:1px -18px 0 0; }
821
+ .block-poll .label { display:block; margin-left:18px; }
822
+ .block-poll li { padding:3px 9px; }
823
+ .block-poll .actions { margin:5px 0 0; }
824
+ .block-poll button.button span{
825
+ background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
826
+ color: white;
827
+ float: left;
828
+ font-size: 12px;
829
+ font-weight: bold;
830
+ height: 27px;
831
+ text-transform: uppercase;
832
+ line-height: 27px;
833
+ padding: 0 0 0 7px;
834
+ position: relative;
835
+ text-align: center;
836
+ white-space: nowrap;
837
+ overflow:visible;
838
+
839
+ }
840
+ .block-poll button.button span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
841
+ .block-poll .answer { font-weight:bold; }
842
+ .block-poll .votes { float:right; margin-left:10px; }
843
+
844
+ /* Block: Tags */
845
+ .block-tags .block-title strong {}
846
+ .block-tags .block-content ul { font-size:12px; padding:10px; }
847
+ .block-tags .block-content li { display:inline; padding-right:4px; }
848
+ .block-tags .block-content a { color:#636363; }
849
+ .block-tags .actions { text-align:right; }
850
+ .block-tags .actions a { float:none; padding: 0 9px 0 0;}
851
+
852
+ /* Block: Subscribe */
853
+ .block-subscribe .block-content { padding:5px 10px; }
854
+ .block-subscribe .block-title strong {}
855
+ .block-subscribe label { font-weight:normal; color:#636363; }
856
+ .block-subscribe input.input-text { display:block; width:165px; margin:3px 0; }
857
+ .block-subscribe .actions { background:none; padding:0; margin:3px 0 0; text-align:right; }
858
+ .block-subscribe .actions button.button { float:none; }
859
+ .block-subscribe button.button span{
860
+ background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
861
+ color: white;
862
+ float: left;
863
+ font-size: 12px;
864
+ font-weight: bold;
865
+ height: 27px;
866
+ text-transform: uppercase;
867
+ line-height: 27px;
868
+ padding: 0 0 0 7px;
869
+ position: relative;
870
+ text-align: center;
871
+ white-space: nowrap;
872
+ overflow:visible;
873
+
874
+ }
875
+ .block-subscribe button.button span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
876
+
877
+ /* Block: Reorder */
878
+ .block-reorder {float: left; border: 1px solid #d5d5d5;}
879
+ .block-reorder .block-title strong { }
880
+ .block-reorder input.checkbox { float:left; margin:2px -20px 0 0; }
881
+ .block-reorder .product-name { margin-left:20px; }
882
+ .block-reorder .validation-advice { margin:3px 9px 7px; }
883
+
884
+ /* Block: Banner */
885
+ .block-banner { border:0; }
886
+ .block-banner .block-content { padding:0; text-align:center; }
887
+
888
+ /* Block: Login */
889
+ .block-login .block-title strong { background-image:url(../images/i_ma-info.gif); }
890
+ .block-login .block-content { padding:5px 10px; }
891
+ .block-login label { font-weight:bold; color:#666; }
892
+ .block-login input.input-text { display:block; width:167px; margin:3px 0; }
893
+ .block-login .actions { background:none; padding:0; margin:3px 0 0; }
894
+ .block-login .actions button.button span { border-color:#406a83; background:#618499; }
895
+
896
+ /* Paypal */
897
+ .sidebar .paypal-logo { display:block; margin:10px 0; text-align:center; }
898
+ .sidebar .paypal-logo a { float:none; }
899
+ /* ======================================================================================= */
900
+
901
+
902
+ /* Category Page ========================================================================= */
903
+ .category-title { border-bottom: 1px solid #d5d5d5; margin:0;}
904
+ .category-title h1 {padding: 0 0 0 14px; }
905
+ .category-image { width:100%; overflow:hidden; margin:0 0 10px; text-align:center; }
906
+ .category-image img {}
907
+ .category-description { margin:0 0 10px; }
908
+ .category-products { float: right;}
909
+ .category-products .top-site .page-title { padding: 0 0 0 13px; width: 772px;}
910
+
911
+ /* View Type: Grid */
912
+ .products-grid { position:relative; }
913
+ .products-grid.last { border-bottom:0; }
914
+ .products-grid li.item { float:left; width:179px; padding:12px 5px 0; }
915
+ .products-grid li.last { float:right; padding: 12px 5px 0 0;}
916
+ .products-grid .product-image { background: url(../images/bkg_img-product.png) no-repeat scroll left top transparent; display: block;height: 142px;padding: 7px;width: 163px;}
917
+ .products-grid .product-name { /*min-height:2.7em;*/ margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
918
+ .products-grid .product-name a { color:#464646; font-size: 14px; text-decoration: none; font-weight: normal; }
919
+ .products-grid .product-name a:hover {text-decoration: underline;}
920
+ .products-grid .price-box { margin:5px 0; }
921
+ .products-grid .availability { line-height:21px; }
922
+ .products-grid .actions { }
923
+ .col2-left-layout .products-grid,
924
+ .col2-right-layout .products-grid { width:755px; margin:15px auto; }
925
+ .col1-layout .products-grid { width:790px; margin:0 auto; }
926
+
927
+ /* View Type: List */
928
+ .products-list li.item { border-bottom:1px solid #d9ddd3; padding:12px 10px; }
929
+ .products-list li.item.last { border-bottom:0; }
930
+ .products-list .product-image { float:left; width:177px; height:156px; padding: 7px;margin:0 0 10px; background: url(../images/bkg_img-product.png) no-repeat scroll left top transparent; }
931
+ .products-list .product-shop { margin-left:200px; }
932
+ .products-list .product-name { margin:0 0 5px; font-weight:bold; font-size:13px; color:#203548; }
933
+ .products-list .product-name a { color:#464646; text-decoration: none; font-size: 16px; }
934
+ .products-list .product-name a:hover {text-decoration:underline; }
935
+ .products-list .price-box { float:left; margin:3px 13px 5px 0; }
936
+ .products-list .availability { float:left; margin:3px 0 0; }
937
+ .products-list .desc { clear:both; padding:6px 0 0; margin:0 0 15px; line-height:1.35; }
938
+ .products-list .desc .link-more { font-size:11px; }
939
+ .products-list .add-to-links { clear:both; }
940
+ .products-list .add-to-links li { display:inline; }
941
+ .products-list .add-to-links .separator { display:inline; margin:0 2px; }
942
+ /* ======================================================================================= */
943
+
944
+
945
+ /* Product View ========================================================================== */
946
+ /* Rating */
947
+ .no-rating { margin:0; }
948
+
949
+ .ratings { font-size:11px; line-height:1.25; margin:7px 0; }
950
+ .ratings strong { float:left; margin:1px 3px 0 0; }
951
+ .ratings .rating-links { margin:0; }
952
+ .ratings .rating-links a { color: #636363; }
953
+ .ratings .rating-links .separator { margin:0 2px; }
954
+ .ratings dt {}
955
+ .ratings dd {}
956
+ .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; }
957
+ .rating-box .rating { float:left; height:13px; background:url(../images/bkg_rating.gif) 0 100% repeat-x; }
958
+ .ratings .rating-box { float:left; margin-right:3px; }
959
+ .ratings .amount {}
960
+
961
+ .ratings-table th,
962
+ .ratings-table td { font-size:11px; line-height:1.15; padding:3px 0; }
963
+ .ratings-table th { font-weight:bold; padding-right:8px; }
964
+
965
+ /* Availability */
966
+ .availability { margin:0; }
967
+ .availability span { font-weight:bold; }
968
+ .availability.in-stock span {}
969
+ .availability.out-of-stock span { color:#d83820; }
970
+
971
+ .availability-only { margin:10px 0 7px; line-height:16px; background:url(../images/i_availability_only.gif) 0 50% no-repeat; padding-left:15px; }
972
+ .availability-only span,
973
+ .availability-only a { border-bottom:1px dashed #751d02; color:#000; cursor:help; }
974
+ .availability-only a { background:url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat; cursor:pointer; padding-right:15px; text-decoration:none; }
975
+ .availability-only .expanded { background-position:100% -15px; }
976
+ .availability-only strong { color:#be2c00; }
977
+
978
+ .availability-only-details { margin:0 0 7px; }
979
+ .availability-only-details th { background:#d2d6d9; font-size:10px; padding:0 8px; }
980
+ .availability-only-details td { background:#ebf0f3; border-bottom:1px solid #fff; font-size:11px; padding:2px 8px 1px; }
981
+ .availability-only-details tr.odd td.last { color:#d95e00; font-weight:bold; }
982
+
983
+ .product-view .product-shop .availability { font-size:11px; }
984
+ .product-view .product-shop .availability span { font-weight:normal; }
985
+
986
+ /* Email to a Friend */
987
+ .email-friend { margin:0; }
988
+ .email-friend a { color: #636363; }
989
+
990
+ .no-rating a {color:#636363;}
991
+
992
+ /* Alerts */
993
+ .alert-price { margin:0; font-size:11px; }
994
+ .alert-stock { margin:0; font-size:11px; }
995
+
996
+ /********** < Product Prices */
997
+ .price { white-space:nowrap !important; color: #fd9000; font-size: 20px; }
998
+
999
+ .price-box { margin:5px 0; }
1000
+ .price-box .price { font-weight:bold; color:#fd9000 !important; font-size: 20px; }
1001
+
1002
+ /* Regular price */
1003
+ .regular-price { color:#fd9000; }
1004
+ .regular-price .price { font-weight:bold; font-size:20px; color:#fd9000; }
1005
+ .block .regular-price,
1006
+ .block .regular-price .price { color:#2f2f2f; }
1007
+
1008
+ /* Old price */
1009
+ .old-price { margin:0; }
1010
+ .old-price .price-label { white-space:nowrap; color:#999; }
1011
+ .old-price .price { font-weight:bold; color:#c76200; text-decoration:line-through; }
1012
+
1013
+ /* Special price */
1014
+ .special-price { margin:0; padding:3px 0; }
1015
+ .special-price .price-label { font-size:13px; font-weight:bold; white-space:nowrap; color:#cd5033; }
1016
+ .special-price .price { font-size:13px; font-weight:bold; color:#c76200; }
1017
+
1018
+ /* Minimal price (as low as) */
1019
+ .minimal-price { margin:0; }
1020
+ .minimal-price .price-label { font-weight:bold; white-space:nowrap; }
1021
+
1022
+ .minimal-price-link { display:block; text-decoration: none; }
1023
+ .minimal-price-link:hover { text-decoration:underline; }
1024
+ .minimal-price-link .label {color:#636363;}
1025
+ .minimal-price-link .price { font-weight:normal; color:#fd9000; }
1026
+
1027
+ /* Excluding tax */
1028
+ .price-excluding-tax { display:block; color:#999; }
1029
+ .price-excluding-tax .label { white-space:nowrap; color:#999; }
1030
+ .price-excluding-tax .price { font-size:13px; font-weight:normal; color:#c76200; }
1031
+
1032
+ /* Including tax */
1033
+ .price-including-tax { display:block; color:#999; }
1034
+ .price-including-tax .label { white-space:nowrap; color:#999; }
1035
+ .price-including-tax .price { font-size:13px; font-weight:bold; color:#c76200; }
1036
+
1037
+ /* FPT */
1038
+ .weee { display:block; font-size:11px; color:#444; }
1039
+ .weee .price { font-size:11px; font-weight:normal; }
1040
+
1041
+ /* Excl tax (for order tables) */
1042
+ .price-excl-tax { display:block; }
1043
+ .price-excl-tax .label { display:block; white-space:nowrap; }
1044
+ .price-excl-tax .price { display:block; }
1045
+
1046
+ /* Incl tax (for order tables) */
1047
+ .price-incl-tax { display:block; }
1048
+ .price-incl-tax .label { display:block; white-space:nowrap; }
1049
+ .price-incl-tax .price { display:block; font-weight:bold; }
1050
+
1051
+ /* Price range */
1052
+ .price-from { margin:0; }
1053
+ .price-from .price-label { font-weight:normal; white-space:nowrap; }
1054
+
1055
+ .price-to { margin:0; }
1056
+ .price-to .price-label { font-weight:normal; white-space:nowrap; }
1057
+
1058
+ /* Price notice next to the options */
1059
+ .price-notice { padding-left:10px; color:#999; }
1060
+ .price-notice .price { font-weight:bold; color:#464646; }
1061
+
1062
+ /* Price as configured */
1063
+ .price-as-configured { margin:0; }
1064
+ .price-as-configured .price-label { font-weight:normal; white-space:nowrap;color: #464646;padding: 8px 0; }
1065
+
1066
+ .price-box-bundle { padding:0 0 10px 0; }
1067
+ .price-box-bundle .price-box { margin:0 !important; padding:0 !important; }
1068
+ .price-box-bundle .price { color:#555; }
1069
+ /********** Product Prices > */
1070
+
1071
+ /* Tier Prices */
1072
+ .tier-prices { margin:10px 0; padding:10px; border:1px solid #d5d5d5; }
1073
+ .tier-prices li { line-height:1.4; background:url(../images/i_tier.gif) no-repeat 0 3px; padding:2px 0 2px 10px; color:#424242; }
1074
+ .tier-prices .benefit { font-style:italic; font-weight:bold; color:#464646; }
1075
+ .tier-prices .price { font-weight:bold; color:#464646; }
1076
+
1077
+ .tier-prices-grouped li { padding:2px 0; color:#e26703; }
1078
+ .tier-prices-grouped li .price { font-weight:bold; }
1079
+
1080
+ /* Add to Links */
1081
+ .add-to-links { font-size:11px; margin: 10px 0 0; clear: both; float: left; }
1082
+ .add-to-links .separator { display:none; }
1083
+
1084
+ /* Add to Cart */
1085
+ .add-to-cart label { float:left; margin-right:5px; font-weight:bold; color:#666; display: none;}
1086
+ .add-to-cart .qty { float:left; margin-right:5px; display: none; }
1087
+ .add-to-cart button.button { float:left; }
1088
+ .add-to-cart .paypal-logo { clear:left; margin:0; padding:10px 0 0; text-align:right; }
1089
+
1090
+ /* Add to Links + Add to Cart */
1091
+ .add-to-box { margin:10px 0; }
1092
+ .add-to-box .add-to-cart { float:left; }
1093
+ .add-to-box .or { float:left; font-weight:bold; margin:0 7px; color:#666; display: none; }
1094
+ .add-to-box .add-to-links { float:left; margin:0; font-size:12px !important; line-height:1.25 !important; text-align:left !important; }
1095
+ .add-to-box .add-to-links li { display:block !important; }
1096
+ .add-to-box .add-to-links li .separator {}
1097
+
1098
+
1099
+ .product-view { border: 1px solid #D5D5D5;float: right;width: 100%;}
1100
+
1101
+ .product-essential {margin: 0 0 10px;}
1102
+ .product-essential h2 { font:bold 13px/1.35 Arial, Helvetica, sans-serif; }
1103
+
1104
+ .product-collateral { }
1105
+ .product-collateral h2 { font-weight:normal; font-size:14px; color:#fd9000; padding:10px 0 1px; margin:0 0 10px; border-top: 1px solid #d5d5d5; }
1106
+ .product-collateral .box-collateral { margin:0 0 25px; }
1107
+
1108
+ /* Product Images */
1109
+ .product-view .product-img-box { float:left; width:263px; }
1110
+ .col3-layout .product-view .product-img-box { float:none; margin:0 auto; }
1111
+ .product-view .product-img-box .product-image { margin:0 0 13px; }
1112
+ .product-view .product-img-box .product-image-view { background: url(../images/bkg_img-product-view.png) no-repeat left top;width:243px; height:211px;padding: 10px; margin: 0 0 10px;}
1113
+ .product-view .product-img-box .product-image-zoom { position:relative; width:243px; height:211px; overflow:hidden; z-index:9; }
1114
+ .product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move;}
1115
+ .product-view .product-img-box .zoom-notice { font-size:12px; margin:0 0 5px; text-align:center; color: #636363;}
1116
+ .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; }
1117
+ .product-view .product-img-box .zoom.disabled { -moz-opacity:.3; -webkit-opacity:.3; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";/*IE8*/ opacity:.3; }
1118
+ .product-view .product-img-box .zoom #track { position:relative; height:18px; }
1119
+ .product-view .product-img-box .zoom #handle { position:absolute; left:0; top:6px; width:31px; height:7px; background:url(../images/magnifier_handle.gif) 0 0 no-repeat; }
1120
+ .product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
1121
+ .product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
1122
+ .product-view .product-img-box .more-views h2 { padding: 0 0 5px;color: #555555;font-size:12px; border-bottom:1px solid #d5d5d5; margin:0 0 8px; text-transform:capitalize; font-weight: normal; }
1123
+ .product-view .product-img-box .more-views ul { }
1124
+ .product-view .product-img-box .more-views li { float:left; padding: 0 11px 7px 0;}
1125
+ .product-view .product-img-box .more-views li.last { padding: 0;}
1126
+ .product-view .product-img-box .more-views li a { float:left; width:78px; height:79px; border:1px solid #d5d5d5; overflow:hidden; }
1127
+ .product-view .product-img-box .more-views li a:hover {border:1px solid #fd9000;}
1128
+
1129
+ .product-image-popup { margin:0 auto; }
1130
+ .product-image-popup .nav { font-weight:bold; text-align:center; }
1131
+ .product-image-popup .image { display:block; margin:10px 0; }
1132
+ .product-image-popup .image-label { font-size:13px; font-weight:bold; margin:0 0 10px; color:#2f2f2f; }
1133
+
1134
+ /* Product Shop */
1135
+ .product-view .product-shop { float:right; width:475px; }
1136
+ .col1-layout .product-view .product-shop { float:right; width:545px; }
1137
+ .col3-layout .product-view .product-shop { float:none; width:auto; }
1138
+ .product-view .product-shop .product-name { margin:0 0 5px; }
1139
+ .product-view .product-shop .product-name h1 { margin:0; font:bold 14px/1.35 Arial, Helvetica, sans-serif; color:#464646;}
1140
+ .product-view .product-shop .availability { margin:10px 0; }
1141
+ .product-view .product-shop .short-description { margin:10px 0; padding:10px 0 0;border-top: 1px solid #d5d5d5; float: left; width: 100%;}
1142
+ .product-view .product-shop .short-description .std { color: #636363;}
1143
+ .product-view .product-shop .price-box { margin:10px 0; }
1144
+ .product-view .product-shop .add-to-links { margin:0; }
1145
+ .product-view .product-shop .add-to-links {
1146
+ clear: both;
1147
+ font-size: 12px;
1148
+ margin: 18px 0 0;
1149
+ position: relative;
1150
+ text-align: left;
1151
+ width: 100%;
1152
+ }
1153
+ .product-view .product-shop .add-to-links li {float: left;}
1154
+ .product-view .product-shop .add-to-links li,
1155
+ .product-view .product-shop .add-to-links li .separator {
1156
+ display: inline;
1157
+ color: #636363;
1158
+ }
1159
+ .product-view .product-shop .add-to-links li .link-wishlist {
1160
+ font-size: 12px;
1161
+ padding-right: 17px;
1162
+ text-decoration: underline;
1163
+ float: left;
1164
+ color: #fd9000;
1165
+ }
1166
+ .product-view .product-shop .add-to-links li .separator {
1167
+ left: 85px;
1168
+ position: absolute;
1169
+ }
1170
+ .product-view .product-shop .add-to-links .link-compare {
1171
+ font-size: 12px;
1172
+ text-decoration: underline;
1173
+ color: #636363;
1174
+ }
1175
+ .product-view .product-shop .add-to-links a {font-weight:normal !important; }
1176
+
1177
+
1178
+ /* Product Options */
1179
+ .product-shop .product-options { margin:20px 0 0; padding:10px 15px 20px; border:1px solid #d5d5d5; width: 93.3%; float: left; }
1180
+ .product-options { margin:20px 0 0; padding:10px 15px 20px; border:1px solid #d5d5d5; width: 95.7%; float: left; }
1181
+ .product-options dt { padding:10px 0 0; font-weight:normal; }
1182
+ .product-options dt label { font-weight:bold; color:#464646; }
1183
+ .product-options dt span.required { color:#eb340a; }
1184
+ .product-options dt .qty-holder { float:right; margin-right:15px; }
1185
+ .product-options dt .qty-holder label { vertical-align:middle; }
1186
+ .product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#464646; }
1187
+ .product-options dd { padding:5px 10px 15px; margin:0 0 5px; border-bottom:1px solid #d5d5d5; }
1188
+ .product-options dl.last dd.last { border-bottom:0; padding-bottom:5px; margin-bottom:0; }
1189
+ .product-options dd input.input-text { width:98%; }
1190
+ .product-options dd input.datetime-picker { width:150px; }
1191
+ .product-options dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
1192
+ .product-options dd textarea { width:98%; height:8em; }
1193
+ .product-options dd select { width:435px; }
1194
+ .product-options dd .multiselect option { border-bottom:1px dotted #d9e5ee; padding:2px 4px; }
1195
+ .product-options ul.options-list { margin-right:5px; }
1196
+ .product-options ul.options-list li { line-height:1.5; padding:2px 0; }
1197
+ .product-options ul.options-list input.radio { float:left; margin-top:3px; }
1198
+ .product-options ul.options-list input.checkbox { float:left; margin-top:3px; }
1199
+ .product-options ul.options-list .label { display:block; margin-left:18px; }
1200
+ .product-options ul.options-list label { font-weight:normal; color: #636363;}
1201
+ .product-options ul.validation-failed { padding:0 7px; }
1202
+ .product-options p.note { margin:0; font-size:11px; }
1203
+ .product-options p.required { margin-bottom:0; padding:15px 0 0; }
1204
+
1205
+ .product-options-bottom {padding:15px 20px; border:1px solid #d5d5d5; border-top:0; float: left;width: 94.4% }
1206
+ .product-options-bottom .tier-prices { margin:0; padding:0 0 10px; border:0; background:0; }
1207
+ .product-options-bottom .tier-prices li { background:0; padding:2px 0; color:#e26703; }
1208
+ .product-options-bottom .tier-prices .price,
1209
+ .product-options-bottom .tier-prices .benefit { color:#e26703; }
1210
+ .product-options-bottom .price-box { float:left; margin:0; padding:0; }
1211
+ .col3-layout .product-options-bottom .price-box { float:none; padding:0 0 5px; }
1212
+ .product-options-bottom .price-label { float:left; padding-right:5px; }
1213
+ .product-options-bottom .price-tax { float:left; }
1214
+ .product-options-bottom .add-to-cart { float:right; }
1215
+ .product-shop .product-options-bottom { margin:0 0 10px;float: left; width: 433px; }
1216
+ .product-shop .product-options-bottom .price-box { float:left; margin:0 0 5px; }
1217
+ .product-shop .product-options-bottom .price-label { float:none; padding-right:0; }
1218
+ .product-shop .product-options-bottom .price-tax { float:none; }
1219
+ .product-shop .product-options-bottom .add-to-cart-box { clear:both; float:left; padding-top:12px; }
1220
+
1221
+ /* Grouped Product */
1222
+ .product-view .grouped-items-table .price-box { margin:0; padding:0; }
1223
+
1224
+ /* Block: Description */
1225
+ .product-view .box-description {}
1226
+ .product-view .box-description .std{color: #636363;}
1227
+
1228
+ /* Block: Additional */
1229
+ .product-view .box-additional .data-table th,
1230
+ .product-view .box-additional .data-table td { line-height:1.25; }
1231
+
1232
+ /* Block: Upsell */
1233
+ .product-view .box-up-sell h2 { border-bottom:0; padding:10px 0 1px; margin:0 0 8px; }
1234
+ .product-view .box-up-sell .products-grid { width:100%; }
1235
+ .product-view .box-up-sell .products-grid td { width:25%; border-bottom:1px solid #e5dcc3; padding:0 15px 0 0; line-height:1.6em; }
1236
+ .product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
1237
+ .product-view .box-up-sell .products-grid td.last { border-right:0; float: left; margin: 0 0 0 1px; padding: 0; width: 100%;}
1238
+ .product-view .box-up-sell .products-grid td img {}
1239
+ .product-view .box-up-sell .products-grid .product-image { text-align:center; }
1240
+ .product-view .box-up-sell .products-grid td.empty { }
1241
+ .product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1242
+
1243
+ /* Block: Tags */
1244
+ .product-view .box-tags { margin:0; }
1245
+ .product-view .box-tags h3 { font-size:13px; font-weight: normal; color: #636363; }
1246
+ .product-view .box-tags .product-tags { display:block; margin:0 0 15px; }
1247
+ .product-view .box-tags .product-tags li { display:inline; background:url(../images/bkg_pipe3.gif) 100% 4px no-repeat; padding:0 7px 0 4px; }
1248
+ .product-view .box-tags .product-tags li.first { padding-left:0; }
1249
+ .product-view .box-tags .product-tags li a {color: #636363;}
1250
+ .product-view .box-tags .product-tags li.last { background:none; padding-right:0; }
1251
+ .product-view .box-tags .form-add label { display:block; font-size:12px; font-weight:normal; margin:0 0 5px; color:#636363;}
1252
+ .product-view .box-tags .form-add .input-box { float:left; width:530px; margin:0 5px 0 0; }
1253
+ .product-view .box-tags .form-add input.input-text { width:523px; height: 22px; }
1254
+ .product-view .box-tags .form-add button.button{ overflow:visible; width:auto; border:0; padding:0; margin:0; background:transparent; cursor:pointer;height: 27px!important; float: left; }
1255
+ .product-view .box-tags .form-add button.button span{
1256
+ background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
1257
+ color: white;
1258
+ float: left;
1259
+ font-size: 12px;
1260
+ font-weight: bold;
1261
+ height: 27px;
1262
+ text-transform: uppercase;
1263
+ line-height: 27px;
1264
+ padding: 0 0 0 7px;
1265
+ position: relative;
1266
+ text-align: center;
1267
+ white-space: nowrap;
1268
+ overflow:visible;
1269
+
1270
+ }
1271
+ .product-view .box-tags .form-add button.button span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
1272
+ .product-view .box-tags .note { margin:3px 0 0; font-size:11px;color: #636363; }
1273
+
1274
+ /* Block: Reviews */
1275
+ .product-view .box-reviews dl { margin:15px 0; }
1276
+ .product-view .box-reviews dt a,
1277
+ .product-view .box-reviews dt span { font-weight:bold; }
1278
+ .product-view .box-reviews dd { margin:0 0 15px; }
1279
+ .product-view .box-reviews dd small { font-style:italic; }
1280
+ .product-view .box-reviews .form-add { margin:15px 0 0; }
1281
+ .product-view .box-reviews .form-add h3 { font-size:13px; font-weight:normal; }
1282
+ .product-view .box-reviews .form-add h3 span { font-weight:bold; }
1283
+ .product-view .box-reviews .form-add h4 { font-size:12px; }
1284
+ .product-view .box-reviews .form-add .data-table td { text-align:center; }
1285
+ .product-view .box-reviews .form-add .form-list { margin:15px 0 0; }
1286
+ .product-view .box-reviews .form-add .form-list .input-box { width:360px; }
1287
+ .product-view .box-reviews .form-add .form-list input.input-text,
1288
+ .product-view .box-reviews .form-add .form-list textarea { width:354px; }
1289
+
1290
+ /* Send a Friend */
1291
+ .send-friend .form-list { width:615px; overflow:hidden; }
1292
+ .send-friend .form-list li { margin-right:-15px; }
1293
+ .send-friend .form-list li p { margin:0 15px 0 0; }
1294
+ .send-friend .form-list .field { width:315px; }
1295
+ .send-friend .form-list .input-box { width:300px; }
1296
+ .send-friend .form-list input.input-text,
1297
+ .send-friend .form-list textarea { width:294px; }
1298
+ .send-friend .form-list li.wide .input-box { width:612px; }
1299
+ .send-friend .form-list li.wide textarea { width:609px; }
1300
+ .send-friend .buttons-set .limit { float:right; margin:0 7px 0 0; font-size:11px; line-height:21px; }
1301
+ /* ======================================================================================= */
1302
+
1303
+
1304
+ /* Content Styles ================================================================= */
1305
+ .product-name { margin:0; font-size:1em; font-weight:normal; }
1306
+ .product-name a { color:#464646 !important; text-decoration: none; }
1307
+ .product-name a:hover { text-decoration: underline; }
1308
+
1309
+ /* Product Tags */
1310
+ .tags-list { display:block; font-size:13px;padding:10px; }
1311
+ .tags-list li { display:inline !important; margin:0 4px 0 0; }
1312
+ .tags-list li a { color:#1b2d3b; }
1313
+
1314
+ /* Advanced Search */
1315
+ .advanced-search .form-list label { width:160px; padding-right:10px; }
1316
+ .advanced-search .form-list .input-box,
1317
+ .advanced-search .form-list .input-range { float:left; clear:none; }
1318
+ .advanced-search-amount { margin:0 0 10px; }
1319
+ .advanced-search-summary { margin:10px 0; border:1px solid #d5d5d5; background:#f8f8f8; padding:10px; }
1320
+ .advanced-search-summary ul { float:left; width:49%; }
1321
+ .advanced-search-summary strong { color:#E17C24; padding-left:15px; background:url(../images/i_search_criteria.gif) 0 3px no-repeat; }
1322
+ .advanced-search-summary p { clear:both; font-weight:bold; margin:0; }
1323
+
1324
+ /* CMS Home Page */
1325
+ .cms-home .subtitle {}
1326
+ .cms-index-index .subtitle {}
1327
+
1328
+ /* Sitemap */
1329
+ .page-sitemap .links { text-align:right; margin:0 8px -22px 0; }
1330
+ .page-sitemap .links a { text-decoration:none; position:relative; }
1331
+ .page-sitemap .links a:hover { text-decoration:underline; }
1332
+ .page-sitemap .sitemap { margin:12px; }
1333
+ .page-sitemap .sitemap a { color:#1b2d3b; }
1334
+ .page-sitemap .sitemap li { margin:3px 0; }
1335
+ .page-sitemap .sitemap li.level-0 { margin:10px 0 0; font-weight:bold; }
1336
+ .page-sitemap .sitemap li.level-0 a { color:#1e7ec8; }
1337
+
1338
+ /* RSS */
1339
+ .rss-title h1 { background:url(../images/i_rss-big.png) 0 4px no-repeat; padding-left:27px; }
1340
+ .rss-table .link-rss { display:block; line-height:1.55; background-position:0 4px; }
1341
+ /* ======================================================================================= */
1342
+
1343
+
1344
+ /* Shopping Cart ========================================================================= */
1345
+ .cart .page-title { border-bottom:0; margin:0 0 12px; }
1346
+ .cart .page-title h1 { margin:10px 0 0; font-weight: bold;}
1347
+
1348
+ /* Checkout Types */
1349
+ .cart .page-title .checkout-types li { margin:0 0 5px; }
1350
+ .cart .title-buttons .checkout-types { float:right; margin: 15px 0 0;}
1351
+ .cart .title-buttons .checkout-types li { float:left; margin:0 0 5px 5px; }
1352
+
1353
+ /* Shopping Cart Table */
1354
+ .cart-table th { padding:2px 10px; }
1355
+ .cart-table td { padding:10px; }
1356
+ .cart-table .product-name { font-weight:normal; margin:0 0 5px; color:#2f2f2f; font-size: 14px;}
1357
+ .cart-table .item-msg { margin:5px 0; font-size:11px; font-weight:bold; color:#df280a; }
1358
+ .cart-table tfoot td { padding:5px 10px; }
1359
+ .cart-table .btn-continue { float:left; }
1360
+ .cart-table .btn-continue span,
1361
+ .cart-table .btn-update span { }
1362
+
1363
+ /* Shopping Cart Collateral boxes */
1364
+ .cart .cart-collaterals { padding:25px 0 0; }
1365
+ .cart .cart-collaterals .col2-set { float:left; width:605px; }
1366
+ .cart .cart-collaterals .col2-set .col-2 { width:294px; }
1367
+
1368
+ .cart .crosssell { border:1px solid #d5d5d5; padding:12px 15px; }
1369
+ .cart .crosssell h2 { font-size:14px; font-weight:normal; color: #636363; }
1370
+ .cart .crosssell .product-image { float:left; width:80px; height:82px; border:1px solid #d0cdc9; }
1371
+ .cart .crosssell .product-details { margin-left:90px; }
1372
+ .cart .crosssell .product-name { font-weight:normal; }
1373
+ .cart .crosssell li.item { margin:12px 0; }
1374
+ .cart .crosssell .link-compare { font-weight:normal; }
1375
+ .cart .crosssell .add-to-links { display: none;}
1376
+
1377
+
1378
+
1379
+
1380
+ /* Discount Codes & Estimate Shipping and Tax Boxes */
1381
+ .cart .discount,
1382
+ .cart .shipping { border:1px solid #d5d5d5; padding:12px 15px; margin:0 0 18px; }
1383
+ .cart .discount h2,
1384
+ .cart .shipping h2 { background-position:0 0; background-repeat:no-repeat; font:normal 14px/16px Arial, Helvetica, sans-serif; color:#fd9000; text-transform:capitalize; }
1385
+ .cart .discount button span,
1386
+ .cart .shipping button span {background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
1387
+ color: white;
1388
+ float: left;
1389
+ font-size: 12px;
1390
+ font-weight: bold;
1391
+ height: 27px;
1392
+ text-transform: uppercase;
1393
+ line-height: 27px;
1394
+ padding: 0 0 0 7px;
1395
+ position: relative;
1396
+ text-align: center;
1397
+ white-space: nowrap;
1398
+ overflow:visible;
1399
+ }
1400
+ .cart .discount button span span,
1401
+ .cart .shipping button span span {background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
1402
+
1403
+ .cart .discount .buttons-set,
1404
+ .cart .shipping .buttons-set { margin:10px 0 0; border:0; padding:0; text-align:left; }
1405
+ .cart .discount .buttons-set button.button,
1406
+ .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1407
+ .cart .discount .buttons-set button.btn-cancel-coupon { float:right !important;padding: 0 2px 0 0; }
1408
+
1409
+ .cart .discount h2 { }
1410
+ .cart .discount .input-box { margin:8px 0 0; width:260px; }
1411
+ .cart .discount input.input-text { width:254px; }
1412
+
1413
+ .cart .shipping h2 { }
1414
+ .cart .shipping .sp-methods { margin:10px 0 0; padding:5px 0 0; background:url(../images/bkg_divider1.gif) 0 0 repeat-x; }
1415
+
1416
+ /* Shopping Cart Totals */
1417
+ .cart .totals { float:right; width:268px;border:1px solid #d5d5d5; }
1418
+ .cart .totals table { width:100%; margin:7px 0 0; }
1419
+ .cart .totals td { padding:1px 15px 1px 7px; }
1420
+ .cart .totals td .price { font-size: 12px; color: #636363; }
1421
+ .cart .totals tr.last td {}
1422
+ .cart .totals tfoot th { padding:5px 15px 5px 7px; }
1423
+ .cart .totals tfoot td { padding-top:5px; padding-bottom:5px; }
1424
+ .cart .totals tfoot th strong,
1425
+ .cart .totals tfoot td strong { font-size:15px; }
1426
+ .cart .totals .checkout-types { font-size:13px; padding:0 15px 15px; text-align:right; }
1427
+ .cart .totals .checkout-types button.button { float: right; }
1428
+ .checkout-cart-index .cart .totals .checkout-types button.button span{
1429
+ background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
1430
+ color: white;
1431
+ float: left;
1432
+ font-size: 12px;
1433
+ font-weight: bold;
1434
+ height: 27px;
1435
+ text-transform: uppercase;
1436
+ line-height: 27px;
1437
+ padding: 0 0 0 7px;
1438
+ position: relative;
1439
+ text-align: center;
1440
+ white-space: nowrap;
1441
+ overflow:visible;
1442
+
1443
+ }
1444
+ .checkout-cart-index .cart .totals .checkout-types button.button span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
1445
+
1446
+ .cart .totals .checkout-types li { clear:both; margin:10px 0; }
1447
+ .cart .totals .checkout-types li a{ text-decoration: none; color: #636363;}
1448
+ .cart .totals .checkout-types li a:hover{ text-decoration:underline;}
1449
+
1450
+ /* Options Tool Tip */
1451
+ .item-options dt { font-weight:bold; font-style:italic; }
1452
+ .item-options dd { padding-left:10px; margin:0 0 6px; }
1453
+ .truncated { cursor:help; }
1454
+ .truncated a.dots { cursor:help; }
1455
+ .truncated a.details { cursor:help; }
1456
+ .truncated .truncated_full_value { position:relative; z-index:999; }
1457
+ .truncated .truncated_full_value dl { position:absolute; top:-99999em; left:-99999em; z-index:999; width:250px; padding:8px; border:1px solid #ddd; background-color:#f6f6f6; }
1458
+ .truncated .show dl { top:-20px; left:50%; }
1459
+ .col-left .truncated .show dl { left:15px; top:7px; }
1460
+ .col-right .truncated .show dl { left:-240px; top:7px; }
1461
+ /* ======================================================================================= */
1462
+
1463
+
1464
+ /* Checkout ============================================================================== */
1465
+ /********** < Common Checkout Styles */
1466
+ /* Shipping and Payment methods */
1467
+ .sp-methods { margin:0 0 8px; }
1468
+ .sp-methods dt { margin:13px 0 5px; font-weight:bold; }
1469
+ .sp-methods dd {}
1470
+ .sp-methods dd li { margin:5px 0; }
1471
+ .sp-methods label { font-weight:bold; color:#666; }
1472
+ .sp-methods .price { font-weight:bold; }
1473
+ .sp-methods .form-list { padding-left:20px; }
1474
+ .sp-methods .form-list li { margin:0 0 8px; }
1475
+ .sp-methods select.month { width:154px; margin-right:10px; }
1476
+ .sp-methods select.year { width:96px; }
1477
+ .sp-methods input.cvv { width:3em !important; }
1478
+
1479
+ .sp-methods .checkmo-list li { margin:0 0 5px; }
1480
+ .sp-methods .checkmo-list label { width:135px; padding-right:10px; text-align:right; }
1481
+ .sp-methods .checkmo-list address { float:left; }
1482
+
1483
+ .sp-methods .centinel-logos a { margin-right:3px; }
1484
+ .sp-methods .centinel-logos img { vertical-align:middle; }
1485
+
1486
+ .please-wait { float:right; }
1487
+ .please-wait img { vertical-align:middle; }
1488
+ .cvv-what-is-this { font-size:11px; cursor:help; margin-left:10px; }
1489
+
1490
+ /* Tooltip */
1491
+ .tool-tip { border:1px solid #7BA7C9; background:#EAF6FF; padding:15px 20px; position:absolute; z-index:9999; }
1492
+ .tool-tip .btn-close { margin:-9px -14px 0; text-align:right; }
1493
+ .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; }
1494
+ .tool-tip .tool-tip-content { padding:5px; }
1495
+
1496
+ /* Gift Messages */
1497
+ .gift-messages h3 { font-size:12px; font-weight:bold; color:#e87403; }
1498
+ .gift-messages p.control { color:#8e8d8b; }
1499
+ .gift-messages-form { position:relative; }
1500
+ .gift-messages-form label { float:none !important; position:static !important; }
1501
+ .gift-messages-form h4 { font-size:12px; font-weight:bold; color:#e87403; }
1502
+ .gift-messages-form .whole-order { margin:0 0 25px; }
1503
+ .gift-messages-form .item { margin:0 0 10px; }
1504
+ .gift-messages-form .item .product-img-box { float:left; width:75px; }
1505
+ .gift-messages-form .item .product-image { margin:0 0 7px; }
1506
+ .gift-messages-form .item .number { margin:0; font-weight:bold; text-align:center; color:#8a8987; }
1507
+ .gift-messages-form .item .details { margin-left:90px; }
1508
+ .gift-messages-form .item .details .product-name { font-size:13px; font-weight:bold; margin:0 0 10px; }
1509
+ .gift-messages-form .item .details .form-list .field { width:255px; }
1510
+ .gift-messages-form .item .details .form-list .input-box { width:240px; }
1511
+ .gift-messages-form .item .details .form-list input.input-text { width:234px; }
1512
+ .gift-messages-form .item .details .form-list li.wide .input-box { width:500px; }
1513
+ .gift-messages-form .item .details .form-list li.wide textarea { width:494px; }
1514
+
1515
+ .gift-message-link { font-size:11px; background:url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat; padding-right:7px; }
1516
+ .gift-message-link.expanded { background-position:100% -40px; }
1517
+ .gift-message-row { background:#f2efe9; }
1518
+ .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; }
1519
+
1520
+ /* Checkout Agreements */
1521
+ .checkout-agreements li { margin:30px 0; }
1522
+ .checkout-agreements .agreement-content { overflow:auto; height:12em; padding:10px; background-color:#fbfaf6; border:1px solid #bbb6a5; }
1523
+ .checkout-agreements .agree { margin:0; padding:10px 0 10px 11px; }
1524
+ .checkout-agreements .agree input.checkbox { margin-right:6px; }
1525
+ .checkout-agreements .agree label { font-weight:bold; color:#666; }
1526
+
1527
+ .opc .checkout-agreements { border:1px solid #d9dde3; border-width:0 1px; padding:5px 30px; }
1528
+ .opc .checkout-agreements li { margin:20px 0 0; }
1529
+ .opc .checkout-agreements .agreement-content { background-color:#fff; border-color:#e4e4e4; padding:5px; }
1530
+ .opc .checkout-agreements .agree { padding-left:6px; }
1531
+
1532
+ /* Centinel */
1533
+ .centinel {}
1534
+ .centinel .authentication { border:1px solid #ddd; background:#fff; }
1535
+ .centinel .authentication iframe { width:99%; height:400px; background:transparent !important; margin:0 !important; padding:0 !important; border:0 !important; }
1536
+
1537
+ .opc .centinel { border:1px solid #bbb6a5; border-width:0 1px 1px; padding:10px 30px; }
1538
+
1539
+ /* Generic Info Set */
1540
+ .info-set { background:#fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x; border:1px solid #bbb6a5; margin:0 0 25px; padding:20px; }
1541
+ .info-set h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1542
+ .info-set h3,
1543
+ .info-set h4 { font-size:13px; font-weight:bold; color:#E26703; }
1544
+ .info-set h2 a,
1545
+ .info-set h3 a,
1546
+ .info-set h4 a { font-weight:normal; }
1547
+ .info-set h2.legend { margin:-20px -20px 15px; padding:5px 10px; background:#f9f3e3; border-bottom:1px solid #bbafa0; position:relative; }
1548
+ .info-set h3.legend { margin:0 0 10px; color:#0a263c; }
1549
+ .info-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1550
+ .info-set .box { margin:0 0 15px; }
1551
+ .info-set .box h2 { color:#e26703; }
1552
+ .info-set .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1553
+ .info-set .data-table .product-name a { font-weight:bold !important; }
1554
+ .info-set .data-table .item-options { margin:5px 0 0; }
1555
+ /********** Common Checkout Styles > */
1556
+
1557
+ /* One Page Checkout */
1558
+ .block-progress { border:0; margin:0; float: left; border: 1px solid #d5d5d5;text-align: center;}
1559
+ .block-progress .block-title { border:0; padding:0; }
1560
+ .block-progress .block-title strong { font-size:16px; color:#fd9000; font-weight: normal; }
1561
+ .block-progress .block-content { background:none; float: left; width: 100%; }
1562
+ .block-progress dt { font-size:13px; font-weight:normal; line-height:1.35;border-top: 1px solid #d5d5d5;padding:2px 8px; color:#464646; }
1563
+ .block-progress dd { border-top:0; padding:8px 13px; margin:0 0 6px; }
1564
+ .block-progress dt.complete { margin:0;color:#fd9000; }
1565
+ .block-progress dd.complete {}
1566
+ .block-progress p { margin:0; }
1567
+
1568
+ .opc .buttons-set { margin-top:0; padding-top:2em; }
1569
+ .opc .buttons-set p.required { margin:0; padding:0 0 10px; }
1570
+ .opc .buttons-set .back-link small { display:none; }
1571
+ .opc .buttons-set .back-link a { background:url(../images/i_arrow-top.gif) 0 50% no-repeat; padding-left:16px; }
1572
+ .opc .buttons-set.disabled button.button { display:none; }
1573
+ .opc .buttons-set .please-wait { height:21px; line-height:21px; }
1574
+ .opc .ul { list-style:disc outside; padding-left:18px; }
1575
+
1576
+ .opc { position:relative; }
1577
+ .opc li.section {padding: 0 0 2px 0;}
1578
+
1579
+ .opc .step-title { border-width:0 1px; border-style:solid; border-color:#d5d5d5 #d5d5d5 #d5d5d5; background:#464646; padding:10px 8px; text-align:right; }
1580
+ .opc .step-title .number { float:left; background:#fd9000; border:1px solid #fd9000; padding:0 4px; margin:0 5px 0 0; font:bold 11px/14px arial, helvetica, sans-serif; color:#ffffff; }
1581
+ .opc .step-title h2 { float:left; margin:0; font:bold 13px/16px Arial, Helvetica, sans-serif; color:#ffffff; }
1582
+ .opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }
1583
+
1584
+ .opc .allow .step-title { background:#f8f8f8; border:1px solid #d5d5d5; color:#a4b3b9; cursor:pointer; }
1585
+ .opc .allow .step-title .number { background:#d5d5d5; border-color:#d5d5d5; color:#e7e7e7; }
1586
+ .opc .allow .step-title h2 { color:#d5d5d5; }
1587
+ /*.opc .allow .step-title a { display:block; }*/
1588
+
1589
+ .opc .active .step-title { background:#f8f8f8; border:1px solid #d5d5d5; padding-bottom:5px; color:#f18200; cursor:default; }
1590
+ .opc .active .step-title .number { background:#464646; border-color:#464646; color:#fff; }
1591
+ .opc .active .step-title h2 { color:#f18200; }
1592
+ /*.opc .active .step-title a { display:none; }*/
1593
+
1594
+ .opc .step { border:1px solid #bbafa0; border-top:0;border-right: 0; border-left: 0;border-bottom: 0;padding:15px 30px; position:relative; }
1595
+ .opc .step .tool-tip { right:30px; }
1596
+
1597
+ #opc-login .buttons-set { border-top:0; }
1598
+ #opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
1599
+ #opc-login h4 { font-size:1em; font-weight:bold; margin:0; color:#2f2f2f; }
1600
+
1601
+ #opc-shipping_method .buttons-set { border-top:0; }
1602
+ .opc .gift-messages-form { margin:0 -30px; background:#f6f1eb; border:1px solid #e9e4de; border-width:1px 0; padding:22px 24px 22px 30px; }
1603
+ .opc .gift-messages-form .inner-box { padding:5px; height:260px; overflow:auto; }
1604
+
1605
+ #opc-review .step { border:0; padding:0; }
1606
+ #opc-review .product-name { font-weight:bold; color:#0a263c; }
1607
+ #opc-review .item-options { margin:5px 0 0; }
1608
+ #opc-review .buttons-set { padding:20px 30px; border:1px solid #d9dde3; border-width:0 1px 1px; }
1609
+ #opc-review .buttons-set p { margin:0; line-height:40px; }
1610
+ #opc-review .buttons-set .please-wait { height:40px; line-height:40px; }
1611
+
1612
+ /* Multiple Addresses Checkout */
1613
+ .checkout-progress { padding:0 90px; margin:0 0 20px; }
1614
+ .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; }
1615
+ .checkout-progress li.active { border-top-color:#fd9000; color:#fd9000; }
1616
+
1617
+ .multiple-checkout h2 { font-size:13px; font-weight:bold; margin:0 0 10px; }
1618
+ .multiple-checkout h3,
1619
+ .multiple-checkout h4 { font-size:13px; font-weight:bold; color:#fd9000; }
1620
+ .multiple-checkout h2 a,
1621
+ .multiple-checkout h3 a,
1622
+ .multiple-checkout h4 a { font-weight:normal; }
1623
+ .multiple-checkout .data-table .product-name { font-size:1em !important; font-weight:bold !important; color:#1e7ec8 !important; }
1624
+ .multiple-checkout .data-table .product-name a { font-weight:bold !important; }
1625
+ .multiple-checkout .data-table .item-options { margin:5px 0 0; }
1626
+
1627
+ .multiple-checkout .gift-messages { margin:15px 0 0; }
1628
+
1629
+ .multiple-checkout .tool-tip { top:50%; margin-top:-120px; right:20px; }
1630
+
1631
+ .multiple-checkout .col2-set,
1632
+ .multiple-checkout .col3-set { border:1px solid #d5d5d5; margin:0 0 25px; padding:20px; }
1633
+ .multiple-checkout .col2-set h2.legend { margin:-20px -20px 15px; padding:5px 10px;border-bottom:1px solid #d5d5d5; position:relative; }
1634
+ .multiple-checkout .col2-set h3.legend { margin:0 0 10px; color:#0a263c; }
1635
+ .multiple-checkout .col2-set .divider { margin:0 -20px; padding:25px 0; position:relative; }
1636
+ .multiple-checkout .box { margin:0 0 15px; }
1637
+ .multiple-checkout .box h2 { color:#fd9000; }
1638
+
1639
+ .multiple-checkout .place-order .please-wait { float:right; padding:27px 7px 0 0; }
1640
+ .multiple-checkout .place-order .grand-total { float:right; height:71px; font-size:1.5em; padding:0 0 0 21px;overflow:hidden; }
1641
+ .multiple-checkout .place-order .grand-total .inner { float:left; height:57px; padding:14px 21px 0 0;}
1642
+ .multiple-checkout .place-order .grand-total .inner div { display:inline; }
1643
+ .multiple-checkout .place-order .grand-total big { display:inline; margin-right:12px; padding: 0 0 0 10px;}
1644
+ .multiple-checkout .place-order .grand-total .price { color:#fd9000; }
1645
+ .multiple-checkout .place-order .grand-total button.button span { font-size:16px; }
1646
+ .multiple-checkout .place-order .grand-total button.button span span { padding:0 45px 0 36px; }
1647
+
1648
+ /* Step 1 */
1649
+ .multiple-checkout .title-buttons button.button span { }
1650
+ #multiship-addresses-table td { padding:10px; }
1651
+ #multiship-addresses-table tfoot td { padding:5px 10px; }
1652
+ #multiship-addresses-table tfoot button.button span { }
1653
+
1654
+ /* Step 2 */
1655
+ .multiple-checkout .gift-messages-form .item .details .form-list { width:100%; overflow:hidden; }
1656
+ .multiple-checkout .gift-messages-form .item .details .form-list li { margin-right:-15px; }
1657
+ .multiple-checkout .gift-messages-form .item .details .form-list .field { width:230px; }
1658
+ .multiple-checkout .gift-messages-form .item .details .form-list .input-box { width:215px; }
1659
+ .multiple-checkout .gift-messages-form .item .details .form-list input.input-text { width:209px; }
1660
+ .multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box { width:445px; }
1661
+ .multiple-checkout .gift-messages-form .item .details .form-list li.wide textarea { width:439px; }
1662
+ .checkout-multishipping-shipping .box-sp-methods { border:1px solid #d5d5d5; padding:13px; position:relative; }
1663
+ .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; }
1664
+
1665
+ /* Step 3 */
1666
+ .checkout-multishipping-billing .multiple-checkout { position:relative; }
1667
+ /* ======================================================================================= */
1668
+
1669
+
1670
+ /* Account Login/Create Pages ============================================================ */
1671
+ .account-login .content { min-height:240px; padding:14px 21px; border:1px solid #d5d5d5; border-bottom:0; }
1672
+ .account-login .content h2 { font-weight:bold; font-size:13px; margin:0 0 14px; padding:0 0 5px 23px; border-bottom:1px solid #d5d5d5; background-position:0 1px; background-repeat:no-repeat; text-transform:uppercase; color:#fd9000; }
1673
+ .account-login .new-users h2 { background-image:url(../images/i_page1.gif)}
1674
+ .account-login .registered-users h2 { background-image:url(../images/i_page2.gif); }
1675
+ .account-login .buttons-set { border:1px solid #d5d5d5; border-top:0; margin:0; padding:8px 13px; border-top: 1px solid #d5d5d5;}
1676
+
1677
+ .account-create {}
1678
+ /* Account Login/Create Pages ============================================================ */
1679
+
1680
+
1681
+ /* My Account ============================================================================= */
1682
+ .my-account .title-buttons .link-rss { float:none; margin:0; }
1683
+
1684
+ /********** < Dashboard */
1685
+ .dashboard .welcome-msg { margin:0 8em 1.5em 0; }
1686
+ .dashboard .welcome-msg p { margin:0; }
1687
+ .dashboard .col2-set { margin:0 0 15px; }
1688
+
1689
+ /* General Box */
1690
+ .box-account { border-color:#d5d5d5 #d5d5d5 #d5d5d5 #d5d5d5; padding:15px 0; margin: 0 0 20px; }
1691
+ .box-account .box-head { border-bottom:1px solid #d9dde3; margin:0 0 10px; text-align:right; }
1692
+ .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;color:#fd9000; }
1693
+
1694
+ .dashboard .box .box-title {border-bottom: 1px dotted #d5d5d5;padding:0 0 2px; margin:0 0 8px; text-align:right; }
1695
+ .dashboard .box .box-title h3,
1696
+ .dashboard .box .box-title h4 { float:left; font-size:13px; font-weight:normal; margin:0; }
1697
+
1698
+ /* Block: Recent Orders */
1699
+ .dashboard .box-recent .box-head h2 { background-image:url(../images/i_folder-table.gif); }
1700
+
1701
+ /* Block: Account Information */
1702
+ .dashboard .box-info .box-head h2 { }
1703
+ .dashboard .box-info h4 { font-size:11px; font-weight:normal; text-transform:uppercase; }
1704
+
1705
+ /* Block: Reviews */
1706
+ .dashboard .box-reviews .box-head h2 { background-image:url(../images/i_ma-reviews.gif); }
1707
+ .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; }
1708
+ .dashboard .box-reviews .details { margin-left:20px; }
1709
+ .dashboard .box-reviews li.item { margin:0 0 7px; }
1710
+ .dashboard .box-reviews li.item.last { margin:0; }
1711
+ .dashboard .box-reviews .ratings { margin:7px 0 0; }
1712
+
1713
+ /* Block: Tags */
1714
+ .dashboard .box-tags .box-head h2 { }
1715
+ .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:#464646; }
1716
+ .dashboard .box-tags .details { margin-left:20px; }
1717
+ .dashboard .box-tags li.item { margin:0 0 7px; }
1718
+ .dashboard .box-tags li.item.last { margin:0; }
1719
+ .dashboard .box-tags .tags strong,
1720
+ .dashboard .box-tags .tags ul,
1721
+ .dashboard .box-tags .tags ul li { display:inline; }
1722
+ /********** Dashboard > */
1723
+
1724
+ /* Address Book */
1725
+ .addresses-list h2 { font-weight:bold; font-size:13px; color:#fd9000; text-transform:uppercase; }
1726
+ .addresses-list h3 { font-weight:bold; font-size:13px; }
1727
+ .addresses-list address { margin:0 0 3px; }
1728
+ .addresses-list p { margin:0; }
1729
+ .addresses-list a { font-weight:bold; }
1730
+ .addresses-list .link-remove { color:#646464; }
1731
+ .addresses-list .separator { margin:0 3px; }
1732
+ .addresses-list li.item { border:1px solid #d5d5d5; padding:10px 13px; margin:0 0 10px; }
1733
+ .addresses-list li.empty { background:none; border:0; padding:0; }
1734
+ .addresses-list li.empty p { font-weight:bold; }
1735
+ .addresses-list .addresses-additional li.item { background:none; border:0; padding:0; }
1736
+
1737
+ /* Order View */
1738
+ .order-info {border:1px solid #d5d5d5; padding:4px 8px; margin:0 0 8px; }
1739
+ .order-info dt,
1740
+ .order-info dd,
1741
+ .order-info ul,
1742
+ .order-info li { display:inline; }
1743
+ .order-info .current { font-weight:bold; }
1744
+ .order-info li { margin:0 3px; }
1745
+
1746
+ .order-date { margin:10px 0; }
1747
+
1748
+ .order-info-box { border:1px solid #d5d5d5; padding:12px 15px; margin:0 0 15px; }
1749
+ .order-info-box h2 { font-weight:bold; font-size:13px; }
1750
+ .order-info-box .box-payment p { margin:0 0 3px; }
1751
+ .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
1752
+
1753
+ .order-items { width:100%; overflow-x:auto; }
1754
+ .order-items h2,
1755
+ .order-items h3 { font-weight:bold; font-size:13px; }
1756
+ .order-items .product-name { font-size:1em !important; font-weight:bold !important; }
1757
+ .order-items .link-print { float:right; color:#1e7ec8; font-weight:normal; }
1758
+ .order-items p .link-print { float:none; }
1759
+
1760
+ .order-gift-message { margin:15px 0; }
1761
+ .gift-message dt strong { color:#666; }
1762
+ .gift-message dd { margin:5px 0 0; font-size:13px; }
1763
+
1764
+ .order-about { margin:15px 0; }
1765
+ .order-about dt { font-weight:bold; }
1766
+ .order-about dd { font-size:13px; margin:0 0 7px; }
1767
+
1768
+ .tracking-table { margin:0 0 15px; }
1769
+ .tracking-table th { font-weight:bold; white-space:nowrap; }
1770
+ .tracking-table th,
1771
+ .tracking-table td { padding:1px 5px 0 0; }
1772
+
1773
+ .tracking-table-popup { width:100%; }
1774
+ .tracking-table-popup th { font-weight:bold; white-space:nowrap; }
1775
+ .tracking-table-popup th,
1776
+ .tracking-table-popup td { padding:1px 8px; }
1777
+
1778
+ /* Order Print Pages */
1779
+ .page-print .print-head { margin:0 0 15px; }
1780
+ .page-print .print-head .logo { float:left; }
1781
+ .page-print .print-head address { float:left; margin-left:15px; }
1782
+ .page-print h1 { font-size:16px; font-weight:bold; }
1783
+ .page-print h2,
1784
+ .page-print h3 { font-size:13px; font-weight:bold; }
1785
+ .page-print h2.h2 { font-size:16px; font-weight:bold; }
1786
+ .page-print .order-date { background:url(../images/bkg_divider1.gif) 0 100% repeat-x; padding:0 0 10px; margin:0 0 10px; }
1787
+ .page-print .col2-set { margin:0 0 10px; }
1788
+ /* Price Rewrites */
1789
+ .page-print .gift-message-link { display:none; }
1790
+ .page-print .price-excl-tax,
1791
+ .page-print .price-incl-tax { display:block; white-space:nowrap; }
1792
+ .page-print .cart-price,
1793
+ .page-print .price-excl-tax .label,
1794
+ .page-print .price-incl-tax .label,
1795
+ .page-print .price-excl-tax .price,
1796
+ .page-print .price-incl-tax .price { display:inline; }
1797
+
1798
+ /* My Wishlist */
1799
+ .my-wishlist .data-table td { padding:10px; }
1800
+ .my-wishlist .product-image { display:block; width:113px; height:113px; margin:0 0 5px; }
1801
+ .my-wishlist textarea { display:block; width:97%; height:109px; }
1802
+ .my-wishlist .buttons-set { margin-top:2em; }
1803
+ .my-wishlist .buttons-set button.button { float:none; }
1804
+ .my-wishlist .buttons-set .btn-add span,
1805
+ .my-wishlist .buttons-set .btn-share span { }
1806
+ #wishlist-table .add-to-links { white-space:nowrap; }
1807
+
1808
+ /* My Tags */
1809
+ .my-tag-edit { float:left; margin:0 0 10px; }
1810
+ .my-tag-edit .btn-remove { float:right; margin:5px 0 0 5px; }
1811
+ #my-tags-table { clear:both; }
1812
+ #my-tags-table td { padding:10px; }
1813
+ #my-tags-table .add-to-links { white-space:nowrap; }
1814
+
1815
+ /* My Reviews */
1816
+ #my-reviews-table td { padding:10px; }
1817
+
1818
+ .product-review .product-img-box { float:left; width:140px; }
1819
+ .product-review .product-img-box .product-image { display:block; width:125px; height:125px; }
1820
+ .product-review .product-img-box .label { font-size:11px; margin:0 0 3px; }
1821
+ .product-review .product-img-box .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
1822
+ .product-review .product-details { margin-left:150px; }
1823
+ .product-review .product-name { font-size:16px; font-weight:bold; margin:0 0 10px; }
1824
+ .product-review h3 { font-size:12px; margin:0 0 3px; color:#2f2f2f; }
1825
+ .product-review .ratings-table { margin:0 0 10px; }
1826
+ .product-review dt { font-weight:bold; }
1827
+ .product-review dd { font-size:13px; margin:5px 0 0; }
1828
+
1829
+ /* Billing Agreements */
1830
+ .billing-agreements .form-list li select { float:left; }
1831
+ .billing-agreements .form-list li button.button { float:left; margin-left:10px; }
1832
+ .billing-agreements .table-caption { font-weight:bold; font-size:13px; }
1833
+ /* ======================================================================================= */
1834
+
1835
+
1836
+ /* Footer ================================================================================ */
1837
+ .footer-container {background: url(../images/bkg_header.png) repeat left top;}
1838
+ .footer { width:1000px; margin:0 auto; padding:20px 0 0 0;}
1839
+ .footer .store-switcher { display:inline; margin:0 5px 0 0; color:#fff; }
1840
+ .footer .store-switcher label { font-weight:bold; vertical-align:middle; }
1841
+ .footer .store-switcher select { padding:0; vertical-align:middle; }
1842
+ .footer a { color:#fff; text-decoration:none; }
1843
+ .footer a:hover { text-decoration:underline; }
1844
+ .footer .bugs { margin:13px 0 0; color:#ecf3f6; }
1845
+ .footer .bugs a { color:#ecf3f6; text-decoration:underline; }
1846
+ .footer .bugs a:hover { text-decoration:none; }
1847
+ .footer address {color:#fd9000; clear: both; float: left; padding: 0 0 20px;}
1848
+ .footer address a { color:#ecf3f6; text-decoration:underline; }
1849
+ .footer address a:hover { text-decoration:none; }
1850
+ .footer ul { display:inline; float: left; padding: 0 15px 22px 0; }
1851
+ .footer ul.links { display:block; }
1852
+ .footer li { display:inline;padding:0 7px 0 0; }
1853
+ .footer li.last { background:none !important; padding-right:0 !important; }
1854
+ .footer-container .bottom-container { margin:0 0 5px; }
1855
+ /* ======================================================================================= */
1856
+
1857
+ /* Sample Data============================================================================ */
1858
+ .home-callout { margin-bottom:12px; }
1859
+ .home-callout img { display:block }
1860
+ .home-spot { float:left; width:470px; margin-left:20px; }
1861
+ .best-selling h3 { margin:12px 0 6px 0; color:#e25203; font-size:1.2em; }
1862
+ .best-selling table { border-top:1px solid #ccc; }
1863
+ .best-selling tr.odd { background:#eee url(../images/best_selling_tr_odd_bg.gif) 0 100% repeat-x; }
1864
+ .best-selling tr.even { background:#fff url(../images/best_selling_tr_even_bg.gif) 0 100% repeat-x; }
1865
+ .best-selling td { width:50%; border-bottom:1px solid #ccc; padding:8px 10px 8px 8px; font-size:11px; }
1866
+ .best-selling .product-img { float:left; border:2px solid #dcdcdc; }
1867
+ .best-selling .product-description { margin-left:107px; line-height:1.3em; }
1868
+ .best-selling a.product-name,
1869
+ .home-spot .best-selling a.product-name:hover { color:#203548; }
1870
+ /* ======================================================================================= */
1871
+
1872
+
1873
+ /* Clears ================================================================================ */
1874
+ .clearer:after,
1875
+ .header-container:after,
1876
+ .header-container .top-container:after,
1877
+ .header:after,
1878
+ .header .quick-access:after,
1879
+ #nav:after,
1880
+ .main:after,
1881
+ .footer:after,
1882
+ .footer-container .bottom-container:after,
1883
+ .col-main:after,
1884
+ .col2-set:after,
1885
+ .col3-set:after,
1886
+ .col3-layout .product-options-bottom .price-box:after,
1887
+ .col4-set:after,
1888
+ .search-autocomplete li:after,
1889
+ .block .block-content:after,
1890
+ .block .actions:after,
1891
+ .block li.item:after,
1892
+ .block-poll li:after,
1893
+ .block-layered-nav .currently li:after,
1894
+ .page-title:after,
1895
+ .products-grid:after,
1896
+ .products-list li.item:after,
1897
+ .box-account .box-head:after,
1898
+ .dashboard .box .box-title:after,
1899
+ .box-reviews li.item:after,
1900
+ .box-tags li.item:after,
1901
+ .pager:after,
1902
+ .sorter:after,
1903
+ .ratings:after,
1904
+ .add-to-box:after,
1905
+ .add-to-cart:after,
1906
+ .product-essential:after,
1907
+ .product-collateral:after,
1908
+ .product-view .product-img-box .more-views ul:after,
1909
+ .product-view .box-tags .form-add:after,
1910
+ .product-options .options-list li:after,
1911
+ .product-options-bottom:after,
1912
+ .product-review:after,
1913
+ .cart:after,
1914
+ .cart-collaterals:after,
1915
+ .cart .crosssell li.item:after,
1916
+ .opc .step-title:after,
1917
+ .checkout-progress:after,
1918
+ .multiple-checkout .place-order:after,
1919
+ .group-select li:after,
1920
+ .form-list li:after,
1921
+ .form-list .field:after,
1922
+ .buttons-set:after,
1923
+ .page-print .print-head:after,
1924
+ .advanced-search-summary:after,
1925
+ .gift-messages-form .item:after,
1926
+ .send-friend .form-list li p:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
1927
+ /* ======================================================================================= */
1928
+
1929
+
1930
+
1931
+
1932
+ .welcome-logo {float: left;margin: 45px 0 0;}
1933
+ .language-curreny {float: right; clear: both; width: 100%;}
1934
+ .cart-nav {float: right; width: 180px; line-height: 24px;}
1935
+ .cart-nav .navi-cart {line-height: 41px; color: #ffffff; float: left;}
1936
+ .cart-nav .first {float: left;}
1937
+ .cart-nav .first a {text-decoration: none;}
1938
+ .cart-nav .first strong {background: url(../images/bkg_cart-nav.png) no-repeat left top; width: 37px; height: 29px;padding: 0 25px;float: left; margin: 5px 0;}
1939
+ .cart-nav .first strong span {float: right; font-size: 16px; font-weight: bold;line-height: 29px; color: #ffffff;}
1940
+ .cart-nav .last { float: left;font-size: 14px;font-weight: normal; padding: 7px 0 0;}
1941
+ .cart-nav .last a { text-decoration: none;}
1942
+ .cart-nav .last strong {font-weight: normal; text-transform: uppercase;color: #ffffff;}
1943
+ .cart-nav .last strong span {color: #ffffff; padding: 0 0 0 5px;}
1944
+
1945
+ .home-bann {float: left; margin: 13px 0 0 0;}
1946
+ .banner-home {border: 1px solid #d5d5d5;}
1947
+ .home-adv {float: left; clear: both; width: 1000px; margin: 10px 0 0;}
1948
+ .home-adv li {float: left; padding: 0 21px 0 0;}
1949
+ .home-adv li.last {float: right; padding: 0;}
1950
+
1951
+ .featured {float: left; clear: both; width: 998px; border: 1px solid #d5d5d5; margin: 20px 0 0;}
1952
+ .featured .featured-category .top-site {float: left; background: url(../images/bkg_top-site.png) no-repeat left top !important; width: 100%; height: 21px;}
1953
+ .featured .featured-category .sidebarblock-content {width: 998px;margin: 0;float: left; background: url(../images/bkg_sidebarblock-content.png) repeat-y left top !important;}
1954
+ .featured .featured-category .bot-site {float: left; background: url(../images/bkg_bot-site.png) no-repeat left top !important; width: 100%; height: 23px;}
1955
+ .featured .page-title {float: left; margin: 0; border: 0 none; width: 100%;}
1956
+ .featured .page-title strong {background: url(../images/bkg_title.png) no-repeat scroll 95% 50% transparent; float: left; width: 100%;}
1957
+ .featured .page-title strong span {font-size: 16px; color: #fd9000; padding: 30px; font-weight: normal;}
1958
+ .featured-category .product {float: left; padding: 0 22px;}
1959
+ .featured-category ul{float: left;}
1960
+ .featured-category li {float: left; text-align: center;padding: 5px 0 0;}
1961
+ .featured-category li.last .product-image {border: 0 none;}
1962
+ .featured-category .product-image {width: 158px; height: 157px; border-right: 1px solid #d5d5d5; display: block; padding: 10px 0 0;}
1963
+ .featured-category .product-name {font-size: 14px; color: #464646;}
1964
+
1965
+
1966
+ .maincp-content {float: left; clear: both; width: 1000px; margin: 27px 0 0;}
1967
+ .maincp-left {float: left; width: 200px;}
1968
+ .maincp-right {float: right; width: 786px; border: 1px solid #d5d5d5;}
1969
+ .maincp-right .top-site strong span {color: #fd9000; font-weight: normal; font-size: 16px; padding: 0 0 0 18px;}
1970
+ .maincp-right .top-site strong {
1971
+ background: url(../images/bkg_title-newproduct.png) no-repeat scroll 95% 50% transparent;
1972
+ float: left;
1973
+ width: 100%;
1974
+ }
1975
+
1976
+
1977
+ .block-cart .top-site {float: left; background: url(../images/bkg_top-site-block-left.png) no-repeat left top !important; width: 100% !important; height: 23px;}
1978
+ .block-cart .sidebarblock-content {width: 100% !important;float: left; background: url(../images/bkg_sidebarblock-content-left.png) repeat-y left top !important; margin: 0 !important;}
1979
+ .block-cart .bot-site {float: left; background: url(../images/bkg_bot-site-block-left.png) no-repeat left top !important; width: 100% !important; height: 23px;}
1980
+
1981
+ .maincp-right .sidebarblock-content .page-title {border: 0 none; float: left;}
1982
+ .maincp-right .sidebarblock-content strong {
1983
+ background: url(../images/bkg_title-newproduct.png) no-repeat scroll 115% 0 transparent;
1984
+ float: left;
1985
+ width: 100% !important;
1986
+ height: 7px;
1987
+ }
1988
+ .maincp-right .sidebarblock-content strong span {
1989
+ color: #FD9000;
1990
+ font-size: 16px;
1991
+ margin: -10px 0 0;
1992
+ float: left;
1993
+ font-weight: normal;
1994
+ width: 100%;
1995
+ /* min-width: 100px */
1996
+ }
1997
+ .maincp-right .top-site {float: left; width: 100%; height: 21px;}
1998
+ .maincp-right .sidebarblock-content {width: 756px !important; padding: 0 15px; float: left;}
1999
+ .maincp-right .bot-site {float: left; width: 100%; height: 23px;}
2000
+ .maincp-right .sidebarblock-content .products-grid {width: 756px; clear: both; margin: 15px 0 0;}
2001
+ .maincp-right .sidebarblock-content .products-grid .add-to-links {display: none;}
2002
+
2003
+
2004
+ .catalog-category-view .ratings ,
2005
+ .catalog-category-view .add-to-links {display: none;}
2006
+
2007
+
2008
+ .main .block .block-title {width: 100%;}
2009
+ .block-compare {clear: both; border: 1px solid #D5D5D5; float: left;}
2010
+ .block-poll {clear: both; border: 1px solid #D5D5D5; float: left;}
2011
+ .block-tags {clear: both; border: 1px solid #D5D5D5; float: left;}
2012
+ .block-subscribe {clear: both; border: 1px solid #D5D5D5; float: left;}
2013
+
2014
+
2015
+ .block-layered-nav .top-site {float: left; background: url(../images/bkg_top-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2016
+ .block-layered-nav .sidebarblock-content {width: 100% !important;float: left; background: url(../images/bkg_sidebarblock-content-left.png) repeat-y left top !important;}
2017
+ .block-layered-nav .bot-site {float: left; background: url(../images/bkg_bot-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2018
+
2019
+
2020
+
2021
+ .col-main .top-site {float: left; background: url(../images/bkg_top-site-category.png) no-repeat left top ; width: 100%; height: 23px;}
2022
+ .col-main .sidebarblock-content {width: 785px;float: left; background: url(../images/bkg_sidebarblock-content-category.png) repeat-y left top; margin: 0px 0 0;}
2023
+ .col-main .bot-site {float: left; background: url(../images/bkg_bot-site-category.png) no-repeat left top;height: 23px; clear: both; width: 785px;}
2024
+
2025
+
2026
+ .block-compare .top-site {float: left; background: url(../images/bkg_top-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2027
+ .block-compare .sidebarblock-content {width: 100%;float: left; background: url(../images/bkg_sidebarblock-content-left.png) repeat-y left top !important;}
2028
+ .block-compare .bot-site {float: left; background: url(../images/bkg_bot-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2029
+
2030
+
2031
+ .block-poll .top-site {float: left; background: url(../images/bkg_top-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2032
+ .block-poll .sidebarblock-content {width: 100%;float: left; background: url(../images/bkg_sidebarblock-content-left.png) repeat-y left top !important;}
2033
+ .block-poll .bot-site {float: left; background: url(../images/bkg_bot-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2034
+
2035
+
2036
+ .block-tags .top-site {float: left; background: url(../images/bkg_top-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2037
+ .block-tags .sidebarblock-content {width: 100%;float: left; background: url(../images/bkg_sidebarblock-content-left.png) repeat-y left top !important;}
2038
+ .block-tags .bot-site {float: left; background: url(../images/bkg_bot-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2039
+
2040
+ .block-subscribe .top-site {float: left; background: url(../images/bkg_top-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2041
+ .block-subscribe .sidebarblock-content {width: 100%;float: left; background: url(../images/bkg_sidebarblock-content-left.png) repeat-y left top !important;}
2042
+ .block-subscribe .bot-site {float: left; background: url(../images/bkg_bot-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2043
+
2044
+ .block .top-site {float: left; background: url(../images/bkg_top-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2045
+ .block .sidebarblock-content {width: 100%;float: left; background: url(../images/bkg_sidebarblock-content-left.png) repeat-y left top !important;}
2046
+ .block .bot-site {float: left; background: url(../images/bkg_bot-site-block-left.png) no-repeat left top !important; width: 100%; height: 23px;}
2047
+
2048
+ .data-table {border: 1px solid #d5d5d5; width: 100%;}
2049
+ .catalog-product-view .col-main {border: 0 none;}
2050
+ .catalog-product-view .col-main .sidebarblock-content {
2051
+ background: url(../images/bkg_sidebarblock-content-category.png) repeat-y scroll left top transparent !important;
2052
+ float: left;
2053
+ padding: 0 15px 15px;
2054
+ width: 756px;
2055
+ }
2056
+
2057
+ .catalog-product-view .col-main .top-site {
2058
+ background: url(../images/bkg_top-site-category.png) no-repeat scroll left top transparent !important;
2059
+ float: left;
2060
+ height: 17px;
2061
+ width: 100%;
2062
+ }
2063
+
2064
+
2065
+ .cart-table {width: 100%;}
2066
+ .cart-table thead th {border-bottom: 1px solid #d5d5d5 !important;}
2067
+ .block-cart .actions button.button {
2068
+ float: right;
2069
+ padding: 0;
2070
+ margin: 0;
2071
+ clear: both;
2072
+ }
2073
+
2074
+ button.btn-update {float: right;}
2075
+
2076
+
2077
+
2078
+
2079
+
2080
+ .customer-address-index .main .my-account,
2081
+ .review-customer-view .main .my-account,
2082
+ .sales-order-view .main .my-account,
2083
+ .wishlist-index-share .main .my-account,
2084
+ .tag-customer-view .main .my-account,
2085
+ .newsletter-manage-index .main .my-account,
2086
+ .downloadable-customer-products .main .my-account,
2087
+ .wishlist-index-index .main .my-account,
2088
+ .review-customer-index .main .my-account,
2089
+ .tag-customer-index .main .my-account,
2090
+ .sales-recurring-profile-index .main .my-account,
2091
+ .sales-billing-agreement-index .main .my-account,
2092
+ .sales-order-history .main .my-account,
2093
+ .customer-address-form .main .my-account,
2094
+ .customer-account-edit .main .my-account,
2095
+ .customer-account-index .main .my-account {padding: 0 15px;}
2096
+
2097
+
2098
+
2099
+
2100
+ .customer-address-index .main,
2101
+ .review-customer-view .main,
2102
+ .checkout-multishipping-overview .main,
2103
+ .checkout-multishipping-billing .main,
2104
+ .checkout-multishipping-shipping .main,
2105
+ .checkout-multishipping-addresses .main,
2106
+ .sales-order-view .main,
2107
+ .checkout-onepage-success .main,
2108
+ .checkout-onepage-index .main,
2109
+ .catalog-seo-sitemap-product .main,
2110
+ .catalog-seo-sitemap-category .main,
2111
+ .wishlist-index-share .main,
2112
+ .tag-customer-view .main,
2113
+ .customer-account-login .main,
2114
+ .contacts-index-index .main,
2115
+ .newsletter-manage-index .main,
2116
+ .downloadable-customer-products .main,
2117
+ .wishlist-index-index .main,
2118
+ .review-customer-index .main,
2119
+ .tag-customer-index .main,
2120
+ .sales-recurring-profile-index .main,
2121
+ .sales-billing-agreement-index .main,
2122
+ .sales-order-history .main,
2123
+ .customer-address-form .main,
2124
+ .customer-account-edit .main,
2125
+ .customer-account-index .main {margin: 15px auto 0;}
2126
+
2127
+
2128
+ .customer-account-logoutsuccess .col-main,
2129
+ .checkout-cart-index .col-main {margin: 10px 0 0;}
2130
+
2131
+ .customer-account-logoutsuccess .page-title,
2132
+ .checkout-cart-index .col-main .page-title {border: 0 none;}
2133
+ .checkout-cart-index .col-main a {color: #fd9000;}
2134
+
2135
+
2136
+
2137
+ .wishlist-index-index .data-table {width: 100%;}
2138
+ .wishlist-index-index .data-table tbody td {vertical-align: top;}
2139
+
2140
+ .tag-customer-view .data-table {width: 100%;}
2141
+ .tag-customer-view .pager {margin: 10px 0;}
2142
+
2143
+ .catalog-seo-sitemap-category .sitemap li a {text-decoration: none;}
2144
+ .catalog-seo-sitemap-category .sitemap li a:hover {text-decoration: underline;}
2145
+
2146
+ .catalog-seo-sitemap-product .sitemap li a {text-decoration: none;}
2147
+ .catalog-seo-sitemap-product .sitemap li a:hover {text-decoration: underline;}
2148
+
2149
+ .block-wishlist {float: left; border: 1px solid #d5d5d5;}
2150
+
2151
+ .cms-customer-service .col3-layout .col-wrapper {float: left; width: 775px;}
2152
+ .cms-customer-service .col3-layout .col-wrapper .col-main {margin-left: 17px; width: 556px;}
2153
+
2154
+ .checkout-onepage-index .data-table {width:100%; border-width: 0 1px 1px;}
2155
+ .checkout-onepage-index .btn-checkout {margin: 7px 0 0; float: right;}
2156
+
2157
+
2158
+ .sales-order-view .price-excl-tax .price {display: inline;}
2159
+ .sales-order-view .price-excl-tax {display: inline;}
2160
+ .sales-order-view .data-table tfoot tr.first td {border-top: 0 none;}
2161
+ .sales-order-view .data-table thead tr.first th {border-bottom: 1px solid #d5d5d5;}
2162
+
2163
+
2164
+ .sales-order-print .data-table thead tr.first th {border-bottom: 1px solid #d5d5d5;}
2165
+ .sales-order-print .data-table tfoot tr.first td {border-top: 0 none;}
2166
+
2167
+
2168
+ .checkout-multishipping-addresses .data-table {width: 100%;}
2169
+ .checkout-multishipping-addresses .data-table thead tr.first th {border-bottom: 1px solid #d5d5d5;}
2170
+ .checkout-multishipping-addresses .page-title button.button {float: right;}
2171
+ .checkout-multishipping-addresses .page-title {padding: 0 0 10px;}
2172
+
2173
+ .checkout-multishipping-shipping .data-table {width: 100%;}
2174
+ .checkout-multishipping-shipping .data-table thead tr.first th {border-bottom: 1px solid #d5d5d5;}
2175
+
2176
+ .checkout-multishipping-overview .data-table {width: 100%;}
2177
+
2178
+ .page-popup .data-table {border: 0 none;}
2179
+ .page-popup .compare-table tr td button.button {margin: 0 535px;}
2180
+ .page-popup .compare-table .add-to-links {margin: 0 538px;}
2181
+ .page-popup .price-box {text-align: center;}
2182
+
2183
+ .review-product-list .product-view .sidebarblock-content {padding: 15px;width: 755px;}
2184
+ .review-product-list .product-view .sidebarblock-content .data-table {width: 100%;}
2185
+ .review-product-list .product-view .sidebarblock-content .data-table thead tr.first th {border-bottom: 1px solid #d5d5d5;}
2186
+
2187
+
2188
+ .review-customer-index .data-table {width: 100%;}
2189
+ .review-customer-index .my-account .pager {padding: 10px 0;}
2190
+ .review-customer-view .my-account .product-review .product-img-box {float:left; width: 170px; text-align: center;}
2191
+ .review-customer-view .my-account .product-review .product-img-box .product-image {float:left;margin: 0 0 0 21px;}
2192
+ .review-customer-view .my-account .product-review .rating-box {float:left; margin: 0 0 0 45px;}
2193
+ .review-customer-view .my-account .product-review .rating-links {float:left;}
2194
+ .review-customer-view .my-account .product-details .rating-box{float:left; margin: 0;}
2195
+
2196
+
2197
+ .customer-address-index .title-buttons button.button {float: right;}
2198
+ .customer-address-index .page-title {padding: 10px 0;}
2199
+
2200
+ .coin-slider { overflow: hidden; zoom: 1; position: relative;padding:0 0 25px; }
2201
+ .cs-buttons {float: right; position: absolute; bottom: 0; right: 490px;}
2202
+ .cs-buttons a { margin-left: 10px;float: left;background: url(../images/btn-no-active-slider.png) no-repeat left top; color: #B8C4CF; text-indent: -1000px;height: 15px; width: 14px;}
2203
+ .cs-active { background: url(../images/btn-active-slider.png) no-repeat left top !important; color: #FFFFFF; height: 15px; width: 14px; text-indent:-999; }
2204
+
2205
+
2206
+
2207
+
2208
+ .checkout-cart-index .title-buttons button.button span{
2209
+ background: url(../images/bkg_button-hover.png) no-repeat scroll 0 0 transparent;
2210
+ color: white;
2211
+ float: left;
2212
+ font-size: 12px;
2213
+ font-weight: bold;
2214
+ height: 27px;
2215
+ text-transform: uppercase;
2216
+ line-height: 27px;
2217
+ padding: 0 0 0 7px;
2218
+ position: relative;
2219
+ text-align: center;
2220
+ white-space: nowrap;
2221
+ overflow:visible;
2222
+
2223
+ }
2224
+ .checkout-cart-index .title-buttons button.button span span{background-position: 100% 0; padding: 0 8px 0 0; font-size:12px; font-weight:normal; color:white; text-transform: capitalize;}
2225
+
2226
+
2227
+ .checkout-onepage-index .data-table tr.last th {border-bottom: 1px solid #d5d5d5 !important;}
2228
+
2229
+ .data-table tr.last th {border-bottom: 1px solid #d5d5d5;}
2230
+
2231
+ .sales-order-history .data-table tbody th,
2232
+ .sales-order-history .data-table tbody td { border-bottom:1px solid #d5d5d5; border-right:1px solid #d5d5d5;vertical-align: middle; text-align: center; }
2233
+
2234
+
2235
+ .tag-product-list .message li {margin: 0 !important;}
2236
+ .tag-product-list .page-title {
2237
+ margin: 0 !important;
2238
+ background: url(../images/bkg_sidebarblock-content-category.png) repeat-y scroll left top transparent;
2239
+ float: left;
2240
+ margin: 0;
2241
+ width: 100%;
2242
+ }
2243
+ .catalogsearch-result-index .page-title {
2244
+ margin: 0 !important;
2245
+ background: url(../images/bkg_sidebarblock-content-category.png) repeat-y scroll left top transparent;
2246
+ float: left;
2247
+ margin: 0;
2248
+ width: 100%;
2249
+ }
2250
+
2251
+ .tag-product-list .page-title h1 {padding: 0 0 0 15px;}
2252
+ .catalogsearch-result-index .page-title h1 {padding: 0 0 0 15px;}
2253
+
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+
2261
+
2262
+
2263
+
2264
+
2265
+
2266
+
2267
+
skin/frontend/default/car_store/images/adv1.png ADDED
Binary file
skin/frontend/default/car_store/images/adv2.png ADDED
Binary file
skin/frontend/default/car_store/images/adv3.png ADDED
Binary file
skin/frontend/default/car_store/images/banner.png ADDED
Binary file
skin/frontend/default/car_store/images/banner2.png ADDED
Binary file
skin/frontend/default/car_store/images/best_selling_tr_even_bg.gif ADDED
Binary file
skin/frontend/default/car_store/images/best_selling_tr_odd_bg.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_account_box.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-actions.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-currency.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-layered-dd.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-layered-dt.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-layered-label.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-layered-li.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-layered-title.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-layered1.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-title-account.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_block-title.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_body.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_bot-site-block-left.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_bot-site-category.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_bot-site.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_button-hover.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_button-search.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_button.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_buttons-set1.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_cart-nav.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_checkout.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_collapse-gm.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_collapse.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_divider1.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_form-search.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_form-search.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_grand-total.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_grid.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_header.jpg ADDED
Binary file
skin/frontend/default/car_store/images/bkg_header.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_hover-first-navigation.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_img-product-view.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_img-product.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_login-box.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_main.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_main1.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_main2.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_nav.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_nav0.jpg ADDED
Binary file
skin/frontend/default/car_store/images/bkg_nav1.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_nav2.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_nav2.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_navigation.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_opc-title-off.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_pipe1.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_pipe2.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_pipe3.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_product-view.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_product_collateral.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_rating.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sepa-nav.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sidebarblock-content-category.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sidebarblock-content-left.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sidebarblock-content.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sorter-toolbar.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sp-methods.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sub-hover.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_sub.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_tfoot.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_th-v.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_th.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_title-newproduct.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_title.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_toolbar.gif ADDED
Binary file
skin/frontend/default/car_store/images/bkg_top-site-block-left.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_top-site-category.png ADDED
Binary file
skin/frontend/default/car_store/images/bkg_top-site.png ADDED
Binary file
skin/frontend/default/car_store/images/btn-active-slider.png ADDED
Binary file
skin/frontend/default/car_store/images/btn-no-active-slider.png ADDED
Binary file
skin/frontend/default/car_store/images/btn_checkout.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_gm-close.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_google_checkout.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_paypal_checkout.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_place_order.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_proceed_to_checkout.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_proceed_to_checkout_dis.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_remove.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_remove2.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_search.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_trash.gif ADDED
Binary file
skin/frontend/default/car_store/images/btn_window_close.gif ADDED
Binary file
skin/frontend/default/car_store/images/calendar.gif ADDED
Binary file
skin/frontend/default/car_store/images/catalog/product/placeholder/image.jpg ADDED
Binary file
skin/frontend/default/car_store/images/catalog/product/placeholder/small_image.jpg ADDED
Binary file
skin/frontend/default/car_store/images/catalog/product/placeholder/thumbnail.jpg ADDED
Binary file
skin/frontend/default/car_store/images/cvv.gif ADDED
Binary file
skin/frontend/default/car_store/images/cvv.jpg ADDED
Binary file
skin/frontend/default/car_store/images/fam_book_open.png ADDED
Binary file
skin/frontend/default/car_store/images/featured1.png ADDED
Binary file
skin/frontend/default/car_store/images/featured2.png ADDED
Binary file
skin/frontend/default/car_store/images/featured3.png ADDED
Binary file
skin/frontend/default/car_store/images/featured4.png ADDED
Binary file
skin/frontend/default/car_store/images/featured5.png ADDED
Binary file
skin/frontend/default/car_store/images/featured6.png ADDED
Binary file
skin/frontend/default/car_store/images/free_shipping_callout.jpg ADDED
Binary file
skin/frontend/default/car_store/images/grid-cal.gif ADDED
Binary file
skin/frontend/default/car_store/images/home_left_callout.jpg ADDED
Binary file
skin/frontend/default/car_store/images/home_main_callout.jpg ADDED
Binary file
skin/frontend/default/car_store/images/i_arrow-top.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_asc_arrow.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_availability_only.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_availability_only_arrow.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-cart.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-currency.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-list.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-poll.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-related.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-subscribe.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-tags.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-viewed.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_block-wishlist.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_desc_arrow.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_discount.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_folder-table.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_ma-info.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_ma-reviews.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_ma-tags.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_msg-error.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_msg-note.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_msg-success.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_notice.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_page1.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_page2.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_pager-next.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_pager-prev.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_print.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_rss-big.png ADDED
Binary file
skin/frontend/default/car_store/images/i_rss.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_search_criteria.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_shipping.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_tag_add.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_tier.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_type_grid.gif ADDED
Binary file
skin/frontend/default/car_store/images/i_type_list.gif ADDED
Binary file
skin/frontend/default/car_store/images/logo.gif ADDED
Binary file
skin/frontend/default/car_store/images/logo.png ADDED
Binary file
skin/frontend/default/car_store/images/logo_email.gif ADDED
Binary file
skin/frontend/default/car_store/images/logo_print.gif ADDED
Binary file
skin/frontend/default/car_store/images/magnifier_handle.gif ADDED
Binary file
skin/frontend/default/car_store/images/media/404_callout1.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/404_callout2.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/about_us_img.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/best_selling_img01.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/best_selling_img02.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/best_selling_img03.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/best_selling_img04.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/best_selling_img05.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/best_selling_img06.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/cell_phone_landing_banner1.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/col_left_callout.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/col_right_callout.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/electronics_cellphones.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/electronics_digitalcameras.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/electronics_laptops.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/furniture_callout_spot.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/furnitures_bed_room.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/furnitures_living_room.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/head_electronics_cellphones.gif ADDED
Binary file
skin/frontend/default/car_store/images/media/head_electronics_digicamera.gif ADDED
Binary file
skin/frontend/default/car_store/images/media/head_electronics_laptops.gif ADDED
Binary file
skin/frontend/default/car_store/images/media/laptop_callout_mid1.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/laptop_callout_mid2.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/laptop_callout_mid3.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/laptop_callout_spot.jpg ADDED
Binary file
skin/frontend/default/car_store/images/media/shirts_landing_banner1.jpg ADDED
Binary file
skin/frontend/default/car_store/images/np_cart_thumb.gif ADDED
Binary file
skin/frontend/default/car_store/images/np_more_img.gif ADDED
Binary file
skin/frontend/default/car_store/images/np_product_main.gif ADDED
Binary file
skin/frontend/default/car_store/images/np_thumb.gif ADDED
Binary file
skin/frontend/default/car_store/images/np_thumb2.gif ADDED
Binary file
skin/frontend/default/car_store/images/opc-ajax-loader.gif ADDED
Binary file
skin/frontend/default/car_store/images/ph_callout_left_rebel.jpg ADDED
Binary file
skin/frontend/default/car_store/images/ph_callout_left_top.gif ADDED
Binary file
skin/frontend/default/car_store/images/product_zoom_overlay_magnif.gif ADDED
Binary file
skin/frontend/default/car_store/images/slider_bg.gif ADDED
Binary file
skin/frontend/default/car_store/images/slider_btn_zoom_in.gif ADDED
Binary file
skin/frontend/default/car_store/images/slider_btn_zoom_out.gif ADDED
Binary file
skin/frontend/default/car_store/images/spacer.gif ADDED
Binary file
skin/frontend/default/car_store/images/validation_advice_bg.gif ADDED
Binary file
skin/frontend/default/car_store/js/coin-slider.js ADDED
@@ -0,0 +1,480 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Coin Slider - Unique jQuery Image Slider
3
+ * @version: 1.0 - (2010/04/04)
4
+ * @requires jQuery v1.2.2 or later
5
+ * @author Ivan Lazarevic
6
+ * Examples and documentation at: http://workshop.rs/projects/coin-slider/
7
+
8
+ * Licensed under MIT licence:
9
+ * http://www.opensource.org/licenses/mit-license.php
10
+ **/
11
+
12
+ (function($) {
13
+
14
+ var params = new Array;
15
+ var order = new Array;
16
+ var images = new Array;
17
+ var links = new Array;
18
+ var linksTarget = new Array;
19
+ var titles = new Array;
20
+ var interval = new Array;
21
+ var imagePos = new Array;
22
+ var appInterval = new Array;
23
+ var squarePos = new Array;
24
+ var reverse = new Array;
25
+
26
+ $.fn.coinslider= $.fn.CoinSlider = function(options){
27
+
28
+ init = function(el){
29
+
30
+ order[el.id] = new Array(); // order of square appereance
31
+ images[el.id] = new Array();
32
+ links[el.id] = new Array();
33
+ linksTarget[el.id] = new Array();
34
+ titles[el.id] = new Array();
35
+ imagePos[el.id] = 0;
36
+ squarePos[el.id] = 0;
37
+ reverse[el.id] = 1;
38
+
39
+ params[el.id] = $.extend({}, $.fn.coinslider.defaults, options);
40
+
41
+ // create images, links and titles arrays
42
+ $.each($('#'+el.id+' img'), function(i,item){
43
+ images[el.id][i] = $(item).attr('src');
44
+ links[el.id][i] = $(item).parent().is('a') ? $(item).parent().attr('href') : '';
45
+ linksTarget[el.id][i] = $(item).parent().is('a') ? $(item).parent().attr('target') : '';
46
+ titles[el.id][i] = $(item).next().is('span') ? $(item).next().html() : '';
47
+ $(item).hide();
48
+ $(item).next().hide();
49
+ });
50
+
51
+
52
+ // set panel
53
+ $(el).css({
54
+ 'background-image':'url('+images[el.id][0]+')',
55
+ 'width': params[el.id].width,
56
+ 'height': params[el.id].height,
57
+ 'position': 'relative',
58
+ 'background-position': 'top left'
59
+ }).wrap("<div class='coin-slider' id='coin-slider-"+el.id+"' />");
60
+
61
+
62
+ // create title bar
63
+ $('#'+el.id).append("<div class='cs-title' id='cs-title-"+el.id+"' style='position: absolute; bottom:0; left: 0; z-index: 1000;'></div>");
64
+
65
+ $.setFields(el);
66
+
67
+ if(params[el.id].navigation)
68
+ $.setNavigation(el);
69
+
70
+ $.transition(el,0);
71
+ $.transitionCall(el);
72
+
73
+ }
74
+
75
+ // squares positions
76
+ $.setFields = function(el){
77
+
78
+ tWidth = sWidth = parseInt(params[el.id].width/params[el.id].spw);
79
+ tHeight = sHeight = parseInt(params[el.id].height/params[el.id].sph);
80
+
81
+ counter = sLeft = sTop = 0;
82
+ tgapx = gapx = params[el.id].width - params[el.id].spw*sWidth;
83
+ tgapy = gapy = params[el.id].height - params[el.id].sph*sHeight;
84
+
85
+ for(i=1;i <= params[el.id].sph;i++){
86
+ gapx = tgapx;
87
+
88
+ if(gapy > 0){
89
+ gapy--;
90
+ sHeight = tHeight+1;
91
+ } else {
92
+ sHeight = tHeight;
93
+ }
94
+
95
+ for(j=1; j <= params[el.id].spw; j++){
96
+
97
+ if(gapx > 0){
98
+ gapx--;
99
+ sWidth = tWidth+1;
100
+ } else {
101
+ sWidth = tWidth;
102
+ }
103
+
104
+ order[el.id][counter] = i+''+j;
105
+ counter++;
106
+
107
+ if(params[el.id].links)
108
+ $('#'+el.id).append("<a href='"+links[el.id][0]+"' class='cs-"+el.id+"' id='cs-"+el.id+i+j+"' style='width:"+sWidth+"px; height:"+sHeight+"px; float: left; position: absolute;'></a>");
109
+ else
110
+ $('#'+el.id).append("<div class='cs-"+el.id+"' id='cs-"+el.id+i+j+"' style='width:"+sWidth+"px; height:"+sHeight+"px; float: left; position: absolute;'></div>");
111
+
112
+ // positioning squares
113
+ $("#cs-"+el.id+i+j).css({
114
+ 'background-position': -sLeft +'px '+(-sTop+'px'),
115
+ 'left' : sLeft ,
116
+ 'top': sTop
117
+ });
118
+
119
+ sLeft += sWidth;
120
+ }
121
+
122
+ sTop += sHeight;
123
+ sLeft = 0;
124
+
125
+ }
126
+
127
+
128
+ /* $('.cs-'+el.id).mouseover(function(){
129
+ $('#cs-navigation-'+el.id).show();
130
+ });
131
+
132
+ $('.cs-'+el.id).mouseout(function(){
133
+ $('#cs-navigation-'+el.id).hide();
134
+ });
135
+
136
+ $('#cs-title-'+el.id).mouseover(function(){
137
+ $('#cs-navigation-'+el.id).show();
138
+ });
139
+
140
+ $('#cs-title-'+el.id).mouseout(function(){
141
+ $('#cs-navigation-'+el.id).hide();
142
+ }); */
143
+
144
+ if(params[el.id].hoverPause){
145
+ $('.cs-'+el.id).mouseover(function(){
146
+ params[el.id].pause = true;
147
+ });
148
+
149
+ $('.cs-'+el.id).mouseout(function(){
150
+ params[el.id].pause = false;
151
+ });
152
+
153
+ $('#cs-title-'+el.id).mouseover(function(){
154
+ params[el.id].pause = true;
155
+ });
156
+
157
+ $('#cs-title-'+el.id).mouseout(function(){
158
+ params[el.id].pause = false;
159
+ });
160
+ }
161
+
162
+
163
+ };
164
+
165
+
166
+ $.transitionCall = function(el){
167
+
168
+ clearInterval(interval[el.id]);
169
+ delay = params[el.id].delay + params[el.id].spw*params[el.id].sph*params[el.id].sDelay;
170
+ interval[el.id] = setInterval(function() { $.transition(el) }, delay);
171
+
172
+ }
173
+
174
+ // transitions
175
+ $.transition = function(el,direction){
176
+
177
+ if(params[el.id].pause == true) return;
178
+
179
+ $.effect(el);
180
+
181
+ squarePos[el.id] = 0;
182
+ appInterval[el.id] = setInterval(function() { $.appereance(el,order[el.id][squarePos[el.id]]) },params[el.id].sDelay);
183
+
184
+ $(el).css({ 'background-image': 'url('+images[el.id][imagePos[el.id]]+')' });
185
+
186
+ if(typeof(direction) == "undefined")
187
+ imagePos[el.id]++;
188
+ else
189
+ if(direction == 'prev')
190
+ imagePos[el.id]--;
191
+ else
192
+ imagePos[el.id] = direction;
193
+
194
+ if (imagePos[el.id] == images[el.id].length) {
195
+ imagePos[el.id] = 0;
196
+ }
197
+
198
+ if (imagePos[el.id] == -1){
199
+ imagePos[el.id] = images[el.id].length-1;
200
+ }
201
+
202
+ $('.cs-button-'+el.id).removeClass('cs-active');
203
+ $('#cs-button-'+el.id+"-"+(imagePos[el.id]+1)).addClass('cs-active');
204
+
205
+ if(titles[el.id][imagePos[el.id]]){
206
+ $('#cs-title-'+el.id).css({ 'opacity' : 0 }).animate({ 'opacity' : params[el.id].opacity }, params[el.id].titleSpeed);
207
+ $('#cs-title-'+el.id).html(titles[el.id][imagePos[el.id]]);
208
+ } else {
209
+ $('#cs-title-'+el.id).css('opacity',0);
210
+ }
211
+
212
+ };
213
+
214
+ $.appereance = function(el,sid){
215
+
216
+ $('.cs-'+el.id).attr('href',links[el.id][imagePos[el.id]]).attr('target',linksTarget[el.id][imagePos[el.id]]);
217
+
218
+ if (squarePos[el.id] == params[el.id].spw*params[el.id].sph) {
219
+ clearInterval(appInterval[el.id]);
220
+ return;
221
+ }
222
+
223
+ $('#cs-'+el.id+sid).css({ opacity: 0, 'background-image': 'url('+images[el.id][imagePos[el.id]]+')' });
224
+ $('#cs-'+el.id+sid).animate({ opacity: 1 }, 300);
225
+ squarePos[el.id]++;
226
+
227
+ };
228
+
229
+ // navigation
230
+ $.setNavigation = function(el){
231
+ // create prev and next
232
+ $(el).append("<div id='cs-navigation-"+el.id+"'></div>");
233
+ //$('#cs-navigation-'+el.id).hide();
234
+
235
+ /* $('#cs-navigation-'+el.id).append("<a href='#' id='cs-prev-"+el.id+"' class='cs-prev'><span>prev</span></a>");
236
+ $('#cs-navigation-'+el.id).append("<a href='#' id='cs-next-"+el.id+"' class='cs-next'><span>next</span></a>");
237
+ $('#cs-prev-'+el.id).css({
238
+ 'position' : 'absolute',
239
+ 'top' : params[el.id].height/2 - 15,
240
+ 'left' : 0,
241
+ 'text-indent' : -1000,
242
+ 'z-index' : 1001,
243
+ 'line-height': '30px',
244
+ 'opacity' : params[el.id].opacity
245
+ }).click( function(e){
246
+ e.preventDefault();
247
+ $.transition(el,'prev');
248
+ $.transitionCall(el);
249
+ }).mouseover( function(){ $('#cs-navigation-'+el.id).show() });
250
+
251
+ $('#cs-next-'+el.id).css({
252
+ 'position' : 'absolute',
253
+ 'top' : params[el.id].height/2 - 15,
254
+ 'right' : 0,
255
+ 'text-indent' : -1000,
256
+ 'z-index' : 1001,
257
+ 'line-height': '30px',
258
+ 'opacity' : params[el.id].opacity
259
+ }).click( function(e){
260
+ e.preventDefault();
261
+ $.transition(el);
262
+ $.transitionCall(el);
263
+ }).mouseover( function(){ $('#cs-navigation-'+el.id).show() }); */
264
+
265
+ // image buttons
266
+ $("<div id='cs-buttons-"+el.id+"' class='cs-buttons'></div>").appendTo($('#coin-slider-'+el.id));
267
+
268
+
269
+ for(k=1;k<images[el.id].length+1;k++){
270
+ $('#cs-buttons-'+el.id).append("<a href='#' class='cs-button-"+el.id+"' id='cs-button-"+el.id+"-"+k+"'>"+k+"</a>");
271
+ }
272
+
273
+ $.each($('.cs-button-'+el.id), function(i,item){
274
+ $(item).click( function(e){
275
+ $('.cs-button-'+el.id).removeClass('cs-active');
276
+ $(this).addClass('cs-active');
277
+ e.preventDefault();
278
+ $.transition(el,i);
279
+ $.transitionCall(el);
280
+ })
281
+ });
282
+
283
+ /* $('#cs-navigation-'+el.id+' a').mouseout(function(){
284
+ $('#cs-navigation-'+el.id).hide();
285
+ params[el.id].pause = false;
286
+ }); */
287
+ }
288
+
289
+
290
+
291
+
292
+ // effects
293
+ $.effect = function(el){
294
+
295
+ effA = ['random','swirl','rain','straight'];
296
+ if(params[el.id].effect == '')
297
+ eff = effA[Math.floor(Math.random()*(effA.length))];
298
+ else
299
+ eff = params[el.id].effect;
300
+
301
+ order[el.id] = new Array();
302
+
303
+ if(eff == 'random'){
304
+ counter = 0;
305
+ for(i=1;i <= params[el.id].sph;i++){
306
+ for(j=1; j <= params[el.id].spw; j++){
307
+ order[el.id][counter] = i+''+j;
308
+ counter++;
309
+ }
310
+ }
311
+ $.random(order[el.id]);
312
+ }
313
+
314
+ if(eff == 'rain') {
315
+ $.rain(el);
316
+ }
317
+
318
+ if(eff == 'swirl')
319
+ $.swirl(el);
320
+
321
+ if(eff == 'straight')
322
+ $.straight(el);
323
+
324
+ reverse[el.id] *= -1;
325
+ if(reverse[el.id] > 0){
326
+ order[el.id].reverse();
327
+ }
328
+
329
+ }
330
+
331
+
332
+ // shuffle array function
333
+ $.random = function(arr) {
334
+
335
+ var i = arr.length;
336
+ if ( i == 0 ) return false;
337
+ while ( --i ) {
338
+ var j = Math.floor( Math.random() * ( i + 1 ) );
339
+ var tempi = arr[i];
340
+ var tempj = arr[j];
341
+ arr[i] = tempj;
342
+ arr[j] = tempi;
343
+ }
344
+ }
345
+
346
+ //swirl effect by milos popovic
347
+ $.swirl = function(el){
348
+
349
+ var n = params[el.id].sph;
350
+ var m = params[el.id].spw;
351
+
352
+ var x = 1;
353
+ var y = 1;
354
+ var going = 0;
355
+ var num = 0;
356
+ var c = 0;
357
+
358
+ var dowhile = true;
359
+
360
+ while(dowhile) {
361
+
362
+ num = (going==0 || going==2) ? m : n;
363
+
364
+ for (i=1;i<=num;i++){
365
+
366
+ order[el.id][c] = x+''+y;
367
+ c++;
368
+
369
+ if(i!=num){
370
+ switch(going){
371
+ case 0 : y++; break;
372
+ case 1 : x++; break;
373
+ case 2 : y--; break;
374
+ case 3 : x--; break;
375
+
376
+ }
377
+ }
378
+ }
379
+
380
+ going = (going+1)%4;
381
+
382
+ switch(going){
383
+ case 0 : m--; y++; break;
384
+ case 1 : n--; x++; break;
385
+ case 2 : m--; y--; break;
386
+ case 3 : n--; x--; break;
387
+ }
388
+
389
+ check = $.max(n,m) - $.min(n,m);
390
+ if(m<=check && n<=check)
391
+ dowhile = false;
392
+
393
+ }
394
+ }
395
+
396
+ // rain effect
397
+ $.rain = function(el){
398
+ var n = params[el.id].sph;
399
+ var m = params[el.id].spw;
400
+
401
+ var c = 0;
402
+ var to = to2 = from = 1;
403
+ var dowhile = true;
404
+
405
+
406
+ while(dowhile){
407
+
408
+ for(i=from;i<=to;i++){
409
+ order[el.id][c] = i+''+parseInt(to2-i+1);
410
+ c++;
411
+ }
412
+
413
+ to2++;
414
+
415
+ if(to < n && to2 < m && n<m){
416
+ to++;
417
+ }
418
+
419
+ if(to < n && n>=m){
420
+ to++;
421
+ }
422
+
423
+ if(to2 > m){
424
+ from++;
425
+ }
426
+
427
+ if(from > to) dowhile= false;
428
+
429
+ }
430
+
431
+ }
432
+
433
+ // straight effect
434
+ $.straight = function(el){
435
+ counter = 0;
436
+ for(i=1;i <= params[el.id].sph;i++){
437
+ for(j=1; j <= params[el.id].spw; j++){
438
+ order[el.id][counter] = i+''+j;
439
+ counter++;
440
+ }
441
+
442
+ }
443
+ }
444
+
445
+ $.min = function(n,m){
446
+ if (n>m) return m;
447
+ else return n;
448
+ }
449
+
450
+ $.max = function(n,m){
451
+ if (n<m) return m;
452
+ else return n;
453
+ }
454
+
455
+ this.each (
456
+ function(){ init(this); }
457
+ );
458
+
459
+
460
+ };
461
+
462
+
463
+ // default values
464
+ $.fn.coinslider.defaults = {
465
+ width: 565, // width of slider panel
466
+ height: 290, // height of slider panel
467
+ spw: 7, // squares per width
468
+ sph: 5, // squares per height
469
+ delay: 3000, // delay between images in ms
470
+ sDelay: 30, // delay beetwen squares in ms
471
+ opacity: 0.7, // opacity of title and navigation
472
+ titleSpeed: 500, // speed of title appereance in ms
473
+ effect: '', // random, swirl, rain, straight
474
+ navigation: true, // prev next and buttons
475
+ links : true, // show images as links
476
+ hoverPause: true // pause on hover
477
+ };
478
+
479
+ })(jQuery);
480
+
skin/frontend/default/car_store/js/jquery-1.4.2.min.js ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * jQuery JavaScript Library v1.4.2
3
+ * Copyright 2010, John Resig, http://jquery.com/
4
+ * Distributed in whole under the terms of the MIT license
5
+ * http://www.opensource.org/licenses/mit-license.php
6
+ *
7
+ * Includes Sizzle.js
8
+ * http://sizzlejs.com/
9
+ * Copyright 2010, The Dojo Foundation
10
+ * Released under the MIT, BSD, and GPL Licenses.
11
+ */
12
+ (function(A, w) {
13
+ function ma() { if (!c.isReady) { try { s.documentElement.doScroll("left") } catch (a) { setTimeout(ma, 1); return } c.ready() } } function Qa(a, b) { b.src ? c.ajax({ url: b.src, async: false, dataType: "script" }) : c.globalEval(b.text || b.textContent || b.innerHTML || ""); b.parentNode && b.parentNode.removeChild(b) } function X(a, b, d, f, e, j) {
14
+ var i = a.length; if (typeof b === "object") { for (var o in b) X(a, o, b[o], f, e, d); return a } if (d !== w) { f = !j && f && c.isFunction(d); for (o = 0; o < i; o++) e(a[o], b, f ? d.call(a[o], o, e(a[o], b)) : d, j); return a } return i ?
15
+ e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r=
16
+ j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,
17
+ "&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e=
18
+ true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,
19
+ Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&
20
+ (d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,
21
+ a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b===
22
+ "find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,
23
+ function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)||
24
+ c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",
25
+ L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype,
26
+ "isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+
27
+ a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f],
28
+ d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]===
29
+ a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&&
30
+ !c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari=
31
+ true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML=" <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
32
+ var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,
33
+ parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=
34
+ false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=
35
+ s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,
36
+ applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];
37
+ else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,
38
+ a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===
39
+ w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,
40
+ cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ",
41
+ i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" ",
42
+ " ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=
43
+ this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i=
44
+ e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=
45
+ c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");
46
+ a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,
47
+ function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");
48
+ k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),
49
+ C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=
50
+ null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=
51
+ e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&
52
+ f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;
53
+ if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
54
+ fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||
55
+ d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this,
56
+ "events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=
57
+ a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y,
58
+ isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit=
59
+ {setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};
60
+ if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",
61
+ e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,
62
+ "_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,
63
+ d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&
64
+ !a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}},
65
+ toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector,
66
+ u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.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".split(" "),
67
+ function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];
68
+ if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,
69
+ e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();
70
+ t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||
71
+ g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[];
72
+ for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length-
73
+ 1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,
74
+ CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},
75
+ relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]=
76
+ l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[];
77
+ h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},
78
+ CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,
79
+ g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},
80
+ text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},
81
+ setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=
82
+ h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m=
83
+ m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m===
84
+ "="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,
85
+ h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition||
86
+ !h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m=
87
+ h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&
88
+ q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>";
89
+ if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();
90
+ (function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:
91
+ function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/,
92
+ gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length;
93
+ c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j=
94
+ {},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a===
95
+ "string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",
96
+ d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?
97
+ a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===
98
+ 1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)?
99
+ a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=
100
+ c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},
101
+ wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},
102
+ prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,
103
+ this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);
104
+ return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,
105
+ ""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&
106
+ this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||
107
+ u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length===
108
+ 1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);
109
+ return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",
110
+ ""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=
111
+ c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?
112
+ c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=
113
+ function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=
114
+ Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,
115
+ "border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=
116
+ a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=
117
+ a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!==
118
+ "string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this},
119
+ serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),
120
+ function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,
121
+ global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&&
122
+ e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)?
123
+ "&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache===
124
+ false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B=
125
+ false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since",
126
+ c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E||
127
+ d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x);
128
+ g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===
129
+ 1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b===
130
+ "json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional;
131
+ if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");
132
+ this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],
133
+ "olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)},
134
+ animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing=
135
+ j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);
136
+ this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration===
137
+ "number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||
138
+ c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;
139
+ this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=
140
+ this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem,
141
+ e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||
142
+ c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement?
143
+ function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b=
144
+ this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle;
145
+ k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&&
146
+ f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";
147
+ a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b);
148
+ c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a,
149
+ d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top-
150
+ f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset":
151
+ "pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in
152
+ e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window);
153
+
154
+ jQuery.noConflict();